diff --git a/src/808x_tmp.txt b/src/808x_tmp.txt new file mode 100644 index 000000000..249bf9282 --- /dev/null +++ b/src/808x_tmp.txt @@ -0,0 +1,3613 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * 808x CPU emulation, mostly ported from reenigne's XTCE, which + * is cycle-accurate. + * + * Authors: Andrew Jenner, + * Miran Grca, + * + * Copyright 2015-2020 Andrew Jenner. + * Copyright 2016-2020 Miran Grca. + */ +#include +#include +#include +#include +#include +#include + +#define HAVE_STDARG_H +#include <86box/86box.h> +#include "cpu.h" +#include "x86.h" +#include <86box/machine.h> +#include <86box/io.h> +#include <86box/mem.h> +#include <86box/rom.h> +#include <86box/nmi.h> +#include <86box/pic.h> +#include <86box/ppi.h> +#include <86box/timer.h> +#include <86box/gdbstub.h> +#include <86box/plat_fallthrough.h> +#include <86box/plat_unused.h> +#include "808x_biu.h" + +#define do_cycle() wait(1, 0) +#define do_cycle_i() do_cycle() +#define do_cycles(c) wait(c, 0) +#define do_cycles_i(c) do_cycles(c) +#define do_cycle_nx() nx = 1; \ + do_cycle() +#define do_cycle_nx_i() nx = 1; \ + do_cycle_i() +#define do_cycles_nx(c) nx = 1; \ + do_cycles(c) +#define do_cycles_nx_i(c) nx = 1; \ + do_cycles_i(c) +#define addr_mode_match() cpu_mod == 3 +#define math_op(o) cpu_alu_op = o; \ + alu_op(bits) + +/* Various things needed for 8087. */ +#define OP_TABLE(name) ops_##name + +#define CPU_BLOCK_END() +#define SEG_CHECK_READ(seg) +#define SEG_CHECK_WRITE(seg) +#define CHECK_READ(a, b, c) +#define CHECK_WRITE(a, b, c) +#define UN_USED(x) (void) (x) +#define fetch_ea_16(val) +#define fetch_ea_32(val) +#define PREFETCH_RUN(a, b, c, d, e, f, g, h) + +#define CYCLES(val) \ + { \ + wait(val, 0); \ + } + +#define CLOCK_CYCLES_ALWAYS(val) \ + { \ + wait(val, 0); \ + } + +#define CLOCK_CYCLES_FPU(val) \ + { \ + wait(val, 0); \ + } + +# define CLOCK_CYCLES(val) \ + { \ + if (fpu_cycles > 0) { \ + fpu_cycles -= (val); \ + if (fpu_cycles < 0) { \ + wait(val, 0); \ + } \ + } else { \ + wait(val, 0); \ + } \ + } + +#define CONCURRENCY_CYCLES(c) fpu_cycles = (c) + +typedef int (*OpFn)(uint32_t fetchdat); + +/* Is the CPU 8088 or 8086. */ +uint8_t use_custom_nmi_vector = 0; + +int is8086 = 0; + +static uint16_t last_addr = 0x0000; +static uint16_t mem_data = 0; +static uint16_t mem_addr = 0; + +static int oldc; +static int cycdiff; +static int pfq_size; +static int cpu_alu_op; +static int prefetching = 1; +static int completed = 1; +static int in_rep = 0; +static int repeating = 0; +static int rep_c_flag = 0; +static int clear_lock = 0; +static int refresh = 0; +static int pic_data = -1; +static int nx = 0; +static int noint = 0; +static int in_lock = 0; + +static uint32_t custom_nmi_vector = 0x00000000; +static uint32_t cpu_src = 0; +static uint32_t cpu_dest = 0; +static uint32_t cpu_data = 0; +static uint32_t mem_seg = 0; + +static uint32_t * ovr_seg = NULL; + +/* Pointer tables needed for segment overrides. */ +static uint32_t * opseg[4]; + +static x86seg * _opseg[4]; + +static void set_pzs(int bits); + +void +resub_cycles(int old_cycles) +{ + int cyc_diff = 0; + + if (old_cycles > cycles) { + cyc_diff = old_cycles - cycles; + + for (int i = 0; i < cyc_diff; i++) { + if (not_ready > 0) + not_ready--; + } + } + + process_timers(); +} + +/* This is for external subtraction of cycles, ie. wait states. */ +void +sub_cycles(int c) +{ + if (is286) + cycles -= c; + else { + if (c > 0) + cycles_idle(c); + } +} + +uint16_t +get_last_addr(void) +{ + return last_addr; +} + +static void +clock_start(void) +{ + cycdiff = cycles; +} + +static void +clock_end(void) +{ + int diff = cycdiff - cycles; + + /* On 808x systems, clock speed is usually crystal frequency divided by an integer. */ + tsc += ((uint64_t) diff * (xt_cpu_multi >> 32ULL)); /* Shift xt_cpu_multi by 32 bits to + the right and then multiply. */ + if (TIMER_VAL_LESS_THAN_VAL(timer_target, (uint32_t) tsc)) + timer_process(); +} + +static void +process_timers(void) +{ + clock_end(); + clock_start(); +} + +static void +cycles_forward(int c) +{ + cycles -= c; + + if (!is286) + process_timers(); +} + +static void +startx86(void) +{ + /* Reset takes 6 cycles before first fetch. */ + do_cycle(); + pfq_do_suspend(); + do_cycles_i(2); + pfq_clear(); + do_cycles_i(3); + set_ip(cpu_state.pc & 0xffff); +} + +static void +load_cs(uint16_t seg) +{ + // pclog("CS = %04X\n", seg); + cpu_state.seg_cs.base = seg << 4; + cpu_state.seg_cs.seg = seg & 0xffff; +} + +static void +load_seg(uint16_t seg, x86seg *s) +{ + s->base = seg << 4; + s->seg = seg & 0xffff; +} + +void +reset_808x(int hard) +{ + BUS_CYCLE_T1; + in_rep = 0; + in_lock = 0; + completed = 1; + repeating = 0; + clear_lock = 0; + refresh = 0; + ovr_seg = NULL; + + if (hard) { + opseg[0] = &es; + opseg[1] = &cs; + opseg[2] = &ss; + opseg[3] = &ds; + _opseg[0] = &cpu_state.seg_es; + _opseg[1] = &cpu_state.seg_cs; + _opseg[2] = &cpu_state.seg_ss; + _opseg[3] = &cpu_state.seg_ds; + + pfq_size = is8086 ? 6 : 4; + pfq_clear(); + } + + load_cs(0xFFFF); + cpu_state.pc = 0; + if (is_nec) + cpu_state.flags |= MD_FLAG; + rammask = 0xfffff; + + pasv = 0; + + cpu_alu_op = 0; + + use_custom_nmi_vector = 0x00; + custom_nmi_vector = 0x00000000; + + access_code = 0; + hlda = 0; + not_ready = 0; + bus_request_type = 0; + pic_data = -1; + last_was_code = 0; + mem_data = 0; + mem_seg = 0; + mem_addr = 0; + + prefetching = 1; + pfq_schedule(1); + if (CS == DEBUG_SEG) + pclog("reset_808x(): pfq_schedule(1, %i, %i): Fetch is now %sscheduled\n", prefetching, (pfq_pos < pfq_size), schedule_fetch ? "" : "not "); +} + +static void +set_ip(uint16_t new_ip) +{ + pfq_ip = cpu_state.pc = new_ip; + prefetching = 1; + pfq_schedule(1); + if (CS == DEBUG_SEG) + pclog("set_ip(): pfq_schedule(1, %i, %i): Fetch is now %sscheduled\n", prefetching, (pfq_pos < pfq_size), schedule_fetch ? "" : "not "); +} + +/* Memory refresh read - called by reads and writes on DMA channel 0. */ +void +refreshread(void) +{ + refresh++; +} + +static uint16_t +get_accum(int bits) +{ + return (bits == 16) ? AX : AL; +} + +static void +set_accum(int bits, uint16_t val) +{ + if (bits == 16) + AX = val; + else + AL = val; +} + +static uint16_t +sign_extend(uint8_t data) +{ + return data + (data < 0x80 ? 0 : 0xff00); +} + +/* Fetches the effective address from the prefetch queue according to MOD and R/M. */ +static void +do_mod_rm(void) +{ + rmdat = pfq_fetchb(); + cpu_reg = (rmdat >> 3) & 7; + cpu_mod = (rmdat >> 6) & 3; + cpu_rm = rmdat & 7; + + if (cpu_mod == 3) + return; + + wait(2, 0); + if ((rmdat & 0xc7) == 0x06) { + cpu_state.eaaddr = pfq_fetchw(); + easeg = ovr_seg ? *ovr_seg : ds; + wait(2, 0); + return; + } else + switch (cpu_rm) { + case 0: + case 3: + wait(2, 0); + break; + case 1: + case 2: + wait(3, 0); + break; + + default: + break; + } + cpu_state.eaaddr = (*mod1add[0][cpu_rm]) + (*mod1add[1][cpu_rm]); + easeg = ovr_seg ? *ovr_seg : *mod1seg[cpu_rm]; + switch (rmdat & 0xc0) { + case 0x40: + wait(2, 0); + cpu_state.eaaddr += sign_extend(pfq_fetchb()); + wait(1, 0); + break; + case 0x80: + wait(2, 0); + cpu_state.eaaddr += pfq_fetchw(); + wait(1, 0); + break; + default: + break; + } + cpu_state.eaaddr &= 0xffff; + wait(2, 0); +} + +#undef getr8 +#define getr8(r) ((r & 4) ? cpu_state.regs[r & 3].b.h : cpu_state.regs[r & 3].b.l) + +#undef setr8 +#define setr8(r, v) \ + if (r & 4) \ + cpu_state.regs[r & 3].b.h = v; \ + else \ + cpu_state.regs[r & 3].b.l = v; + +/* Reads a byte from the effective address. */ +static uint8_t +geteab(void) +{ + if (cpu_mod == 3) + return (getr8(cpu_rm)); + + return readmemb(easeg, cpu_state.eaaddr); +} + +/* Reads a word from the effective address. */ +static uint16_t +geteaw(void) +{ + if (cpu_mod == 3) + return cpu_state.regs[cpu_rm].w; + + return readmemw(easeg, cpu_state.eaaddr); +} + +/* Neede for 8087 - memory only. */ +static uint32_t +geteal(void) +{ + if (cpu_mod == 3) { + fatal("808x register geteal()\n"); + return 0xffffffff; + } + + return readmeml(easeg, cpu_state.eaaddr); +} + +/* Neede for 8087 - memory only. */ +static uint64_t +geteaq(void) +{ + if (cpu_mod == 3) { + fatal("808x register geteaq()\n"); + return 0xffffffff; + } + + return readmemq(easeg, cpu_state.eaaddr); +} + +static void +read_ea(int memory_only, int bits) +{ + if (cpu_mod != 3) { + if (bits == 16) + cpu_data = readmemw(easeg, cpu_state.eaaddr); + else + cpu_data = readmemb(easeg, cpu_state.eaaddr); + return; + } + if (!memory_only) { + if (bits == 8) { + cpu_data = getr8(cpu_rm); + } else + cpu_data = cpu_state.regs[cpu_rm].w; + } +} + +static void +read_ea_8to16(void) +{ + cpu_data = cpu_state.regs[cpu_rm & 3].w; +} + +static void +read_ea2(int bits) +{ + cpu_state.eaaddr = (cpu_state.eaaddr + 2) & 0xffff; + if (bits == 16) + cpu_data = readmemw(easeg, cpu_state.eaaddr); + else + cpu_data = readmemb(easeg, cpu_state.eaaddr); +} + +/* Writes a byte to the effective address. */ +static void +seteab(uint8_t val) +{ + if (cpu_mod == 3) { + setr8(cpu_rm, val); + } else { + wait(1, 0); + writememb(easeg, cpu_state.eaaddr, val); + } +} + +/* Writes a word to the effective address. */ +static void +seteaw(uint16_t val) +{ + if (cpu_mod == 3) + cpu_state.regs[cpu_rm].w = val; + else { + wait(1, 0); + writememw(easeg, cpu_state.eaaddr, val); + } +} + +static void +seteal(uint32_t val) +{ + if (cpu_mod == 3) { + fatal("808x register seteal()\n"); + return; + } else + writememl(easeg, cpu_state.eaaddr, val); +} + +static void +seteaq(uint64_t val) +{ + if (cpu_mod == 3) { + fatal("808x register seteaq()\n"); + return; + } else + writememq(easeg, cpu_state.eaaddr, val); +} + +/* Leave out the 686 stuff as it's not needed and + complicates compiling. */ +#define FPU_8087 +#define tempc tempc_fpu +#include "x87.h" +#include "x87_ops.h" +#undef tempc +#undef FPU_8087 + +/* Fetches the effective address from the prefetch queue according to MOD and R/M. */ +static void +do_mod_rm(void) +{ + rmdat = pfq_fetchb(); + cpu_reg = (rmdat >> 3) & 7; + cpu_mod = (rmdat >> 6) & 3; + cpu_rm = rmdat & 7; + + if (cpu_mod == 3) + return; + + wait(2, 0); + if ((rmdat & 0xc7) == 0x06) { + cpu_state.eaaddr = pfq_fetchw(); + easeg = ovr_seg ? *ovr_seg : ds; + wait(2, 0); + return; + } else + switch (cpu_rm) { + case 0: + case 3: + wait(2, 0); + break; + case 1: + case 2: + wait(3, 0); + break; + + default: + break; + } + cpu_state.eaaddr = (*mod1add[0][cpu_rm]) + (*mod1add[1][cpu_rm]); + easeg = ovr_seg ? *ovr_seg : *mod1seg[cpu_rm]; + switch (rmdat & 0xc0) { + case 0x40: + wait(2, 0); + cpu_state.eaaddr += sign_extend(pfq_fetchb()); + wait(1, 0); + break; + case 0x80: + wait(2, 0); + cpu_state.eaaddr += pfq_fetchw(); + wait(1, 0); + break; + default: + break; + } + cpu_state.eaaddr &= 0xffff; + wait(2, 0); +} + +static void +set_cf(int cond) +{ + cpu_state.flags = (cpu_state.flags & ~C_FLAG) | (cond ? C_FLAG : 0); +} + +static void +set_if(int cond) +{ + cpu_state.flags = (cpu_state.flags & ~I_FLAG) | (cond ? I_FLAG : 0); +} + +static void +set_df(int cond) +{ + cpu_state.flags = (cpu_state.flags & ~D_FLAG) | (cond ? D_FLAG : 0); +} + +static void +bitwise(int bits, uint16_t data) +{ + cpu_data = data; + cpu_state.flags &= ~(C_FLAG | A_FLAG | V_FLAG); + set_pzs(bits); +} + +static void +test(int bits, uint16_t dest, uint16_t src) +{ + cpu_dest = dest; + cpu_src = src; + bitwise(bits, (cpu_dest & cpu_src)); +} + +static void +set_of(int of) +{ + cpu_state.flags = (cpu_state.flags & ~0x800) | (of ? 0x800 : 0); +} + +static int +top_bit(uint16_t w, int bits) +{ + return (w & (1 << (bits - 1))); +} + +static void +set_of_add(int bits) +{ + set_of(top_bit((cpu_data ^ cpu_src) & (cpu_data ^ cpu_dest), bits)); +} + +static void +set_of_sub(int bits) +{ + set_of(top_bit((cpu_dest ^ cpu_src) & (cpu_data ^ cpu_dest), bits)); +} + +static void +set_af(int af) +{ + cpu_state.flags = (cpu_state.flags & ~0x10) | (af ? 0x10 : 0); +} + +static void +do_af(void) +{ + set_af(((cpu_data ^ cpu_src ^ cpu_dest) & 0x10) != 0); +} + +static void +set_apzs(int bits) +{ + set_pzs(bits); + do_af(); +} + +static void +add(int bits) +{ + int size_mask = (1 << bits) - 1; + + cpu_data = cpu_dest + cpu_src; + set_apzs(bits); + set_of_add(bits); + + /* Anything - FF with carry on is basically anything + 0x100: value stays + unchanged but carry goes on. */ + if ((cpu_alu_op == 2) && !(cpu_src & size_mask) && (cpu_state.flags & C_FLAG)) + cpu_state.flags |= C_FLAG; + else + set_cf((cpu_src & size_mask) > (cpu_data & size_mask)); +} + +static void +sub(int bits) +{ + int size_mask = (1 << bits) - 1; + + cpu_data = cpu_dest - cpu_src; + set_apzs(bits); + set_of_sub(bits); + + /* Anything - FF with carry on is basically anything - 0x100: value stays + unchanged but carry goes on. */ + if ((cpu_alu_op == 3) && !(cpu_src & size_mask) && (cpu_state.flags & C_FLAG)) + cpu_state.flags |= C_FLAG; + else + set_cf((cpu_src & size_mask) > (cpu_dest & size_mask)); +} + +static void +alu_op(int bits) +{ + switch (cpu_alu_op) { + case 1: + bitwise(bits, (cpu_dest | cpu_src)); + break; + case 2: + if (cpu_state.flags & C_FLAG) + cpu_src++; + fallthrough; + case 0: + add(bits); + break; + case 3: + if (cpu_state.flags & C_FLAG) + cpu_src++; + fallthrough; + case 5: + case 7: + sub(bits); + break; + case 4: + test(bits, cpu_dest, cpu_src); + break; + case 6: + bitwise(bits, (cpu_dest ^ cpu_src)); + break; + + default: + break; + } +} + +static void +set_sf(int bits) +{ + cpu_state.flags = (cpu_state.flags & ~0x80) | (top_bit(cpu_data, bits) ? 0x80 : 0); +} + +static void +set_pf(void) +{ + cpu_state.flags = (cpu_state.flags & ~4) | (!__builtin_parity(cpu_data & 0xFF) << 2); +} + +static void +mul(uint16_t a, uint16_t b) +{ + int negate = 0; + int bit_count = 8; + int carry; + uint16_t high_bit = 0x80; + uint16_t size_mask; + uint16_t c; + uint16_t r; + + size_mask = (1 << bit_count) - 1; + + if (opcode != 0xd5) { + if (opcode & 1) { + bit_count = 16; + high_bit = 0x8000; + } else + wait(8, 0); + + size_mask = (1 << bit_count) - 1; + + if ((rmdat & 0x38) == 0x28) { + if (!top_bit(a, bit_count)) { + if (top_bit(b, bit_count)) { + wait(1, 0); + if ((b & size_mask) != ((opcode & 1) ? 0x8000 : 0x80)) + wait(1, 0); + b = ~b + 1; + negate = 1; + } + } else { + wait(1, 0); + a = ~a + 1; + negate = 1; + if (top_bit(b, bit_count)) { + b = ~b + 1; + negate = 0; + } else + wait(4, 0); + } + wait(10, 0); + } + wait(3, 0); + } + + c = 0; + a &= size_mask; + carry = (a & 1) != 0; + a >>= 1; + for (int i = 0; i < bit_count; ++i) { + wait(7, 0); + if (carry) { + cpu_src = c; + cpu_dest = b; + add(bit_count); + c = cpu_data & size_mask; + wait(1, 0); + carry = !!(cpu_state.flags & C_FLAG); + } + r = (c >> 1) + (carry ? high_bit : 0); + carry = (c & 1) != 0; + c = r; + r = (a >> 1) + (carry ? high_bit : 0); + carry = (a & 1) != 0; + a = r; + } + if (negate) { + c = ~c; + a = (~a + 1) & size_mask; + if (a == 0) + ++c; + wait(9, 0); + } + cpu_data = a; + cpu_dest = c; + + set_sf(bit_count); + set_pf(); + set_af(0); +} + +static void +set_of_rotate(int bits) +{ + set_of(top_bit(cpu_data ^ cpu_dest, bits)); +} + +static void +set_zf_ex(int zf) +{ + cpu_state.flags = (cpu_state.flags & ~0x40) | (zf ? 0x40 : 0); +} + +static void +set_zf(int bits) +{ + int size_mask = (1 << bits) - 1; + + set_zf_ex((cpu_data & size_mask) == 0); +} + +static void +set_pzs(int bits) +{ + set_pf(); + set_zf(bits); + set_sf(bits); +} + +static void +set_co_mul(UNUSED(int bits), int carry) +{ + set_cf(carry); + set_of(carry); + set_zf_ex(!carry); + if (!carry) + wait(1, 0); +} + +/* Was div(), renamed to avoid conflicts with stdlib div(). */ +static int +x86_div(uint16_t l, uint16_t h) +{ + int bit_count = 8; + int negative = 0; + int dividend_negative = 0; + int size_mask; + int carry; + uint16_t r; + + if (opcode & 1) { + l = AX; + h = DX; + bit_count = 16; + } + + size_mask = (1 << bit_count) - 1; + + if (opcode != 0xd4) { + if ((rmdat & 0x38) == 0x38) { + if (top_bit(h, bit_count)) { + h = ~h; + l = (~l + 1) & size_mask; + if (l == 0) + ++h; + h &= size_mask; + negative = 1; + dividend_negative = 1; + wait(4, 0); + } + if (top_bit(cpu_src, bit_count)) { + cpu_src = ~cpu_src + 1; + negative = !negative; + } else + wait(1, 0); + wait(9, 0); + } + wait(3, 0); + } + wait(8, 0); + cpu_src &= size_mask; + if (h >= cpu_src) { + if (opcode != 0xd4) + wait(1, 0); + intr_routine(0, 0); + return 0; + } + if (opcode != 0xd4) + wait(1, 0); + wait(2, 0); + carry = 1; + for (int b = 0; b < bit_count; ++b) { + r = (l << 1) + (carry ? 1 : 0); + carry = top_bit(l, bit_count); + l = r; + r = (h << 1) + (carry ? 1 : 0); + carry = top_bit(h, bit_count); + h = r; + wait(8, 0); + if (carry) { + carry = 0; + h -= cpu_src; + if (b == bit_count - 1) + wait(2, 0); + } else { + carry = cpu_src > h; + if (!carry) { + h -= cpu_src; + wait(1, 0); + if (b == bit_count - 1) + wait(2, 0); + } + } + } + l = ~((l << 1) + (carry ? 1 : 0)); + if (opcode != 0xd4 && (rmdat & 0x38) == 0x38) { + wait(4, 0); + if (top_bit(l, bit_count)) { + if (cpu_mod == 3) + wait(1, 0); + intr_routine(0, 0); + return 0; + } + wait(7, 0); + if (negative) + l = ~l + 1; + if (dividend_negative) + h = ~h + 1; + } + if (opcode == 0xd4) { + AL = h & 0xff; + AH = l & 0xff; + } else { + AH = h & 0xff; + AL = l & 0xff; + if (opcode & 1) { + DX = h; + AX = l; + } + } + return 1; +} + +static uint16_t +string_increment(int bits) +{ + int d = bits >> 3; + if (cpu_state.flags & D_FLAG) + cpu_state.eaaddr -= d; + else + cpu_state.eaaddr += d; + cpu_state.eaaddr &= 0xffff; + return cpu_state.eaaddr; +} + +static void +lods(int bits) +{ + cpu_state.eaaddr = SI; + if (bits == 16) + cpu_data = readmemw((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + else + cpu_data = readmemb((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + SI = string_increment(bits); +} + +static void +lods_di(int bits) +{ + cpu_state.eaaddr = DI; + if (bits == 16) + cpu_data = readmemw(es, cpu_state.eaaddr); + else + cpu_data = readmemb(es, cpu_state.eaaddr); + DI = string_increment(bits); +} + +static void +stos(int bits) +{ + cpu_state.eaaddr = DI; + if (bits == 16) + writememw(es, cpu_state.eaaddr, cpu_data); + else + writememb(es, cpu_state.eaaddr, (uint8_t) (cpu_data & 0xff)); + DI = string_increment(bits); +} + +static void +set_ca(void) +{ + set_cf(1); + set_af(1); +} + +static void +clear_ca(void) +{ + set_cf(0); + set_af(0); +} + +static uint16_t +get_ea(void) +{ + if (opcode & 1) + return geteaw(); + else + return (uint16_t) geteab(); +} + +static uint16_t +get_reg(uint8_t reg) +{ + if (opcode & 1) + return cpu_state.regs[reg].w; + else + return (uint16_t) getr8(reg); +} + +static void +set_ea(uint16_t val) +{ + if (opcode & 1) + seteaw(val); + else + seteab((uint8_t) (val & 0xff)); +} + +static void +set_reg(uint8_t reg, uint16_t val) +{ + if (opcode & 1) + cpu_state.regs[reg].w = val; + else + setr8(reg, (uint8_t) (val & 0xff)); +} + +static void +cpu_data_opff_rm(void) +{ + if (!(opcode & 1)) { + if (cpu_mod != 3) + cpu_data |= 0xff00; + else + cpu_data = cpu_state.regs[cpu_rm].w; + } +} + +uint16_t +cpu_inw(uint16_t port) +{ + if (is8086 && !(port & 1)) { + wait(4, 0); + } else { + wait(8, 0); + } + + return inw(port); +} + +void +cpu_outw(uint16_t port, uint16_t val) +{ + if (is8086 && !(port & 1)) { + wait(4, 0); + } else { + wait(8, 0); + } + + return outw(port, val); +} + +/* Pushes a word to the stack. */ +static void +push(uint16_t *val) +{ + if ((is186 && !is_nec) && (SP == 1)) { + writememw(ss - 1, 0, *val); + SP = cpu_state.eaaddr = 0xFFFF; + return; + } + SP -= 2; + cpu_state.eaaddr = (SP & 0xffff); + writememw(ss, cpu_state.eaaddr, *val); +} + +/* Pops a word from the stack. */ +static uint16_t +pop(void) +{ + cpu_state.eaaddr = (SP & 0xffff); + SP += 2; + return readmemw(ss, cpu_state.eaaddr); +} + +static void +nearcall(uint16_t new_ip) +{ + uint16_t ret_ip = cpu_state.pc & 0xffff; + + wait(1, 0); + set_ip(new_ip); + pfq_clear(); + wait(3, 0); + push(&ret_ip); +} + +static void +farcall(uint16_t new_cs, uint16_t new_ip, int jump) +{ + if (jump) + wait(1, 0); + pfq_do_suspend(); + wait(3, 0); + push(&CS); + load_cs(new_cs); + wait(2, 0); + nearcall(new_ip); +} + +static void +farcall2(uint16_t new_cs, uint16_t new_ip) +{ + wait(3, 0); + push(&CS); + load_cs(new_cs); + wait(2, 0); + nearcall(new_ip); +} + +static void +handle_exception(uint16_t exception) +{ + uint16_t vector = exception * 4; + + push(&tempf); + push(&CS); + push(&cpu_state.old_pc); + + do_cycles_i(3); + cpu_state.eaaddr = vector & 0xffff; + new_ip = readmemw(0, cpu_state.eaaddr); + do_cycle_i(); + cpu_state.eaaddr = (cpu_state.eaaddr + 2) & 0xffff; + new_cs = readmemw(0, cpu_state.eaaddr); + + pfq_do_suspend(); + set_ip(new_ip); + set_cs(new_cs); + pfq_clear(); +} + +/* Calls an interrupt. */ +/* The INTR microcode routine. */ +static void +intr_routine(uint16_t intr, int skip_first) +{ + uint16_t vector = intr * 4; + uint16_t tempf = cpu_state.flags & (is_nec ? 0x8fd7 : 0x0fd7); + uint16_t new_cs; + uint16_t new_ip; + uint16_t old_ip; + + if (!skip_first) + do_cycle_i(); + do_cycles_i(2); + + cpu_state.eaaddr = vector & 0xffff; + new_ip = readmemw(0, cpu_state.eaaddr); + do_cycle_i(); + cpu_state.eaaddr = (cpu_state.eaaddr + 2) & 0xffff; + new_cs = readmemw(0, cpu_state.eaaddr); + + pfq_do_suspend(); + do_cycles_i(2); + push(&tempf); + cpu_state.flags &= ~(I_FLAG | T_FLAG); + do_cycle_i(); + + farcall2(new_cs, new_ip); +} + +static void +sw_int(uint16_t intr) +{ + uint16_t vector = intr * 4; + uint16_t tempf = cpu_state.flags & (is_nec ? 0x8fd7 : 0x0fd7); + uint16_t new_cs; + uint16_t new_ip; + uint16_t old_ip; + + do_cycles_i(3); + cpu_state.eaaddr = vector & 0xffff; + new_ip = readmemw(0, cpu_state.eaaddr); + do_cycle_i(); + cpu_state.eaaddr = (cpu_state.eaaddr + 2) & 0xffff; + new_cs = readmemw(0, cpu_state.eaaddr); + + pfq_do_suspend(); + do_cycles_i(2); + push(&tempf); + cpu_state.flags &= ~(I_FLAG | T_FLAG); + + /* FARCALL2 */ + do_cycles_i(4); + push(&CS); + load_cs(new_cs); + do_cycle_i(); + + /* NEARCALL */ + old_ip = cpu_state.pc & 0xffff; + do_cycles_i92); + set_ip(new_ip); + pfq_clear(); + do_cycles_i(3); + push(&old_ip); +} + +static void +int1(void) +{ + do_cycles_i(2); + intr_routine(1, 1); +} + +static void +int2(void) +{ + do_cycles_i(2); + intr_routine(2, 1); +} + +static void +int3(void) +{ + do_cycles_i(4); + intr_routine(3, 0); +} + +static void +int_o(void) +{ + do_cycles_i(4); + + if (cpu_state.flags & V_FLAG) { + do_cycles_i(2); + intr_routine(4, 0); + } +} + +void +interrupt_808x(uint16_t addr) +{ + intr_routine(addr, 0); +} + +static void +custom_nmi(void) +{ + uint16_t tempf = cpu_state.flags & (is_nec ? 0x8fd7 : 0x0fd7); + uint16_t new_cs; + uint16_t new_ip; + uint16_t old_ip; + + do_cycle_i(); + do_cycles_i(2); + + cpu_state.eaaddr = 0x0002; + (void) readmemw(0, cpu_state.eaaddr); + new_ip = custom_nmi_vector & 0xffff; + do_cycle_i(); + cpu_state.eaaddr = (cpu_state.eaaddr + 2) & 0xffff; + (void) readmemw(0, cpu_state.eaaddr); + new_cs = custom_nmi_vector >> 16; + + pfq_do_suspend(); + do_cycles_i(2); + push(&tempf); + cpu_state.flags &= ~(I_FLAG | T_FLAG); + do_cycle_i(); + + farcall2(new_cs, new_ip); +} + +static int +irq_pending(void) +{ + uint8_t temp; + + temp = (nmi && nmi_enable && nmi_mask) || ((cpu_state.flags & T_FLAG) && !noint) || + ((cpu_state.flags & I_FLAG) && pic.int_pending && !noint); + + return temp; +} + +static int +bus_pic_ack(void) +{ + int old_in_lock = in_lock; + + in_lock = 1; + bus_request_type = BUS_PIC; + wait(4, 1); + in_lock = old_in_lock; + return pic_data; +} + +static void +hw_int(uint16_t vector) +{ + pfq_do_suspend(); + do_cycles_i(2); + + intr_routine(vector, 0); +} + +static void +check_interrupts(void) +{ + int temp; + + if (irq_pending()) { + if ((cpu_state.flags & T_FLAG) && !noint) { + wait(2, 0); + intr_routine(1, 0); + return; + } + if (nmi && nmi_enable && nmi_mask) { + nmi_enable = 0; + wait(2, 0); + if (use_custom_nmi_vector) + custom_nmi(); + else + intr_routine(2, 0); +#ifndef OLD_NMI_BEHAVIOR + nmi = 0; +#endif + return; + } + if ((cpu_state.flags & I_FLAG) && pic.int_pending && !noint) { + repeating = 0; + completed = 1; + ovr_seg = NULL; + wait(4, 0); + /* ACK to PIC */ + temp = bus_pic_ack(); + wait(1, 0); + /* ACK to PIC */ + temp = bus_pic_ack(); + in_lock = 0; + clear_lock = 0; + /* Here is where temp should be filled, but we cheat. */ + opcode = 0x00; + hw_int(temp); + } + } +} + +static int +iret_routine(void) +{ + do_cycle_i(); + farret(1); + /* pop_flags() */ + if (is_nec) + cpu_state.flags = pop() | 0x8002; + else + cpu_state.flags = pop() | 0x0002; + do_cycle_i(); + noint = 1; + nmi_enable = 1; +} + +static int +irq_pending(void) +{ + uint8_t temp; + + temp = (nmi && nmi_enable && nmi_mask) || ((cpu_state.flags & T_FLAG) && !noint) || + ((cpu_state.flags & I_FLAG) && pic.int_pending && !noint); + + return temp; +} + +static void +rep_end(void) +{ + repeating = 0; + in_rep = 0; + completed = 1; +} + +static int +rep_start(void) +{ + if (!repeating) { + if (in_rep != 0) { + if (CX == 0) { + do_cycles_i(4); + rep_end(); + return 0; + } else + do_cycles_i(7); + } + } + + completed = 1; + return 1; +} + +static void +rep_interrupt(void) +{ + pfq_do_suspend(); + do_cycles_i(4); + pfq_clear(); + + if (is_nec && (ovr_seg != NULL)) + set_ip((cpu_state.pc - 3) & 0xffff); + else + set_ip((cpu_state.pc - 2) & 0xffff); + + rep_end(); +} + +static void +sign_extend_al(void) +{ + if ((AL & 0x80) != 0) + AH = 0xff; + else + AH = 0x00; +} + +static void +sign_extend_ax(void) +{ + do_cycles(3); + if ((AX & 0x8000) == 0) + DX = 0x0000; + else { + do_cycle(); + DX = 0xffff; + } +} + +static void +reljmp(uint16_t new_ip, int jump) +{ + if (jump) + do_cycle_i(); + + pfq_do_suspend(); + do_cycles_i(3); + set_ip(new_ip); + pfq_clear(); + do_cycle_i(); +} + +static void +daa(void) +{ + uint16_t old_cf = cpu_state.flags & C_FLAG; + uint16_t old_af = cpu_state.flags & A_FLAG; + uint8_t old_al = AL; + uint8_t al_check; + + cpu_state.flags &= ~C_FLAG; + + al_check = (old_af ? 0x9f : 0x99); + + cpu_state.flags &= ~V_FLAG; + if (old_cf) { + if ((AL >= 0x1a) && (AL <= 0x7f)) + cpu_state.flags |= V_FLAG; + } else if ((AL >= 0x1a) && (AL <= 0x7f)) + cpu_state.flags |= V_FLAG; + + if (((AL & 0x0f) > 9) || (cpu_state.flags & A_FLAG)) { + AL += 6; + cpu_state.flags |= A_FLAG; + } else + cpu_state.flags &= ~A_FLAG; + + if ((old_al > al_check) || old_cf) { + AL += 0x60; + cpu_state.flags |= C_FLAG; + } else + cpu_state.flags &= ~C_FLAG; + + set_pzs(8); +} + +static void +das(void) +{ + uint8_t old_al = AL; + uint16_t old_af = cpu_stat.flags & A_FLAG; + uint16_t old_cf = cpu_stat.flags & C_FLAG; + uint8_t al_check = (old_af ? 0x9f : 0x99); + + cpu_state.flags &= ~V_FLAG; + + if (!old_af && !old_cf) { + if ((AL >= 0x9a) && (AL <= 0xdf)) + cpu_state.flags |= V_FLAG; + } else if (old_af && !old_cf) { + if (((AL >= 0x80) && (AL <= 0x85)) || ((AL >= ax80) && (AL <= 0xe5))) + cpu_state.flags |= V_FLAG; + } else if (!old_af && old_cf) { + if ((AL >= 0x80) && (AL <= 0xdf)) + cpu_state.flags |= V_FLAG; + } else if (old_af && old_cf) { + if ((AL >= 0x80) && (AL <= 0xe5)) + cpu_state.flags |= V_FLAG; + } + + cpu_state.flags &= ~C_FLAG; + if (((AL & 0x0f) > 9) || (cpu_state.flags & A_FLAG)) { + AL -= 6; + cpu_state.flags |= A_FLAG; + } else + cpu_state.flags &= ~A_FLAG; + + if ((old_al > al_check) || old_cf) { + AL -= 60; + cpu_state.flags |= C_FLAG; + } else + cpu_state.flags &= ~C_FLAG; + + set_pzs(8); +} + +static void +aaa(void) +{ + uint8_t old_al = AL; + uint8_t new_al; + + if (((AL & 0x0f) > 9) || (cpu_state.flags & A_FLAG)) { + AH += 1; + new_al = AL + 6; + AL = new_al & 0x0f; + cpu_state.flags |= A_FLAG; + cpu_state.flags |= C_FLAG; + } else { + new_al = AL; + AL &= 0x0f; + cpu_state.flags &= ~A_FLAG; + cpu_state.flags &= ~C_FLAG; + do_cycle_i(); + } + + cpu_state.flags &= ~(O_FLAG | Z_FLAG | N_FLAG); + if (new_al == 0x00) + cpu_state.flags |= Z_FLAG; + if ((old_al >= 0x7a) && (old_al <= 0x7f)) + cpu_state.flags |= O_FLAG; + if ((old_al >= 0x7a) && (old_al <= 0xf9)) + cpu_state.flags |= N_FLAG; + + cpu_data = new_al; + set_pf(); +} + +static void +aas(void) +{ + uint8_t old_al = AL; + uint16_t old_af = cpu_state.flags & A_FLAG; + uint8_t new_al; + + do_cycles_i(6); + + if (((AL & 0x0f) > 9) || old_af) { + new_al = AL - 6; + AH++; + AL = new_al & 0x0f; + cpu_state.flags |= (A_FLAG | C_FLAG); + } else { + new_al = AL; + AL &= 0x0f; + cpu_state.flags &= ~(C_FLAG | A_FLAG); + do_cycle_i(); + } + + cpu_state.flags &= ~(O_FLAG | Z_FLAG | N_FLAG); + if (new_al == 0x00) + cpu_state.flags |= Z_FLAG; + if (old_af && (old_al >= 0x80) && (old_al <= 0x85)) + cpu_state.flags |= O_FLAG; + if (!old_af && (old_al >= 0x80)) + cpu_state.flags |= N_FLAG; + if (old_af && ((old_al <= 0x05) || (old_al >= 0x86))) + cpu_state.flags |= N_FLAG; + + cpu_data = new_al; + set_pf(); +} + +static void +finalize(void) +{ + if (pfq_pos == 0) { + do { + if (nx) + nx = 0; + do_cycle(); + } while (pfq_pos == 0); + do_cycle(); + } else + do_cycle(); +} + +/* Executes instructions up to the specified number of cycles. */ +void +execx86(int cycs) +{ +#if 0 + uint8_t temp = 0; + uint8_t temp2; + uint8_t old_af; + uint8_t nests; + uint8_t temp_val; + uint8_t temp_al; + uint8_t bit; + uint8_t handled = 0; + uint8_t odd; + uint8_t zero; + uint8_t nibbles_count; + uint8_t destcmp; + uint8_t destbyte; + uint8_t srcbyte; + uint8_t nibble_result; + uint8_t bit_length; + uint8_t bit_offset; + int8_t nibble_result_s; + uint16_t addr; + uint16_t tempw; + uint16_t new_cs; + uint16_t new_ip; + uint16_t tempw_int; + uint16_t size; + uint16_t tempbp; + uint16_t lowbound; + uint16_t highbound; + uint16_t regval; + uint16_t orig_sp; + uint16_t wordtopush; + uint16_t immediate; + uint16_t old_flags; + uint16_t tmpa; + int bits; + uint32_t dest_seg; + uint32_t i; + uint32_t carry; + uint32_t nibble; + uint32_t srcseg; + uint32_t byteaddr; +#endif + + uint16_t jump; + int8_t rel8; + int16_t rel16; + uint16_t new_ip; + uint8_t tempb; + uint16_t tempw; + uint16_t zero_cond; + uint16_t old_cs; + uint16_t old_ip; + int negate; + uint16_t old_flags; + uint16_t prod16; + uint32_t prod32; + + cycles += cycs; + + while (cycles > 0) { + clock_start(); + + if (!repeating) { + cpu_state.oldpc = cpu_state.pc; + opcode = pfq_fetchb_common(); + handled = 0; + oldc = cpu_state.flags & C_FLAG; + if (clear_lock) { + in_lock = 0; + clear_lock = 0; + } + if (nx) { + wait(1, 0); + nx = 0; + } + wait(1, 0); + /* if (group_delay) { + wait(1, 0); + nx = 0; + } */ + } + + completed = 1; + x808x_log("[%04X:%04X] Opcode: %02X\n", CS, cpu_state.pc, opcode); + + switch (opcode) { + case 0x00: /* ADD r/m8, r8; r8, r/m8; al, imm8 */ + case 0x02: + case 0x04: + case 0x08: /* OR r/m8, r8; r8, r/m8; al, imm8 */ + case 0x0a: + case 0x0c: + case 0x10: /* ADC r/m8, r8; r8, r/m8; al, imm8 */ + case 0x12: + case 0x14: + case 0x18: /* SBB r/m8, r8; r8, r/m8; al, imm8 */ + case 0x1a: + case 0x1c: + case 0x20: /* AND r/m8, r8; r8, r/m8; al, imm8 */ + case 0x22: + case 0x24: + case 0x28: /* SUB r/m8, r8; r8, r/m8; al, imm8 */ + case 0x2a: + case 0x2c: + case 0x30: /* XOR r/m8, r8; r8, r/m8; al, imm8 */ + case 0x32: + case 0x34: + bits = 8; + /* read_operand8() */ + if (opcode & 0x04) { + cpu_data = pfq_fetch(); + cpu_dest = get_accum(bits); /* AX/AL */ + cpu_src = cpu_data; + } else { + do_mod_rm(); + tempw = get_ea(); + if (opcode & 2) { + cpu_dest = get_reg(cpu_reg); + cpu_src = tempw; + } else { + cpu_dest = tempw; + cpu_src = get_reg(cpu_reg); + } + } + do_cycles_nx_i(2); + if (addr_mode_match()) + do_cycles_i(2); + + /* math_op8() */ + math_op((opcode >> 3) & 7); + /* write_operand8() */ + if (opcode & 0x04) + set_accum(bits, cpu_data); + else { + if (opcode & 2) + set_reg(cpu_reg, cpu_data); + else + set_ea(cpu_data); + } + break; + + case 0x01: /* ADD r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x03: + case 0x05: + case 0x09: /* OR r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x0b: + case 0x0d: + case 0x11: /* ADC r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x13: + case 0x15: + case 0x19: /* SBB r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x1b: + case 0x1d: + case 0x21: /* AND r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x23: + case 0x25: + case 0x29: /* SUB r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x2b: + case 0x2d: + case 0x31: /* XOR r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x33: + case 0x35: + bits = 16; + nx = 1; + /* read_operand16() */ + if (opcode & 0x04) { + cpu_data = pfq_fetch(); + cpu_dest = get_accum(bits); /* AX/AL */ + cpu_src = cpu_data; + } else { + do_mod_rm(); + tempw = get_ea(); + if (opcode & 2) { + cpu_dest = get_reg(cpu_reg); + cpu_src = tempw; + } else { + cpu_dest = tempw; + cpu_src = get_reg(cpu_reg); + } + } + do_cycles_nx_i(2); + if (addr_mode_match()) + do_cycles_i(2); + + /* math_op16() */ + math_op((opcode >> 3) & 7); + /* write_operand16() */ + if (opcode & 0x04) + set_accum(bits, cpu_data); + else { + if (opcode & 2) + set_reg(cpu_reg, cpu_data); + else + set_ea(cpu_data); + } + break; + + case 0x06: + case 0x0e: + case 0x16: + case 0x1e: /* PUSH seg */ + wait(3, 0); + push(&(_opseg[(opcode >> 3) & 0x03]->seg)); + break; + + case 0x07: + case 0x17: + case 0x1f: /* POP seg */ + load_seg(pop(), _opseg[(opcode >> 3) & 0x03]); + /* All POP segment instructions suppress interrupts for one instruction. */ + noint = 1; + break; + + case 0x0f: + if (is_nec) { + // execvx0_0f(); + fatal("execvx0_0f() not yet implemented\n"); + } else { + load_cs(pop()); + /* All POP segment instructions suppress interrupts for one instruction. */ + noint = 1; + } + break; + + case 0x26: /* ES: */ + case 0x2e: /* CS: */ + case 0x36: /* SS: */ + case 0x3e: /* DS: */ + ovr_seg = opseg[(opcode >> 3) & 0x03]; + completed = 0; + break; + + case 0x27: /* DAA */ + do_cycles_nx_i(3); + daa(); + break; + + case 0x2f: /* DAS */ + do_cycles_nx_i(3); + das(); + break; + + case 0x37: /* AAA */ + aaa(); + break; + + case 0x38: /* CMP r/m8, r8; r8, r/m8; al, imm8 */ + case 0x3a: + case 0x3c: + bits = 8; + /* read_operand8() */ + if (opcode & 0x04) { + cpu_data = pfq_fetch(); + cpu_dest = get_accum(bits); /* AX/AL */ + cpu_src = cpu_data; + } else { + do_mod_rm(); + tempw = get_ea(); + if (opcode & 2) { + cpu_dest = get_reg(cpu_reg); + cpu_src = tempw; + } else { + cpu_dest = tempw; + cpu_src = get_reg(cpu_reg); + } + } + + do_cycles_nx_i(2); + + /* math_op8() */ + math_op(7); + break; + + case 0x39: /* CMP r/m16, r16; r16, r/m16; ax, imm16 */ + case 0x3b: + case 0x3d: + bits = 16; + /* read_operand16() */ + if (opcode & 0x04) { + cpu_data = pfq_fetch(); + cpu_dest = get_accum(bits); /* AX/AL */ + cpu_src = cpu_data; + } else { + do_mod_rm(); + tempw = get_ea(); + if (opcode & 2) { + cpu_dest = get_reg(cpu_reg); + cpu_src = tempw; + } else { + cpu_dest = tempw; + cpu_src = get_reg(cpu_reg); + } + } + + do_cycles_nx_i((opcode == 0x3d) ? 1 : 2); + + /* math_op16() */ + math_op(7); + break; + + case 0x3f: /*AAS*/ + aas(); + break; + + case 0x40 ... 0x47: /* INC r16 */ + /* read_operand16() */ + cpu_dest = cpu_state.regs[opcode & 7].w; + cpu_src = 1; + bits = 16; + /* math_op16() */ + cpu_data = cpu_dest + cpu_src; + set_of_add(bits); + do_af(); + set_pzs(16); + /* write_operand16() */ + cpu_state.regs[opcode & 7].w = cpu_data; + do_cycles_nx(1); + break; + + case 0x48 ... 0x4f: /* DEC r16 */ + /* read_operand16() */ + cpu_dest = cpu_state.regs[opcode & 7].w; + cpu_src = 1; + bits = 16; + /* math_op16() */ + cpu_data = cpu_dest - cpu_src; + set_of_sub(bits); + do_af(); + set_pzs(16); + /* write_operand16() */ + cpu_state.regs[opcode & 7].w = cpu_data; + do_cycles_nx(1); + break; + + case 0x50 ... 0x57: /* PUSH r16 */ + do_cycles_i(3); + push(&(cpu_state.regs[opcode & 0x07].w)); + break; + + case 0x58 ... 0x5f: /* POP r16 */ + cpu_state.regs[opcode & 0x07].w = pop(); + do_cycle_nx_i(); + break; + + case 0x60 ... 0x7f: /* JMP rel8 */ + if (is_nec && (opcode < 0x70)) { + // execvx0_6x(); + fatal("execvx0_6x() not yet implemented\n"); + } else { + switch ((opcode >> 1) & 0x07) { + case 0x00: + jump = cpu_state & V_FLAG; + break; + case 0x01: + jump = cpu_state & C_FLAG; + break; + case 0x02: + jump = cpu_state & Z_FLAG; + break; + case 0x03: + jump = cpu_state & (C_FLAG | Z_FLAG); + break; + case 0x04: + jump = cpu_state & N_FLAG; + break; + case 0x05: + jump = cpu_state & P_FLAG; + break; + case 0x06: + jump = (!!(cpu_state & N_FLAG)) != (!!(cpu_state & V_FLAG)); + break; + case 0x07: + jump = (cpu_state & Z_FLAG) || + ((!!(cpu_state & N_FLAG)) != (!!(cpu_state & V_FLAG)))); + break; + } + if (opcode & 1) + jump = !jump; + + new_ip = cpu_state.pc + ((int8_t) pfq_fetch()); + cpu_do_cycle_i(); + + if (jump) + reljmp(new_ip, 1); + } + break; + + case 0x80: /* ADD/OR/ADC/SBB/AND/SUB/XOR/CMP r/m8, imm8 */ + case 0x82: + bits = 8; + /* read_opreand8() */ + do_mod_rm(); + cpu_data = get_ea(); + cpu_dest = cpu_data; + cpu_src = pfq_fetchb() | 0xff00; + + do_cycle_nx(); + math_op((rmdat & 0x38) >> 3); + + if (addr_mode_match()) + do_cycles_i(2); + + /* write_operand8() */ + if (cpu_alu_op != 7) + set_ea(cpu_data); + break; + + case 0x81: /* ADD/OR/ADC/SBB/AND/SUB/XOR/CMP r/m16, imm16 */ + bits = 16; + /* read_opreand16() */ + do_mod_rm(); + cpu_data = get_ea(); + cpu_dest = cpu_data; + cpu_src = pfq_fetchw(); + + do_cycle_nx(); + math_op((rmdat & 0x38) >> 3); + + if (addr_mode_match()) { + if (cpu_alu_op != 7) + do_cycles_i(2); + else { + do_cycles_nx_i(2); + } + } + + /* write_operand16() */ + if (cpu_alu_op != 7) + set_ea(cpu_data); + break; + + case 0x83: /* ADD/OR/ADC/SBB/AND/SUB/XOR/CMP r/m16, imm8 (sign-extended) */ + bits = 16; + /* read_opreand16() */ + do_mod_rm(); + cpu_data = get_ea(); + cpu_dest = cpu_data; + cpu_src = sign_extend(pfq_fetchb()); + + do_cycle_nx(); + math_op((rmdat & 0x38) >> 3); + + if (addr_mode_match()) + do_cycles_i(2); + + /* write_operand16() */ + if (cpu_alu_op != 7) + set_ea(cpu_data); + break; + + case 0x84: /* TEST r/m8, r8 */ + bits = 8; + /* read_operand8() */ + do_mod_rm(); + cpu_data = get_ea(); + + /* math_op8() */ + test(bits, cpu_data, get_reg(cpu_reg)); + + do_cycles_nx_i(2); + break; + + case 0x85: /* TEST r/m16, r16 */ + bits = 16; + /* read_operand16() */ + do_mod_rm(); + cpu_data = get_ea(); + + /* math_op16() */ + test(bits, cpu_data, get_reg(cpu_reg)); + + do_cycles_nx_i(2); + break; + + case 0x86: /* XHG r8, r/m8 */ + bits = 8; + /* read_operand8() */ + do_mod_rm(); + cpu_data = get_ea(); + cpu_src = get_reg(cpu_reg); + + do_cycles_nx(3); + + if (addr_mode_match()) + do_cycles(2); + + /* write_operand8() */ + set_reg(cpu_reg, cpu_data); + set_ea(cpu_src); + break; + + case 0x87: /* XCHG r16, r/m16 */ + bits = 16; + /* read_operand16() */ + do_mod_rm(); + cpu_data = get_ea(); + cpu_src = get_reg(cpu_reg); + + do_cycles_nx(3); + + if (addr_mode_match()) + do_cycles(2); + + /* write_operand16() */ + set_reg(cpu_reg, cpu_data); + set_ea(cpu_src); + break; + + case 0x88: /* MOV r/m8, r8; MOV r8, r/m8 */ + case 0x8a: + bits = 8; + do_cycle_nx(); + /* read_operand8() */ + do_mod_rm(); + if (opcode == 0x88) + tempb = get_reg(cpu_reg); + else + tempb = get_ea(); + + if (addr_mode_match()) + do_cycles(2); + + /* write_operand8() */ + if (opcode == 0x88) + set_ea(tempb); + else + set_reg(cpu_reg, tempb); + break; + + case 0x89: /* MOV r/m16, r16; MOV r16, r/m16 */ + case 0x8b: + bits = 16; + do_cycle_nx(); + /* read_operand16() */ + do_mod_rm(); + if (opcode == 0x89) + tempw = get_reg(cpu_reg); + else + tempw = get_ea(); + + if (addr_mode_match()) + do_cycles(2); + + /* write_operand16() */ + if (opcode == 0x89) + set_ea(tempw); + else + set_reg(cpu_reg, tempw); + break; + + case 0x8c: /* MOV r/m16, SReg; MOV SReg, r/m16 */ + case 0x8e: + bits = 16; + do_mod_rm(); + if (addr_mode_match()) + do_cycle_i(); + /* read_operand16() */ + if (opcode == 0x8c) + tempw = _opseg[(rmdat & 0x18) >> 3]->seg; + else + tempw = geteaw(); + /* write_operand16() */ + if (opcode == 0x8c) + seteaw(tempw); + else { + if ((rmdat & 0x18) == 0x08) + load_cs(tempw); + else + load_seg(tempw, _opseg[(rmdat & 0x18) >> 3]); + if (((rmdat & 0x18) >> 3) == 2) + noint = 1; + } + break; + + case 0x8d: /* LEA */ + do_mod_rm(); + cpu_state.regs[cpu_reg].w = cpu_state.eaaddr; + break; + + case 0x8f: /* POP r/m16 */ + do_cycle_i(); + /* pop_u16() */ + do_mod_rm(); + cpu_src = cpu_state.eaaddr; + cpu_data = pop(); + do_cycle_i(); + if (addr_mode_match()) + do_cycles_i(2); + /* write_operand16() */ + cpu_state.eaaddr = cpu_src; + seteaw(cpu_data); + break; + + case 0x90 ... 0x97: /* XCHG AX, r */ + cpu_data = cpu_state.regs[opcode & 7].w; + do_cycles_nx_i(2); + cpu_state.regs[opcode & 7].w = AX; + AX = cpu_data; + break; + + case 0x98: /* CBW */ + sign_extend_al(); + break; + + case 0x99: /* CWD */ + sign_extend_ax(); + break; + + case 0x9a: /* CALLF */ + /* read_operand_faraddr() */ + new_ip = pfq_fetchw(); + new_cs = pfq_fetchw(); + + do_cycle_i(); + pfq_do_suspend(); + do_cycles_i(3); + + push(&(CS)); + + do_cycles_i(3); + + load_cs(new_cs); + cpu_state.oldpc = cpu_state.pc; + set_ip(new_ip); + + pfq_clear(); + do_cycles_i(3); + push((uint16_t *) &(cpu_state.oldpc)); + break; + + case 0x9b: /* WAIT */ + do_cycles(3); + break; + + case 0x9c: /* PUSHF */ + do_cycles(3); + /* push_flags() */ + if (is_nec) + tempw = (cpu_state.flags & 0x8fd7) | 0x7000; + else + tempw = (cpu_state.flags & 0x0fd7) | 0xf000; + push(&tempw); + break; + + case 0x9d: /* POPF */ + /* pop_flags() */ + if (is_nec) + cpu_state.flags = pop() | 0x8002; + else + cpu_state.flags = pop() | 0x0002; + break; + + case 0x9e: /* SAHF */ + /* store_flags() */ + cpu_state.flags = (cpu_state.flags & 0xff02) | AH; + break; + + case 0x9f: /*LAHF*/ + /* load_flags() */ + /* set_register8() */ + AH = cpu_state.flags & 0xd7; + break; + + case 0xa0: /* MOV al, offset8 */ + bits = 8; + /* read_operand8() */ + cpu_state.eaaddr = pfq_fetchw(); + tempb = readmem(ovr_seg ? *ovr_seg : ds); + /* set_register8() */ + set_accum(bits, tempb); + break; + + case 0xa1: /* MOV al, offset16 */ + bits = 16; + /* read_operand16() */ + cpu_state.eaaddr = pfq_fetchw(); + tempbw = readmem(ovr_seg ? *ovr_seg : ds); + /* set_register16() */ + set_accum(bits, tempw); + break; + + case 0xa2: /* MOV offset8, Al */ + bits = 8; + tempb = get_accum(bits); + /* write_operand8() */ + cpu_state.eaaddr = pfq_fetchw(); + writemem((ovr_seg ? *ovr_seg : ds), tempb); + break; + + case 0xa3: /* MOV offset16, AX */ + bits = 16; + tempw = get_accum(bits); + /* write_operand16() */ + cpu_state.eaaddr = pfq_fetchw(); + writemem((ovr_seg ? *ovr_seg : ds), tempw); + break; + + case 0xa4: /* MOVSB & MOVSW */ + case 0xa5: + bits = 8 << (opcode & 1); + if (rep_start()) { + /* string_op() */ + lods(bits); + do_cycle_i(); + stos(bits); + do_cycle_i(); + + if (in_rep != 0) { + completed = 0; + repeating = 1; + + /* decrement_register16() */ + CX--; + + if (irq_pending()) { + do_cycles_i(2); + rep_interrupt(); + } else { + do_cycles_i(2); + + if (CX == 0) + rep_end(); + else + do_cycle_i(); + } + } else + do_cycle_i(); + } + break; + + case 0xa6: /* CMPSB, CMPSW, SCASB, SCASW */ + case 0xa7: + case 0xae: + case 0xaf: + bits = 8 << (opcode & 1); + if (rep_start()) { + /* string_op() */ + if (opcode & 8) { + tmpa = AX; + do_cycles_i(2); + lods_di(bits); + do_cycles_i(3); + + cpu_src = cpu_data; + cpu_dest = tmpa; + sub(bits); + } else { + do_cycle_i() + lods(bits); + tmpa = cpu_data; + do_cycles_i(2); + lods_di(bits); + do_cycles_i(3); + + cpu_src = cpu_data; + cpu_dest = tmpa; + sub(bits); + } + + if (in_rep) { + uint8_t end = 0; + + completed = 0; + repeating = 1; + + do_cycle_i(); + /* decrement_register16() */ + CX--; + + if ((!!(cpu_state.flags & (rep_c_flag ? C_FLAG : Z_FLAG))) == (in_rep == 1)) { + rep_end(); + do_cycle_i(); + end = 1; + } + + if (!end) { + do_cycle_i(); + + if (irq_pending()) { + do_cycle_i(); + rep_interrupt(); + } + + do_cycle_i(); + if (CX == 0) + rep_end(); + else + do_cycle_i(); + } else + do_cycle_i(); + } + } + break; + + case 0xa8: /* TEST al, imm8 */ + bits = 8; + /* read_operand8() */ + cpu_data = pfq_fetch(); + /* math_op8() */ + test(bits, get_accum(bits), cpu_data); + break; + + case 0xa9: /* TEST ax, imm16 */ + bits = 16; + /* read_operand16() */ + cpu_data = pfq_fetch(); + /* math_op16() */ + test(bits, get_accum(bits), cpu_data); + break; + + case 0xaa: /* STOSB & STOSW */ + case 0xab: + bits = 8 << (opcode & 1); + if (rep_start()) { + /* string_op() */ + cpu_data = AX; + /* This has to be here or Snatch-It! doesn't work. */ + wait(1, 0); + stos(bits); + + if (in_rep != 0) { + completed = 0; + repeating = 1; + + do_cycle_i(); + if (irq_pending()) { + do_cycle_i(); + rep_interrupt(); + } + + do_cycle_i(); + /* decrement_register16() */ + CX--; + if (CX == 0) + rep_end(); + else + do_cycle_i(); + } else + do_cycle_i(); + } + break; + + case 0xac: /* LODSB * LODSW */ + case 0xad: + bits = 8 << (opcode & 1); + if (rep_start()) { + /* string_op() */ + lods(bits); + set_accum(bits, cpu_data); + do_cycles_i(3); + + if (in_rep != 0) { + completed = 0; + repeating = 1; + + do_cycle_i(); + /* decrement_register16() */ + CX--; + + if (irq_pending()) { + do_cycles_i(2); + rep_interrupt(); + } else { + do_cycles_i(2); + + if (CX == 0) + rep_end(); + else + do_cycle_i(); + } + } + } + break; + + case 0xb0 ... 0xb7: /* MOV r8, imm8 */ + bits = 8; + /* read_operand8() */ + tempb = pfq_fetch(); + /* set_register8() */ + if (opcode & 0x04) + cpu_state.regs[opcode & 0x03].b.h = pfq_fetchb(); + else + cpu_state.regs[opcode & 0x03].b.l = pfq_fetchb(); + do_cycle_i(); + break; + + case 0xb8 ... 0xbf: /* MOV r16, imm16 */ + bits = 16; + /* read_operand16() */ + tempw = pfq_fetch(); + /* set_register16() */ + cpu_state.regs[opcode & 0x07].w = pfq_fetchw(); + break; + + case 0xc0: /* RETN imm16 */ + case 0xc2: + bits = 8; + cpu_src = pfq_fetchw(); + do_cycle_i(); + new_ip = pop(); + set_ip(new_ip); + + pfq_do_suspend(); + do_cycles_i(2); + pfq_clear(); + do_cycles_i(3); + + /* release() */ + SP += cpu_src; + + jump = 1; + break; + + case 0xc1: /* RETN */ + case 0xc3: + bits = 8; + new_ip = pop(); + cpu_src = pfq_fetchw(); + pfq_do_suspend(); + set_ip(new_ip); + do_cycle_i(); + pfq_clear(); + do_cycles_i(2); + + jump = 1; + break; + + case 0xc4: /* LES */ + case 0xc5: /* LDS */ + do_mod_rm(); + bits = 16; + + do_cycles_i(2); + + /* read_operand_farptr() */ + read_ea(1, bits); + cpu_state.regs[cpu_reg].w = cpu_data; + read_ea2(bits); + + /* write_operand16() */ + load_seg(cpu_data, (opcode & 0x01) ? &cpu_state.seg_ds : &cpu_state.seg_es); + break; + + case 0xc6: /* MOV r/m8, imm8 */ + bits = 8; + /* read_operand8() */ + do_mod_rm(); + cpu_data = pfq_fetch(); + do_cycles(2); + /* write_operand8() */ + set_ea(cpu_data); + break; + + case 0xc7: /* MOV r/m16, imm16 */ + bits = 16; + /* read_operand16() */ + do_mod_rm(); + cpu_data = pfq_fetch(); + do_cycle_i(); + /* write_operand16() */ + set_ea(cpu_data); + break; + + case 0xc8: /* RETF imm16 */ + case 0xca: + bits = 8 + (opcode & 0x08); + /* read_operand16() */ + cpu_src = pfq_fetchw(); + farret(1); + /* release() */ + SP += cpu_src; + do_cycle_i(); + jump = 1; + break; + + case 0xc9: /* RETF */ + case 0xcb: + bits = 8 + (opcode & 0x08); + do_cycle_i(); + farret(1); + jump = 1; + break; + + case 0xcc: /* INT 3 */ + do_cycles_i(4); + int3(); + jump = 1; + break; + + case 0xcd: /* INT imm8 */ + /* read_operand8() */ + temp = pfq_fetchb(); + do_cycle_i(); + sw_int(temp); + jump = 1; + break; + + case 0xce: /* INTO */ + if (cpu_state.flags & V_FLAG) { + sw_int(4); + jump = 1; + } + break; + + case 0xcf: /* IRET */ + iret_routine(); + jump = 1; + break; + + case 0xd0: /* ROL, ROR, RCL, RCR, SHL, SHR, SAR: r/m 8, 0x01 */ + case 0xd1: /* ROL, ROR, RCL, RCR, SHL, SHR, SAR: r/m 16, 0x01 */ + case 0xd2: /* ROL, ROR, RCL, RCR, SHL, SHR, SAR: r/m 8, cl */ + case 0xd3: /* ROL, ROR, RCL, RCR, SHL, SHR, SAR: r/m 16, cl */ + /* rot rm */ + bits = 8 << (opcode & 1); + do_mod_rm(); + /* read_operand() */ + cpu_data = get_ea(); + if ((opcode & 2) == 0) + cpu_src = 1; + else + cpu_src = CL; + if (is186 && !is_nec) + cpu_src &= 0x1F; + if (opcode >= 0xd2) { + do_cycles_i(6); + if (CL > 0) { + for (uint8_t i = 0; i < CL; i++) + do_cycles_i(4); + } + if (addr_mode_match()) + do_cycle_i(); + } + /* bitshift_op() */ + while (cpu_src != 0) { + cpu_dest = cpu_data; + oldc = cpu_state.flags & C_FLAG; + switch (rmdat & 0x38) { + case 0x00: /* ROL */ + set_cf(top_bit(cpu_data, bits)); + cpu_data <<= 1; + cpu_data |= ((cpu_state.flags & C_FLAG) ? 1 : 0); + set_of_rotate(bits); + set_af(0); + break; + case 0x08: /* ROR */ + set_cf((cpu_data & 1) != 0); + cpu_data >>= 1; + if (cpu_state.flags & C_FLAG) + cpu_data |= (!(opcode & 1) ? 0x80 : 0x8000); + set_of_rotate(bits); + set_af(0); + break; + case 0x10: /* RCL */ + set_cf(top_bit(cpu_data, bits)); + cpu_data = (cpu_data << 1) | (oldc ? 1 : 0); + set_of_rotate(bits); + set_af(0); + break; + case 0x18: /* RCR */ + set_cf((cpu_data & 1) != 0); + cpu_data >>= 1; + if (oldc) + cpu_data |= (!(opcode & 0x01) ? 0x80 : 0x8000); + set_cf((cpu_dest & 1) != 0); + set_of_rotate(bits); + set_af(0); + break; + case 0x20: /* SHL */ + set_cf(top_bit(cpu_data, bits)); + cpu_data <<= 1; + set_of_rotate(bits); + set_af((cpu_data & 0x10) != 0); + set_pzs(bits); + break; + case 0x28: /* SHR */ + set_cf((cpu_data & 1) != 0); + cpu_data >>= 1; + set_of_rotate(bits); + set_af(0); + set_pzs(bits); + break; + case 0x30: /* SETMO - undocumented? */ + bitwise(bits, 0xffff); + set_cf(0); + set_of_rotate(bits); + set_af(0); + set_pzs(bits); + break; + case 0x38: /* SAR */ + set_cf((cpu_data & 1) != 0); + cpu_data >>= 1; + if (!(opcode & 1)) + cpu_data |= (cpu_dest & 0x80); + else + cpu_data |= (cpu_dest & 0x8000); + set_of_rotate(bits); + set_af(0); + set_pzs(bits); + break; + + default: + break; + } + --cpu_src; + } + + if (opcode <= 0xd1) { + if (addr_mode_match()) + do_cycle_i(); + } + + /* write_operand() */ + set_ea(cpu_data); + break; + + case 0xD5: /*AAD*/ + wait(1, 0); + if (is_nec) { + (void) pfq_fetchb(); + mul(10, AH); + } else + mul(pfq_fetchb(), AH); + cpu_dest = AL; + cpu_src = cpu_data; + add(8); + AL = cpu_data; + AH = 0x00; + break; + + case 0xd4: /* AAM */ + /* read_operand8() */ + cpu_src = pfq_fetchb(); + /* Confirmed to be identical on V20/V30 to 808x, per + XTIDE working correctly on both (it uses AAM with + parameter other than 10. */ +#ifdef NO_VARIANT_ON_NEC + if (is_nec) + cpu_src = 10; +#endif + /* aam() */ + if (x86_div(AL, 0)) + set_pzs(16); + break; + + case 0xd5: /* AAD */ + /* read_operand8() */ + cpu_src = pfq_fetchb(); + if (is_nec) + cpu_src = 10; + /* aad() */ + mul(cpu_src, AH); + cpu_dest = AL; + cpu_src = cpu_data; + add(8); + AL = cpu_data; + AH = 0x00; + break; + + case 0xd6: /* SALC */ + AL = (cpu_state.flags & C_FLAG) ? 0xff : 0x00; + break; + + case 0xd7: /* XLAT */ + do_cycles_i(3, 0); + /* biu_read_u8() */ + cpu_state.eaaddr = (BX + AL) & 0xffff; + tempb = readmemb((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + /* set_register8() */ + AL = tempb; + break; + + case 0xd8 ... 0xdf: /* ESC - FPU instructions. */ + /* read_operand16() */ + do_mod_rm(); + tempw = cpu_state.pc; + geteaw(); + /* fpu_op() */ + if (hasfpu) { + if (fpu_softfloat) { + switch (opcode) { + case 0xd8: + ops_sf_fpu_8087_d8[(rmdat >> 3) & 0x1f](rmdat); + break; + case 0xd9: + ops_sf_fpu_8087_d9[rmdat & 0xff](rmdat); + break; + case 0xda: + ops_sf_fpu_8087_da[rmdat & 0xff](rmdat); + break; + case 0xdb: + ops_sf_fpu_8087_db[rmdat & 0xff](rmdat); + break; + case 0xdc: + ops_sf_fpu_8087_dc[(rmdat >> 3) & 0x1f](rmdat); + break; + case 0xdd: + ops_sf_fpu_8087_dd[rmdat & 0xff](rmdat); + break; + case 0xde: + ops_sf_fpu_8087_de[rmdat & 0xff](rmdat); + break; + case 0xdf: + ops_sf_fpu_8087_df[rmdat & 0xff](rmdat); + break; + + default: + break; + } + } else { + switch (opcode) { + case 0xd8: + ops_fpu_8087_d8[(rmdat >> 3) & 0x1f](rmdat); + break; + case 0xd9: + ops_fpu_8087_d9[rmdat & 0xff](rmdat); + break; + case 0xdA: + ops_fpu_8087_da[rmdat & 0xff](rmdat); + break; + case 0xdb: + ops_fpu_8087_db[rmdat & 0xff](rmdat); + break; + case 0xdc: + ops_fpu_8087_dc[(rmdat >> 3) & 0x1f](rmdat); + break; + case 0xdd: + ops_fpu_8087_dd[rmdat & 0xff](rmdat); + break; + case 0xde: + ops_fpu_8087_de[rmdat & 0xff](rmdat); + break; + case 0xdf: + ops_fpu_8087_df[rmdat & 0xff](rmdat); + break; + + default: + break; + } + } + } + cpu_state.pc = tempw; /* Do this as the x87 code advances it, which is needed on + the 286+ core, but not here. */ + break; + + case 0xe0: /* LOOPNE & LOOPE */ + case 0xe1: + /* decrement_register16() */ + --CX; + do_cycles_i(2); + + zero_cond = !(cpu_state.flags & Z_FLAG); + if (opcode == 0xe1) + zero_cond = !zero_cond; + + /* read_operand8() */ + cpu_data = pfq_fetchb(); + + if ((CX != 0x0000) && zero_cond) { + new_ip = cpu_state.pc + ((int8_t) cpu_data); + reljmp(new_ip, 1); + jump = 1; + } else + do_cycle_i(); + break; + + case 0xe2: /* LOOP */ + /* decrement_register16() */ + --CX; + do_cycles_i(2); + + /* read_operand8() */ + cpu_data = pfq_fetchb(); + + if (CX != 0x0000) { + new_ip = cpu_state.pc + ((int8_t) cpu_data); + reljmp(new_ip, 1); + jump = 1; + } + if (!jump) + do_cycle(); + break; + + case 0xe3: /* JCXZ */ + do_cycles_i(2); + /* read_operand8() */ + cpu_data = pfq_fetchb(); + + do_cycle_i(); + + if (CX != 0x0000) { + new_ip = cpu_state.pc + ((int8_t) cpu_data); + reljmp(new_ip, 1); + jump = 1; + } else + do_cycle_i(); + break; + + case 0xe4: /* IN al, imm8 */ + bits = 8; + /* read_operand8() */ + cpu_data = pfq_fetchb(); + do_cycles_i(2); + + /* biu_io_read_u8() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 0, cpu_state.eaaddr); + /* set_register8() */ + break; + + case 0xe5: /* IN ax, imm8 */ + bits = 16; + /* read_operand16() */ + cpu_data = pfq_fetchb(); + do_cycles_i(2); + + /* biu_io_read_u16() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 0, cpu_state.eaaddr); + /* set_register16() */ + break; + + case 0xe6: /* OUT imm8, al */ + bits = 8; + /* read_operand8() */ + cpu_data = pfq_fetchb(); + /* read_operand8() */ + tempb = AL; + do_cycles_i(2); + + /* biu_io_write_u8() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 1, cpu_state.eaaddr); + break; + + case 0xe7: /* OUT imm8, ax */ + bits = 16; + /* read_operand8() */ + cpu_data = pfq_fetchb(); + /* read_operand16() */ + tempw = AX; + do_cycles_i(2); + + /* biu_io_write_u16() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 1, cpu_state.eaaddr); + break; + + case 0xe8: /* CALL rel16 */ + /* read_operand16() */ + rel16 = (int16_t) pfq_fetchw(); + + pfq_do_suspend(); + do_cycles_i(4); + + old_cs = CS; + old_ip = cpu_state.pc; + + new_ip = cpu_state.pc + rel16; + + set_ip(new_ip); + pfq_clear(); + do_cycles_i(3); + + push(&old_ip); + jump = 1; + break; + + case 0xe9: /* JMP rel16 */ + /* read_operand16() */ + rel16 = (int16_t) pfq_fetchw(); + new_ip = cpu_state.pc + rel16; + + reljmp(new_ip, 1); + jump = 1; + break; + + case 0xea: /* JMP far [addr16:16] */ + /* read_operand_faraddr() */ + addr = pfq_fetchw(); + tempw = pfq_fetchw(); + load_cs(tempw); + pfq_do_suspend(); + set_ip(addr); + + do_cycles_i(2); + pfq_clear(); + do_cycle_i(); + jump = 1; + break; + + case 0xeb: /* JMP rel8 */ + /* read_operand8() */ + rel8 = (int8_t) pfq_fetchb(); + new_ip = cpu_state.pc + rel8; + + reljmp(new_ip, 1); + jump = 1; + break; + + case 0xec: /* IN al, dx */ + bits = 8; + /* read_operand8() */ + cpu_data = DX; + /* biu_io_read_u8() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 0, cpu_state.eaaddr); + /* set_register8() */ + break; + + case 0xed: /* IN ax, dx */ + bits = 16; + /* read_operand16() */ + cpu_data = DX; + /* biu_io_read_u16() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 0, cpu_state.eaaddr); + /* set_register16() */ + break; + + case 0xee: /* OUT dx, al */ + bits = 8; + /* read_operand8() */ + cpu_data = DX; + /* read_operand8() */ + tempb = AL; + do_cycle_i(); + + /* biu_io_write_u8() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 1, cpu_state.eaaddr); + break; + + case 0xef: /* OUT dx, ax */ + bits = 16; + /* read_operand8() */ + cpu_data = DX; + /* read_operand16() */ + tempw = AX; + do_cycle_i(); + + /* biu_io_write_u16() */ + cpu_state.eaaddr = cpu_data; + cpu_io(bits, 1, cpu_state.eaaddr); + break; + + case 0xf0: + case 0xf1: /* LOCK - F1 is alias */ + in_lock = 1; + do_cycle(); + completed = 0; + break; + + case 0xf2: /* REPNE */ + case 0xf3: /* REPE */ + in_rep = (opcode == 0xf2 ? 1 : 2); + completed = 0; + rep_c_flag = 0; + break; + + case 0xf4: /* HLT */ + if (repeating) { + do_cycle(); + do_cycle(); + do_cycle(); + if (irq_pending()) { + check_interrupts(); + do_cycles(7); + } else { + repeating = 1; + completed = 0; + } + } else { + pfq_do_suspend(); + do_cycles(2); + repeating = 1; + completed = 0; + } + break; + + case 0xf5: /* CMC */ + cpu_state.flags ^= C_FLAG; + break; + + case 0xf6: /* Miscellaneuous Opcode Extensions, r/m8, imm8 */ + bits = 8; + do_mod_rm(); + negate = !!in_rep; + + switch (rmdat & 0x38) { + case 0x00: /* TEST */ + case 0x08: + /* read_operand8() */ + cpu_data = get_ea(); + /* read_operand8() */ + cpu_src = pfq_fetch(); + + do_cycles_i(2); + + /* math_op8() */ + test(bits, cpu_data, cpu_src); + break; + case 0x10: /* NOT */ + case 0x18: /* NEG */ + /* read_operand8() */ + cpu_data = get_ea(); + /* math_op8() */ + if ((rmdat & 0x38) == 0x10) + cpu_data = ~cpu_data; + else { + cpu_src = cpu_data; + cpu_dest = 0; + sub(bits); + } + + if (addr_mode_match()) + do_cycles_i(2); + + /* write_operand8() */ + set_ea(cpu_data); + break; + + case 0x20: /* MUL */ + case 0x28: /* IMUL */ + /* read_operand8() */ + cpu_data = get_ea(); + + /* mul8() */ + old_flags = cpu_state.flags; + mul(get_accum(bits), cpu_data); + prod16 = ((cpu_dest & 0xff) << 8) | (cpu_data & 0xff); + if (negate) + prod16 = -prod16; + cpu_dest = prod16 >> 8; + cpu_data = prod16 & 0xff; + AL = (uint8_t) cpu_data; + AH = (uint8_t) cpu_dest; + set_co_mul(bits, AH != ((AL & 0x80) == 0 || + (rmdat & 0x38) == 0x20 ? 0 : 0xff)); + if (!is_nec) + cpu_data = AH; + } + set_sf(bits); + set_pf(); + /* NOTE: When implementing the V20, care should be taken to not change + the zero flag. */ + if (is_nec) + cpu_state.flags = (cpu_state.flags & ~Z_FLAG) | (old_flags & Z_FLAG); + break; + + case 0x30: /* DIV */ + case 0x38: /* IDIV */ + /* read_operand8() */ + cpu_data = get_ea(); + + cpu_src = cpu_data; + if (x86_div(AL, AH)) { + if (negate) + AL = -AL; + do_cycle(i); + } + break; + } + break; + + case 0xf7: /* Miscellaneuous Opcode Extensions, r/m16, imm16 */ + bits = 16; + do_mod_rm(); + negate = !!in_rep; + + switch (rmdat & 0x38) { + case 0x00: /* TEST */ + case 0x08: + /* read_operand16() */ + cpu_data = get_ea(); + /* read_operand16() */ + cpu_src = pfq_fetch(); + + do_cycle_i(); + + /* math_op16() */ + test(bits, cpu_data, cpu_src); + break; + case 0x10: /* NOT */ + case 0x18: /* NEG */ + /* read_operand16() */ + cpu_data = get_ea(); + /* math_op16() */ + if ((rmdat & 0x38) == 0x10) + cpu_data = ~cpu_data; + else { + cpu_src = cpu_data; + cpu_dest = 0; + sub(bits); + } + + if (addr_mode_match()) + do_cycles_i(2); + + /* write_operand16() */ + set_ea(cpu_data); + break; + + case 0x20: /* MUL */ + case 0x28: /* IMUL */ + /* read_operand16() */ + cpu_data = get_ea(); + + /* mul8() */ + old_flags = cpu_state.flags; + mul(get_accum(bits), cpu_data); + prod32 = (((uint32_t) cpu_dest) << 16) | cpu_data; + if (negate) + prod32 = -prod32; + cpu_dest = prod32 >> 16; + cpu_data = prod32 & 0xffff; + AX = cpu_data; + DX = cpu_dest; + set_co_mul(bits, DX != ((AX & 0x8000) == 0 || + (rmdat & 0x38) == 0x20 ? 0 : 0xffff)); + cpu_data = DX; + } + set_sf(bits); + set_pf(); + /* NOTE: When implementing the V20, care should be taken to not change + the zero flag. */ + if (is_nec) + cpu_state.flags = (cpu_state.flags & ~Z_FLAG) | (old_flags & Z_FLAG); + break; + + case 0x30: /* DIV */ + case 0x38: /* IDIV */ + /* read_operand16() */ + cpu_data = get_ea(); + + cpu_src = cpu_data; + if (x86_div(AX, DX)) { + if (negate) + AX = -AX; + do_cycle(i); + } + break; + } + break; + + case 0xf8: /* CLCSTC */ + case 0xf9: + set_cf(opcode & 1); + break; + + case 0xfa: /* CLISTI */ + case 0xfb: + set_if(opcode & 1); + break; + + case 0xfc: /* CLDSTD */ + case 0xfd: + set_df(opcode & 1); + break; + + case 0xfe: + bits = 8; + do_mod_rm(); + switch (rmdat & 0x38) { + case 0x00: /* INC rm */ + case 0x08: /* DEC rm */ + /* read_operand8() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + /* math_op8() */ + if ((rmdat & 0x38) == 0x00) { + cpu_data = cpu_dest + cpu_src; + set_of_add(bits); + } else { + cpu_data = cpu_dest - cpu_src; + set_of_sub(bits); + } + do_af(); + set_pzs(bits); + if (addr_mode_match()) + do_cycles_i(2); + /* write_operand8() */ + set_ea(cpu_data); + break; + case 0x10: /* CALL rm */ + /* read_operand8() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + cpu_data_opff_rm(); + + cpu_state.oldpc = cpu_state.pc; + push((uint16_t *) &(cpu_state.oldpc)); + + pfq_do_suspend(); + do_cycles(4); + pfq_clear(); + + set_ip(cpu_data | 0xff00); + jump = 1; + break; + case 0x18: /* CALL rmd */ + if (cpu_mod == 3) { + /* biu_read_u8() */ + cpu_state.eaaddr = 0x0004; + tempb = readmemb((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + + old_cs = CS & 0x00ff; + push(&old_cs); + old_ip = cpu_state.pc & 0x00ff; + push(&old_ip); + + pfq_do_suspend(); + do_cycles(4); + pfq_clear(); + + read_ea_8to16(); + set_ip(cpu_data); + } else { + /* read_operand8() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + new_ip = cpu_data | 0xff00; + + do_cycles_i(3); + + /* biu_read_u8() */ + read_ea2(bits); + cpu_data |= 0xff00; + new_cs = cpu_data; + + do_cycle_i(); + pfq_do_suspend(); + do_cycles_i(3); + + old_cs = CS & 0x00ff; + push(&old_cs); + old_ip = cpu_state.pc & 0x00ff; + + load_cs(new_cs); + set_ip(new_ip); + + do_cycles_i(3); + pfq_clear(); + do_cycles_i(3); + + push(&old_ip); + + jump = 1; + } + break; + case 0x20: /* JMP rm */ + /* read_operand8() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + cpu_data_opff_rm(); + + pfq_do_suspend(); + set_ip(cpu_data | 0xff00); + + do_cycles(4); + pfq_clear(); + jump = 1; + break; + case 0x28: /* JMP rmd */ + if (cpu_mod == 3) { + /* biu_read_u8() */ + cpu_state.eaaddr = 0x0004; + tempb = readmemb((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + + pfq_do_suspend(); + do_cycles(4); + pfq_clear(); + + read_ea_8to16(); + set_ip(cpu_data); + } else { + /* read_operand8() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + new_ip = cpu_data | 0xff00; + + do_cycles_i(3); + + /* biu_read_u8() */ + read_ea2(bits); + cpu_data |= 0xff00; + new_cs = cpu_data; + + pfq_do_suspend(); + do_cycles(4); + pfq_clear(); + + load_cs(new_cs); + set_ip(new_ip); + jump = 1; + } + break; + case 0x30: /* PUSH rm */ + case 0x38: + /* read_operand8() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + self_cycles_i(3); + cpu_data &= 0x00ff; + push((uint16_t *) &cpu_data); + break; + } + break; + + case 0xff: + bits = 16; + do_mod_rm(); + switch (rmdat & 0x38) { + case 0x00: /* INC rm */ + case 0x08: /* DEC rm */ + /* read_operand16() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + /* math_op16() */ + if ((rmdat & 0x38) == 0x00) { + cpu_data = cpu_dest + cpu_src; + set_of_add(bits); + } else { + cpu_data = cpu_dest - cpu_src; + set_of_sub(bits); + } + do_af(); + set_pzs(bits); + if (addr_mode_match()) + do_cycles_i(2); + /* write_operand16() */ + set_ea(cpu_data); + break; + case 0x10: /* CALL rm */ + /* read_operand16() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + cpu_data_opff_rm(); + + pfq_do_suspend(); + do_cycles(4); + + cpu_state.oldpc = cpu_state.pc; + + old_ip = cpu_state.pc; + set_ip(cpu_data); + pfq_clear(); + do_cycles_i(3); + + push((&old_ip); + + jump = 1; + break; + case 0x18: /* CALL rmd */ + if (cpu_mod == 3) { + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + new_ip = cpu_data; + + /* biu_read_u16() */ + cpu_state.eaaddr = 0x0004; + new_cs = readmemw((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + + do_cycle_i(); + pfq_do_suspend(); + do_cycles_i(3); + + push(&CS); + old_ip = cpu_state.pc; + set_ip(new_ip); + + load_cs(new_cs); + + do_cycles_i(3); + pfq_clear(); + do_cycles_i(3); + + push(&old_ip); + } else { + do_cycle_i(); + /* read_operand_farptr() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + new_ip = cpu_data; + read_ea2(bits); + new_cs = cpu_data; + + do_cycle_i(); + + pfq_do_suspend(); + do_cycles_i(3); + + push(&CS); + + load_cs(new_cs); + old_ip = cpu_state.pc; + set_ip(new_ip); + do_cycles_i(3); + pfq_flush(); + do_cycles_i(3); + push(&old_ip); + } + jump = 1; + break; + case 0x20: /* JMP rm */ + /* read_operand16() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + cpu_data_opff_rm(); + + pfq_do_suspend(); + do_cycle_i(); + set_ip(cpu_data); + pfq_clear(); + jump = 1; + break; + case 0x28: /* JMP rmd */ + if (cpu_mod == 3) { + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + new_ip = cpu_data; + + do_cycle(); + pfq_do_suspend(); + do_cycle(); + + /* biu_read_u16() */ + cpu_state.eaaddr = 0x0004; + new_cs = readmemw((ovr_seg ? *ovr_seg : ds), cpu_state.eaaddr); + + push(&CS); + pfq_clear(); + } else { + do_cycle_i(); + pfq_do_suspend(); + do_cycle_i(); + + /* read_operand_farptr() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + new_ip = cpu_data; + read_ea2(bits); + new_cs = cpu_data; + + load_cs(new_cs); + set_ip(new_ip); + pfq_clear(); + } + jump = 1; + break; + case 0x30: /* PUSH rm */ + case 0x38: + /* read_operand16() */ + read_ea(((rmdat & 0x38) == 0x18) || ((rmdat & 0x38) == 0x28), bits); + self_cycles_i(3); + + if (cpu_rm == 4) + cpu_rm -= 2; + push((uint16_t *) &cpu_data); + break; + } + break; + + default: + x808x_log("Illegal opcode: %02X\n", opcode); + pfq_fetchb(); + wait(8, 0); + break; + } + + if (completed) { + finalize(); + + repeating = 0; + ovr_seg = NULL; + in_rep = 0; + rep_c_flag = 0; + if (in_lock) + clear_lock = 1; + clock_end(); + check_interrupts(); + + if (noint) + noint = 0; + + cpu_alu_op = 0; + } + +#ifdef USE_GDBSTUB + if (gdbstub_instruction()) + return; +#endif + } +} diff --git a/src/build/.ninja_deps b/src/build/.ninja_deps new file mode 100644 index 000000000..02e6e60ee Binary files /dev/null and b/src/build/.ninja_deps differ diff --git a/src/build/.ninja_log b/src/build/.ninja_log new file mode 100644 index 000000000..7181553a4 --- /dev/null +++ b/src/build/.ninja_log @@ -0,0 +1,646 @@ +# ninja log v5 +9366 9735 7195670371452886 src/device/CMakeFiles/dev.dir/isartc.c.obj 40d31c657f91eb82 +18263 18508 7195670459466930 src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj fcbc8a97c6d692de +28817 29664 7195670570972034 src/video/CMakeFiles/vid.dir/vid_ogc.c.obj 73fc587fbda98bd +31607 39598 7195670669771216 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/timestamp 5d2f44364079477c +14794 15033 7195670424542199 src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj bde05e2205254b5c +31866 38679 7195670661145695 src/qt/CMakeFiles/plat.dir/qt_platform.cpp.obj 7ddb0020bfab3a7b +1213 1422 7195670288585333 src/chipset/CMakeFiles/chipset.dir/gc100.c.obj de6a8370af2edcd0 +9057 9284 7195670367066667 src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj 339be8f8c8c3979 +14776 14967 7195670423986922 src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj dc183c79c8cf01a6 +284 804 7195670282403808 src/chipset/CMakeFiles/chipset.dir/headland.c.obj 4a5b64a8a8c0981b +23914 24168 7195670515732554 src/sound/resid-fp/libresid-fp.a 94c76a0264b0f41f +24358 24872 7195670523029599 src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj a13ca4fc45155679 +9547 9751 7195670371822859 src/device/CMakeFiles/dev.dir/postcard.c.obj 4b5f4d1cf31dfff3 +2473 2929 7195670303564472 src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj 87cc89504c947621 +23820 24231 7195670516707931 src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj 84a57be905e380c +51 105 7189356015250832 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_fi-FI.qm 191eafd33d6aa75a +24887 25814 7195670532232153 src/video/CMakeFiles/vid.dir/vid_ega.c.obj 7f067b243e364df6 +46432 49559 7195670769867677 src/qt/CMakeFiles/ui.dir/qt_settingsstoragecontrollers.cpp.obj 48c198f9f495a258 +1119 1559 7195670289950579 src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj de182f6ba629d273 +4262 4615 7195670320544363 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj efa813b305027d74 +1704 8966 7195670363940780 src/cpu/CMakeFiles/cpu.dir/808x.c.obj 46a4b8a805659a68 +16091 16358 7195670437760841 src/printer/CMakeFiles/print.dir/prt_ps.c.obj 5cc60d7c2f53c0fc +856 1096 7195670285309548 src/chipset/CMakeFiles/chipset.dir/opti495.c.obj c01fb51aa2f56d86 +15455 15795 7195670432039224 src/network/CMakeFiles/net.dir/net_3c503.c.obj d080b231897ec9f6 +54483 56160 7195670836005087 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp.obj e1960ca6d7c97e57 +8347 8574 7195670360079798 src/device/CMakeFiles/dev.dir/bugger.c.obj 3996c2fc13b775b +8311 9938 7195670373733392 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_uops.c.obj e885668307e1192f +13606 13952 7195670413904311 src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj da017705e9b90cb6 +53517 55324 7195670827643425 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp.obj d4bf749a8d26b2dc +18707 19159 7195670465918629 src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj a6e0f442faec52e3 +46472 49951 7195670773838738 src/qt/CMakeFiles/ui.dir/qt_settingsfloppycdrom.cpp.obj 51e652cf15902806 +18424 18645 7195670460812203 src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj 65b6305d1ba5cd28 +52 328 7195670277667485 src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj e6ab11231960304e +1428 1876 7195670293006438 src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj 1a0083cb97c2fb17 +40 95 7194667290293349 src/qt/86box_ja-JP.qm 5bb8c2345656e183 +39639 40209 7195670676478149 src/CMakeFiles/86Box.dir/io.c.obj 2ff9132942cdb995 +3418 4255 7195670316873174 src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj f0289fe86eac8a8 +3003 3321 7195670307485583 src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj a4a661e7ebb9fb5f +14400 14786 7195670422046486 src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj b9bda938c9247320 +21480 23084 7195670505219893 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opq.cpp.obj 98c5b28c859a9fd8 +2793 3239 7195670306660307 src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj ffa277a420626f26 +9634 10195 7195670376319220 src/device/CMakeFiles/dev.dir/serial.c.obj ce690fe091cd2941 +17173 17366 7195670448003612 src/scsi/CMakeFiles/scsi.dir/scsi.c.obj 634cfced7239bea0 +40615 41542 7195670689835445 src/CMakeFiles/86Box.dir/discord.c.obj 6be083ca9a8005da +31848 38664 7195670660975638 src/qt/CMakeFiles/plat.dir/qt_main.cpp.obj f018577182517abf +3154 6174 7195670336103530 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj 6f55106af95fd24b +45300 48239 7195670756518771 src/qt/CMakeFiles/ui.dir/qt_settingsinput.cpp.obj 736ca3e304f0b56c +9396 9667 7195670370997719 src/device/CMakeFiles/dev.dir/__/lpt.c.obj 3eb119b905ef4de5 +21214 21566 7195670489625166 src/sound/munt/CMakeFiles/mt32emu.dir/TVP.cpp.obj 134c4d28786b8ace +10230 10401 7195670378379816 src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj 72314537e4127b86 +20940 21103 7195670485148885 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/LinearResampler.cpp.obj 18c4fc3e91980fa5 +26610 28961 7195670563805060 src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj a452192b3e2ac753 +14673 14977 7195670424152219 src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj 4e03ae6378687932 +6490 7094 7195670345206047 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj df83a9cbaa23efc2 +224 492 7195670279277985 src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj 411a9abc99541cc +534 868 7195670283003909 src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj 8e3cb108991b18d +11285 11599 7195670390303140 src/disk/minivhd/CMakeFiles/minivhd.dir/manage.c.obj 1237a6d045e4579b +40194 40540 7195670679723895 src/CMakeFiles/86Box.dir/usb.c.obj 206e05ea7d933c62 +11835 12063 7195670394754192 src/disk/minivhd/libminivhd.a adc36a523c876348 +23140 23912 7195670513381944 src/sound/resid-fp/CMakeFiles/resid-fp.dir/sid.cc.obj bfd61a9df191d7c6 +2072 29274 7195670566540926 src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj 402f5fa68e2ff37a +1965 2473 7195670298937998 src/cpu/CMakeFiles/cpu.dir/x87.c.obj 9d7ae0eccdb2d8bd +3322 3675 7195670310961469 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj 2c4f8e07e47d7c24 +17302 17751 7195670451714673 src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj f6b7b67cc7050835 +11976 12558 7195670399980535 src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj 464d566e83d309da +11675 11876 7195670393133734 src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj 5202d07fcd5977f9 +1481 1872 7195670292806351 src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj 69d45145021097ed +16088 16367 7195670437940821 src/printer/CMakeFiles/print.dir/prt_text.c.obj ffd4c7c1cb8a1ce6 +31347 33790 7195670611977875 src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj beba79f9e2089551 +9064 9545 7195670369802382 src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj d369fda8b31f7bf5 +11512 11919 7195670393478916 src/floppy/CMakeFiles/fdd.dir/fdd.c.obj ae2c70a2d1b94f7d +21462 25211 7195670526400686 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opn.cpp.obj 5f35e62e97ecc13c +10816 11193 7195670386272081 src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj 29ede083a8d457b3 +15033 15381 7195670428173290 src/mem/CMakeFiles/mem.dir/sst_flash.c.obj df4a348927c6a876 +39640 40618 7195670680509158 src/CMakeFiles/86Box.dir/acpi.c.obj e7c977c6470d67c +12484 12702 7195670401221083 src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj 62790a8327f857b6 +16003 16161 7195670435950238 src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj d3b605664185d965 +24021 24329 7195670517273219 src/sound/munt/libmt32emu.a 81054c8647b533c5 +46 83 7189356015220818 src/qt/86box_de-DE.qm 5d72924c18d7eff1 +25171 28507 7195670559214053 src/video/CMakeFiles/vid.dir/vid_svga.c.obj b5cffde8d4a9999d +54 108 7189356015275963 src/qt/86box_hu-HU.qm 4bc9800e07944763 +495 1119 7195670285529503 src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj 56baa399792cd5ba +24456 25138 7195670525725388 src/video/CMakeFiles/vid.dir/vid_genius.c.obj 54b9f0f7439a6d39 +30863 31409 7195670588336999 src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj 122e5e9ef667d105 +15382 15880 7195670432864422 src/network/CMakeFiles/net.dir/net_3c501.c.obj 64377531f3bd84d8 +13722 13999 7195670414074379 src/machine/CMakeFiles/mch.dir/m_ps1.c.obj 2c360075824c7d15 +22597 22863 7195670502944168 src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve-sse.cc.obj c4f7b833e606cc8b +721 921 7195670283569025 src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj b28ea9410876b973 +10007 10382 7195670378064579 src/device/CMakeFiles/dev.dir/mouse.c.obj b3b681cd6a99edb2 +7126 9662 7195670370957640 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj 597adcc8ff0460d7 +105 136 7189356015798384 src/qt/86box_uk-UA.qm 3b261015c8da85bb +50966 53414 7195670808453410 src/qt/CMakeFiles/ui.dir/qt_vulkanwindowrenderer.cpp.obj 624db9785abdeff4 +2478 2971 7195670304064530 src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj cd93f825fc3cf1b5 +3854 6011 7195670334418170 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj 292af8ab97b9fb0d +39599 39631 7184832671036496 src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp db135aebd57f385c +42 95 7194667290293349 src/qt/86box_zh-CN.qm 771785dfea4f0dbf +20508 21321 7195670487224568 src/sound/munt/CMakeFiles/mt32emu.dir/Part.cpp.obj a763f5e6bdd74473 +13461 13711 7195670411423798 src/machine/CMakeFiles/mch.dir/m_at.c.obj 4495ebe2852e84dd +24861 25395 7195670528231181 src/video/CMakeFiles/vid.dir/vid_im1024.c.obj 75344e6fd7a9ddca +12559 12861 7195670402966310 src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj f92527e1a61019cd +10496 10918 7195670383456222 src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj ccaa053db8c2a6e0 +47 223 7195670276572230 src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj 6c29caa1ad5137c3 +16753 16979 7195670444157761 src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj e6083dd90906efb9 +14841 15228 7195670426632770 src/mem/CMakeFiles/mem.dir/intel_flash.c.obj ece25daf8ebbeaae +2930 3154 7195670305895013 src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj c86fea517a65ea2a +50158 52347 7195670797755292 src/qt/CMakeFiles/ui.dir/qt_util.cpp.obj 925cfc348df90aca +28335 28513 7195670559514036 src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj a9a561075f495cc0 +40618 40871 7195670683069791 src/CMakeFiles/86Box.dir/win/86Box-qt.rc.obj 9f571977193f0e49 +31527 31838 7195670592082826 src/qt/plat_autogen/timestamp 7e33d85c02859665 +28507 30964 7195670583970646 src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj 7dc0dfaa8afec96 +21535 23533 7195670509690968 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opz.cpp.obj 444fc93e1206692 +252 534 7195670279598002 src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj 9011d93f356c75c7 +18506 18696 7195670461247487 src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj bb2a1c988370e3c4 +53403 55248 7195670826838183 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp.obj 61b63ffe9d27d9c5 +15901 16167 7195670435980216 src/printer/CMakeFiles/print.dir/png.c.obj 80f656b112585404 +12766 13164 7195670405972089 src/machine/CMakeFiles/mch.dir/m_xt.c.obj 328d880841bfa631 +26412 26575 7195670540128970 src/video/CMakeFiles/vid.dir/vid_av9194.c.obj 5b637116439bc27c +14977 15305 7195670427357993 src/mem/CMakeFiles/mem.dir/smram.c.obj 900a35206a54294c +10647 10903 7195670383266249 src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj 3ff75fcff5b9cc10 +98 129 7189356015723247 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ru-RU.qm 6b96245f7b448357 +39809 40380 7195670678153479 src/CMakeFiles/86Box.dir/pit.c.obj feed9d56d1bd00f5 +49 233 7195670276682272 src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj b8ed87ae79cd0f58 +23944 24358 7195670517943209 src/video/CMakeFiles/vid.dir/vid_mda.c.obj 920f978641d4bc64 +14786 15041 7195670424752199 src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj fb42e26e2acdc901 +26579 26739 7195670541729359 src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj c9c87d1dbb7366af +55242 56570 7195670840115406 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj 69827b1db1fac40b +33791 36387 7195670638134542 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp.obj 5694420b0c029ed3 +39600 39632 7194667290293349 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp ca580e98e3523a03 +28518 28781 7195670561974563 src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj 168ac82cbe989429 +51925 55311 7195670827503411 src/qt/CMakeFiles/ui.dir/qt_d3d9renderer.cpp.obj 23767b7b58c6d25a +29509 31347 7195670587771785 src/video/CMakeFiles/vid.dir/vid_xga.c.obj 5a4170f8be7f6746 +55248 56555 7195670839975312 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp.obj e465d59e00b332cf +25499 25710 7195670531416893 src/video/CMakeFiles/vid.dir/vid_ddc.c.obj 5f40f6d0e9f12d98 +5492 8310 7195670357439153 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj cdb8df1e275db88f +12869 13581 7195670410083331 src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj 1af1a0292af9fff6 +47 87 7189356015240839 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_en-GB.qm 55b63c80827befb +53098 54959 7195670823792261 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp.obj 7e11dcf7d453f51c +16280 16542 7195670439701456 src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj b9ac750e9e21b5db +17367 18286 7195670457236352 src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj de680e0323630512 +13218 13438 7195670408578041 src/machine/CMakeFiles/mch.dir/m_elt.c.obj bb11260c435914df +19160 20150 7195670475751248 src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj 1cf695bbb3fb074 +12723 13154 7195670405652075 src/machine/CMakeFiles/mch.dir/machine_table.c.obj 3d0e28068c91bc95 +10958 12408 7195670398365273 src/disk/CMakeFiles/mo.dir/mo.c.obj b3f882525c50fd89 +16658 17054 7195670444847766 src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj d46bbdf7686489e +843 1080 7195670285159521 src/chipset/CMakeFiles/chipset.dir/opti391.c.obj 1def1f93e271c148 +18944 19402 7195670468304381 src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj 1cb88cf5bdd90f8d +1100 1428 7195670288605340 src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj 4a8c7f04dcf77b0a +25673 25922 7195670533407465 src/video/CMakeFiles/vid.dir/vid_vga.c.obj 3ced18d978343d41 +115 520 0 clean b3194c0c00fb8832 +17101 17346 7195670447743502 src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj d90c507e57288fdf +21235 22592 7195670500173539 src/sound/munt/CMakeFiles/mt32emu.dir/c_interface/c_interface.cpp.obj 34deac1e26232a72 +233 843 7195670282553826 src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj ceee8187e6b41bb9 +1684 2223 7187539521732717 src/cpu/CMakeFiles/cpu.dir/808x_biu.c.obj 6348b7988c2f6ed5 +40664 48339 7195670757544089 src/qt/CMakeFiles/ui.dir/qt_mainwindow.cpp.obj 21472de70064f978 +7325 7863 7195670352982998 src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj c3327d3faa5579e4 +6885 7322 7195670347446659 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj d3cfd5a75013ee6f +97 127 7189356015693256 src/qt/86box_pt-PT.qm 7ddc2c54644430e8 +16974 17302 7195670447313476 src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj b6cee6ac305ce62f +19413 19758 7195670471780164 src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj 5b76c0bbfc20382e +51996 54390 7195670818160751 src/qt/CMakeFiles/ui.dir/qt_winmanagerfilter.cpp.obj be7e0e46bc71e2d4 +31846 32148 7195670595633774 src/qt/CMakeFiles/plat.dir/qt.c.obj 5587164178b06f09 +16980 17271 7195670447058320 src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj 68b94a42b19046c9 +13952 14528 7195670419515878 src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj 1555e204185c5f44 +2311 2760 7195670301513928 src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj 1003717a557d83fd +79 110 7189356015496344 src/qt/86box_ko-KR.qm 3336ec3b7b8c4182 +33547 36065 7195670634598804 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp.obj bec8db7758f49beb +12064 12390 7195670398030073 src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj d05c57de03fdedb4 +23623 24453 7195670518898499 src/video/CMakeFiles/vid.dir/video.c.obj f18c537a3ec2b5df +6146 6974 7195670343955563 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj 21361870e5144060 +9939 10279 7195670377154482 src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj 8a98265fd94fd2f9 +20884 21100 7195670485294076 src/sound/munt/CMakeFiles/mt32emu.dir/SampleRateConverter.cpp.obj 21586624607b43e3 +23200 23427 7195670508455746 src/sound/resid-fp/CMakeFiles/resid-fp.dir/voice.cc.obj 26372e61227e6547 +9744 10007 7195670374448689 src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj 66906f00a59d954c +14975 15365 7195670427968007 src/mem/CMakeFiles/mem.dir/row.c.obj 7e2a1a205521b44d +9719 10004 7195670374408683 src/device/CMakeFiles/dev.dir/i2c.c.obj 5fbe9b7fe1bf48d7 +16358 16646 7195670440466706 src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj a2fee9a5078048f1 +24232 24859 7195670522529560 src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj b89a8dd01e1db960 +13718 14400 7195670418220633 src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj 30f83faaf3ec29e9 +25937 28320 7195670557433493 src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj e58d7c49dc6b327d +30964 31524 7195670589482291 src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj 16d848a913a804c5 +49 97 7189356015240839 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_es-ES.qm a4996e16300629b0 +36387 39222 7195670666635705 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp.obj 753fa80bb6c0be71 +19759 20580 7195670480002408 src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj 6cd52e11c2d458c5 +32593 35178 7195670625501499 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp.obj cc983dff03ce34c7 +10918 11280 7195670387042162 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj 9849878223d4e438 +20466 20920 7195670483523451 src/sound/munt/CMakeFiles/mt32emu.dir/LA32WaveGenerator.cpp.obj 82b2ea669fffebe +23393 23500 7195670509380996 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PST.cc.obj fd93824bd1c01e96 +13007 13218 7195670406407390 src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj 5f7974b73d76d075 +48249 50961 7195670783781482 src/qt/CMakeFiles/ui.dir/qt_joystickconfiguration.cpp.obj 80919d9fb6435161 +29276 29657 7195670570702034 src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj 9a99ba266aa2c149 +39644 39884 7195670673046940 src/CMakeFiles/86Box.dir/ddma.c.obj 3aad84a9d495fb51 +14195 14508 7195670419345873 src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj 70995a3d3fa4f80a +19010 19799 7195670472215449 src/sound/CMakeFiles/snd.dir/snd_gus.c.obj 2384e64052888570 +20580 20944 7195670483683447 src/sound/munt/CMakeFiles/mt32emu.dir/PartialManager.cpp.obj bdac1b88f989ffa3 +39884 40181 7195670676042894 src/CMakeFiles/86Box.dir/port_92.c.obj 396779c5e8c8365a +13240 13912 7195670413354322 src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj 428343c4f39c0b85 +9487 9744 7195670371792875 src/device/CMakeFiles/dev.dir/pci_bridge.c.obj c860fe88a2c9994f +18497 18791 7195670461867486 src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj 9609e682795ec84d +15043 15665 7195670430763871 src/network/CMakeFiles/net.dir/network.c.obj cde56cf68e6b8578 +56 106 7189356015286027 src/qt/86box_it-IT.qm c7df201bd876a9fe +10196 10619 7195670380450396 src/device/CMakeFiles/dev.dir/mouse_serial.c.obj 2fe715403e969a54 +10263 10493 7195670379305102 src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj 3434829bbbb0eff4 +1463 1726 7195670291441084 src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj 6ec42262aa7ce9bf +20151 20323 7195670477491852 src/sound/munt/CMakeFiles/mt32emu.dir/File.cpp.obj 9e9c1f2e52b24e78 +36193 38827 7195670662674749 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj ea7ff12abbd42a5a +40454 40658 7195670680749152 src/CMakeFiles/86Box.dir/machine_status.c.obj 4d9b6aff36ff94b0 +19799 20107 7195670475191245 src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj 1dff3c2dd2d83106 +585 1481 7195670289150555 src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj 2f23b8165538cff8 +31975 33171 7195670605956351 src/qt/CMakeFiles/plat.dir/win_dynld.c.obj b730000ce2ba860c +10299 10812 7195670382190965 src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj 137afaacc108d15b +23500 23604 7195670510416251 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581__ST.cc.obj 47446395ebb2ae48 +29671 31527 7195670589522286 src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj 6de6a8018173b50a +43327 47799 7195670751872523 src/qt/CMakeFiles/ui.dir/qt_opengloptionsdialog.cpp.obj 37ec0175d189a736 +28961 29683 7195670570992030 src/video/CMakeFiles/vid.dir/vid_nga.c.obj a1932a3a8e60eb4 +32869 35434 7195670628052093 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp.obj 2a927c74c2a02a6 +40648 47698 7195670751127362 src/qt/CMakeFiles/ui.dir/ui_autogen/mocs_compilation.cpp.obj b688c2c102de1fac +16936 17193 7195670446298237 src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj 447fb7fb4c08fdb3 +25409 26928 7195670543619882 src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj 47860d003f1ef018 +25710 25976 7195670534107539 src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj 61ee3f15713e3c5f +40900 43336 7195670707730343 src/qt/CMakeFiles/ui.dir/qt_renderercommon.cpp.obj 41720c9bf144805f +40091 40664 7195670680919161 src/CMakeFiles/86Box.dir/pci.c.obj 2d6802d3bea39070 +12834 13000 7195670404256846 src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj d232cb18299aa748 +17375 18263 7195670456811062 src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj 4dddb2ccf1f6a803 +21100 24021 7195670514497259 src/sound/munt/CMakeFiles/mt32emu.dir/Synth.cpp.obj 72b37f67de0bcc66 +41543 45286 7195670727020455 src/qt/CMakeFiles/ui.dir/qt_opengloptions.cpp.obj 8293e8695fa2b2c7 +16763 17009 7195670444347746 src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj cb457d31c4076d8d +19772 20019 7195670474475985 src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj 1759a11ce5945ef6 +15368 15894 7195670433124509 src/network/CMakeFiles/net.dir/net_dp8390.c.obj 76bd32e0c2524194 +28287 30833 7195670582525454 src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj 11fcf660cf227a96 +919 1212 7195670286284792 src/chipset/CMakeFiles/chipset.dir/opti822.c.obj 34aeb0b6c07ee091 +15891 16275 7195670437085636 src/network/CMakeFiles/net.dir/net_null.c.obj 8edf680cb56c04c4 +51 284 7195670277127455 src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj 620e719d30f53fbe +49276 51119 7195670785482098 src/qt/CMakeFiles/ui.dir/qt_harddrive_common.cpp.obj e854a8830dc5157c +11193 11420 7195670388392616 src/disk/minivhd/CMakeFiles/minivhd.dir/convert.c.obj 4e24a8d36bbf619b +8128 8345 7195670357809172 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_fpu.c.obj 3e7c61cebba1c56b +39223 39353 7195670667850913 src/qt/libplat.a a792848b939d8153 +20829 21314 7195670487354566 src/sound/munt/CMakeFiles/mt32emu.dir/ROMInfo.cpp.obj 968b391c9bf95ed9 +1147 1484 7195670289180554 src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj e0b3bb1a94c2d050 +6013 8127 7195670355538633 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj 9584401fab6647f7 +27080 29551 7195670569746793 src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj 74fba217ab943cc1 +14928 15588 7195670430078652 src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj acaef5dc6623e217 +49951 52044 7195670794809598 src/qt/CMakeFiles/ui.dir/qt_styleoverride.cpp.obj 9ec6574bada437f3 +14509 14793 7195670422211644 src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj eb3cbf13377bf8e8 +41051 45345 7195670727815707 src/qt/CMakeFiles/ui.dir/qt_hardwarerenderer.cpp.obj a7082df7682625a5 +26159 26428 7195670538483668 src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj dea56ec06e077174 +8201 9054 7195670364836018 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_sse.c.obj ad1f6641ad8b3943 +40202 40454 7195670678818640 src/CMakeFiles/86Box.dir/fifo.c.obj cbf9e401f5aaa88b +48 98 7189356015250832 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_en-US.qm 945ef361c6ccea72 +2661 2979 7195670304054529 src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj b92e75898c78e5ce +21326 23140 7195670505609908 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opm.cpp.obj b6f65483377c536b +1181 1525 7195670289510586 src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj aef831dae6dd2b51 +31031 31610 7195670590397500 src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj 4c6c37f1da189b44 +28320 28517 7195670559504062 src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj 2cee0a733258a31e +40661 40900 7195670683244977 src/qt/CMakeFiles/ui.dir/qt_cdrom.c.obj 9a46ecbe1b1cb905 +17105 17262 7195670446938245 src/sio/CMakeFiles/sio.dir/sio_detect.c.obj dc261278572811c +5454 8189 7195670356108719 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj b20eeced5039eb68 +43 100 7189356015240839 src/qt/86box_ca-ES.qm 8fb71b0ad5329620 +14968 15446 7195670428723290 src/mem/CMakeFiles/mem.dir/rom.c.obj 572545a21f8fd9c1 +103 135 7189356015778372 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_tr-TR.qm 53997f1880588766 +22130 23918 7195670513401951 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_adpcm.cpp.obj 62bb7135b1bf662c +9295 9486 7195670369107194 src/device/CMakeFiles/dev.dir/ibm_5161.c.obj e797ba3f9cc40dab +20058 20936 7195670483683447 src/sound/munt/CMakeFiles/mt32emu.dir/BReverbModel.cpp.obj 1655578c1b37a8d5 +17769 18266 7195670456921049 src/sound/CMakeFiles/snd.dir/sound.c.obj 6feab7617bc9269e +41214 46416 7195670737568653 src/qt/CMakeFiles/ui.dir/qt_openglrenderer.cpp.obj fb9a7ddbe1856738 +24564 26404 7195670538423664 src/video/CMakeFiles/vid.dir/vid_pgc.c.obj 1c77c9df80668249 +48 98 7189356015250832 src/qt/86box_en-US.qm 945ef361c6ccea72 +12853 13076 7195670405046935 src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj e6269425e0517c0c +22864 23030 7195670504464703 src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve.cc.obj 9cb72f7d4ee3ae72 +43337 46436 7195670738653923 src/qt/CMakeFiles/ui.dir/qt_settings.cpp.obj 9901cb6b823a2487 +27796 28285 7195670557168320 src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj 5d75be015d0a9999 +11172 11451 7195670388852652 src/disk/minivhd/CMakeFiles/minivhd.dir/xml2_encoding.c.obj 7250f97620ff123b +20712 20988 7195670484143576 src/sound/munt/CMakeFiles/mt32emu.dir/Poly.cpp.obj 47988537fd3389fe +40309 40615 7195670680529164 src/CMakeFiles/86Box.dir/nvr.c.obj f137d49212c4d92f +10205 10445 7195670378799818 src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj 7a35f6a7f5dd7958 +15666 16087 7195670435085089 src/network/CMakeFiles/net.dir/net_wd8003.c.obj 42afcfa88f46571f +20557 20965 7195670483913479 src/sound/munt/CMakeFiles/mt32emu.dir/Partial.cpp.obj cd74b63a4b819cb5 +40658 43306 7195670707360367 src/qt/CMakeFiles/ui.dir/qt_ui.cpp.obj 878949e000646ffd +54339 56046 7195670834860227 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp.obj 6f47af5fada2badd +87 122 7189356015627991 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pt-BR.qm e2f223265bd3211a +27186 28334 7195670557633466 src/video/CMakeFiles/vid.dir/vid_ht216.c.obj 2ccaea2612ec83a0 +39 918 7195670283509010 src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj 8e72182d916beb46 +23218 23393 7195670508195731 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave.cc.obj 428cc6d448c0872b +40210 40432 7195670678638631 src/CMakeFiles/86Box.dir/fifo8.c.obj 988be37cd93fdad +56570 57069 7195670844015472 src/qt/libui.a cd91d32c7ad5c3c3 +20921 21210 7195670486249304 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/FIRResampler.cpp.obj bf070b1903522f6a +29312 29509 7195670569446793 src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj 13a7597aeb5c50ca +8966 9112 7195670365481297 src/device/CMakeFiles/dev.dir/hwm.c.obj 2149d738a8f5d46a +46 300 7195670277317459 src/chipset/CMakeFiles/chipset.dir/82c100.c.obj a501631011b130d7 +2973 3231 7195670306430306 src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj 112ac84fef8945e2 +23104 23215 7195670506385152 src/sound/resid-fp/CMakeFiles/resid-fp.dir/pot.cc.obj e4d25e67427338ca +12061 12483 7195670398975284 src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj 574e96da7676f5ad +1484 1704 7195670291261069 src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj adc787cceda73c98 +11280 11595 7195670390293126 src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_io.c.obj d65fa46e32f91bd +52 101 7189356015275963 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_fr-FR.qm 26164d1f3935f368 +54 108 7189356015275963 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_hu-HU.qm 4bc9800e07944763 +20396 20708 7195670481192979 src/sound/munt/CMakeFiles/mt32emu.dir/LA32FloatWaveGenerator.cpp.obj b91bf05e3eee615 +98 129 7189356015723247 src/qt/86box_ru-RU.qm 6b96245f7b448357 +16170 16473 7195670439106254 src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj 42c3bd60abef1d00 +26438 26610 7195670540454104 src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj 308122b6eda2c408 +39634 40800 7195670682004443 src/CMakeFiles/86Box.dir/config.c.obj 5563e5c914eae20f +18102 18419 7195670458521660 src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj 4f6d018049b2c537 +23533 23629 7195670510676261 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_P_T.cc.obj 258a8a1e4f63b5ba +40094 40307 7195670677128214 src/CMakeFiles/86Box.dir/mca.c.obj e4375032b481c6fd +13381 14495 7195670418940645 src/machine/CMakeFiles/mch.dir/m_tandy.c.obj 29b5d4a9940835bd +51120 53827 7195670812544415 src/qt/CMakeFiles/ui.dir/qt_vulkanrenderer.cpp.obj cb948a4201c6614f +31409 31661 7195670591017523 src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj d156590a32810cc9 +11759 11924 7195670393598913 src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj 1d6761886a2ce791 +39643 40582 7195670680043886 src/CMakeFiles/86Box.dir/dma.c.obj 58f3be67ae90dfa7 +97 127 7189356015693256 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pt-PT.qm 7ddc2c54644430e8 +1529 1815 7195670292346356 src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj 8b7f9dbc02fe7b5c +4616 5454 7195670328686562 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj b24ce6bbdda4200c +17193 17389 7195670448288789 src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj 410b1b8a772f9e2e +39933 40091 7195670675272901 src/CMakeFiles/86Box.dir/ppi.c.obj 5b5f1015db792667 +45346 48419 7195670758279359 src/qt/CMakeFiles/ui.dir/qt_settingssound.cpp.obj d1bc62b7e36b129c +49995 54338 7195670817650686 src/qt/CMakeFiles/ui.dir/qt_progsettings.cpp.obj e04a01b183b98df +2134 2431 7195670298447999 src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj 9c1dc39a23cb8c67 +16646 16974 7195670443912483 src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj 738ac53a2cf38dfb +24876 25483 7195670529196312 src/video/CMakeFiles/vid.dir/vid_wy700.c.obj e3a25ef7fcaffe3c +980 1208 7195670286314799 src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj 7e576e603f924fc8 +14998 15459 7195670428753309 src/mem/CMakeFiles/mem.dir/spd.c.obj 28941c42012cb14e +19439 19627 7195670470584947 src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj 2e9941106572bb20 +40380 41002 7195670684370189 src/CMakeFiles/86Box.dir/nvr_at.c.obj 376bf13e3e0c2dff +17271 18102 7195670455315820 src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj dfc9448c4844fe62 +20258 20884 7195670483088306 src/sound/munt/CMakeFiles/mt32emu.dir/FileStream.cpp.obj 77f7268bc76ef382 +39633 40201 7195670676308139 src/CMakeFiles/86Box.dir/86box.c.obj f479429b9e50c8db +29661 31178 7195670586061383 src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj c756618f72de75ad +16014 16916 7195670443352474 src/printer/CMakeFiles/print.dir/prt_escp.c.obj 7b1a5b1369e1dd5 +20937 21235 7195670486629305 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/IIR2xResampler.cpp.obj 4b4c38f1d98f464d +27625 27916 7195670553512417 src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj e6d5a08ae0e0fda +18648 19439 7195670468764384 src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj 4ca9f3348b1ea054 +44625 47483 7195670749036674 src/qt/CMakeFiles/ui.dir/qt_settingsdisplay.cpp.obj 61849832dd80024 +23923 24875 7195670523069600 src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj a61ff22ca171b586 +23736 24533 7195670519553791 src/video/CMakeFiles/vid.dir/vid_cga.c.obj b5b5e416098e96e5 +53416 55242 7195670826828179 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp.obj 6f09875974dc5958 +21147 21479 7195670489019996 src/sound/munt/CMakeFiles/mt32emu.dir/TVA.cpp.obj 5b38ff0716efb5b5 +16368 16762 7195670441891933 src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj 9f61ab5695fdee95 +12861 13361 7195670407732659 src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj fe20eb6768c35745 +3391 3563 7195670309926171 src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj 9c3e9f469b34b727 +14799 14997 7195670424322204 src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj ac820f5c9669b39b +52497 54287 7195670817205525 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp.obj a18d250486e4e8af +25162 25669 7195670531021660 src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj 18203bb1a085fa44 +39642 39848 7195670672786942 src/CMakeFiles/86Box.dir/apm.c.obj 7f2afd4d05b00615 +19145 20058 7195670474775978 src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj 17f285639fbab995 +10004 10298 7195670377334494 src/device/CMakeFiles/dev.dir/keyboard_at.c.obj db10ff909ab1f4ec +40 95 7194667290293349 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ja-JP.qm 5bb8c2345656e183 +31527 31838 7195670592082826 src/qt/plat_autogen/mocs_compilation.cpp 7e33d85c02859665 +9751 10000 7195670374288669 src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj b761e9a54824f6b8 +46 83 7189356015220818 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_de-DE.qm 5d72924c18d7eff1 +40432 40647 7195670680789153 src/CMakeFiles/86Box.dir/nvr_ps2.c.obj c3622fefc622c78f +10548 10999 7195670384361515 src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj c65874dcd0de6d9e +31527 31838 7195670592082826 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/timestamp 7e33d85c02859665 +7892 9318 7195670367551810 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops.c.obj e249389acb4a5e5d +15228 15714 7195670431229098 src/network/CMakeFiles/net.dir/net_pcap.c.obj eea907cf2bf5b08e +7110 9872 7195670372838128 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj 8ea76bcce97c857c +43376 46705 7195670741044455 src/qt/CMakeFiles/ui.dir/qt_settingsmachine.cpp.obj f56a24683f53bcec +51847 55507 7195670829443921 src/qt/CMakeFiles/ui.dir/qt_mediahistorymanager.cpp.obj 480608664ed773c0 +79 110 7189356015496344 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ko-KR.qm 3336ec3b7b8c4182 +30960 31606 7195670590307520 src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj e074358287ce9e84 +15588 17351 7195670447773507 src/network/CMakeFiles/net.dir/net_pcnet.c.obj b3f014206bc5cc9b +83 111 7189356015536334 src/qt/86box_pl-PL.qm af527ce1bda488 +13044 13240 7195670406787376 src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj d9baa5d1c80a34fc +16184 16463 7195670438906141 src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj 7dd5f217db7217e5 +26855 27079 7195670544945140 src/sound/ymfm/libymfm.a 7de424015bd58667 +13164 13461 7195670408908009 src/machine/CMakeFiles/mch.dir/m_europc.c.obj 72698205cac462f6 +36 2181 7195671006512194 build.ninja 20d3a3cf664de4c4 +1403 1657 7195670290885864 src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj 9232c6f73e54bfad +13999 14897 7195670423146841 src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj 369c048aacd1cc3f +27108 27323 7195670547490883 src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj 5efc647ec6f46365 +18635 19100 7195670465328654 src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj 4c9d220e761f6588 +3988 6605 7195670340349729 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj 3adb16799dacdff +54962 56390 7195670838320165 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj a83359a3891d606e +22958 23103 7195670505419918 src/sound/resid-fp/CMakeFiles/resid-fp.dir/envelope.cc.obj 712791d22b5f638f +17351 18184 7195670456150963 src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj 3696c096fcb43363 +14095 14841 7195670422561657 src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj bfe25afabcea4617 +23609 23811 7195670512406689 src/video/CMakeFiles/vid.dir/agpgart.c.obj 7227a7acd67ba608 +9896 10230 7195670376399233 src/device/CMakeFiles/dev.dir/keyboard.c.obj ef24ae3f25dc15cd +17962 18131 7195670455655818 src/sound/CMakeFiles/snd.dir/snd_opl.c.obj 4d164efb4c16e092 +3564 3836 7195670312702030 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj f69c00b7adfc4128 +13439 13606 7195670410468500 src/machine/CMakeFiles/mch.dir/m_v86p.c.obj 400dab04b963c171 +3709 5491 7195670329291828 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj 7e1f7b6436fc21df +53 103 7189356015265886 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_hr-HR.qm 7e4b66d0c8a885c4 +53 287 7195670277157458 src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj c795ad9f60bcf6f8 +741 1100 7195670285329525 src/chipset/CMakeFiles/chipset.dir/neat.c.obj 72c8f480bba9d991 +50660 52491 7195670799200653 src/qt/CMakeFiles/ui.dir/qt_unixmanagerfilter.cpp.obj db9cef87311dbee1 +17389 17966 7195670453975201 src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj a003817f46d56497 +24873 25704 7195670531366874 src/video/CMakeFiles/vid.dir/vid_sigma.c.obj ca59b8908b531213 +39636 39862 7195670672966943 src/CMakeFiles/86Box.dir/log.c.obj 9dbdc135de74b1e3 +23522 23608 7195670510486255 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PST.cc.obj 93a473e62d7ae884 +101 132 7189356015743254 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_sl-SI.qm 3076eaa78b37bf19 +10904 11206 7195670386362066 src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj 3ed6364d70349c5d +1816 2058 7195670294876881 src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj 7aa08b417276fcb0 +1873 2072 7195670295016979 src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj b91f2902825dd190 +1887 3002 7195670304219685 src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj 6c39f383639bdee4 +23031 23200 7195670506275157 src/sound/resid-fp/CMakeFiles/resid-fp.dir/extfilt.cc.obj 447a396938431760 +1727 38309 7195670656554505 src/cpu/CMakeFiles/cpu.dir/386.c.obj fb2873880f5c543c +20107 20396 7195670478347132 src/sound/munt/CMakeFiles/mt32emu.dir/Display.cpp.obj b13a1527134d509a +525 979 7195670284039133 src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj 57bf296acf1d78a9 +101 132 7189356015743254 src/qt/86box_sl-SI.qm 3076eaa78b37bf19 +48340 50659 7195670780855597 src/qt/CMakeFiles/ui.dir/qt_filefield.cpp.obj 2e0330e182b1cc4f +4725 5120 7195670325490688 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj 3635ffb24cdce3a9 +6174 6881 7195670343155574 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj 6471d1c1c6ac7d93 +26757 27259 7195670546955614 src/video/CMakeFiles/vid.dir/vid_et4000.c.obj 3c22fde90dd88421 +4389 6132 7195670335653427 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj 1edd110a197b2f7 +20948 21213 7195670486449307 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/ResamplerModel.cpp.obj 5675ac1ac33579ee +9324 9632 7195670370617634 src/device/CMakeFiles/dev.dir/isamem.c.obj 8371f28e0122e00b +49 97 7189356015240839 src/qt/86box_es-ES.qm a4996e16300629b0 +19444 19712 7195670471360170 src/sound/CMakeFiles/snd.dir/snd_wss.c.obj 3ab005728e2d9ca5 +9183 9396 7195670368267108 src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj 589b1d681c0dd772 +6617 7891 7195670353218167 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj c50759df0f777b74 +25212 32868 7195670602900565 src/video/CMakeFiles/vid.dir/vid_8514a.c.obj 6c424714b832b381 +21321 26854 7195670542734627 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opl.cpp.obj b826fae30dfee8eb +45 296 7195670277297462 src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj 691ab6bc2b338921 +31185 31864 7195670592838004 src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj 1f7263f2de367eaf +17054 17259 7195670446898224 src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj 18baad0baabe2776 +1559 1783 7195670292166351 src/cpu/CMakeFiles/cpu.dir/fpu.c.obj 285bb7ede72e09da +100 132 7189356015743254 src/qt/86box_sk-SK.qm f1183eee64a11e0d +13775 14194 7195670416220104 src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj de4b269f07e15dc8 +10827 11284 7195670387132146 src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj 9f03894f69f0eab3 +10654 11976 7195670393968899 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj 48bffd4310961754 +2985 3362 7195670307895576 src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj 1a95f2540360ff82 +25830 26227 7195670536443123 src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj e9bbcf4791205b20 +29567 32170 7195670595733774 src/video/CMakeFiles/vid.dir/vid_mga.c.obj e4da8a913af85427 +19712 20829 7195670482618239 src/sound/CMakeFiles/snd.dir/xaudio2.c.obj f08ff7735d45cdba +45 79 7189356015170676 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_cs-CZ.qm 698f39fcb88c7a14 +50 236 7195670276672229 src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj 8940a841ae1fa4c3 +49560 51928 7195670793524308 src/qt/CMakeFiles/ui.dir/qt_specifydimensions.cpp.obj 71710b118f97158b +100 132 7189356015743254 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_sk-SK.qm f1183eee64a11e0d +43 100 7189356015240839 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ca-ES.qm 8fb71b0ad5329620 +28513 29309 7195670567246188 src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj b0436311016400f2 +16559 16830 7195670442537206 src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj 5dcdf6dc3c9f1e17 +1431 2478 7195670299008084 src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj bc71c4fcb2ea11fb +26246 26578 7195670540174034 src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj eb7b2a09f53f9a4d +49545 51190 7195670786222172 src/qt/CMakeFiles/ui.dir/qt_models_common.cpp.obj 6249c2e0b98f7267 +24329 25167 7195670525815379 src/video/CMakeFiles/vid.dir/vid_incolor.c.obj b5b086e349f3caf1 +922 1180 7195670286069603 src/chipset/CMakeFiles/chipset.dir/opti895.c.obj d9dbe15dd4ee93b4 +13591 13775 7195670411983778 src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj a5c81d18e59b7de7 +20988 21146 7195670485844073 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/InternalResampler.cpp.obj f427974adac100cd +12218 13044 7195670404626845 src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj 25e6aa7803f33dbf +19101 20508 7195670479137212 src/sound/CMakeFiles/snd.dir/snd_sb.c.obj b721a54af8d74da2 +31607 39598 7195670669771216 src/qt/ui_autogen/timestamp 5d2f44364079477c +16727 17104 7195670445433008 src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj d7b207b873b361b2 +23427 23526 7195670509630986 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_P_T.cc.obj 841afef1c6cdc3eb +33757 36314 7195670637524452 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp.obj e72ac0056ec2d5e8 +3103 3292 7195670307315574 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj 6b5afeaa54735e4d +35452 38320 7195670657409797 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp.obj e77fa7d36fa6455b +11869 12060 7195670394904194 src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj ef6537c069e678c3 +39600 39632 7194667290293349 src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp ca580e98e3523a03 +329 585 7195670279978099 src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj b210bf771c98feda +1973 2134 7195670295512158 src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj 7b136a1a59832782 +868 1145 7195670285829515 src/chipset/CMakeFiles/chipset.dir/opti602.c.obj 9af09b8cafa12ad7 +17978 19521 7195670469379655 src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj 4eda3ae13f2a486 +53 103 7189356015265886 src/qt/86box_hr-HR.qm 7e4b66d0c8a885c4 +1209 1463 7195670288985409 src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj cb08484744d42891 +3675 3854 7195670312862033 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj 38acd479ae8781a5 +14898 16750 7195670441601963 src/mem/CMakeFiles/mem.dir/mem.c.obj 239f9da4da614b70 +26745 26999 7195670544225136 src/video/CMakeFiles/vid.dir/vid_et3000.c.obj 74d7ed3c16b9bd92 +105 136 7189356015798384 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_uk-UA.qm 3b261015c8da85bb +18286 18635 7195670460752190 src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj 5033268406a34672 +9113 9366 7195670367971822 src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj 98aec0970c35e052 +3555 4384 7195670318008522 src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj e6d8ab50760dd0fd +47505 50156 7195670775839215 src/qt/CMakeFiles/ui.dir/qt_settingsotherperipherals.cpp.obj 2119c71f19e19428 +46291 49269 7195670766921768 src/qt/CMakeFiles/ui.dir/qt_settingsports.cpp.obj f3197435948cc340 +8937 9156 7195670365791299 src/device/CMakeFiles/dev.dir/hasp.c.obj adb9117d460286b1 +40800 45562 7195670729906281 src/qt/CMakeFiles/ui.dir/qt_machinestatus.cpp.obj 513c2694f3b86283 +18185 18423 7195670458441649 src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj d2f0a1fd8d2484df +6982 9719 7195670371432884 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj 3c6b02e7ccb2ce0a +10999 11835 7195670392643653 src/disk/minivhd/CMakeFiles/minivhd.dir/cwalk.c.obj a9418ee98924e999 +12628 12834 7195670402716336 src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj b134bdc7e1d7f976 +51 105 7189356015250832 src/qt/86box_fi-FI.qm 191eafd33d6aa75a +1097 1431 7195670288665342 src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj 9fdc7af1ec43ecad +17346 17958 7195670453765210 src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj 2ba9d648793907d4 +10446 10823 7195670382310964 src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj bedae2044fab95b6 +16383 16655 7195670440816677 src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj ddb291235b9e73d5 +21220 21534 7195670489485176 src/sound/munt/CMakeFiles/mt32emu.dir/sha1/sha1.cpp.obj b93b82fd056cd79e +18271 18503 7195670459396927 src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj e7973f39c53eb244 +44 95 7194667290293349 src/qt/86box_zh-TW.qm e400749947f1683e +15306 16179 7195670436110338 src/network/CMakeFiles/net.dir/net_slirp.c.obj a9a0347a6f4501c4 +5126 7126 7195670345626084 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj b18e750fba9b10c1 +16477 16725 7195670441421951 src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj ca0445f7efb06a6f +13913 14095 7195670415324833 src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj 6580f14bf7316c78 +51928 55326 7195670827663423 src/qt/CMakeFiles/ui.dir/qt_winrawinputfilter.cpp.obj fee67079c16bb420 +39848 40304 7195670677168224 src/CMakeFiles/86Box.dir/pit_fast.c.obj 3ee6a7f8329df449 +21572 22958 7195670503939441 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_pcm.cpp.obj e46af6f7c284cbc0 +18419 18942 7195670463598069 src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj 8b00bb4efb1812d6 +31524 32593 7195670600174933 src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj 9483c450dfbe8357 +1769 2985 7195670304149687 src/cpu/CMakeFiles/cpu.dir/386_common.c.obj 38785c0e9bba8dc4 +23084 23409 7195670508325728 src/sound/resid-fp/CMakeFiles/resid-fp.dir/filter.cc.obj ab08b8a8039524f5 +87 122 7189356015627991 src/qt/86box_pt-BR.qm e2f223265bd3211a +9667 10263 7195670376859220 src/device/CMakeFiles/dev.dir/isapnp.c.obj 6a91c03978220395 +14587 14799 7195670422351642 src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj b74b5a76238a35c7 +1081 1315 7195670287470086 src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj 20cdba34a257c6ea +11919 12218 7195670396564760 src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj 9dafb55bfb864833 +18131 18496 7195670459206927 src/sound/CMakeFiles/snd.dir/midi.c.obj be825c6ba2b25e87 +1044 1528 7195670289490573 src/chipset/CMakeFiles/chipset.dir/scamp.c.obj c4ba3ad5e2eb9bcd +15462 16003 7195670434284980 src/network/CMakeFiles/net.dir/net_ne2000.c.obj 3c9a03270ba384e6 +26930 27108 7195670545440402 src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj a5f604d7efba5eef +9664 10015 7195670374538691 src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj c208a73b90d7f44e +492 855 7195670282833811 src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj 3745c49e5ca88528 +19255 20257 7195670476896550 src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj 429ced2bf70ca981 +759 1069 7195670284904336 src/chipset/CMakeFiles/chipset.dir/opti283.c.obj 8354421955776d5c +11877 13721 7195670411543821 src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj 475e8bc3984bcab7 +49716 51918 7195670793434323 src/qt/CMakeFiles/ui.dir/qt_soundgain.cpp.obj 5e138c06cd111056 +14048 14450 7195670418710639 src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj 2bfc2a9f2c3f41f4 +2065 2301 7195670297312713 src/cpu/CMakeFiles/cpu.dir/8080.c.obj 1014951f2663a918 +3231 3418 7195670308370842 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj 37e7cc39665a1249 +27935 28133 7195670555623007 src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj 5f1d01b6fdae4dc2 +27323 27765 7195670551821902 src/video/CMakeFiles/vid.dir/vid_paradise.c.obj 4008cdd9978b7a4e +36314 39135 7195670665750473 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj 7076003bb99ace20 +1323 1885 7195670293151589 src/chipset/CMakeFiles/chipset.dir/stpc.c.obj f055d11d9b074fbc +3398 3624 7187539535652055 src/cpu/808x/CMakeFiles/808x.dir/queue.c.obj e3ce872626f62651 +17259 19009 7195670464423333 src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj 780c2f3afc488dac +1069 1961 7195670293761592 src/chipset/CMakeFiles/chipset.dir/scat.c.obj 411358ee47c8e622 +20973 21220 7195670486529310 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/SincResampler.cpp.obj 809b9d19a2015b86 +21103 21324 7195670487504588 src/sound/munt/CMakeFiles/mt32emu.dir/Tables.cpp.obj 3ba464aac99a1c8c +13077 14048 7195670414699555 src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj e615cf55bc168722 +83 111 7189356015536334 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pl-PL.qm af527ce1bda488 +2982 3250 7195670306820292 src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj e95a9002c93d8761 +47699 49712 7195670771318235 src/qt/CMakeFiles/ui.dir/qt_settings_bus_tracking.cpp.obj 50e886cb5b360498 +10015 10343 7195670377384484 src/device/CMakeFiles/dev.dir/mouse_bus.c.obj a92c874008a5ba6 +20005 20461 7195670478907145 src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj d8837eaf7cc3c6e7 +14495 14776 7195670422016495 src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj 61b7fc6ad121d501 +56 106 7189356015286027 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_it-IT.qm c7df201bd876a9fe +28134 28429 7195670558618742 src/video/CMakeFiles/vid.dir/vid_tvga.c.obj 54446e9d5883a093 +26575 26756 7195670541919377 src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj 22d32737ed735845 +10383 10548 7195670379825082 src/disk/CMakeFiles/hdd.dir/hdc.c.obj f02448e7ffb238a4 +1526 2658 7195670300868610 src/cpu/CMakeFiles/cpu.dir/cpu.c.obj ea22e88c2732680d +39637 39806 7195670672406945 src/CMakeFiles/86Box.dir/random.c.obj ed25c345d2b11a77 +39599 39631 7184832671036496 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp db135aebd57f385c +46439 49544 7195670769687677 src/qt/CMakeFiles/ui.dir/qt_settingsharddisks.cpp.obj 55f918024451b6aa +11206 11511 7195670389337900 src/disk/minivhd/CMakeFiles/minivhd.dir/create.c.obj d876c4d2d2f4945f +11451 11758 7195670391838407 src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_util.c.obj 926d5ac006aef58c +10935 11869 7195670392923654 src/disk/CMakeFiles/zip.dir/zip.c.obj 238373272f9c5466 +48446 51846 7195670792699087 src/qt/CMakeFiles/ui.dir/qt_newfloppydialog.cpp.obj 330ac96d7ef9311e +1109 1403 7195670288235332 src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj 90e3a909ee4effaa +20475 20939 7195670483683447 src/sound/munt/CMakeFiles/mt32emu.dir/MidiStreamParser.cpp.obj f192d0e599a4604f +35826 38332 7195670657489781 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp.obj 7811644947ad33bb +19631 19997 7195670474140794 src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj 6a118931f7c2ac5e +14450 14974 7195670424026994 src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj 44576bded9ca5a5d +21317 22110 7195670495266955 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_misc.cpp.obj 4e9f8856dce63bc1 +2432 2622 7195670300408605 src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj 79f86e349976eb19 +35196 38318 7195670656784540 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp.obj fa421ac74320a6d6 +40871 46472 7195670738883924 src/qt/CMakeFiles/ui.dir/qt_rendererstack.cpp.obj ffd843d9d502e877 +25976 26159 7195670535907953 src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj cda7d5701b42c172 +44 95 7194667290293349 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_zh-TW.qm e400749947f1683e +24170 24886 7195670523129624 src/video/CMakeFiles/vid.dir/vid_hercules.c.obj 11552c023d97450c +39638 39933 7195670673542209 src/CMakeFiles/86Box.dir/timer.c.obj f964be665865130c +103 135 7189356015778372 src/qt/86box_tr-TR.qm 53997f1880588766 +44 252 7195670276892237 src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj 23142c069135d15e +27001 27186 7195670546225633 src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj 71aa5df8f59b95b7 +2645 3102 7195670305255008 src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj 2034afcb17dcd9d3 +27271 27610 7195670550316670 src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj d59ecedda1b5e8d6 +39645 39809 7195670672386936 src/CMakeFiles/86Box.dir/nmi.c.obj 6c3949cf7733be1f +42 741 7195670281708550 src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj c8c9e59f40ba7fa1 +804 1041 7195670284814312 src/chipset/CMakeFiles/chipset.dir/opti291.c.obj 9e83edb071407b76 +33172 35826 7195670632268281 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp.obj 18692b53f42d52bd +10343 10496 7195670379325108 src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj 6cef01b90dde2099 +7877 8678 7195670360995067 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86.c.obj 226132483fa61dd4 +9953 10651 7195670380860370 src/device/CMakeFiles/dev.dir/kbc_at.c.obj 7fddd3b4e058c2e3 +287 524 7195670279528008 src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj 72221eef2b9a1bce +10000 10205 7195670376399233 src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj 7a0548c3ee9b2f00 +47 87 7189356015240839 src/qt/86box_en-GB.qm 55b63c80827befb +15714 16014 7195670434464979 src/network/CMakeFiles/net.dir/net_plip.c.obj 941d407dc500a5aa +41003 43376 7195670707960373 src/qt/CMakeFiles/ui.dir/qt_softwarerenderer.cpp.obj 6484b3a30b698807 +8585 9060 7195670364976021 src/device/CMakeFiles/dev.dir/cassette.c.obj f70930a8df00e586 +54287 56051 7195670834920242 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp.obj 7919ee5c2ee3b637 +28443 36192 7195670635523975 src/video/CMakeFiles/vid.dir/vid_s3.c.obj d18cda461e7c82be +51196 53515 7195670809063396 src/qt/CMakeFiles/ui.dir/qt_mcadevicelist.cpp.obj c62837b3dacca317 +236 488 7195670279257983 src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj 877d042c348ed15c +52351 54476 7195670818885940 src/qt/CMakeFiles/ui.dir/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp.obj 96e8df180a11d6c5 +36065 38639 7195670660705642 src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp.obj f36db3a4ff170624 +303 758 7195670281828573 src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj 2b45f5d9d9d941d5 +40866 46288 7195670737223504 src/qt/CMakeFiles/ui.dir/qt_mediamenu.cpp.obj 35e2267eed0ff268 +8678 8918 7195670363410782 src/device/CMakeFiles/dev.dir/cartridge.c.obj 83c714eb3b9b9a4c +11429 11674 7195670391003232 src/disk/minivhd/CMakeFiles/minivhd.dir/struct_rw.c.obj 7665b9164a2a6698 +40582 41213 7195670686530571 src/CMakeFiles/86Box.dir/thread.cpp.obj 58b33ac771e0d639 +16469 16936 7195670443652484 src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj b4bf862cb26eb203 +14396 14672 7195670421051253 src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj 2c4da8bb9d65f2d5 +20323 20475 7195670478907145 src/sound/munt/CMakeFiles/mt32emu.dir/LA32Ramp.cpp.obj 55437cf941141150 +13158 14396 7195670418160650 src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj a1a433730099880d +1658 1969 7195670293861581 src/cpu/CMakeFiles/cpu.dir/x86.c.obj 9f8fa044c5c2e858 +40304 40865 7195670682939684 src/CMakeFiles/86Box.dir/device.c.obj e6f1da4b2dcfe634 +32149 33546 7195670609627372 src/qt/CMakeFiles/plat.dir/win_joystick_rawinput.c.obj fb0f49a7056ce111 +12393 12765 7195670401681083 src/game/CMakeFiles/game.dir/gameport.c.obj a8689a10f0a9e136 +12632 12853 7195670402826344 src/machine/CMakeFiles/mch.dir/machine.c.obj fd4cd5a6d3998fc8 +10401 11172 7195670386016870 src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj 8743fdcd4fdfbe69 +11924 12631 7195670400575823 src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj 666f364175685f30 +46719 49994 7195670774303964 src/qt/CMakeFiles/ui.dir/qt_settingsotherremovable.cpp.obj 97f72bdda0684c0e +31527 31838 7195670592082826 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/mocs_compilation.cpp 7e33d85c02859665 +23410 23521 7195670509520990 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PS_.cc.obj 4947692f8dc98b9e +39862 40094 7195670675312899 src/CMakeFiles/86Box.dir/port_6x.c.obj d1d2b53d5d5231 +1783 44592 7195670719573392 src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj f071ec00984806f7 +49168 53390 7195670808198219 src/qt/CMakeFiles/ui.dir/qt_harddiskdialog.cpp.obj b1d0c5529a8ed21d +21210 21458 7195670488809843 src/sound/munt/CMakeFiles/mt32emu.dir/TVF.cpp.obj 11b0b00252a0d35d +23605 23734 7195670511491475 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580__ST.cc.obj 5a5d9de8e9b2b547 +10280 10958 7195670383816231 src/disk/CMakeFiles/hdd.dir/hdd.c.obj c0c53fd5e20f4699 +17262 17978 7195670454095327 src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj 5d58bddd75a19337 +11789 14587 7195670420065979 src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj a55443643680fb69 +39806 40660 7195670680889150 src/CMakeFiles/86Box.dir/pic.c.obj f757181fa26a4588 +17009 17375 7195670448103624 src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj 7361a5aa32b98e5e +23629 23926 7195670513491967 src/video/CMakeFiles/vid.dir/vid_table.c.obj 92c5f52cd747da63 +3362 4724 7195670321359564 src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj 5b66ca9f9412736f +25708 25936 7195670533657453 src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj 8bac0955f25b8605 +57069 62972 7195670892600294 src/86Box.exe 7ed41c53614f29ae +52045 53097 7195670805257532 src/qt/CMakeFiles/ui.dir/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp.obj c7db782e2cbff0bf +18509 19254 7195670466933890 src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj 3dd59f3e78ca2cf7 +3251 3960 7195670313847300 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj 371dbce3d5061318 +20019 20557 7195670479592378 src/sound/munt/CMakeFiles/mt32emu.dir/Analog.cpp.obj 1d2a8b7bc9e59031 +23526 23623 7195670510566254 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PS_.cc.obj 5a0775c17143fc52 +12409 12621 7195670400535834 src/game/CMakeFiles/game.dir/joystick_standard.c.obj 4f91426e4458019e +45 79 7189356015170676 src/qt/86box_cs-CZ.qm 698f39fcb88c7a14 +43 1105 7195670285349512 src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj fe51af436cf8e907 +3292 3555 7195670309886146 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj 89d2a86672bd6293 +42 95 7194667290293349 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_zh-CN.qm 771785dfea4f0dbf +45584 49168 7195670766036505 src/qt/CMakeFiles/ui.dir/qt_settingsnetwork.cpp.obj 3edcf3f6c76e8d4c +29687 31025 7195670584635911 src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj 4d5d54c54f98385 +31843 31975 7195670594013241 src/qt/CMakeFiles/plat.dir/plat_autogen/mocs_compilation.cpp.obj be788e75b668e73e +11600 11789 7195670392243652 src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj 6afb4ef735e158a5 +489 721 7195670281538552 src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj e5ba1df4ac6d13e7 +14528 14928 7195670423676946 src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj ccd453ed523c10d0 +9735 9953 7195670373833365 src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj 9151c99506564003 +10493 10935 7195670383616241 src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj 59442ea1b97b4282 +15796 16090 7195670435250226 src/network/CMakeFiles/net.dir/net_event.c.obj c5667b7e873e5bdc +32171 33756 7195670611737859 src/qt/CMakeFiles/plat.dir/__/win/win_serial_passthrough.c.obj e564fcfd1804b10d +18757 19140 7195670465728614 src/sound/CMakeFiles/snd.dir/snd_cms.c.obj cf9748154098be4a +3239 3709 7195670311336761 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj d25aa2d2dc4c4abb +1882 3391 7195670308260844 src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj 3d187acdeb60c6a7 +11596 12869 7195670403046420 src/floppy/CMakeFiles/fdd.dir/fdc.c.obj 4a0b56615e6662d4 +16162 16382 7195670438050934 src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj be726a1ceda9bfc7 +54390 56050 7195670834910228 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp.obj 2c22d4c8133ee74e +1423 1764 7195670291911083 src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj 17b7d9a979078585 +297 494 7195670279287986 src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj 2acfc4eec8cbffc1 +52 101 7189356015275963 src/qt/86box_fr-FR.qm 26164d1f3935f368 +18792 19444 7195670468824388 src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj 14ef7c07e4c24a29 +40540 41051 7195670684890177 src/CMakeFiles/86Box.dir/ini.c.obj b9f4d51c10efeba7 +25922 30955 7195670583780646 src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj 8fe54340e1782eef +16916 17172 7195670446003072 src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj 2db3ac8fe7b2c155 +31607 39598 7195670669771216 src/qt/ui_autogen/mocs_compilation.cpp 5d2f44364079477c +19539 19771 7195670472020270 src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj 137e728a20daf859 +47830 51993 7195670794054312 src/qt/CMakeFiles/ui.dir/qt_deviceconfig.cpp.obj 90423c16dba87e06 +3837 6488 7195670339059263 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj 2317f151f579f791 +53830 55600 7195670830409180 src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp.obj 37e7d9156faa2493 +17967 18757 7195670461807489 src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj fbffeac90e5320e3 +16831 17101 7195670445383007 src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj 4d2a74985c49eeb1 +31607 39598 7195670669771216 K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/mocs_compilation.cpp 5d2f44364079477c +17 114 0 CMakeFiles/clean.additional c03fbb1c2bc7fc9a diff --git a/src/build/CPackConfig.cmake b/src/build/CPackConfig.cmake new file mode 100644 index 000000000..726cff713 --- /dev/null +++ b/src/build/CPackConfig.cmake @@ -0,0 +1,75 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "K:/emu_dev/86Box_clean_ex_k;K:/emu_dev/86Box_clean_ex_k/src/build") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "86Box built using CMake") +set(CPACK_GENERATOR "NSIS") +set(CPACK_INNOSETUP_ARCHITECTURE "x86") +set(CPACK_INSTALL_CMAKE_PROJECTS "K:/emu_dev/86Box_clean_ex_k/src/build;86Box;ALL;/") +set(CPACK_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "86Box 4.0.2") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "86Box 4.0.2") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "C:/msys64/mingw32/bin/objcopy.exe") +set(CPACK_OBJDUMP_EXECUTABLE "C:/msys64/mingw32/bin/objdump.exe") +set(CPACK_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Emulator of x86-based systems") +set(CPACK_PACKAGE_FILE_NAME "86Box-4.0.2-win32") +set(CPACK_PACKAGE_HOMEPAGE_URL "https://86box.net") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "86Box 4.0.2") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "86Box 4.0.2") +set(CPACK_PACKAGE_NAME "86Box") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "4.0.2") +set(CPACK_PACKAGE_VERSION_MAJOR "4") +set(CPACK_PACKAGE_VERSION_MINOR "0") +set(CPACK_PACKAGE_VERSION_PATCH "2") +set(CPACK_READELF_EXECUTABLE "C:/msys64/mingw32/bin/readelf.exe") +set(CPACK_RESOURCE_FILE_LICENSE "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_SYSTEM_NAME "win32") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win32") +set(CPACK_WIX_SIZEOF_VOID_P "4") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "K:/emu_dev/86Box_clean_ex_k/src/build/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/src/build/CPackSourceConfig.cmake b/src/build/CPackSourceConfig.cmake new file mode 100644 index 000000000..ea3f080d8 --- /dev/null +++ b/src/build/CPackSourceConfig.cmake @@ -0,0 +1,83 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "K:/emu_dev/86Box_clean_ex_k;K:/emu_dev/86Box_clean_ex_k/src/build") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "86Box built using CMake") +set(CPACK_GENERATOR "7Z;ZIP") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INNOSETUP_ARCHITECTURE "x86") +set(CPACK_INSTALLED_DIRECTORIES "K:/emu_dev/86Box_clean_ex_k;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "86Box 4.0.2") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +set(CPACK_NSIS_PACKAGE_NAME "86Box 4.0.2") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "C:/msys64/mingw32/bin/objcopy.exe") +set(CPACK_OBJDUMP_EXECUTABLE "C:/msys64/mingw32/bin/objdump.exe") +set(CPACK_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Emulator of x86-based systems") +set(CPACK_PACKAGE_FILE_NAME "86Box-4.0.2-Source") +set(CPACK_PACKAGE_HOMEPAGE_URL "https://86box.net") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "86Box 4.0.2") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "86Box 4.0.2") +set(CPACK_PACKAGE_NAME "86Box") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "4.0.2") +set(CPACK_PACKAGE_VERSION_MAJOR "4") +set(CPACK_PACKAGE_VERSION_MINOR "0") +set(CPACK_PACKAGE_VERSION_PATCH "2") +set(CPACK_READELF_EXECUTABLE "C:/msys64/mingw32/bin/readelf.exe") +set(CPACK_RESOURCE_FILE_LICENSE "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "C:/msys64/mingw32/share/cmake/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "K:/emu_dev/86Box_clean_ex_k;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "86Box-4.0.2-Source") +set(CPACK_SOURCE_TOPLEVEL_TAG "win32-Source") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "win32") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win32-Source") +set(CPACK_WIX_SIZEOF_VOID_P "4") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "K:/emu_dev/86Box_clean_ex_k/src/build/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/src/build/build.ninja b/src/build/build.ninja new file mode 100644 index 000000000..054ea28fd --- /dev/null +++ b/src/build/build.ninja @@ -0,0 +1,7993 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.27 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: 86Box +# Configurations: Release +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Release +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = K$:/emu_dev/86Box_clean_ex_k/src/build/ + +############################################# +# Utility command for package + +build CMakeFiles/package.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build package: phony CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build package_source: phony CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for EXECUTABLE target 86Box + + +############################################# +# Order-only phony target for 86Box + +build cmake_object_order_depends_target_86Box: phony || cmake_object_order_depends_target_cdrom cmake_object_order_depends_target_cgt cmake_object_order_depends_target_chipset cmake_object_order_depends_target_cpu cmake_object_order_depends_target_dev cmake_object_order_depends_target_dynarec cmake_object_order_depends_target_fdd cmake_object_order_depends_target_game cmake_object_order_depends_target_hdd cmake_object_order_depends_target_mch cmake_object_order_depends_target_mem cmake_object_order_depends_target_minivhd cmake_object_order_depends_target_mo cmake_object_order_depends_target_mt32emu cmake_object_order_depends_target_net cmake_object_order_depends_target_plat cmake_object_order_depends_target_print cmake_object_order_depends_target_resid-fp cmake_object_order_depends_target_scsi cmake_object_order_depends_target_sio cmake_object_order_depends_target_snd cmake_object_order_depends_target_softfloat cmake_object_order_depends_target_ui cmake_object_order_depends_target_vid cmake_object_order_depends_target_voodoo cmake_object_order_depends_target_ymfm cmake_object_order_depends_target_zip + +build src/CMakeFiles/86Box.dir/86box.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/86box.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\86box.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/config.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/config.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\config.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/log.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/log.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\log.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/random.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/random.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\random.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/timer.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/timer.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\timer.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/io.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/io.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\io.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/acpi.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/acpi.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\acpi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/apm.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/apm.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\apm.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/dma.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/dma.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\dma.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/ddma.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/ddma.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\ddma.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/nmi.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/nmi.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nmi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/pic.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/pic.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pic.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/pit.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/pit.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pit.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/pit_fast.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/pit_fast.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pit_fast.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/port_6x.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/port_6x.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\port_6x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/port_92.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/port_92.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\port_92.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/ppi.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/ppi.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\ppi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/pci.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/pci.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pci.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/mca.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mca.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\mca.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/usb.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/usb.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\usb.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/fifo.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/fifo.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\fifo.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/fifo8.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/fifo8.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\fifo8.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/device.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\device.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/nvr.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/nvr.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nvr.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/nvr_at.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/nvr_at.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nvr_at.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/nvr_ps2.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/nvr_ps2.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nvr_ps2.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/machine_status.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine_status.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\machine_status.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/ini.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/ini.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\ini.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/thread.cpp.obj: CXX_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/thread.cpp || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\thread.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/discord.c.obj: C_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/discord.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\discord.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + +build src/CMakeFiles/86Box.dir/win/86Box-qt.rc.obj: RC_COMPILER__86Box_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/win/86Box-qt.rc || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\win\86Box-qt.rc.obj.d + FLAGS = -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -I K:/emu_dev/86Box_clean_ex_k/src/build/src/include -I K:/emu_dev/86Box_clean_ex_k/src/include -I K:/emu_dev/86Box_clean_ex_k/src/cpu -I K:/emu_dev/86Box_clean_ex_k/src/codegen_new -I C:/msys64/mingw32/include/freetype2 -I C:/msys64/mingw32/include -I C:/msys64/mingw32/include/SDL2 -I C:/msys64/mingw32/include/slirp -I C:/msys64/mingw32/include/glib-2.0 -I C:/msys64/mingw32/lib/glib-2.0/include -I C:/msys64/mingw32/include/rtmidi -I C:/msys64/mingw32/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir\win + + +# ============================================================================= +# Link build statements for EXECUTABLE target 86Box + + +############################################# +# Link the executable src\86Box.exe + +build src/86Box.exe: CXX_EXECUTABLE_LINKER__86Box_Release src/cpu/CMakeFiles/cpu.dir/cpu.c.obj src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj src/cpu/CMakeFiles/cpu.dir/fpu.c.obj src/cpu/CMakeFiles/cpu.dir/x86.c.obj src/cpu/CMakeFiles/cpu.dir/808x.c.obj src/cpu/CMakeFiles/cpu.dir/386.c.obj src/cpu/CMakeFiles/cpu.dir/386_common.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj src/cpu/CMakeFiles/cpu.dir/x87.c.obj src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj src/cpu/CMakeFiles/cpu.dir/8080.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj src/chipset/CMakeFiles/chipset.dir/82c100.c.obj src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj src/chipset/CMakeFiles/chipset.dir/headland.c.obj src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj src/chipset/CMakeFiles/chipset.dir/neat.c.obj src/chipset/CMakeFiles/chipset.dir/opti283.c.obj src/chipset/CMakeFiles/chipset.dir/opti291.c.obj src/chipset/CMakeFiles/chipset.dir/opti391.c.obj src/chipset/CMakeFiles/chipset.dir/opti495.c.obj src/chipset/CMakeFiles/chipset.dir/opti602.c.obj src/chipset/CMakeFiles/chipset.dir/opti822.c.obj src/chipset/CMakeFiles/chipset.dir/opti895.c.obj src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj src/chipset/CMakeFiles/chipset.dir/scamp.c.obj src/chipset/CMakeFiles/chipset.dir/scat.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj src/chipset/CMakeFiles/chipset.dir/gc100.c.obj src/chipset/CMakeFiles/chipset.dir/stpc.c.obj src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj src/machine/CMakeFiles/mch.dir/machine.c.obj src/machine/CMakeFiles/mch.dir/machine_table.c.obj src/machine/CMakeFiles/mch.dir/m_xt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj src/machine/CMakeFiles/mch.dir/m_europc.c.obj src/machine/CMakeFiles/mch.dir/m_elt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj src/machine/CMakeFiles/mch.dir/m_tandy.c.obj src/machine/CMakeFiles/mch.dir/m_v86p.c.obj src/machine/CMakeFiles/mch.dir/m_at.c.obj src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj src/machine/CMakeFiles/mch.dir/m_ps1.c.obj src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj src/device/CMakeFiles/dev.dir/bugger.c.obj src/device/CMakeFiles/dev.dir/cassette.c.obj src/device/CMakeFiles/dev.dir/cartridge.c.obj src/device/CMakeFiles/dev.dir/hasp.c.obj src/device/CMakeFiles/dev.dir/hwm.c.obj src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj src/device/CMakeFiles/dev.dir/ibm_5161.c.obj src/device/CMakeFiles/dev.dir/isamem.c.obj src/device/CMakeFiles/dev.dir/isartc.c.obj src/device/CMakeFiles/dev.dir/__/lpt.c.obj src/device/CMakeFiles/dev.dir/pci_bridge.c.obj src/device/CMakeFiles/dev.dir/postcard.c.obj src/device/CMakeFiles/dev.dir/serial.c.obj src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj src/device/CMakeFiles/dev.dir/isapnp.c.obj src/device/CMakeFiles/dev.dir/i2c.c.obj src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj src/device/CMakeFiles/dev.dir/keyboard.c.obj src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj src/device/CMakeFiles/dev.dir/kbc_at.c.obj src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj src/device/CMakeFiles/dev.dir/keyboard_at.c.obj src/device/CMakeFiles/dev.dir/mouse.c.obj src/device/CMakeFiles/dev.dir/mouse_bus.c.obj src/device/CMakeFiles/dev.dir/mouse_serial.c.obj src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj src/mem/CMakeFiles/mem.dir/intel_flash.c.obj src/mem/CMakeFiles/mem.dir/mem.c.obj src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj src/mem/CMakeFiles/mem.dir/rom.c.obj src/mem/CMakeFiles/mem.dir/row.c.obj src/mem/CMakeFiles/mem.dir/smram.c.obj src/mem/CMakeFiles/mem.dir/spd.c.obj src/mem/CMakeFiles/mem.dir/sst_flash.c.obj src/floppy/CMakeFiles/fdd.dir/fdd.c.obj src/floppy/CMakeFiles/fdd.dir/fdc.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj src/game/CMakeFiles/game.dir/gameport.c.obj src/game/CMakeFiles/game.dir/joystick_standard.c.obj src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj src/disk/CMakeFiles/zip.dir/zip.c.obj src/disk/CMakeFiles/mo.dir/mo.c.obj src/disk/CMakeFiles/hdd.dir/hdd.c.obj src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj src/disk/CMakeFiles/hdd.dir/hdc.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj src/network/CMakeFiles/net.dir/network.c.obj src/network/CMakeFiles/net.dir/net_pcap.c.obj src/network/CMakeFiles/net.dir/net_slirp.c.obj src/network/CMakeFiles/net.dir/net_dp8390.c.obj src/network/CMakeFiles/net.dir/net_3c501.c.obj src/network/CMakeFiles/net.dir/net_3c503.c.obj src/network/CMakeFiles/net.dir/net_ne2000.c.obj src/network/CMakeFiles/net.dir/net_pcnet.c.obj src/network/CMakeFiles/net.dir/net_wd8003.c.obj src/network/CMakeFiles/net.dir/net_plip.c.obj src/network/CMakeFiles/net.dir/net_event.c.obj src/network/CMakeFiles/net.dir/net_null.c.obj src/printer/CMakeFiles/print.dir/png.c.obj src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj src/printer/CMakeFiles/print.dir/prt_escp.c.obj src/printer/CMakeFiles/print.dir/prt_text.c.obj src/printer/CMakeFiles/print.dir/prt_ps.c.obj src/scsi/CMakeFiles/scsi.dir/scsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj src/sio/CMakeFiles/sio.dir/sio_detect.c.obj src/sound/CMakeFiles/snd.dir/sound.c.obj src/sound/CMakeFiles/snd.dir/snd_opl.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj src/sound/CMakeFiles/snd.dir/midi.c.obj src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj src/sound/CMakeFiles/snd.dir/snd_cms.c.obj src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj src/sound/CMakeFiles/snd.dir/snd_gus.c.obj src/sound/CMakeFiles/snd.dir/snd_sb.c.obj src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj src/sound/CMakeFiles/snd.dir/snd_wss.c.obj src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj src/sound/CMakeFiles/snd.dir/xaudio2.c.obj src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj src/video/CMakeFiles/vid.dir/agpgart.c.obj src/video/CMakeFiles/vid.dir/video.c.obj src/video/CMakeFiles/vid.dir/vid_table.c.obj src/video/CMakeFiles/vid.dir/vid_cga.c.obj src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj src/video/CMakeFiles/vid.dir/vid_mda.c.obj src/video/CMakeFiles/vid.dir/vid_hercules.c.obj src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj src/video/CMakeFiles/vid.dir/vid_incolor.c.obj src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj src/video/CMakeFiles/vid.dir/vid_genius.c.obj src/video/CMakeFiles/vid.dir/vid_pgc.c.obj src/video/CMakeFiles/vid.dir/vid_im1024.c.obj src/video/CMakeFiles/vid.dir/vid_sigma.c.obj src/video/CMakeFiles/vid.dir/vid_wy700.c.obj src/video/CMakeFiles/vid.dir/vid_ega.c.obj src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj src/video/CMakeFiles/vid.dir/vid_svga.c.obj src/video/CMakeFiles/vid.dir/vid_8514a.c.obj src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj src/video/CMakeFiles/vid.dir/vid_ddc.c.obj src/video/CMakeFiles/vid.dir/vid_vga.c.obj src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_av9194.c.obj src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj src/video/CMakeFiles/vid.dir/vid_et3000.c.obj src/video/CMakeFiles/vid.dir/vid_et4000.c.obj src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ht216.c.obj src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj src/video/CMakeFiles/vid.dir/vid_paradise.c.obj src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj src/video/CMakeFiles/vid.dir/vid_tvga.c.obj src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_s3.c.obj src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ogc.c.obj src/video/CMakeFiles/vid.dir/vid_nga.c.obj src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_xga.c.obj src/video/CMakeFiles/vid.dir/vid_mga.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_fpu.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_sse.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_uops.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj src/CMakeFiles/86Box.dir/86box.c.obj src/CMakeFiles/86Box.dir/config.c.obj src/CMakeFiles/86Box.dir/log.c.obj src/CMakeFiles/86Box.dir/random.c.obj src/CMakeFiles/86Box.dir/timer.c.obj src/CMakeFiles/86Box.dir/io.c.obj src/CMakeFiles/86Box.dir/acpi.c.obj src/CMakeFiles/86Box.dir/apm.c.obj src/CMakeFiles/86Box.dir/dma.c.obj src/CMakeFiles/86Box.dir/ddma.c.obj src/CMakeFiles/86Box.dir/nmi.c.obj src/CMakeFiles/86Box.dir/pic.c.obj src/CMakeFiles/86Box.dir/pit.c.obj src/CMakeFiles/86Box.dir/pit_fast.c.obj src/CMakeFiles/86Box.dir/port_6x.c.obj src/CMakeFiles/86Box.dir/port_92.c.obj src/CMakeFiles/86Box.dir/ppi.c.obj src/CMakeFiles/86Box.dir/pci.c.obj src/CMakeFiles/86Box.dir/mca.c.obj src/CMakeFiles/86Box.dir/usb.c.obj src/CMakeFiles/86Box.dir/fifo.c.obj src/CMakeFiles/86Box.dir/fifo8.c.obj src/CMakeFiles/86Box.dir/device.c.obj src/CMakeFiles/86Box.dir/nvr.c.obj src/CMakeFiles/86Box.dir/nvr_at.c.obj src/CMakeFiles/86Box.dir/nvr_ps2.c.obj src/CMakeFiles/86Box.dir/machine_status.c.obj src/CMakeFiles/86Box.dir/ini.c.obj src/CMakeFiles/86Box.dir/thread.cpp.obj src/CMakeFiles/86Box.dir/discord.c.obj src/CMakeFiles/86Box.dir/win/86Box-qt.rc.obj | src/qt/libplat.a src/qt/libui.a C$:/msys64/mingw32/lib/libSDL2.a C$:/msys64/mingw32/lib/libpng.a src/disk/minivhd/libminivhd.a src/sound/munt/libmt32emu.a src/sound/ymfm/libymfm.a src/sound/resid-fp/libresid-fp.a C$:/msys64/mingw32/qt5-static/lib/libQt5Network.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/bearer/libqgenericbearer.a C$:/msys64/mingw32/qt5-static/lib/libQt5Network.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/bearer/libqgenericbearer.a C$:/msys64/mingw32/qt5-static/lib//libQt5Network.a C$:/msys64/mingw32/lib/libdnsapi.a C$:/msys64/mingw32/lib/libiphlpapi.a C$:/msys64/mingw32/lib/libsecur32.a C$:/msys64/mingw32/lib/libcrypt32.a C$:/msys64/mingw32/lib/libbcrypt.a C$:/msys64/mingw32/lib/libncrypt.a C$:/msys64/mingw32/qt5-static/lib/libQt5OpenGL.a C$:/msys64/mingw32/qt5-static/lib/libQt5Widgets.a C$:/msys64/mingw32/qt5-static/lib/libQt5Gui.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/styles/libqwindowsvistastyle.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqgif.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqicns.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqico.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqjpeg.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/iconengines/libqsvgicon.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqsvg.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtga.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtiff.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwbmp.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwebp.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/platforms/libqwindows.a C$:/msys64/mingw32/qt5-static/lib/libQt5Svg.a C$:/msys64/mingw32/qt5-static/lib/libQt5EventDispatcherSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5FontDatabaseSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5ThemeSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5AccessibilitySupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5VulkanSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5WindowsUIAutomationSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5Widgets.a C$:/msys64/mingw32/qt5-static/lib/libQt5Gui.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/styles/libqwindowsvistastyle.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqgif.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqicns.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqico.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqjpeg.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/iconengines/libqsvgicon.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqsvg.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtga.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtiff.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwbmp.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwebp.a C$:/msys64/mingw32/qt5-static/share/qt5/plugins/platforms/libqwindows.a C$:/msys64/mingw32/qt5-static/lib/libQt5Svg.a C$:/msys64/mingw32/qt5-static/lib/libQt5EventDispatcherSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5FontDatabaseSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5ThemeSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5AccessibilitySupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5VulkanSupport.a C$:/msys64/mingw32/qt5-static/lib/libQt5WindowsUIAutomationSupport.a C$:/msys64/mingw32/qt5-static/lib//libqtlibjpeg.a C$:/msys64/mingw32/qt5-static/lib//libQt5Svg.a C$:/msys64/mingw32/lib/libwinspool.a C$:/msys64/mingw32/lib/libshlwapi.a C$:/msys64/mingw32/lib/libwtsapi32.a C$:/msys64/mingw32/qt5-static/lib//libQt5EventDispatcherSupport.a C$:/msys64/mingw32/qt5-static/lib//libQt5FontDatabaseSupport.a C$:/msys64/mingw32/qt5-static/lib//libQt5ThemeSupport.a C$:/msys64/mingw32/qt5-static/lib//libQt5AccessibilitySupport.a C$:/msys64/mingw32/qt5-static/lib//libQt5VulkanSupport.a C$:/msys64/mingw32/qt5-static/lib//libQt5WindowsUIAutomationSupport.a C$:/msys64/mingw32/qt5-static/lib//libqtfreetype.a C$:/msys64/mingw32/lib/libdwrite.a C$:/msys64/mingw32/lib/libd2d1.a C$:/msys64/mingw32/qt5-static/lib/libQt5Core.a C$:/msys64/mingw32/qt5-static/lib//libQt5Widgets.a C$:/msys64/mingw32/qt5-static/lib//libQt5Gui.a C$:/msys64/mingw32/lib/libd3d11.a C$:/msys64/mingw32/lib/libdxgi.a C$:/msys64/mingw32/lib/libdxguid.a C$:/msys64/mingw32/qt5-static/lib//libqtlibpng.a C$:/msys64/mingw32/qt5-static/lib//libqtharfbuzz.a C$:/msys64/mingw32/qt5-static/lib//libQt5Core.a C$:/msys64/mingw32/lib/libmpr.a C$:/msys64/mingw32/lib/libuserenv.a C$:/msys64/mingw32/lib/libversion.a C$:/msys64/mingw32/lib/libz.a C$:/msys64/mingw32/qt5-static/lib//libqtpcre2.a C$:/msys64/mingw32/lib/libzstd.a C$:/msys64/mingw32/lib/libnetapi32.a C$:/msys64/mingw32/lib/libuxtheme.a C$:/msys64/mingw32/lib/libdwmapi.a C$:/msys64/mingw32/lib/libcomdlg32.a C$:/msys64/mingw32/lib/liboleaut32.a C$:/msys64/mingw32/lib/libimm32.a C$:/msys64/mingw32/lib/libglu32.a C$:/msys64/mingw32/lib/libopengl32.a C$:/msys64/mingw32/lib/libgdi32.a C$:/msys64/mingw32/lib/libws2_32.a C$:/msys64/mingw32/lib/libadvapi32.a C$:/msys64/mingw32/lib/libkernel32.a C$:/msys64/mingw32/lib/libole32.a C$:/msys64/mingw32/lib/libshell32.a C$:/msys64/mingw32/lib/libuuid.a C$:/msys64/mingw32/lib/libuser32.a C$:/msys64/mingw32/lib/libwinmm.a C$:/msys64/mingw32/lib/libz.a C$:/msys64/mingw32/lib/libslirp.a C$:/msys64/mingw32/lib/libglib-2.0.a C$:/msys64/mingw32/lib/libintl.a C$:/msys64/mingw32/lib/libfreetype.a C$:/msys64/mingw32/lib/librtmidi.a C$:/msys64/mingw32/lib/libfluidsynth.a || src/cdrom/cdrom src/chipset/chipset src/codegen_new/dynarec src/cpu/cgt src/cpu/cpu src/cpu/softfloat/softfloat src/device/dev src/disk/hdd src/disk/minivhd/libminivhd.a src/disk/mo src/disk/zip src/floppy/fdd src/game/game src/machine/mch src/mem/mem src/network/net src/printer/print src/qt/libplat.a src/qt/libui.a src/scsi/scsi src/sio/sio src/sound/munt/libmt32emu.a src/sound/resid-fp/libresid-fp.a src/sound/snd src/sound/ymfm/libymfm.a src/video/vid src/video/voodoo + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 + LINK_FLAGS = -Wl,--large-address-aware -static -Wl,--allow-multiple-definition + LINK_LIBRARIES = src/qt/libplat.a src/qt/libui.a C:/msys64/mingw32/lib/libSDL2.a C:/msys64/mingw32/lib/libpng.a -latomic src/disk/minivhd/libminivhd.a -lws2_32 -static -lbz2 -lpcre2-8 -lbrotlidec -lbrotlicommon -lharfbuzz -lm -lusp10 -lgdi32 -lrpcrt4 -lfreetype -lbz2 -lglib-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -luuid -lm -lgraphite2 -lpng16 -lz -static -lfluidsynth -ldsound -lksuser -lwinmm -lole32 -lws2_32 -lm -lgmodule-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -luuid -lm -lreadline -ltermcap -lmingw32 -lSDL2main -lSDL2 -lmingw32 -lSDL2main -lSDL2 -lm -lkernel32 -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lversion -luuid -ladvapi32 -lsetupapi -lshell32 -ldinput8 -lportaudio -lsndfile -lmp3lame -lFLAC -lm -logg -lvorbis -lm -lvorbisenc -lopus -lm -lmpg123 -lm -lshlwapi -lgthread-2.0 -lglib-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -luuid -lm -lpcre2-8 -fopenmp src/sound/munt/libmt32emu.a src/sound/ymfm/libymfm.a src/sound/resid-fp/libresid-fp.a -lhid -ld3d9 C:/msys64/mingw32/qt5-static/lib/libQt5Network.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/bearer/libqgenericbearer.a C:/msys64/mingw32/qt5-static/lib/libQt5Network.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/bearer/libqgenericbearer.a C:/msys64/mingw32/qt5-static/lib//libQt5Network.a C:/msys64/mingw32/lib/libdnsapi.a C:/msys64/mingw32/lib/libiphlpapi.a C:/msys64/mingw32/lib/libsecur32.a C:/msys64/mingw32/lib/libcrypt32.a C:/msys64/mingw32/lib/libbcrypt.a C:/msys64/mingw32/lib/libncrypt.a C:/msys64/mingw32/qt5-static/lib/libQt5OpenGL.a C:/msys64/mingw32/qt5-static/lib/libQt5Widgets.a C:/msys64/mingw32/qt5-static/lib/libQt5Gui.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/styles/libqwindowsvistastyle.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqgif.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqicns.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqico.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqjpeg.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/iconengines/libqsvgicon.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqsvg.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtga.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtiff.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwbmp.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwebp.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/platforms/libqwindows.a C:/msys64/mingw32/qt5-static/lib/libQt5Svg.a C:/msys64/mingw32/qt5-static/lib/libQt5EventDispatcherSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5FontDatabaseSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5ThemeSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5AccessibilitySupport.a C:/msys64/mingw32/qt5-static/lib/libQt5VulkanSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5WindowsUIAutomationSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5Widgets.a C:/msys64/mingw32/qt5-static/lib/libQt5Gui.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/styles/libqwindowsvistastyle.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqgif.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqicns.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqico.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqjpeg.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/iconengines/libqsvgicon.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqsvg.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtga.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqtiff.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwbmp.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/imageformats/libqwebp.a C:/msys64/mingw32/qt5-static/share/qt5/plugins/platforms/libqwindows.a C:/msys64/mingw32/qt5-static/lib/libQt5Svg.a C:/msys64/mingw32/qt5-static/lib/libQt5EventDispatcherSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5FontDatabaseSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5ThemeSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5AccessibilitySupport.a C:/msys64/mingw32/qt5-static/lib/libQt5VulkanSupport.a C:/msys64/mingw32/qt5-static/lib/libQt5WindowsUIAutomationSupport.a C:/msys64/mingw32/qt5-static/lib//libqtlibjpeg.a C:/msys64/mingw32/qt5-static/lib//libQt5Svg.a C:/msys64/mingw32/lib/libwinspool.a C:/msys64/mingw32/lib/libshlwapi.a C:/msys64/mingw32/lib/libwtsapi32.a C:/msys64/mingw32/qt5-static/lib//libQt5EventDispatcherSupport.a C:/msys64/mingw32/qt5-static/lib//libQt5FontDatabaseSupport.a C:/msys64/mingw32/qt5-static/lib//libQt5ThemeSupport.a C:/msys64/mingw32/qt5-static/lib//libQt5AccessibilitySupport.a C:/msys64/mingw32/qt5-static/lib//libQt5VulkanSupport.a C:/msys64/mingw32/qt5-static/lib//libQt5WindowsUIAutomationSupport.a C:/msys64/mingw32/qt5-static/lib//libqtfreetype.a C:/msys64/mingw32/lib/libdwrite.a C:/msys64/mingw32/lib/libd2d1.a C:/msys64/mingw32/qt5-static/lib/libQt5Core.a -static C:/msys64/mingw32/qt5-static/lib//libQt5Widgets.a C:/msys64/mingw32/qt5-static/lib//libQt5Gui.a C:/msys64/mingw32/lib/libd3d11.a C:/msys64/mingw32/lib/libdxgi.a C:/msys64/mingw32/lib/libdxguid.a C:/msys64/mingw32/qt5-static/lib//libqtlibpng.a C:/msys64/mingw32/qt5-static/lib//libqtharfbuzz.a C:/msys64/mingw32/qt5-static/lib//libQt5Core.a C:/msys64/mingw32/lib/libmpr.a C:/msys64/mingw32/lib/libuserenv.a C:/msys64/mingw32/lib/libversion.a C:/msys64/mingw32/lib/libz.a C:/msys64/mingw32/qt5-static/lib//libqtpcre2.a C:/msys64/mingw32/lib/libzstd.a C:/msys64/mingw32/lib/libnetapi32.a C:/msys64/mingw32/lib/libuxtheme.a C:/msys64/mingw32/lib/libdwmapi.a C:/msys64/mingw32/lib/libcomdlg32.a C:/msys64/mingw32/lib/liboleaut32.a C:/msys64/mingw32/lib/libimm32.a C:/msys64/mingw32/lib/libglu32.a C:/msys64/mingw32/lib/libopengl32.a C:/msys64/mingw32/lib/libgdi32.a C:/msys64/mingw32/lib/libws2_32.a C:/msys64/mingw32/lib/libadvapi32.a C:/msys64/mingw32/lib/libkernel32.a C:/msys64/mingw32/lib/libole32.a C:/msys64/mingw32/lib/libshell32.a C:/msys64/mingw32/lib/libuuid.a C:/msys64/mingw32/lib/libuser32.a C:/msys64/mingw32/lib/libwinmm.a C:/msys64/mingw32/lib/libz.a -lbz2 -lbrotlidec -lbrotlicommon -lharfbuzz -lusp10 -lrpcrt4 -lfreetype -lgraphite2 -lpng16 -lz -lfluidsynth -ldsound -lksuser -lgmodule-2.0 -lreadline -ltermcap -lmingw32 -lSDL2main -lSDL2 -lportaudio -lsndfile -lmp3lame -lFLAC -logg -lvorbis -lvorbisenc -lopus -lmpg123 -lgthread-2.0 -lm -lkernel32 -luser32 -lgdi32 -limm32 -lole32 -loleaut32 -lversion -luuid -ladvapi32 -lsetupapi -lshell32 -ldinput8 -lhid -ld3d9 C:/msys64/mingw32/lib/libslirp.a C:/msys64/mingw32/lib/libglib-2.0.a C:/msys64/mingw32/lib/libintl.a -lwsock32 -lws2_32 -liphlpapi -liconv C:/msys64/mingw32/lib/libfreetype.a C:/msys64/mingw32/lib/librtmidi.a -lwinmm C:/msys64/mingw32/lib/libfluidsynth.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = src\CMakeFiles\86Box.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\86Box.exe + TARGET_IMPLIB = src\lib86Box.dll.a + TARGET_PDB = 86Box.exe.dbg + RSP_FILE = CMakeFiles\86Box.rsp + + +############################################# +# Utility command for package + +build src/CMakeFiles/package.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/package: phony src/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/package_source: phony src/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/edit_cache: phony src/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/rebuild_cache: phony src/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/list_install_components: phony + + +############################################# +# Utility command for install + +build src/CMakeFiles/install.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/install: phony src/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/CMakeFiles/install/local.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/install/local: phony src/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/install/strip: phony src/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target cdrom + + +############################################# +# Order-only phony target for cdrom + +build cmake_object_order_depends_target_cdrom: phony || src/cdrom/CMakeFiles/cdrom.dir + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj: C_COMPILER__cdrom_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj: C_COMPILER__cdrom_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_image_backend.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_image_backend.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj: C_COMPILER__cdrom_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_image_viso.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_image_viso.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj: C_COMPILER__cdrom_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_image.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_image.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj: C_COMPILER__cdrom_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_mitsumi.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_mitsumi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + + + +############################################# +# Object library cdrom + +build src/cdrom/cdrom: phony src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj + + +############################################# +# Utility command for package + +build src/cdrom/CMakeFiles/package.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/cdrom/package: phony src/cdrom/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/cdrom/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/cdrom/package_source: phony src/cdrom/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/cdrom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cdrom && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/cdrom/edit_cache: phony src/cdrom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/cdrom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cdrom && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/cdrom/rebuild_cache: phony src/cdrom/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/cdrom/list_install_components: phony + + +############################################# +# Utility command for install + +build src/cdrom/CMakeFiles/install.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cdrom && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/cdrom/install: phony src/cdrom/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/cdrom/CMakeFiles/install/local.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cdrom && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/cdrom/install/local: phony src/cdrom/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/cdrom/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cdrom && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/cdrom/install/strip: phony src/cdrom/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target chipset + + +############################################# +# Order-only phony target for chipset + +build cmake_object_order_depends_target_chipset: phony || src/chipset/CMakeFiles/chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/82c100.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/82c100.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\82c100.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/acc2168.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\acc2168.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/cs8230.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\cs8230.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1429.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1429.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1435.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1435.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1489.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1489.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1531.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1531.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1541.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1541.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1543.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1543.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1621.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1621.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali6117.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali6117.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/headland.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/headland.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\headland.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/ims8848.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ims8848.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_82335.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_82335.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/compaq_386.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\compaq_386.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/contaq_82c59x.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\contaq_82c59x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/cs4031.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\cs4031.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_420ex.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_420ex.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_4x0.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_4x0.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_i450kx.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_i450kx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_sio.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_sio.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_piix.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_piix.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/ioapic.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\__\ioapic.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir\__ + +build src/chipset/CMakeFiles/chipset.dir/neat.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/neat.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\neat.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti283.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti283.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti283.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti291.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti291.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti291.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti391.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti391.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti391.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti495.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti495.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti495.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti602.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti602.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti602.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti822.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti822.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti822.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti895.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti895.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti895.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti5x7.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti5x7.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/scamp.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/scamp.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\scamp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/scat.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/scat.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\scat.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c310.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c310.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c4xx.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c4xx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c496.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c496.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c50x.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c50x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_5511.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_5511.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_5571.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_5571.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_vt82c49x.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_vt82c49x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_vt82c505.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_vt82c505.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/gc100.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/gc100.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\gc100.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/stpc.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/stpc.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\stpc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/umc_8886.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\umc_8886.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/umc_hb4.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\umc_hb4.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_apollo.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_apollo.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_pipc.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_pipc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/vl82c480.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\vl82c480.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/wd76c10.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\wd76c10.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj: C_COMPILER__chipset_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/chipset/olivetti_eva.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\olivetti_eva.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + + + +############################################# +# Object library chipset + +build src/chipset/chipset: phony src/chipset/CMakeFiles/chipset.dir/82c100.c.obj src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj src/chipset/CMakeFiles/chipset.dir/headland.c.obj src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj src/chipset/CMakeFiles/chipset.dir/neat.c.obj src/chipset/CMakeFiles/chipset.dir/opti283.c.obj src/chipset/CMakeFiles/chipset.dir/opti291.c.obj src/chipset/CMakeFiles/chipset.dir/opti391.c.obj src/chipset/CMakeFiles/chipset.dir/opti495.c.obj src/chipset/CMakeFiles/chipset.dir/opti602.c.obj src/chipset/CMakeFiles/chipset.dir/opti822.c.obj src/chipset/CMakeFiles/chipset.dir/opti895.c.obj src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj src/chipset/CMakeFiles/chipset.dir/scamp.c.obj src/chipset/CMakeFiles/chipset.dir/scat.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj src/chipset/CMakeFiles/chipset.dir/gc100.c.obj src/chipset/CMakeFiles/chipset.dir/stpc.c.obj src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj + + +############################################# +# Utility command for package + +build src/chipset/CMakeFiles/package.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/chipset/package: phony src/chipset/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/chipset/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/chipset/package_source: phony src/chipset/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/chipset/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\chipset && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/chipset/edit_cache: phony src/chipset/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/chipset/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\chipset && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/chipset/rebuild_cache: phony src/chipset/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/chipset/list_install_components: phony + + +############################################# +# Utility command for install + +build src/chipset/CMakeFiles/install.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\chipset && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/chipset/install: phony src/chipset/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/chipset/CMakeFiles/install/local.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\chipset && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/chipset/install/local: phony src/chipset/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/chipset/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\chipset && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/chipset/install/strip: phony src/chipset/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target cpu + + +############################################# +# Order-only phony target for cpu + +build cmake_object_order_depends_target_cpu: phony || src/cpu/CMakeFiles/cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/cpu.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/cpu.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\cpu.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/cpu_table.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\cpu_table.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/fpu.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/fpu.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\fpu.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x86.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/808x.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/808x.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\808x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/386.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/386.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/386_common.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/386_common.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386_common.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/386_dynarec.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386_dynarec.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86_ops_mmx.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86_ops_mmx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86seg_common.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86seg_common.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86seg.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86seg.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86seg_2386.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86seg_2386.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x87.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x87.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x87.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/x87_timings.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x87_timings.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/8080.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/8080.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\8080.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj: C_COMPILER__cpu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/386_dynarec_ops.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386_dynarec_ops.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + + + +############################################# +# Object library cpu + +build src/cpu/cpu: phony src/cpu/CMakeFiles/cpu.dir/cpu.c.obj src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj src/cpu/CMakeFiles/cpu.dir/fpu.c.obj src/cpu/CMakeFiles/cpu.dir/x86.c.obj src/cpu/CMakeFiles/cpu.dir/808x.c.obj src/cpu/CMakeFiles/cpu.dir/386.c.obj src/cpu/CMakeFiles/cpu.dir/386_common.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj src/cpu/CMakeFiles/cpu.dir/x87.c.obj src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj src/cpu/CMakeFiles/cpu.dir/8080.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target cgt + + +############################################# +# Order-only phony target for cgt + +build cmake_object_order_depends_target_cgt: phony || src/cpu/CMakeFiles/cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_486.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_486.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_686.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_686.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_common.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_common.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_k6.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_k6.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_pentium.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_pentium.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_p6.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_p6.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_winchip.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_winchip.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj: C_COMPILER__cgt_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_winchip2.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_winchip2.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + + + +############################################# +# Object library cgt + +build src/cpu/cgt: phony src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj + + +############################################# +# Utility command for package + +build src/cpu/CMakeFiles/package.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/cpu/package: phony src/cpu/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/cpu/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/cpu/package_source: phony src/cpu/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/cpu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/cpu/edit_cache: phony src/cpu/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/cpu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/cpu/rebuild_cache: phony src/cpu/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/cpu/list_install_components: phony + + +############################################# +# Utility command for install + +build src/cpu/CMakeFiles/install.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/cpu/install: phony src/cpu/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/cpu/CMakeFiles/install/local.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/cpu/install/local: phony src/cpu/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/cpu/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/cpu/install/strip: phony src/cpu/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/cpu/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target softfloat + + +############################################# +# Order-only phony target for softfloat + +build cmake_object_order_depends_target_softfloat: phony || src/cpu/softfloat/CMakeFiles/softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/f2xm1.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\f2xm1.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fpatan.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fpatan.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fprem.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fprem.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fsincos.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fsincos.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fyl2x.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fyl2x.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat_poly.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat_poly.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat16.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat16.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat-muladd.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat-muladd.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat-round-pack.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat-round-pack.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat-specialize.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat-specialize.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj: CXX_COMPILER__softfloat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloatx80.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloatx80.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + + + +############################################# +# Object library softfloat + +build src/cpu/softfloat/softfloat: phony src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj + + +############################################# +# Utility command for package + +build src/cpu/softfloat/CMakeFiles/package.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/cpu/softfloat/package: phony src/cpu/softfloat/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/cpu/softfloat/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/cpu/softfloat/package_source: phony src/cpu/softfloat/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/cpu/softfloat/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu\softfloat && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/cpu/softfloat/edit_cache: phony src/cpu/softfloat/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/cpu/softfloat/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu\softfloat && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/cpu/softfloat/rebuild_cache: phony src/cpu/softfloat/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/cpu/softfloat/list_install_components: phony + + +############################################# +# Utility command for install + +build src/cpu/softfloat/CMakeFiles/install.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu\softfloat && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/cpu/softfloat/install: phony src/cpu/softfloat/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/cpu/softfloat/CMakeFiles/install/local.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu\softfloat && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/cpu/softfloat/install/local: phony src/cpu/softfloat/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/cpu/softfloat/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\cpu\softfloat && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/cpu/softfloat/install/strip: phony src/cpu/softfloat/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target dynarec + + +############################################# +# Order-only phony target for dynarec + +build cmake_object_order_depends_target_dynarec: phony || src/codegen_new/CMakeFiles/dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_accumulate.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_accumulate.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_allocator.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_allocator.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_block.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_block.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ir.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ir.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_3dnow.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_3dnow.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_branch.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_branch.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_arith.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_arith.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_arith.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_arith.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_constant.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_constant.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_loadstore.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_loadstore.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_misc.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_misc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_helpers.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_helpers.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_jump.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_jump.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_logic.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_logic.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_misc.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_misc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_arith.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_arith.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_cmp.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_cmp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_loadstore.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_loadstore.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_logic.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_logic.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_pack.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_pack.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_shift.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_shift.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mov.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mov.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_shift.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_shift.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_stack.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_stack.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_reg.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_reg.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86_ops.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86_ops.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_fpu.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86_ops_fpu.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86_ops_fpu.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_sse.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86_ops_sse.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86_ops_sse.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_uops.c.obj: C_COMPILER__dynarec_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86_uops.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86_uops.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + + + +############################################# +# Object library dynarec + +build src/codegen_new/dynarec: phony src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_fpu.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_ops_sse.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86_uops.c.obj + + +############################################# +# Utility command for package + +build src/codegen_new/CMakeFiles/package.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/codegen_new/package: phony src/codegen_new/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/codegen_new/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/codegen_new/package_source: phony src/codegen_new/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/codegen_new/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\codegen_new && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/codegen_new/edit_cache: phony src/codegen_new/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/codegen_new/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\codegen_new && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/codegen_new/rebuild_cache: phony src/codegen_new/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/codegen_new/list_install_components: phony + + +############################################# +# Utility command for install + +build src/codegen_new/CMakeFiles/install.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\codegen_new && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/codegen_new/install: phony src/codegen_new/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/codegen_new/CMakeFiles/install/local.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\codegen_new && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/codegen_new/install/local: phony src/codegen_new/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/codegen_new/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\codegen_new && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/codegen_new/install/strip: phony src/codegen_new/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target dev + + +############################################# +# Order-only phony target for dev + +build cmake_object_order_depends_target_dev: phony || src/device/CMakeFiles/dev.dir + +build src/device/CMakeFiles/dev.dir/bugger.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/bugger.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\bugger.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/cassette.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/cassette.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\cassette.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/cartridge.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/cartridge.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\cartridge.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/hasp.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/hasp.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hasp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/hwm.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/hwm.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_lm75.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_lm75.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_lm78.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_lm78.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_gl518sm.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_gl518sm.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_vt82c686.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_vt82c686.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/ibm_5161.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/ibm_5161.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\ibm_5161.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/isamem.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/isamem.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\isamem.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/isartc.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/isartc.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\isartc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/__/lpt.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/lpt.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\__\lpt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir\__ + +build src/device/CMakeFiles/dev.dir/pci_bridge.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/pci_bridge.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\pci_bridge.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/postcard.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/postcard.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\postcard.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/serial.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/serial.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\serial.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/clock_ics9xxx.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\clock_ics9xxx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/isapnp.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/isapnp.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\isapnp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/i2c.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/i2c.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\i2c.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/i2c_gpio.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\i2c_gpio.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/smbus_piix4.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\smbus_piix4.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/smbus_ali7101.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\smbus_ali7101.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/keyboard.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/keyboard.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\keyboard.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/keyboard_xt.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\keyboard_xt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/kbc_at.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/kbc_at.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\kbc_at.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/kbc_at_dev.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\kbc_at_dev.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/keyboard_at.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/keyboard_at.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\keyboard_at.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/mouse.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/mouse.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/mouse_bus.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/mouse_bus.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse_bus.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/mouse_serial.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/mouse_serial.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse_serial.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/mouse_ps2.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse_ps2.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/phoenix_486_jumper.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\phoenix_486_jumper.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + +build src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj: C_COMPILER__dev_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/device/serial_passthrough.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\serial_passthrough.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + + + +############################################# +# Object library dev + +build src/device/dev: phony src/device/CMakeFiles/dev.dir/bugger.c.obj src/device/CMakeFiles/dev.dir/cassette.c.obj src/device/CMakeFiles/dev.dir/cartridge.c.obj src/device/CMakeFiles/dev.dir/hasp.c.obj src/device/CMakeFiles/dev.dir/hwm.c.obj src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj src/device/CMakeFiles/dev.dir/ibm_5161.c.obj src/device/CMakeFiles/dev.dir/isamem.c.obj src/device/CMakeFiles/dev.dir/isartc.c.obj src/device/CMakeFiles/dev.dir/__/lpt.c.obj src/device/CMakeFiles/dev.dir/pci_bridge.c.obj src/device/CMakeFiles/dev.dir/postcard.c.obj src/device/CMakeFiles/dev.dir/serial.c.obj src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj src/device/CMakeFiles/dev.dir/isapnp.c.obj src/device/CMakeFiles/dev.dir/i2c.c.obj src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj src/device/CMakeFiles/dev.dir/keyboard.c.obj src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj src/device/CMakeFiles/dev.dir/kbc_at.c.obj src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj src/device/CMakeFiles/dev.dir/keyboard_at.c.obj src/device/CMakeFiles/dev.dir/mouse.c.obj src/device/CMakeFiles/dev.dir/mouse_bus.c.obj src/device/CMakeFiles/dev.dir/mouse_serial.c.obj src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj + + +############################################# +# Utility command for package + +build src/device/CMakeFiles/package.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/device/package: phony src/device/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/device/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/device/package_source: phony src/device/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/device/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\device && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/device/edit_cache: phony src/device/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/device/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\device && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/device/rebuild_cache: phony src/device/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/device/list_install_components: phony + + +############################################# +# Utility command for install + +build src/device/CMakeFiles/install.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\device && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/device/install: phony src/device/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/device/CMakeFiles/install/local.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\device && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/device/install/local: phony src/device/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/device/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\device && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/device/install/strip: phony src/device/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target hdd + + +############################################# +# Order-only phony target for hdd + +build cmake_object_order_depends_target_hdd: phony || src/disk/CMakeFiles/hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdd.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdd.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdd.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdd_image.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdd_image.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdd_table.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdd_table.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_st506_xt.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_st506_xt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_st506_at.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_st506_at.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_xta.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_xta.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_esdi_at.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_esdi_at.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_esdi_mca.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_esdi_mca.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_xtide.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_xtide.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_opti611.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_opti611.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_cmd640.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_cmd640.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_cmd646.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_cmd646.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj: C_COMPILER__hdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_sff8038i.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_sff8038i.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + + + +############################################# +# Object library hdd + +build src/disk/hdd: phony src/disk/CMakeFiles/hdd.dir/hdd.c.obj src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj src/disk/CMakeFiles/hdd.dir/hdc.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target zip + + +############################################# +# Order-only phony target for zip + +build cmake_object_order_depends_target_zip: phony || src/disk/CMakeFiles/zip.dir + +build src/disk/CMakeFiles/zip.dir/zip.c.obj: C_COMPILER__zip_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/zip.c || cmake_object_order_depends_target_zip + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\zip.dir\zip.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\zip.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\zip.dir + + + +############################################# +# Object library zip + +build src/disk/zip: phony src/disk/CMakeFiles/zip.dir/zip.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target mo + + +############################################# +# Order-only phony target for mo + +build cmake_object_order_depends_target_mo: phony || src/disk/CMakeFiles/mo.dir + +build src/disk/CMakeFiles/mo.dir/mo.c.obj: C_COMPILER__mo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/mo.c || cmake_object_order_depends_target_mo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\mo.dir\mo.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\mo.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\mo.dir + + + +############################################# +# Object library mo + +build src/disk/mo: phony src/disk/CMakeFiles/mo.dir/mo.c.obj + + +############################################# +# Utility command for package + +build src/disk/CMakeFiles/package.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/disk/package: phony src/disk/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/disk/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/disk/package_source: phony src/disk/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/disk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/disk/edit_cache: phony src/disk/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/disk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/disk/rebuild_cache: phony src/disk/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/disk/list_install_components: phony + + +############################################# +# Utility command for install + +build src/disk/CMakeFiles/install.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/disk/install: phony src/disk/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/disk/CMakeFiles/install/local.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/disk/install/local: phony src/disk/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/disk/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/disk/install/strip: phony src/disk/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/disk/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target minivhd + + +############################################# +# Order-only phony target for minivhd + +build cmake_object_order_depends_target_minivhd: phony || src/disk/minivhd/CMakeFiles/minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/cwalk.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/cwalk.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\cwalk.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/xml2_encoding.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/xml2_encoding.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\xml2_encoding.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/convert.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/convert.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\convert.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/create.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/create.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\create.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_io.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/minivhd_io.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd_io.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/manage.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/manage.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\manage.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/struct_rw.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/struct_rw.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\struct_rw.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_util.c.obj: C_COMPILER__minivhd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/minivhd_util.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd_util.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target minivhd + + +############################################# +# Link the static library src\disk\minivhd\libminivhd.a + +build src/disk/minivhd/libminivhd.a: C_STATIC_LIBRARY_LINKER__minivhd_Release src/disk/minivhd/CMakeFiles/minivhd.dir/cwalk.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/xml2_encoding.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/convert.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/create.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_io.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/manage.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/struct_rw.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_util.c.obj + LANGUAGE_COMPILE_FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\disk\minivhd\libminivhd.a + TARGET_PDB = minivhd.a.dbg + + +############################################# +# Utility command for package + +build src/disk/minivhd/CMakeFiles/package.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/disk/minivhd/package: phony src/disk/minivhd/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/disk/minivhd/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/disk/minivhd/package_source: phony src/disk/minivhd/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/disk/minivhd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk\minivhd && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/disk/minivhd/edit_cache: phony src/disk/minivhd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/disk/minivhd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk\minivhd && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/disk/minivhd/rebuild_cache: phony src/disk/minivhd/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/disk/minivhd/list_install_components: phony + + +############################################# +# Utility command for install + +build src/disk/minivhd/CMakeFiles/install.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk\minivhd && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/disk/minivhd/install: phony src/disk/minivhd/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/disk/minivhd/CMakeFiles/install/local.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk\minivhd && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/disk/minivhd/install/local: phony src/disk/minivhd/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/disk/minivhd/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\disk\minivhd && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/disk/minivhd/install/strip: phony src/disk/minivhd/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target fdd + + +############################################# +# Order-only phony target for fdd + +build cmake_object_order_depends_target_fdd: phony || src/floppy/CMakeFiles/fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdc.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc_magitronic.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc_magitronic.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc_monster.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc_monster.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc_pii15xb.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc_pii15xb.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdi2raw.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdi2raw.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_common.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_common.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_86f.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_86f.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_fdi.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_fdi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_imd.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_imd.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_img.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_img.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_json.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_json.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_mfm.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_mfm.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj: C_COMPILER__fdd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_td0.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_td0.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + + + +############################################# +# Object library fdd + +build src/floppy/fdd: phony src/floppy/CMakeFiles/fdd.dir/fdd.c.obj src/floppy/CMakeFiles/fdd.dir/fdc.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj + + +############################################# +# Utility command for package + +build src/floppy/CMakeFiles/package.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/floppy/package: phony src/floppy/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/floppy/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/floppy/package_source: phony src/floppy/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/floppy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\floppy && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/floppy/edit_cache: phony src/floppy/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/floppy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\floppy && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/floppy/rebuild_cache: phony src/floppy/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/floppy/list_install_components: phony + + +############################################# +# Utility command for install + +build src/floppy/CMakeFiles/install.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\floppy && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/floppy/install: phony src/floppy/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/floppy/CMakeFiles/install/local.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\floppy && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/floppy/install/local: phony src/floppy/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/floppy/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\floppy && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/floppy/install/strip: phony src/floppy/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target game + + +############################################# +# Order-only phony target for game + +build cmake_object_order_depends_target_game: phony || src/game/CMakeFiles/game.dir + +build src/game/CMakeFiles/game.dir/gameport.c.obj: C_COMPILER__game_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/game/gameport.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\gameport.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + +build src/game/CMakeFiles/game.dir/joystick_standard.c.obj: C_COMPILER__game_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_standard.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_standard.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + +build src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj: C_COMPILER__game_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_ch_flightstick_pro.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_ch_flightstick_pro.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + +build src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj: C_COMPILER__game_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_sw_pad.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_sw_pad.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + +build src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj: C_COMPILER__game_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_tm_fcs.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_tm_fcs.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + + + +############################################# +# Object library game + +build src/game/game: phony src/game/CMakeFiles/game.dir/gameport.c.obj src/game/CMakeFiles/game.dir/joystick_standard.c.obj src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj + + +############################################# +# Utility command for package + +build src/game/CMakeFiles/package.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/game/package: phony src/game/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/game/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/game/package_source: phony src/game/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/game/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\game && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/game/edit_cache: phony src/game/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/game/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\game && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/game/rebuild_cache: phony src/game/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/game/list_install_components: phony + + +############################################# +# Utility command for install + +build src/game/CMakeFiles/install.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\game && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/game/install: phony src/game/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/game/CMakeFiles/install/local.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\game && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/game/install/local: phony src/game/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/game/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\game && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/game/install/strip: phony src/game/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target mch + + +############################################# +# Order-only phony target for mch + +build cmake_object_order_depends_target_mch: phony || src/machine/CMakeFiles/mch.dir + +build src/machine/CMakeFiles/mch.dir/machine.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/machine.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\machine.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/machine_table.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/machine_table.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\machine_table.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_compaq.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_compaq.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_philips.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_philips.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_t1000.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_t1000.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_t1000_vid.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_t1000_vid.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_xi8088.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_xi8088.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_zenith.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_zenith.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_pcjr.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_pcjr.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_amstrad.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_amstrad.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_europc.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_europc.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_europc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_elt.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_elt.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_elt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_olivetti.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_olivetti.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_tandy.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_tandy.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_tandy.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_v86p.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_v86p.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_v86p.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_commodore.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_commodore.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_t3100e.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_t3100e.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_t3100e_vid.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_t3100e_vid.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_ps1.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps1.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps1.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps1_hdc.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps1_hdc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps2_isa.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps2_isa.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps2_mca.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps2_mca.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_compaq.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_compaq.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_286_386sx.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_286_386sx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_386dx_486.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_386dx_486.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket4.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket4.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket5.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket5.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket7_3v.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket7_3v.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket7.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket7.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_sockets7.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_sockets7.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket8.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket8.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_slot1.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_slot1.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_slot2.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_slot2.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket370.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket370.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_misc.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_misc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + +build src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj: C_COMPILER__mch_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_laserxt.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_laserxt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + + + +############################################# +# Object library mch + +build src/machine/mch: phony src/machine/CMakeFiles/mch.dir/machine.c.obj src/machine/CMakeFiles/mch.dir/machine_table.c.obj src/machine/CMakeFiles/mch.dir/m_xt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj src/machine/CMakeFiles/mch.dir/m_europc.c.obj src/machine/CMakeFiles/mch.dir/m_elt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj src/machine/CMakeFiles/mch.dir/m_tandy.c.obj src/machine/CMakeFiles/mch.dir/m_v86p.c.obj src/machine/CMakeFiles/mch.dir/m_at.c.obj src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj src/machine/CMakeFiles/mch.dir/m_ps1.c.obj src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj + + +############################################# +# Utility command for package + +build src/machine/CMakeFiles/package.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/machine/package: phony src/machine/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/machine/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/machine/package_source: phony src/machine/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/machine/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\machine && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/machine/edit_cache: phony src/machine/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/machine/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\machine && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/machine/rebuild_cache: phony src/machine/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/machine/list_install_components: phony + + +############################################# +# Utility command for install + +build src/machine/CMakeFiles/install.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\machine && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/machine/install: phony src/machine/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/machine/CMakeFiles/install/local.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\machine && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/machine/install/local: phony src/machine/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/machine/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\machine && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/machine/install/strip: phony src/machine/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target mem + + +############################################# +# Order-only phony target for mem + +build cmake_object_order_depends_target_mem: phony || src/mem/CMakeFiles/mem.dir + +build src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/catalyst_flash.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\catalyst_flash.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/i2c_eeprom.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\i2c_eeprom.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/intel_flash.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/intel_flash.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\intel_flash.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/mem.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/mem.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\mem.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/mmu_2386.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\mmu_2386.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/rom.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/rom.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\rom.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/row.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/row.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\row.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/smram.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/smram.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\smram.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/spd.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/spd.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\spd.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + +build src/mem/CMakeFiles/mem.dir/sst_flash.c.obj: C_COMPILER__mem_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/mem/sst_flash.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\sst_flash.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + + + +############################################# +# Object library mem + +build src/mem/mem: phony src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj src/mem/CMakeFiles/mem.dir/intel_flash.c.obj src/mem/CMakeFiles/mem.dir/mem.c.obj src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj src/mem/CMakeFiles/mem.dir/rom.c.obj src/mem/CMakeFiles/mem.dir/row.c.obj src/mem/CMakeFiles/mem.dir/smram.c.obj src/mem/CMakeFiles/mem.dir/spd.c.obj src/mem/CMakeFiles/mem.dir/sst_flash.c.obj + + +############################################# +# Utility command for package + +build src/mem/CMakeFiles/package.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/mem/package: phony src/mem/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/mem/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/mem/package_source: phony src/mem/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/mem/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\mem && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/mem/edit_cache: phony src/mem/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/mem/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\mem && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/mem/rebuild_cache: phony src/mem/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/mem/list_install_components: phony + + +############################################# +# Utility command for install + +build src/mem/CMakeFiles/install.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\mem && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/mem/install: phony src/mem/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/mem/CMakeFiles/install/local.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\mem && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/mem/install/local: phony src/mem/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/mem/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\mem && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/mem/install/strip: phony src/mem/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target net + + +############################################# +# Order-only phony target for net + +build cmake_object_order_depends_target_net: phony || src/network/CMakeFiles/net.dir + +build src/network/CMakeFiles/net.dir/network.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/network.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\network.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_pcap.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_pcap.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_pcap.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_slirp.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_slirp.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_slirp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_dp8390.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_dp8390.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_dp8390.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_3c501.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_3c501.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_3c501.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_3c503.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_3c503.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_3c503.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_ne2000.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_ne2000.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_ne2000.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_pcnet.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_pcnet.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_pcnet.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_wd8003.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_wd8003.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_wd8003.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_plip.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_plip.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_plip.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_event.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_event.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_event.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + +build src/network/CMakeFiles/net.dir/net_null.c.obj: C_COMPILER__net_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/network/net_null.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_null.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + + + +############################################# +# Object library net + +build src/network/net: phony src/network/CMakeFiles/net.dir/network.c.obj src/network/CMakeFiles/net.dir/net_pcap.c.obj src/network/CMakeFiles/net.dir/net_slirp.c.obj src/network/CMakeFiles/net.dir/net_dp8390.c.obj src/network/CMakeFiles/net.dir/net_3c501.c.obj src/network/CMakeFiles/net.dir/net_3c503.c.obj src/network/CMakeFiles/net.dir/net_ne2000.c.obj src/network/CMakeFiles/net.dir/net_pcnet.c.obj src/network/CMakeFiles/net.dir/net_wd8003.c.obj src/network/CMakeFiles/net.dir/net_plip.c.obj src/network/CMakeFiles/net.dir/net_event.c.obj src/network/CMakeFiles/net.dir/net_null.c.obj + + +############################################# +# Utility command for package + +build src/network/CMakeFiles/package.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/network/package: phony src/network/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/network/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/network/package_source: phony src/network/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/network/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\network && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/network/edit_cache: phony src/network/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/network/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\network && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/network/rebuild_cache: phony src/network/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/network/list_install_components: phony + + +############################################# +# Utility command for install + +build src/network/CMakeFiles/install.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\network && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/network/install: phony src/network/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/network/CMakeFiles/install/local.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\network && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/network/install/local: phony src/network/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/network/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\network && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/network/install/strip: phony src/network/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target print + + +############################################# +# Order-only phony target for print + +build cmake_object_order_depends_target_print: phony || src/printer/CMakeFiles/print.dir + +build src/printer/CMakeFiles/print.dir/png.c.obj: C_COMPILER__print_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/printer/png.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\png.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + +build src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj: C_COMPILER__print_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_cpmap.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_cpmap.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + +build src/printer/CMakeFiles/print.dir/prt_escp.c.obj: C_COMPILER__print_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_escp.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_escp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + +build src/printer/CMakeFiles/print.dir/prt_text.c.obj: C_COMPILER__print_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_text.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_text.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + +build src/printer/CMakeFiles/print.dir/prt_ps.c.obj: C_COMPILER__print_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_ps.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_ps.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + + + +############################################# +# Object library print + +build src/printer/print: phony src/printer/CMakeFiles/print.dir/png.c.obj src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj src/printer/CMakeFiles/print.dir/prt_escp.c.obj src/printer/CMakeFiles/print.dir/prt_text.c.obj src/printer/CMakeFiles/print.dir/prt_ps.c.obj + + +############################################# +# Utility command for package + +build src/printer/CMakeFiles/package.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/printer/package: phony src/printer/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/printer/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/printer/package_source: phony src/printer/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/printer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\printer && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/printer/edit_cache: phony src/printer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/printer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\printer && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/printer/rebuild_cache: phony src/printer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/printer/list_install_components: phony + + +############################################# +# Utility command for install + +build src/printer/CMakeFiles/install.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\printer && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/printer/install: phony src/printer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/printer/CMakeFiles/install/local.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\printer && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/printer/install/local: phony src/printer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/printer/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\printer && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/printer/install/strip: phony src/printer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target sio + + +############################################# +# Order-only phony target for sio + +build cmake_object_order_depends_target_sio: phony || src/sio/CMakeFiles/sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_acc3221.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_acc3221.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_ali5123.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_ali5123.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_f82c710.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_f82c710.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_82091aa.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_82091aa.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c6xx.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c6xx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c67x.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c67x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c669.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c669.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c93x.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c93x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37m60x.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37m60x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_it8661f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_it8661f.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87306.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87306.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87307.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87307.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87309.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87309.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87310.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87310.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87311.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87311.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87332.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87332.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_prime3b.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_prime3b.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_prime3c.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_prime3c.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_w83787f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_w83787f.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_w83877f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_w83877f.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_w83977f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_w83977f.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_um8669f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_um8669f.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_vt82c686.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_vt82c686.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_detect.c.obj: C_COMPILER__sio_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_detect.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_detect.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + + + +############################################# +# Object library sio + +build src/sio/sio: phony src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj src/sio/CMakeFiles/sio.dir/sio_detect.c.obj + + +############################################# +# Utility command for package + +build src/sio/CMakeFiles/package.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sio/package: phony src/sio/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sio/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sio/package_source: phony src/sio/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sio && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sio/edit_cache: phony src/sio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sio && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sio/rebuild_cache: phony src/sio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sio/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sio/CMakeFiles/install.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sio && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sio/install: phony src/sio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sio/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sio && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sio/install/local: phony src/sio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sio/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sio && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sio/install/strip: phony src/sio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target scsi + + +############################################# +# Order-only phony target for scsi + +build cmake_object_order_depends_target_scsi: phony || src/scsi/CMakeFiles/scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_device.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_device.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_cdrom.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_cdrom.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_disk.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_disk.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_x54x.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_x54x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_aha154x.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_aha154x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_buslogic.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_buslogic.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_ncr5380.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_ncr5380.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_ncr53c8xx.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_ncr53c8xx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_pcscsi.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_pcscsi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj: C_COMPILER__scsi_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_spock.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_spock.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + + + +############################################# +# Object library scsi + +build src/scsi/scsi: phony src/scsi/CMakeFiles/scsi.dir/scsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj + + +############################################# +# Utility command for package + +build src/scsi/CMakeFiles/package.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/scsi/package: phony src/scsi/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/scsi/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/scsi/package_source: phony src/scsi/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/scsi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\scsi && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/scsi/edit_cache: phony src/scsi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/scsi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\scsi && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/scsi/rebuild_cache: phony src/scsi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/scsi/list_install_components: phony + + +############################################# +# Utility command for install + +build src/scsi/CMakeFiles/install.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\scsi && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/scsi/install: phony src/scsi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/scsi/CMakeFiles/install/local.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\scsi && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/scsi/install/local: phony src/scsi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/scsi/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\scsi && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/scsi/install/strip: phony src/scsi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target snd + + +############################################# +# Order-only phony target for snd + +build cmake_object_order_depends_target_snd: phony || src/sound/CMakeFiles/snd.dir + +build src/sound/CMakeFiles/snd.dir/sound.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/sound.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\sound.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_opl.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_opl.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_opl.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_opl_nuked.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_opl_nuked.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj: CXX_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_opl_ymfm.cpp || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_opl_ymfm.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj: CXX_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_resid.cc || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_resid.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/midi.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/midi.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_speaker.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_speaker.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_pssj.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_pssj.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_lpt_dac.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_lpt_dac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ac97_codec.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ac97_codec.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ac97_via.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ac97_via.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_lpt_dss.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_lpt_dss.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ps1.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ps1.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_adlib.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_adlib.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_adlibgold.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_adlibgold.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ad1848.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ad1848.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_audiopci.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_audiopci.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_azt2316a.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_azt2316a.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_cms.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_cms.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_cms.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_cmi8x38.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_cmi8x38.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_cs423x.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_cs423x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_gus.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_gus.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_gus.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_sb.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_sb.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_sb.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_sb_dsp.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_sb_dsp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_emu8k.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_emu8k.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_mpu401.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_mpu401.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_sn76489.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_sn76489.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ssi2001.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ssi2001.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_wss.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_wss.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_wss.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ym7128.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ym7128.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_optimc.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_optimc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/xaudio2.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/xaudio2.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\xaudio2.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj: CXX_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/midi_rtmidi.cpp || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi_rtmidi.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/midi_fluidsynth.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi_fluidsynth.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/midi_mt32.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi_mt32.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + +build src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj: C_COMPILER__snd_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_pas16.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_pas16.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + + + +############################################# +# Object library snd + +build src/sound/snd: phony src/sound/CMakeFiles/snd.dir/sound.c.obj src/sound/CMakeFiles/snd.dir/snd_opl.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj src/sound/CMakeFiles/snd.dir/midi.c.obj src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj src/sound/CMakeFiles/snd.dir/snd_cms.c.obj src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj src/sound/CMakeFiles/snd.dir/snd_gus.c.obj src/sound/CMakeFiles/snd.dir/snd_sb.c.obj src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj src/sound/CMakeFiles/snd.dir/snd_wss.c.obj src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj src/sound/CMakeFiles/snd.dir/xaudio2.c.obj src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj + + +############################################# +# Utility command for package + +build src/sound/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/package: phony src/sound/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/package_source: phony src/sound/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/edit_cache: phony src/sound/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/rebuild_cache: phony src/sound/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/install: phony src/sound/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/install/local: phony src/sound/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/install/strip: phony src/sound/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mt32emu + + +############################################# +# Order-only phony target for mt32emu + +build cmake_object_order_depends_target_mt32emu: phony || src/sound/munt/CMakeFiles/mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Analog.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Analog.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Analog.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/BReverbModel.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/BReverbModel.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\BReverbModel.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Display.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Display.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Display.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/File.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/File.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\File.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/FileStream.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/FileStream.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\FileStream.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/LA32Ramp.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/LA32Ramp.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\LA32Ramp.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/LA32FloatWaveGenerator.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/LA32FloatWaveGenerator.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\LA32FloatWaveGenerator.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/LA32WaveGenerator.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/LA32WaveGenerator.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\LA32WaveGenerator.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/MidiStreamParser.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/MidiStreamParser.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\MidiStreamParser.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Part.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Part.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Part.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Partial.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Partial.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Partial.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/PartialManager.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/PartialManager.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\PartialManager.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Poly.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Poly.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Poly.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/ROMInfo.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/ROMInfo.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\ROMInfo.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/SampleRateConverter.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/SampleRateConverter.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\SampleRateConverter.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/FIRResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/FIRResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\FIRResampler.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/IIR2xResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/IIR2xResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\IIR2xResampler.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/LinearResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/LinearResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\LinearResampler.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/ResamplerModel.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/ResamplerModel.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\ResamplerModel.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/SincResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/SincResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\SincResampler.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/InternalResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/InternalResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\InternalResampler.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper + +build src/sound/munt/CMakeFiles/mt32emu.dir/Synth.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Synth.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Synth.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Tables.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Tables.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Tables.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/TVA.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/TVA.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\TVA.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/TVF.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/TVF.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\TVF.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/TVP.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/TVP.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\TVP.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/sha1/sha1.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/sha1/sha1.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\sha1\sha1.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\sha1 + +build src/sound/munt/CMakeFiles/mt32emu.dir/c_interface/c_interface.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/c_interface/c_interface.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\c_interface\c_interface.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\c_interface + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mt32emu + + +############################################# +# Link the static library src\sound\munt\libmt32emu.a + +build src/sound/munt/libmt32emu.a: CXX_STATIC_LIBRARY_LINKER__mt32emu_Release src/sound/munt/CMakeFiles/mt32emu.dir/Analog.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/BReverbModel.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Display.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/File.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/FileStream.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/LA32Ramp.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/LA32FloatWaveGenerator.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/LA32WaveGenerator.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/MidiStreamParser.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Part.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Partial.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/PartialManager.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Poly.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/ROMInfo.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/SampleRateConverter.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/FIRResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/IIR2xResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/LinearResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/ResamplerModel.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/SincResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/InternalResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Synth.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Tables.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/TVA.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/TVF.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/TVP.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/sha1/sha1.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/c_interface/c_interface.cpp.obj + LANGUAGE_COMPILE_FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\sound\munt\libmt32emu.a + TARGET_PDB = mt32emu.a.dbg + + +############################################# +# Utility command for package + +build src/sound/munt/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/munt/package: phony src/sound/munt/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/munt/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/munt/package_source: phony src/sound/munt/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/munt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\munt && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/munt/edit_cache: phony src/sound/munt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/munt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\munt && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/munt/rebuild_cache: phony src/sound/munt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/munt/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/munt/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\munt && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/munt/install: phony src/sound/munt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/munt/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\munt && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/munt/install/local: phony src/sound/munt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/munt/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\munt && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/munt/install/strip: phony src/sound/munt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target ymfm + + +############################################# +# Order-only phony target for ymfm + +build cmake_object_order_depends_target_ymfm: phony || src/sound/ymfm/CMakeFiles/ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_misc.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_misc.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_misc.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opl.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opl.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opl.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opm.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opm.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opm.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opn.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opn.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opn.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opq.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opq.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opq.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opz.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opz.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opz.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_pcm.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_pcm.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_pcm.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_adpcm.cpp.obj: CXX_COMPILER__ymfm_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_adpcm.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_adpcm.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target ymfm + + +############################################# +# Link the static library src\sound\ymfm\libymfm.a + +build src/sound/ymfm/libymfm.a: CXX_STATIC_LIBRARY_LINKER__ymfm_Release src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_misc.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opl.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opm.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opn.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opq.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opz.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_pcm.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_adpcm.cpp.obj + LANGUAGE_COMPILE_FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\sound\ymfm\libymfm.a + TARGET_PDB = ymfm.a.dbg + + +############################################# +# Utility command for package + +build src/sound/ymfm/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/ymfm/package: phony src/sound/ymfm/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/ymfm/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/ymfm/package_source: phony src/sound/ymfm/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/ymfm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\ymfm && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/ymfm/edit_cache: phony src/sound/ymfm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/ymfm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\ymfm && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/ymfm/rebuild_cache: phony src/sound/ymfm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/ymfm/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/ymfm/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\ymfm && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/ymfm/install: phony src/sound/ymfm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/ymfm/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\ymfm && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/ymfm/install/local: phony src/sound/ymfm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/ymfm/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\ymfm && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/ymfm/install/strip: phony src/sound/ymfm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target resid-fp + + +############################################# +# Order-only phony target for resid-fp + +build cmake_object_order_depends_target_resid-fp: phony || src/sound/resid-fp/CMakeFiles/resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve-sse.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/convolve-sse.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\convolve-sse.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/convolve.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\convolve.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/envelope.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/envelope.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\envelope.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/extfilt.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/extfilt.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\extfilt.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/filter.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/filter.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\filter.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/pot.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/pot.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\pot.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/sid.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/sid.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\sid.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/voice.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/voice.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\voice.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581_PST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581_PST.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PS_.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581_PS_.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581_PS_.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_P_T.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581_P_T.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581_P_T.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581__ST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581__ST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581__ST.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580_PST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580_PST.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PS_.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580_PS_.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580_PS_.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_P_T.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580_P_T.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580_P_T.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580__ST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580__ST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580__ST.cc.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target resid-fp + + +############################################# +# Link the static library src\sound\resid-fp\libresid-fp.a + +build src/sound/resid-fp/libresid-fp.a: CXX_STATIC_LIBRARY_LINKER__resid-fp_Release src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve-sse.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/envelope.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/extfilt.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/filter.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/pot.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/sid.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/voice.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PST.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PS_.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_P_T.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581__ST.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PST.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PS_.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_P_T.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580__ST.cc.obj + LANGUAGE_COMPILE_FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\sound\resid-fp\libresid-fp.a + TARGET_PDB = resid-fp.a.dbg + + +############################################# +# Utility command for package + +build src/sound/resid-fp/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/resid-fp/package: phony src/sound/resid-fp/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/resid-fp/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/resid-fp/package_source: phony src/sound/resid-fp/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/resid-fp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\resid-fp && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/resid-fp/edit_cache: phony src/sound/resid-fp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/resid-fp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\resid-fp && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/resid-fp/rebuild_cache: phony src/sound/resid-fp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/resid-fp/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/resid-fp/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\resid-fp && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/resid-fp/install: phony src/sound/resid-fp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/resid-fp/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\resid-fp && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/resid-fp/install/local: phony src/sound/resid-fp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/resid-fp/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\sound\resid-fp && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/resid-fp/install/strip: phony src/sound/resid-fp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target vid + + +############################################# +# Order-only phony target for vid + +build cmake_object_order_depends_target_vid: phony || src/video/CMakeFiles/vid.dir + +build src/video/CMakeFiles/vid.dir/agpgart.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/agpgart.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\agpgart.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/video.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/video.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\video.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_table.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_table.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_table.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_cga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_cga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_cga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_cga_comp.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_cga_comp.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_compaq_cga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_compaq_cga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_mda.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_mda.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_mda.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_hercules.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_hercules.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_hercules.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_herculesplus.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_herculesplus.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_incolor.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_incolor.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_incolor.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_colorplus.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_colorplus.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_genius.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_genius.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_genius.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_pgc.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_pgc.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_pgc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_im1024.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_im1024.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_im1024.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_sigma.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sigma.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sigma.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_wy700.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_wy700.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_wy700.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ega.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ega.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ega.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ega_render.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ega_render.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_svga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_svga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_svga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_8514a.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_8514a.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_8514a.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_svga_render.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_svga_render.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ddc.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ddc.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ddc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_vga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_vga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_vga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati_eeprom.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati_eeprom.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati18800.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati18800.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati28800.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati28800.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati_mach8.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati_mach8.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati_mach64.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati_mach64.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati68875_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati68875_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati68860_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati68860_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_bt48x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_bt48x_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_av9194.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_av9194.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_av9194.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_icd2061.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_icd2061.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ics2494.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ics2494.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ics2595.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ics2595.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_cl54xx.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_cl54xx.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_et3000.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_et3000.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_et3000.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_et4000.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_et4000.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_et4000.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sc1148x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sc1148x_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sc1502x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sc1502x_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_et4000w32.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_et4000w32.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_stg_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_stg_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ht216.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ht216.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ht216.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_oak_oti.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_oak_oti.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_paradise.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_paradise.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_paradise.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_rtg310x.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_rtg310x.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_f82c425.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_f82c425.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ti_cf62011.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ti_cf62011.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_tvga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tvga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tvga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tgui9440.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tgui9440.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tkd8001_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tkd8001_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_att20c49x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_att20c49x_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_s3.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_s3.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_s3.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_s3_virge.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_s3_virge.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ibm_rgb528_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ibm_rgb528_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sdac_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sdac_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_ogc.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ogc.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ogc.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_nga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_nga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_nga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tvp3026_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tvp3026_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_att2xc498_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_att2xc498_ramdac.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_xga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_xga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_xga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + +build src/video/CMakeFiles/vid.dir/vid_mga.c.obj: C_COMPILER__vid_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_mga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_mga.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + + + +############################################# +# Object library vid + +build src/video/vid: phony src/video/CMakeFiles/vid.dir/agpgart.c.obj src/video/CMakeFiles/vid.dir/video.c.obj src/video/CMakeFiles/vid.dir/vid_table.c.obj src/video/CMakeFiles/vid.dir/vid_cga.c.obj src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj src/video/CMakeFiles/vid.dir/vid_mda.c.obj src/video/CMakeFiles/vid.dir/vid_hercules.c.obj src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj src/video/CMakeFiles/vid.dir/vid_incolor.c.obj src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj src/video/CMakeFiles/vid.dir/vid_genius.c.obj src/video/CMakeFiles/vid.dir/vid_pgc.c.obj src/video/CMakeFiles/vid.dir/vid_im1024.c.obj src/video/CMakeFiles/vid.dir/vid_sigma.c.obj src/video/CMakeFiles/vid.dir/vid_wy700.c.obj src/video/CMakeFiles/vid.dir/vid_ega.c.obj src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj src/video/CMakeFiles/vid.dir/vid_svga.c.obj src/video/CMakeFiles/vid.dir/vid_8514a.c.obj src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj src/video/CMakeFiles/vid.dir/vid_ddc.c.obj src/video/CMakeFiles/vid.dir/vid_vga.c.obj src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_av9194.c.obj src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj src/video/CMakeFiles/vid.dir/vid_et3000.c.obj src/video/CMakeFiles/vid.dir/vid_et4000.c.obj src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ht216.c.obj src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj src/video/CMakeFiles/vid.dir/vid_paradise.c.obj src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj src/video/CMakeFiles/vid.dir/vid_tvga.c.obj src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_s3.c.obj src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ogc.c.obj src/video/CMakeFiles/vid.dir/vid_nga.c.obj src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_xga.c.obj src/video/CMakeFiles/vid.dir/vid_mga.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target voodoo + + +############################################# +# Order-only phony target for voodoo + +build cmake_object_order_depends_target_voodoo: phony || src/video/CMakeFiles/voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_banshee.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_banshee.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_banshee_blitter.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_banshee_blitter.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_blitter.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_blitter.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_display.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_display.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_fb.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_fb.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_fifo.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_fifo.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_reg.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_reg.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_render.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_render.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_setup.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_setup.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj: C_COMPILER__voodoo_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_texture.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_texture.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + + + +############################################# +# Object library voodoo + +build src/video/voodoo: phony src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj + + +############################################# +# Utility command for package + +build src/video/CMakeFiles/package.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/video/package: phony src/video/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/video/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/video/package_source: phony src/video/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/video/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\video && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/video/edit_cache: phony src/video/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/video/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\video && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/video/rebuild_cache: phony src/video/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/video/list_install_components: phony + + +############################################# +# Utility command for install + +build src/video/CMakeFiles/install.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\video && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/video/install: phony src/video/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/video/CMakeFiles/install/local.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\video && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/video/install/local: phony src/video/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/video/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\video && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/video/install/strip: phony src/video/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target plat + + +############################################# +# Order-only phony target for plat + +build cmake_object_order_depends_target_plat: phony || src/qt/plat_autogen src/qt/plat_autogen/mocs_compilation.cpp src/qt/plat_autogen/timestamp src/qt/plat_autogen_timestamp_deps + +build src/qt/CMakeFiles/plat.dir/plat_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\plat_autogen\mocs_compilation.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\plat_autogen + +build src/qt/CMakeFiles/plat.dir/qt.c.obj: C_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\qt.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + +build src/qt/CMakeFiles/plat.dir/qt_main.cpp.obj: CXX_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_main.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\qt_main.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + +build src/qt/CMakeFiles/plat.dir/qt_platform.cpp.obj: CXX_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_platform.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\qt_platform.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + +build src/qt/CMakeFiles/plat.dir/win_dynld.c.obj: C_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/win_dynld.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\win_dynld.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + +build src/qt/CMakeFiles/plat.dir/win_joystick_rawinput.c.obj: C_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/win_joystick_rawinput.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\win_joystick_rawinput.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + +build src/qt/CMakeFiles/plat.dir/__/win/win_serial_passthrough.c.obj: C_COMPILER__plat_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/win/win_serial_passthrough.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\__\win\win_serial_passthrough.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\__\win + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Widgets + +build src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp.obj: CXX_COMPILER__plat_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Network\Qt5Network_QGenericEnginePlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Network + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target plat + + +############################################# +# Link the static library src\qt\libplat.a + +build src/qt/libplat.a: CXX_STATIC_LIBRARY_LINKER__plat_Release src/qt/CMakeFiles/plat.dir/plat_autogen/mocs_compilation.cpp.obj src/qt/CMakeFiles/plat.dir/qt.c.obj src/qt/CMakeFiles/plat.dir/qt_main.cpp.obj src/qt/CMakeFiles/plat.dir/qt_platform.cpp.obj src/qt/CMakeFiles/plat.dir/win_dynld.c.obj src/qt/CMakeFiles/plat.dir/win_joystick_rawinput.c.obj src/qt/CMakeFiles/plat.dir/__/win/win_serial_passthrough.c.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj src/qt/CMakeFiles/plat.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp.obj || src/qt/plat_autogen src/qt/plat_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\qt\libplat.a + TARGET_PDB = plat.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target ui + + +############################################# +# Order-only phony target for ui + +build cmake_object_order_depends_target_ui: phony || src/qt/86box_ca-ES.qm src/qt/86box_cs-CZ.qm src/qt/86box_de-DE.qm src/qt/86box_en-GB.qm src/qt/86box_en-US.qm src/qt/86box_es-ES.qm src/qt/86box_fi-FI.qm src/qt/86box_fr-FR.qm src/qt/86box_hr-HR.qm src/qt/86box_hu-HU.qm src/qt/86box_it-IT.qm src/qt/86box_ja-JP.qm src/qt/86box_ko-KR.qm src/qt/86box_pl-PL.qm src/qt/86box_pt-BR.qm src/qt/86box_pt-PT.qm src/qt/86box_ru-RU.qm src/qt/86box_sk-SK.qm src/qt/86box_sl-SI.qm src/qt/86box_tr-TR.qm src/qt/86box_uk-UA.qm src/qt/86box_zh-CN.qm src/qt/86box_zh-TW.qm src/qt/ui_autogen src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp src/qt/ui_autogen/mocs_compilation.cpp src/qt/ui_autogen/timestamp src/qt/ui_autogen_timestamp_deps + +build src/qt/CMakeFiles/ui.dir/ui_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\ui_autogen\mocs_compilation.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\ui_autogen + +build src/qt/CMakeFiles/ui.dir/qt_ui.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_ui.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_ui.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_cdrom.c.obj: C_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_cdrom.c || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_cdrom.c.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_mainwindow.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mainwindow.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_machinestatus.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_machinestatus.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_mediamenu.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mediamenu.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_rendererstack.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_rendererstack.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_renderercommon.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_renderercommon.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_softwarerenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_softwarerenderer.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_hardwarerenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_hardwarerenderer.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_openglrenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_openglrenderer.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_opengloptions.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_opengloptions.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_opengloptionsdialog.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_opengloptionsdialog.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settings.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settings.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsmachine.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsmachine.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsdisplay.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsdisplay.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsinput.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsinput.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingssound.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingssound.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsnetwork.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsnetwork.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsports.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsports.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsstoragecontrollers.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsstoragecontrollers.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsharddisks.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsharddisks.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsfloppycdrom.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsfloppycdrom.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsotherremovable.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsotherremovable.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settingsotherperipherals.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsotherperipherals.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_settings_bus_tracking.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings_bus_tracking.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settings_bus_tracking.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_deviceconfig.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_deviceconfig.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_joystickconfiguration.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_joystickconfiguration.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_filefield.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_filefield.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_newfloppydialog.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_newfloppydialog.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_harddiskdialog.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_harddiskdialog.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_harddrive_common.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddrive_common.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_harddrive_common.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_models_common.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_models_common.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_models_common.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_specifydimensions.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_specifydimensions.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_soundgain.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_soundgain.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_styleoverride.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_styleoverride.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_styleoverride.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_progsettings.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_progsettings.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_util.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_util.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_util.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_unixmanagerfilter.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_unixmanagerfilter.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_vulkanwindowrenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_vulkanwindowrenderer.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_vulkanrenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_vulkanrenderer.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_mcadevicelist.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mcadevicelist.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_mediahistorymanager.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mediahistorymanager.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_d3d9renderer.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_d3d9renderer.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_winrawinputfilter.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_winrawinputfilter.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/qt_winmanagerfilter.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_winmanagerfilter.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + +build src/qt/CMakeFiles/ui.dir/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\ui_autogen\VNU7RW3YIC\qrc_qt_resources.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\ui_autogen\VNU7RW3YIC + +build src/qt/CMakeFiles/ui.dir/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp.obj: CXX_COMPILER__ui_unscanned_Release K$:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\ui_autogen\EJRQKI7XPS\qrc_qt_translations.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\ui_autogen\EJRQKI7XPS + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QGifPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QICNSPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QICOPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QJpegPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QSvgIconPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QSvgPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QTgaPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QTiffPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QWbmpPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QWebpPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Gui + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Widgets\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Widgets + +build src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp.obj: CXX_COMPILER__ui_unscanned_Release C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Network\Qt5Network_QGenericEnginePlugin_Import.cpp.obj.d + FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\C_\msys64\mingw32\qt5-static\lib\cmake\Qt5Network + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target ui + + +############################################# +# Link the static library src\qt\libui.a + +build src/qt/libui.a: CXX_STATIC_LIBRARY_LINKER__ui_Release src/qt/CMakeFiles/ui.dir/ui_autogen/mocs_compilation.cpp.obj src/qt/CMakeFiles/ui.dir/qt_ui.cpp.obj src/qt/CMakeFiles/ui.dir/qt_cdrom.c.obj src/qt/CMakeFiles/ui.dir/qt_mainwindow.cpp.obj src/qt/CMakeFiles/ui.dir/qt_machinestatus.cpp.obj src/qt/CMakeFiles/ui.dir/qt_mediamenu.cpp.obj src/qt/CMakeFiles/ui.dir/qt_rendererstack.cpp.obj src/qt/CMakeFiles/ui.dir/qt_renderercommon.cpp.obj src/qt/CMakeFiles/ui.dir/qt_softwarerenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_hardwarerenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_openglrenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_opengloptions.cpp.obj src/qt/CMakeFiles/ui.dir/qt_opengloptionsdialog.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settings.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsmachine.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsdisplay.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsinput.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingssound.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsnetwork.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsports.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsstoragecontrollers.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsharddisks.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsfloppycdrom.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsotherremovable.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsotherperipherals.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settings_bus_tracking.cpp.obj src/qt/CMakeFiles/ui.dir/qt_deviceconfig.cpp.obj src/qt/CMakeFiles/ui.dir/qt_joystickconfiguration.cpp.obj src/qt/CMakeFiles/ui.dir/qt_filefield.cpp.obj src/qt/CMakeFiles/ui.dir/qt_newfloppydialog.cpp.obj src/qt/CMakeFiles/ui.dir/qt_harddiskdialog.cpp.obj src/qt/CMakeFiles/ui.dir/qt_harddrive_common.cpp.obj src/qt/CMakeFiles/ui.dir/qt_models_common.cpp.obj src/qt/CMakeFiles/ui.dir/qt_specifydimensions.cpp.obj src/qt/CMakeFiles/ui.dir/qt_soundgain.cpp.obj src/qt/CMakeFiles/ui.dir/qt_styleoverride.cpp.obj src/qt/CMakeFiles/ui.dir/qt_progsettings.cpp.obj src/qt/CMakeFiles/ui.dir/qt_util.cpp.obj src/qt/CMakeFiles/ui.dir/qt_unixmanagerfilter.cpp.obj src/qt/CMakeFiles/ui.dir/qt_vulkanwindowrenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_vulkanrenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_mcadevicelist.cpp.obj src/qt/CMakeFiles/ui.dir/qt_mediahistorymanager.cpp.obj src/qt/CMakeFiles/ui.dir/qt_d3d9renderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_winrawinputfilter.cpp.obj src/qt/CMakeFiles/ui.dir/qt_winmanagerfilter.cpp.obj src/qt/CMakeFiles/ui.dir/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp.obj src/qt/CMakeFiles/ui.dir/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj src/qt/CMakeFiles/ui.dir/C_/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp.obj || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = src\qt\libui.a + TARGET_PDB = ui.a.dbg + + +############################################# +# Utility command for package + +build src/qt/CMakeFiles/package.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/qt/package: phony src/qt/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/qt/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build && C:\msys64\mingw32\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/qt/package_source: phony src/qt/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/qt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/qt/edit_cache: phony src/qt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/qt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/qt/rebuild_cache: phony src/qt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/qt/list_install_components: phony + + +############################################# +# Utility command for install + +build src/qt/CMakeFiles/install.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/qt/install: phony src/qt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/qt/CMakeFiles/install/local.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/qt/install/local: phony src/qt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/qt/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/qt/install/strip: phony src/qt/CMakeFiles/install/strip.util + + +############################################# +# Utility command for plat_autogen_timestamp_deps + +build src/qt/plat_autogen_timestamp_deps: phony src/qt/CMakeFiles/plat_autogen_timestamp_deps + + +############################################# +# Utility command for plat_autogen + +build src/qt/plat_autogen: phony src/qt/CMakeFiles/plat_autogen src/qt/plat_autogen/include/ui_qt_mainwindow.h src/qt/plat_autogen/include/ui_qt_rendererstack.h src/qt/plat_autogen/include/ui_qt_opengloptionsdialog.h src/qt/plat_autogen/include/ui_qt_settings.h src/qt/plat_autogen/include/ui_qt_settingsmachine.h src/qt/plat_autogen/include/ui_qt_settingsdisplay.h src/qt/plat_autogen/include/ui_qt_settingsinput.h src/qt/plat_autogen/include/ui_qt_settingssound.h src/qt/plat_autogen/include/ui_qt_settingsnetwork.h src/qt/plat_autogen/include/ui_qt_settingsports.h src/qt/plat_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/plat_autogen/include/ui_qt_settingsharddisks.h src/qt/plat_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/plat_autogen/include/ui_qt_settingsotherremovable.h src/qt/plat_autogen/include/ui_qt_settingsotherperipherals.h src/qt/plat_autogen/include/ui_qt_deviceconfig.h src/qt/plat_autogen/include/ui_qt_joystickconfiguration.h src/qt/plat_autogen/include/ui_qt_filefield.h src/qt/plat_autogen/include/ui_qt_newfloppydialog.h src/qt/plat_autogen/include/ui_qt_harddiskdialog.h src/qt/plat_autogen/include/ui_qt_specifydimensions.h src/qt/plat_autogen/include/ui_qt_soundgain.h src/qt/plat_autogen/include/ui_qt_progsettings.h src/qt/plat_autogen/include/ui_qt_mcadevicelist.h src/qt/plat_autogen/timestamp src/qt/plat_autogen/mocs_compilation.cpp src/qt/plat_autogen_timestamp_deps + + +############################################# +# Utility command for ui_autogen_timestamp_deps + +build src/qt/ui_autogen_timestamp_deps: phony src/qt/CMakeFiles/ui_autogen_timestamp_deps + + +############################################# +# Utility command for ui_autogen + +build src/qt/ui_autogen: phony src/qt/CMakeFiles/ui_autogen src/qt/ui_autogen/include/ui_qt_mainwindow.h src/qt/ui_autogen/include/ui_qt_rendererstack.h src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h src/qt/ui_autogen/include/ui_qt_settings.h src/qt/ui_autogen/include/ui_qt_settingsmachine.h src/qt/ui_autogen/include/ui_qt_settingsdisplay.h src/qt/ui_autogen/include/ui_qt_settingsinput.h src/qt/ui_autogen/include/ui_qt_settingssound.h src/qt/ui_autogen/include/ui_qt_settingsnetwork.h src/qt/ui_autogen/include/ui_qt_settingsports.h src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/ui_autogen/include/ui_qt_settingsharddisks.h src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h src/qt/ui_autogen/include/ui_qt_deviceconfig.h src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h src/qt/ui_autogen/include/ui_qt_filefield.h src/qt/ui_autogen/include/ui_qt_newfloppydialog.h src/qt/ui_autogen/include/ui_qt_harddiskdialog.h src/qt/ui_autogen/include/ui_qt_specifydimensions.h src/qt/ui_autogen/include/ui_qt_soundgain.h src/qt/ui_autogen/include/ui_qt_progsettings.h src/qt/ui_autogen/include/ui_qt_mcadevicelist.h src/qt/ui_autogen/timestamp src/qt/ui_autogen/mocs_compilation.cpp src/qt/ui_autogen_timestamp_deps + + +############################################# +# Custom command for src\qt\plat_autogen\timestamp + +build src/qt/plat_autogen/timestamp src/qt/plat_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}src/qt/plat_autogen/timestamp ${cmake_ninja_workdir}src/qt/plat_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/msys64/mingw32/qt5-static/bin/moc.exe C$:/msys64/mingw32/qt5-static/bin/uic.exe || src/qt/plat_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -E cmake_autogen K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/CMakeFiles/plat_autogen.dir/AutogenInfo.json Release && C:\msys64\mingw32\bin\cmake.exe -E touch K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/timestamp && C:\msys64\mingw32\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile K:/emu_dev/86Box_clean_ex_k K:/emu_dev/86Box_clean_ex_k/src/qt K:/emu_dev/86Box_clean_ex_k/src/build K:/emu_dev/86Box_clean_ex_k/src/build/src/qt K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/deps K:/emu_dev/86Box_clean_ex_k/src/build/CMakeFiles/d/7e1af0e285dcef9d3199726d4a28388972a0a7478a77ab706f476f10803ff445.d" + DESC = Automatic MOC and UIC for target plat + depfile = K:/emu_dev/86Box_clean_ex_k/src/build/CMakeFiles/d/7e1af0e285dcef9d3199726d4a28388972a0a7478a77ab706f476f10803ff445.d + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ca-ES.qm + +build src/qt/86box_ca-ES.qm | ${cmake_ninja_workdir}src/qt/86box_ca-ES.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ca-ES.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ca-ES.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ca-ES.qm" + DESC = Generating 86box_ca-ES.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_cs-CZ.qm + +build src/qt/86box_cs-CZ.qm | ${cmake_ninja_workdir}src/qt/86box_cs-CZ.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/cs-CZ.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/cs-CZ.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_cs-CZ.qm" + DESC = Generating 86box_cs-CZ.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_de-DE.qm + +build src/qt/86box_de-DE.qm | ${cmake_ninja_workdir}src/qt/86box_de-DE.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/de-DE.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/de-DE.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_de-DE.qm" + DESC = Generating 86box_de-DE.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_en-GB.qm + +build src/qt/86box_en-GB.qm | ${cmake_ninja_workdir}src/qt/86box_en-GB.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-GB.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-GB.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_en-GB.qm" + DESC = Generating 86box_en-GB.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_en-US.qm + +build src/qt/86box_en-US.qm | ${cmake_ninja_workdir}src/qt/86box_en-US.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-US.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-US.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_en-US.qm" + DESC = Generating 86box_en-US.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_es-ES.qm + +build src/qt/86box_es-ES.qm | ${cmake_ninja_workdir}src/qt/86box_es-ES.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/es-ES.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/es-ES.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_es-ES.qm" + DESC = Generating 86box_es-ES.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_fi-FI.qm + +build src/qt/86box_fi-FI.qm | ${cmake_ninja_workdir}src/qt/86box_fi-FI.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/fi-FI.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/fi-FI.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_fi-FI.qm" + DESC = Generating 86box_fi-FI.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_fr-FR.qm + +build src/qt/86box_fr-FR.qm | ${cmake_ninja_workdir}src/qt/86box_fr-FR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/fr-FR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/fr-FR.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_fr-FR.qm" + DESC = Generating 86box_fr-FR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_hr-HR.qm + +build src/qt/86box_hr-HR.qm | ${cmake_ninja_workdir}src/qt/86box_hr-HR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/hr-HR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/hr-HR.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_hr-HR.qm" + DESC = Generating 86box_hr-HR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_hu-HU.qm + +build src/qt/86box_hu-HU.qm | ${cmake_ninja_workdir}src/qt/86box_hu-HU.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/hu-HU.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/hu-HU.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_hu-HU.qm" + DESC = Generating 86box_hu-HU.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_it-IT.qm + +build src/qt/86box_it-IT.qm | ${cmake_ninja_workdir}src/qt/86box_it-IT.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/it-IT.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/it-IT.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_it-IT.qm" + DESC = Generating 86box_it-IT.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ja-JP.qm + +build src/qt/86box_ja-JP.qm | ${cmake_ninja_workdir}src/qt/86box_ja-JP.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ja-JP.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ja-JP.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ja-JP.qm" + DESC = Generating 86box_ja-JP.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ko-KR.qm + +build src/qt/86box_ko-KR.qm | ${cmake_ninja_workdir}src/qt/86box_ko-KR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ko-KR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ko-KR.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ko-KR.qm" + DESC = Generating 86box_ko-KR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_pl-PL.qm + +build src/qt/86box_pl-PL.qm | ${cmake_ninja_workdir}src/qt/86box_pl-PL.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/pl-PL.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/pl-PL.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pl-PL.qm" + DESC = Generating 86box_pl-PL.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_pt-BR.qm + +build src/qt/86box_pt-BR.qm | ${cmake_ninja_workdir}src/qt/86box_pt-BR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-BR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-BR.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pt-BR.qm" + DESC = Generating 86box_pt-BR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_pt-PT.qm + +build src/qt/86box_pt-PT.qm | ${cmake_ninja_workdir}src/qt/86box_pt-PT.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-PT.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-PT.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pt-PT.qm" + DESC = Generating 86box_pt-PT.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ru-RU.qm + +build src/qt/86box_ru-RU.qm | ${cmake_ninja_workdir}src/qt/86box_ru-RU.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ru-RU.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ru-RU.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ru-RU.qm" + DESC = Generating 86box_ru-RU.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_sk-SK.qm + +build src/qt/86box_sk-SK.qm | ${cmake_ninja_workdir}src/qt/86box_sk-SK.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/sk-SK.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/sk-SK.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_sk-SK.qm" + DESC = Generating 86box_sk-SK.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_sl-SI.qm + +build src/qt/86box_sl-SI.qm | ${cmake_ninja_workdir}src/qt/86box_sl-SI.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/sl-SI.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/sl-SI.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_sl-SI.qm" + DESC = Generating 86box_sl-SI.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_tr-TR.qm + +build src/qt/86box_tr-TR.qm | ${cmake_ninja_workdir}src/qt/86box_tr-TR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/tr-TR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/tr-TR.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_tr-TR.qm" + DESC = Generating 86box_tr-TR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_uk-UA.qm + +build src/qt/86box_uk-UA.qm | ${cmake_ninja_workdir}src/qt/86box_uk-UA.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/uk-UA.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/uk-UA.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_uk-UA.qm" + DESC = Generating 86box_uk-UA.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_zh-CN.qm + +build src/qt/86box_zh-CN.qm | ${cmake_ninja_workdir}src/qt/86box_zh-CN.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-CN.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-CN.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_zh-CN.qm" + DESC = Generating 86box_zh-CN.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_zh-TW.qm + +build src/qt/86box_zh-TW.qm | ${cmake_ninja_workdir}src/qt/86box_zh-TW.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-TW.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw32\qt5-static\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-TW.po -o K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_zh-TW.qm" + DESC = Generating 86box_zh-TW.qm + restat = 1 + + +############################################# +# Custom command for src\qt\ui_autogen\timestamp + +build src/qt/ui_autogen/timestamp src/qt/ui_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}src/qt/ui_autogen/timestamp ${cmake_ninja_workdir}src/qt/ui_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/msys64/mingw32/qt5-static/bin/moc.exe C$:/msys64/mingw32/qt5-static/bin/uic.exe || src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -E cmake_autogen K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/CMakeFiles/ui_autogen.dir/AutogenInfo.json Release && C:\msys64\mingw32\bin\cmake.exe -E touch K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/timestamp && C:\msys64\mingw32\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile K:/emu_dev/86Box_clean_ex_k K:/emu_dev/86Box_clean_ex_k/src/qt K:/emu_dev/86Box_clean_ex_k/src/build K:/emu_dev/86Box_clean_ex_k/src/build/src/qt K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/deps K:/emu_dev/86Box_clean_ex_k/src/build/CMakeFiles/d/fce0e7914f31d6d447dc3cab80d57a98bc3b49bb84b6ba3f583d0a7910c067f5.d" + DESC = Automatic MOC and UIC for target ui + depfile = K:/emu_dev/86Box_clean_ex_k/src/build/CMakeFiles/d/fce0e7914f31d6d447dc3cab80d57a98bc3b49bb84b6ba3f583d0a7910c067f5.d + restat = 1 + + +############################################# +# Custom command for src\qt\ui_autogen\VNU7RW3YIC\qrc_qt_resources.cpp + +build src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp | ${cmake_ninja_workdir}src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_resources_VNU7RW3YIC_Info.json K$:/emu_dev/86Box_clean_ex_k/src/qt/texture_vert.spv K$:/emu_dev/86Box_clean_ex_k/src/qt/texture_frag.spv K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/ports.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/network_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-green.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/network.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-red.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-gray.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/sound.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/other_peripherals.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/input_devices.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/other_removable_devices.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/display.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/machine.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-yellow.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_and_cdrom_drives.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/storage_controllers.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/network_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/acpi_shutdown.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cad.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/run.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_reset.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/pause.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/settings.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cae.ico C$:/msys64/mingw32/qt5-static/bin/rcc.exe || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -E cmake_autorcc K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_resources_VNU7RW3YIC_Info.json Release" + DESC = Automatic RCC for ../qt_resources.qrc + restat = 1 + + +############################################# +# Custom command for src\qt\ui_autogen\EJRQKI7XPS\qrc_qt_translations.cpp + +build src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp | ${cmake_ninja_workdir}src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp: CUSTOM_COMMAND src/qt/qt_translations.qrc src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_translations_EJRQKI7XPS_Info.json src/qt/86box_sl-SI.qm src/qt/86box_ja-JP.qm src/qt/86box_tr-TR.qm src/qt/86box_zh-TW.qm src/qt/86box_en-GB.qm src/qt/86box_de-DE.qm src/qt/86box_zh-CN.qm src/qt/86box_fr-FR.qm src/qt/86box_en-US.qm src/qt/86box_pt-PT.qm src/qt/86box_hr-HR.qm src/qt/86box_ru-RU.qm src/qt/86box_ko-KR.qm src/qt/86box_fi-FI.qm src/qt/86box_sk-SK.qm src/qt/86box_it-IT.qm src/qt/86box_es-ES.qm src/qt/86box_cs-CZ.qm src/qt/86box_hu-HU.qm src/qt/86box_pt-BR.qm src/qt/86box_pl-PL.qm src/qt/86box_ca-ES.qm src/qt/86box_uk-UA.qm C$:/msys64/mingw32/qt5-static/bin/rcc.exe || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build\src\qt && C:\msys64\mingw32\bin\cmake.exe -E cmake_autorcc K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_translations_EJRQKI7XPS_Info.json Release" + DESC = Automatic RCC for qt_translations.qrc + restat = 1 + + +############################################# +# Phony custom command for src\qt\CMakeFiles\plat_autogen_timestamp_deps + +build src/qt/CMakeFiles/plat_autogen_timestamp_deps | ${cmake_ninja_workdir}src/qt/CMakeFiles/plat_autogen_timestamp_deps: phony C$:/msys64/mingw32/qt5-static/lib/libQt5Network.a C$:/msys64/mingw32/qt5-static/bin/uic.exe C$:/msys64/mingw32/qt5-static/lib/libQt5Widgets.a C$:/msys64/mingw32/qt5-static/lib/libQt5Gui.a C$:/msys64/mingw32/qt5-static/bin/moc.exe + + +############################################# +# Phony custom command for src\qt\CMakeFiles\plat_autogen + +build src/qt/CMakeFiles/plat_autogen src/qt/plat_autogen/include/ui_qt_mainwindow.h src/qt/plat_autogen/include/ui_qt_rendererstack.h src/qt/plat_autogen/include/ui_qt_opengloptionsdialog.h src/qt/plat_autogen/include/ui_qt_settings.h src/qt/plat_autogen/include/ui_qt_settingsmachine.h src/qt/plat_autogen/include/ui_qt_settingsdisplay.h src/qt/plat_autogen/include/ui_qt_settingsinput.h src/qt/plat_autogen/include/ui_qt_settingssound.h src/qt/plat_autogen/include/ui_qt_settingsnetwork.h src/qt/plat_autogen/include/ui_qt_settingsports.h src/qt/plat_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/plat_autogen/include/ui_qt_settingsharddisks.h src/qt/plat_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/plat_autogen/include/ui_qt_settingsotherremovable.h src/qt/plat_autogen/include/ui_qt_settingsotherperipherals.h src/qt/plat_autogen/include/ui_qt_deviceconfig.h src/qt/plat_autogen/include/ui_qt_joystickconfiguration.h src/qt/plat_autogen/include/ui_qt_filefield.h src/qt/plat_autogen/include/ui_qt_newfloppydialog.h src/qt/plat_autogen/include/ui_qt_harddiskdialog.h src/qt/plat_autogen/include/ui_qt_specifydimensions.h src/qt/plat_autogen/include/ui_qt_soundgain.h src/qt/plat_autogen/include/ui_qt_progsettings.h src/qt/plat_autogen/include/ui_qt_mcadevicelist.h | ${cmake_ninja_workdir}src/qt/CMakeFiles/plat_autogen ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_mainwindow.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_rendererstack.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_opengloptionsdialog.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settings.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsmachine.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsdisplay.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsinput.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingssound.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsnetwork.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsports.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsstoragecontrollers.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsharddisks.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsfloppycdrom.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsotherremovable.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsotherperipherals.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_deviceconfig.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_joystickconfiguration.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_filefield.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_newfloppydialog.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_harddiskdialog.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_specifydimensions.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_soundgain.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_progsettings.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_mcadevicelist.h: phony src/qt/plat_autogen/timestamp || src/qt/plat_autogen_timestamp_deps + + +############################################# +# Phony custom command for src\qt\CMakeFiles\ui_autogen_timestamp_deps + +build src/qt/CMakeFiles/ui_autogen_timestamp_deps | ${cmake_ninja_workdir}src/qt/CMakeFiles/ui_autogen_timestamp_deps: phony C$:/msys64/mingw32/qt5-static/lib/libQt5Network.a C$:/msys64/mingw32/qt5-static/bin/uic.exe C$:/msys64/mingw32/qt5-static/lib/libQt5Widgets.a C$:/msys64/mingw32/qt5-static/lib/libQt5Gui.a C$:/msys64/mingw32/qt5-static/bin/moc.exe C$:/msys64/mingw32/qt5-static/lib/libQt5OpenGL.a + + +############################################# +# Phony custom command for src\qt\CMakeFiles\ui_autogen + +build src/qt/CMakeFiles/ui_autogen src/qt/ui_autogen/include/ui_qt_mainwindow.h src/qt/ui_autogen/include/ui_qt_rendererstack.h src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h src/qt/ui_autogen/include/ui_qt_settings.h src/qt/ui_autogen/include/ui_qt_settingsmachine.h src/qt/ui_autogen/include/ui_qt_settingsdisplay.h src/qt/ui_autogen/include/ui_qt_settingsinput.h src/qt/ui_autogen/include/ui_qt_settingssound.h src/qt/ui_autogen/include/ui_qt_settingsnetwork.h src/qt/ui_autogen/include/ui_qt_settingsports.h src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/ui_autogen/include/ui_qt_settingsharddisks.h src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h src/qt/ui_autogen/include/ui_qt_deviceconfig.h src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h src/qt/ui_autogen/include/ui_qt_filefield.h src/qt/ui_autogen/include/ui_qt_newfloppydialog.h src/qt/ui_autogen/include/ui_qt_harddiskdialog.h src/qt/ui_autogen/include/ui_qt_specifydimensions.h src/qt/ui_autogen/include/ui_qt_soundgain.h src/qt/ui_autogen/include/ui_qt_progsettings.h src/qt/ui_autogen/include/ui_qt_mcadevicelist.h | ${cmake_ninja_workdir}src/qt/CMakeFiles/ui_autogen ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_mainwindow.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_rendererstack.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settings.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsmachine.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsdisplay.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsinput.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingssound.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsnetwork.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsports.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsharddisks.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_deviceconfig.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_filefield.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_newfloppydialog.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_harddiskdialog.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_specifydimensions.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_soundgain.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_progsettings.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_mcadevicelist.h: phony src/qt/ui_autogen/timestamp || src/qt/ui_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build 86Box: phony src/86Box.exe + +build 86Box.exe: phony src/86Box.exe + +build cdrom: phony src/cdrom/cdrom + +build cgt: phony src/cpu/cgt + +build chipset: phony src/chipset/chipset + +build cpu: phony src/cpu/cpu + +build dev: phony src/device/dev + +build dynarec: phony src/codegen_new/dynarec + +build fdd: phony src/floppy/fdd + +build game: phony src/game/game + +build hdd: phony src/disk/hdd + +build libminivhd.a: phony src/disk/minivhd/libminivhd.a + +build libmt32emu.a: phony src/sound/munt/libmt32emu.a + +build libplat.a: phony src/qt/libplat.a + +build libresid-fp.a: phony src/sound/resid-fp/libresid-fp.a + +build libui.a: phony src/qt/libui.a + +build libymfm.a: phony src/sound/ymfm/libymfm.a + +build mch: phony src/machine/mch + +build mem: phony src/mem/mem + +build minivhd: phony src/disk/minivhd/libminivhd.a + +build mo: phony src/disk/mo + +build mt32emu: phony src/sound/munt/libmt32emu.a + +build net: phony src/network/net + +build plat: phony src/qt/libplat.a + +build plat_autogen: phony src/qt/plat_autogen + +build plat_autogen_timestamp_deps: phony src/qt/plat_autogen_timestamp_deps + +build print: phony src/printer/print + +build resid-fp: phony src/sound/resid-fp/libresid-fp.a + +build scsi: phony src/scsi/scsi + +build sio: phony src/sio/sio + +build snd: phony src/sound/snd + +build softfloat: phony src/cpu/softfloat/softfloat + +build ui: phony src/qt/libui.a + +build ui_autogen: phony src/qt/ui_autogen + +build ui_autogen_timestamp_deps: phony src/qt/ui_autogen_timestamp_deps + +build vid: phony src/video/vid + +build voodoo: phony src/video/voodoo + +build ymfm: phony src/sound/ymfm/libymfm.a + +build zip: phony src/disk/zip + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build + +build all: phony src/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src + +build src/all: phony src/86Box.exe src/cdrom/all src/chipset/all src/cpu/all src/codegen_new/all src/device/all src/disk/all src/floppy/all src/game/all src/machine/all src/mem/all src/network/all src/printer/all src/sio/all src/scsi/all src/sound/all src/video/all src/qt/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/cdrom + +build src/cdrom/all: phony src/cdrom/cdrom + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/chipset + +build src/chipset/all: phony src/chipset/chipset + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/codegen_new + +build src/codegen_new/all: phony src/codegen_new/dynarec + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/cpu + +build src/cpu/all: phony src/cpu/cpu src/cpu/cgt src/cpu/softfloat/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/cpu/softfloat + +build src/cpu/softfloat/all: phony src/cpu/softfloat/softfloat + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/device + +build src/device/all: phony src/device/dev + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/disk + +build src/disk/all: phony src/disk/hdd src/disk/zip src/disk/mo src/disk/minivhd/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/disk/minivhd + +build src/disk/minivhd/all: phony src/disk/minivhd/libminivhd.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/floppy + +build src/floppy/all: phony src/floppy/fdd + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/game + +build src/game/all: phony src/game/game + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/machine + +build src/machine/all: phony src/machine/mch + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/mem + +build src/mem/all: phony src/mem/mem + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/network + +build src/network/all: phony src/network/net + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/printer + +build src/printer/all: phony src/printer/print + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/qt + +build src/qt/all: phony src/qt/libplat.a src/qt/libui.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/scsi + +build src/scsi/all: phony src/scsi/scsi + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/sio + +build src/sio/all: phony src/sio/sio + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/sound + +build src/sound/all: phony src/sound/snd src/sound/munt/all src/sound/ymfm/all src/sound/resid-fp/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/munt + +build src/sound/munt/all: phony src/sound/munt/libmt32emu.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/resid-fp + +build src/sound/resid-fp/all: phony src/sound/resid-fp/libresid-fp.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/ymfm + +build src/sound/ymfm/all: phony src/sound/ymfm/libymfm.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build/src/video + +build src/video/all: phony src/video/vid src/video/voodoo + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/msys64/mingw32/lib/cmake/SDL2/SDL2Config.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2ConfigVersion.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2Targets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2Targets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2mainTargets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2mainTargets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2staticTargets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2staticTargets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2testTargets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2testTargets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/sdlfind.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreMacros.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QDebugMessageServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlPreviewServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQuickProfilerAdapterFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardHangulPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardOpenWnnPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardPinyinPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardTCImePlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardThaiPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5Config.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ModuleLocation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeCInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeCXXInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeCommonLanguageInclude.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeDependentOption.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeGenericSystem.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeInitializeConfigs.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeLanguageInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeParseArguments.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeRCInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeSystemSpecificInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake C$:/msys64/mingw32/share/cmake/Modules/CPack.cmake C$:/msys64/mingw32/share/cmake/Modules/CPackComponent.cmake C$:/msys64/mingw32/share/cmake/Modules/CheckCSourceCompiles.cmake C$:/msys64/mingw32/share/cmake/Modules/CheckIncludeFile.cmake C$:/msys64/mingw32/share/cmake/Modules/CheckLibraryExists.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/GNU-C.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/GNU-CXX.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/GNU.cmake C$:/msys64/mingw32/share/cmake/Modules/FeatureSummary.cmake C$:/msys64/mingw32/share/cmake/Modules/FindFreetype.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPNG.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPackageHandleStandardArgs.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPackageMessage.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPkgConfig.cmake C$:/msys64/mingw32/share/cmake/Modules/FindThreads.cmake C$:/msys64/mingw32/share/cmake/Modules/FindZLIB.cmake C$:/msys64/mingw32/share/cmake/Modules/Internal/CheckSourceCompiles.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-C.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-Initialize.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-windres.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/WindowsPaths.cmake C$:/msys64/mingw32/share/cmake/Modules/SelectLibraryConfigurations.cmake C$:/msys64/mingw32/share/cmake/Templates/CPackConfig.cmake.in CMakeCache.txt CMakeFiles/3.27.6/CMakeCCompiler.cmake CMakeFiles/3.27.6/CMakeCXXCompiler.cmake CMakeFiles/3.27.6/CMakeRCCompiler.cmake CMakeFiles/3.27.6/CMakeSystem.cmake K$:/emu_dev/86Box_clean_ex_k/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc-i686.cmake K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc.cmake K$:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/arch_detect.c K$:/emu_dev/86Box_clean_ex_k/src/cdrom/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/chipset/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/device/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/floppy/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/game/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/include/86box/version.h.in K$:/emu_dev/86Box_clean_ex_k/src/machine/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/mem/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/network/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/printer/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc K$:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc K$:/emu_dev/86Box_clean_ex_k/src/scsi/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sio/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/video/CMakeLists.txt src/qt/qt_translations.qrc + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/msys64/mingw32/lib/cmake/SDL2/SDL2Config.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2ConfigVersion.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2Targets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2Targets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2mainTargets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2mainTargets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2staticTargets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2staticTargets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2testTargets-release.cmake C$:/msys64/mingw32/lib/cmake/SDL2/SDL2testTargets.cmake C$:/msys64/mingw32/lib/cmake/SDL2/sdlfind.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreMacros.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QDebugMessageServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlPreviewServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQuickProfilerAdapterFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardHangulPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardOpenWnnPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardPinyinPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardTCImePlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardThaiPlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfig.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5Config.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ConfigVersion.cmake C$:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ModuleLocation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeCInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeCXXInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeCommonLanguageInclude.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeDependentOption.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeGenericSystem.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeInitializeConfigs.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeLanguageInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeParseArguments.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeRCInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeSystemSpecificInformation.cmake C$:/msys64/mingw32/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake C$:/msys64/mingw32/share/cmake/Modules/CPack.cmake C$:/msys64/mingw32/share/cmake/Modules/CPackComponent.cmake C$:/msys64/mingw32/share/cmake/Modules/CheckCSourceCompiles.cmake C$:/msys64/mingw32/share/cmake/Modules/CheckIncludeFile.cmake C$:/msys64/mingw32/share/cmake/Modules/CheckLibraryExists.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/GNU-C.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/GNU-CXX.cmake C$:/msys64/mingw32/share/cmake/Modules/Compiler/GNU.cmake C$:/msys64/mingw32/share/cmake/Modules/FeatureSummary.cmake C$:/msys64/mingw32/share/cmake/Modules/FindFreetype.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPNG.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPackageHandleStandardArgs.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPackageMessage.cmake C$:/msys64/mingw32/share/cmake/Modules/FindPkgConfig.cmake C$:/msys64/mingw32/share/cmake/Modules/FindThreads.cmake C$:/msys64/mingw32/share/cmake/Modules/FindZLIB.cmake C$:/msys64/mingw32/share/cmake/Modules/Internal/CheckSourceCompiles.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-C.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-GNU.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-Initialize.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows-windres.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/Windows.cmake C$:/msys64/mingw32/share/cmake/Modules/Platform/WindowsPaths.cmake C$:/msys64/mingw32/share/cmake/Modules/SelectLibraryConfigurations.cmake C$:/msys64/mingw32/share/cmake/Templates/CPackConfig.cmake.in CMakeCache.txt CMakeFiles/3.27.6/CMakeCCompiler.cmake CMakeFiles/3.27.6/CMakeCXXCompiler.cmake CMakeFiles/3.27.6/CMakeRCCompiler.cmake CMakeFiles/3.27.6/CMakeSystem.cmake K$:/emu_dev/86Box_clean_ex_k/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc-i686.cmake K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc.cmake K$:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/arch_detect.c K$:/emu_dev/86Box_clean_ex_k/src/cdrom/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/chipset/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/device/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/floppy/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/game/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/include/86box/version.h.in K$:/emu_dev/86Box_clean_ex_k/src/machine/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/mem/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/network/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/printer/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc K$:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc K$:/emu_dev/86Box_clean_ex_k/src/scsi/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sio/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/video/CMakeLists.txt src/qt/qt_translations.qrc: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Release + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/src/build/cmake_install.cmake b/src/build/cmake_install.cmake new file mode 100644 index 000000000..f063706aa --- /dev/null +++ b/src/build/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "K:/emu_dev/86Box_clean_ex_k/src/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/src/build/compile_commands.json b/src/build/compile_commands.json new file mode 100644 index 000000000..77550adb4 --- /dev/null +++ b/src/build/compile_commands.json @@ -0,0 +1,3452 @@ +[ +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\86box.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\86box.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\86box.c", + "output": "src\\CMakeFiles\\86Box.dir\\86box.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\config.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\config.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\config.c", + "output": "src\\CMakeFiles\\86Box.dir\\config.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\log.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\log.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\log.c", + "output": "src\\CMakeFiles\\86Box.dir\\log.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\random.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\random.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\random.c", + "output": "src\\CMakeFiles\\86Box.dir\\random.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\timer.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\timer.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\timer.c", + "output": "src\\CMakeFiles\\86Box.dir\\timer.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\io.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\io.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\io.c", + "output": "src\\CMakeFiles\\86Box.dir\\io.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\acpi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\acpi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\acpi.c", + "output": "src\\CMakeFiles\\86Box.dir\\acpi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\apm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\apm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\apm.c", + "output": "src\\CMakeFiles\\86Box.dir\\apm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\dma.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\dma.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\dma.c", + "output": "src\\CMakeFiles\\86Box.dir\\dma.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\ddma.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ddma.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ddma.c", + "output": "src\\CMakeFiles\\86Box.dir\\ddma.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nmi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nmi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nmi.c", + "output": "src\\CMakeFiles\\86Box.dir\\nmi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pic.c", + "output": "src\\CMakeFiles\\86Box.dir\\pic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pit.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pit.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pit.c", + "output": "src\\CMakeFiles\\86Box.dir\\pit.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pit_fast.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pit_fast.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pit_fast.c", + "output": "src\\CMakeFiles\\86Box.dir\\pit_fast.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\port_6x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\port_6x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\port_6x.c", + "output": "src\\CMakeFiles\\86Box.dir\\port_6x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\port_92.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\port_92.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\port_92.c", + "output": "src\\CMakeFiles\\86Box.dir\\port_92.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\ppi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ppi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ppi.c", + "output": "src\\CMakeFiles\\86Box.dir\\ppi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pci.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pci.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pci.c", + "output": "src\\CMakeFiles\\86Box.dir\\pci.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\mca.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mca.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mca.c", + "output": "src\\CMakeFiles\\86Box.dir\\mca.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\usb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\usb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\usb.c", + "output": "src\\CMakeFiles\\86Box.dir\\usb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\fifo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo.c", + "output": "src\\CMakeFiles\\86Box.dir\\fifo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\fifo8.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo8.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo8.c", + "output": "src\\CMakeFiles\\86Box.dir\\fifo8.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\device.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device.c", + "output": "src\\CMakeFiles\\86Box.dir\\device.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nvr.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr.c", + "output": "src\\CMakeFiles\\86Box.dir\\nvr.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nvr_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_at.c", + "output": "src\\CMakeFiles\\86Box.dir\\nvr_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nvr_ps2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_ps2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_ps2.c", + "output": "src\\CMakeFiles\\86Box.dir\\nvr_ps2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\machine_status.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine_status.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine_status.c", + "output": "src\\CMakeFiles\\86Box.dir\\machine_status.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\ini.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ini.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ini.c", + "output": "src\\CMakeFiles\\86Box.dir\\ini.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\thread.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\thread.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\thread.cpp", + "output": "src\\CMakeFiles\\86Box.dir\\thread.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/include/freetype2 -isystem C:/msys64/mingw32/include/SDL2 -isystem C:/msys64/mingw32/include/slirp -isystem C:/msys64/mingw32/include/glib-2.0 -isystem C:/msys64/mingw32/lib/glib-2.0/include -isystem C:/msys64/mingw32/include/rtmidi -isystem C:/msys64/mingw32/include/opus -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\discord.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\discord.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\discord.c", + "output": "src\\CMakeFiles\\86Box.dir\\discord.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\windres.exe -O coff -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -I K:/emu_dev/86Box_clean_ex_k/src/build/src/include -I K:/emu_dev/86Box_clean_ex_k/src/include -I K:/emu_dev/86Box_clean_ex_k/src/cpu -I K:/emu_dev/86Box_clean_ex_k/src/codegen_new -I C:/msys64/mingw32/include/freetype2 -I C:/msys64/mingw32/include -I C:/msys64/mingw32/include/SDL2 -I C:/msys64/mingw32/include/slirp -I C:/msys64/mingw32/include/glib-2.0 -I C:/msys64/mingw32/lib/glib-2.0/include -I C:/msys64/mingw32/include/rtmidi -I C:/msys64/mingw32/include/opus -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\86Box-qt.rc src\\CMakeFiles\\86Box.dir\\win\\86Box-qt.rc.obj", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\86Box-qt.rc", + "output": "src\\CMakeFiles\\86Box.dir\\win\\86Box-qt.rc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_backend.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_backend.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_backend.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_backend.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_viso.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_viso.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_viso.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_viso.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_mitsumi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_mitsumi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_mitsumi.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_mitsumi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\82c100.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\82c100.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\82c100.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\82c100.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\acc2168.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\acc2168.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\acc2168.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\acc2168.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\cs8230.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs8230.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs8230.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\cs8230.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1429.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1429.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1429.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1429.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1435.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1435.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1435.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1435.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1489.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1489.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1489.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1489.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1531.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1531.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1531.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1531.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1541.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1541.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1541.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1541.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1543.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1543.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1543.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1543.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1621.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1621.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1621.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1621.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali6117.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali6117.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali6117.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali6117.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\headland.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\headland.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\headland.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\headland.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ims8848.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ims8848.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ims8848.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ims8848.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_82335.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_82335.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_82335.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_82335.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\compaq_386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\compaq_386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\compaq_386.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\compaq_386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\contaq_82c59x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\contaq_82c59x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\contaq_82c59x.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\contaq_82c59x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\cs4031.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs4031.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs4031.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\cs4031.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_420ex.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_420ex.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_420ex.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_420ex.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_4x0.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_4x0.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_4x0.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_4x0.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_i450kx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_i450kx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_i450kx.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_i450kx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_sio.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_sio.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_sio.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_sio.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_piix.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_piix.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_piix.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_piix.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\__\\ioapic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ioapic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ioapic.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\__\\ioapic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\neat.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\neat.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\neat.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\neat.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti283.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti283.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti283.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti283.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti291.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti291.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti291.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti291.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti391.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti391.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti391.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti391.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti495.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti495.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti495.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti495.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti602.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti602.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti602.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti602.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti822.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti822.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti822.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti822.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti895.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti895.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti895.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti895.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti5x7.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti5x7.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti5x7.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti5x7.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\scamp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scamp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scamp.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\scamp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\scat.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scat.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scat.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\scat.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c310.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c310.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c310.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c310.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c4xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c4xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c4xx.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c4xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c496.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c496.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c496.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c496.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c50x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c50x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c50x.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c50x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_5511.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5511.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5511.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_5511.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_5571.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5571.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5571.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_5571.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c49x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c49x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c49x.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c49x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c505.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c505.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c505.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c505.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\gc100.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\gc100.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\gc100.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\gc100.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\stpc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\stpc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\stpc.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\stpc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\umc_8886.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_8886.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_8886.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\umc_8886.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\umc_hb4.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_hb4.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_hb4.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\umc_hb4.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_apollo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_apollo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_apollo.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_apollo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_pipc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_pipc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_pipc.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_pipc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\vl82c480.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\vl82c480.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\vl82c480.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\vl82c480.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\wd76c10.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\wd76c10.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\wd76c10.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\wd76c10.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\olivetti_eva.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\olivetti_eva.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\olivetti_eva.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\olivetti_eva.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\cpu.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\cpu.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\cpu_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu_table.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\cpu_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\fpu.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\fpu.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\fpu.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\fpu.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\808x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\808x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\808x.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\808x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_common.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86_ops_mmx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86_ops_mmx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86_ops_mmx.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86_ops_mmx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_common.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86seg.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86seg.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_2386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_2386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_2386.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_2386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x87.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x87.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x87_timings.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87_timings.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87_timings.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x87_timings.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\8080.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\8080.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\8080.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\8080.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec_ops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec_ops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec_ops.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec_ops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_486.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_486.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_486.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_486.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_686.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_686.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_686.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_686.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_common.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_k6.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_k6.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_k6.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_k6.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_pentium.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_pentium.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_pentium.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_pentium.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_p6.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_p6.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_p6.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_p6.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip2.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\f2xm1.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\f2xm1.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\f2xm1.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\f2xm1.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fpatan.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fpatan.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fpatan.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fpatan.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fprem.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fprem.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fprem.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fprem.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fsincos.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fsincos.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fsincos.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fsincos.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fyl2x.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fyl2x.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fyl2x.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fyl2x.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat_poly.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat_poly.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat_poly.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat_poly.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat16.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat16.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat16.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat16.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-muladd.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-muladd.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-muladd.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-muladd.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-round-pack.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-round-pack.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-round-pack.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-round-pack.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-specialize.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-specialize.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-specialize.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-specialize.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloatx80.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloatx80.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloatx80.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloatx80.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_accumulate.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_accumulate.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_accumulate.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_accumulate.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_allocator.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_allocator.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_allocator.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_allocator.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_block.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_block.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_block.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_block.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ir.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ir.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ir.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ir.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_3dnow.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_3dnow.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_3dnow.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_3dnow.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_branch.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_branch.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_branch.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_branch.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_arith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_arith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_arith.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_arith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_arith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_arith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_arith.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_arith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_constant.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_constant.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_constant.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_constant.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_loadstore.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_loadstore.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_loadstore.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_loadstore.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_misc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_misc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_misc.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_misc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_helpers.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_helpers.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_helpers.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_helpers.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_jump.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_jump.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_jump.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_jump.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_logic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_logic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_logic.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_logic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_misc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_misc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_misc.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_misc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_arith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_arith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_arith.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_arith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_cmp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_cmp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_cmp.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_cmp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_loadstore.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_loadstore.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_loadstore.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_loadstore.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_logic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_logic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_logic.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_logic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_pack.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_pack.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_pack.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_pack.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_shift.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_shift.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_shift.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_shift.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mov.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mov.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mov.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mov.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_shift.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_shift.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_shift.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_shift.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_stack.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_stack.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_stack.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_stack.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_reg.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_reg.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_reg.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_reg.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_ops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_ops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_ops.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_ops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_ops_fpu.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_ops_fpu.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_ops_fpu.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_ops_fpu.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_ops_sse.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_ops_sse.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_ops_sse.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_ops_sse.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_uops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_uops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86_uops.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86_uops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\bugger.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\bugger.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\bugger.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\bugger.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\cassette.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cassette.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cassette.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\cassette.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\cartridge.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cartridge.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cartridge.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\cartridge.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hasp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hasp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hasp.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hasp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_lm75.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm75.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm75.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_lm75.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_lm78.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm78.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm78.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_lm78.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_gl518sm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_gl518sm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_gl518sm.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_gl518sm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_vt82c686.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_vt82c686.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_vt82c686.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_vt82c686.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\ibm_5161.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\ibm_5161.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\ibm_5161.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\ibm_5161.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\isamem.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isamem.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isamem.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\isamem.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\isartc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isartc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isartc.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\isartc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\__\\lpt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\lpt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\lpt.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\__\\lpt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\pci_bridge.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\pci_bridge.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\pci_bridge.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\pci_bridge.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\postcard.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\postcard.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\postcard.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\postcard.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\serial.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\serial.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\clock_ics9xxx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\clock_ics9xxx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\clock_ics9xxx.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\clock_ics9xxx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\isapnp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isapnp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isapnp.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\isapnp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\i2c.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\i2c.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\i2c_gpio.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c_gpio.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c_gpio.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\i2c_gpio.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\smbus_piix4.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_piix4.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_piix4.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\smbus_piix4.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\smbus_ali7101.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_ali7101.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_ali7101.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\smbus_ali7101.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\keyboard.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\keyboard.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\keyboard_xt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_xt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_xt.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\keyboard_xt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\kbc_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\kbc_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\kbc_at_dev.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at_dev.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at_dev.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\kbc_at_dev.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\keyboard_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_at.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\keyboard_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse_bus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_bus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_bus.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse_bus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse_serial.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_serial.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_serial.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse_serial.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse_ps2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_ps2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_ps2.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse_ps2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\phoenix_486_jumper.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\phoenix_486_jumper.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\phoenix_486_jumper.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\phoenix_486_jumper.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\serial_passthrough.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial_passthrough.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial_passthrough.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\serial_passthrough.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdd_image.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_image.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_image.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdd_image.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdd_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_table.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdd_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_xt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_xt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_xt.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_xt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_at.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_xta.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xta.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xta.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_xta.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_at.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_mca.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_mca.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_mca.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_mca.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_xtide.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xtide.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xtide.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_xtide.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_opti611.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_opti611.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_opti611.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_opti611.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd640.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd640.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd640.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd640.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd646.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd646.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd646.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd646.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_sff8038i.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_sff8038i.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_sff8038i.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_sff8038i.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\zip.dir\\zip.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\zip.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\zip.c", + "output": "src\\disk\\CMakeFiles\\zip.dir\\zip.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\CMakeFiles\\mo.dir\\mo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\mo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\mo.c", + "output": "src\\disk\\CMakeFiles\\mo.dir\\mo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\cwalk.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\cwalk.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\cwalk.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\cwalk.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\xml2_encoding.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\xml2_encoding.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\xml2_encoding.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\xml2_encoding.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\convert.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\convert.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\convert.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\convert.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\create.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\create.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\create.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\create.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_io.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_io.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_io.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_io.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\manage.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\manage.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\manage.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\manage.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\struct_rw.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\struct_rw.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\struct_rw.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\struct_rw.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_util.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_util.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_util.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_util.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc_magitronic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_magitronic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_magitronic.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc_magitronic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc_monster.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_monster.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_monster.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc_monster.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc_pii15xb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_pii15xb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_pii15xb.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc_pii15xb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdi2raw.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdi2raw.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdi2raw.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdi2raw.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_common.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_86f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_86f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_86f.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_86f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_fdi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_fdi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_fdi.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_fdi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_imd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_imd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_imd.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_imd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_img.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_img.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_img.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_img.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_json.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_json.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_json.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_json.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_mfm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_mfm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_mfm.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_mfm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_td0.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_td0.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_td0.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_td0.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\gameport.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\gameport.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\gameport.c", + "output": "src\\game\\CMakeFiles\\game.dir\\gameport.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_standard.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_standard.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_standard.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_standard.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_ch_flightstick_pro.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_ch_flightstick_pro.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_ch_flightstick_pro.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_ch_flightstick_pro.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_sw_pad.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_sw_pad.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_sw_pad.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_sw_pad.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_tm_fcs.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_tm_fcs.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_tm_fcs.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_tm_fcs.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\machine.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\machine.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\machine_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine_table.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\machine_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_compaq.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_compaq.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_compaq.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_compaq.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_philips.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_philips.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_philips.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_philips.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000_vid.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000_vid.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000_vid.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000_vid.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_xi8088.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_xi8088.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_xi8088.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_xi8088.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_zenith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_zenith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_zenith.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_zenith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_pcjr.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_pcjr.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_pcjr.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_pcjr.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_amstrad.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_amstrad.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_amstrad.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_amstrad.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_europc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_europc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_europc.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_europc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_elt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_elt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_elt.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_elt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_olivetti.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_olivetti.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_olivetti.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_olivetti.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_tandy.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_tandy.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_tandy.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_tandy.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_v86p.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_v86p.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_v86p.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_v86p.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_commodore.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_commodore.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_commodore.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_commodore.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e_vid.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e_vid.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e_vid.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e_vid.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps1.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps1.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps1_hdc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1_hdc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1_hdc.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps1_hdc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps2_isa.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_isa.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_isa.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps2_isa.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps2_mca.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_mca.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_mca.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps2_mca.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_compaq.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_compaq.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_compaq.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_compaq.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_286_386sx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_286_386sx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_286_386sx.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_286_386sx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_386dx_486.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_386dx_486.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_386dx_486.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_386dx_486.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket4.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket4.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket4.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket4.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket5.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket5.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket5.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket5.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7_3v.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7_3v.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7_3v.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7_3v.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_sockets7.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_sockets7.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_sockets7.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_sockets7.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket8.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket8.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket8.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket8.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_slot1.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot1.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot1.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_slot1.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_slot2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot2.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_slot2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket370.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket370.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket370.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket370.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_misc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_misc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_misc.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_misc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_laserxt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_laserxt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_laserxt.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_laserxt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\catalyst_flash.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\catalyst_flash.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\catalyst_flash.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\catalyst_flash.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\i2c_eeprom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\i2c_eeprom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\i2c_eeprom.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\i2c_eeprom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\intel_flash.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\intel_flash.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\intel_flash.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\intel_flash.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\mem.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mem.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mem.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\mem.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\mmu_2386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mmu_2386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mmu_2386.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\mmu_2386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\rom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\rom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\rom.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\rom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\row.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\row.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\row.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\row.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\smram.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\smram.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\smram.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\smram.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\spd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\spd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\spd.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\spd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\sst_flash.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\sst_flash.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\sst_flash.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\sst_flash.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\network.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\network.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\network.c", + "output": "src\\network\\CMakeFiles\\net.dir\\network.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_pcap.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcap.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcap.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_pcap.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_slirp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_slirp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_slirp.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_slirp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_dp8390.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_dp8390.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_dp8390.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_dp8390.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_3c501.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c501.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c501.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_3c501.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_3c503.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c503.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c503.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_3c503.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_ne2000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_ne2000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_ne2000.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_ne2000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_pcnet.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcnet.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcnet.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_pcnet.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_wd8003.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_wd8003.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_wd8003.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_wd8003.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_plip.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_plip.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_plip.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_plip.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_event.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_event.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_event.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_event.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_null.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_null.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_null.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_null.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\png.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\png.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\png.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\png.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_cpmap.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_cpmap.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_cpmap.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_cpmap.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_escp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_escp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_escp.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_escp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_text.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_text.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_text.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_text.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_ps.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_ps.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_ps.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_ps.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_acc3221.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_acc3221.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_acc3221.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_acc3221.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_ali5123.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_ali5123.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_ali5123.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_ali5123.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_f82c710.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_f82c710.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_f82c710.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_f82c710.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_82091aa.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_82091aa.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_82091aa.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_82091aa.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c6xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c6xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c6xx.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c6xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c67x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c67x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c67x.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c67x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c669.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c669.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c669.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c669.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c93x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c93x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c93x.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c93x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37m60x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37m60x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37m60x.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37m60x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_it8661f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_it8661f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_it8661f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_it8661f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87306.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87306.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87306.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87306.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87307.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87307.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87307.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87307.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87309.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87309.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87309.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87309.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87310.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87310.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87310.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87310.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87311.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87311.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87311.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87311.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87332.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87332.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87332.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87332.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_prime3b.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3b.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3b.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_prime3b.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_prime3c.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3c.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3c.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_prime3c.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_w83787f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83787f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83787f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_w83787f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_w83877f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83877f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83877f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_w83877f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_w83977f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83977f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83977f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_w83977f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_um8669f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_um8669f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_um8669f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_um8669f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_vt82c686.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_vt82c686.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_vt82c686.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_vt82c686.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_detect.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_detect.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_detect.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_detect.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_device.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_device.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_device.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_device.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_cdrom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_cdrom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_cdrom.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_cdrom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_disk.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_disk.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_disk.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_disk.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_x54x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_x54x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_x54x.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_x54x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_aha154x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_aha154x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_aha154x.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_aha154x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_buslogic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_buslogic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_buslogic.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_buslogic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr5380.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr5380.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr5380.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr5380.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr53c8xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr53c8xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr53c8xx.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr53c8xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_pcscsi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_pcscsi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_pcscsi.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_pcscsi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_spock.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_spock.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_spock.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_spock.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\sound.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\sound.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\sound.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\sound.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_opl.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_opl.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_opl_nuked.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_nuked.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_nuked.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_opl_nuked.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\CMakeFiles\\snd.dir\\snd_opl_ymfm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_ymfm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_ymfm.cpp", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_opl_ymfm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\CMakeFiles\\snd.dir\\snd_resid.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_resid.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_resid.cc", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_resid.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\midi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_speaker.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_speaker.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_speaker.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_speaker.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_pssj.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pssj.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pssj.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_pssj.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dac.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_codec.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_codec.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_codec.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_codec.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_via.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_via.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_via.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_via.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dss.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dss.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dss.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dss.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ps1.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ps1.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ps1.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ps1.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_adlib.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlib.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlib.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_adlib.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_adlibgold.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlibgold.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlibgold.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_adlibgold.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ad1848.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ad1848.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ad1848.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ad1848.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_audiopci.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_audiopci.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_audiopci.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_audiopci.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_azt2316a.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_azt2316a.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_azt2316a.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_azt2316a.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_cms.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cms.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cms.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_cms.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_cmi8x38.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cmi8x38.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cmi8x38.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_cmi8x38.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_cs423x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cs423x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cs423x.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_cs423x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_gus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_gus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_gus.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_gus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_sb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_sb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_sb_dsp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb_dsp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb_dsp.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_sb_dsp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_emu8k.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_emu8k.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_emu8k.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_emu8k.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_mpu401.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_mpu401.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_mpu401.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_mpu401.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_sn76489.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sn76489.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sn76489.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_sn76489.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ssi2001.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ssi2001.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ssi2001.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ssi2001.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_wss.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_wss.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_wss.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_wss.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ym7128.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ym7128.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ym7128.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ym7128.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_optimc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_optimc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_optimc.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_optimc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\xaudio2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\xaudio2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\xaudio2.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\xaudio2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\CMakeFiles\\snd.dir\\midi_rtmidi.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_rtmidi.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_rtmidi.cpp", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi_rtmidi.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\midi_fluidsynth.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_fluidsynth.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_fluidsynth.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi_fluidsynth.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\midi_mt32.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_mt32.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_mt32.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi_mt32.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_pas16.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pas16.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pas16.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_pas16.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Analog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Analog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Analog.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Analog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\BReverbModel.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\BReverbModel.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\BReverbModel.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\BReverbModel.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Display.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Display.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Display.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Display.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\File.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\File.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\File.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\File.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\FileStream.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\FileStream.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\FileStream.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\FileStream.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32Ramp.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32Ramp.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32Ramp.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32Ramp.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32FloatWaveGenerator.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32FloatWaveGenerator.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32FloatWaveGenerator.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32FloatWaveGenerator.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32WaveGenerator.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32WaveGenerator.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32WaveGenerator.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32WaveGenerator.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\MidiStreamParser.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\MidiStreamParser.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\MidiStreamParser.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\MidiStreamParser.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Part.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Part.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Part.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Part.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Partial.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Partial.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Partial.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Partial.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\PartialManager.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\PartialManager.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\PartialManager.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\PartialManager.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Poly.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Poly.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Poly.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Poly.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\ROMInfo.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\ROMInfo.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\ROMInfo.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\ROMInfo.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\SampleRateConverter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\SampleRateConverter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\SampleRateConverter.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\SampleRateConverter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\FIRResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\FIRResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\FIRResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\FIRResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\IIR2xResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\IIR2xResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\IIR2xResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\IIR2xResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\LinearResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\LinearResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\LinearResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\LinearResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\ResamplerModel.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\ResamplerModel.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\ResamplerModel.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\ResamplerModel.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\SincResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\SincResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\SincResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\SincResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\InternalResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\InternalResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\InternalResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\InternalResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Synth.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Synth.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Synth.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Synth.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Tables.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Tables.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Tables.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Tables.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVA.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVA.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVA.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVA.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVF.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVF.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVF.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVF.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVP.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVP.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVP.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVP.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\sha1\\sha1.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\sha1\\sha1.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\sha1\\sha1.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\sha1\\sha1.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\c_interface\\c_interface.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\c_interface\\c_interface.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\c_interface\\c_interface.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\c_interface\\c_interface.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_misc.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_misc.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_misc.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_misc.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opl.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opl.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opl.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opl.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opm.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opn.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opn.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opn.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opn.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opq.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opq.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opq.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opq.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opz.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opz.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opz.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opz.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_pcm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_pcm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_pcm.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_pcm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_adpcm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_adpcm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_adpcm.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_adpcm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve-sse.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve-sse.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve-sse.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve-sse.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\envelope.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\envelope.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\envelope.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\envelope.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\extfilt.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\extfilt.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\extfilt.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\extfilt.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\filter.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\filter.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\filter.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\filter.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\pot.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\pot.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\pot.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\pot.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\sid.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\sid.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\sid.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\sid.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\voice.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\voice.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\voice.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\voice.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PS_.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PS_.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PS_.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PS_.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_P_T.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_P_T.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_P_T.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_P_T.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581__ST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581__ST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581__ST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581__ST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PS_.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PS_.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PS_.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PS_.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_P_T.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_P_T.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_P_T.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_P_T.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580__ST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580__ST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580__ST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580__ST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\agpgart.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\agpgart.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\agpgart.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\agpgart.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\video.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\video.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\video.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\video.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_table.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_cga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_cga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_cga_comp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga_comp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga_comp.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_cga_comp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_compaq_cga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_compaq_cga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_compaq_cga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_compaq_cga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_mda.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mda.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mda.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_mda.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_hercules.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_hercules.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_hercules.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_hercules.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_herculesplus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_herculesplus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_herculesplus.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_herculesplus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_incolor.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_incolor.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_incolor.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_incolor.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_colorplus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_colorplus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_colorplus.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_colorplus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_genius.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_genius.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_genius.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_genius.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_pgc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_pgc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_pgc.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_pgc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_im1024.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_im1024.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_im1024.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_im1024.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sigma.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sigma.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sigma.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sigma.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_wy700.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_wy700.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_wy700.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_wy700.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ega.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ega.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ega_render.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega_render.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega_render.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ega_render.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_svga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_svga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_8514a.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_8514a.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_8514a.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_8514a.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_svga_render.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga_render.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga_render.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_svga_render.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ddc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ddc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ddc.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ddc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_vga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_vga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_vga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_vga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati_eeprom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_eeprom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_eeprom.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati_eeprom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati18800.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati18800.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati18800.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati18800.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati28800.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati28800.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati28800.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati28800.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach8.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach8.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach8.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach8.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach64.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach64.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach64.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach64.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati68875_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68875_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68875_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati68875_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati68860_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68860_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68860_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati68860_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_bt48x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_bt48x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_bt48x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_bt48x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_av9194.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_av9194.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_av9194.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_av9194.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_icd2061.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_icd2061.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_icd2061.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_icd2061.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ics2494.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2494.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2494.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ics2494.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ics2595.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2595.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2595.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ics2595.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_cl54xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cl54xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cl54xx.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_cl54xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_et3000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et3000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et3000.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_et3000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_et4000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_et4000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sc1148x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1148x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1148x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sc1148x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sc1502x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1502x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1502x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sc1502x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_et4000w32.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000w32.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000w32.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_et4000w32.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_stg_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_stg_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_stg_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_stg_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ht216.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ht216.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ht216.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ht216.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_oak_oti.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_oak_oti.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_oak_oti.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_oak_oti.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_paradise.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_paradise.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_paradise.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_paradise.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_rtg310x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_rtg310x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_rtg310x.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_rtg310x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_f82c425.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_f82c425.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_f82c425.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_f82c425.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ti_cf62011.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ti_cf62011.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ti_cf62011.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ti_cf62011.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tvga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tvga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tgui9440.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tgui9440.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tgui9440.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tgui9440.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tkd8001_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tkd8001_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tkd8001_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tkd8001_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_att20c49x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att20c49x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att20c49x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_att20c49x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_s3.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_s3.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_s3_virge.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3_virge.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3_virge.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_s3_virge.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ibm_rgb528_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ibm_rgb528_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ibm_rgb528_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ibm_rgb528_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sdac_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sdac_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sdac_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sdac_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ogc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ogc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ogc.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ogc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_nga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_nga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_nga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_nga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tvp3026_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvp3026_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvp3026_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tvp3026_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_att2xc498_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att2xc498_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att2xc498_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_att2xc498_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_xga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_xga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_xga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_xga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_mga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_mga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee_blitter.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee_blitter.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee_blitter.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee_blitter.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_blitter.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_blitter.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_blitter.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_blitter.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_display.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_display.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_display.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_display.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fb.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fifo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fifo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fifo.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fifo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_reg.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_reg.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_reg.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_reg.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_render.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_render.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_render.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_render.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_setup.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_setup.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_setup.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_setup.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_texture.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_texture.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_texture.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_texture.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\plat_autogen\\mocs_compilation.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\plat_autogen\\mocs_compilation.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\plat_autogen\\mocs_compilation.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\plat_autogen\\mocs_compilation.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\qt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\qt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\qt_main.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_main.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_main.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\qt_main.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\qt_platform.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_platform.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_platform.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\qt_platform.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\win_dynld.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_dynld.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_dynld.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\win_dynld.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\win_joystick_rawinput.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_joystick_rawinput.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_joystick_rawinput.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\win_joystick_rawinput.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\__\\win\\win_serial_passthrough.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\win_serial_passthrough.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\win_serial_passthrough.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\__\\win\\win_serial_passthrough.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/plat_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\mocs_compilation.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\ui_autogen\\mocs_compilation.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\ui_autogen\\mocs_compilation.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\mocs_compilation.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_ui.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_ui.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_ui.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_ui.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\cc.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c99 -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -g0 -O3 -std=gnu11 -o src\\qt\\CMakeFiles\\ui.dir\\qt_cdrom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_cdrom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_cdrom.c", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_cdrom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mainwindow.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mainwindow.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mainwindow.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mainwindow.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_machinestatus.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_machinestatus.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_machinestatus.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_machinestatus.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mediamenu.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediamenu.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediamenu.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mediamenu.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_rendererstack.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_rendererstack.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_rendererstack.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_rendererstack.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_renderercommon.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_renderercommon.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_renderercommon.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_renderercommon.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_softwarerenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_softwarerenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_softwarerenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_softwarerenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_hardwarerenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_hardwarerenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_hardwarerenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_hardwarerenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_openglrenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_openglrenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_openglrenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_openglrenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptions.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptions.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptions.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptions.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptionsdialog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptionsdialog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptionsdialog.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptionsdialog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settings.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settings.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsmachine.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsmachine.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsmachine.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsmachine.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsdisplay.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsdisplay.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsdisplay.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsdisplay.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsinput.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsinput.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsinput.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsinput.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingssound.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingssound.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingssound.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingssound.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsnetwork.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsnetwork.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsnetwork.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsnetwork.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsports.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsports.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsports.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsports.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsstoragecontrollers.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsstoragecontrollers.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsstoragecontrollers.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsstoragecontrollers.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsharddisks.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsharddisks.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsharddisks.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsharddisks.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsfloppycdrom.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsfloppycdrom.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsfloppycdrom.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsfloppycdrom.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherremovable.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherremovable.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherremovable.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherremovable.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherperipherals.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherperipherals.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherperipherals.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherperipherals.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settings_bus_tracking.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings_bus_tracking.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings_bus_tracking.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settings_bus_tracking.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_deviceconfig.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_deviceconfig.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_deviceconfig.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_deviceconfig.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_joystickconfiguration.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_joystickconfiguration.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_joystickconfiguration.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_joystickconfiguration.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_filefield.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_filefield.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_filefield.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_filefield.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_newfloppydialog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_newfloppydialog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_newfloppydialog.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_newfloppydialog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_harddiskdialog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddiskdialog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddiskdialog.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_harddiskdialog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_harddrive_common.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddrive_common.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddrive_common.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_harddrive_common.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_models_common.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_models_common.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_models_common.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_models_common.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_specifydimensions.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_specifydimensions.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_specifydimensions.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_specifydimensions.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_soundgain.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_soundgain.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_soundgain.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_soundgain.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_styleoverride.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_styleoverride.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_styleoverride.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_styleoverride.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_progsettings.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_progsettings.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_progsettings.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_progsettings.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_util.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_util.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_util.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_util.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_unixmanagerfilter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_unixmanagerfilter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_unixmanagerfilter.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_unixmanagerfilter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanwindowrenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanwindowrenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanwindowrenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanwindowrenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanrenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanrenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanrenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanrenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mcadevicelist.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mcadevicelist.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mcadevicelist.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mcadevicelist.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mediahistorymanager.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediahistorymanager.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediahistorymanager.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mediahistorymanager.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_d3d9renderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_d3d9renderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_d3d9renderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_d3d9renderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_winrawinputfilter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winrawinputfilter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winrawinputfilter.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_winrawinputfilter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_winmanagerfilter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winmanagerfilter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winmanagerfilter.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_winmanagerfilter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build\\src\\qt\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QGifPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICNSPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QICOPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QJpegPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgIconPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QSvgPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTgaPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QTiffPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWbmpPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWebpPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Gui\\Qt5Gui_QWindowsIntegrationPlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Widgets\\Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build", + "command": "C:\\msys64\\mingw32\\bin\\c++.exe -DCMAKE -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_ACCESSIBILITY_SUPPORT_LIB -DQT_CORE_LIB -DQT_EVENTDISPATCHER_SUPPORT_LIB -DQT_FONTDATABASE_SUPPORT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_SVG_LIB -DQT_THEME_SUPPORT_LIB -DQT_VULKAN_SUPPORT_LIB -DQT_WIDGETS_LIB -DQT_WINDOWSUIAUTOMATION_SUPPORT_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/include -IC:/msys64/mingw32/include/freetype2 -IC:/msys64/mingw32/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw32/qt5-static/include -isystem C:/msys64/mingw32/qt5-static/include/QtWidgets -isystem C:/msys64/mingw32/qt5-static/include/QtGui -isystem C:/msys64/mingw32/qt5-static/include/QtCore -isystem C:/msys64/mingw32/qt5-static/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw32/qt5-static/include/QtSvg -isystem C:/msys64/mingw32/qt5-static/include/QtEventDispatcherSupport -isystem C:/msys64/mingw32/qt5-static/include/QtFontDatabaseSupport -isystem C:/msys64/mingw32/qt5-static/include/QtThemeSupport -isystem C:/msys64/mingw32/qt5-static/include/QtAccessibilitySupport -isystem C:/msys64/mingw32/qt5-static/include/QtVulkanSupport -isystem C:/msys64/mingw32/qt5-static/include/QtWindowsUIAutomationSupport -isystem C:/msys64/mingw32/qt5-static/include/QtOpenGL -isystem C:/msys64/mingw32/qt5-static/include/QtNetwork -m32 -march=i686 -msse2 -mfpmath=sse -mstackrealign -std=c++11 -fomit-frame-pointer -Wall -fno-strict-aliasing -g0 -O3 -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp.obj -c C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp", + "file": "C:\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\C_\\msys64\\mingw32\\qt5-static\\lib\\cmake\\Qt5Network\\Qt5Network_QGenericEnginePlugin_Import.cpp.obj" +} +] \ No newline at end of file diff --git a/src/build/src/86Box.exe b/src/build/src/86Box.exe new file mode 100644 index 000000000..2ff0f37aa Binary files /dev/null and b/src/build/src/86Box.exe differ diff --git a/src/build/src/cdrom/cmake_install.cmake b/src/build/src/cdrom/cmake_install.cmake new file mode 100644 index 000000000..6643aae10 --- /dev/null +++ b/src/build/src/cdrom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cdrom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/chipset/cmake_install.cmake b/src/build/src/chipset/cmake_install.cmake new file mode 100644 index 000000000..fa03ddb05 --- /dev/null +++ b/src/build/src/chipset/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/chipset + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/cmake_install.cmake b/src/build/src/cmake_install.cmake new file mode 100644 index 000000000..c651db924 --- /dev/null +++ b/src/build/src/cmake_install.cmake @@ -0,0 +1,147 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/cdrom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/chipset/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/cpu/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/codegen_new/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE EXECUTABLE FILES "K:/emu_dev/86Box_clean_ex_k/src/build/src/86Box.exe") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./86Box.exe" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./86Box.exe") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/msys64/mingw32/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./86Box.exe") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Runtime" OR NOT CMAKE_INSTALL_COMPONENT) + + include(BundleUtilities) + get_filename_component(CMAKE_INSTALL_PREFIX_ABSOLUTE ${CMAKE_INSTALL_PREFIX} ABSOLUTE) + fixup_bundle("${CMAKE_INSTALL_PREFIX_ABSOLUTE}/86Box.exe" "" "") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg]|[Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE OPTIONAL FILES "K:/emu_dev/86Box_clean_ex_k/src/build/src/86Box.pdb") + endif() +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/device/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/disk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/floppy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/game/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/machine/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/mem/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/network/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/printer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/sio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/scsi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/video/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/cmake_install.cmake") +endif() + diff --git a/src/build/src/codegen_new/cmake_install.cmake b/src/build/src/codegen_new/cmake_install.cmake new file mode 100644 index 000000000..cb85062d3 --- /dev/null +++ b/src/build/src/codegen_new/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/codegen_new + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/cpu/808x/cmake_install.cmake b/src/build/src/cpu/808x/cmake_install.cmake new file mode 100644 index 000000000..e751884ac --- /dev/null +++ b/src/build/src/cpu/808x/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cpu/808x + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/cpu/cmake_install.cmake b/src/build/src/cpu/cmake_install.cmake new file mode 100644 index 000000000..ac6566b45 --- /dev/null +++ b/src/build/src/cpu/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cpu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/cpu/softfloat/cmake_install.cmake") +endif() + diff --git a/src/build/src/cpu/softfloat/cmake_install.cmake b/src/build/src/cpu/softfloat/cmake_install.cmake new file mode 100644 index 000000000..f6f8e4dc3 --- /dev/null +++ b/src/build/src/cpu/softfloat/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/device/cmake_install.cmake b/src/build/src/device/cmake_install.cmake new file mode 100644 index 000000000..9e7d384d1 --- /dev/null +++ b/src/build/src/device/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/device + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/disk/cmake_install.cmake b/src/build/src/disk/cmake_install.cmake new file mode 100644 index 000000000..2aa70eff1 --- /dev/null +++ b/src/build/src/disk/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/disk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/disk/minivhd/cmake_install.cmake") +endif() + diff --git a/src/build/src/disk/minivhd/cmake_install.cmake b/src/build/src/disk/minivhd/cmake_install.cmake new file mode 100644 index 000000000..dc2cea29e --- /dev/null +++ b/src/build/src/disk/minivhd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/disk/minivhd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/floppy/cmake_install.cmake b/src/build/src/floppy/cmake_install.cmake new file mode 100644 index 000000000..a4087b760 --- /dev/null +++ b/src/build/src/floppy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/floppy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/game/cmake_install.cmake b/src/build/src/game/cmake_install.cmake new file mode 100644 index 000000000..8a63222dc --- /dev/null +++ b/src/build/src/game/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/game + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/include/86box/version.h b/src/build/src/include/86box/version.h new file mode 100644 index 000000000..e106881d8 --- /dev/null +++ b/src/build/src/include/86box/version.h @@ -0,0 +1,60 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * Definitions for project version, branding, and external links. + * + * + * + * Authors: Miran Grca, + * + * Copyright 2020 Miran Grca. + */ + +#define _LSTR(s) L ## s +#define LSTR(s) _LSTR(s) + +/* Version info. */ +#define EMU_NAME "86Box" +#define EMU_NAME_W LSTR(EMU_NAME) + +#define EMU_VERSION "4.0.2" +#define EMU_VERSION_W LSTR(EMU_VERSION) +#define EMU_VERSION_EX "3.50" /* frozen due to IDE re-detection behavior on Windows */ +#define EMU_VERSION_MAJ 4 +#define EMU_VERSION_MIN 0 +#define EMU_VERSION_PATCH 2 + +/* #undef EMU_BUILD */ +#define EMU_BUILD_NUM 0 +/* #undef EMU_GIT_HASH */ + +#ifdef EMU_BUILD +# define EMU_BUILD_W LSTR(EMU_BUILD) +# define EMU_VERSION_FULL EMU_VERSION " [" EMU_BUILD "]" +# define EMU_VERSION_FULL_W EMU_VERSION_W L" [" EMU_BUILD_W L"]" +#else +# define EMU_VERSION_FULL EMU_VERSION +# define EMU_VERSION_FULL_W EMU_VERSION_W +#endif +#ifdef EMU_GIT_HASH +# define EMU_GIT_HASH_W LSTR(EMU_GIT_HASH) +#endif + +#define COPYRIGHT_YEAR "2023" + +/* Web URL info. */ +#define EMU_SITE "86box.net" +#define EMU_SITE_W LSTR(EMU_SITE) +#define EMU_ROMS_URL "https://github.com/86Box/roms/releases/latest" +#define EMU_ROMS_URL_W LSTR(EMU_ROMS_URL) +#ifdef RELEASE_BUILD +# define EMU_DOCS_URL "https://86box.readthedocs.io/en/v4.0/" +#else +# define EMU_DOCS_URL "https://86box.readthedocs.io" +#endif +#define EMU_DOCS_URL_W LSTR(EMU_DOCS_URL) diff --git a/src/build/src/machine/cmake_install.cmake b/src/build/src/machine/cmake_install.cmake new file mode 100644 index 000000000..d9426dccc --- /dev/null +++ b/src/build/src/machine/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/machine + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/mem/cmake_install.cmake b/src/build/src/mem/cmake_install.cmake new file mode 100644 index 000000000..f07fa9419 --- /dev/null +++ b/src/build/src/mem/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/mem + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/network/cmake_install.cmake b/src/build/src/network/cmake_install.cmake new file mode 100644 index 000000000..0bb649e62 --- /dev/null +++ b/src/build/src/network/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/network + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/printer/cmake_install.cmake b/src/build/src/printer/cmake_install.cmake new file mode 100644 index 000000000..ff11ae507 --- /dev/null +++ b/src/build/src/printer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/printer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/qt/86box_ca-ES.qm b/src/build/src/qt/86box_ca-ES.qm new file mode 100644 index 000000000..bf03462df Binary files /dev/null and b/src/build/src/qt/86box_ca-ES.qm differ diff --git a/src/build/src/qt/86box_cs-CZ.qm b/src/build/src/qt/86box_cs-CZ.qm new file mode 100644 index 000000000..95c102a1b Binary files /dev/null and b/src/build/src/qt/86box_cs-CZ.qm differ diff --git a/src/build/src/qt/86box_de-DE.qm b/src/build/src/qt/86box_de-DE.qm new file mode 100644 index 000000000..9f963ac01 Binary files /dev/null and b/src/build/src/qt/86box_de-DE.qm differ diff --git a/src/build/src/qt/86box_en-GB.qm b/src/build/src/qt/86box_en-GB.qm new file mode 100644 index 000000000..9a3517e9f Binary files /dev/null and b/src/build/src/qt/86box_en-GB.qm differ diff --git a/src/build/src/qt/86box_en-US.qm b/src/build/src/qt/86box_en-US.qm new file mode 100644 index 000000000..5e1b11a45 Binary files /dev/null and b/src/build/src/qt/86box_en-US.qm differ diff --git a/src/build/src/qt/86box_es-ES.qm b/src/build/src/qt/86box_es-ES.qm new file mode 100644 index 000000000..6815dd934 Binary files /dev/null and b/src/build/src/qt/86box_es-ES.qm differ diff --git a/src/build/src/qt/86box_fi-FI.qm b/src/build/src/qt/86box_fi-FI.qm new file mode 100644 index 000000000..34cab7ae5 Binary files /dev/null and b/src/build/src/qt/86box_fi-FI.qm differ diff --git a/src/build/src/qt/86box_fr-FR.qm b/src/build/src/qt/86box_fr-FR.qm new file mode 100644 index 000000000..f6d9872ef Binary files /dev/null and b/src/build/src/qt/86box_fr-FR.qm differ diff --git a/src/build/src/qt/86box_hr-HR.qm b/src/build/src/qt/86box_hr-HR.qm new file mode 100644 index 000000000..58ef64f59 Binary files /dev/null and b/src/build/src/qt/86box_hr-HR.qm differ diff --git a/src/build/src/qt/86box_hu-HU.qm b/src/build/src/qt/86box_hu-HU.qm new file mode 100644 index 000000000..1af7b93fd Binary files /dev/null and b/src/build/src/qt/86box_hu-HU.qm differ diff --git a/src/build/src/qt/86box_it-IT.qm b/src/build/src/qt/86box_it-IT.qm new file mode 100644 index 000000000..f26f7bfa0 Binary files /dev/null and b/src/build/src/qt/86box_it-IT.qm differ diff --git a/src/build/src/qt/86box_ja-JP.qm b/src/build/src/qt/86box_ja-JP.qm new file mode 100644 index 000000000..94d97aaa4 Binary files /dev/null and b/src/build/src/qt/86box_ja-JP.qm differ diff --git a/src/build/src/qt/86box_ko-KR.qm b/src/build/src/qt/86box_ko-KR.qm new file mode 100644 index 000000000..ff9a9b0b8 Binary files /dev/null and b/src/build/src/qt/86box_ko-KR.qm differ diff --git a/src/build/src/qt/86box_pl-PL.qm b/src/build/src/qt/86box_pl-PL.qm new file mode 100644 index 000000000..a4bec26ac Binary files /dev/null and b/src/build/src/qt/86box_pl-PL.qm differ diff --git a/src/build/src/qt/86box_pt-BR.qm b/src/build/src/qt/86box_pt-BR.qm new file mode 100644 index 000000000..14bca1f02 Binary files /dev/null and b/src/build/src/qt/86box_pt-BR.qm differ diff --git a/src/build/src/qt/86box_pt-PT.qm b/src/build/src/qt/86box_pt-PT.qm new file mode 100644 index 000000000..3afda0e09 Binary files /dev/null and b/src/build/src/qt/86box_pt-PT.qm differ diff --git a/src/build/src/qt/86box_ru-RU.qm b/src/build/src/qt/86box_ru-RU.qm new file mode 100644 index 000000000..41660f9a1 Binary files /dev/null and b/src/build/src/qt/86box_ru-RU.qm differ diff --git a/src/build/src/qt/86box_sk-SK.qm b/src/build/src/qt/86box_sk-SK.qm new file mode 100644 index 000000000..b7d3b9753 Binary files /dev/null and b/src/build/src/qt/86box_sk-SK.qm differ diff --git a/src/build/src/qt/86box_sl-SI.qm b/src/build/src/qt/86box_sl-SI.qm new file mode 100644 index 000000000..29252a647 Binary files /dev/null and b/src/build/src/qt/86box_sl-SI.qm differ diff --git a/src/build/src/qt/86box_tr-TR.qm b/src/build/src/qt/86box_tr-TR.qm new file mode 100644 index 000000000..a47f94d28 Binary files /dev/null and b/src/build/src/qt/86box_tr-TR.qm differ diff --git a/src/build/src/qt/86box_uk-UA.qm b/src/build/src/qt/86box_uk-UA.qm new file mode 100644 index 000000000..4a4b31f08 Binary files /dev/null and b/src/build/src/qt/86box_uk-UA.qm differ diff --git a/src/build/src/qt/86box_zh-CN.qm b/src/build/src/qt/86box_zh-CN.qm new file mode 100644 index 000000000..9addd7fbb Binary files /dev/null and b/src/build/src/qt/86box_zh-CN.qm differ diff --git a/src/build/src/qt/86box_zh-TW.qm b/src/build/src/qt/86box_zh-TW.qm new file mode 100644 index 000000000..fe8e988e2 Binary files /dev/null and b/src/build/src/qt/86box_zh-TW.qm differ diff --git a/src/build/src/qt/cmake_install.cmake b/src/build/src/qt/cmake_install.cmake new file mode 100644 index 000000000..1710c10ef --- /dev/null +++ b/src/build/src/qt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/qt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/qt/plat_autogen/deps b/src/build/src/qt/plat_autogen/deps new file mode 100644 index 000000000..4d857dc7b --- /dev/null +++ b/src/build/src/qt/plat_autogen/deps @@ -0,0 +1,117 @@ +plat_autogen/timestamp: \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5Config.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ModuleLocation.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreMacros.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QDebugMessageServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlPreviewServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQuickProfilerAdapterFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardHangulPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardOpenWnnPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardPinyinPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardTCImePlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardThaiPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfigVersion.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CMakeParseArguments.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CheckCSourceCompiles.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CheckIncludeFile.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CheckLibraryExists.cmake \ + C:/msys64/mingw32/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \ + C:/msys64/mingw32/share/cmake/Modules/FindPackageMessage.cmake \ + C:/msys64/mingw32/share/cmake/Modules/FindThreads.cmake \ + C:/msys64/mingw32/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_main.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_platform.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/win_dynld.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt/win_joystick_rawinput.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/win/win_serial_passthrough.c \ + C:/msys64/mingw32/bin/cmake.exe diff --git a/src/build/src/qt/plat_autogen/moc_predefs.h b/src/build/src/qt/plat_autogen/moc_predefs.h new file mode 100644 index 000000000..ee96636d9 --- /dev/null +++ b/src/build/src/qt/plat_autogen/moc_predefs.h @@ -0,0 +1,476 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __FLT16_HAS_QUIET_NAN__ 1 +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 12 +#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16 +#define __INTMAX_C(c) c ## LL +#define __CHAR_BIT__ 8 +#define __MINGW32__ 1 +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define __WINT_MAX__ 0xffff +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define __BFLT16_MIN_10_EXP__ (-37) +#define QT_GUI_LIB 1 +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __WCHAR_MAX__ 0xffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 2 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define __DEC64_MAX_EXP__ 385 +#define __pentium4 1 +#define __INT8_C(c) c +#define __LDBL_HAS_INFINITY__ 1 +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_attributes 200809L +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __BFLT16_MAX_10_EXP__ 38 +#define __BFLT16_MAX_EXP__ 128 +#define __LDBL_IS_IEC_60559__ 1 +#define __pentium4__ 1 +#define QT_NO_DEBUG 1 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __LAHF_SAHF__ 1 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define QT_FONTDATABASE_SUPPORT_LIB 1 +#define __UINTMAX_TYPE__ long long unsigned int +#define __cpp_nsdmi 200809L +#define __BFLT16_DECIMAL_DIG__ 4 +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 2 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 1 +#define _CRT_SECURE_NO_WARNINGS 1 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ 0 +#define QT_SVG_LIB 1 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __ATOMIC_SEQ_CST 5 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define CMAKE 1 +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 1 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 1 +#define __DEC32_MAX__ 9.999999E96DF +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT_WIDTH__ 32 +#define QT_VULKAN_SUPPORT_LIB 1 +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __cpp_return_type_deduction 201304L +#define __FLT16_MIN_EXP__ (-13) +#define __FLT64_MANT_DIG__ 53 +#define _REENTRANT 1 +#define __FLT64X_MANT_DIG__ 64 +#define __BFLT16_DIG__ 2 +#define __GNUC__ 13 +#define __GXX_RTTI 1 +#define __MMX__ 1 +#define NTDDI_VERSION 0x06010000 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 12 +#define QT_WINDOWSUIAUTOMATION_SUPPORT_LIB 1 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __SIZE_TYPE__ unsigned int +#define __FLT64_MAX_10_EXP__ 308 +#define __BFLT16_IS_IEC_60559__ 0 +#define __FLT16_MAX_10_EXP__ 4 +#define __cpp_delegating_constructors 200604L +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffff +#define __DBL_HAS_INFINITY__ 1 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_FLOAT__ 4 +#define __WINNT__ 1 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 32 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ short int +#define __STRICT_ANSI__ 1 +#define __LDBL_HAS_DENORM__ 1 +#define QT_WIDGETS_LIB 1 +#define __SEG_GS 1 +#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16 +#define __cplusplus 201703L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __FLT16_DECIMAL_DIG__ 5 +#define __ATOMIC_HLE_RELEASE 131072 +#define __WIN32__ 1 +#define __PTRDIFF_MAX__ 0x7fffffff +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 13 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 4 +#define __BFLT16_HAS_INFINITY__ 1 +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 2 +#define __FLT32X_DIG__ 15 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define DEV_BRANCH 1 +#define __FLT32_MAX_EXP__ 128 +#define DISCORD 1 +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1018 +#define __FLT_MIN_EXP__ (-125) +#define __GCC_HAVE_DWARF2_CFI_ASM 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long long int +#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 4 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __LDBL_MAX_EXP__ 16384 +#define __DECIMAL_BID_FORMAT__ 1 +#define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT16_MIN_10_EXP__ (-4) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __cdecl __attribute__((__cdecl__)) +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __i386 1 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "13.2.0" +#define __UINT64_C(c) c ## ULL +#define __cpp_unicode_characters 201411L +#define _WIN32 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define _X86_ 1 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define SIZEOF_DPTR (sizeof(void*)) +#define __FLT32X_MIN_EXP__ (-1021) +#define __cpp_aggregate_bases 201603L +#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16 +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define _INTEGRAL_MAX_BITS 64 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __code_model_32__ 1 +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __INT_FAST32_TYPE__ int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DEC128_MAX_EXP__ 6145 +#define __DBL_HAS_DENORM__ 1 +#define __i386__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 1 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __BFLT16_HAS_QUIET_NAN__ 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## ULL +#define __FLT16_DIG__ 3 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __cpp_constexpr 201603L +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __USER_LABEL_PREFIX__ _ +#define __SIZEOF_PTRDIFF_T__ 4 +#define __FLT64X_HAS_INFINITY__ 1 +#define __SIZEOF_LONG__ 4 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 1 +#define __FLT16_IS_IEC_60559__ 1 +#define __FLT16_MAX_EXP__ 16 +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __MSVCRT__ 1 +#define __INT_FAST16_MAX__ 0x7fff +#define __GCC_CONSTRUCTIVE_SIZE 64 +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#define __ILP32__ 1 +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define _ILP32 1 +#define __UINT_FAST16_TYPE__ short unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 32 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __DEC64_MANT_DIG__ 16 +#define QT_NETWORK_LIB 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffff +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __stdcall __attribute__((__stdcall__)) +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __GXX_MERGED_TYPEINFO_NAMES 0 +#define __UINT16_C(c) c +#define __PTRDIFF_WIDTH__ 32 +#define __LDBL_MANT_DIG__ 64 +#define __cpp_range_based_for 201603L +#define __INT_FAST16_WIDTH__ 16 +#define _WINSOCK_DEPRECATED_NO_WARNINGS 1 +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __FLT16_HAS_INFINITY__ 1 +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201411L +#define __DEC32_MANT_DIG__ 7 +#define __INTPTR_TYPE__ int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __UINTPTR_MAX__ 0xffffffffU +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_decltype 200707L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT32_HAS_INFINITY__ 1 +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define __cpp_inline_variables 201606L +#define __BFLT16_MIN_EXP__ (-125) +#define __INT_MAX__ 0x7fffffff +#define QT_EVENTDISPATCHER_SUPPORT_LIB 1 +#define QT_ACCESSIBILITY_SUPPORT_LIB 1 +#define __INT64_TYPE__ long long int +#define __FLT_MAX_EXP__ 128 +#define __DBL_MANT_DIG__ 53 +#define __cpp_inheriting_constructors 201511L +#define QT_CORE_LIB 1 +#define __SIZEOF_FLOAT128__ 16 +#define __BFLT16_MANT_DIG__ 8 +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ short unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __WINT_WIDTH__ 16 +#define __INT_LEAST64_WIDTH__ 64 +#define __FLT32X_MAX_10_EXP__ 308 +#define __cpp_namespace_attributes 201411L +#define __WIN32 1 +#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#define __FLT64X_IS_IEC_60559__ 1 +#define __WCHAR_UNSIGNED__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __INT_LEAST32_TYPE__ int +#define __thiscall __attribute__((__thiscall__)) +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __SIZEOF_WCHAR_T__ 2 +#define __GNUC_PATCHLEVEL__ 0 +#define __WINNT 1 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __INT_FAST8_TYPE__ signed char +#define __fastcall __attribute__((__fastcall__)) +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __STDCPP_THREADS__ 1 +#define __BFLT16_HAS_DENORM__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __FLT16_HAS_DENORM__ 1 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define QT_THEME_SUPPORT_LIB 1 +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __GCC_DESTRUCTIVE_SIZE 64 +#define __INTMAX_WIDTH__ 64 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __cpp_runtime_arrays 198712L +#define __FLT32_DIG__ 6 +#define __UINT64_TYPE__ long long unsigned int +#define __UINT32_C(c) c ## U +#define __cpp_alias_templates 200704L +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define USE_DYNAREC 1 +#define __FLT128_IS_IEC_60559__ 1 +#define USE_NEW_DYNAREC 1 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __INT32_MAX__ 0x7fffffff +#define __UINT_FAST32_TYPE__ unsigned int +#define __FLT16_MANT_DIG__ 11 +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define __SSE2__ 1 +#define __cpp_deduction_guides 201703L +#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 2 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define _CRT_NONSTDC_NO_WARNINGS 1 +#define __INT16_C(c) c +#define __STDC__ 1 +#define __PTRDIFF_TYPE__ int +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201304L +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffff +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __SIZE_MAX__ 0xffffffffU +#define __UINT_FAST8_TYPE__ unsigned char +#define __cpp_init_captures 201304L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 +#define __declspec(x) __attribute__((x)) diff --git a/src/build/src/qt/plat_autogen/mocs_compilation.cpp b/src/build/src/qt/plat_autogen/mocs_compilation.cpp new file mode 100644 index 000000000..bda67f76e --- /dev/null +++ b/src/build/src/qt/plat_autogen/mocs_compilation.cpp @@ -0,0 +1,3 @@ +// This file is autogenerated. Changes will be overwritten. +// No files found that require moc or the moc files are included +enum some_compilers { need_more_than_nothing }; diff --git a/src/build/src/qt/plat_autogen/timestamp b/src/build/src/qt/plat_autogen/timestamp new file mode 100644 index 000000000..e69de29bb diff --git a/src/build/src/qt/qt_translations.qrc b/src/build/src/qt/qt_translations.qrc new file mode 100644 index 000000000..017354f82 --- /dev/null +++ b/src/build/src/qt/qt_translations.qrc @@ -0,0 +1,27 @@ + + + 86box_ca-ES.qm + 86box_cs-CZ.qm + 86box_de-DE.qm + 86box_en-US.qm + 86box_en-GB.qm + 86box_es-ES.qm + 86box_fi-FI.qm + 86box_fr-FR.qm + 86box_hr-HR.qm + 86box_hu-HU.qm + 86box_it-IT.qm + 86box_ja-JP.qm + 86box_ko-KR.qm + 86box_pl-PL.qm + 86box_pt-BR.qm + 86box_pt-PT.qm + 86box_ru-RU.qm + 86box_sk-SK.qm + 86box_sl-SI.qm + 86box_tr-TR.qm + 86box_uk-UA.qm + 86box_zh-CN.qm + 86box_zh-TW.qm + + diff --git a/src/build/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp b/src/build/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp new file mode 100644 index 000000000..66a35b047 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp @@ -0,0 +1,52613 @@ +/**************************************************************************** +** Resource object code +** +** Created by: The Resource Compiler for Qt version 5.15.10 +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +static const unsigned char qt_resource_data[] = { + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_sl-SI.qm + 0x0,0x0,0x92,0x5f, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x27,0x73,0x0,0x0,0x0,0x48, + 0x0,0x0,0x45,0xe9,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0xfc,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x54,0x0,0x0,0x4,0xf2,0x0,0x0,0x4f,0x85,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0x56,0x0,0x0,0x5,0x3b,0x0,0x0,0x5b,0xd6,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0x25,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xed,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x35,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x7d,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xbc,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x4,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x4c,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x94,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xb2,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0x28,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0x18,0x0,0x0,0x4d,0x85,0x0,0x0,0x4b,0x36,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5b,0xf9,0x0,0x0,0x5d,0x81,0x0,0x0,0x82,0xc9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x2f,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x9b,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x4a,0x0,0x4,0x8c,0xaf,0x0,0x0,0x25,0x92,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0x4c,0x0,0x4,0xa7,0x89,0x0,0x0,0x3c,0xb,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x41,0x28,0x0,0x4,0xc8,0xa4,0x0,0x0,0x42,0x61,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3f,0xb3,0x0,0x4,0xd0,0x25,0x0,0x0,0x42,0xc2,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x45,0x65,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0x6b,0x0,0x5,0x78,0x79, + 0x0,0x0,0x69,0x14,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0xf6,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6d,0x5d,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0xf1,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x10,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x49,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xc9,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x4d,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x5f,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x47,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0x92,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x1a,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7d,0xa9,0x0,0x3b,0xa9,0x68,0x0,0x0,0x19,0xd0,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1c,0x65,0x0,0x4c,0x99,0x62,0x0,0x0,0x3e,0x8a,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x35,0x37,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0x87,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x70,0x45,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0xd4,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7a,0x8d,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7b,0x14,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x85,0x2f,0x0,0x73,0x75,0x3e,0x0,0x0,0x33,0xea,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0xd,0x0,0x97,0x96,0x4,0x0,0x0,0x36,0x7e,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4d,0x79,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0x49,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x48,0xa2,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0xf,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x18,0xd7,0x1,0x9,0x1c,0x92,0x0,0x0,0x40,0x84,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2a,0x10,0x1,0x39,0xa4,0xce,0x0,0x0,0x57,0xaa,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7a,0xb1,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0x48,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x48,0x63,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x4a,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x79,0x38,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3a,0x9d,0x1,0x91,0xe,0x73, + 0x0,0x0,0x28,0x15,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4a,0xcc,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x52,0xdd,0x1,0xb0,0x47,0x5c,0x0,0x0,0x51,0x71,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x73,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3f,0xd6,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x49,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x39,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x30,0xe6,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0xba,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x70,0x98,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x8,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x72,0x49,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0xd4,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x71,0x5f,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0x90,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4a,0x3d,0x2,0x78,0x48,0x1a,0x0,0x0,0x52,0x91,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x83,0x29,0x2,0x90,0x8d,0x12,0x0,0x0,0x41,0x75,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0x96,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0xb5,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xc9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x36,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x1e,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xae,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x6b,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0x50,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x85,0x53,0x3,0x5,0x38,0xb2,0x0,0x0,0x3e,0xb0,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0x43,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x3e,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x16,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x3d,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x51,0x9b,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xf5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x1c,0x3,0x6a,0x66,0x2e,0x0,0x0,0x55,0xf1,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x53,0xee,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xc6,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2f,0x9f,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x6f,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0x82,0x3,0xa4,0x35,0xa5,0x0,0x0,0x41,0x8,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x40,0xda,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0xa9,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x58,0x6d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0xe3,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6f,0x44,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6f,0x0,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0xbc,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6e,0x78,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xd0,0x4,0x3,0xf6,0x9a,0x0,0x0,0x55,0x88,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x16,0xe7,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0x65,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0x8f,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x36,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xf4,0x4,0x31,0xff,0xe9,0x0,0x0,0x25,0xbd,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x28,0xd9,0x4,0x51,0x79,0xb1,0x0,0x0,0x73,0x4b,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7c,0x2,0x4,0x5b,0x53,0x1f,0x0,0x0,0x24,0xce,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6e,0x3d,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3b,0x46,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3b,0x6d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x33,0x61,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2e,0xb4,0x4,0xb8,0x1,0x2e,0x0,0x0,0x37,0xd2,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x87,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xb0,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0x9b,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x59,0xbe,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x32,0x28,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x41,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0x11,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x59,0xe8,0x4,0xeb,0x2f,0xa,0x0,0x0,0x50,0x8c,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x49,0xec,0x5,0x18,0x5,0x95,0x0,0x0,0x7e,0x2d,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x15,0xbb,0x5,0x30,0xd3,0xe,0x0,0x0,0x39,0xe2,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x59,0x97,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0xea,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0xe2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3b,0xc5,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0x84,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0x16,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7a,0x3e,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x74,0x73,0x5,0xa5,0x3a,0x79,0x0,0x0,0x26,0x5,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x70,0x6d,0x5,0xb2,0x16,0x79,0x0,0x0,0x67,0x34,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x46,0xea,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0x1e,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3e,0x1b,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0x64,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xc3,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xb9,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4a,0x90,0x5,0xc1,0x4d,0x83,0x0,0x0,0x37,0x4,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x81,0x4d,0x5,0xd0,0x4f,0x11,0x0,0x0,0x81,0xf3,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xdc,0x5,0xdf,0xba,0xba,0x0,0x0,0x82,0x3f,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0xbe,0x6,0x7,0xd3,0xda,0x0,0x0,0x4c,0x7d,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x36,0xb1,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0x1b,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x39,0xaa,0x6,0x38,0x9f,0x35,0x0,0x0,0x37,0x79,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1e,0x7a,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x87,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x32,0x54,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7f,0x7c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x48,0xeb,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0x5d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x49,0x54,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1c,0xd1,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3c,0xb1,0x6,0x81,0xb7,0x1f,0x0,0x0,0x38,0xcb,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6f,0x88,0x6,0x96,0xa4,0x13,0x0,0x0,0x44,0x1c,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0x7a,0x6,0xc3,0xce,0xa3,0x0,0x0,0x72,0xbe,0x6,0xce,0x41,0x63, + 0x0,0x0,0x44,0xbc,0x6,0xed,0xca,0xce,0x0,0x0,0x46,0x50,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xae,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x7a,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0x1e,0x7,0x0,0x57,0x53,0x0,0x0,0x27,0x8b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x53,0xc0,0x7,0x6,0x93,0xe3,0x0,0x0,0x84,0xc8,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0x49,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0xf,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1d,0xb8,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6d,0x22,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x58,0xf4,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4b,0xeb,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0xad,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0xa4,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x31,0xcf,0x7,0x58,0x61,0xe5,0x0,0x0,0x49,0x8d,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xd7,0x7,0x70,0xb3,0xaa,0x0,0x0,0x42,0xeb,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2e,0x74,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0xb3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x55,0xc6,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0xb7,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5c,0x9b,0x7,0xa4,0x32,0x89,0x0,0x0,0x1c,0x89,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7f,0x33,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x50,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x80,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0x41,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x90,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0x3f,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3c,0x2c,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x69,0x35,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4b,0x96,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0xc7,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x58,0x97,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xb8,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0x4,0x8,0x60,0xe7,0xcd,0x0,0x0,0x79,0xc3,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0x8f,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x43,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7b,0x3a,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0x85,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0x29,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0x1,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4e,0x71,0x8,0xa4,0xb,0xae,0x0,0x0,0x4e,0xb9,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3a,0xf1,0x8,0xa9,0xcf,0x35,0x0,0x0,0x30,0x4a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3f,0x32,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xf9,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3d,0x71,0x8,0xf7,0xb3,0xda,0x0,0x0,0x44,0x79,0x9,0x9,0x24,0x29, + 0x0,0x0,0x50,0xb6,0x9,0x49,0xfa,0x4a,0x0,0x0,0x32,0xf1,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x33,0x29,0x9,0x49,0xfa,0x6a,0x0,0x0,0x32,0x81,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x32,0xb9,0x9,0x4e,0xde,0x64,0x0,0x0,0x7b,0x87,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0x6b,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0xb,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x43,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x53,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0xa3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xda,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2e,0xdf,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0xf,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2f,0x3f,0x9,0x88,0x63,0x3a,0x0,0x0,0x2f,0x6f,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x22,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x57,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x6a,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0x2d,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x60,0xdd,0x9,0xc2,0x33,0xa9,0x0,0x0,0x15,0xe5,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x59,0x4a,0x9,0xd5,0x43,0xd3,0x0,0x0,0x34,0x7f,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xb3,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xe5,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3d,0xc8,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xa3,0xa,0x41,0x77,0x3, + 0x0,0x0,0x43,0xcc,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0x23,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x44,0xf6,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3d,0x31,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4d,0xcf,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x1c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7e,0x8a,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0xda,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x73,0x8,0xa,0x98,0x1f,0x89,0x0,0x0,0x35,0xaf,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x35,0x68,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4c,0xf1,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x35,0x5,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x81,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x35,0xf6,0xa,0xda,0x50,0x7e,0x0,0x0,0x7c,0xb9,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x88,0xa,0xea,0x46,0xf4,0x0,0x0,0x5a,0x9d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x36,0x22,0xb,0xa,0x72,0xc9,0x0,0x0,0x38,0xa3,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xf6,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0x5,0xb,0x29,0x70,0x65, + 0x0,0x0,0x45,0x8e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x8,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xf6,0xb,0x4e,0x19,0x54,0x0,0x0,0x51,0xe9,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0xec,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x67,0xb,0x95,0xed,0xa, + 0x0,0x0,0x53,0x71,0xb,0x9d,0xe,0xa2,0x0,0x0,0x31,0x97,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xf9,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0xab,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0xf6,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x24,0x45,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0x2f,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4b,0x54,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x84,0x92,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0xf3,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x73,0xbb,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x73,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x28,0xc,0x33,0xeb,0xe2,0x0,0x0,0x74,0x1b,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x43,0x24,0xc,0x42,0x70,0xde,0x0,0x0,0x28,0x4f,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0xe1,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0x2f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x76,0x7,0xc,0x77,0x67,0x19,0x0,0x0,0x43,0x6c,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x39,0x72,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x48,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x30,0x77,0xc,0x90,0x26,0xb5,0x0,0x0,0x7d,0x4d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5e,0xf6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x27,0xd6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0xf1,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x2a,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0x4e,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7f,0xb2,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xf,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x19,0xf4,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1d,0x6c,0xd,0x11,0x45,0x1a,0x0,0x0,0x26,0xea,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x81,0x74,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0x7f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x82,0x92,0xd,0x60,0xef,0x6a,0x0,0x0,0x4c,0xb5,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x34,0xbb,0xd,0x77,0xa4,0xc0,0x0,0x0,0x42,0x5,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x38,0x66,0xd,0x88,0x48,0x23,0x0,0x0,0x2f,0xf5,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3b,0x96,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xf8,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x83,0x69,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5b,0x8c,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x82,0x68,0xe,0x20,0x13,0x12,0x0,0x0,0x42,0x84,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x5b,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0x24,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x29,0x9a,0xe,0x48,0xfd,0xca,0x0,0x0,0x29,0x5f,0xe,0x48,0xff,0xca, + 0x0,0x0,0x29,0xd5,0xe,0x62,0x79,0x4,0x0,0x0,0x39,0x37,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0x13,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0x2c,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x31,0x6e,0xe,0x98,0x18,0x54,0x0,0x0,0x26,0x97,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0x4a,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0xe9,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6c,0x2b,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0x6d,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0xaf,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0x13,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0x97,0xe,0xe2,0x34,0x60,0x0,0x0,0x84,0x3e,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x84,0x68,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xc9,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x14,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x76,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0xf9,0xf,0x15,0xf4,0x85,0x0,0x0,0x4c,0x36,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x75,0x35,0xf,0x17,0x9c,0x64,0x0,0x0,0x7e,0xdf,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5d,0xca,0xf,0x29,0x4d,0x2a,0x0,0x0,0x46,0x1,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x40,0x39,0xf,0x30,0x6b,0x3,0x0,0x0,0x30,0xb1,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0xf5,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x93,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0xf5,0xf,0x70,0xaa,0x1a,0x0,0x0,0x81,0xb4,0xf,0x74,0xd,0xca, + 0x0,0x0,0x66,0xea,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0x22,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0xba,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xaf,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0xee,0xf,0xd3,0x41,0x72,0x0,0x0,0x3a,0x4c,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4f,0xa0,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0x16,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4f,0xdb,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0x51,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3c,0x71,0xf,0xe2,0xe9,0x49,0x0,0x0,0x82,0xe7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5f,0xc5,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0xb,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0x51,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0x97,0x69,0x0,0x0,0x85, + 0x7d,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x4a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65, + 0x0,0x6b,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x1,0xd, + 0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69, + 0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x6a,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25, + 0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20, + 0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x52,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0, + 0x53,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6a,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x67,0x0,0x75,0x0, + 0x62,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x73,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f, + 0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20, + 0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x70,0x0,0x72,0x0,0x65,0x1,0xd,0x0, + 0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76, + 0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x76,0x0, + 0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4f, + 0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4f,0x0,0x62,0x0,0x73,0x0, + 0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0xd,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x26,0x0,0x4d,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26, + 0x0,0x52,0x0,0x61,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c, + 0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46, + 0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0, + 0x43,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0, + 0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1, + 0xd,0x0,0x69,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0x50,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20, + 0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0xd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x53,0x0,0x6b,0x0, + 0x72,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x75,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x43,0x0,0x65, + 0x0,0x6c,0x0,0x6f,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c, + 0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0, + 0x61,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0, + 0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74, + 0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x54,0x0,0x69,0x0, + 0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x75,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4d, + 0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x55,0x0,0x74,0x0,0x69,0x1,0x61,0x0, + 0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0, + 0x4e,0x0,0x61,0x0,0x6a,0x0,0x62,0x0,0x6c,0x0,0x69,0x1,0x7e,0x0,0x6a,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72, + 0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4e,0x0,0x6f, + 0x0,0x76,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75, + 0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x6a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x4d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x76,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x47,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x53,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x61, + 0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x64, + 0x0,0x6e,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c, + 0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4f,0x0, + 0x64,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4f,0x0,0x64,0x0, + 0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x53,0x0,0x26,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x54, + 0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26, + 0x0,0x49,0x0,0x7a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x1,0xd,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4b,0x0, + 0x76,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x6f,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x6a,0x0,0x65,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61, + 0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20, + 0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x72,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x7a,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4f,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x6a, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0, + 0x50,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0, + 0x6a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x67, + 0x0,0x6c,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x42,0x0,0x26,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x46,0x0, + 0x61,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66, + 0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x28,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x73, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x7a, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x28,0x0, + 0x70,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x31,0x0,0x25,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34, + 0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x32,0x0,0x25,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x6f, + 0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35, + 0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22, + 0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20, + 0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x73,0x0, + 0x6b,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x74,0x0,0x65,0x0, + 0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x44,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x1,0x61,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x62,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x1,0x61,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79, + 0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68, + 0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74, + 0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f, + 0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65, + 0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e, + 0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65, + 0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x61,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x76,0x0, + 0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0, + 0x65,0x1,0xd,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e, + 0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x56,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xd2, + 0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x68,0x0,0x20, + 0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x76, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61, + 0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74, + 0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55, + 0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x61,0x0,0x2e, + 0x0,0x20,0x0,0x47,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0xd,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x53,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1, + 0xd,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78, + 0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x76,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x6e, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72, + 0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0, + 0x76,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42, + 0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0, + 0x26,0x0,0x61,0x1,0xd,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43, + 0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69, + 0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56, + 0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x56,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x6f, + 0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x52,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x65,0x1,0x7e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0, + 0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x79,0x0,0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f, + 0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72, + 0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0, + 0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x2,0xde,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x68,0x0,0x6b,0x0,0x6f, + 0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x64,0x0,0x72,0x0,0x75,0x1,0x7e,0x0,0x6c, + 0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x7a, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6d,0x0,0x2e, + 0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x6c,0x0,0x61,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x64,0x0,0x72,0x0,0x75, + 0x1,0x7e,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53, + 0x0,0x2d,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x73,0x0,0x6b,0x0,0x6f, + 0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0xa, + 0x0,0xa,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x6f,0x1,0xd,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70, + 0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x73,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x6f,0x1,0x61, + 0x1,0xd,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x74, + 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x20,0x0,0x62, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x6e, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67, + 0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74, + 0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f, + 0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69, + 0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68, + 0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75, + 0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20, + 0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69, + 0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c, + 0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20, + 0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f, + 0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x72,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65, + 0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x6b,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6c,0x0,0x6f,0x1, + 0x7e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x26,0x0,0x53, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x1,0xd,0x0,0x72,0x0,0x6e,0x0,0x6f, + 0x0,0x2d,0x0,0x62,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d, + 0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65, + 0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x6a,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x6c,0x0,0x6a,0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x1,0xd,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x61,0x0, + 0x20,0x1,0x7e,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e, + 0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58, + 0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x50,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x28,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x6f,0x0, + 0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44, + 0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0x7a, + 0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x67,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72, + 0x0,0x69,0x0,0x76,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x4f,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6a, + 0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x65,0x1,0xd,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x61,0x0,0x73,0x0, + 0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x1,0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0, + 0x74,0x0,0x76,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x20,0x0, + 0x69,0x0,0x7a,0x0,0x68,0x0,0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6b,0x0,0x61,0x1,0x7e,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65, + 0x1,0xd,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0xd, + 0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x61, + 0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x1, + 0xd,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a, + 0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x45,0x0, + 0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x49,0x0,0x7a, + 0x0,0x76,0x0,0x72,0x0,0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x7a, + 0x0,0x26,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x49,0x0, + 0x7a,0x0,0x76,0x0,0x6f,0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x5a,0x0,0x67,0x0,0x6f,0x0,0x64,0x0, + 0x6e,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x6c,0x0, + 0x6f,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x1,0xd,0x0, + 0x61,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x73, + 0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x70,0x0, + 0x6c,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74, + 0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4f,0x0,0x62,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x73,0x0,0x61, + 0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x49,0x0,0x7a,0x0,0x68,0x0, + 0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x56, + 0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x47,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x6f,0x1,0xd, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6a,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4e,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6f,0x0, + 0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x61,0x0, + 0x20,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x76,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0x69,0x0,0x74,0x0,0x72,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x49,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0, + 0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72, + 0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6b, + 0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x54,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x4e, + 0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c, + 0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x6b,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4f,0x0,0x6a,0x0, + 0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x56,0x0,0x26,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0xd,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x94,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x65,0x0, + 0x76,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x2c,0x0,0x20,0x0, + 0x6e,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x70,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x54,0x0,0x72,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x67,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x54,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x54,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67, + 0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x61,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x6a,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x47,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x69,0x1,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x26,0x0,0x52,0x0,0x61,0x0,0x7a,0x0,0x74,0x0,0x65,0x0, + 0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x44,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26, + 0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31, + 0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68, + 0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x52,0x0,0x61, + 0x0,0x7a,0x1,0x61,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x76, + 0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70, + 0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x55,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x1,0xd,0x0, + 0x61,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x61, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65, + 0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0, + 0x74,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x4e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x76,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x6a,0x0,0x61,0x0,0x76,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4a,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x56,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f, + 0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67, + 0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0,0x61,0x0,0x6b, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x6c,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x6a,0x0,0x61,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e, + 0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x49,0x0,0x7a,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25, + 0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0, + 0x65,0x0,0x74,0x0,0x6e,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x74,0x0, + 0x69,0x1,0xd,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe8,0x0,0x53,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x6b,0x0,0x61,0x0,0x6a,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x68,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x50, + 0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6c,0x0,0x6a, + 0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65, + 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa4,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x70,0x0, + 0x69,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x1,0x61,0x1,0xd,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0, + 0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x7a,0x0,0x64,0x0,0x72,0x0,0x75,0x1,0x7e,0x0,0x6c,0x0,0x6a,0x0, + 0x69,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x20,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c, + 0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c, + 0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61, + 0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x50,0x0,0x72,0x0, + 0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64, + 0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x61, + 0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74, + 0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x6c, + 0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x53,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74, + 0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0,0x61,0x0,0x73, + 0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x4f,0x0,0x62,0x1,0xd,0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x6a,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61, + 0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0, + 0x69,0x1,0x61,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6a, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f, + 0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x56,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x6f,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x4e,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x4e,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x69,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x42,0x0,0x72,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x0,0x74,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x49,0x0,0x7a,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x6b,0x0, + 0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4a,0x0,0x65,0x0,0x64,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30, + 0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xd0,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x6f,0x1,0xd,0x0, + 0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x61,0x0, + 0x62,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0, + 0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20, + 0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x53,0x0,0x65,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0, + 0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65, + 0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x70,0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8e,0x1,0xc,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x1,0x7e,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x76,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x50,0x0,0x6f,0x0,0x70,0x0, + 0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x50,0x0,0x72,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x76,0x0, + 0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x65,0x0,0x6b,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28, + 0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20, + 0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x20,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0, + 0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0,0x69,0x0, + 0x6e,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x50,0x0,0x72,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0, + 0x6a,0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x70,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0,0x6b,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42, + 0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x70, + 0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0,0x6b, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73, + 0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x65,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61, + 0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69, + 0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72, + 0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26, + 0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x42,0x0, + 0x61,0x0,0x72,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x47,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26, + 0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x1,0x61,0x0,0x74, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x75,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x55,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x4e,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x75,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x6a,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61, + 0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65, + 0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x6c,0x0,0x6a,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x7a,0x0, + 0x76,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78, + 0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0, + 0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a, + 0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x26,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x68, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x54,0x0,0x53,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x74,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x7a,0x0, + 0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0, + 0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63, + 0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64, + 0x0,0x49,0x0,0x7a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x67, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x7a,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x76,0x0,0x73,0x0,0x6b,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0, + 0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0, + 0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69, + 0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x5a,0x0,0x76,0x0,0x6f, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4f, + 0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4f,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a, + 0x0,0x76,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x6f,0x1,0xd,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x6f, + 0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44, + 0x0,0x6f,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x67, + 0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20, + 0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57, + 0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x44,0x0, + 0x6f,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69, + 0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0x69,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x48,0x0,0x69,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53, + 0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x20,0x0,0x32,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0, + 0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x72,0x0, + 0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x34,0x0, + 0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73, + 0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x67,0x0,0x75,0x0, + 0x6d,0x0,0x62,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x62,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b, + 0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x1,0x61,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x1, + 0xd,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x6e,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0, + 0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x4f,0x0,0x6d,0x0,0x72,0x0, + 0x65,0x1,0x7e,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x6b,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0xd,0x0, + 0x65,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c, + 0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x49,0x0,0x7a,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x69,0x0,0x73,0x0, + 0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x1, + 0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73, + 0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c, + 0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e, + 0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69, + 0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x2c,0x0,0x54,0x0, + 0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x1,0x61,0x0, + 0x65,0x0,0x76,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x6f,0x0, + 0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x61,0x0,0x6b,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x6f,0x1,0x61,0x1, + 0xd,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0, + 0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x1, + 0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x1,0x7e,0x0,0x69,0x0,0x67,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65, + 0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64, + 0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa, + 0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70, + 0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65, + 0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20, + 0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, + 0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa, + 0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d, + 0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x54, + 0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67, + 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x72,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0,0x72,0x0,0x73,0x0,0x74,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x72,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x1,0x61,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x72,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x6a, + 0x0,0x69,0x1,0x7e,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20, + 0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x70,0x0,0x65,0x1,0x61,0x0, + 0x65,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x76,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0, + 0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x6f,0x0,0x62,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, + 0x67,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61, + 0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x55,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x61,0x0, + 0x62,0x0,0x69,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x76,0x0, + 0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x56,0x0,0x72,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xe,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x6b,0x0,0x61,0x0,0x6a,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x68,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b, + 0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x6f, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x1,0xd,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a, + 0x0,0x6f,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78, + 0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22, + 0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67, + 0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d, + 0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x6f,0x0,0x6f, + 0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x1,0xc,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x6f,0x0,0x64,0x0,0x6f,0x1,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x76,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x1,0x60,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x69,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73, + 0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x4e,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x72,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ja-JP.qm + 0x0,0x0,0x78,0xb1, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x23,0x29,0x0,0x0,0x0,0x48, + 0x0,0x0,0x3a,0xff,0x0,0x0,0x0,0x53,0x0,0x0,0x56,0x3e,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0xa8,0x0,0x0,0x4,0xf2,0x0,0x0,0x42,0xcd,0x0,0x0,0x5,0x12, + 0x0,0x0,0x44,0x4e,0x0,0x0,0x5,0x3b,0x0,0x0,0x4c,0x96,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x4c,0xcd,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x45,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x99,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xed,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x38,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x8c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xe0,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x34,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x58,0x0,0x0,0x49,0xc3,0x0,0x0,0x22,0xee,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3f,0x4a,0x0,0x0,0x4d,0x85,0x0,0x0,0x3f,0x68,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x4c,0xb1,0x0,0x0,0x5d,0x81,0x0,0x0,0x69,0x49,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0xa5,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x11,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x10,0x6a,0x0,0x4,0x8c,0xaf,0x0,0x0,0x21,0x8a,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x23,0xa,0x0,0x4,0xa7,0x89,0x0,0x0,0x33,0x9f,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x37,0x66,0x0,0x4,0xc8,0xa4,0x0,0x0,0x38,0x37,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x36,0x3b,0x0,0x4,0xd0,0x25,0x0,0x0,0x38,0x82,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x3a,0x93,0x0,0x5,0x56,0x45,0x0,0x0,0x4c,0x39,0x0,0x5,0x78,0x79, + 0x0,0x0,0x56,0x56,0x0,0x5,0x98,0xc5,0x0,0x0,0x57,0x42,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x59,0xcb,0x0,0x5,0xc0,0x65,0x0,0x0,0x63,0x65,0x0,0x12,0x74,0x52, + 0x0,0x0,0x16,0x98,0x0,0x19,0x74,0x52,0x0,0x0,0x16,0xd1,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0x1b,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x75,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0x27,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0x15,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x10,0xca,0x0,0x34,0x9,0xc8,0x0,0x0,0x12,0x0,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x65,0x67,0x0,0x3b,0xa9,0x68,0x0,0x0,0x17,0x58,0x0,0x46,0x86,0x49, + 0x0,0x0,0x19,0x9b,0x0,0x4c,0x99,0x62,0x0,0x0,0x35,0x68,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2d,0xe3,0x0,0x58,0xc9,0xc4,0x0,0x0,0x55,0xed,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x5c,0x19,0x0,0x5a,0x6c,0x44,0x0,0x0,0x5a,0x32,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x63,0x17,0x0,0x5c,0x6,0x8a,0x0,0x0,0x63,0x84,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x6b,0x81,0x0,0x73,0x75,0x3e,0x0,0x0,0x2c,0xd4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x4c,0x1,0x0,0x97,0x96,0x4,0x0,0x0,0x2f,0x4,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x41,0x3f,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x42,0x9d,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x3d,0x32,0x0,0xb8,0x5f,0x43,0x0,0x0,0x4e,0x29,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x16,0x5f,0x1,0x9,0x1c,0x92,0x0,0x0,0x36,0xde,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x25,0x94,0x1,0x39,0xa4,0xce,0x0,0x0,0x49,0x3e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x63,0x35,0x1,0x4c,0x50,0xee,0x0,0x0,0x54,0x2e,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x3c,0xf7,0x1,0x61,0xac,0xc9,0x0,0x0,0x11,0x70,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x62,0x1c,0x1,0x7a,0x2c,0x99,0x0,0x0,0x32,0x3b,0x1,0x91,0xe,0x73, + 0x0,0x0,0x23,0xc5,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3f,0x2,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x45,0x97,0x1,0xb0,0x47,0x5c,0x0,0x0,0x44,0x69,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x9d,0x1,0xc8,0x65,0x8f,0x0,0x0,0x36,0x58,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0x45,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0xd9,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2a,0x5e,0x1,0xe6,0x0,0xe9,0x0,0x0,0x57,0x0,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x5c,0x58,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0x34,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x5d,0x83,0x2,0x23,0x3c,0x6b,0x0,0x0,0x5d,0x34,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x5c,0xe5,0x2,0x3c,0xaa,0x89,0x0,0x0,0x14,0x3c,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x3e,0x85,0x2,0x78,0x48,0x1a,0x0,0x0,0x45,0x5d,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x69,0xa9,0x2,0x90,0x8d,0x12,0x0,0x0,0x37,0x87,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x4e,0x92,0x2,0xad,0x4a,0x22,0x0,0x0,0x54,0x83,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0x27,0x2,0xb3,0xba,0xf1,0x0,0x0,0xa,0xfc,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0xea,0x2,0xbb,0x66,0x33,0x0,0x0,0xf,0xee,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x10,0x91,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x4e,0x5c,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x6b,0xa5,0x3,0x5,0x38,0xb2,0x0,0x0,0x35,0x88,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x51,0x29,0x3,0x41,0x45,0x12,0x0,0x0,0x12,0x2a,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x12,0xe2,0x3,0x4b,0x26,0xf2,0x0,0x0,0x13,0x9,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x44,0x93,0x3,0x65,0x26,0xf2,0x0,0x0,0x15,0xa1,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x15,0xc8,0x3,0x6a,0x66,0x2e,0x0,0x0,0x47,0xf3,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x46,0x74,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0xe0,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x29,0x59,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0xc3,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x17,0xa,0x3,0xa4,0x35,0xa5,0x0,0x0,0x37,0x46,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x37,0x16,0x3,0xa5,0x26,0xf2,0x0,0x0,0x17,0x31,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x49,0xd9,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x5c,0x93,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x5b,0x52,0x3,0xe4,0x25,0x5a,0x0,0x0,0x5b,0x1e,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x5a,0xea,0x3,0xe4,0x25,0x7a,0x0,0x0,0x5a,0xb6,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x7c,0x4,0x3,0xf6,0x9a,0x0,0x0,0x47,0x9e,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x14,0x93,0x4,0x15,0x75,0x22,0x0,0x0,0x12,0x51,0x4,0x17,0x65,0x22, + 0x0,0x0,0x12,0x7b,0x4,0x1c,0x68,0x69,0x0,0x0,0x13,0xe2,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0x14,0x4,0x31,0xff,0xe9,0x0,0x0,0x21,0xa7,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x24,0x7d,0x4,0x51,0x79,0xb1,0x0,0x0,0x5e,0x47,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x64,0x46,0x4,0x5b,0x53,0x1f,0x0,0x0,0x21,0x12,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x5a,0x8d,0x4,0x7d,0xb,0xa4,0x0,0x0,0x32,0xce,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x32,0xf9,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x2c,0x79,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x28,0x9c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x30,0x16,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xb,0x51,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x26,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2c,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x15,0x47,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x4a,0xf2,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x2b,0x66,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0xed,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1a,0x41,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x4b,0x1a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x43,0xb4,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x3e,0x40,0x5,0x18,0x5,0x95,0x0,0x0,0x65,0xb1,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x13,0x67,0x5,0x30,0xd3,0xe,0x0,0x0,0x31,0xb2,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x4a,0xcf,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x6a,0x46,0x5,0x5f,0x7b,0x59,0x0,0x0,0xe,0x6c,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x33,0x4f,0x5,0x88,0x2e,0xd9,0x0,0x0,0x59,0xe8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x46,0x96,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x62,0xe2,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x5f,0x2b,0x5,0xa5,0x3a,0x79,0x0,0x0,0x21,0xf5,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x5c,0x37,0x5,0xb2,0x16,0x79,0x0,0x0,0x54,0xe6,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x3b,0xc8,0x5,0xb3,0x5f,0x79,0x0,0x0,0x3c,0xb6,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x35,0x29,0x5,0xb8,0x5d,0xad,0x0,0x0,0x13,0x30,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x11,0xc9,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x12,0xa5,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3e,0xc6,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2f,0x6c,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x67,0xf9,0x5,0xd0,0x4f,0x11,0x0,0x0,0x68,0x91,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xd,0x8e,0x5,0xdf,0xba,0xba,0x0,0x0,0x68,0xcd,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x53,0xc0,0x6,0x7,0xd3,0xda,0x0,0x0,0x40,0x79,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2f,0x25,0x6,0x19,0x20,0x43,0x0,0x0,0x57,0x5f,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x31,0x84,0x6,0x38,0x9f,0x35,0x0,0x0,0x2f,0xc7,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1b,0x5e,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x2b,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x2b,0x88,0x6,0x6c,0xb8,0x3,0x0,0x0,0x66,0xba,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x3d,0x6d,0x6,0x74,0xe,0x6a,0x0,0x0,0x4f,0x2d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x3d,0xcc,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1a,0x7,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x34,0x33,0x6,0x81,0xb7,0x1f,0x0,0x0,0x30,0xe1,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x5b,0x86,0x6,0x96,0xa4,0x13,0x0,0x0,0x39,0x96,0x6,0x97,0x71,0x79, + 0x0,0x0,0x56,0xbc,0x6,0xc3,0xce,0xa3,0x0,0x0,0x5d,0xd2,0x6,0xce,0x41,0x63, + 0x0,0x0,0x3a,0x18,0x6,0xed,0xca,0xce,0x0,0x0,0x3b,0x50,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x30,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xe4,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x3d,0x9a,0x7,0x0,0x57,0x53,0x0,0x0,0x23,0x41,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x46,0x48,0x7,0x6,0x93,0xe3,0x0,0x0,0x6b,0x1e,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1b,0x2f,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x69,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1a,0xba,0x7,0x2a,0xb5,0xca,0x0,0x0,0x59,0x9c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x4a,0x58,0x7,0x35,0x7c,0x8a,0x0,0x0,0x40,0x7,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x50,0xcd,0x7,0x40,0xb5,0xe2,0x0,0x0,0x16,0x2c,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x2b,0x17,0x7,0x58,0x61,0xe5,0x0,0x0,0x3d,0xf9,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x10,0x17,0x7,0x70,0xb3,0xaa,0x0,0x0,0x38,0xa3,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x28,0x70,0x7,0x9e,0x50,0x1e,0x0,0x0,0x56,0xf,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x47,0xce,0x7,0xa3,0x63,0x9e,0x0,0x0,0x55,0x57,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x4d,0x33,0x7,0xa4,0x32,0x89,0x0,0x0,0x19,0xbf,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x66,0x83,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xc6,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x1,0xf6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x22,0x37,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x52,0x30,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x51,0xeb,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x33,0xc0,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x56,0x77,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3f,0xc8,0x8,0x0,0x3f,0x29,0x0,0x0,0x51,0x83,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x49,0xfd,0x8,0x31,0xf7,0xee,0x0,0x0,0xb,0x80,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x44,0x1c,0x8,0x60,0xe7,0xcd,0x0,0x0,0x62,0x83,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x4f,0x59,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0xb1,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x63,0xa6,0x8,0x9b,0xc,0x24,0x0,0x0,0x58,0x7b,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x41,0xb5,0x8,0xa3,0xdb,0xae,0x0,0x0,0x42,0x63,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x41,0xef,0x8,0xa4,0xb,0xae,0x0,0x0,0x42,0x29,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x32,0x89,0x8,0xa9,0xcf,0x35,0x0,0x0,0x29,0xd4,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x35,0xd0,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x7f,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x34,0xb1,0x8,0xf7,0xb3,0xda,0x0,0x0,0x39,0xe1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x43,0xd8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x2c,0x11,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x2c,0x45,0x9,0x49,0xfa,0x6a,0x0,0x0,0x2b,0xa9,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x2b,0xdd,0x9,0x4e,0xde,0x64,0x0,0x0,0x63,0xe9,0x9,0x50,0x63,0x15, + 0x0,0x0,0x4b,0x8f,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x69,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0xef,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0xbd,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x52,0xf3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x5c,0x9,0x88,0x63,0xa, + 0x0,0x0,0x28,0xc1,0x9,0x88,0x63,0x1a,0x0,0x0,0x28,0xe7,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x29,0xd,0x9,0x88,0x63,0x3a,0x0,0x0,0x29,0x33,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0xb0,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x9d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x4b,0x57,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x50,0x55,0x9,0xc2,0x33,0xa9,0x0,0x0,0x13,0x91,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x4a,0x9a,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2d,0x35,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xf,0x27,0xa,0xf,0x3d,0xb9,0x0,0x0,0xf,0x59,0xa,0x17,0x34,0x34, + 0x0,0x0,0x34,0xea,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x7d,0xa,0x41,0x77,0x3, + 0x0,0x0,0x39,0x4a,0xa,0x4e,0x21,0xe,0x0,0x0,0x19,0x63,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x3a,0x48,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x34,0x81,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x41,0x7d,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0xc8,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x65,0xf8,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x57,0xf2,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x5e,0x10,0xa,0x98,0x1f,0x89,0x0,0x0,0x2e,0x53,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2e,0xe,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x40,0xd7,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2d,0xb7,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x5,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2e,0x98,0xa,0xda,0x50,0x7e,0x0,0x0,0x64,0xbd,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xe,0x1e,0xa,0xea,0x46,0xf4,0x0,0x0,0x4b,0xbb,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2e,0xba,0xb,0xa,0x72,0xc9,0x0,0x0,0x30,0xb9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x68,0xb,0x1e,0xee,0xfe,0x0,0x0,0x48,0xc3,0xb,0x29,0x70,0x65, + 0x0,0x0,0x3a,0xb0,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0xd0,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0xbc,0xb,0x4e,0x19,0x54,0x0,0x0,0x44,0xe1,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0xb8,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0x2b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x46,0x19,0xb,0x9d,0xe,0xa2,0x0,0x0,0x2a,0xeb,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x19,0x39,0xb,0xab,0x6c,0xfa,0x0,0x0,0x57,0xcb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x5a,0x54,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x20,0xbf,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x3c,0x9,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3f,0x86,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x6a,0xee,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x50,0xff,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x5e,0xa7,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0x3b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xe,0xb0,0xc,0x33,0xeb,0xe2,0x0,0x0,0x5e,0xe7,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x38,0xce,0xc,0x42,0x70,0xde,0x0,0x0,0x23,0xfb,0xc,0x48,0x83,0xde, + 0x0,0x0,0x52,0x75,0xc,0x4a,0x5f,0x82,0x0,0x0,0x41,0x5,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x60,0x3b,0xc,0x77,0x67,0x19,0x0,0x0,0x38,0xfe,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x31,0x54,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xf0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x29,0xf9,0xc,0x90,0x26,0xb5,0x0,0x0,0x65,0x21,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x4e,0xd6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x23,0x8c,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x59,0x7b,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xa8,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x4c,0xe8,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x66,0xe6,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x51,0xc3,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x17,0x7c,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1a,0x80,0xd,0x11,0x45,0x1a,0x0,0x0,0x22,0xbe,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x68,0x22,0xd,0x4a,0x90,0xb2,0x0,0x0,0x55,0x27,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x69,0x16,0xd,0x60,0xef,0x6a,0x0,0x0,0x40,0xa7,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2d,0x77,0xd,0x77,0xa4,0xc0,0x0,0x0,0x37,0xe9,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x30,0x8a,0xd,0x88,0x48,0x23,0x0,0x0,0x29,0x9b,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x33,0x20,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x5c,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x69,0xdf,0xd,0xf9,0x90,0xe9,0x0,0x0,0x4c,0x56,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x68,0xec,0xe,0x20,0x13,0x12,0x0,0x0,0x38,0x54,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xf,0xb5,0xe,0x48,0xfa,0xca,0x0,0x0,0x24,0xc8,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x25,0x2e,0xe,0x48,0xfd,0xca,0x0,0x0,0x24,0xfb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x25,0x61,0xe,0x62,0x79,0x4,0x0,0x0,0x31,0x2b,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1b,0x1,0xe,0x7b,0xa1,0x23,0x0,0x0,0x45,0xd2,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2a,0xc2,0xe,0x98,0x18,0x54,0x0,0x0,0x22,0x7d,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x53,0x6a,0xe,0xbe,0x61,0x81,0x0,0x0,0x58,0xb3,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x58,0xe5,0xe,0xbe,0x61,0x83,0x0,0x0,0x59,0x17,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x59,0x49,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x3e,0x63,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x11,0xa7,0xe,0xe2,0x34,0x60,0x0,0x0,0x6a,0x9a,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x6a,0xc4,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xf9,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0xe0,0xe,0xf7,0xac,0xae,0x0,0x0,0xe,0xf4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x6b,0x4b,0xf,0x15,0xf4,0x85,0x0,0x0,0x40,0x3a,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x5f,0xad,0xf,0x17,0x9c,0x64,0x0,0x0,0x66,0x3d,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x4d,0xf0,0xf,0x29,0x4d,0x2a,0x0,0x0,0x3b,0x17,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x36,0xa5,0xf,0x30,0x6b,0x3,0x0,0x0,0x2a,0x2d,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x5b,0xd5,0xf,0x5a,0x14,0x2,0x0,0x0,0xd,0x53,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x11,0x2b,0xf,0x70,0xaa,0x1a,0x0,0x0,0x68,0x5e,0xf,0x74,0xd,0xca, + 0x0,0x0,0x54,0xba,0xf,0x85,0x7b,0xea,0x0,0x0,0x4e,0xfa,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x10,0xf0,0xf,0xbd,0xdc,0x15,0x0,0x0,0xc,0x75,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x53,0xe8,0xf,0xd3,0x41,0x72,0x0,0x0,0x32,0x4,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x42,0xe8,0xf,0xd9,0x8c,0xca,0x0,0x0,0x43,0x4e,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x43,0x1b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x43,0x81,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x34,0x5,0xf,0xe2,0xe9,0x49,0x0,0x0,0x69,0x67,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x4f,0x85,0xf,0xf5,0xeb,0x52,0x0,0x0,0x4f,0xb9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x4f,0xed,0xf,0xf5,0xeb,0x54,0x0,0x0,0x50,0x21,0x69,0x0,0x0,0x6b, + 0xcf,0x3,0x0,0x0,0x0,0xe,0x0,0x20,0x0,0x2d,0x0,0x20,0x4e,0x0,0x66,0x42, + 0x50,0x5c,0x6b,0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d, + 0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc4,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x92, + 0x0,0x50,0x0,0x44,0x0,0x46,0x30,0x6b,0x81,0xea,0x52,0xd5,0x59,0x9,0x63,0xdb, + 0x30,0x59,0x30,0x8b,0x30,0x6b,0x30,0x6f,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67, + 0x0,0x73,0x30,0x4c,0x5f,0xc5,0x89,0x81,0x30,0x67,0x30,0x59,0x30,0x2,0x0,0xa, + 0x0,0xa,0x6c,0x4e,0x75,0x28,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x30,0xd7,0x30,0xea,0x30,0xf3, + 0x30,0xbf,0x30,0xfc,0x30,0x6b,0x90,0x1,0x4f,0xe1,0x30,0x55,0x30,0x8c,0x30,0x5f, + 0x65,0x87,0x66,0xf8,0x30,0x6f,0x30,0x1,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x30,0xd5,0x30,0xa1,0x30,0xa4, + 0x30,0xeb,0x30,0x68,0x30,0x57,0x30,0x66,0x4f,0xdd,0x5b,0x58,0x30,0x55,0x30,0x8c, + 0x30,0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x30,0x6e,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8a,0x2d, + 0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x25,0x0,0x69,0x30,0x64,0x30,0x6e,0x30,0xa6,0x30,0xa7,0x30,0xa4,0x30,0xc8,0x0, + 0x20,0x30,0xb9,0x30,0xc6,0x30,0xfc,0x30,0xc8,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x75,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x50,0x24,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x30,0x1,0x0,0x25,0x0,0x69,0x30,0x1,0x0, + 0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25, + 0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x30,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x78,0x0, + 0x28,0x0,0x26,0x0,0x31,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0, + 0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35, + 0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x32,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0, + 0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0, + 0x26,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26, + 0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34, + 0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28, + 0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x36, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x78,0x0,0x28, + 0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38, + 0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30,0x6e,0x30,0xd0, + 0x30,0xfc,0x30,0xb8,0x30,0xe7,0x30,0xf3,0x60,0xc5,0x58,0x31,0x0,0x28,0x0,0x26, + 0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xcd, + 0x4f,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc,0x0,0x28, + 0x9e,0xc4,0x82,0x72,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x30,0xd5,0x30,0xa9,0x30,0xfc,0x30,0xab,0x30,0xb9,0x30,0x4c,0x59,0x6a,0x30, + 0x8f,0x30,0x8c,0x30,0x8b,0x30,0x68,0x81,0xea,0x52,0xd5,0x50,0x5c,0x6b,0x62,0x0, + 0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x5e,0x73,0x57,0x47,0x0,0x28,0x0,0x26,0x0,0x41,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x65,0xe2,0x5b,0x9a,0x50, + 0x24,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x65,0x87,0x66,0xf8,0x0,0x28,0x0,0x26,0x0,0x44, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x65,0xe2, + 0x5b,0x58,0x30,0x6e,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x92,0x95,0x8b, + 0x30,0x4f,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0xe2,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0, + 0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x67,0x0,0x5f,0x8c,0x30,0x7e, + 0x30,0x67,0x65,0xe9,0x90,0x1,0x30,0x8a,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xd5,0x30, + 0xa9,0x30,0xeb,0x30,0xc0,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x51,0x68,0x75,0x3b,0x97,0x62,0x30,0x6e,0x62,0xe1,0x59,0x27,0x88,0x68, + 0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x51,0x68,0x75,0x3b,0x97,0x62,0x88,0x68,0x79,0x3a,0x0,0x28,0x0, + 0x26,0x0,0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30, + 0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc,0x0,0x28,0x7d,0xd1,0x82,0x72,0x0,0x29,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xcf,0x30,0xfc,0x30,0xc9, + 0x0,0x20,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xd8,0x30,0xeb,0x30, + 0xd7,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x30,0xb9,0x30,0xc6,0x30,0xfc,0x30,0xbf,0x30,0xb9,0x0,0x20,0x30, + 0xd0,0x30,0xfc,0x30,0x92,0x96,0xa0,0x30,0x59,0x0,0x28,0x0,0x26,0x0,0x48,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x28, + 0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x65,0x74,0x65,0x70,0x50,0xd, + 0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x82,0x72,0x53,0xcd,0x8e, + 0xe2,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x30,0xad,0x30,0xfc,0x30,0xdc,0x30,0xfc,0x30,0xc9,0x30,0x6f,0x30, + 0xad,0x30,0xe3,0x30,0xd7,0x30,0xc1,0x30,0xe3,0x30,0x4c,0x5f,0xc5,0x89,0x81,0x0, + 0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x7d,0xda,0x5f,0x62,0x88,0xdc,0x95,0x93,0x0,0x28, + 0x0,0x26,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x30,0xe1,0x30,0xc7,0x30,0xa3,0x30,0xa2,0x0,0x28,0x0,0x26,0x0,0x4d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xdf,0x30, + 0xe5,0x30,0xfc,0x30,0xc8,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x67,0x0,0x8f,0xd1,0x50,0x8d,0x88,0xdc,0x95, + 0x93,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x65,0xb0,0x89,0x8f,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x65,0xb0,0x89,0x8f,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x4e,0x0,0x66,0x42,0x50,0x5c,0x6b,0x62,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x8d,0x75,0x1f,0x0, + 0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x74,0xb0,0x58,0x83,0x8a,0x2d,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x50,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x47,0x0, + 0x42,0x0,0x28,0x30,0xb0,0x30,0xec,0x30,0xfc,0x30,0xb9,0x30,0xb1,0x30,0xfc,0x30, + 0xeb,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x93,0x32, + 0x97,0xf3,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x52,0x4d,0x30,0x6e,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x30,0x92,0x51,0x8d,0x8a,0xad,0x30,0x7f,0x8f,0xbc,0x30,0x7f,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x52,0x4a,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xb7,0x30,0xa7,0x30,0xfc,0x30, + 0xc0,0x30,0xfc,0x30,0x92,0x52,0x4a,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e, + 0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x92,0x59,0x9,0x66,0xf4,0x53,0xef,0x80,0xfd, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x51, + 0x48,0x98,0x2d,0x30,0x7e,0x30,0x67,0x5d,0xfb,0x30,0x4d,0x62,0x3b,0x30,0x59,0x0, + 0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x53,0xf3,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x30,0x92, + 0x5d,0xe6,0x0,0x41,0x0,0x4c,0x0,0x54,0x30,0x78,0x59,0x9,0x63,0xdb,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x30,0xbd,0x30,0xd5, + 0x30,0xc8,0x30,0xa6,0x30,0xa7,0x30,0xa2,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c, + 0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xb7,0x30,0xa7,0x30,0xfc,0x30,0xc0,0x30,0xfc, + 0x30,0x92,0x90,0x78,0x62,0x9e,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x8a,0x2d,0x5b,0x9a,0x0,0x28, + 0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x53,0xc2,0x71, + 0x67,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x6b, + 0x63,0x65,0xb9,0x5f,0x62,0x30,0xd4,0x30,0xaf,0x30,0xbb,0x30,0xeb,0x0,0x28,0x30, + 0xa2,0x30,0xb9,0x30,0xda,0x30,0xaf,0x30,0xc8,0x6b,0xd4,0x30,0x92,0x7d,0xad,0x63, + 0x1,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78, + 0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xd3,0x30,0xc7,0x30, + 0xaa,0x30,0x68,0x54,0xc,0x67,0x1f,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x30,0xc4,0x30,0xfc,0x30,0xeb,0x0,0x28,0x0,0x26,0x0,0x54, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x30,0xb9,0x30, + 0xc6,0x30,0xfc,0x30,0xbf,0x30,0xb9,0x30,0xd0,0x30,0xfc,0x30,0x6e,0x30,0xa2,0x30, + 0xa4,0x30,0xb3,0x30,0xf3,0x30,0x92,0x66,0xf4,0x65,0xb0,0x0,0x28,0x0,0x26,0x0, + 0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x57,0x82,0x76,0xf4,0x54,0xc,0x67,0x1f,0x0, + 0x28,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x29,0x0,0x28,0x0, + 0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x88,0x68,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc,0x0,0x28, + 0x76,0x7d,0x82,0x72,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e,0x88,0x68,0x79, + 0x3a,0x50,0xd,0x73,0x87,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x28,0x30,0xb7,0x30,0xb9,0x30,0xc6,0x30,0xe0, + 0x65,0xe2,0x5b,0x9a,0x50,0x24,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x28,0x7a, + 0x7a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x25,0x4f,0x4e,0x30,0x44,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28, + 0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x31,0x0,0x2e,0x0, + 0x35,0x0,0x25,0x4f,0x4e,0x30,0x44,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x25,0x4f,0x4e,0x30,0x44,0x0,0x52, + 0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25, + 0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0, + 0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e, + 0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f, + 0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e, + 0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69, + 0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33, + 0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0, + 0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x65,0x74,0x65, + 0x70,0x50,0xd,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33, + 0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xfc,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30,0x67,0x4f,0x7f, + 0x75,0x28,0x53,0xef,0x80,0xfd,0x30,0x6a,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xa4, + 0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x4c,0x89,0x8b,0x30,0x64,0x30,0x4b,0x30,0x8a, + 0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30,0x92,0x0,0x3c,0x0,0x61,0x0,0x20, + 0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74, + 0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x30,0xc0,0x30,0xa6,0x30,0xf3, + 0x30,0xed,0x30,0xfc,0x30,0xc9,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x30,0x57, + 0x30,0x66,0x30,0x1,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x20,0x30,0xc7, + 0x30,0xa3,0x30,0xec,0x30,0xaf,0x30,0xc8,0x30,0xea,0x30,0x6b,0x89,0xe3,0x51,0xcd, + 0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79, + 0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68, + 0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74, + 0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f, + 0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65, + 0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e, + 0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65, + 0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x43,0x0,0x50,0x0, + 0x49,0x30,0xb7,0x30,0xe3,0x30,0xc3,0x30,0xc8,0x30,0xc0,0x30,0xa6,0x30,0xf3,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68, + 0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30,0x6e,0x30,0xd0,0x30,0xfc,0x30,0xb8,0x30, + 0xe7,0x30,0xf3,0x60,0xc5,0x58,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xe2,0x5b,0x9a,0x30,0x6e,0x30,0xc7,0x30, + 0xa3,0x30,0xb9,0x30,0xaf,0x30,0x92,0x8f,0xfd,0x52,0xa0,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xb0,0x89,0x8f,0x30,0x6e,0x30,0xc7,0x30,0xa3, + 0x30,0xb9,0x30,0xaf,0x30,0x92,0x8f,0xfd,0x52,0xa0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x30,0xa2,0x30,0xc9,0x30,0xd0,0x30,0xf3,0x30,0xb9,0x30,0xc9,0x30,0xbb,0x30,0xaf, + 0x30,0xbf,0x30,0xfc,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0x59,0x30,0x79,0x30,0x66,0x30,0x6e,0x30, + 0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x30,0x59,0x30,0x79,0x30,0x66,0x30,0x6e,0x30,0xa4,0x30, + 0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41, + 0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x3,0x68,0x53,0xe4,0x30,0x44,0x30,0xd1,0x30,0xbd,0x30,0xb3,0x30,0xf3, + 0x30,0x6e,0x30,0xa8,0x30,0xdf,0x30,0xe5,0x30,0xec,0x30,0xfc,0x30,0xbf,0x30,0xfc, + 0x0,0xa,0x0,0xa,0x84,0x57,0x80,0x5,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x47, + 0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x32,0x4e,0xe5,0x96,0x4d,0x30,0x67,0x30,0xea,0x30,0xea, + 0x30,0xfc,0x30,0xb9,0x30,0x55,0x30,0x8c,0x30,0x66,0x30,0x44,0x30,0x7e,0x30,0x59, + 0x30,0x2,0x8a,0x73,0x30,0x57,0x30,0x4f,0x30,0x6f,0x0,0x20,0x0,0x4c,0x0,0x49, + 0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x30,0x92,0x30,0x54, + 0x89,0xa7,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f, + 0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, + 0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72, + 0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c, + 0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37, + 0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b, + 0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72, + 0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68, + 0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c, + 0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65, + 0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20, + 0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, + 0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75, + 0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e, + 0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e, + 0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29, + 0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65, + 0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75, + 0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74, + 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20, + 0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20, + 0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65, + 0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20, + 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65, + 0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63, + 0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f, + 0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43, + 0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e, + 0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30, + 0x92,0x7d,0x42,0x4e,0x86,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b,0xff,0x1f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4f,0x7f,0x75,0x28,0x4e,0x2d,0x30,0x6e, + 0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x92,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x0,0x20, + 0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b, + 0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x81,0xea,0x52,0xd5,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75, + 0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0, + 0x54,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x0,0x28,0x0, + 0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x54,0x0, + 0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0, + 0x56,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xd9,0x30, + 0xfc,0x30,0xb7,0x30,0xc3,0x30,0xaf,0x0,0x20,0x30,0xbb,0x30,0xaf,0x30,0xbf,0x30, + 0xfc,0x0,0x20,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x30,0xc8,0x30,0xec,0x30,0xfc,0x30,0xb9,0x95,0x8b,0x59,0xcb,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x30,0xd6,0x30,0xed,0x30,0xc3,0x30,0xaf,0x30,0xb5,0x30,0xa4, + 0x30,0xba,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x30,0xd0,0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x30,0xd0,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28, + 0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xc9, + 0x30,0xe9,0x30,0xa4,0x30,0xd6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x30,0xaa,0x30,0xfc,0x30,0xd0,0x30,0xfc,0x30,0xb9,0x30,0xad,0x30, + 0xe3,0x30,0xf3,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61, + 0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20, + 0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x31,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x30,0xc7,0x30,0xd0, + 0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x30, + 0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x56,0x90,0x78,0x62,0x9e,0x30,0x57, + 0x30,0x5f,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x6b,0x57,0xfa,0x30,0x65,0x30,0x4f, + 0x0,0x43,0x0,0x50,0x0,0x55,0x30,0xbf,0x30,0xa4,0x30,0xd7,0x30,0x6e,0x30,0xd5, + 0x30,0xa3,0x30,0xeb,0x30,0xbf,0x30,0xfc,0x6a,0x5f,0x80,0xfd,0x30,0x6f,0x30,0x1, + 0x4f,0x7f,0x75,0x28,0x4e,0x2d,0x30,0x6e,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x67, + 0x30,0x6f,0x71,0x21,0x52,0xb9,0x30,0x6b,0x30,0x6a,0x30,0x63,0x30,0x66,0x30,0x44, + 0x30,0x7e,0x30,0x59,0x30,0x2,0x0,0xa,0x0,0xa,0x30,0x53,0x30,0x8c,0x30,0x6b, + 0x30,0x88,0x30,0x8a,0x30,0x1,0x90,0x78,0x62,0x9e,0x30,0x57,0x30,0x5f,0x30,0xde, + 0x30,0xb7,0x30,0xf3,0x30,0x68,0x4e,0x92,0x63,0xdb,0x60,0x27,0x30,0x6e,0x30,0x6a, + 0x30,0x44,0x0,0x43,0x0,0x50,0x0,0x55,0x30,0x4c,0x90,0x78,0x62,0x9e,0x30,0x67, + 0x30,0x4d,0x30,0x7e,0x30,0x59,0x30,0x2,0x30,0x57,0x30,0x4b,0x30,0x57,0x30,0x1, + 0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x6e,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53, + 0x30,0x84,0x4e,0xd6,0x30,0x6e,0x30,0xbd,0x30,0xd5,0x30,0xc8,0x30,0xa6,0x30,0xa7, + 0x30,0xa2,0x30,0x68,0x4e,0x92,0x63,0xdb,0x60,0x27,0x30,0x4c,0x30,0x6a,0x30,0x44, + 0x58,0x34,0x54,0x8,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30,0x2, + 0x0,0xa,0x0,0xa,0x30,0x53,0x30,0x6e,0x8a,0x2d,0x5b,0x9a,0x30,0x92,0x67,0x9, + 0x52,0xb9,0x30,0x6b,0x30,0x59,0x30,0x8b,0x30,0x53,0x30,0x68,0x30,0x6f,0x51,0x6c, + 0x5f,0xf,0x30,0x6b,0x30,0x6f,0x30,0xb5,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x30,0x55, + 0x30,0x8c,0x30,0x66,0x30,0x4a,0x30,0x89,0x30,0x5a,0x30,0x1,0x30,0xd0,0x30,0xb0, + 0x30,0xec,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x30,0x6f,0x71,0x21,0x52,0xb9,0x30,0x68, + 0x30,0x57,0x30,0x66,0x4e,0x2d,0x6b,0x62,0x30,0x55,0x30,0x8c,0x30,0x8b,0x53,0xef, + 0x80,0xfd,0x60,0x27,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50,0x0,0x55,0x30,0xbf,0x30,0xa4, + 0x30,0xd7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x30,0xad,0x30,0xe3,0x30,0xf3,0x30,0xbb,0x30,0xeb,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xab,0x30, + 0xfc,0x30,0xc9,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x30, + 0xab,0x30,0xfc,0x30,0xc8,0x30,0xea,0x30,0xc3,0x30,0xb8,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25, + 0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x30,0xab,0x30,0xfc,0x30,0xc8,0x30,0xea,0x30,0xc3,0x30,0xb8,0x30,0xa4,0x30, + 0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xab,0x30,0xbb,0x30,0xc3, + 0x30,0xc8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xab,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x30,0xab,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x53,0x58,0x82,0x72,0x30,0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc, + 0x75,0x28,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xe9,0x30,0xb9,0x30,0xc8,0x30,0x92, + 0x59,0x9,0x66,0xf4,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xc1,0x30,0xe3,0x30,0xf3,0x30,0xcd, + 0x30,0xeb,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x42,0x0,0x50,0x0,0x42,0x30,0xc1,0x30,0xa7,0x30,0xc3,0x30,0xaf,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x5d,0xe6,0x30, + 0xaf,0x30,0xea,0x30,0xc3,0x30,0xaf,0x30,0x67,0x30,0xde,0x30,0xa6,0x30,0xb9,0x30, + 0x92,0x30,0xad,0x30,0xe3,0x30,0xd7,0x30,0xc1,0x30,0xe3,0x30,0x57,0x30,0x7e,0x30, + 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x8a,0x2d,0x5b,0x9a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x7d,0x9a, + 0x88,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30, + 0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30, + 0xfc,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30, + 0xfc,0x30,0xe9,0x30,0xfc,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb3,0x30,0xf3,0x30, + 0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x30,0x6e,0x30,0xbf,0x30,0xa4,0x30,0xe0,0x30, + 0xb9,0x30,0xbf,0x30,0xf3,0x30,0xd7,0x30,0x92,0x4f,0xee,0x6b,0x63,0x30,0x67,0x30, + 0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x30,0xd3,0x30,0xc7,0x30,0xaa, + 0x30,0xec,0x30,0xf3,0x30,0xc0,0x30,0xe9,0x30,0xfc,0x30,0x4c,0x52,0x1d,0x67,0x1f, + 0x53,0x16,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0, + 0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xab,0x30, + 0xb9,0x30,0xbf,0x30,0xe0,0x0,0x20,0x0,0x28,0x59,0x27,0x5b,0xb9,0x91,0xcf,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xab,0x30, + 0xb9,0x30,0xbf,0x30,0xe0,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xb7,0x30,0xea,0x30,0xf3,0x30, + 0xc0,0x30,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x30,0xaf, + 0x30,0xe9,0x30,0xb9,0x30,0xbf,0x30,0xfc,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20, + 0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x4d,0x0,0x46,0x0, + 0x20,0x0,0x28,0x30,0xaf,0x30,0xe9,0x30,0xb9,0x30,0xbf,0x30,0xfc,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x65,0xe2, + 0x5b,0x9a,0x50,0x24,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x5d,0xee,0x52,0x6,0x0,0x29, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x71,0x21,0x52,0xb9,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xc7,0x30,0xa3,0x30, + 0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x4c,0x4f,0x5c,0x62, + 0x10,0x30,0x55,0x30,0x8c,0x30,0x7e,0x30,0x57,0x30,0x5f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x4c,0x65,0xe2,0x30,0x6b, + 0x5b,0x58,0x57,0x28,0x30,0x57,0x30,0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x30,0xc7,0x30, + 0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6e,0x30, + 0xb5,0x30,0xa4,0x30,0xba,0x30,0x4c,0x59,0x27,0x30,0x4d,0x30,0x59,0x30,0x4e,0x30, + 0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x30,0xc7,0x30,0xa3, + 0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6f,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x47,0x0,0x42,0x30,0x92,0x8d,0x85,0x30,0x48,0x30,0x8b, + 0x30,0x53,0x30,0x68,0x30,0x6f,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32, + 0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xb5,0x30,0xa4,0x30,0xba,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30, + 0xc7,0x30,0xa3,0x30,0xb9,0x30,0xd7,0x30,0xec,0x30,0xa4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8a,0x2d,0x5b,0x9a,0x30,0x92,0x4f,0xdd,0x5b, + 0x58,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x7d,0x42,0x4e,0x86,0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4e,0xa,0x66,0xf8,0x30,0x4d, + 0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xea,0x30,0xbb,0x30,0xc3, + 0x30,0xc8,0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4e,0xca,0x5f,0x8c,0x30,0x1,0x30,0x53, + 0x30,0x6e,0x30,0xe1,0x30,0xc3,0x30,0xbb,0x30,0xfc,0x30,0xb8,0x30,0x92,0x88,0x68, + 0x79,0x3a,0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69, + 0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x52,0xd5,0x76,0x84,0x51,0x8d, + 0x30,0xb3,0x30,0xf3,0x30,0xd1,0x30,0xa4,0x30,0xeb,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x5b,0xb9,0x91,0xcf,0x53, + 0xef,0x59,0x9,0x0,0x29,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0, + 0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e, + 0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e, + 0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x30,0x6e,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x53,0xd6,0x30,0x8a,0x51,0xfa,0x30,0x59,0x0,0x28,0x0,0x26, + 0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30, + 0x6a,0x30,0x57,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x7d,0x42,0x4e,0x86,0x0,0x28,0x0,0x26,0x0,0x58, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x38,0x0,0x36,0x0,0x46,0x30,0xa4,0x30,0xe1,0x30, + 0xfc,0x30,0xb8,0x30,0x6b,0x30,0xa8,0x30,0xaf,0x30,0xb9,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x48,0x30,0x6e,0x30, + 0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x90,0x23,0x64,0x3a,0x6a,0x5f,0x80,0xfd,0x0, + 0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x67,0x9,0x52,0xb9,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x67,0x9,0x52,0xb9,0x0,0x28,0x73,0xfe,0x57, + 0x30,0x66,0x42,0x95,0x93,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20, + 0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x30,0xc8,0x30,0xec,0x30,0xfc,0x30,0xb9,0x7d,0x42,0x4e,0x86,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x51, + 0x68,0x75,0x3b,0x97,0x62,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x30,0x92,0x51,0x65,0x52, + 0x9b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72, + 0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xa8, + 0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xec, + 0x30,0xf3,0x30,0xc0,0x30,0xe9,0x30,0xfc,0x30,0x6e,0x52,0x1d,0x67,0x1f,0x53,0x16, + 0x30,0xa8,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x65,0xe2,0x5b,0x58,0x30,0x6e,0x30,0xa4,0x30,0xe1, + 0x30,0xfc,0x30,0xb8,0x30,0x92,0x95,0x8b,0x30,0x4f,0x0,0x28,0x66,0xf8,0x30,0x4d, + 0x8f,0xbc,0x30,0x7f,0x79,0x81,0x6b,0x62,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x57, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x7d,0x42,0x4e,0x86,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x0,0x33,0x30,0x6e,0x7e,0x26,0x6a,0x2a,0x6b,0xd4,0x30,0x92,0x5f,0x37, + 0x52,0x36,0x88,0x68,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34, + 0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x44,0x0, + 0x44,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x4d,0x30,0xb7,0x30,0xf3,0x30,0xbb,0x30,0xc9, + 0x30,0xe9,0x30,0xa4,0x30,0xd0,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x65, + 0x0,0x69,0x0,0x72,0x0,0x79,0x0,0x6f,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x30,0xcd,0x30, + 0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30, + 0xd0,0x30,0x6e,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x6b,0x59,0x31,0x65,0x57,0x30, + 0x57,0x30,0x7e,0x30,0x57,0x30,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x30,0x6e,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30, + 0xa2,0x30,0xc3,0x30,0xd7,0x30,0x6b,0x59,0x31,0x65,0x57,0x30,0x57,0x30,0x7e,0x30, + 0x57,0x30,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90,0x1f,0x30, + 0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x81,0xf4,0x54,0x7d,0x76,0x84, + 0x30,0x6a,0x30,0xa8,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30, + 0xeb,0x54,0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x30,0xd5,0x30,0xa3,0x30,0xeb,0x30,0xbf,0x30,0xfc,0x65,0xb9, + 0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x5b,0xb9, + 0x91,0xcf,0x56,0xfa,0x5b,0x9a,0x0,0x29,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x30,0xd5,0x30,0xed,0x30,0xc3,0x30,0xd4,0x30,0xfc,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xd5,0x30,0xed, + 0x30,0xc3,0x30,0xd4,0x30,0xfc,0xff,0xf,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xd5,0x30,0xed,0x30,0xc3,0x30,0xd4,0x30, + 0xfc,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46, + 0x0,0x6c,0x0,0x75,0x0,0x78,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x51,0x68, + 0x75,0x3b,0x97,0x62,0x30,0x6e,0x62,0xe1,0x59,0x27,0x88,0x68,0x79,0x3a,0x30,0xe2, + 0x30,0xfc,0x30,0xc9,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x97,0xf3,0x91,0xcf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xb0,0x30,0xec,0x30,0xfc,0x30,0xb9,0x30,0xb1, + 0x30,0xfc,0x30,0xeb,0x59,0x9,0x63,0xdb,0x30,0xbf,0x30,0xa4,0x30,0xd7,0x0,0x28, + 0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0, + 0x44,0x0,0x44,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30, + 0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x48,0x0,0x44,0x0,0x49,0x30,0xc7,0x30,0xa3, + 0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6f,0x0,0x34, + 0x0,0x47,0x0,0x42,0x30,0x92,0x8d,0x85,0x30,0x48,0x30,0x8b,0x30,0x53,0x30,0x68, + 0x30,0x6f,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48, + 0x0,0x44,0x0,0x49,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0, + 0x35,0x0,0x31,0x0,0x32,0x4e,0xe5,0x59,0x16,0x30,0x6e,0x30,0xbb,0x30,0xaf,0x30, + 0xbf,0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x92,0x63,0x1,0x30,0x64,0x0,0x48,0x0, + 0x44,0x0,0x49,0x30,0x7e,0x30,0x5f,0x30,0x6f,0x0,0x48,0x0,0x44,0x0,0x58,0x30, + 0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6f,0x30,0xb5,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x30,0x55,0x30,0x8c,0x30,0x66,0x30,0x44,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x44, + 0x0,0x58,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xcf,0x30, + 0xfc,0x30,0xc9,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xc7, + 0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30, + 0xaf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x30,0xcf,0x30,0xfc,0x30,0xc9,0x0,0x20,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x30, + 0xcf,0x30,0xfc,0x30,0xc9,0x30,0xa6,0x30,0xa7,0x30,0xa2,0x30,0x4c,0x52,0x29,0x75, + 0x28,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xd8,0x30,0xc3,0x30,0xc9,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x9a,0xd8,0x30,0x55,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0,0x69,0x0, + 0x44,0x0,0x50,0x0,0x49,0x30,0xb9,0x30,0xb1,0x30,0xfc,0x30,0xea,0x30,0xf3,0x30, + 0xb0,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xc4,0x30,0xfc, + 0x30,0xeb,0x0,0x20,0x30,0xd0,0x30,0xfc,0x30,0x92,0x96,0xa0,0x30,0x59,0x0,0x28, + 0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20, + 0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x30,0xb0,0x30,0xe9, + 0x30,0xd5,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49, + 0x0,0x53,0x0,0x41,0x30,0xe1,0x30,0xe2,0x30,0xea,0x62,0xe1,0x5f,0x35,0x30,0xab, + 0x30,0xfc,0x30,0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x30,0xab,0x30,0xfc,0x30, + 0xc9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xa2,0x30,0xa4,0x30,0xb3,0x30,0xf3,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xa4,0x30, + 0xe1,0x30,0xfc,0x30,0xb8,0x5f,0x62,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x65,0x52, + 0x9b,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x51,0x85,0x85,0x35,0x30, + 0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x4e,0xd,0x6b,0x63,0x30,0x6a,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x4e,0xd,0x6b,0x63,0x30,0x6a,0x8a,0x2d,0x5b,0x9a,0x30,0x67,0x30, + 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xb8,0x30,0xe7,0x30, + 0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x30,0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30, + 0xa3,0x30,0xc3,0x30,0xaf,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30, + 0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0, + 0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xb8,0x30,0xe7,0x30,0xa4,0x30, + 0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x30,0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30, + 0xc3,0x30,0xaf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x31,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x30,0xc7,0x30,0xd0, + 0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x30, + 0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x8a,0x0,0x8a,0x9e,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x59,0x27, + 0x30,0x4d,0x30,0x6a,0x30,0xd6,0x30,0xed,0x30,0xc3,0x30,0xaf,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x92,0x56,0xfa,0x5b,0x9a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x30,0x84,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xc9,0x30, + 0xe9,0x30,0xa4,0x30,0xd6,0x30,0x4c,0x5b,0x58,0x57,0x28,0x30,0x57,0x30,0x7e,0x30, + 0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x51,0x65,0x52,0x9b,0x30, + 0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x51,0xfa,0x52,0x9b,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44, + 0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x51,0x49,0x78,0xc1,0x6c,0x17,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x51, + 0x49,0x78,0xc1,0x6c,0x17,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x51,0x49, + 0x78,0xc1,0x6c,0x17,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xde,0x30,0xb7,0x30,0xf3, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x30,0xc7,0x30,0xa3,0x30,0xec,0x30,0xaf, + 0x30,0xc8,0x30,0xea,0x30,0x6b,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0x4c,0x30,0x6a, + 0x30,0x44,0x30,0x5f,0x30,0x81,0x30,0x1,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0xc, + 0x0,0x25,0x0,0x68,0x0,0x73,0x30,0xd,0x30,0x6f,0x4f,0x7f,0x75,0x28,0x30,0x67, + 0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x4f,0x7f,0x75,0x28,0x53,0xef, + 0x80,0xfd,0x30,0x6a,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x6b,0x52,0x7,0x30,0x8a, + 0x66,0xff,0x30,0x48,0x30,0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73, + 0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e, + 0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f, + 0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67, + 0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0xbf,0x30,0xa4,0x30,0xd7, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x30,0xde,0x30,0xb7,0x30,0xf3,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x30,0x4c,0x30,0xa4,0x30,0xf3,0x30, + 0xb9,0x30,0xc8,0x30,0xfc,0x30,0xeb,0x30,0x55,0x30,0x8c,0x30,0x66,0x30,0x8b,0x30, + 0x4b,0x30,0x1,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x30,0x6b,0x5b,0xfe,0x5f,0xdc,0x30,0x57,0x30,0x5f,0x30,0xcd,0x30,0xc3,0x30, + 0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x30,0x6b,0x63,0xa5,0x7d,0x9a,0x30,0x55,0x30, + 0x8c,0x30,0x66,0x30,0x8b,0x30,0x4b,0x78,0xba,0x8a,0x8d,0x30,0x57,0x30,0x66,0x30, + 0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30, + 0xeb,0x30,0x4c,0x5b,0x58,0x57,0x28,0x30,0x57,0x30,0x1,0x8a,0xad,0x30,0x7f,0x53, + 0xd6,0x30,0x8a,0x53,0xef,0x80,0xfd,0x30,0x67,0x30,0x42,0x30,0x8b,0x30,0x53,0x30, + 0x68,0x30,0x92,0x78,0xba,0x8a,0x8d,0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30, + 0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x4c,0x66,0xf8, + 0x30,0x4d,0x8f,0xbc,0x30,0x7f,0x53,0xef,0x80,0xfd,0x30,0x6a,0x30,0xc7,0x30,0xa3, + 0x30,0xec,0x30,0xaf,0x30,0xc8,0x30,0xea,0x30,0x6b,0x4f,0xdd,0x5b,0x58,0x30,0x55, + 0x30,0x8c,0x30,0x66,0x30,0x44,0x30,0x8b,0x30,0x53,0x30,0x68,0x30,0x92,0x78,0xba, + 0x8a,0x8d,0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30, + 0xe1,0x30,0xe2,0x30,0xea,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x30,0xd1,0x30,0xc3,0x30, + 0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f, + 0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20, + 0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xe2, + 0x30,0xcb,0x30,0xbf,0x30,0xfc,0x30,0x6e,0x30,0xb9,0x30,0xea,0x30,0xfc,0x30,0xd7, + 0x30,0xe2,0x30,0xfc,0x30,0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x30,0xde,0x30,0xa6,0x30,0xb9,0x30,0x6e,0x61,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x30,0xde,0x30,0xa6,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xcd,0x30,0xc3,0x30,0xc8,0x30,0xef, + 0x30,0xfc,0x30,0xaf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x30,0xcd,0x30,0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x30,0xa2,0x30,0xc0, + 0x30,0xd7,0x30,0xbf,0x30,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65, + 0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xcd,0x30, + 0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x0,0x20,0x30,0xbf,0x30,0xa4,0x30, + 0xd7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x65,0xb0,0x89,0x8f,0x30,0x6e,0x30,0xa4,0x30,0xe1,0x30, + 0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0x4c,0x89, + 0x8b,0x30,0x64,0x30,0x4b,0x30,0x8a,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x30, + 0x6a,0x30,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x28,0x9a,0xd8,0x7c,0xbe,0x5e,0xa6,0x53,0x16, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x30,0xaa,0x30,0xd5,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x30,0xaa,0x30,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33, + 0x0,0x2e,0x0,0x30,0x30,0xb3,0x30,0xa2,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x47, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x30, + 0xb3,0x30,0xa2,0x0,0x29,0x0,0x20,0x30,0xec,0x30,0xf3,0x30,0xc0,0x30,0xe9,0x30, + 0xfc,0x30,0x4c,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30, + 0x5b,0x30,0x93,0x30,0x2,0x52,0x25,0x30,0x6e,0x30,0xec,0x30,0xf3,0x30,0xc0,0x30, + 0xe9,0x30,0xfc,0x30,0x92,0x4f,0x7f,0x75,0x28,0x30,0x57,0x30,0x66,0x30,0x4f,0x30, + 0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x30,0xb7,0x30,0xa7,0x30,0xfc,0x30,0xc0,0x30,0xfc,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8a,0x2d,0x5b,0x9a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x4e,0xd6,0x30,0x6e,0x54,0x68,0x8f,0xba,0x30,0xc7,0x30,0xd0,0x30,0xa4, + 0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4e,0xd6,0x30,0x6e,0x30,0xea,0x30,0xe0, + 0x30,0xfc,0x30,0xd0,0x30,0xd6,0x30,0xeb,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xa,0x66,0xf8, + 0x30,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x50,0x0,0x49,0x0,0x54,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d, + 0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x30,0xab,0x30,0xfc,0x30,0xc9,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xd1,0x30,0xe9,0x30, + 0xec,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xd1,0x30,0xe9,0x30,0xec,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x30,0xd1,0x30,0xe9,0x30,0xec,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xd1,0x30,0xe9,0x30,0xec,0x30,0xeb,0x30, + 0xdd,0x30,0xfc,0x30,0xc8,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x89,0xaa,0x30,0xc7,0x30, + 0xa3,0x30,0xb9,0x30,0xaf,0x30,0x68,0x5b,0x50,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30, + 0xaf,0x30,0x6e,0x30,0xbf,0x30,0xa4,0x30,0xe0,0x30,0xb9,0x0,0x20,0x30,0xbf,0x30, + 0xf3,0x30,0xd7,0x30,0x4c,0x4e,0x0,0x81,0xf4,0x30,0x57,0x30,0x7e,0x30,0x5b,0x30, + 0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x5b,0x9f,0x88,0x4c,0x30,0x92,0x4e,0x0,0x66,0x42,0x50,0x5c,0x6b, + 0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x65,0xe2,0x5b,0x9a,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x67, + 0x9,0x52,0xb9,0x30,0x6a,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x54,0xd,0x30, + 0x92,0x63,0x7,0x5b,0x9a,0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30, + 0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x2f,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x74,0xb0,0x58,0x83,0x8a,0x2d,0x5b, + 0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x44,0x0,0x45,0x0,0x4c,0x30,0x92,0x62,0xbc,0x30,0x59,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x30,0x92, + 0x62,0xbc,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72, + 0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x44,0x0,0x6e,0x30,0x67,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30, + 0xa6,0x0,0x20,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x30,0x6b,0x62,0x3b,0x30,0x8a,0x30, + 0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x30,0xad,0x30,0xfc,0x30,0x7e,0x30,0x5f,0x30,0x6f,0x4e, + 0x2d,0x30,0xaf,0x30,0xea,0x30,0xc3,0x30,0xaf,0x30,0x67,0x30,0xde,0x30,0xa6,0x30, + 0xb9,0x30,0x92,0x89,0xe3,0x65,0x3e,0x30,0x57,0x30,0x7e,0x30,0x59,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x30,0xad,0x30,0xfc, + 0x30,0x67,0x30,0xde,0x30,0xa6,0x30,0xb9,0x30,0x92,0x89,0xe3,0x65,0x3e,0x30,0x57, + 0x30,0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72, + 0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x90,0x32,0x88,0x4c,0x72,0xb6,0x6c,0xc1,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65, + 0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x7b,0x2c, + 0x56,0xdb,0x0,0x49,0x0,0x44,0x0,0x45,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed, + 0x30,0xfc,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e, + 0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x68,0x4f,0x4d,0x7f,0x6e,0x30,0x92,0x4f,0xdd, + 0x5b,0x58,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69, + 0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x28,0x30,0xab,0x30,0xe9,0x30,0xfc,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26, + 0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x52,0x0,0x50,0x0,0x4d,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52,0x0,0x61, + 0x0,0x77,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xec,0x30, + 0xf3,0x30,0xc0,0x30,0xe9,0x30,0xfc,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x65,0xb0,0x89, + 0x8f,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x30,0x92,0x30,0xd1,0x30,0xfc,0x30, + 0xc6,0x30,0xa3,0x30,0xb7,0x30,0xe7,0x30,0xf3,0x52,0x6,0x52,0x72,0x30,0x57,0x30, + 0x1,0x30,0xd5,0x30,0xa9,0x30,0xfc,0x30,0xde,0x30,0xc3,0x30,0xc8,0x30,0x92,0x5f, + 0xc5,0x30,0x5a,0x30,0x57,0x30,0x68,0x30,0x44,0x30,0x66,0x30,0x4f,0x30,0x60,0x30, + 0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52, + 0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69, + 0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65, + 0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x5b,0x9f,0x88,0x4c,0x30,0x92,0x51,0x8d,0x95,0x8b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x30,0xcf,0x30,0xfc, + 0x30,0xc9,0x30,0xa6,0x30,0xa7,0x30,0xa2,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4f,0xdd,0x5b,0x58,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x30,0x53,0x30,0x8c,0x30,0x89,0x30,0x6e,0x8a,0x2d,0x5b, + 0x9a,0x30,0x92,0x30,0xb0,0x30,0xed,0x30,0xfc,0x30,0xd0,0x30,0xeb,0x65,0xe2,0x5b, + 0x9a,0x50,0x24,0x30,0x68,0x30,0x57,0x30,0x66,0x4f,0xdd,0x5b,0x58,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x30,0xbb,0x30,0xaf,0x30,0xbf,0x30,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x30,0xd7,0x30,0xed,0x30,0xb0,0x30,0xe9, + 0x30,0xe0,0x30,0x6e,0x4f,0x5c,0x69,0x6d,0x30,0xc7,0x30,0xa3,0x30,0xec,0x30,0xaf, + 0x30,0xc8,0x30,0xea,0x30,0x4b,0x30,0x89,0x30,0xe1,0x30,0xc7,0x30,0xa3,0x30,0xa2, + 0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x92,0x90,0x78,0x62,0x9e,0x30,0x57, + 0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f, + 0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72, + 0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x89,0xaa,0x0,0x56,0x0,0x48,0x0,0x44,0x30,0x6e,0x90,0x78,0x62,0x9e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xb7,0x30,0xea,0x30,0xa2,0x30, + 0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xb7,0x30,0xea,0x30, + 0xa2,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xb7,0x30, + 0xea,0x30,0xa2,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xb7,0x30,0xea,0x30,0xa2,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x30,0xb5,0x30,0xa4,0x30,0xba,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65, + 0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x90,0x45,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x5c,0xf, + 0x30,0x55,0x30,0x6a,0x30,0xd6,0x30,0xed,0x30,0xc3,0x30,0xaf,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x97,0xf3,0x91,0xcf,0x8a,0xbf, + 0x65,0x74,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x97,0xf3,0x91,0xcf,0x30,0xb2,0x30,0xa4,0x30,0xf3,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb5,0x30,0xa6, + 0x30,0xf3,0x30,0xc9,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x32, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9,0x30,0xab,0x30,0xfc, + 0x30,0xc9,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9, + 0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x30,0xe1,0x30,0xa4, + 0x30,0xf3,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e,0x30,0xb5, + 0x30,0xa4,0x30,0xba,0x63,0x7,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57, + 0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xc7,0x30,0xa3,0x30, + 0xe1,0x30,0xf3,0x30,0xb7,0x30,0xe7,0x30,0xf3,0x30,0x92,0x63,0x7,0x5b,0x9a,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90, + 0x1f,0x5e,0xa6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1f,0x5e, + 0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x72,0xec, + 0x7a,0xcb,0x57,0x8b,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30,0xb8,0x30, + 0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x28,0x0, + 0x32,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30, + 0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0, + 0x28,0x0,0x34,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30,0xb8, + 0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x28, + 0x0,0x36,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62, + 0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30,0xb8,0x30, + 0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x28,0x0, + 0x38,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xb9,0x30,0xc8,0x30,0xec,0x30,0xfc, + 0x30,0xb8,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xb5,0x30,0xfc,0x30,0xd5,0x30,0xa7,0x30,0xb9, + 0x0,0x20,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x30,0xb9,0x30, + 0xaf,0x30,0xea,0x30,0xfc,0x30,0xf3,0x30,0xb7,0x30,0xe7,0x30,0xc3,0x30,0xc8,0x30, + 0x92,0x64,0xae,0x30,0x8b,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26, + 0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x76,0xee,0x6a, + 0x19,0x30,0xd5,0x30,0xec,0x30,0xfc,0x30,0xe0,0x30,0xec,0x30,0xfc,0x30,0xc8,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x7b,0x2c,0x4e, + 0x9,0x0,0x49,0x0,0x44,0x0,0x45,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30, + 0xfc,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54, + 0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x30,0xcd,0x30,0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x8a,0x2d,0x5b, + 0x9a,0x30,0x4c,0x30,0xcc,0x30,0xeb,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd0,0x30, + 0x6b,0x52,0x7,0x30,0x8a,0x66,0xff,0x30,0x48,0x30,0x89,0x30,0x8c,0x30,0x7e,0x30, + 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69, + 0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c, + 0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x90,0x78,0x62,0x9e,0x30,0x57,0x30,0x5f,0x30,0xd5,0x30,0xa1,0x30, + 0xa4,0x30,0xeb,0x30,0x6f,0x4e,0xa,0x66,0xf8,0x30,0x4d,0x30,0x55,0x30,0x8c,0x30, + 0x7e,0x30,0x59,0x30,0x2,0x30,0x88,0x30,0x8d,0x30,0x57,0x30,0x44,0x30,0x67,0x30, + 0x59,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xdc,0x89,0xaa,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x4c,0x5d,0xee,0x52, + 0x6,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6e,0x4f,0x5c,0x62,0x10,0x30, + 0x6e,0x5f,0x8c,0x30,0x6b,0x59,0x9,0x66,0xf4,0x30,0x55,0x30,0x8c,0x30,0x8b,0x53, + 0xef,0x80,0xfd,0x60,0x27,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30, + 0x2,0x0,0xa,0x0,0xa,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x30, + 0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x4c,0x79,0xfb,0x52,0xd5,0x30,0x7e,0x30, + 0x5f,0x30,0x6f,0x30,0xb3,0x30,0xd4,0x30,0xfc,0x30,0x55,0x30,0x8c,0x30,0x5f,0x30, + 0x4b,0x30,0x1,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x30,0xd5,0x30, + 0xa1,0x30,0xa4,0x30,0xeb,0x30,0x92,0x4f,0x5c,0x62,0x10,0x30,0x57,0x30,0x5f,0x30, + 0xd7,0x30,0xed,0x30,0xb0,0x30,0xe9,0x30,0xe0,0x30,0x6b,0x30,0xd0,0x30,0xb0,0x30, + 0x4c,0x76,0x7a,0x75,0x1f,0x30,0x57,0x30,0x5f,0x53,0xef,0x80,0xfd,0x60,0x27,0x30, + 0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30,0x2,0x0,0xa,0x0,0xa,0x30, + 0xbf,0x30,0xa4,0x30,0xe0,0x30,0xb9,0x30,0xbf,0x30,0xf3,0x30,0xd7,0x30,0x92,0x4f, + 0xee,0x6b,0x63,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f, + 0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c, + 0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69, + 0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65, + 0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x4f,0x7f,0x75,0x28,0x4e,0x2d,0x30,0x6e,0x30,0xde,0x30,0xb7,0x30,0xf3, + 0x30,0x4c,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8, + 0x30,0x55,0x30,0x8c,0x30,0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x98,0xdb,0x88,0x4c,0x52,0x36,0x5f,0xa1,0x30,0xb7,0x30,0xb9,0x30,0xc6,0x30, + 0xe0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73, + 0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x66,0x42,0x52,0x3b,0x54,0xc,0x67,0x1f, + 0x6a,0x5f,0x80,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69, + 0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x9a,0xd8,0x90, + 0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x9a,0xd8,0x90,0x1f,0x30, + 0xbf,0x30,0xa4,0x30,0xdf,0x30,0xf3,0x30,0xb0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xbf,0x30,0xa4,0x30, + 0xd7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xbf,0x30,0xa4,0x30,0xd7, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x55,0x0,0x53, + 0x0,0x42,0x30,0x6f,0x30,0x7e,0x30,0x60,0x97,0x5e,0x5b,0xfe,0x5f,0xdc,0x30,0x67, + 0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x70,0x0,0x74,0x30,0x4c,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x67,0x30, + 0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x30,0x4c,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x67,0x30,0x4d,0x30,0x7e, + 0x30,0x5b,0x30,0x93,0x30,0x2,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x30,0x4c,0x5f,0xc5,0x89,0x81,0x30,0x67,0x30,0x59, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x30,0xad,0x30,0xfc,0x30,0xdc,0x30,0xfc,0x30,0xc9,0x30,0xa2,0x30, + 0xaf,0x30,0xbb,0x30,0xe9,0x30,0xec,0x30,0xfc,0x30,0xbf,0x30,0x92,0x8a,0xad,0x30, + 0x7f,0x8f,0xbc,0x30,0x81,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61, + 0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30, + 0x6e,0x8a,0xad,0x30,0x7f,0x8f,0xbc,0x30,0x7f,0x30,0x4c,0x30,0x67,0x30,0x4d,0x30, + 0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x75,0x1f,0x51, + 0x65,0x52,0x9b,0x30,0x4c,0x76,0x7b,0x93,0x32,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30, + 0x5b,0x30,0x93,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30, + 0x6e,0x66,0xf8,0x30,0x4d,0x8f,0xbc,0x30,0x7f,0x30,0x4c,0x30,0x67,0x30,0x4d,0x30, + 0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x97,0x5e, + 0x5b,0xfe,0x5f,0xdc,0x30,0x6e,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4, + 0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9,0x30,0x92,0x4f,0x7f,0x75,0x28,0x30, + 0x59,0x30,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x75,0x3b,0x97,0x62,0x30,0xbf,0x30, + 0xa4,0x30,0xd7,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x56,0x0,0x48,0x0,0x44,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x30,0xc7,0x30,0xa3,0x30,0xec,0x30,0xaf,0x30,0xc8,0x30,0xea,0x30,0x6b, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0x4c,0x30,0x6a,0x30,0x44,0x30,0x5f,0x30,0x81, + 0x30,0x1,0x30,0xd3,0x30,0xc7,0x30,0xaa,0x0,0x20,0x30,0xab,0x30,0xfc,0x30,0xc9, + 0x30,0xc,0x0,0x25,0x0,0x68,0x0,0x73,0x30,0xd,0x30,0x6f,0x4f,0x7f,0x75,0x28, + 0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x4f,0x7f,0x75,0x28, + 0x53,0xef,0x80,0xfd,0x30,0x6a,0x30,0xd3,0x30,0xc7,0x30,0xaa,0x30,0xab,0x30,0xfc, + 0x30,0xc9,0x30,0x6b,0x52,0x7,0x30,0x8a,0x66,0xff,0x30,0x48,0x30,0x7e,0x30,0x59, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30, + 0xd3,0x30,0xc7,0x30,0xaa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x30,0xb0,0x30,0xe9,0x30,0xd5,0x30,0xa3,0x30,0xc3,0x30,0xaf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x30,0xa6,0x30,0xa7,0x30,0xa4,0x30,0xc8,0x30,0xb9,0x30,0xc6, + 0x30,0xfc,0x30,0xc8,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x30,0x78,0x30,0x88,0x30,0x46,0x30,0x53,0x30,0x5d,0xff,0x1,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x5e,0x45,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61, + 0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x58,0x0,0x47, + 0x0,0x41,0x30,0xb0,0x30,0xe9,0x30,0xd5,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x28,0x30,0x88,0x30,0x8a,0x90,0x1f,0x30, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x8a,0xad,0x30,0x7f,0x8f,0xbc,0x30,0x93,0x30,0x67,0x30, + 0x44,0x30,0x8b,0x8a,0x2d,0x5b,0x9a,0x30,0x4c,0x30,0xb5,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x30,0x55,0x30,0x8c,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x49,0x0,0x50,0x30,0xc9,0x30,0xe9,0x30,0xa4, + 0x30,0xd6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49, + 0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0, + 0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_tr-TR.qm + 0x0,0x0,0x91,0x95, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xc3,0x0,0x0,0x0,0x48, + 0x0,0x0,0x46,0xef,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0xe2,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x8e,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0x31,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0xee,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0x6a,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0xaf,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x27,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6f,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf6,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x3e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x86,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xce,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xec,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x6c,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0x2e,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x4c,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5c,0x8b,0x0,0x0,0x5d,0x81,0x0,0x0,0x81,0xd1,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x63,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd5,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0xa,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xea,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x96,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x7,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0xc2,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0x99,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x5f,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0xf2,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0x61,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0xf5,0x0,0x5,0x78,0x79, + 0x0,0x0,0x68,0xfa,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0xdc,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6c,0xff,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0x4b,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x8,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x41,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x3,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x87,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xbb,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xd3,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x52,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xfe,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7c,0xb5,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xc8,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x61,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0x52,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0xc9,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0x63,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6f,0xc9,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0x78,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x79,0xdf,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7a,0x6a,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x84,0x65,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xa2,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0x9d,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x20,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0x61,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0xff,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0x98,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0x6d,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xcf,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0x2c,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x66,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0x64,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7a,0x3,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0x4e,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0x59,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x22,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x78,0x92,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0x5b,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x6d,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4b,0xdc,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x53,0x87,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0x9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xaf,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x82,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x79,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xe1,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x8a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0xa0,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x70,0xc,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x2e,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x71,0x8b,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0x26,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x70,0xc1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x90,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0x59,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0x3f,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x82,0x31,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0xe3,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0xf0,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0xc7,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0xd,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x94,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xa6,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x70,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x2b,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0xae,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x84,0x89,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0x74,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0x37,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x22,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x8,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x2f,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0x33,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xf5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x1c,0x3,0x6a,0x66,0x2e,0x0,0x0,0x56,0x9d,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x54,0x84,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xfe,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x6b,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xa9,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x7a,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0xa2,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0x74,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xa1,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0x2b,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0x53,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6e,0xc2,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6e,0x88,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0x4e,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6e,0x14,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0xa,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0x38,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xe7,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x49,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x73,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x36,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x2c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x13,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x37,0x4,0x51,0x79,0xb1,0x0,0x0,0x72,0x83,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7b,0x5e,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x14,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6d,0xdf,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0xc,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0x33,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x31,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x98,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0x6e,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xeb,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xe4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x9b,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5a,0x72,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xf2,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x41,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x9,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5a,0x92,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0x30,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4a,0xf2,0x5,0x18,0x5,0x95,0x0,0x0,0x7d,0x17,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xbb,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xaa,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0x4d,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0x12,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xb8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xa9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0x22,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0xac,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x79,0x8c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x73,0x85,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x5b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6f,0xe9,0x5,0xb2,0x16,0x79,0x0,0x0,0x67,0x30,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x47,0xe2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x49,0x14,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0xf1,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x56,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x99,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x9d,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0xa0,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xa4,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x80,0x33,0x5,0xd0,0x4f,0x11,0x0,0x0,0x80,0xef,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x72,0x5,0xdf,0xba,0xba,0x0,0x0,0x81,0x3d,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0xca,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0x6b,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x51,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0x1,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0x6a,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x1d,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x94,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xd1,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x1c,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7e,0x62,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0xe1,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0xc3,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0x52,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xcd,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xaf,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0x63,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6e,0xfc,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x2e,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0x60,0x6,0xc3,0xce,0xa3,0x0,0x0,0x71,0xf0,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0xd4,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xfc,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xb6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4a,0x18,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xdb,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0x50,0x7,0x6,0x93,0xe3,0x0,0x0,0x83,0xf8,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x5f,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x41,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xd4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6c,0xca,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0xb2,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4c,0xf9,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0xb7,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x9c,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x85,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0x9f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x9b,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x15,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x68,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0x99,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0x72,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0xa3,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0x19,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x85,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7e,0x1f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x84,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xb4,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x97,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x7c,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0x3d,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x28,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x69,0x1b,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0xac,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0xbf,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0x55,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x2e,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0xa6,0x8,0x60,0xe7,0xcd,0x0,0x0,0x79,0xf,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0xf3,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x7d,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7a,0x8c,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0x67,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0x7,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0xc1,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0x45,0x8,0xa4,0xb,0xae,0x0,0x0,0x4f,0x83,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0xbb,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xf0,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0xec,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x43,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0x5d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0x8d,0x9,0x9,0x24,0x29, + 0x0,0x0,0x51,0x56,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xbd,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xf7,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x49,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x83,0x9,0x4e,0xde,0x64,0x0,0x0,0x7a,0xf7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0xfd,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x45,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x43,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x8d,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0x7b,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x14,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xc3,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xed,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x17,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x41,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x5c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x87,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0xcb,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0x25,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xe5,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0x4,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x19,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x81,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xb7,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0xac,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xcf,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0xe0,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x27,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xa,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x25,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4e,0xb1,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x52,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7d,0x78,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0xb8,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x72,0x44,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x4b,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x0,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4d,0xd9,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x9b,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xc9,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x96,0xa,0xda,0x50,0x7e,0x0,0x0,0x7b,0xf3,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x36,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0x2d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0xc6,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x39,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x3e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0xc1,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0x88,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x54,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x7a,0xb,0x4e,0x19,0x54,0x0,0x0,0x52,0x81,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x7e,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xf5,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0x15,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x4b,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xfd,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0x87,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0x98,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x85,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0x27,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0x6a,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x83,0xba,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0xff,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x72,0xe9,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xf9,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0xf8,0xc,0x33,0xeb,0xe2,0x0,0x0,0x73,0x31,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x48,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xad,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0xbb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0x19,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x75,0x2b,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0x86,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x2c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x80,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x17,0xc,0x90,0x26,0xb5,0x0,0x0,0x7c,0x6d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0x56,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x26,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0x9f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x72,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0xce,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7e,0x9a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xb,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xec,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x72,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x34,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x80,0x66,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0x73,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x81,0x94,0xd,0x60,0xef,0x6a,0x0,0x0,0x4d,0x9f,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x55,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x4d,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x2,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0xad,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0x66,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x40,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x82,0x75,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0x1c,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x81,0x6a,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0xbc,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x1b,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x82,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xf4,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xbb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x2d,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0xf7,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x2f,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0xd0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x22,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xe9,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0x3a,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0xbf,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6b,0xf7,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0x2f,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0x67,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0x29,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x6f,0xe,0xe2,0x34,0x60,0x0,0x0,0x83,0x66,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x83,0x90,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xe5,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xa8,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x4a,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0x2f,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x26,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x74,0x33,0xf,0x17,0x9c,0x64,0x0,0x0,0x7d,0xd5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0x18,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0xeb,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x57,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0x67,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x1f,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xcd,0xf,0x70,0xaa,0x1a,0x0,0x0,0x80,0xac,0xf,0x74,0xd,0xca, + 0x0,0x0,0x67,0x0,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0x8a,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x84,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x37,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0xf4,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x12,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0x4c,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0xbe,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x50,0x85,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0xf7,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0x6d,0xf,0xe2,0xe9,0x49,0x0,0x0,0x81,0xef,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0x25,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0x65,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0xa5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0xe5,0x69,0x0,0x0,0x84, + 0xb3,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x7e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31, + 0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0xe7,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x63, + 0x1,0x31,0x0,0x73,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0xf6, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0xfc,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0xf6,0x0,0x6b, + 0x0,0xfc,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x64, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x69, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0xfc,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x42,0x0, + 0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x75,0x0,0x72,0x0,0x75,0x0,0x6d,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48, + 0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e, + 0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x48, + 0x0,0x61,0x0,0x6b,0x0,0x6b,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6d, + 0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x4b,0x0,0x65,0x0,0x68,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0xf6,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41, + 0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x61,0x0, + 0x6b,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x79,0x0,0x62,0x1,0x31,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x6b,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65, + 0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x26,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x79,0x1,0x31,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x44,0x0,0xf6,0x0,0x6b,0x0,0xfc,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x26,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x1,0x1f,0x0,0x72,0x0,0x75, + 0x0,0x20,0x0,0x26,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20, + 0x0,0x73,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0xf6,0x0, + 0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20, + 0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46, + 0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0, + 0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x59,0x0, + 0x65,0x1,0x5f,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x6b,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xf6,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x59,0x0,0x61,0x0,0x72,0x0,0x64,0x1,0x31,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x75,0x0, + 0x6d,0x0,0x20,0x0,0xe7,0x0,0x75,0x0,0x62,0x0,0x75,0x1,0x1f,0x0,0x75,0x0, + 0x6e,0x0,0x75,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0x7a,0x0,0x6c,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x26,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x61, + 0x0,0x79,0x1,0x31,0x0,0x20,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x54,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x6b,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xf6,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x76,0x0, + 0x79,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x63,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x61,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64,0x1,0x31,0x1, + 0x1f,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0xe7,0x0,0x61,0x0, + 0x6c,0x1,0x31,0x1,0x5f,0x0,0x73,0x1,0x31,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72, + 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4c,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x44,0x0,0x6f, + 0x1,0x1f,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x64,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x20,0x0,0x28,0x0,0x45,0x0,0x6e,0x0,0x20,0x0,0x79,0x0,0x61,0x0, + 0x6b,0x1,0x31,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75, + 0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x26,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x44, + 0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4f,0x0,0x79,0x0, + 0x6e,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x26,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x67,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0xd6,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0xe7, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61, + 0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b,0x0, + 0x61,0x0,0x6c,0x0,0x64,0x1,0x31,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x47,0x0,0xf6,0x0,0x6c,0x0,0x67,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0, + 0x64,0x1,0x31,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x59,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79, + 0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64,0x1,0x31,0x0,0x72, + 0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x42,0x0,0x61,0x1,0x5f,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x0,0x67,0x1,0x31,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x53, + 0x0,0x61,0x1,0x1f,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20, + 0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x74, + 0x0,0x75,0x1,0x5f,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x59,0x0,0x61,0x0,0x7a, + 0x1,0x31,0x0,0x6c,0x1,0x31,0x0,0x6d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x47, + 0x0,0xf6,0x0,0x6c,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x65,0x0,0xe7,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x26,0x0,0x41,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x42,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0, + 0x4b,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x28,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0, + 0x65,0x1,0x1f,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x75,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61, + 0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20, + 0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0, + 0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41,0x0,0x72,0x0,0x61,0x0,0xe7, + 0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x26,0x0, + 0xe7,0x0,0x75,0x0,0x62,0x0,0x75,0x1,0x1f,0x0,0x75,0x0,0x20,0x0,0x69,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x1, + 0x31,0x0,0x20,0x0,0x67,0x0,0xfc,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x47,0x0,0xf6,0x0,0x72, + 0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x42,0x0,0x65, + 0x0,0x79,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x6b, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xf6,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x50,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x26,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b,0x0, + 0x20,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x70,0x0,0x61,0x0,0x6e,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x28,0x0,0x53,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x73, + 0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0, + 0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x6d,0x0,0xfc,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x31,0x0, + 0x25,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x1,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x6d,0x0,0xfc,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0, + 0x65,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x74,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x6d,0x0,0xfc, + 0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x52, + 0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x25,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35, + 0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22, + 0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20, + 0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x34,0x0,0x3a,0x0,0x26,0x0, + 0x33,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0x79,0x1,0x31,0x0,0x20,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b,0x0, + 0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33, + 0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x50,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x68, + 0x0,0x69,0x0,0xe7,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6b, + 0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6c,0x0,0x61, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4c,0x0,0xfc,0x0,0x74,0x0,0x66,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x22,0x0,0x52,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6b, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0xe7,0x1,0x31,0x0,0x6b,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f, + 0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64, + 0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f, + 0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f, + 0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f, + 0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64, + 0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61, + 0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0, + 0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78, + 0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0, + 0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x70,0x0,0x61,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41, + 0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0, + 0x48,0x0,0x61,0x0,0x6b,0x0,0x6b,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x56,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0, + 0x73,0x1,0x31,0x0,0x20,0x0,0x45,0x0,0x6b,0x0,0x6c,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61, + 0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x4f,0x0,0x6c,0x0,0x75,0x1,0x5f,0x0,0x74, + 0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x47,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x1,0x5f,0x0,0x6d,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6b,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x54,0x0,0xfc,0x0,0x6d,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xf8,0x0,0x42,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0xfc,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf6, + 0x0,0x72,0x0,0xfc,0x0,0xa,0x0,0xa,0x0,0x59,0x0,0x61,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x6d, + 0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x73, + 0x1,0x31,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x79, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x72,0x0,0x61,0x0,0x73, + 0x1,0x31,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x1,0x31,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6e,0x0,0x6c, + 0x0,0x61,0x0,0x6e,0x0,0x6d,0x1,0x31,0x1,0x5f,0x0,0x74,0x1,0x31,0x0,0x72, + 0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x66, + 0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x27, + 0x1,0x31,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0xe7,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x27,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0xe7,0x1,0x31,0x0,0x6b,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0,0x45,0x0,0x6d,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x4f,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0, + 0x61,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0xf6,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0, + 0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x42,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67, + 0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x42,0x0,0x6c,0x0,0x6f, + 0x0,0x6b,0x0,0x20,0x0,0x42,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63, + 0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x6f, + 0x0,0x6c,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72, + 0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d, + 0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x52,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0, + 0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0, + 0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x61,0x1,0x5f,0x1,0x31,0x0, + 0x72,0x1,0x31,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x73,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43, + 0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26, + 0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63, + 0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31, + 0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x0,0x43,0x0,0x69,0x0, + 0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x33,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0x0,0x43,0x0, + 0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x7c,0x0,0x53,0x0,0x65, + 0x0,0xe7,0x0,0x74,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x79, + 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x28,0x0,0x69,0x1,0x5f,0x0,0x6c, + 0x0,0x65,0x0,0x6d,0x0,0x63,0x0,0x69,0x0,0x29,0x0,0x20,0x0,0x74,0x0,0xfc, + 0x0,0x72,0x0,0xfc,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0xfc,0x0,0x6c,0x0,0x61, + 0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x0,0x20,0x0,0x62,0x1,0x31,0x0,0x72, + 0x0,0x61,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0,0x64,0x1,0x31,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0xe7,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x75,0x0,0x6d,0x0,0x6c,0x0,0x75,0x0,0x20, + 0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0xfc,0x0,0x6d,0x0,0x6b,0x0,0xfc,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x74, + 0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x79,0x1,0x31,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x27,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x79, + 0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x6c,0x1,0x31,0x0,0x6d,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x79, + 0x0,0x75,0x0,0x6d,0x0,0x73,0x0,0x75,0x0,0x7a,0x0,0x6c,0x0,0x75,0x0,0x6b, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x79,0x0,0x61,0x1,0x5f,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x0,0x20,0x0,0x62,0x1,0x31, + 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0xfc,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x20, + 0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x66,0x1,0x31,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0xe7,0x0,0x74,0x1,0x31,0x1,0x1f,0x1,0x31,0x0,0x6e,0x1,0x31,0x0,0x7a, + 0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x29,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x6f, + 0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x67,0x0,0x65, + 0x0,0xe7,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x70,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x1,0x30, + 0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0, + 0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x1,0x5f,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72, + 0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c, + 0x0,0x47,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x26,0x0,0x6e, + 0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6c,0x1,0x31,0x0,0x20,0x0,0x67, + 0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0,0x20,0x0,0x69, + 0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x64,0x0,0x65, + 0x1,0x1f,0x0,0x69,0x1,0x5f,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61, + 0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x42,0x0,0x50,0x0,0x42,0x0,0x27,0x0,0x79,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x46,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x79,0x0,0x61,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x6d,0x0,0x61,0x0,0x73,0x1, + 0x31,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x1, + 0x31,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41,0x0,0x79,0x0,0x61,0x0,0x72, + 0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0, + 0xfc,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x63,0x0,0xfc,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x6d,0x0,0x67,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x64,0x0,0xfc,0x0, + 0x7a,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56, + 0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x20,0x0,0x69,0x1,0x5f,0x0,0x6c,0x0,0x65,0x0,0x79,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x1, + 0x1f,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x62,0x0,0xfc,0x0,0x79,0x0, + 0xfc,0x0,0x6b,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x44,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x53,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x72,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x61, + 0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69, + 0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6c,0x0, + 0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0xe7,0x0,0x6f,0x0,0x6b,0x0, + 0x20,0x0,0x62,0x0,0xfc,0x0,0x79,0x0,0xfc,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x56,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x27,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20, + 0x0,0x62,0x0,0xfc,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72, + 0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x47,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x41,0x0,0x79,0x0,0x61,0x0, + 0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x6b,0x0,0x61,0x0, + 0x79,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x20,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0, + 0x6d,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x7a,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0xc7,0x1, + 0x31,0x0,0x6b,0x1,0x31,0x1,0x5f,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x70,0x0, + 0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0xdc,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x7a,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x6a, + 0x1,0x31,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x6d,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x72,0x0,0x6c, + 0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6b,0x0, + 0x2d,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0, + 0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44, + 0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20, + 0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x26,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x61,0x0,0x79,0x0,0x61,0x0, + 0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0xc7,0x1,0x31,0x0,0x6b,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x1,0x30,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x1,0x31,0x0,0x20,0x0,0x26,0x0,0xe7,0x1,0x31,0x0,0x6b,0x0,0x61,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x45,0x0,0x6d, + 0x0,0xfc,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0xe7,0x1,0x31,0x0,0x6b,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x26,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0, + 0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x65,0x0, + 0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0, + 0xfc,0x1,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72, + 0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0, + 0x6e,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0, + 0x6c,0x0,0x65,0x1,0x5f,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x45,0x0,0x74,0x0, + 0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x45,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x28,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61, + 0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0, + 0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0xe7,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x79,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x48,0x0,0x61,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4f,0x0,0x6c,0x0,0x75, + 0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x75,0x0,0x20, + 0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c, + 0x1,0x31,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x1,0x5f,0x0,0x74, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f, + 0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x65,0x0,0xe7,0x0,0x20,0x0,0x28,0x0,0x59,0x0,0x61,0x0,0x7a,0x0,0x6d, + 0x0,0x61,0x0,0x2d,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x6d,0x0,0x61, + 0x0,0x6c,0x1,0x31,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f, + 0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0xc7,0x1,0x31,0x0,0x6b,0x1,0x31,0x1,0x5f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33, + 0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x72, + 0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26, + 0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x46,0x0,0x44,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63, + 0x0,0xfc,0x0,0x73,0x0,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67, + 0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x41,0x1,0x1f,0x0,0x20,0x0, + 0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0, + 0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0, + 0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x61,0x0, + 0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20, + 0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x48,0x1,0x31,0x0,0x7a,0x0,0x6c,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x4b,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x20, + 0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x6f,0x0, + 0x73,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x61, + 0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x2d,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75, + 0x0,0x74,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73, + 0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x6c,0x0,0x75, + 0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26, + 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x72,0x0,0x74,0x1,0x31,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x6c, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0xf6,0x0,0x6e,0x0,0xfc, + 0x1,0x5f,0x0,0x74,0x0,0xfc,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31, + 0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x27,0x0,0x74,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x62, + 0x0,0xfc,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x92,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0xf6,0x0, + 0x72,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20, + 0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65, + 0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28, + 0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6e,0x1, + 0x31,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x69,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65, + 0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x59,0x0,0xfc,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69, + 0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0xf6,0x0, + 0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0, + 0x73,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26, + 0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31, + 0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x74,0x1,0x31, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x53,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x44,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72, + 0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x47,0x0,0x69,0x0,0x72,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x61,0x0,0x79,0x0, + 0x67,0x1,0x31,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x61,0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61, + 0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x47,0x0,0x65,0x0,0xe7,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x47,0x0,0x65,0x0,0xe7,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0xfc,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x79,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0, + 0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x79,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x20,0x0, + 0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x79,0x0,0x75,0x0, + 0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x20,0x0,0x43,0x0,0x69, + 0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x43, + 0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0, + 0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x44,0x0,0x69,0x0,0x6c,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0xfc, + 0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0, + 0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x68,0x0,0x69,0x0,0xe7,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6d,0x1,0x31,0x1,0x5f,0x0, + 0x74,0x1,0x31,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x47,0x0,0x69,0x0,0x72,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x43,0x0,0x69,0x0, + 0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0xc7,0x1,0x31,0x0,0x6b,0x1,0x31,0x1, + 0x5f,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x4f,0x0, + 0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x61,0x0,0x6b, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x2,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x6c, + 0x0,0x61,0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20, + 0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a, + 0x1,0x31,0x0,0x20,0x0,0x79,0x0,0xfc,0x0,0x7a,0x0,0xfc,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x69,0x0,0x6c,0x0,0x2e, + 0x0,0x20,0x0,0x4d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20, + 0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x79, + 0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0xe7,0x0,0x69,0x1,0x5f,0x0,0x20, + 0x0,0x79,0x0,0x61,0x0,0x70,0x1,0x31,0x0,0x6c,0x1,0x31,0x0,0x79,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65, + 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xfc, + 0x0,0x72,0x0,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xb4,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x75,0x1,0x1f,0x0,0x75,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x75,0x0, + 0x79,0x0,0x75,0x0,0x6d,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0, + 0x65,0x0,0x74,0x0,0x20,0x0,0x61,0x1,0x1f,0x1,0x31,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x64,0x0, + 0x75,0x1,0x1f,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x7a,0x0,0x64,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x75,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0, + 0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x75,0x1,0x1f,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0, + 0x6e,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x69,0x1,0x1f,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x44,0x0,0x6f,0x0,0x73, + 0x0,0x79,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0x79,0x0,0x61, + 0x0,0x7a,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6c, + 0x0,0x61,0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x69, + 0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x42,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6b,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x6b,0x0,0x75, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x73, + 0x0,0x69,0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x41,0x1,0x1f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x1,0x1f,0x0,0x20,0x0,0x63, + 0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x41,0x1,0x1f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x69,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x1,0x30,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x48,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x6e,0x0, + 0x67,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0, + 0x7a,0x1,0x31,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x48,0x0,0x69,0x0,0xe7,0x0,0x62,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x1,0x31,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0x69,0x0, + 0xe7,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x1,0x1f, + 0x0,0x72,0x0,0x75,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75, + 0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x4b,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6c,0x1,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0xe7,0x1,0x31,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0, + 0x29,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0, + 0xfc,0x0,0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x20,0x0, + 0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x2e,0x0,0x20,0x0,0x42,0x0, + 0x61,0x1,0x5f,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0, + 0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x47,0x0,0xf6, + 0x0,0x6c,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x44,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x64,0x1,0x31,0x0,0x72,0x1,0x31, + 0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0xdc,0x0,0x7a, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x79,0x0,0x61, + 0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x68, + 0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x4f,0x0,0x53,0x0, + 0x54,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x41,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6d,0x0,0x67,0x0,0x61,0x0, + 0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x75,0x1, + 0x5f,0x0,0x6d,0x0,0x75,0x0,0x79,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x59,0x0, + 0xfc,0x0,0x72,0x0,0xfc,0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x79,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0xfc,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0, + 0x6d,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4c,0x0, + 0xfc,0x0,0x74,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0xe7,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65, + 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x7c,0x0,0x50,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0xf6,0x0,0x6e,0x0, + 0x6d,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x75,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x7c,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x62,0x1,0x31,0x0,0x72,0x0,0x61,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0, + 0x6e,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e, + 0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x1,0x31,0x0,0x72,0x0,0x61,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0,0x6d, + 0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x1,0x30,0x1,0x5f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0xf6,0x0,0x72, + 0x0,0x74,0x0,0x6c,0x0,0xfc,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63, + 0x0,0xfc,0x0,0x73,0x0,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x50,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x69, + 0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x68,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x72,0x0,0x6c,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x6b,0x0,0x6c,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d, + 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61, + 0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x1,0x30,0x1,0x5f,0x0, + 0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x59,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0xf6,0x0,0x6c,0x0,0x6d,0x0, + 0x65,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x79,0x1,0x31,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x59,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x59,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x79,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x20,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73, + 0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x61,0x0, + 0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x79,0x1,0x31,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20, + 0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61, + 0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0, + 0x65,0x0,0x6b,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0xe7, + 0x0,0x61,0x0,0x6c,0x1,0x31,0x1,0x5f,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x61,0x0,0x20, + 0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0xe7,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x1,0x31,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x42,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x59,0x0,0x61,0x0,0x76,0x0,0x61,0x1,0x5f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0xfc,0x0,0xe7,0x0,0xfc, + 0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d, + 0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20, + 0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x73, + 0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x41,0x0, + 0x72,0x0,0x74,0x1,0x31,0x0,0x72,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x41,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x6e, + 0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x6f,0x0,0x79, + 0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x42,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x26,0x0, + 0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x6e,0x0,0x75,0x0, + 0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x48,0x1,0x31,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x48,0x1,0x31,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x42,0x0,0x61,0x1,0x1f,0x1,0x31,0x0,0x6d,0x0,0x73,0x1,0x31, + 0x0,0x7a,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x0,0x2d,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0, + 0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x62,0x0, + 0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x79,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x36, + 0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f, + 0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x38,0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72, + 0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x59,0x0,0xfc,0x0,0x7a, + 0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x0,0x45,0x0,0x6b,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0, + 0x6e,0x0,0x74,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20, + 0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x48,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x20,0x0,0x26,0x0,0x6b,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x6e,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0xdc,0x0,0xe7,0x0,0x6c,0x0,0xfc,0x0, + 0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72, + 0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x41,0x1,0x1f,0x0, + 0x20,0x0,0x79,0x0,0x61,0x0,0x70,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x1,0x31,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0, + 0xfc,0x0,0x63,0x0,0xfc,0x0,0x79,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0xe7,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0, + 0x6b,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x9c,0x0,0x53,0x0,0x65,0x0,0xe7,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0, + 0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x7a,0x1, + 0x31,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x6b,0x0,0x74,0x1,0x31,0x0, + 0x72,0x0,0x2e,0x0,0x20,0x0,0x42,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20,0x0, + 0x79,0x0,0x61,0x0,0x70,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2, + 0x62,0x0,0x42,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0, + 0x6b,0x1,0x31,0x0,0x20,0x0,0x61,0x0,0x6c,0x1,0x31,0x0,0x6e,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6c,0x0, + 0x64,0x0,0x75,0x0,0x6b,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x6e,0x0, + 0x6c,0x0,0x61,0x0,0x6d,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0, + 0x65,0x0,0x6c,0x0,0x69,0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x0, + 0xa,0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0, + 0x75,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x79,0x0,0x72,0x1,0x31,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x1,0x31,0x1,0x1f,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x79,0x0,0x65,0x0, + 0x72,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x1, + 0x1f,0x0,0x69,0x1,0x5f,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6c,0x0, + 0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x1,0x31,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0, + 0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x64,0x0, + 0x61,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0, + 0x68,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x6d,0x0,0x75,0x1,0x5f,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x5a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x6d,0x0,0x67,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x1, + 0x31,0x0,0x20,0x0,0x64,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6c,0x0,0x74,0x0, + 0x6d,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x7a,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x20, + 0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x63, + 0x0,0x61,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a, + 0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, + 0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x4b,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0, + 0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74, + 0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x54,0x0,0xfc,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x1,0x5f,0x0,0x75,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6d,0x0,0x65, + 0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x52,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x62,0x0,0x61, + 0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e, + 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64, + 0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0, + 0x76,0x0,0x79,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x76,0x0,0x64,0x0,0x69,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0xe7,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x65,0x0, + 0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x20,0x0, + 0x6f,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6d,0x1,0x31,0x0,0x79,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x48,0x0,0x61,0x0, + 0x6d,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0, + 0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0, + 0xfc,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d,0x1,0x31,0x0, + 0x79,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x6d,0x0,0x65,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x65,0x0, + 0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x69,0x0, + 0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xc, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x65,0x0,0x6b, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x1,0x31,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61, + 0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31, + 0x0,0x20,0x0,0x79,0x0,0xfc,0x0,0x7a,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x69,0x0,0x6c,0x0,0x2e,0x0,0x20, + 0x0,0x4d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65, + 0x0,0xe7,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x70,0x1,0x31, + 0x0,0x6c,0x1,0x31,0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x45,0x0,0x6b,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x42,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x27,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x6f,0x1,0x5f,0x0,0x67,0x0,0x65,0x0, + 0x6c,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x69,0x1,0x5f,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x58,0x0,0x47,0x0,0x41, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x20,0x0,0x28,0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x68,0x1, + 0x31,0x0,0x7a,0x0,0x6c,0x1,0x31,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x44,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6d,0x0, + 0x65,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0xfc,0x0, + 0x72,0x0,0x61,0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x79,0x0, + 0xfc,0x0,0x6b,0x0,0x6c,0x0,0xfc,0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x73,0x0, + 0x75,0x0,0x6e,0x0,0x75,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc, + 0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_zh-TW.qm + 0x0,0x0,0x70,0x25, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x21,0x6b,0x0,0x0,0x0,0x48, + 0x0,0x0,0x36,0xeb,0x0,0x0,0x0,0x53,0x0,0x0,0x4f,0xa4,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0x80,0x0,0x0,0x4,0xf2,0x0,0x0,0x3d,0xd9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x3f,0x48,0x0,0x0,0x5,0x3b,0x0,0x0,0x46,0xc2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x46,0xf7,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x1f,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x73,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xc7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x12,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x66,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xba,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xe,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x32,0x0,0x0,0x49,0xc3,0x0,0x0,0x21,0x2c,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3a,0xb4,0x0,0x0,0x4d,0x85,0x0,0x0,0x3a,0xd2,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x46,0xdd,0x0,0x0,0x5d,0x81,0x0,0x0,0x60,0xcd,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0x85,0x0,0x2,0x97,0xd3,0x0,0x0,0x3,0xeb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0xf,0x82,0x0,0x4,0x8c,0xaf,0x0,0x0,0x1f,0xe4,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x21,0x4a,0x0,0x4,0xa7,0x89,0x0,0x0,0x30,0x3,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x33,0xbc,0x0,0x4,0xc8,0xa4,0x0,0x0,0x34,0x79,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x32,0x8f,0x0,0x4,0xd0,0x25,0x0,0x0,0x34,0xbc,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x36,0x8b,0x0,0x5,0x56,0x45,0x0,0x0,0x46,0x67,0x0,0x5,0x78,0x79, + 0x0,0x0,0x4f,0xbc,0x0,0x5,0x98,0xc5,0x0,0x0,0x50,0xa0,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x52,0xe5,0x0,0x5,0xc0,0x65,0x0,0x0,0x5b,0x57,0x0,0x12,0x74,0x52, + 0x0,0x0,0x15,0xc6,0x0,0x19,0x74,0x52,0x0,0x0,0x16,0x3,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x2,0xf5,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x1b,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xa,0xb5,0x0,0x2b,0x72,0x89,0x0,0x0,0xb,0x91,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0xf,0xd4,0x0,0x34,0x9,0xc8,0x0,0x0,0x11,0x0,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x5d,0x17,0x0,0x3b,0xa9,0x68,0x0,0x0,0x16,0x8e,0x0,0x46,0x86,0x49, + 0x0,0x0,0x18,0xad,0x0,0x4c,0x99,0x62,0x0,0x0,0x31,0xd0,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2a,0xef,0x0,0x58,0xc9,0xc4,0x0,0x0,0x4f,0x59,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x54,0xf5,0x0,0x5a,0x6c,0x44,0x0,0x0,0x53,0x42,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x5b,0xf,0x0,0x5c,0x6,0x8a,0x0,0x0,0x5b,0x74,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x62,0xf5,0x0,0x73,0x75,0x3e,0x0,0x0,0x29,0xf6,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x46,0x37,0x0,0x97,0x96,0x4,0x0,0x0,0x2b,0xfe,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x3c,0x87,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x3d,0xb5,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x38,0xde,0x0,0xb8,0x5f,0x43,0x0,0x0,0x48,0x39,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x15,0x89,0x1,0x9,0x1c,0x92,0x0,0x0,0x33,0x26,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x23,0xa4,0x1,0x39,0xa4,0xce,0x0,0x0,0x43,0xd6,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x5b,0x2d,0x1,0x4c,0x50,0xee,0x0,0x0,0x4d,0xd0,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x38,0xad,0x1,0x61,0xac,0xc9,0x0,0x0,0x10,0x70,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x5a,0xe,0x1,0x7a,0x2c,0x99,0x0,0x0,0x2e,0xa3,0x1,0x91,0xe,0x73, + 0x0,0x0,0x21,0xf1,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3a,0x66,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x40,0x8d,0x1,0xb0,0x47,0x5c,0x0,0x0,0x3f,0x63,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x41,0x1,0xc8,0x65,0x8f,0x0,0x0,0x32,0xac,0x1,0xd3,0x9,0x82, + 0x0,0x0,0x9,0xdb,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0x29,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x27,0xd2,0x1,0xe6,0x0,0xe9,0x0,0x0,0x50,0x5e,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x55,0x34,0x2,0x14,0x18,0x2e,0x0,0x0,0x8,0xe4,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x56,0x2f,0x2,0x23,0x3c,0x6b,0x0,0x0,0x55,0xf0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x55,0xb1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x13,0x50,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x39,0xf7,0x2,0x78,0x48,0x1a,0x0,0x0,0x40,0x55,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x61,0x2d,0x2,0x90,0x8d,0x12,0x0,0x0,0x33,0xed,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x48,0xa0,0x2,0xad,0x4a,0x22,0x0,0x0,0x4e,0x19,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x7,0xe5,0x2,0xb3,0xba,0xf1,0x0,0x0,0xa,0x8e,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0x6a,0x2,0xbb,0x66,0x33,0x0,0x0,0xf,0x18,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0xf,0xa9,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x48,0x6e,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x63,0x19,0x3,0x5,0x38,0xb2,0x0,0x0,0x31,0xee,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x4a,0xfd,0x3,0x41,0x45,0x12,0x0,0x0,0x11,0x2a,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x11,0xe8,0x3,0x4b,0x26,0xf2,0x0,0x0,0x12,0xf,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x3f,0x8d,0x3,0x65,0x26,0xf2,0x0,0x0,0x14,0xc5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x14,0xec,0x3,0x6a,0x66,0x2e,0x0,0x0,0x42,0xc5,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x41,0x5e,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0x78,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x26,0xf1,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0x9b,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x16,0x40,0x3,0xa4,0x35,0xa5,0x0,0x0,0x33,0x9c,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x33,0x5a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x16,0x67,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x44,0x43,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x55,0x6f,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x54,0x4a,0x3,0xe4,0x25,0x5a,0x0,0x0,0x54,0x1c,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x53,0xee,0x3,0xe4,0x25,0x7a,0x0,0x0,0x53,0xc0,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x56,0x4,0x3,0xf6,0x9a,0x0,0x0,0x42,0x76,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x13,0xab,0x4,0x15,0x75,0x22,0x0,0x0,0x11,0x51,0x4,0x17,0x65,0x22, + 0x0,0x0,0x11,0x7b,0x4,0x1c,0x68,0x69,0x0,0x0,0x12,0xf2,0x4,0x23,0x29,0x55, + 0x0,0x0,0x9,0xa8,0x4,0x31,0xff,0xe9,0x0,0x0,0x20,0x1,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x22,0x95,0x4,0x51,0x79,0xb1,0x0,0x0,0x56,0xcb,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x5c,0x28,0x4,0x5b,0x53,0x1f,0x0,0x0,0x1f,0x80,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x53,0x99,0x4,0x7d,0xb,0xa4,0x0,0x0,0x2f,0x38,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x2f,0x5f,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x29,0xab,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x26,0x32,0x4,0xb8,0x1,0x2e,0x0,0x0,0x2c,0xce,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xa,0xdb,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2a,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x14,0x67,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x45,0x54,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x28,0xb0,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0x9,0x4,0xe6,0xae,0xdb,0x0,0x0,0x19,0x49,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x45,0x74,0x4,0xeb,0x2f,0xa,0x0,0x0,0x3e,0xb8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x39,0xae,0x5,0x18,0x5,0x95,0x0,0x0,0x5d,0x5b,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x12,0x73,0x5,0x30,0xd3,0xe,0x0,0x0,0x2e,0x2e,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x45,0x33,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x61,0xbc,0x5,0x5f,0x7b,0x59,0x0,0x0,0xd,0xc2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x2f,0xbb,0x5,0x88,0x2e,0xd9,0x0,0x0,0x53,0x0,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x41,0x7e,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x5a,0xde,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x57,0x8d,0x5,0xa5,0x3a,0x79,0x0,0x0,0x20,0x4f,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x55,0x13,0x5,0xb2,0x16,0x79,0x0,0x0,0x4e,0x82,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x37,0x96,0x5,0xb3,0x5f,0x79,0x0,0x0,0x38,0x6e,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x31,0x91,0x5,0xb8,0x5d,0xad,0x0,0x0,0x12,0x36,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x10,0xc3,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x11,0xa5,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3a,0x32,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2c,0x54,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x5f,0x73,0x5,0xd0,0x4f,0x11,0x0,0x0,0x60,0xd,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xc,0xee,0x5,0xdf,0xba,0xba,0x0,0x0,0x60,0x49,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x4d,0x6a,0x6,0x7,0xd3,0xda,0x0,0x0,0x3b,0xd9,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2c,0x1f,0x6,0x19,0x20,0x43,0x0,0x0,0x50,0xbd,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x2e,0x8,0x6,0x38,0x9f,0x35,0x0,0x0,0x2c,0x99,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1a,0x38,0x6,0x51,0xe6,0x13,0x0,0x0,0x5,0xfb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x28,0xd2,0x6,0x6c,0xb8,0x3,0x0,0x0,0x5e,0x50,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x39,0xb,0x6,0x74,0xe,0x6a,0x0,0x0,0x49,0x2d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x39,0x54,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x19,0x19,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x30,0x97,0x6,0x81,0xb7,0x1f,0x0,0x0,0x2d,0x75,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x54,0x78,0x6,0x96,0xa4,0x13,0x0,0x0,0x35,0xb8,0x6,0x97,0x71,0x79, + 0x0,0x0,0x50,0x22,0x6,0xc3,0xce,0xa3,0x0,0x0,0x56,0x6e,0x6,0xce,0x41,0x63, + 0x0,0x0,0x36,0x1a,0x6,0xed,0xca,0xce,0x0,0x0,0x37,0x32,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x6,0xf2,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xa6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x39,0x2e,0x7,0x0,0x57,0x53,0x0,0x0,0x21,0x83,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x41,0x36,0x7,0x6,0x93,0xe3,0x0,0x0,0x62,0x94,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1a,0x11,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x43,0x7,0x14,0x6,0x33, + 0x0,0x0,0x19,0xb4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x52,0xb6,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x44,0xc4,0x7,0x35,0x7c,0x8a,0x0,0x0,0x3b,0x6d,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x4a,0x9d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x15,0x52,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x28,0x75,0x7,0x58,0x61,0xe5,0x0,0x0,0x39,0x79,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0xf,0x3f,0x7,0x70,0xb3,0xaa,0x0,0x0,0x34,0xd9,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x26,0x6,0x7,0x9e,0x50,0x1e,0x0,0x0,0x4f,0x77,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x42,0xa2,0x7,0xa3,0x63,0x9e,0x0,0x0,0x4e,0xe9,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x47,0x5d,0x7,0xa4,0x32,0x89,0x0,0x0,0x18,0xd1,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x5e,0x13,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xa6,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x1,0xd6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x20,0x91,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x4b,0xf8,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x4b,0xb3,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x30,0x24,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x4f,0xdd,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3b,0x32,0x8,0x0,0x3f,0x29,0x0,0x0,0x4b,0x47,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x44,0x67,0x8,0x31,0xf7,0xee,0x0,0x0,0xb,0x4,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x3f,0x18,0x8,0x60,0xe7,0xcd,0x0,0x0,0x5a,0x63,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x49,0x57,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0x6f,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x5b,0x94,0x8,0x9b,0xc,0x24,0x0,0x0,0x51,0xa7,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x3c,0xf5,0x8,0xa3,0xdb,0xae,0x0,0x0,0x3d,0x85,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x3d,0x25,0x8,0xa4,0xb,0xae,0x0,0x0,0x3d,0x55,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x2e,0xed,0x8,0xa9,0xcf,0x35,0x0,0x0,0x27,0x58,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x32,0x30,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x43,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x31,0x1b,0x8,0xf7,0xb3,0xda,0x0,0x0,0x35,0xef,0x9,0x9,0x24,0x29, + 0x0,0x0,0x3e,0xdc,0x9,0x49,0xfa,0x4a,0x0,0x0,0x29,0x4f,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x29,0x7d,0x9,0x49,0xfa,0x6a,0x0,0x0,0x28,0xf3,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x29,0x21,0x9,0x4e,0xde,0x64,0x0,0x0,0x5b,0xd1,0x9,0x50,0x63,0x15, + 0x0,0x0,0x45,0xd1,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x43,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0x13,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0x97,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x4c,0xb3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x36,0x9,0x88,0x63,0xa, + 0x0,0x0,0x26,0x51,0x9,0x88,0x63,0x1a,0x0,0x0,0x26,0x79,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x26,0xa1,0x9,0x88,0x63,0x3a,0x0,0x0,0x26,0xc9,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0x8a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x53,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x4,0xde,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x45,0xa5,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x4a,0x43,0x9,0xc2,0x33,0xa9,0x0,0x0,0x12,0x9d,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x45,0x0,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2a,0x49,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xe,0x6f,0xa,0xf,0x3d,0xb9,0x0,0x0,0xe,0xa1,0xa,0x17,0x34,0x34, + 0x0,0x0,0x31,0x56,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x23,0xa,0x41,0x77,0x3, + 0x0,0x0,0x35,0x72,0xa,0x4e,0x21,0xe,0x0,0x0,0x18,0x7d,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x36,0x48,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x30,0xe9,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x3c,0xc3,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0x98,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x5d,0x90,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x51,0x44,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x56,0xa0,0xa,0x98,0x1f,0x89,0x0,0x0,0x2b,0x59,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2b,0x1a,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x3c,0x2b,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2a,0xc7,0xa,0xbc,0x8a,0x94,0x0,0x0,0x6,0xc9,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2b,0x98,0xa,0xda,0x50,0x7e,0x0,0x0,0x5c,0x95,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xd,0x68,0xa,0xea,0x46,0xf4,0x0,0x0,0x45,0xf7,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2b,0xb8,0xb,0xa,0x72,0xc9,0x0,0x0,0x2d,0x55,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x2a,0xb,0x1e,0xee,0xfe,0x0,0x0,0x43,0x7b,0xb,0x29,0x70,0x65, + 0x0,0x0,0x36,0xa8,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0x66,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0x3c,0xb,0x4e,0x19,0x54,0x0,0x0,0x3f,0xdb,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0x28,0xb,0x8c,0x46,0xe5,0x0,0x0,0xc,0x91,0xb,0x95,0xed,0xa, + 0x0,0x0,0x41,0xd,0xb,0x9d,0xe,0xa2,0x0,0x0,0x28,0x4b,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x18,0x53,0xb,0xab,0x6c,0xfa,0x0,0x0,0x51,0x1b,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x53,0x60,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x1f,0x2b,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x37,0xd5,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3a,0xf0,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x62,0x64,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x4a,0xc9,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x57,0x17,0xc,0x20,0xc4,0xde,0x0,0x0,0xb,0xb7,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xd,0xfe,0xc,0x33,0xeb,0xe2,0x0,0x0,0x57,0x4d,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x35,0x0,0xc,0x42,0x70,0xde,0x0,0x0,0x22,0x1b,0xc,0x48,0x83,0xde, + 0x0,0x0,0x4c,0x3d,0xc,0x4a,0x5f,0x82,0x0,0x0,0x3c,0x55,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x58,0x7f,0xc,0x77,0x67,0x19,0x0,0x0,0x35,0x2a,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x2d,0xde,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xc0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x27,0x79,0xc,0x90,0x26,0xb5,0x0,0x0,0x5c,0xe3,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x48,0xda,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x21,0xc6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x52,0x95,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0x6c,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x47,0x10,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x5e,0x7a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x4b,0x8b,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x16,0xb2,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x19,0x84,0xd,0x11,0x45,0x1a,0x0,0x0,0x21,0x2,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x5f,0x96,0xd,0x4a,0x90,0xb2,0x0,0x0,0x4e,0xbd,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x60,0x94,0xd,0x60,0xef,0x6a,0x0,0x0,0x3b,0xff,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2a,0x8b,0xd,0x77,0xa4,0xc0,0x0,0x0,0x34,0x3b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x2d,0x2c,0xd,0x88,0x48,0x23,0x0,0x0,0x27,0x2b,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x2f,0x8c,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x18,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x61,0x61,0xd,0xf9,0x90,0xe9,0x0,0x0,0x46,0x82,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x60,0x6a,0xe,0x20,0x13,0x12,0x0,0x0,0x34,0x94,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xe,0xe1,0xe,0x48,0xfa,0xca,0x0,0x0,0x22,0xe0,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x23,0x42,0xe,0x48,0xfd,0xca,0x0,0x0,0x23,0x11,0xe,0x48,0xff,0xca, + 0x0,0x0,0x23,0x73,0xe,0x62,0x79,0x4,0x0,0x0,0x2d,0xb9,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x19,0xeb,0xe,0x7b,0xa1,0x23,0x0,0x0,0x40,0xc6,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x28,0x28,0xe,0x98,0x18,0x54,0x0,0x0,0x20,0xc5,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x4d,0x1c,0xe,0xbe,0x61,0x81,0x0,0x0,0x51,0xe5,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x52,0x11,0xe,0xbe,0x61,0x83,0x0,0x0,0x52,0x3d,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x52,0x69,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x39,0xd5,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x10,0xa1,0xe,0xe2,0x34,0x60,0x0,0x0,0x62,0x10,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x62,0x3a,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xab,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0x50,0xe,0xf7,0xac,0xae,0x0,0x0,0xe,0x3c,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x62,0xbf,0xf,0x15,0xf4,0x85,0x0,0x0,0x3b,0x9c,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x57,0xf9,0xf,0x17,0x9c,0x64,0x0,0x0,0x5d,0xcb,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x48,0x2,0xf,0x29,0x4d,0x2a,0x0,0x0,0x37,0x3,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x32,0xf7,0xf,0x30,0x6b,0x3,0x0,0x0,0x27,0xa5,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x54,0xb9,0xf,0x5a,0x14,0x2,0x0,0x0,0xc,0xb9,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x10,0x33,0xf,0x70,0xaa,0x1a,0x0,0x0,0x5f,0xd8,0xf,0x74,0xd,0xca, + 0x0,0x0,0x4e,0x4c,0xf,0x85,0x7b,0xea,0x0,0x0,0x48,0xfc,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0xf,0xfa,0xf,0xbd,0xdc,0x15,0x0,0x0,0xb,0xf1,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x4d,0x8e,0xf,0xd3,0x41,0x72,0x0,0x0,0x2e,0x70,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x3d,0xf4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x3e,0x56,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x3e,0x25,0xf,0xd9,0x8f,0xca,0x0,0x0,0x3e,0x87,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x30,0x69,0xf,0xe2,0xe9,0x49,0x0,0x0,0x60,0xeb,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x49,0x8b,0xf,0xf5,0xeb,0x52,0x0,0x0,0x49,0xb9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x49,0xe7,0xf,0xf5,0xeb,0x54,0x0,0x0,0x4a,0x15,0x69,0x0,0x0,0x63, + 0x43,0x3,0x0,0x0,0x0,0xc,0x0,0x20,0x0,0x2d,0x0,0x20,0x5d,0xf2,0x66,0xab, + 0x50,0x5c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50, + 0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa6, + 0x0,0x20,0x66,0x2f,0x5c,0x7,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x6a,0x94, + 0x68,0x48,0x8f,0x49,0x63,0xdb,0x70,0xba,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46, + 0x0,0x20,0x62,0x40,0x97,0x0,0x89,0x81,0x76,0x84,0x5e,0xab,0x30,0x2,0x0,0xa, + 0x0,0xa,0x4f,0x7f,0x75,0x28,0x90,0x1a,0x75,0x28,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x53,0x70,0x88,0x68,0x6a,0x5f,0x52,0x17,0x53,0x70,0x76,0x84,0x65,0x87, + 0x4e,0xf6,0x5c,0x7,0x88,0xab,0x51,0x32,0x5b,0x58,0x70,0xba,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20, + 0x6a,0x94,0x68,0x48,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x25,0x0,0x69,0x0,0x20,0x7b, + 0x49,0x5f,0x85,0x72,0xc0,0x61,0x4b,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28, + 0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x31,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x32,0x0,0x78,0x0,0x28,0x0, + 0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0, + 0x78,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x35,0x0,0x78, + 0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26, + 0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x95,0xdc,0x65,0xbc, + 0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x52,0xd5, + 0x4f,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x74,0x25,0x73,0xc0,0x82,0x72,0x55,0xae,0x82,0x72, + 0x98,0x6f,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x59,0x31,0x53,0xbb,0x71,0x26,0x9e,0xde,0x66,0x42,0x81,0xea,0x52,0xd5,0x66, + 0xab,0x50,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5e,0x73,0x57,0x47,0x0,0x28,0x0, + 0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x28,0x0,0x26,0x0,0x43, + 0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x98, + 0x10,0x8a,0x2d,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0x87,0x4e,0xf6,0x0,0x28,0x0,0x26, + 0x0,0x44,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69, + 0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x95,0x8b,0x55,0x5f,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x76,0x84,0x66,0x20,0x50,0xcf, + 0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x5d,0xf2,0x67,0x9,0x66,0x20,0x50,0xcf,0x0,0x28,0x0, + 0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x5f,0xeb,0x90,0x32, + 0x81,0xf3,0x7d,0x42,0x9e,0xde,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8c,0xc7,0x65,0x99,0x59, + 0x3e,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x51,0x68, + 0x87,0xa2,0x5e,0x55,0x62,0xc9,0x4f,0x38,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x51,0x68,0x87,0xa2,0x5e,0x55,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x7d,0xa0,0x82,0x72,0x55,0xae,0x82,0x72,0x98,0x6f,0x79,0x3a,0x56,0x68,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x78,0x6c,0x91,0xcd,0x8a,0x2d, + 0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x8a,0xaa,0x66,0xe,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x96,0xb1,0x85,0xcf,0x72,0xc0,0x61,0x4b,0x52, + 0x17,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x66,0x20, + 0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x65,0x74, + 0x65,0x78,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x98,0x6f,0x79,0x3a,0x56,0x68,0x53, + 0xcd,0x82,0x72,0x98,0x6f,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74, + 0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x93,0x75,0x76,0xe4,0x97,0x0,0x89, + 0x81,0x63,0x55,0x63,0x49,0x0,0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x7d,0xda,0x60,0x27, + 0x0,0x28,0x0,0x26,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x4e,0xcb,0x8c,0xea,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x97,0x5c,0x97,0xf3,0x0, + 0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x91,0x30,0x8f,0xd1,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x65,0xb0,0x58,0x9e,0x66,0x20, + 0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x65,0xb0,0x58,0x9e,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x66,0xab,0x50,0x5c,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xad,0x65,0x3e,0x0,0x28,0x0,0x26,0x0, + 0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x50,0x4f,0x59, + 0x7d,0x8a,0x2d,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72, + 0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x70, + 0x70,0x5e,0xa6,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x93,0x4, + 0x88,0xfd,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x8f,0x9,0x51,0x65,0x4e,0xa,0x4e,0x0,0x50,0xb, + 0x66,0x20,0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72, + 0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x79,0xfb,0x96,0x64,0x0,0x28,0x0,0x26,0x0, + 0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x79, + 0xfb,0x96,0x64,0x84,0x57,0x82,0x72,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x89,0x96,0x7a,0x97,0x59,0x27,0x5c,0xf,0x53,0xef,0x8a,0xbf, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x50, + 0x12,0x5e,0x36,0x81,0xf3,0x8d,0x77,0x9e,0xde,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x5c,0x7, + 0x53,0xf3,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x93,0x75, + 0x66,0x20,0x5c,0x4,0x70,0xba,0x5d,0xe6,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54, + 0x0,0x20,0x93,0x75,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x8e,0xdf,0x9a,0xd4,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28, + 0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x90,0x78,0x53,0xd6,0x84,0x57,0x82,0x72,0x56,0x68,0x0,0x28, + 0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68, + 0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x8a,0x2d,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x63,0x7,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x53,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4f,0xdd,0x63,0x1,0x6b,0xd4,0x4f,0x8b,0x0, + 0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x82,0x7,0x89,0x96,0x8a,0xa,0x54,0xc,0x6b, + 0x65,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69, + 0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5d,0xe5, + 0x51,0x77,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x66,0xf4,0x65,0xb0,0x72,0xc0,0x61,0x4b,0x52,0x17,0x57, + 0x16,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28, + 0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x57, + 0x82,0x76,0xf4,0x54,0xc,0x6b,0x65,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x6a,0xa2,0x89,0x96,0x0,0x28, + 0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x76,0x7d,0x82,0x72,0x55,0xae,0x82,0x72,0x98,0x6f,0x79,0x3a,0x56,0x68,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x89,0x96,0x7a,0x97,0x7e,0x2e,0x65, + 0x3e,0x4f,0xc2,0x65,0x78,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x7c,0xfb,0x7d,0x71,0x98,0x10,0x8a,0x2d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x28,0x7a,0x7a,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4f,0x4e,0x65,0xbc,0x6a,0x19,0x6e, + 0x96,0x8f,0x49,0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x31,0x0,0x25,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28, + 0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4f,0x4e,0x65,0xbc,0x6a, + 0x19,0x6e,0x96,0x8f,0x49,0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x35,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4f,0x4e,0x65,0xbc, + 0x6a,0x19,0x6e,0x96,0x8f,0x49,0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x32,0x0,0x25, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e, + 0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20, + 0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1, + 0x54,0xb,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x35,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x34,0x0,0x3a,0x0,0x33,0x0, + 0x20,0x65,0x74,0x65,0x78,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x36,0x0,0x30, + 0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe0,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x62,0x7e,0x4e,0xd,0x52,0x30,0x4e,0xfb,0x4f,0x55,0x53,0xef, + 0x75,0x28,0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x66,0x20, + 0x50,0xcf,0x30,0x2,0x0,0xa,0x0,0xa,0x8a,0xcb,0x0,0x3c,0x0,0x61,0x0,0x20, + 0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74, + 0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x4e,0xb,0x8f,0x9,0x0,0x3c, + 0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x59,0x57,0x4e,0xf6,0x4e,0x26,0x5c,0x7,0x51,0x76,0x89,0xe3,0x58,0xd3,0x52,0x30, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20, + 0x8c,0xc7,0x65,0x99,0x59,0x3e,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c, + 0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f, + 0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f, + 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d, + 0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74, + 0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f, + 0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x95,0xdc,0x6a, + 0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20, + 0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x95, + 0xdc,0x65,0xbc,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x58, + 0x9e,0x52,0xa0,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x76,0x84,0x78,0x6c,0x78,0x9f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x58,0x9e,0x52,0xa0,0x65,0xb0, + 0x78,0x6c,0x78,0x9f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x90,0x32,0x96,0x8e,0x78,0xc1, + 0x53,0x40,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x62,0x40,0x67,0x9,0x6a,0x94,0x68,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x62,0x40,0x67,0x9,0x66,0x20,0x50,0xcf,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xfa,0x4e,0x0, + 0x50,0xb,0x82,0xa,0x5f,0xf,0x96,0xfb,0x81,0x66,0x6a,0x21,0x64,0xec,0x56,0x68, + 0x0,0xa,0x0,0xa,0x4f,0x5c,0x80,0x5,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x30,0x1,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x30,0x1, + 0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x30,0x1,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x30,0x1,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x30,0x1,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x29,0x30,0x1,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c, + 0x0,0x6a,0x0,0x65,0x30,0x1,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x30,0x1,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x30,0x1,0x0,0x43,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33, + 0x0,0x34,0x0,0x35,0x30,0x1,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b, + 0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x30,0x1,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x30,0x1,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x7b,0x49,0x4e,0xba,0x30,0x2,0x0,0xa,0x0,0xa,0x0,0x57, + 0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69, + 0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20, + 0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45, + 0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79, + 0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x67,0x2c,0x8e,0xdf,0x9a,0xd4,0x4f,0x9d,0x64,0xda,0x0,0x20, + 0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x90,0x1a,0x75,0x28,0x51,0x6c,0x51,0x71, + 0x63,0x88,0x6b,0xa,0x7b,0x2c,0x4e,0x8c,0x72,0x48,0x62,0x16,0x66,0xf4,0x65,0xb0, + 0x72,0x48,0x67,0x2c,0x76,0x7c,0x5e,0x3,0x30,0x2,0x8a,0x73,0x60,0xc5,0x89,0x8b, + 0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45, + 0x0,0x20,0x6a,0x94,0x68,0x48,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66, + 0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa, + 0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47, + 0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c, + 0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61, + 0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43, + 0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64, + 0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e, + 0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61, + 0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64, + 0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79, + 0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c, + 0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77, + 0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c, + 0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d, + 0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69, + 0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e, + 0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa, + 0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f, + 0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73, + 0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b, + 0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e, + 0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73, + 0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73, + 0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61, + 0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61, + 0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45, + 0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x78,0xba,0x5b,0x9a,0x89,0x81,0x90,0x0,0x51,0xfa,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x55,0xce,0xff,0x1f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x78,0xba,0x5b,0x9a,0x89,0x81,0x78,0x6c,0x91,0xcd, + 0x8a,0x2d,0x6a,0x21,0x64,0xec,0x56,0x68,0x55,0xce,0xff,0x1f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x81,0xea,0x52,0xd5,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0x54,0x0,0x36,0x0,0x30,0x0, + 0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0, + 0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20, + 0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x54,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x0,0x28,0x0, + 0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x57,0xfa,0x67,0x2c,0x78,0xc1,0x53,0x40,0x66, + 0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x95,0x8b,0x59,0xcb,0x8f, + 0xfd,0x8e,0x2a,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e, + 0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x53,0x40,0x58,0x4a,0x59,0x27,0x5c,0xf, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63, + 0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x53,0x2f,0x6d,0x41,0x63,0x92,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x53,0x2f,0x6d,0x41,0x63,0x92,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x51,0x49,0x78,0x9f,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x51,0x49,0x78,0x9f, + 0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44, + 0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x51,0x49,0x78,0x9f,0x66,0x20,0x50,0xcf,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x90,0x4e,0x63,0x83,0x63,0xcf,0x0,0x28,0x0,0x26,0x0, + 0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41, + 0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41, + 0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67, + 0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20, + 0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33, + 0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x34,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xdc,0x6b,0x64,0x6a,0x21,0x64,0xec, + 0x96,0xfb,0x81,0x66,0x79,0x81,0x75,0x28,0x4e,0x86,0x57,0xfa,0x65,0xbc,0x90,0x78, + 0x5b,0x9a,0x96,0xfb,0x81,0x66,0x76,0x84,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55, + 0x0,0x20,0x98,0x5e,0x57,0x8b,0x90,0x4e,0x6f,0xfe,0x30,0x2,0x0,0xa,0x0,0xa, + 0x80,0xfd,0x59,0x20,0x90,0x78,0x4e,0x2d,0x82,0x7,0x62,0x40,0x90,0x78,0x6a,0x5f, + 0x56,0x68,0x67,0x2c,0x4e,0xd,0x76,0xf8,0x5b,0xb9,0x76,0x84,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0xff,0xc,0x4f,0x46,0x66,0x2f,0x53,0xef,0x80,0xfd,0x67,0x3, + 0x90,0x47,0x52,0x30,0x82,0x7,0x6a,0x5f,0x56,0x68,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x20,0x62,0x16,0x51,0x76,0x4e,0xd6,0x8e,0xdf,0x9a,0xd4, + 0x4e,0xd,0x76,0xf8,0x5b,0xb9,0x76,0x84,0x55,0x4f,0x98,0x4c,0x30,0x2,0x0,0xa, + 0x0,0xa,0x55,0x5f,0x75,0x28,0x6b,0x64,0x8a,0x2d,0x5b,0x9a,0x4e,0xd,0x53,0xd7, + 0x5b,0x98,0x65,0xb9,0x65,0x2f,0x63,0xf4,0xff,0xc,0x4e,0x26,0x4e,0x14,0x63,0xd0, + 0x4e,0xa4,0x76,0x84,0x4e,0xfb,0x4f,0x55,0x93,0x2f,0x8a,0xa4,0x58,0x31,0x54,0x4a, + 0x53,0xef,0x80,0xfd,0x67,0x3,0x89,0x96,0x70,0xba,0x71,0x21,0x65,0x48,0x80,0xc, + 0x95,0xdc,0x95,0x89,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69, + 0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20, + 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69, + 0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20, + 0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63, + 0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74, + 0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20, + 0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79, + 0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65, + 0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62, + 0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61, + 0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74, + 0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63, + 0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x98,0x5e,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x53,0xd6,0x6d,0x88,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xf4,0x51,0x45,0x53,0x61,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64, + 0xf4,0x51,0x45,0x53,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xf4,0x51,0x45,0x53,0x61,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64, + 0xf4,0x51,0x45,0x53,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x53,0x61,0x5e,0x36,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25, + 0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x53,0x61,0x5e,0x36,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78,0xc1, + 0x5e,0x36,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x78, + 0xc1,0x5e,0x36,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x5e,0x36,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x8b,0x8a,0x66,0xf4,0x55,0xae,0x82,0x72, + 0x98,0x6f,0x79,0x3a,0x5c,0xd,0x6b,0xd4,0x5e,0xa6,0x0,0x28,0x0,0x26,0x0,0x4d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1a, + 0x90,0x53,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x6a,0xa2,0x67,0xe5,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x9e,0xde,0x64,0xca,0x89, + 0x96,0x7a,0x97,0x63,0x55,0x63,0x49,0x6e,0xd1,0x9f,0x20,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x7e,0x7c,0x7e,0x8c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x71,0x21,0x6c,0xd5,0x4f,0xee,0x5f,0xa9,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x66,0x42,0x95,0x93,0x62,0x33,0x30,0x2,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66, + 0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x71,0x21,0x6c,0xd5, + 0x52,0x1d,0x59,0xcb,0x53,0x16,0x89,0x96,0x8a,0xa,0x6e,0x32,0x67,0xd3,0x56,0x68, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x81,0xea,0x8a,0x2,0x0,0x20,0x0,0x28,0x59,0x27,0x5b,0xb9,0x91,0xcf,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x81,0xea,0x8a, + 0x2,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x67,0xf1,0x0,0x28,0x0,0x43,0x0,0x29,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e, + 0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x31,0x0,0x30,0x0,0x32, + 0x0,0x34,0x0,0x20,0x7c,0x7,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x20,0x7c,0x7,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x98,0x10, + 0x8a,0x2d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x5d,0xee, + 0x52,0x6,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x79,0x81,0x75,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x5d,0xf2,0x52,0x75,0x5e,0xfa,0x78,0xc1,0x78,0x9f,0x66, + 0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x78,0xc1,0x78,0x9f,0x66,0x20, + 0x50,0xcf,0x6a,0x94,0x68,0x48,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78, + 0xc1,0x78,0x9f,0x66,0x20,0x50,0xcf,0x59,0x2a,0x59,0x27,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x78,0xc1,0x78,0x9f,0x66,0x20,0x50,0xcf,0x4e,0xd,0x80,0xfd, + 0x8d,0x85,0x90,0x4e,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47, + 0x0,0x42,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x78,0xc1,0x78,0x9f,0x59,0x27,0x5c,0xf,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x98,0x6f,0x79,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x89,0x81,0x51,0x32,0x5b, + 0x58,0x8a,0x2d,0x5b,0x9a,0x55,0xce,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e, + 0xd,0x90,0x0,0x51,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44, + 0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x4e,0xd,0x89,0x86,0x84,0xcb,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xd, + 0x91,0xcd,0x8a,0x2d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x4e,0xd,0x89,0x81,0x51,0x8d,0x98,0x6f,0x79,0x3a,0x6b,0x64, + 0x6d,0x88,0x60,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x52,0xd5,0x61,0x4b,0x91,0xcd,0x7d,0xe8,0x8b,0x6f, + 0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61, + 0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x52,0xd5,0x61,0x4b,0x59,0x27,0x5c, + 0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x8a,0x2d,0x5b,0x9a,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x90,0x0, + 0x51,0xfa,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x7a,0x7a,0x7f,0x6e,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x0, + 0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x90,0x0,0x51,0xfa,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x53,0x2f,0x51,0xfa,0x70,0xba,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x20,0x68,0x3c,0x5f,0xf,0x0,0x28,0x0,0x26,0x0,0x78,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x65, + 0xe9,0x51,0x48,0x76,0x84,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x55,0x5f,0x75, + 0x28,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x64,0x0,0x20,0x65,0x74,0x54,0x8,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x55, + 0x5f,0x75,0x28,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x55,0x5f,0x75,0x28,0x0,0x20,0x0,0x28,0x67,0x2c,0x57,0x30,0x66,0x42,0x95, + 0x93,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x7d,0x50,0x67,0x5f, + 0x8f,0xfd,0x8e,0x2a,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x6b,0x63,0x57,0x28,0x90,0x32,0x51,0x65,0x51, + 0x68,0x87,0xa2,0x5e,0x55,0x6a,0x21,0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x93,0x2f,0x8a,0xa4,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x52,0x1d,0x59,0xcb,0x53,0x16,0x6e,0x32,0x67,0xd3,0x56,0x68, + 0x66,0x42,0x51,0xfa,0x93,0x2f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x95,0x8b,0x55,0x5f,0x5d,0xf2,0x5b,0x58,0x57,0x28, + 0x76,0x84,0x66,0x20,0x50,0xcf,0x4e,0x26,0x5b,0xeb,0x4f,0xdd,0x8b,0x77,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f, + 0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x90,0x0,0x51,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x5f,0x37,0x52,0x36,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20, + 0x98,0x6f,0x79,0x3a,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65, + 0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74, + 0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8e,0xdf,0x78, + 0x9f,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x8a,0xbf,0x98,0x3b, + 0x54,0x8,0x62,0x10,0x56,0x68,0x9a,0x45,0x52,0xd5,0x56,0x68,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x20,0x0,0x4a,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x48, + 0x0,0x65,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f, + 0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f, + 0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x6d,0x6e,0x9e,0xde,0x86,0x55,0x74,0x6,0x56,0x68,0x0,0x20,0x0,0x28, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x52,0x1d,0x59,0xcb,0x53,0x16,0x7d,0xb2,0x8d,0xef,0x9a,0x45,0x52, + 0xd5,0x7a,0xb,0x5f,0xf,0x59,0x31,0x65,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x8a,0x2d,0x5b,0x9a,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x20,0x59,0x31,0x65,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20, + 0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x5f, + 0xeb,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x81,0xf4,0x54,0x7d,0x93,0x2f, + 0x8a,0xa4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61, + 0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x6a,0x94,0x68,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x6a, + 0x94,0x68,0x48,0x54,0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x90,0x4e,0x6f,0xfe,0x65,0xb9,0x5f,0xf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d, + 0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x56,0xfa,0x5b,0x9a,0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69, + 0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x8e,0xdf,0x78,0x9f,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20, + 0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8e,0xdf, + 0x78,0x9f,0x0,0x2f,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x8e,0xdf,0x78,0x9f,0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x66,0x20,0x50,0xcf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x51,0x68, + 0x87,0xa2,0x5e,0x55,0x62,0xc9,0x4f,0x38,0x6a,0x21,0x5f,0xf,0x0,0x28,0x0,0x26, + 0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63, + 0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x58,0x9e,0x76,0xca,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x70,0x70, + 0x5e,0xa6,0x8f,0x49,0x63,0xdb,0x98,0x5e,0x57,0x8b,0x0,0x28,0x0,0x26,0x0,0x43, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79, + 0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f, + 0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0x6c,0x78,0x9f,0x63,0xa7,0x52, + 0x36,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x78,0xc1,0x78,0x9f,0x66,0x20,0x50,0xcf,0x4e,0xd,0x80,0xfd,0x8d,0x85,0x90,0x4e, + 0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x66,0x20,0x50,0xcf,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x4e,0xd,0x65,0x2f,0x63, + 0xf4,0x97,0x5e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x4f,0x4d,0x51, + 0x43,0x7d,0x44,0x78,0xc1,0x53,0x40,0x59,0x27,0x5c,0xf,0x76,0x84,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x62,0x16,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x58,0x0,0x20,0x66,0x20,0x50,0xcf,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x66,0x20,0x50,0xcf, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x78,0x6c,0x78,0x9f,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x78,0x6c,0x78,0x9f,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x78,0x6c,0x78,0x9f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x78,0x6c,0x78,0x9f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x78,0x6c,0x91,0xcd,0x8a,0x2d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78, + 0x6c,0x9a,0xd4,0x4e,0xd,0x53,0xef,0x75,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x78,0xc1,0x98,0x2d,0x0,0x28,0x0,0x48,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x9a,0xd8,0x5e,0xa6,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x48,0x0, + 0x69,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x7e,0x2e,0x65,0x3e,0x0,0x28,0x0, + 0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x96,0xb1,0x85,0xcf,0x5d,0xe5,0x51,0x77, + 0x52,0x17,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20, + 0x8a,0x18,0x61,0xb6,0x9a,0xd4,0x64,0xf4,0x51,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45, + 0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x5b,0xe6,0x66,0x42,0x66, + 0x42,0x94,0x18,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x57, + 0x16,0x79,0x3a,0x96,0xc6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x66,0x20,0x50,0xcf,0x68,0x3c,0x5f,0xf,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46, + 0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x8f,0x38,0x51,0x65,0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x51,0x67,0x90,0xe8,0x63, + 0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x71,0x21,0x65, + 0x48,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x88,0xdd,0x7f, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x71,0x21,0x65,0x48,0x8a,0x2d,0x5b, + 0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0, + 0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0, + 0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0, + 0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x64,0x16,0x68,0x7f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x8a,0x9e, + 0x8a,0x0,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61, + 0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x59,0x27,0x53,0x40,0x58,0x4a,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x93,0x96, + 0x5b,0x9a,0x6b,0x64,0x59,0x27,0x5c,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73, + 0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x4e,0xd,0x5b,0x58,0x57,0x28,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x62,0x16,0x0,0x20,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20, + 0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x8f,0x38,0x51,0x65,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x8f,0x38,0x51, + 0xfa,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x78,0xc1,0x51,0x49, + 0x78,0x9f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x78,0xc1,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0xc1,0x51,0x49, + 0x78,0x9f,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x6a,0x5f,0x57,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6e,0x75,0x31,0x65,0xbc,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x8c,0xc7,0x65,0x99,0x59,0x3e,0x4e,0x2d,0x7f,0x3a, + 0x5c,0x11,0x54,0x8,0x90,0x69,0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0xff,0xc,0x6a,0x5f,0x57,0x8b,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x4e,0xd,0x53,0xef,0x75,0x28,0x30,0x2,0x5c,0x7,0x52,0x7, + 0x63,0xdb,0x52,0x30,0x51,0x76,0x4e,0xd6,0x53,0xef,0x75,0x28,0x6a,0x5f,0x57,0x8b, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74, + 0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x6a,0x5f,0x56,0x68, + 0x98,0x5e,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x6a,0x5f,0x57,0x8b,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x8a,0xcb,0x78,0xba,0x8a, + 0x8d,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x5d,0xf2,0x5b,0x89,0x88,0xdd,0x4e,0x14,0x4f,0x7f,0x75,0x28,0x76, + 0xf8,0x5b,0xb9,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x76,0x84,0x7d,0xb2,0x8d,0xef,0x90,0x23,0x7d,0xda,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x8a,0xcb,0x78,0xba,0x5b,0x9a,0x6b,0x64,0x6a,0x94,0x68,0x48,0x5d,0xf2,0x5b, + 0x58,0x57,0x28,0x4e,0x26,0x53,0xef,0x8b,0x80,0x53,0xd6,0x30,0x2,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x8a,0xcb,0x78,0xba, + 0x5b,0x9a,0x6b,0x64,0x6a,0x94,0x68,0x48,0x51,0x32,0x5b,0x58,0x57,0x28,0x53,0xef, + 0x5b,0xeb,0x76,0xee,0x93,0x4,0x4e,0x2d,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68, + 0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x8a,0x18,0x61,0xb6,0x9a,0xd4,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74, + 0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x98,0x6f,0x79,0x3a,0x56,0x68, + 0x86,0x55,0x57,0x28,0x77,0x61,0x77,0x20,0x72,0xc0,0x61,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x6e,0xd1,0x9f,0x20,0x97,0x48,0x65,0x4f,0x5e,0xa6, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73, + 0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x6e,0xd1,0x9f,0x20,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x7d,0xb2,0x8d,0xef,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x7d,0xb2,0x8d,0xef,0x91,0x4d, + 0x63,0xa5,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x7d,0xb2,0x8d,0xef,0x98, + 0x5e,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x65,0xb0,0x58,0x9e,0x66,0x20,0x50,0xcf,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x67,0x2a,0x62, + 0x7e,0x52,0x30,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x88, + 0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x62,0x7e,0x4e, + 0xd,0x52,0x30,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x71,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x66,0xf4,0x6e,0x96,0x78,0xba,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78,0xba,0x5b,0x9a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x95,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f, + 0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x95,0x8b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x68,0x38, + 0x5f,0xc3,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x71,0x21,0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x68,0x38,0x5f,0xc3,0x0,0x29,0x0,0x20,0x6e, + 0x32,0x67,0xd3,0x56,0x68,0x30,0x2,0x8a,0xcb,0x4f,0x7f,0x75,0x28,0x51,0x76,0x4e, + 0xd6,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x20,0x84,0x57,0x82,0x72,0x56,0x68,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x90,0x78,0x98, + 0x5,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x51,0x76,0x4e,0xd6,0x54,0x68,0x90,0x8a,0x88,0xdd,0x7f,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x51,0x76,0x4e,0xd6,0x53,0x78,0x96,0x64,0x5f,0xf, + 0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x89,0x86,0x84,0xcb,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x88,0xdd,0x7f,0x6e, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x50,0x0,0x49,0x0,0x54,0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x81,0xea,0x6a, + 0xa2,0x0,0x20,0x0,0x28,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x29,0x0, + 0x20,0x53,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53, + 0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x4e,0x26,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4e, + 0x26,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4e,0x26,0x52, + 0x17,0x57,0xe0,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4e,0x26,0x52,0x17,0x57, + 0xe0,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x72,0x36,0x78,0x9f,0x82,0x7,0x5b, + 0x50,0x78,0x9f,0x76,0x84,0x66,0x42,0x95,0x93,0x62,0x33,0x4e,0xd,0x53,0x39,0x91, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x66,0xab,0x50,0x5c,0x57,0xf7,0x88,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x6a, + 0x19,0x6e,0x96,0x8f,0x49,0x90,0x1f,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x8a,0xcb,0x63,0x7,0x5b,0x9a,0x67,0x9,0x65,0x48,0x76,0x84,0x6a, + 0x94,0x68,0x48,0x54,0xd,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x90,0x23,0x63, + 0xa5,0x57,0xe0,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x54, + 0x8c,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x50,0x4f,0x59,0x7d,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x63,0x9,0x4e,0xb,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x63,0x9, + 0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c, + 0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x44,0x0,0x6e,0x0,0x20,0x8f,0xd4,0x56,0xde,0x52,0x30,0x89,0x96,0x7a,0x97,0x6a, + 0x21,0x5f,0xf,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x63,0x9,0x4e,0xb,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x62,0x16,0x6e, + 0xd1,0x9f,0x20,0x4e,0x2d,0x93,0x75,0x91,0xcb,0x65,0x3e,0x6e,0xd1,0x9f,0x20,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x0,0x20,0x91,0xcb,0x65,0x3e,0x6e,0xd1,0x9f,0x20,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x90,0x32,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x7b,0x2c,0x56,0xdb,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x8a,0x18,0x4f,0x4f,0x89,0x96,0x7a,0x97,0x59,0x27, + 0x5c,0xf,0x54,0x8c,0x4f,0x4d,0x7f,0x6e,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x5f,0x69,0x82,0x72,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x8f,0x49,0x90,0x1f,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x29,0x0,0x20,0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x53,0x9f,0x59,0xcb,0x66,0x20,0x50,0xcf, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x6e,0x32,0x67,0xd3,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x4e,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x8a, + 0xcb,0x8a,0x18,0x5f,0x97,0x70,0xba,0x65,0xb0,0x52,0x75,0x5e,0xfa,0x76,0x84,0x66, + 0x20,0x50,0xcf,0x52,0x6,0x53,0x40,0x4e,0x26,0x68,0x3c,0x5f,0xf,0x53,0x16,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e, + 0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72, + 0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x91, + 0xcd,0x8a,0x2d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x60,0x62,0x5f, + 0xa9,0x57,0xf7,0x88,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x78,0x6c,0x9a,0xd4,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x51,0x32,0x5b,0x58,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x5c,0x7,0x4e,0xe5,0x4e,0xa,0x8a,0x2d,0x5b,0x9a,0x5b,0x58,0x51, + 0x32,0x70,0xba,0x51,0x68,0x5c,0x40,0x98,0x10,0x8a,0x2d,0x50,0x3c,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x78,0xc1,0x53,0x40,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x5f,0x9e,0x7a,0xb,0x5f,0xf, + 0x5d,0xe5,0x4f,0x5c,0x76,0xee,0x93,0x4,0x4e,0x2d,0x90,0x78,0x64,0xc7,0x4e,0xcb, + 0x8c,0xea,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x90,0x78,0x53, + 0xd6,0x72,0x36,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x6a,0x94,0x68, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5e,0x8f,0x52,0x17,0x57, + 0xe0,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5e,0x8f,0x52,0x17,0x57,0xe0,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x5e,0x8f,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5e, + 0x8f,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x8a,0x2d,0x5b,0x9a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x59,0x27,0x5c,0xf, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x61,0x62,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x5c,0xf,0x53,0x40,0x58,0x4a,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x80,0x72,0x97,0xf3,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x97,0xf3,0x91,0xcf,0x58,0x9e,0x76,0xca,0x0,0x28, + 0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69, + 0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x97, + 0xf3,0x91,0xcf,0x58,0x9e,0x76,0xca,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x97,0xf3,0x65,0x48,0x53,0x61,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x97,0xf3,0x65,0x48,0x53,0x61,0x0,0x20,0x0,0x32,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x97,0xf3,0x65,0x48,0x53,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x97,0xf3,0x65,0x48,0x53,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x63,0x7, + 0x5b,0x9a,0x4e,0x3b,0x89,0x96,0x7a,0x97,0x59,0x27,0x5c,0xf,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61, + 0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x63, + 0x7,0x5b,0x9a,0x89,0x96,0x7a,0x97,0x59,0x27,0x5c,0xf,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69, + 0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90,0x1f,0x5e,0xa6,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1f,0x5e,0xa6,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x73,0x68,0x7a,0xcb,0x0,0x20, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x6a,0x19,0x6e,0x96,0x0,0x20,0x0,0x32,0x0,0x20,0x93, + 0x75,0x64,0x16,0x68,0x7f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6a,0x19,0x6e,0x96,0x0,0x20,0x0,0x34,0x0, + 0x20,0x93,0x75,0x64,0x16,0x68,0x7f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x6a,0x19,0x6e,0x96,0x0,0x20,0x0,0x36,0x0,0x20, + 0x93,0x75,0x64,0x16,0x68,0x7f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x6a,0x19,0x6e,0x96,0x0,0x20,0x0,0x38,0x0,0x20,0x93, + 0x75,0x64,0x16,0x68,0x7f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x5b,0x58,0x51,0x32,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x88,0x68,0x97,0x62,0x66,0x20,0x50,0xcf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x64,0xf7,0x57,0x16,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26, + 0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x76,0xee,0x6a, + 0x19,0x5e,0x40,0x73,0x87,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66, + 0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x7b,0x2c,0x4e,0x9,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x7d,0xb2,0x8d,0xef,0x8a,0x2d,0x5b,0x9a,0x5c,0x7,0x52,0x7,0x63, + 0xdb,0x70,0xba,0x7a,0x7a,0x9a,0x45,0x52,0xd5,0x7a,0xb,0x5f,0xf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x90, + 0x78,0x5b,0x9a,0x76,0x84,0x6a,0x94,0x68,0x48,0x5c,0x7,0x88,0xab,0x89,0x86,0x84, + 0xcb,0x30,0x2,0x78,0xba,0x5b,0x9a,0x7e,0x7c,0x7e,0x8c,0x4f,0x7f,0x75,0x28,0x6b, + 0x64,0x6a,0x94,0x68,0x48,0x55,0xce,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8a,0x72,0x36,0x66,0x20,0x50,0xcf,0x53,0xef,0x80,0xfd,0x57, + 0x28,0x52,0x75,0x5e,0xfa,0x5d,0xee,0x75,0x70,0x66,0x20,0x50,0xcf,0x5f,0x8c,0x88, + 0xab,0x4f,0xee,0x65,0x39,0x30,0x2,0x0,0xa,0x0,0xa,0x59,0x82,0x67,0x9c,0x66, + 0x20,0x50,0xcf,0x6a,0x94,0x68,0x48,0x88,0xab,0x79,0xfb,0x52,0xd5,0x62,0x16,0x89, + 0x7,0x88,0xfd,0xff,0xc,0x62,0x16,0x52,0x75,0x5e,0xfa,0x6b,0x64,0x78,0xc1,0x78, + 0x9f,0x76,0x84,0x7a,0xb,0x5f,0xf,0x4e,0x2d,0x5b,0x58,0x57,0x28,0x93,0x2f,0x8a, + 0xa4,0xff,0xc,0x4e,0x5f,0x53,0xef,0x80,0xfd,0x76,0x7c,0x75,0x1f,0x90,0x19,0x7a, + 0x2e,0x60,0xc5,0x6c,0xc1,0x30,0x2,0x0,0xa,0x0,0xa,0x66,0x2f,0x54,0x26,0x97, + 0x0,0x89,0x81,0x4f,0xee,0x5f,0xa9,0x66,0x42,0x95,0x93,0x62,0x33,0xff,0x1f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c, + 0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72, + 0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65, + 0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68, + 0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20, + 0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69, + 0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x6b,0x64,0x64,0xcd,0x4f,0x5c,0x5c,0x7,0x78,0x6c,0x91,0xcd, + 0x8a,0x2d,0x6a,0x21,0x64,0xec,0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x66,0x42,0x95,0x93,0x54,0xc,0x6b,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x52,0xa0,0x90,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x52,0xa0,0x90,0x1f,0x66,0x42,0x5e,0x8f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x98,0x5e,0x57, + 0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x98,0x5e,0x57,0x8b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x5c,0x1a,0x67,0x2a,0x65,0x2f, + 0x63,0xf4,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x71,0x21,0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53, + 0x16,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x71,0x21, + 0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0xff,0xc,0x97,0x0,0x89,0x81,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32, + 0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x71,0x21,0x6c,0xd5,0x8f, + 0x9,0x51,0x65,0x93,0x75,0x76,0xe4,0x52,0xa0,0x90,0x1f,0x56,0x68,0x30,0x2,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x71,0x21,0x6c,0xd5,0x8b,0x80,0x53, + 0xd6,0x6a,0x94,0x68,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x71,0x21,0x6c, + 0xd5,0x8a,0x3b,0x51,0x8a,0x53,0x9f,0x59,0xcb,0x8f,0x38,0x51,0x65,0x30,0x2,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20, + 0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x71,0x21,0x6c,0xd5,0x5b,0xeb,0x51,0x65,0x6a,0x94,0x68,0x48,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x4e,0xd,0x65,0x2f,0x63,0xf4,0x76,0x84,0x78,0xc1, + 0x78,0x9f,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x4f,0x7f,0x75,0x28,0x55,0xae,0x7c,0xbe,0x5e,0xa6,0x6d,0x6e,0x9e,0xde,0x0, + 0x20,0x0,0x28,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0x87,0xa2,0x5e,0x55,0x98,0x5e,0x57,0x8b,0x0,0x28,0x0,0x26,0x0,0x54,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73, + 0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x6a,0x94, + 0x68,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c, + 0x75,0x31,0x65,0xbc,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x8c,0xc7,0x65,0x99, + 0x59,0x3e,0x4e,0x2d,0x7f,0x3a,0x5c,0x11,0x54,0x8,0x90,0x69,0x76,0x84,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0xff,0xc,0x98,0x6f,0x79,0x3a,0x53,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4e,0xd,0x53,0xef, + 0x75,0x28,0x30,0x2,0x5c,0x7,0x52,0x7,0x63,0xdb,0x52,0x30,0x51,0x76,0x4e,0xd6, + 0x53,0xef,0x75,0x28,0x98,0x6f,0x79,0x3a,0x53,0x61,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x98,0x6f,0x79,0x3a,0x53,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68, + 0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x49, + 0x5f,0x85,0x72,0xc0,0x61,0x4b,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0,0x29, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x6b,0x61,0x8f,0xce,0x4f,0x7f,0x75,0x28,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xff,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x5b, + 0xec,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x66, + 0xf4,0x5f,0xeb,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x6b,0x63,0x57,0x28,0x8f,0x9,0x51,0x65,0x4e, + 0x0,0x50,0xb,0x4e,0xd,0x53,0xd7,0x65,0x2f,0x63,0xf4,0x76,0x84,0x8a,0x2d,0x5b, + 0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e, + 0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33, + 0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73, + 0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x78,0xc1,0x78,0x9f,0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_en-GB.qm + 0x0,0x0,0x8b,0x57, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x26,0x23,0x0,0x0,0x0,0x48, + 0x0,0x0,0x42,0xf1,0x0,0x0,0x0,0x53,0x0,0x0,0x63,0x6c,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x48,0x0,0x0,0x4,0xf2,0x0,0x0,0x4b,0xd9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x4d,0x9e,0x0,0x0,0x5,0x3b,0x0,0x0,0x57,0xa6,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x57,0xdf,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xe1,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x29,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x71,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xb0,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0xf8,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x40,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x88,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xa6,0x0,0x0,0x49,0xc3,0x0,0x0,0x25,0xe4,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x47,0xe0,0x0,0x0,0x4d,0x85,0x0,0x0,0x47,0xfe,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x57,0xc1,0x0,0x0,0x5d,0x81,0x0,0x0,0x7b,0xab,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x25,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x8f,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x11,0x82,0x0,0x4,0x8c,0xaf,0x0,0x0,0x24,0x70,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x26,0x2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3a,0x39,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x3e,0xc8,0x0,0x4,0xc8,0xa4,0x0,0x0,0x3f,0xbb,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3d,0x7b,0x0,0x4,0xd0,0x25,0x0,0x0,0x40,0x12,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x42,0x6d,0x0,0x5,0x56,0x45,0x0,0x0,0x57,0x31,0x0,0x5,0x78,0x79, + 0x0,0x0,0x63,0x84,0x0,0x5,0x98,0xc5,0x0,0x0,0x64,0x68,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x67,0x8f,0x0,0x5,0xc0,0x65,0x0,0x0,0x74,0x61,0x0,0x12,0x74,0x52, + 0x0,0x0,0x18,0x12,0x0,0x19,0x74,0x52,0x0,0x0,0x18,0x4b,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xbd,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xb,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0xeb,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0xc9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x11,0xca,0x0,0x34,0x9,0xc8,0x0,0x0,0x13,0x3e,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x76,0xe9,0x0,0x3b,0xa9,0x68,0x0,0x0,0x18,0xd2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1b,0x75,0x0,0x4c,0x99,0x62,0x0,0x0,0x3c,0x70,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x33,0x7f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x63,0x3,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6a,0x4d,0x0,0x5a,0x6c,0x44,0x0,0x0,0x68,0x4,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x74,0x1,0x0,0x5c,0x6,0x8a,0x0,0x0,0x74,0x82,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x7e,0x27,0x0,0x73,0x75,0x3e,0x0,0x0,0x32,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x56,0xf5,0x0,0x97,0x96,0x4,0x0,0x0,0x34,0xcc,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4a,0x17,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4b,0xa9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x45,0x8e,0x0,0xb8,0x5f,0x43,0x0,0x0,0x59,0x77,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x17,0xd9,0x1,0x9,0x1c,0x92,0x0,0x0,0x3e,0x38,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x28,0xae,0x1,0x39,0xa4,0xce,0x0,0x0,0x53,0xb6,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x74,0x25,0x1,0x4c,0x50,0xee,0x0,0x0,0x61,0x6,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x45,0x4f,0x1,0x61,0xac,0xc9,0x0,0x0,0x12,0x7e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x72,0xa2,0x1,0x7a,0x2c,0x99,0x0,0x0,0x38,0xcb,0x1,0x91,0xe,0x73, + 0x0,0x0,0x26,0xc5,0x1,0x9c,0xe0,0x83,0x0,0x0,0x47,0x92,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x4f,0x9,0x1,0xb0,0x47,0x5c,0x0,0x0,0x4d,0xb9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x2f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3d,0x9c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0xe3,0x1,0xdd,0x59,0x87,0x0,0x0,0xe,0xa3,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2f,0x4a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x64,0x2c,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6a,0x98,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0xcc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x6c,0x15,0x2,0x23,0x3c,0x6b,0x0,0x0,0x6b,0xb2,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x6b,0x4f,0x2,0x3c,0xaa,0x89,0x0,0x0,0x15,0xa8,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x47,0x17,0x2,0x78,0x48,0x1a,0x0,0x0,0x4e,0xc7,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x7c,0xb,0x2,0x90,0x8d,0x12,0x0,0x0,0x3e,0xe9,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x59,0xfe,0x2,0xad,0x4a,0x22,0x0,0x0,0x61,0x69,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xa9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xb,0xc4,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xc,0xa2,0x2,0xbb,0x66,0x33,0x0,0x0,0x10,0xfe,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x11,0xa3,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x59,0xb6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x7e,0x4b,0x3,0x5,0x38,0xb2,0x0,0x0,0x3c,0x94,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x5d,0x3d,0x3,0x41,0x45,0x12,0x0,0x0,0x13,0x62,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x14,0x34,0x3,0x4b,0x26,0xf2,0x0,0x0,0x14,0x5b,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x4d,0xe3,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xd,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x17,0x34,0x3,0x6a,0x66,0x2e,0x0,0x0,0x51,0xfd,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x4f,0xf6,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0x74,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2e,0x15,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x63,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x18,0x84,0x3,0xa4,0x35,0xa5,0x0,0x0,0x3e,0xa8,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x3e,0x7a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x18,0xab,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x54,0x79,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x6a,0xe3,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x69,0x4e,0x3,0xe4,0x25,0x5a,0x0,0x0,0x69,0x12,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x68,0xd6,0x3,0xe4,0x25,0x7a,0x0,0x0,0x68,0x9a,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xc4,0x4,0x3,0xf6,0x9a,0x0,0x0,0x51,0x94,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x15,0xff,0x4,0x15,0x75,0x22,0x0,0x0,0x13,0x89,0x4,0x17,0x65,0x22, + 0x0,0x0,0x13,0xb3,0x4,0x1c,0x68,0x69,0x0,0x0,0x15,0x4e,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xa4,0x4,0x31,0xff,0xe9,0x0,0x0,0x24,0x91,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x27,0x7f,0x4,0x51,0x79,0xb1,0x0,0x0,0x6d,0x5,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x75,0x78,0x4,0x5b,0x53,0x1f,0x0,0x0,0x23,0xb0,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x68,0x67,0x4,0x7d,0xb,0xa4,0x0,0x0,0x39,0x76,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x39,0x9d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x31,0xd5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2d,0x46,0x4,0xb8,0x1,0x2e,0x0,0x0,0x36,0x4,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xf,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xa6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x16,0xb3,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x55,0xc6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x30,0x88,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x16,0x59,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1c,0x17,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x55,0xf0,0x4,0xeb,0x2f,0xa,0x0,0x0,0x4c,0xd8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x46,0xc6,0x5,0x18,0x5,0x95,0x0,0x0,0x77,0x55,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x14,0xd3,0x5,0x30,0xd3,0xe,0x0,0x0,0x38,0x14,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x55,0x9f,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x7c,0xe0,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0x5a,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x39,0xf1,0x5,0x88,0x2e,0xd9,0x0,0x0,0x67,0xb0,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x50,0x20,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x73,0xb0,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x6e,0x7,0x5,0xa5,0x3a,0x79,0x0,0x0,0x24,0xd9,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6a,0x71,0x5,0xb2,0x16,0x79,0x0,0x0,0x61,0xce,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x43,0xde,0x5,0xb3,0x5f,0x79,0x0,0x0,0x45,0xa,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3c,0x13,0x5,0xb8,0x5d,0xad,0x0,0x0,0x14,0x82,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x12,0xed,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x13,0xdd,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x47,0x56,0x5,0xc1,0x4d,0x83,0x0,0x0,0x35,0x44,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x7a,0x37,0x5,0xd0,0x4f,0x11,0x0,0x0,0x7a,0xd9,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0x58,0x5,0xdf,0xba,0xba,0x0,0x0,0x7b,0x21,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x60,0x76,0x6,0x7,0xd3,0xda,0x0,0x0,0x49,0x21,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x34,0xf9,0x6,0x19,0x20,0x43,0x0,0x0,0x64,0x89,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x37,0xde,0x6,0x38,0x9f,0x35,0x0,0x0,0x35,0xb3,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1d,0x70,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x6f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x30,0xb8,0x6,0x6c,0xb8,0x3,0x0,0x0,0x78,0x8a,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x45,0xd3,0x6,0x74,0xe,0x6a,0x0,0x0,0x5a,0xc1,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x46,0x3c,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1b,0xe1,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3a,0xdb,0x6,0x81,0xb7,0x1f,0x0,0x0,0x36,0xf1,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x69,0x8a,0x6,0x96,0xa4,0x13,0x0,0x0,0x41,0x44,0x6,0x97,0x71,0x79, + 0x0,0x0,0x63,0xea,0x6,0xc3,0xce,0xa3,0x0,0x0,0x6c,0x78,0x6,0xce,0x41,0x63, + 0x0,0x0,0x41,0xda,0x6,0xed,0xca,0xce,0x0,0x0,0x43,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x80,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x4c,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x46,0x6,0x7,0x0,0x57,0x53,0x0,0x0,0x26,0x3b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x4f,0xc6,0x7,0x6,0x93,0xe3,0x0,0x0,0x7d,0xbe,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1d,0x3d,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1c,0xb6,0x7,0x2a,0xb5,0xca,0x0,0x0,0x67,0x5c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x55,0x0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x48,0xaf,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x5c,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x17,0xa6,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x30,0x31,0x7,0x58,0x61,0xe5,0x0,0x0,0x46,0x6f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0x25,0x7,0x70,0xb3,0xaa,0x0,0x0,0x40,0x33,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2d,0x16,0x7,0x9e,0x50,0x1e,0x0,0x0,0x63,0x27,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x51,0xd0,0x7,0xa3,0x63,0x9e,0x0,0x0,0x62,0x43,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x58,0x45,0x7,0xa4,0x32,0x89,0x0,0x0,0x1b,0x99,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x78,0x45,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x46,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x76,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x25,0x15,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x5e,0x7e,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x5e,0x33,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3a,0x5a,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x63,0xa5,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x48,0x5e,0x8,0x0,0x3f,0x29,0x0,0x0,0x5d,0xb5,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x54,0xa3,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0x3c,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x4d,0x56,0x8,0x60,0xe7,0xcd,0x0,0x0,0x73,0x35,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5a,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x13,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x74,0xa6,0x8,0x9b,0xc,0x24,0x0,0x0,0x65,0xeb,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4a,0xb9,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4b,0x6d,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4a,0xf5,0x8,0xa4,0xb,0xae,0x0,0x0,0x4b,0x31,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x39,0x25,0x8,0xa9,0xcf,0x35,0x0,0x0,0x2e,0xa2,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3c,0xfa,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xcf,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3b,0x7d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x41,0x9b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x4d,0x8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x31,0x5d,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x31,0x99,0x9,0x49,0xfa,0x6a,0x0,0x0,0x30,0xe5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x31,0x21,0x9,0x4e,0xde,0x64,0x0,0x0,0x75,0x3,0x9,0x50,0x63,0x15, + 0x0,0x0,0x56,0x71,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0xff,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x17,0x5b,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x47,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x5f,0x6b,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xce,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2d,0x6d,0x9,0x88,0x63,0x1a,0x0,0x0,0x2d,0x97,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2d,0xc1,0x9,0x88,0x63,0x3a,0x0,0x0,0x2d,0xeb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x16,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x2d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x5e,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x56,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x5c,0x29,0x9,0xc2,0x33,0xa9,0x0,0x0,0x14,0xfd,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x55,0x54,0x9,0xd5,0x43,0xd3,0x0,0x0,0x32,0xcb,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0x1d,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0x53,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3b,0xce,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x37,0xa,0x41,0x77,0x3, + 0x0,0x0,0x40,0xf6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1b,0x39,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x42,0x10,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3b,0x41,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4a,0x65,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x6,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x77,0xa6,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x65,0x40,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x6c,0xc6,0xa,0x98,0x1f,0x89,0x0,0x0,0x33,0xfd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x33,0xb2,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x49,0x8d,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x33,0x4f,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x53,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x34,0x48,0xa,0xda,0x50,0x7e,0x0,0x0,0x76,0x17,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x0,0xa,0xea,0x46,0xf4,0x0,0x0,0x56,0xa1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x34,0x72,0xb,0xa,0x72,0xc9,0x0,0x0,0x36,0xc7,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xc8,0xb,0x1e,0xee,0xfe,0x0,0x0,0x53,0x23,0xb,0x29,0x70,0x65, + 0x0,0x0,0x42,0x8e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xb,0x9a,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0x78,0xb,0x4e,0x19,0x54,0x0,0x0,0x4e,0x31,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0x6e,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0xef,0xb,0x95,0xed,0xa, + 0x0,0x0,0x4f,0x93,0xb,0x9d,0xe,0xa2,0x0,0x0,0x30,0x1,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x65,0x13,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x68,0x28,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x23,0x2f,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x44,0x23,0xb,0xe2,0xf9,0x49,0x0,0x0,0x48,0x1c,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x7d,0x88,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x5d,0x7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x6d,0x65,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0xed,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xf,0x9c,0xc,0x33,0xeb,0xe2,0x0,0x0,0x6d,0xad,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x40,0x66,0xc,0x42,0x70,0xde,0x0,0x0,0x27,0x1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x5e,0xc9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x49,0xc9,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x6f,0xbd,0xc,0x77,0x67,0x19,0x0,0x0,0x40,0xa2,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x37,0x9c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x30,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x2e,0xcf,0xc,0x90,0x26,0xb5,0x0,0x0,0x76,0x9b,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5a,0x58,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x26,0x86,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x67,0x2f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xfc,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x57,0xfa,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x78,0xba,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x5d,0xfd,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x18,0xf6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1c,0x6e,0xd,0x11,0x45,0x1a,0x0,0x0,0x25,0xae,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x7a,0x5e,0xd,0x4a,0x90,0xb2,0x0,0x0,0x62,0x13,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x7b,0x72,0xd,0x60,0xef,0x6a,0x0,0x0,0x49,0x51,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x33,0x7,0xd,0x77,0xa4,0xc0,0x0,0x0,0x3f,0x67,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x36,0x94,0xd,0x88,0x48,0x23,0x0,0x0,0x2e,0x5d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x39,0xc4,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xdc,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x7c,0x47,0xd,0xf9,0x90,0xe9,0x0,0x0,0x57,0x52,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x7b,0x48,0xe,0x20,0x13,0x12,0x0,0x0,0x3f,0xdc,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x10,0xb9,0xe,0x48,0xfa,0xca,0x0,0x0,0x27,0xca,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x28,0x3c,0xe,0x48,0xfd,0xca,0x0,0x0,0x28,0x3,0xe,0x48,0xff,0xca, + 0x0,0x0,0x28,0x75,0xe,0x62,0x79,0x4,0x0,0x0,0x37,0x69,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1d,0xd,0xe,0x7b,0xa1,0x23,0x0,0x0,0x4f,0x4e,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2f,0xd4,0xe,0x98,0x18,0x54,0x0,0x0,0x25,0x63,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x60,0xa,0xe,0xbe,0x61,0x81,0x0,0x0,0x66,0x3f,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x66,0x7b,0xe,0xbe,0x61,0x83,0x0,0x0,0x66,0xb7,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x66,0xf3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x46,0xed,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x12,0xc3,0xe,0xe2,0x34,0x60,0x0,0x0,0x7d,0x34,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x7d,0x5e,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0x8d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xd,0x98,0xe,0xf7,0xac,0xae,0x0,0x0,0xf,0xe4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x7d,0xf1,0xf,0x15,0xf4,0x85,0x0,0x0,0x48,0xdc,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x6e,0xd3,0xf,0x17,0x9c,0x64,0x0,0x0,0x77,0xfd,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x59,0x38,0xf,0x29,0x4d,0x2a,0x0,0x0,0x43,0x9,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x3d,0xf9,0xf,0x30,0x6b,0x3,0x0,0x0,0x2f,0x11,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x69,0xf9,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0x2d,0xf,0x70,0xaa,0x1a,0x0,0x0,0x7a,0xa0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x61,0x9e,0xf,0x85,0x7b,0xea,0x0,0x0,0x5a,0x88,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x11,0xee,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0x2f,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x60,0xa6,0xf,0xd3,0x41,0x72,0x0,0x0,0x38,0x80,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4b,0xf4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x4c,0x66,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4c,0x2d,0xf,0xd9,0x8f,0xca,0x0,0x0,0x4c,0x9f,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3a,0x9f,0xf,0xe2,0xe9,0x49,0x0,0x0,0x7b,0xc9,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5b,0x21,0xf,0xf5,0xeb,0x52,0x0,0x0,0x5b,0x63,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x5b,0xa5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x5b,0xe7,0x69,0x0,0x0,0x7e, + 0x75,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x40,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x28,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0, + 0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35, + 0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x41,0x0,0x62, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x62,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0, + 0x2d,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x73,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x44,0x0,0x65,0x0, + 0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x46,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x48,0x0,0x65,0x0,0x6c,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26, + 0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0, + 0x4b,0x0,0x65,0x0,0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62, + 0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x47,0x0,0x72,0x0,0x65,0x0,0x79,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x61,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f, + 0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x67,0x0,0x69,0x0, + 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x67,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x41, + 0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52, + 0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66, + 0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x53,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x53,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x78,0x0, + 0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4b,0x0,0x65,0x0,0x65,0x0, + 0x70,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x20,0x0,0x77,0x0,0x69,0x0, + 0x74,0x0,0x68,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x54,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x55,0x0, + 0x70,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x57,0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x77,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0, + 0x70,0x0,0x74,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x62, + 0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42, + 0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49, + 0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22, + 0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30, + 0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20, + 0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x49,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x58,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c,0x0,0x6f, + 0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x75,0x0, + 0x74,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x62,0x0,0x6f,0x0,0x75,0x0, + 0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0, + 0x64,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x64,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x65, + 0x0,0x77,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x64, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xc6,0x0,0x41,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xa, + 0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x73, + 0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61, + 0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47, + 0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64, + 0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79, + 0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x65, + 0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45, + 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f, + 0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, + 0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72, + 0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c, + 0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37, + 0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b, + 0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72, + 0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68, + 0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c, + 0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65, + 0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20, + 0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, + 0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75, + 0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e, + 0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e, + 0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29, + 0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65, + 0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75, + 0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74, + 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20, + 0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20, + 0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65, + 0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20, + 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65, + 0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63, + 0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f, + 0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43, + 0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e, + 0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79, + 0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0, + 0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0, + 0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x61,0x0, + 0x73,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x65,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x20, + 0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x2,0xe2,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79, + 0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x20, + 0x0,0x48,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79, + 0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x45,0x0,0x6e, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69, + 0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20, + 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69, + 0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20, + 0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63, + 0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74, + 0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20, + 0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79, + 0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65, + 0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62, + 0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61, + 0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74, + 0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63, + 0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0, + 0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e, + 0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e, + 0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x78,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x50,0x0,0x43,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44, + 0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20, + 0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x6f,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x6f,0x0,0x6e, + 0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x77,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x67,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0, + 0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x26, + 0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x45,0x0,0x26,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x78, + 0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72, + 0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x66,0x0,0x75,0x0, + 0x6c,0x0,0x6c,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x46,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74,0x0,0x68,0x0,0x20, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x46,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0, + 0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0, + 0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75, + 0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x74, + 0x0,0x68,0x0,0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x64,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x46,0x0,0x6c,0x0,0x6f, + 0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65, + 0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e, + 0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44, + 0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77, + 0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,0x0,0x65, + 0x0,0x61,0x0,0x64,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x48,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0, + 0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c, + 0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20, + 0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34, + 0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x4d,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0, + 0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x49,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0, + 0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x0, + 0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c, + 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0, + 0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xea,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77, + 0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xb6,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0,0x61, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x79,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x65, + 0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f, + 0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x65,0x0, + 0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x79,0x0, + 0x70,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0,0x66,0x0,0x66,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70, + 0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0, + 0x64,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5c,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x38, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x51,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x79, + 0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61, + 0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x26, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x26,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52, + 0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d, + 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61, + 0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x52,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x77,0x0,0x6c,0x0,0x79,0x0,0x2d,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x73,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0, + 0x65,0x0,0x73,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x65,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78, + 0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0, + 0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a, + 0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61, + 0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x61,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0, + 0x53,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x26,0x0, + 0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73, + 0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67, + 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f, + 0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72, + 0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x6c,0x0,0x6f,0x0,0x77,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x6c, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x6f,0x0,0x75, + 0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0, + 0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x47,0x0,0x61,0x0,0x69,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f, + 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c, + 0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20, + 0x0,0x4d,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61, + 0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0, + 0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53, + 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x2d,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x62,0x0,0x75,0x0, + 0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x36,0x0,0x2d,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36, + 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x38,0x0, + 0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x75, + 0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x54,0x0,0x61,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x26,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x74,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72, + 0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66, + 0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x61,0x0, + 0x72,0x0,0x79,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x54,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0, + 0x72,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x72,0x0, + 0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x54,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77, + 0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x1,0xe0,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x77,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x66,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x72,0x0, + 0x65,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x49,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x70,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0, + 0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x44,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x78,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x69,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0, + 0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x55,0x0,0x53, + 0x0,0x42,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74, + 0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x55,0x0,0x6e,0x0,0x61,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x55, + 0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44, + 0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x55,0x0, + 0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x6b,0x0,0x65,0x0, + 0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0, + 0x63,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20, + 0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67, + 0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x6e,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0,0x6e, + 0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55, + 0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x26,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf0, + 0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x57,0x0,0x65,0x0,0x6c,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f, + 0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x74,0x0, + 0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72, + 0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x66,0x0, + 0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65, + 0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x59,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x6f,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61, + 0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25, + 0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30, + 0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65, + 0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49, + 0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_de-DE.qm + 0x0,0x0,0x99,0x4b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x2a,0x83,0x0,0x0,0x0,0x48, + 0x0,0x0,0x4a,0xbf,0x0,0x0,0x0,0x53,0x0,0x0,0x6e,0x2e,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x94,0x0,0x0,0x4,0xf2,0x0,0x0,0x54,0x25,0x0,0x0,0x5,0x12, + 0x0,0x0,0x55,0xd4,0x0,0x0,0x5,0x3b,0x0,0x0,0x61,0x4,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x61,0x3d,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x2d,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x75,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xbd,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x5,0x32,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x7a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xc2,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0xa,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x28,0x0,0x0,0x49,0xc3,0x0,0x0,0x2a,0x44,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x50,0xe,0x0,0x0,0x4d,0x85,0x0,0x0,0x50,0x2c,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x61,0x1f,0x0,0x0,0x5d,0x81,0x0,0x0,0x89,0x7f,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x73,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xdb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x9e,0x0,0x4,0x8c,0xaf,0x0,0x0,0x28,0xcc,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x2a,0x62,0x0,0x4,0xa7,0x89,0x0,0x0,0x40,0xe7,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x45,0xe0,0x0,0x4,0xc8,0xa4,0x0,0x0,0x47,0x1f,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x44,0x7d,0x0,0x4,0xd0,0x25,0x0,0x0,0x47,0x82,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x4a,0x1f,0x0,0x5,0x56,0x45,0x0,0x0,0x60,0x9b,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6e,0x46,0x0,0x5,0x98,0xc5,0x0,0x0,0x6f,0x2a,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x72,0xf5,0x0,0x5,0xc0,0x65,0x0,0x0,0x80,0xd9,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0xe2,0x0,0x19,0x74,0x52,0x0,0x0,0x1b,0x23,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x9,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xcf,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0x11,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x3,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xe6,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x88,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x83,0xf7,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1b,0xb2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1e,0xd5,0x0,0x4c,0x99,0x62,0x0,0x0,0x43,0x52,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x39,0x35,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6d,0xc3,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x75,0xd9,0x0,0x5a,0x6c,0x44,0x0,0x0,0x73,0x72,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x80,0x79,0x0,0x5c,0x6,0x8a,0x0,0x0,0x80,0xf8,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x8c,0x1b,0x0,0x73,0x75,0x3e,0x0,0x0,0x37,0xd2,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x60,0x53,0x0,0x97,0x96,0x4,0x0,0x0,0x3a,0x8a,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x52,0x5b,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x53,0xf5,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4d,0x9a,0x0,0xb8,0x5f,0x43,0x0,0x0,0x63,0x17,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x1a,0xa1,0x1,0x9,0x1c,0x92,0x0,0x0,0x45,0x4e,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2d,0x26,0x1,0x39,0xa4,0xce,0x0,0x0,0x5c,0x8e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x80,0x9d,0x1,0x4c,0x50,0xee,0x0,0x0,0x6b,0x80,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4d,0x59,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0xac,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7e,0xf6,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3f,0x2f,0x1,0x91,0xe,0x73, + 0x0,0x0,0x2b,0x2b,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4f,0xc4,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x57,0x5b,0x1,0xb0,0x47,0x5c,0x0,0x0,0x55,0xef,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xf5,0x1,0xc8,0x65,0x8f,0x0,0x0,0x44,0xa4,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xd5,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x17,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x34,0x70,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6e,0xee,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x76,0x36,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x90,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x77,0xbf,0x2,0x23,0x3c,0x6b,0x0,0x0,0x77,0x5c,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x76,0xf9,0x2,0x3c,0xaa,0x89,0x0,0x0,0x18,0x3e,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4f,0x29,0x2,0x78,0x48,0x1a,0x0,0x0,0x57,0x1b,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x89,0xdf,0x2,0x90,0x8d,0x12,0x0,0x0,0x46,0x11,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x63,0xac,0x2,0xad,0x4a,0x22,0x0,0x0,0x6b,0xe1,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x5d,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xe8,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xdc,0x2,0xbb,0x66,0x33,0x0,0x0,0x13,0x0,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0xbf,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x63,0x58,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x8c,0x3f,0x3,0x5,0x38,0xb2,0x0,0x0,0x43,0x78,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x67,0x29,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0xac,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x9c,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0xc3,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x56,0x19,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0xc3,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0xea,0x3,0x6a,0x66,0x2e,0x0,0x0,0x5a,0x79,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x58,0x4c,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x4a,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x33,0x3d,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xaf,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1b,0x64,0x3,0xa4,0x35,0xa5,0x0,0x0,0x45,0xc0,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x45,0x92,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1b,0x8b,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5d,0xab,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x76,0x8d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x74,0xde,0x3,0xe4,0x25,0x5a,0x0,0x0,0x74,0xa2,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x74,0x66,0x3,0xe4,0x25,0x7a,0x0,0x0,0x74,0x2a,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x46,0x4,0x3,0xf6,0x9a,0x0,0x0,0x5a,0x18,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0x9d,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0xd3,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0xfd,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0xdc,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x8c,0x4,0x31,0xff,0xe9,0x0,0x0,0x28,0xed,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2b,0xff,0x4,0x51,0x79,0xb1,0x0,0x0,0x78,0xb3,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x82,0x14,0x4,0x5b,0x53,0x1f,0x0,0x0,0x27,0xc6,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x73,0xeb,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3f,0xf6,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x40,0x25,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x37,0x33,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x32,0x38,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3c,0x0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x47,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xf4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x19,0x61,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5f,0x16,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x35,0xe0,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0xff,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1f,0x75,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5f,0x42,0x4,0xeb,0x2f,0xa,0x0,0x0,0x55,0x1c,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4e,0xdc,0x5,0x18,0x5,0x95,0x0,0x0,0x84,0x83,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x17,0x59,0x5,0x30,0xd3,0xe,0x0,0x0,0x3e,0x64,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5e,0xf1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x8a,0xce,0x5,0x5f,0x7b,0x59,0x0,0x0,0x11,0x2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x40,0x7d,0x5,0x88,0x2e,0xd9,0x0,0x0,0x73,0x1c,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x58,0x74,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x80,0x28,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x79,0xbb,0x5,0xa5,0x3a,0x79,0x0,0x0,0x29,0x35,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x76,0x11,0x5,0xb2,0x16,0x79,0x0,0x0,0x6c,0x4e,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x4b,0xc4,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4d,0x12,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x42,0xed,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0xea,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x15,0x19,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x16,0x27,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4f,0x6e,0x5,0xc1,0x4d,0x83,0x0,0x0,0x3b,0x16,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x87,0xfb,0x5,0xd0,0x4f,0x11,0x0,0x0,0x88,0xa7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xb8,0x5,0xdf,0xba,0xba,0x0,0x0,0x88,0xf7,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x6a,0xec,0x6,0x7,0xd3,0xda,0x0,0x0,0x51,0x65,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x3a,0xbd,0x6,0x19,0x20,0x43,0x0,0x0,0x6f,0x55,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3e,0x20,0x6,0x38,0x9f,0x35,0x0,0x0,0x3b,0x9f,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x21,0xa,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xfb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x36,0x12,0x6,0x6c,0xb8,0x3,0x0,0x0,0x86,0x16,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4d,0xe1,0x6,0x74,0xe,0x6a,0x0,0x0,0x64,0x75,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4e,0x4e,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1f,0x41,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x41,0x91,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3d,0x17,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x75,0x1a,0x6,0x96,0xa4,0x13,0x0,0x0,0x48,0xcc,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6e,0xac,0x6,0xc3,0xce,0xa3,0x0,0x0,0x78,0x22,0x6,0xce,0x41,0x63, + 0x0,0x0,0x49,0x7a,0x6,0xed,0xca,0xce,0x0,0x0,0x4b,0x18,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x30,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0x4,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4e,0x16,0x7,0x0,0x57,0x53,0x0,0x0,0x2a,0x9b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x58,0x1c,0x7,0x6,0x93,0xe3,0x0,0x0,0x8b,0xb2,0x7,0x7,0xff,0x23, + 0x0,0x0,0x20,0xd5,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x4f,0x7,0x14,0x6,0x33, + 0x0,0x0,0x20,0x3a,0x7,0x2a,0xb5,0xca,0x0,0x0,0x72,0xc0,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5e,0x40,0x7,0x35,0x7c,0x8a,0x0,0x0,0x50,0xe5,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x66,0xb1,0x7,0x40,0xb5,0xe2,0x0,0x0,0x1a,0x66,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x35,0x5f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4e,0x81,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x13,0x2f,0x7,0x70,0xb3,0xaa,0x0,0x0,0x47,0xa5,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x32,0xa,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6d,0xf5,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x5a,0x4e,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6c,0xcd,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x61,0xa3,0x7,0xa4,0x32,0x89,0x0,0x0,0x1e,0xf9,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x85,0xcd,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x94,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xc4,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x29,0x71,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x68,0x98,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x68,0x47,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x41,0x8,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6e,0x67,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x50,0x8c,0x8,0x0,0x3f,0x29,0x0,0x0,0x67,0xbb,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5d,0xe3,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x72,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x55,0x98,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7f,0xad,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x64,0xa7,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xc9,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x81,0x1a,0x8,0x9b,0xc,0x24,0x0,0x0,0x70,0xe1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x53,0x5,0x8,0xa3,0xdb,0xae,0x0,0x0,0x53,0xb9,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x53,0x41,0x8,0xa4,0xb,0xae,0x0,0x0,0x53,0x7d,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3f,0x9b,0x8,0xa9,0xcf,0x35,0x0,0x0,0x33,0xc8,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x43,0xf4,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x61,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x42,0x3f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x49,0x31,0x9,0x9,0x24,0x29, + 0x0,0x0,0x55,0x4a,0x9,0x49,0xfa,0x4a,0x0,0x0,0x36,0xbb,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x36,0xf7,0x9,0x49,0xfa,0x6a,0x0,0x0,0x36,0x43,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x36,0x7f,0x9,0x4e,0xde,0x64,0x0,0x0,0x81,0x85,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5f,0xc1,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x4b,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x1a,0x11,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x93,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x69,0xab,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x50,0x9,0x88,0x63,0xa, + 0x0,0x0,0x32,0x65,0x9,0x88,0x63,0x1a,0x0,0x0,0x32,0x9b,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x32,0xd1,0x9,0x88,0x63,0x3a,0x0,0x0,0x33,0x7,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x98,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xeb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xe0,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5f,0x87,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x65,0xe3,0x9,0xc2,0x33,0xa9,0x0,0x0,0x17,0x83,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5e,0x98,0x9,0xd5,0x43,0xd3,0x0,0x0,0x38,0x77,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xcb,0xa,0xf,0x3d,0xb9,0x0,0x0,0x12,0x5,0xa,0x17,0x34,0x34, + 0x0,0x0,0x42,0x9c,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x2f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x48,0x7a,0xa,0x4e,0x21,0xe,0x0,0x0,0x1e,0x79,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x49,0xae,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x41,0xff,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x52,0xad,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x86,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x84,0xfe,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x70,0x1c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x78,0x6e,0xa,0x98,0x1f,0x89,0x0,0x0,0x39,0xb1,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x39,0x66,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x51,0xd1,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x38,0xff,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x1,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x39,0xfc,0xa,0xda,0x50,0x7e,0x0,0x0,0x82,0xe5,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x7a,0xa,0xea,0x46,0xf4,0x0,0x0,0x5f,0xf5,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x3a,0x28,0xb,0xa,0x72,0xc9,0x0,0x0,0x3c,0xed,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x78,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5b,0xcb,0xb,0x29,0x70,0x65, + 0x0,0x0,0x4a,0x4e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xbe,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xb2,0xb,0x4e,0x19,0x54,0x0,0x0,0x56,0x67,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xb8,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x43,0xb,0x95,0xed,0xa, + 0x0,0x0,0x57,0xe3,0xb,0x9d,0xe,0xa2,0x0,0x0,0x35,0x25,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1e,0x41,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6f,0xed,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x73,0xa0,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x27,0x25,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x4c,0xb,0xb,0xe2,0xf9,0x49,0x0,0x0,0x50,0x4a,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x8b,0x76,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x66,0xe7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x79,0x1d,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x31,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0x44,0xc,0x33,0xeb,0xe2,0x0,0x0,0x79,0x5f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x47,0xd8,0xc,0x42,0x70,0xde,0x0,0x0,0x2b,0x67,0xc,0x48,0x83,0xde, + 0x0,0x0,0x68,0xe7,0xc,0x4a,0x5f,0x82,0x0,0x0,0x52,0xd,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x7b,0x75,0xc,0x77,0x67,0x19,0x0,0x0,0x48,0x1a,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3d,0xd6,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xb4,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x33,0xf5,0xc,0x90,0x26,0xb5,0x0,0x0,0x83,0x85,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x64,0x6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x2a,0xe6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x72,0x93,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xa8,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x61,0x58,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x86,0x4a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x68,0xd,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0xd6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1f,0xe0,0xd,0x11,0x45,0x1a,0x0,0x0,0x2a,0xe,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x88,0x2c,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6c,0x9d,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x89,0x4a,0xd,0x60,0xef,0x6a,0x0,0x0,0x51,0x97,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x38,0xb3,0xd,0x77,0xa4,0xc0,0x0,0x0,0x46,0xab,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3c,0xb4,0xd,0x88,0x48,0x23,0x0,0x0,0x33,0x85,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x40,0x4a,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x9a,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x8a,0x21,0xd,0xf9,0x90,0xe9,0x0,0x0,0x60,0xbc,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x89,0x20,0xe,0x20,0x13,0x12,0x0,0x0,0x47,0x46,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x99,0xe,0x48,0xfa,0xca,0x0,0x0,0x2c,0x4a,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2c,0xb8,0xe,0x48,0xfd,0xca,0x0,0x0,0x2c,0x81,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2c,0xef,0xe,0x62,0x79,0x4,0x0,0x0,0x3d,0x9d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x20,0x9f,0xe,0x7b,0xa1,0x23,0x0,0x0,0x57,0x9e,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x34,0xfc,0xe,0x98,0x18,0x54,0x0,0x0,0x29,0xbb,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x6a,0x70,0xe,0xbe,0x61,0x81,0x0,0x0,0x71,0x4b,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x71,0x9d,0xe,0xbe,0x61,0x83,0x0,0x0,0x71,0xef,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x72,0x41,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4f,0x3,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0xf1,0xe,0xe2,0x34,0x60,0x0,0x0,0x8b,0x22,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x8b,0x4c,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x4f,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xe8,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x92,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x8b,0xe5,0xf,0x15,0xf4,0x85,0x0,0x0,0x51,0x22,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x7a,0x87,0xf,0x17,0x9c,0x64,0x0,0x0,0x85,0x71,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x62,0xda,0xf,0x29,0x4d,0x2a,0x0,0x0,0x4a,0xd7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x45,0xf,0xf,0x30,0x6b,0x3,0x0,0x0,0x34,0x37,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x75,0x7b,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x73,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0x51,0xf,0x70,0xaa,0x1a,0x0,0x0,0x88,0x6a,0xf,0x74,0xd,0xca, + 0x0,0x0,0x6c,0x14,0xf,0x85,0x7b,0xea,0x0,0x0,0x64,0x3e,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x14,0x10,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x77,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x6b,0x22,0xf,0xd3,0x41,0x72,0x0,0x0,0x3e,0xdc,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x54,0x40,0xf,0xd9,0x8c,0xca,0x0,0x0,0x54,0xae,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x54,0x77,0xf,0xd9,0x8f,0xca,0x0,0x0,0x54,0xe5,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x41,0x4d,0xf,0xe2,0xe9,0x49,0x0,0x0,0x89,0x9d,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x64,0xe3,0xf,0xf5,0xeb,0x52,0x0,0x0,0x65,0x23,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x65,0x63,0xf,0xf5,0xeb,0x54,0x0,0x0,0x65,0xa3,0x69,0x0,0x0,0x8c, + 0x69,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x8e,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x44,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2d, + 0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x62, + 0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x53,0x0,0xe4,0x0,0x6d,0x0,0x74,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x2d,0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2d, + 0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x57,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0xe4,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25, + 0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20, + 0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x30,0x0,0x2c,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3e,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x2d,0x0,0x53,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0, + 0xe4,0x0,0x6c,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0, + 0x72,0x0,0x7a,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0xdc, + 0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x41, + 0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x42,0x0,0x65, + 0x0,0x72,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2d, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x38,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x50,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0, + 0x20,0x0,0x46,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f, + 0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x44,0x0,0x75,0x0,0x72,0x0, + 0x63,0x0,0x68,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x73,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x66,0x0,0x9,0x0,0x53,0x0,0x74, + 0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x42,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x26,0x0,0x56,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x41,0x0,0x6e, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x70,0x0,0x75, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x26,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x64,0x0,0x2d,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x26,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x64,0x0,0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x42,0x0,0x69,0x0,0x6c,0x0,0x64,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72, + 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x2d,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72, + 0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x6c,0x0,0x66,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x53,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6c,0x0,0x65,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64, + 0x0,0x67,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x2d,0x0,0x53,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x49,0x0, + 0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x41,0x0, + 0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x60,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0, + 0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x61,0x0,0x6e,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0, + 0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26, + 0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65, + 0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e, + 0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x75,0x0, + 0x6d,0x0,0x6d,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x4e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x75, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x41,0x0,0x62,0x0, + 0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x45,0x0,0x69,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x2d,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x66,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26, + 0x0,0x41,0x0,0x75,0x0,0x66,0x0,0x6e,0x0,0x65,0x0,0x68,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26, + 0x0,0x56,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20, + 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x45,0x0,0x6e,0x0, + 0x74,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x68,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0, + 0x41,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0, + 0x6e,0x0,0x66,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x7a,0x0,0x75,0x0, + 0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x70,0x0,0x75,0x0,0x6c,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65, + 0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69, + 0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c, + 0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67, + 0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c, + 0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c, + 0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x26,0x0,0x51,0x0, + 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0xe4,0x0,0x6c,0x0,0x74,0x0, + 0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x62,0x0, + 0x65,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x26,0x0,0x4d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x56,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x61,0x0,0x62,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x57,0x0,0x65,0x0,0x72,0x0,0x6b, + 0x0,0x7a,0x0,0x65,0x0,0x75,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x75,0x0,0x73,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e, + 0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x57,0x0,0x65,0x0,0x69,0x0,0xdf, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x66,0x0, + 0x61,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0,0x6c,0x0,0x65,0x0,0x65,0x0, + 0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x31,0x0,0x25,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x68,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x7a,0x0, + 0x61,0x0,0x68,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31, + 0x0,0x2c,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x31,0x0, + 0x2c,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0, + 0x7a,0x0,0x61,0x0,0x68,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66, + 0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31, + 0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46, + 0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x7a, + 0x0,0x61,0x0,0x68,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x32,0x0,0x2c,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x33,0x0,0x2c,0x0,0x35,0x0, + 0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x31,0x0,0x2c,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c, + 0x0,0x6c,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49, + 0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f, + 0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x32,0x0,0x2c,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0, + 0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33, + 0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0, + 0x20,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0, + 0x2d,0x0,0x53,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2c, + 0x0,0x32,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35,0x0, + 0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x31,0x0,0x2c,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35, + 0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x36,0x0,0x30, + 0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x35,0x0,0x2c,0x0,0x32,0x0, + 0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xaa,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x44, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x73,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c, + 0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x53, + 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2d,0x0,0x56, + 0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x6e, + 0x0,0x69,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac, + 0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, + 0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e, + 0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73, + 0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69, + 0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73, + 0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x2d,0x0,0x62,0x0,0x61,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x48,0x0, + 0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x61,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0xdc,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x42,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0, + 0x75,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x65,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x75, + 0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x63, + 0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x4,0x22, + 0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x3a, + 0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47, + 0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47, + 0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31, + 0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c, + 0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b, + 0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69, + 0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f, + 0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20, + 0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74, + 0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x77, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0xdc,0x0,0x62,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x6e,0x0,0x3a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x62,0x0,0x32,0x0,0x30, + 0x0,0x35,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x66, + 0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20, + 0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x20, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x75, + 0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x68, + 0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x68,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x53,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb8,0x0,0x53,0x0,0x69, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2d, + 0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64, + 0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x66,0x0,0xfc,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77, + 0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65, + 0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x61,0x0,0x73,0x0,0x69,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x67, + 0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x4c,0x0,0x61,0x0,0x75, + 0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72, + 0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4, + 0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x2d,0x0, + 0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x5e,0x0,0x44,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,0x0,0x77, + 0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6b, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x6d,0x0,0xf6,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20, + 0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,0x0,0x77,0x0,0xe4,0x0,0x68, + 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x6b, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x41, + 0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc, + 0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x73,0x0,0xe4,0x0,0x6d,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x6e, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20, + 0x0,0x22,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64, + 0x0,0x22,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6c, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65, + 0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c, + 0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20, + 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61, + 0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20, + 0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73, + 0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77, + 0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65, + 0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69, + 0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c, + 0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa, + 0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66, + 0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65, + 0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20, + 0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41, + 0x0,0x62,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x74,0x0, + 0x65,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x63,0x0, + 0x6b,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x74,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0, + 0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x61,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x20,0x0,0xe4,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27, + 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, + 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42,0x0,0x50,0x0, + 0x42,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x70,0x0,0x72,0x0, + 0xfc,0x0,0x66,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x56,0x0,0x5a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x45,0x0, + 0x69,0x0,0x6e,0x0,0x66,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x75,0x0, + 0x73,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x73,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0, + 0x6c,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x66,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x44,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56, + 0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x44,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74, + 0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74, + 0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x6e,0x0,0x67,0x0, + 0x65,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x70,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x79,0x0, + 0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d, + 0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20, + 0x0,0x43,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63, + 0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0, + 0x28,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x20,0x0,0x43,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65, + 0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x44, + 0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x7a, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x44,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2d,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x44,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x74, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65, + 0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x38,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0, + 0x7a,0x0,0x75,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0xdf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x6e, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0xdf, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69, + 0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x41,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4d,0x0, + 0xf6,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x45,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0, + 0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x62,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62,0x0,0x65, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x44,0x0,0x69,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x68,0x0,0x72,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20, + 0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x47,0x0, + 0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0, + 0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44, + 0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20, + 0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x45,0x0,0x69,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x26, + 0x0,0x75,0x0,0x73,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x26,0x0, + 0x65,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x42,0x0,0x65,0x0,0x26,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2d,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x26,0x0,0x78,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x46,0x0,0x72,0x0,0xfc,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0, + 0x65,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x49,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69, + 0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4c,0x0,0x6f,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x68,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61, + 0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x64,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x46,0x0,0x65,0x0,0x68,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x46, + 0x0,0x65,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x52,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x42,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0xfc,0x0,0x74,0x0,0x7a, + 0x0,0x74,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x42,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x0,0x2d,0x0,0x53,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0xe4,0x0,0x6c,0x0,0x74,0x0,0x6e, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x77,0x0,0x69, + 0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x44,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x46,0x0,0x4d,0x0,0x2d,0x0,0x53,0x0,0x79,0x0,0x6e, + 0x0,0x74,0x0,0x68,0x0,0x2d,0x0,0x54,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x45, + 0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x7a,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x69,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0, + 0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73, + 0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x65, + 0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x46, + 0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d, + 0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x66,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x4c,0x0,0x61,0x0,0x75, + 0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x75,0x0, + 0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2d,0x0,0x4d,0x0,0x6f, + 0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x56, + 0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74, + 0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0, + 0xe4,0x0,0x72,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x42,0x0,0x4d,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x66,0x0,0x65, + 0x0,0x6e,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0, + 0x44,0x0,0x44,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xf6, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x48,0x0,0x44,0x0,0x49, + 0x0,0x2d,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xac,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x20,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x74,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x72,0x0, + 0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6b,0x0,0x42,0x0,0x20,0x0,0x77,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x74,0x0,0xfc,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20, + 0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e, + 0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0, + 0x67,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0xf6,0x0,0x70,0x0,0x66,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0xf6,0x0,0x68,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69, + 0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x2d,0x0,0x53,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50, + 0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x57,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x7a, + 0x0,0x65,0x0,0x75,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x42,0x0,0x4d, + 0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x2d, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x2d,0x0,0x53,0x0,0x70,0x0,0x65, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x77, + 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x2d,0x0,0x45,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x7a,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x75,0x0,0x68,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42, + 0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x2d,0x0,0x47,0x0,0x65, + 0x0,0x72,0x0,0xe4,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x49,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x2d,0x0,0x53,0x0,0x61,0x0,0x74,0x0,0x7a,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x67,0x0, + 0x61,0x0,0x62,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x55,0x0,0x6e,0x0,0x67,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x69,0x0, + 0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x55,0x0,0x6e,0x0,0x67,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0, + 0x69,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x2d, + 0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x32,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0, + 0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x2d,0x0,0x47, + 0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67, + 0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x6c, + 0x0,0xf6,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0xf6, + 0x0,0xdf,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x2d,0x0,0x20,0x0, + 0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x2d,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0, + 0x73,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x62,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0, + 0x74,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0, + 0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x1a,0x0,0x44,0x0,0x61,0x0,0x73, + 0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x67,0x0,0x72,0x0,0x75, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x66, + 0x0,0x65,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x62, + 0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66, + 0x0,0xfc,0x0,0x67,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65, + 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe2,0x0, + 0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x75,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x4e,0x0, + 0x65,0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x84,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x69,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0, + 0x6c,0x0,0x65,0x0,0x73,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xce,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x62,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x74, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x48,0x0,0x61,0x0,0x75,0x0,0x70,0x0,0x74,0x0,0x73,0x0,0x70,0x0, + 0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x62,0x0,0x79,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x45, + 0x0,0x6d,0x0,0x70,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x65, + 0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x7a, + 0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65, + 0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0, + 0x65,0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x74,0x0, + 0x79,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x65,0x0,0x75,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4b,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0,0x65,0x0,0x69,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x4f,0x0,0x68,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x41,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x41,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x2d,0x0,0x4b,0x0,0x65,0x0,0x72,0x0,0x6e, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xd8,0x0,0x44,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x2d,0x0,0x4b,0x0,0x65,0x0,0x72,0x0, + 0x6e,0x0,0x29,0x0,0x2d,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0, + 0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x42,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0, + 0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20, + 0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x53, + 0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x4f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x67,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69, + 0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x41,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x57,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0xdc,0x0,0x62, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x62,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x47, + 0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x2d,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0, + 0x4f,0x0,0x53,0x0,0x54,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x64,0x0,0x65,0x0, + 0x2d,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x44,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x45,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x2d,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x4b,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50, + 0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20, + 0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x7a,0x0,0x61,0x0,0x68,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x41,0x0,0x6e,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0xfc,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0, + 0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x45,0x0,0x6e,0x0,0x74,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0, + 0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53, + 0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63, + 0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x42,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x72,0x0, + 0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x42,0x0,0x69,0x0, + 0x6c,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x20,0x0,0x7a,0x0,0x75,0x0, + 0x72,0x0,0x20,0x0,0x52,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0, + 0x68,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x82,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x61,0x0, + 0x62,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65, + 0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64, + 0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20, + 0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x68, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0xe4,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0xf6,0x0,0xdf, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x26,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x2d,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x44,0x0,0x72,0x0,0x65, + 0x0,0x68,0x0,0x7a,0x0,0x61,0x0,0x68,0x0,0x6c,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x6f,0x0,0x68,0x0,0x64,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52, + 0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa8,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x75,0x0, + 0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a,0x0,0x75,0x0,0x72,0x0, + 0xfc,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x45,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0, + 0x26,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20, + 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x7e,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x41,0x0,0x72, + 0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x75,0x0,0x73,0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x45,0x0,0x6c,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x6e,0x0,0x2d,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2d,0x0,0x44,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x77,0x0,0xe4,0x0, + 0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4f,0x0,0x70,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0x61,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x0,0x61,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x42,0x0,0x6c,0x0,0xf6,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x75,0x0,0x6c,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x6e, + 0x0,0x67,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x72, + 0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67, + 0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x72,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f, + 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x67, + 0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x47,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x77,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x69,0x0,0x67,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x6b,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x2d,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31, + 0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x34,0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x36,0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x38,0x0,0x2d,0x0,0x54,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x6c, + 0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x26,0x0,0x63,0x0, + 0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x6e,0x0,0x65,0x0,0x68,0x0,0x6d,0x0, + 0x65,0x0,0x6e,0x0,0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x5a,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x26,0x0,0x66,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0xe4,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54, + 0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x7a,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0, + 0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x4e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x69,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x67,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x92,0x0,0x44,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,0x0, + 0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x44,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0, + 0x64,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0, + 0x68,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0, + 0x20,0x0,0x4d,0x0,0xf6,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x7c,0x0,0x44,0x0,0x69,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x75,0x0, + 0x74,0x0,0x65,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x6c,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x45,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x75,0x0, + 0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0, + 0x68,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2d,0x0,0x44,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x62,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x68,0x0, + 0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x42,0x0, + 0x75,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0, + 0x77,0x0,0x65,0x0,0x6c,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x2c,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4d,0x0,0xf6,0x0,0x63,0x0,0x68,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e, + 0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66, + 0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49, + 0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65, + 0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20, + 0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79, + 0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72, + 0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69, + 0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x44,0x0,0x69, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x52,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x5a, + 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68, + 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x0,0x2d,0x0, + 0x54,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d, + 0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x54,0x0,0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54, + 0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54, + 0x0,0x79,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc,0x0,0x74,0x0,0x7a,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x47,0x0,0x68,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0, + 0x74,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6, + 0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x54,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x65,0x0, + 0x73,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x44,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x52,0x0, + 0x6f,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x61,0x0,0x62,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73, + 0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x44,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x73,0x0,0x63,0x0, + 0x68,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77, + 0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x48,0x0,0x4e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc, + 0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0, + 0x54,0x0,0x33,0x0,0x32,0x0,0x2d,0x0,0x57,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54, + 0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x26,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x42,0x0, + 0x69,0x0,0x6c,0x0,0x64,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x72,0x0, + 0x6d,0x0,0x74,0x0,0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x2d,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x24, + 0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0x65, + 0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x20, + 0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x62, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69, + 0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69, + 0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52, + 0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f, + 0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x2d, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x57,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x75,0x0,0x73, + 0x0,0x74,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x57,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x42,0x0, + 0x72,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63, + 0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69, + 0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47, + 0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0, + 0x28,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0x72,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc,0x0, + 0x74,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x2d,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65, + 0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_zh-CN.qm + 0x0,0x0,0x70,0x11, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x21,0x61,0x0,0x0,0x0,0x48, + 0x0,0x0,0x36,0xeb,0x0,0x0,0x0,0x53,0x0,0x0,0x4f,0xa0,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0x80,0x0,0x0,0x4,0xf2,0x0,0x0,0x3d,0xdf,0x0,0x0,0x5,0x12, + 0x0,0x0,0x3f,0x4c,0x0,0x0,0x5,0x3b,0x0,0x0,0x46,0xc8,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x46,0xfd,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x1f,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x73,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xc7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x12,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x66,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xba,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xe,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x32,0x0,0x0,0x49,0xc3,0x0,0x0,0x21,0x26,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3a,0xb2,0x0,0x0,0x4d,0x85,0x0,0x0,0x3a,0xd0,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x46,0xe3,0x0,0x0,0x5d,0x81,0x0,0x0,0x60,0xb9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0x85,0x0,0x2,0x97,0xd3,0x0,0x0,0x3,0xeb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0xf,0x7c,0x0,0x4,0x8c,0xaf,0x0,0x0,0x1f,0xe0,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x21,0x42,0x0,0x4,0xa7,0x89,0x0,0x0,0x30,0x5,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x33,0xb6,0x0,0x4,0xc8,0xa4,0x0,0x0,0x34,0x73,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x32,0x8f,0x0,0x4,0xd0,0x25,0x0,0x0,0x34,0xb6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x36,0x8b,0x0,0x5,0x56,0x45,0x0,0x0,0x46,0x6d,0x0,0x5,0x78,0x79, + 0x0,0x0,0x4f,0xb8,0x0,0x5,0x98,0xc5,0x0,0x0,0x50,0x9c,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x52,0xd9,0x0,0x5,0xc0,0x65,0x0,0x0,0x5b,0x49,0x0,0x12,0x74,0x52, + 0x0,0x0,0x15,0xc0,0x0,0x19,0x74,0x52,0x0,0x0,0x15,0xfd,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x2,0xf5,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x17,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xa,0xb1,0x0,0x2b,0x72,0x89,0x0,0x0,0xb,0x8d,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0xf,0xce,0x0,0x34,0x9,0xc8,0x0,0x0,0x10,0xfa,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x5d,0x9,0x0,0x3b,0xa9,0x68,0x0,0x0,0x16,0x88,0x0,0x46,0x86,0x49, + 0x0,0x0,0x18,0xa5,0x0,0x4c,0x99,0x62,0x0,0x0,0x31,0xd0,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2a,0xf1,0x0,0x58,0xc9,0xc4,0x0,0x0,0x4f,0x55,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x54,0xdf,0x0,0x5a,0x6c,0x44,0x0,0x0,0x53,0x34,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x5b,0x1,0x0,0x5c,0x6,0x8a,0x0,0x0,0x5b,0x66,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x62,0xe1,0x0,0x73,0x75,0x3e,0x0,0x0,0x29,0xf4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x46,0x3d,0x0,0x97,0x96,0x4,0x0,0x0,0x2c,0x0,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x3c,0x83,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x3d,0xb9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x38,0xdc,0x0,0xb8,0x5f,0x43,0x0,0x0,0x48,0x3f,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x15,0x83,0x1,0x9,0x1c,0x92,0x0,0x0,0x33,0x26,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x23,0x9e,0x1,0x39,0xa4,0xce,0x0,0x0,0x43,0xde,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x5b,0x1f,0x1,0x4c,0x50,0xee,0x0,0x0,0x4d,0xcc,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x38,0xab,0x1,0x61,0xac,0xc9,0x0,0x0,0x10,0x6a,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x5a,0x0,0x1,0x7a,0x2c,0x99,0x0,0x0,0x2e,0xa5,0x1,0x91,0xe,0x73, + 0x0,0x0,0x21,0xeb,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3a,0x64,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x40,0x91,0x1,0xb0,0x47,0x5c,0x0,0x0,0x3f,0x67,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x3d,0x1,0xc8,0x65,0x8f,0x0,0x0,0x32,0xac,0x1,0xd3,0x9,0x82, + 0x0,0x0,0x9,0xd7,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0x23,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x27,0xd0,0x1,0xe6,0x0,0xe9,0x0,0x0,0x50,0x5a,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x55,0x1e,0x2,0x14,0x18,0x2e,0x0,0x0,0x8,0xe0,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x56,0x1f,0x2,0x23,0x3c,0x6b,0x0,0x0,0x55,0xde,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x55,0x9d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x13,0x4a,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x39,0xf5,0x2,0x78,0x48,0x1a,0x0,0x0,0x40,0x59,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x61,0x19,0x2,0x90,0x8d,0x12,0x0,0x0,0x33,0xe7,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x48,0xa6,0x2,0xad,0x4a,0x22,0x0,0x0,0x4e,0x15,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x7,0xe5,0x2,0xb3,0xba,0xf1,0x0,0x0,0xa,0x8a,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0x66,0x2,0xbb,0x66,0x33,0x0,0x0,0xf,0x12,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0xf,0xa3,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x48,0x74,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x63,0x5,0x3,0x5,0x38,0xb2,0x0,0x0,0x31,0xee,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x4a,0xfd,0x3,0x41,0x45,0x12,0x0,0x0,0x11,0x24,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x11,0xe2,0x3,0x4b,0x26,0xf2,0x0,0x0,0x12,0x9,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x3f,0x91,0x3,0x65,0x26,0xf2,0x0,0x0,0x14,0xbf,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x14,0xe6,0x3,0x6a,0x66,0x2e,0x0,0x0,0x42,0xcd,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x41,0x66,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0x74,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x26,0xef,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0x9b,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x16,0x3a,0x3,0xa4,0x35,0xa5,0x0,0x0,0x33,0x96,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x33,0x5a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x16,0x61,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x44,0x4b,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x55,0x59,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x54,0x36,0x3,0xe4,0x25,0x5a,0x0,0x0,0x54,0xa,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x53,0xde,0x3,0xe4,0x25,0x7a,0x0,0x0,0x53,0xb2,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x56,0x4,0x3,0xf6,0x9a,0x0,0x0,0x42,0x7e,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x13,0xa5,0x4,0x15,0x75,0x22,0x0,0x0,0x11,0x4b,0x4,0x17,0x65,0x22, + 0x0,0x0,0x11,0x75,0x4,0x1c,0x68,0x69,0x0,0x0,0x12,0xec,0x4,0x23,0x29,0x55, + 0x0,0x0,0x9,0xa4,0x4,0x31,0xff,0xe9,0x0,0x0,0x1f,0xfd,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x22,0x8f,0x4,0x51,0x79,0xb1,0x0,0x0,0x56,0xbd,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x5c,0x1a,0x4,0x5b,0x53,0x1f,0x0,0x0,0x1f,0x7c,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x53,0x8b,0x4,0x7d,0xb,0xa4,0x0,0x0,0x2f,0x3a,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x2f,0x61,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x29,0xa9,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x26,0x30,0x4,0xb8,0x1,0x2e,0x0,0x0,0x2c,0xd0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xa,0xd7,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2a,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x14,0x61,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x45,0x5a,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x28,0xae,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0x3,0x4,0xe6,0xae,0xdb,0x0,0x0,0x19,0x41,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x45,0x7a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x3e,0xbe,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x39,0xac,0x5,0x18,0x5,0x95,0x0,0x0,0x5d,0x4d,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x12,0x6d,0x5,0x30,0xd3,0xe,0x0,0x0,0x2e,0x30,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x45,0x39,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x61,0xa8,0x5,0x5f,0x7b,0x59,0x0,0x0,0xd,0xbc,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x2f,0xbd,0x5,0x88,0x2e,0xd9,0x0,0x0,0x52,0xf4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x41,0x86,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x5a,0xd0,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x57,0x7f,0x5,0xa5,0x3a,0x79,0x0,0x0,0x20,0x4b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x54,0xfd,0x5,0xb2,0x16,0x79,0x0,0x0,0x4e,0x7e,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x37,0x96,0x5,0xb3,0x5f,0x79,0x0,0x0,0x38,0x6c,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x31,0x93,0x5,0xb8,0x5d,0xad,0x0,0x0,0x12,0x30,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x10,0xbd,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x11,0x9f,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3a,0x30,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2c,0x56,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x5f,0x61,0x5,0xd0,0x4f,0x11,0x0,0x0,0x5f,0xf9,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xc,0xe8,0x5,0xdf,0xba,0xba,0x0,0x0,0x60,0x35,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x4d,0x66,0x6,0x7,0xd3,0xda,0x0,0x0,0x3b,0xd5,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2c,0x21,0x6,0x19,0x20,0x43,0x0,0x0,0x50,0xb9,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x2e,0xa,0x6,0x38,0x9f,0x35,0x0,0x0,0x2c,0x9b,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1a,0x30,0x6,0x51,0xe6,0x13,0x0,0x0,0x5,0xfb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x28,0xd0,0x6,0x6c,0xb8,0x3,0x0,0x0,0x5e,0x42,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x39,0x9,0x6,0x74,0xe,0x6a,0x0,0x0,0x49,0x33,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x39,0x52,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x19,0x11,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x30,0x99,0x6,0x81,0xb7,0x1f,0x0,0x0,0x2d,0x77,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x54,0x62,0x6,0x96,0xa4,0x13,0x0,0x0,0x35,0xb2,0x6,0x97,0x71,0x79, + 0x0,0x0,0x50,0x1e,0x6,0xc3,0xce,0xa3,0x0,0x0,0x56,0x60,0x6,0xce,0x41,0x63, + 0x0,0x0,0x36,0x1c,0x6,0xed,0xca,0xce,0x0,0x0,0x37,0x32,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x6,0xf2,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xa6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x39,0x2c,0x7,0x0,0x57,0x53,0x0,0x0,0x21,0x79,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x41,0x3e,0x7,0x6,0x93,0xe3,0x0,0x0,0x62,0x80,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1a,0x9,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x43,0x7,0x14,0x6,0x33, + 0x0,0x0,0x19,0xac,0x7,0x2a,0xb5,0xca,0x0,0x0,0x52,0xaa,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x44,0xca,0x7,0x35,0x7c,0x8a,0x0,0x0,0x3b,0x69,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x4a,0x9d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x15,0x4c,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x28,0x73,0x7,0x58,0x61,0xe5,0x0,0x0,0x39,0x77,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0xf,0x39,0x7,0x70,0xb3,0xaa,0x0,0x0,0x34,0xd3,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x26,0x4,0x7,0x9e,0x50,0x1e,0x0,0x0,0x4f,0x73,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x42,0xaa,0x7,0xa3,0x63,0x9e,0x0,0x0,0x4e,0xe5,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x47,0x63,0x7,0xa4,0x32,0x89,0x0,0x0,0x18,0xc9,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x5e,0x5,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xa6,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x1,0xd6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x20,0x8d,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x4b,0xf4,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x4b,0xaf,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x30,0x26,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x4f,0xd9,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3b,0x30,0x8,0x0,0x3f,0x29,0x0,0x0,0x4b,0x47,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x44,0x6d,0x8,0x31,0xf7,0xee,0x0,0x0,0xb,0x0,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x3f,0x1c,0x8,0x60,0xe7,0xcd,0x0,0x0,0x5a,0x55,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x49,0x5f,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0x6f,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x5b,0x86,0x8,0x9b,0xc,0x24,0x0,0x0,0x51,0xa3,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x3c,0xf1,0x8,0xa3,0xdb,0xae,0x0,0x0,0x3d,0x87,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x3d,0x23,0x8,0xa4,0xb,0xae,0x0,0x0,0x3d,0x55,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x2e,0xef,0x8,0xa9,0xcf,0x35,0x0,0x0,0x27,0x56,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x32,0x30,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x43,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x31,0x1d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x35,0xed,0x9,0x9,0x24,0x29, + 0x0,0x0,0x3e,0xe2,0x9,0x49,0xfa,0x4a,0x0,0x0,0x29,0x4d,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x29,0x7b,0x9,0x49,0xfa,0x6a,0x0,0x0,0x28,0xf1,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x29,0x1f,0x9,0x4e,0xde,0x64,0x0,0x0,0x5b,0xc3,0x9,0x50,0x63,0x15, + 0x0,0x0,0x45,0xd7,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x43,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0xd,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0x97,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x4c,0xaf,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x36,0x9,0x88,0x63,0xa, + 0x0,0x0,0x26,0x4f,0x9,0x88,0x63,0x1a,0x0,0x0,0x26,0x77,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x26,0x9f,0x9,0x88,0x63,0x3a,0x0,0x0,0x26,0xc7,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0x8a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x51,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x4,0xde,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x45,0xab,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x4a,0x43,0x9,0xc2,0x33,0xa9,0x0,0x0,0x12,0x97,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x45,0x6,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2a,0x47,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xe,0x69,0xa,0xf,0x3d,0xb9,0x0,0x0,0xe,0x9b,0xa,0x17,0x34,0x34, + 0x0,0x0,0x31,0x58,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x1f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x35,0x6c,0xa,0x4e,0x21,0xe,0x0,0x0,0x18,0x75,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x36,0x4a,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x30,0xeb,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x3c,0xbf,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0x98,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x5d,0x82,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x51,0x40,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x56,0x92,0xa,0x98,0x1f,0x89,0x0,0x0,0x2b,0x5b,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2b,0x1c,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x3c,0x27,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2a,0xc7,0xa,0xbc,0x8a,0x94,0x0,0x0,0x6,0xc9,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2b,0x9a,0xa,0xda,0x50,0x7e,0x0,0x0,0x5c,0x87,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xd,0x62,0xa,0xea,0x46,0xf4,0x0,0x0,0x45,0xfd,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2b,0xba,0xb,0xa,0x72,0xc9,0x0,0x0,0x2d,0x57,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x2a,0xb,0x1e,0xee,0xfe,0x0,0x0,0x43,0x83,0xb,0x29,0x70,0x65, + 0x0,0x0,0x36,0xa8,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0x62,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0x38,0xb,0x4e,0x19,0x54,0x0,0x0,0x3f,0xdf,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0x22,0xb,0x8c,0x46,0xe5,0x0,0x0,0xc,0x8b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x41,0x11,0xb,0x9d,0xe,0xa2,0x0,0x0,0x28,0x49,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x18,0x4b,0xb,0xab,0x6c,0xfa,0x0,0x0,0x51,0x17,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x53,0x52,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x1f,0x27,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x37,0xd5,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3a,0xee,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x62,0x50,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x4a,0xc9,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x57,0x9,0xc,0x20,0xc4,0xde,0x0,0x0,0xb,0xb3,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xd,0xf8,0xc,0x33,0xeb,0xe2,0x0,0x0,0x57,0x3f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x34,0xfa,0xc,0x42,0x70,0xde,0x0,0x0,0x22,0x15,0xc,0x48,0x83,0xde, + 0x0,0x0,0x4c,0x39,0xc,0x4a,0x5f,0x82,0x0,0x0,0x3c,0x51,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x58,0x71,0xc,0x77,0x67,0x19,0x0,0x0,0x35,0x24,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x2d,0xe0,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xc0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x27,0x77,0xc,0x90,0x26,0xb5,0x0,0x0,0x5c,0xd5,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x48,0xe0,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x21,0xbc,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x52,0x89,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0x6c,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x47,0x16,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x5e,0x6c,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x4b,0x89,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x16,0xac,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x19,0x7c,0xd,0x11,0x45,0x1a,0x0,0x0,0x20,0xfe,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x5f,0x82,0xd,0x4a,0x90,0xb2,0x0,0x0,0x4e,0xb9,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x60,0x80,0xd,0x60,0xef,0x6a,0x0,0x0,0x3b,0xfb,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2a,0x89,0xd,0x77,0xa4,0xc0,0x0,0x0,0x34,0x35,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x2d,0x2e,0xd,0x88,0x48,0x23,0x0,0x0,0x27,0x29,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x2f,0x8e,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x18,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x61,0x4d,0xd,0xf9,0x90,0xe9,0x0,0x0,0x46,0x88,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x60,0x56,0xe,0x20,0x13,0x12,0x0,0x0,0x34,0x8e,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xe,0xdb,0xe,0x48,0xfa,0xca,0x0,0x0,0x22,0xda,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x23,0x3c,0xe,0x48,0xfd,0xca,0x0,0x0,0x23,0xb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x23,0x6d,0xe,0x62,0x79,0x4,0x0,0x0,0x2d,0xbb,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x19,0xe3,0xe,0x7b,0xa1,0x23,0x0,0x0,0x40,0xca,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x28,0x26,0xe,0x98,0x18,0x54,0x0,0x0,0x20,0xc1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x4d,0x18,0xe,0xbe,0x61,0x81,0x0,0x0,0x51,0xe1,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x52,0xb,0xe,0xbe,0x61,0x83,0x0,0x0,0x52,0x35,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x52,0x5f,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x39,0xd3,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x10,0x9b,0xe,0xe2,0x34,0x60,0x0,0x0,0x61,0xfc,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x62,0x26,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xa7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0x4a,0xe,0xf7,0xac,0xae,0x0,0x0,0xe,0x36,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x62,0xab,0xf,0x15,0xf4,0x85,0x0,0x0,0x3b,0x98,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x57,0xeb,0xf,0x17,0x9c,0x64,0x0,0x0,0x5d,0xbd,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x48,0x8,0xf,0x29,0x4d,0x2a,0x0,0x0,0x37,0x3,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x32,0xf7,0xf,0x30,0x6b,0x3,0x0,0x0,0x27,0xa3,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x54,0xa3,0xf,0x5a,0x14,0x2,0x0,0x0,0xc,0xb3,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x10,0x2d,0xf,0x70,0xaa,0x1a,0x0,0x0,0x5f,0xc4,0xf,0x74,0xd,0xca, + 0x0,0x0,0x4e,0x48,0xf,0x85,0x7b,0xea,0x0,0x0,0x49,0x2,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0xf,0xf4,0xf,0xbd,0xdc,0x15,0x0,0x0,0xb,0xeb,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x4d,0x8a,0xf,0xd3,0x41,0x72,0x0,0x0,0x2e,0x72,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x3d,0xfa,0xf,0xd9,0x8c,0xca,0x0,0x0,0x3e,0x5c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x3e,0x2b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x3e,0x8d,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x30,0x6b,0xf,0xe2,0xe9,0x49,0x0,0x0,0x60,0xd7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x49,0x93,0xf,0xf5,0xeb,0x52,0x0,0x0,0x49,0xbf,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x49,0xeb,0xf,0xf5,0xeb,0x54,0x0,0x0,0x4a,0x17,0x69,0x0,0x0,0x63, + 0x2f,0x3,0x0,0x0,0x0,0xc,0x0,0x20,0x0,0x2d,0x0,0x20,0x5d,0xf2,0x66,0x82, + 0x50,0x5c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50, + 0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa6, + 0x0,0x20,0x66,0x2f,0x5c,0x6,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x65,0x87, + 0x4e,0xf6,0x8f,0x6c,0x63,0x62,0x4e,0x3a,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46, + 0x0,0x20,0x62,0x40,0x97,0x0,0x89,0x81,0x76,0x84,0x5e,0x93,0x30,0x2,0x0,0xa, + 0x0,0xa,0x4f,0x7f,0x75,0x28,0x90,0x1a,0x75,0x28,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x62,0x53,0x53,0x70,0x67,0x3a,0x62,0x53,0x53,0x70,0x76,0x84,0x65,0x87, + 0x68,0x63,0x5c,0x6,0x88,0xab,0x4f,0xdd,0x5b,0x58,0x4e,0x3a,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20, + 0x65,0x87,0x4e,0xf6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x8b,0xbe,0x59,0x7,0x91,0x4d,0x7f,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x25,0x0,0x69,0x0,0x20,0x7b, + 0x49,0x5f,0x85,0x72,0xb6,0x60,0x1,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28, + 0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x31,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x32,0x0,0x78,0x0,0x28,0x0, + 0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0, + 0x78,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x35,0x0,0x78, + 0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26, + 0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x51,0x73,0x4e,0x8e, + 0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xcd, + 0x4f,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x74,0x25,0x73,0xc0,0x82,0x72,0x53,0x55,0x82,0x72, + 0x66,0x3e,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x59,0x31,0x53,0xbb,0x71,0x26,0x70,0xb9,0x65,0xf6,0x81,0xea,0x52,0xa8,0x66, + 0x82,0x50,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5e,0x73,0x57,0x47,0x0,0x28,0x0, + 0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x28,0x0,0x26,0x0,0x43, + 0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x9e, + 0xd8,0x8b,0xa4,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0x87,0x68,0x63,0x0,0x28,0x0,0x26, + 0x0,0x44,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69, + 0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x62,0x53,0x5f,0x0,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x76,0x84,0x66,0x20,0x50,0xcf, + 0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x5d,0xf2,0x67,0x9,0x66,0x20,0x50,0xcf,0x0,0x28,0x0, + 0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x5f,0xeb,0x8f,0xdb, + 0x81,0xf3,0x7e,0xc8,0x70,0xb9,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65,0x87,0x4e,0xf6,0x59, + 0x39,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x51,0x68, + 0x5c,0x4f,0x62,0xc9,0x4f,0x38,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x51,0x68,0x5c,0x4f,0x0,0x28,0x0,0x26,0x0, + 0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x7e,0xff,0x82, + 0x72,0x53,0x55,0x82,0x72,0x66,0x3e,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0, + 0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72, + 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x78,0x6c,0x91,0xcd,0x7f,0x6e,0x0,0x28,0x0,0x26, + 0x0,0x48,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5e,0x2e,0x52, + 0xa9,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x96,0x90,0x85,0xcf,0x72,0xb6,0x60,0x1,0x68,0xf,0x0,0x28,0x0, + 0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26, + 0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x66,0x20,0x50,0xcf,0x0,0x28, + 0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x65,0x74,0x65,0x70,0x6b,0xd4, + 0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x66,0x3e,0x79,0x3a,0x56,0x68,0x53,0xcd,0x82,0x72,0x66, + 0x3e,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x95,0x2e,0x76,0xd8,0x97,0x0,0x89,0x81,0x63,0x55,0x63, + 0x49,0x0,0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71, + 0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x7e,0xbf,0x60,0x27,0x0,0x28,0x0,0x26, + 0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x4e,0xcb,0x8d,0x28,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x97,0x59,0x97,0xf3,0x0,0x28,0x0,0x26,0x0, + 0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x90,0xbb,0x8f, + 0xd1,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x65,0xb0,0x5e,0xfa,0x66,0x20,0x50,0xcf,0x0,0x28, + 0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0xb0, + 0x5e,0xfa,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x66,0x82,0x50,0x5c, + 0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x64,0xad,0x65,0x3e,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x99,0x96,0x90,0x9,0x98,0x79,0x0, + 0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x70,0x70,0x5e,0xa6,0x0,0x28,0x0, + 0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5f,0x55,0x52,0x36,0x0,0x28,0x0,0x26, + 0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52, + 0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x8f,0x7d,0x51,0x65,0x4e,0xa,0x4e,0x0,0x4e,0x2a,0x66,0x20,0x50,0xcf,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x79,0xfb,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x79,0xfb,0x96,0x64,0x77,0x40,0x82, + 0x72,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7a,0x97, + 0x53,0xe3,0x59,0x27,0x5c,0xf,0x53,0xef,0x8c,0x3,0x0,0x28,0x0,0x26,0x0,0x52, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x50,0x12,0x5e,0x26,0x81,0xf3,0x8d, + 0x77,0x70,0xb9,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x5c,0x6,0x53,0xf3,0x0,0x20,0x0,0x43, + 0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x95,0x2e,0x66,0x20,0x5c,0x4,0x4e,0x3a, + 0x5d,0xe6,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x95,0x2e,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x8f,0x6f,0x4e,0xf6, + 0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x90,0x9, + 0x62,0xe9,0x77,0x40,0x82,0x72,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x8b,0xbe,0x7f,0x6e, + 0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x63, + 0x7,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x4f,0xdd,0x63,0x1,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x53,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61, + 0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20, + 0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x4e,0xe,0x89,0xc6,0x98,0x91,0x54,0xc,0x6b,0x65,0x0,0x28,0x0,0x26,0x0, + 0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5d,0xe5,0x51,0x77,0x0,0x28,0x0,0x26, + 0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x66, + 0xf4,0x65,0xb0,0x72,0xb6,0x60,0x1,0x68,0xf,0x56,0xfe,0x68,0x7,0x0,0x28,0x0, + 0x26,0x0,0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x57,0x82,0x76,0xf4,0x54,0xc,0x6b, + 0x65,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x67,0xe5,0x77,0xb,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x76,0x7d,0x82,0x72,0x53,0x55, + 0x82,0x72,0x66,0x3e,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x7a,0x97,0x53,0xe3,0x7f,0x29,0x65,0x3e,0x7c,0xfb,0x65,0x70,0x0, + 0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66, + 0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x28,0x7c,0xfb,0x7e,0xdf,0x9e,0xd8,0x8b,0xa4,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x28,0x7a,0x7a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x4f,0x4e,0x4e,0x8e,0x68,0x7,0x51,0xc6,0x8f,0x6c,0x90,0x1f,0x76, + 0x84,0x0,0x20,0x0,0x31,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x4f,0x4e,0x4e,0x8e,0x68,0x7,0x51,0xc6,0x8f,0x6c,0x90, + 0x1f,0x76,0x84,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x4f,0x4e,0x4e,0x8e,0x68,0x7,0x51,0xc6,0x8f,0x6c, + 0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x32,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39, + 0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e, + 0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31, + 0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x32, + 0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47, + 0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32, + 0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82, + 0xf1,0x5b,0xf8,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x65,0x74,0x65,0x70,0x6b, + 0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8, + 0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20, + 0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35, + 0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b, + 0xf8,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xde,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x62,0x7e, + 0x4e,0xd,0x52,0x30,0x4e,0xfb,0x4f,0x55,0x53,0xef,0x75,0x28,0x76,0x84,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x66,0x20,0x50,0xcf,0x30,0x2,0x0,0xa, + 0x0,0xa,0x8b,0xf7,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x4e,0xb,0x8f,0x7d,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x53,0x5,0x5e,0x76,0x5c,0x6,0x51,0x76, + 0x89,0xe3,0x53,0x8b,0x52,0x30,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x22,0x0,0x20,0x65,0x87,0x4e,0xf6,0x59,0x39,0x4e,0x2d,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x0,0x20,0x51,0x73,0x67,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x51,0x73,0x4e,0x8e,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6d,0xfb,0x52,0xa0,0x5d,0xf2,0x5b,0x58,0x57, + 0x28,0x76,0x84,0x78,0x6c,0x76,0xd8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x6d,0xfb,0x52,0xa0,0x65,0xb0,0x78,0x6c,0x76,0xd8,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x9a,0xd8,0x7e,0xa7,0x62,0x47,0x53,0x3a,0x66,0x20,0x50,0xcf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x62,0x40,0x67,0x9,0x65,0x87,0x4e, + 0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x62, + 0x40,0x67,0x9,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x2,0xfe,0x4e,0x0,0x4e,0x2a,0x65,0xe7,0x5f,0xf,0x8b,0xa1, + 0x7b,0x97,0x67,0x3a,0x6a,0x21,0x62,0xdf,0x56,0x68,0x0,0xa,0x0,0xa,0x4f,0x5c, + 0x80,0x5,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x30,0x1,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x30,0x1,0x0,0x4a,0x0,0x61,0x0,0x73, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6b,0x30,0x1,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39, + 0x0,0x39,0x0,0x35,0x30,0x1,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x30,0x1,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x30,0x1, + 0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c, + 0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x30,0x1, + 0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d, + 0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65, + 0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x30,0x1,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x30,0x1,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x30,0x1, + 0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74, + 0x0,0x6a,0x0,0x65,0x0,0x29,0x30,0x1,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x30,0x1,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x20,0x7b,0x49, + 0x4e,0xba,0x30,0x2,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x67,0x2c, + 0x8f,0x6f,0x4e,0xf6,0x4f,0x9d,0x63,0x6e,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55, + 0x0,0x20,0x90,0x1a,0x75,0x28,0x51,0x6c,0x51,0x71,0x8b,0xb8,0x53,0xef,0x8b,0xc1, + 0x7b,0x2c,0x4e,0x8c,0x72,0x48,0x62,0x16,0x66,0xf4,0x65,0xb0,0x72,0x48,0x67,0x2c, + 0x53,0xd1,0x5e,0x3,0x30,0x2,0x8b,0xe6,0x60,0xc5,0x89,0xc1,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x65,0x87, + 0x4e,0xf6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e, + 0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64, + 0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68, + 0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61, + 0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63, + 0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e, + 0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35, + 0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65, + 0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61, + 0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20, + 0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e, + 0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29, + 0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20, + 0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43, + 0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65, + 0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20, + 0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f, + 0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61, + 0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68, + 0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f, + 0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20, + 0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69, + 0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f, + 0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68, + 0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75, + 0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e, + 0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72, + 0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x78,0x6e,0x5b, + 0x9a,0x89,0x81,0x90,0x0,0x51,0xfa,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x54,0x17,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x78,0x6e,0x5b,0x9a,0x89,0x81,0x78,0x6c,0x91,0xcd,0x7f,0x6e,0x6a,0x21, + 0x62,0xdf,0x56,0x68,0x54,0x17,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x81,0xea,0x52,0xa8,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x42,0x0,0x54,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0, + 0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x42,0x0,0x54,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x37,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30, + 0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x57,0xfa,0x67,0x2c,0x62,0x47,0x53,0x3a,0x66,0x20,0x50,0xcf,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x5f,0x0,0x59,0xcb,0x8f,0xfd,0x8e,0x2a,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x57,0x57,0x59,0x27,0x5c,0xf,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x60,0x3b,0x7e,0xbf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x60,0x3b,0x7e,0xbf,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x51, + 0x49,0x76,0xd8,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28, + 0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x51,0x49,0x76,0xd8,0x9a,0x71,0x52,0xa8,0x56,0x68,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x51,0x49,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x43,0x0,0x47,0x0, + 0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x8f, + 0xc7,0x62,0x6b,0x63,0xcf,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x8b,0xbe,0x59,0x7,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x8b,0xbe,0x59,0x7,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20,0x8b,0xbe,0x59,0x7, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0x8b,0xbe,0x59, + 0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe0,0x6b,0x64,0x6a,0x21,0x62,0xdf,0x8b,0xa1,0x7b,0x97,0x67,0x3a, + 0x79,0x81,0x75,0x28,0x4e,0x86,0x57,0xfa,0x4e,0x8e,0x90,0x9,0x5b,0x9a,0x8b,0xa1, + 0x7b,0x97,0x67,0x3a,0x76,0x84,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20, + 0x7c,0x7b,0x57,0x8b,0x8f,0xc7,0x6e,0xe4,0x30,0x2,0x0,0xa,0x0,0xa,0x80,0xfd, + 0x59,0x1f,0x90,0x9,0x4e,0x2d,0x4e,0xe,0x62,0x40,0x90,0x9,0x67,0x3a,0x56,0x68, + 0x67,0x2c,0x4e,0xd,0x51,0x7c,0x5b,0xb9,0x76,0x84,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0xff,0xc,0x4f,0x46,0x66,0x2f,0x53,0xef,0x80,0xfd,0x4f,0x1a,0x90,0x47, + 0x52,0x30,0x4e,0xe,0x67,0x3a,0x56,0x68,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x62,0x16,0x51,0x76,0x4e,0xd6,0x8f,0x6f,0x4e,0xf6,0x4e,0xd, + 0x51,0x7c,0x5b,0xb9,0x76,0x84,0x95,0xee,0x98,0x98,0x30,0x2,0x0,0xa,0x0,0xa, + 0x54,0x2f,0x75,0x28,0x6b,0x64,0x8b,0xbe,0x7f,0x6e,0x4e,0xd,0x53,0xd7,0x5b,0x98, + 0x65,0xb9,0x65,0x2f,0x63,0x1,0xff,0xc,0x5e,0x76,0x4e,0x14,0x63,0xd0,0x4e,0xa4, + 0x76,0x84,0x4e,0xfb,0x4f,0x55,0x95,0x19,0x8b,0xef,0x62,0xa5,0x54,0x4a,0x53,0xef, + 0x80,0xfd,0x4f,0x1a,0x89,0xc6,0x4e,0x3a,0x65,0xe0,0x65,0x48,0x80,0xc,0x51,0x73, + 0x95,0xed,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67, + 0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74, + 0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f, + 0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69, + 0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68, + 0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75, + 0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20, + 0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69, + 0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c, + 0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20, + 0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f, + 0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50,0x0,0x55, + 0x0,0x20,0x7c,0x7b,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x53,0xd6,0x6d,0x88,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x62,0x69,0x5c,0x55,0x53,0x61,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x62,0x69,0x5c, + 0x55,0x53,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x62,0x69,0x5c,0x55,0x53,0x61,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x62,0x69,0x5c, + 0x55,0x53,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x53,0x61,0x5e,0x26,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x53, + 0x61,0x5e,0x26,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78,0xc1,0x5e,0x26, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x78,0xc1,0x5e, + 0x26,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43, + 0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x5e,0x26,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x66,0xf4,0x65,0x39,0x53,0x55,0x82,0x72,0x66,0x3e, + 0x79,0x3a,0x5b,0xf9,0x6b,0xd4,0x5e,0xa6,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d, + 0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1a,0x90,0x53, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x68, + 0xc0,0x67,0xe5,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x53,0x55,0x51,0xfb,0x7a,0x97,0x53, + 0xe3,0x63,0x55,0x63,0x49,0x9f,0x20,0x68,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x91,0x4d,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x7e,0xe7,0x7e,0xed,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x65, + 0xe0,0x6c,0xd5,0x4f,0xee,0x59,0xd,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x65,0xf6,0x95,0xf4,0x62,0x33,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x65,0xe0,0x6c,0xd5,0x52,0x1d, + 0x59,0xcb,0x53,0x16,0x89,0xc6,0x98,0x91,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74, + 0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x81, + 0xea,0x5b,0x9a,0x4e,0x49,0x0,0x20,0x0,0x28,0x59,0x27,0x5b,0xb9,0x91,0xcf,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x81,0xea,0x5b, + 0x9a,0x4e,0x49,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x67,0xf1,0x97,0x62,0x0,0x28,0x0,0x43,0x0, + 0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c, + 0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x31,0x0,0x30, + 0x0,0x32,0x0,0x34,0x0,0x20,0x7c,0x7,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x20,0x7c,0x7,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x9e,0xd8,0x8b,0xa4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x5d,0xee,0x52,0x6,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x79,0x81,0x75,0x28,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x5d,0xf2,0x52,0x1b,0x5e,0xfa,0x78,0xc1,0x76, + 0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x78,0xc1,0x76,0xd8, + 0x66,0x20,0x50,0xcf,0x65,0x87,0x4e,0xf6,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20, + 0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x59,0x2a,0x59,0x27,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x4e,0xd, + 0x80,0xfd,0x8d,0x85,0x8f,0xc7,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20, + 0x0,0x47,0x0,0x42,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x78,0xc1,0x76,0xd8,0x59,0x27,0x5c,0xf,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x66,0x3e,0x79, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x89,0x81,0x4f, + 0xdd,0x5b,0x58,0x8b,0xbe,0x7f,0x6e,0x54,0x17,0xff,0x1f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x4e,0xd,0x90,0x0,0x51,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xd,0x89,0x86,0x76,0xd6,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x4e,0xd,0x91,0xcd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x4e,0xd,0x89,0x81,0x51,0x8d,0x66,0x3e,0x79,0x3a, + 0x6b,0x64,0x6d,0x88,0x60,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x52,0xa8,0x60,0x1,0x91,0xcd,0x7f,0x16, + 0x8b,0xd1,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79, + 0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x52,0xa8,0x60,0x1,0x59, + 0x27,0x5c,0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0, + 0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20, + 0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x8b,0xbe,0x7f,0x6e,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x5f,0x39,0x51,0xfa,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x7a,0x7a,0x7f,0x6e,0x9a,0x71,0x52,0xa8,0x56, + 0x68,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x90,0x0,0x51,0xfa,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x5b,0xfc,0x51,0xfa,0x4e,0x3a,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x46,0x0,0x20,0x68,0x3c,0x5f,0xf,0x0,0x28,0x0,0x26,0x0,0x78,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45, + 0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44, + 0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x65,0xe9,0x51,0x48,0x76,0x84,0x9a,0x71,0x52,0xa8,0x56,0x68,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x54, + 0x2f,0x75,0x28,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x64,0x0,0x20,0x96,0xc6,0x62,0x10,0x0,0x28,0x0,0x26,0x0,0x44,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x54,0x2f,0x75,0x28,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x54,0x2f,0x75,0x28,0x0,0x20,0x0,0x28,0x67,0x2c,0x57,0x30,0x65, + 0xf6,0x95,0xf4,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x7e,0xd3, + 0x67,0x5f,0x8f,0xfd,0x8e,0x2a,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6b,0x63,0x57,0x28,0x8f,0xdb,0x51, + 0x65,0x51,0x68,0x5c,0x4f,0x6a,0x21,0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x95,0x19,0x8b,0xef,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x52,0x1d,0x59,0xcb,0x53,0x16,0x6e,0x32,0x67,0xd3,0x56,0x68, + 0x65,0xf6,0x51,0xfa,0x95,0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x62,0x53,0x5f,0x0,0x5d,0xf2,0x5b,0x58,0x57,0x28, + 0x76,0x84,0x66,0x20,0x50,0xcf,0x5e,0x76,0x51,0x99,0x4f,0xdd,0x62,0xa4,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f, + 0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x90,0x0,0x51,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x5f,0x3a,0x52,0x36,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20, + 0x66,0x3e,0x79,0x3a,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65, + 0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74, + 0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8f,0x6f,0x76, + 0xd8,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x8c,0x3,0x98,0x91, + 0x54,0x8,0x62,0x10,0x56,0x68,0x9a,0x71,0x52,0xa8,0x56,0x68,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x20,0x0,0x59,0x0,0x61,0x0,0x48,0x0,0x65,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x6d,0x6e,0x70,0xb9, + 0x59,0x4,0x74,0x6,0x56,0x68,0x0,0x20,0x0,0x28,0x0,0x46,0x0,0x50,0x0,0x55, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x7f,0x51,0x7e, + 0xdc,0x9a,0x71,0x52,0xa8,0x7a,0xb,0x5e,0x8f,0x52,0x1d,0x59,0xcb,0x53,0x16,0x59, + 0x31,0x8d,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8b,0xbe,0x7f,0x6e,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x59,0x31,0x8d,0x25,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x5f,0xeb,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x81,0xf4,0x54,0x7d,0x95,0x19,0x8b,0xef,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x65,0x87,0x4e,0xf6, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x65,0x87,0x4e,0xf6,0x54,0xd,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20, + 0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x8f,0xc7,0x6e,0xe4,0x65,0xb9,0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x56,0xfa,0x5b,0x9a,0x59,0x27, + 0x5c,0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x8f,0x6f,0x76,0xd8,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x8f,0x6f,0x76,0xd8,0x0,0x2f,0x51,0x49, + 0x76,0xd8,0x9a,0x71,0x52,0xa8,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x8f,0x6f,0x76,0xd8,0x9a,0x71,0x52,0xa8,0x56,0x68,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x51,0x68,0x5c,0x4f,0x62,0xc9,0x4f,0x38,0x6a,0x21,0x5f,0xf,0x0,0x28,0x0,0x26, + 0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63, + 0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x58,0x9e,0x76,0xca,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x70,0x70, + 0x5e,0xa6,0x8f,0x6c,0x63,0x62,0x7c,0x7b,0x57,0x8b,0x0,0x28,0x0,0x26,0x0,0x43, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79, + 0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f, + 0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0x6c,0x76,0xd8,0x63,0xa7,0x52, + 0x36,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x4e,0xd,0x80,0xfd,0x8d,0x85,0x8f,0xc7, + 0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x66,0x20,0x50,0xcf,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4e,0xd,0x65,0x2f,0x63, + 0x1,0x97,0x5e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x5b,0x57,0x82, + 0x82,0x62,0x47,0x53,0x3a,0x59,0x27,0x5c,0xf,0x76,0x84,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x62,0x16,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x20,0x66,0x20,0x50,0xcf,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72, + 0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e, + 0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70, + 0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x66,0x20,0x50,0xcf,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x78,0x6c,0x76,0xd8,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x78,0x6c,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78, + 0x6c,0x76,0xd8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x78,0x6c,0x76,0xd8,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x78,0x6c,0x91,0xcd,0x7f,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0x6c,0x4e, + 0xf6,0x4e,0xd,0x53,0xef,0x75,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x78,0xc1,0x59,0x34,0x0,0x28,0x0,0x48,0x0,0x29,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x9a,0xd8,0x5e,0xa6,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x48,0x0,0x69,0x0, + 0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x7f,0x29,0x65,0x3e,0x0,0x28,0x0,0x26,0x0, + 0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x96,0x90,0x85,0xcf,0x5d,0xe5,0x51,0x77,0x68,0xf, + 0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42,0x0,0x4d, + 0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35, + 0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x51,0x85, + 0x5b,0x58,0x62,0x69,0x5c,0x55,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x5b,0x9e,0x65,0xf6,0x65,0xf6,0x94,0x9f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72, + 0x0,0x20,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x56,0xfe,0x68,0x7,0x96, + 0xc6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f, + 0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x66,0x20,0x50,0xcf,0x68,0x3c,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x8f,0x93,0x51, + 0x65,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x51,0x85,0x90,0xe8,0x63,0xa7,0x52,0x36,0x56, + 0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72, + 0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xe0,0x65,0x48,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x65,0xe0,0x65,0x48,0x91,0x4d,0x7f,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x0, + 0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64,0xcd,0x7e,0xb5,0x67, + 0x46,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64,0xcd,0x7e, + 0xb5,0x67,0x46,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x64, + 0xcd,0x7e,0xb5,0x67,0x46,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x20,0x8b,0xbe,0x59,0x7,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x8b,0xbe,0x59,0x7,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20,0x8b,0xbe,0x59,0x7, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x8b,0xbe,0x59, + 0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x8b,0xed,0x8a,0x0,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x59,0x27,0x57,0x57,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x95,0x1,0x5b,0x9a,0x6b,0x64,0x59,0x27,0x5c,0xf,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x4e,0xd,0x5b,0x58,0x57,0x28,0x0,0x20,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x62,0x16,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x9a,0x71,0x52,0xa8,0x56,0x68,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69, + 0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x8f,0x93,0x51,0x65,0x8b,0xbe,0x59, + 0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44, + 0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x20,0x8f,0x93,0x51,0xfa,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x78,0xc1,0x51,0x49,0x76,0xd8,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25, + 0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x78,0xc1,0x51,0x49,0x76,0xd8,0x9a,0x71,0x52, + 0xa8,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d, + 0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x78,0xc1,0x51,0x49,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x67,0x3a,0x57,0x8b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x75,0x31,0x4e,0x8e, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x65,0x87, + 0x4e,0xf6,0x59,0x39,0x4e,0x2d,0x7f,0x3a,0x5c,0x11,0x54,0x8,0x90,0x2,0x76,0x84, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0xff,0xc,0x67,0x3a,0x57,0x8b,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4e,0xd,0x53,0xef, + 0x75,0x28,0x30,0x2,0x5c,0x6,0x52,0x7,0x63,0x62,0x52,0x30,0x51,0x76,0x4e,0xd6, + 0x53,0xef,0x75,0x28,0x67,0x3a,0x57,0x8b,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73, + 0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e, + 0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f, + 0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67, + 0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x67,0x3a,0x56,0x68,0x7c,0x7b,0x57,0x8b,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x67,0x3a,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x8b,0xf7,0x78,0x6e,0x8b,0xa4,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x5d,0xf2,0x5b,0x89,0x88, + 0xc5,0x4e,0x14,0x4f,0x7f,0x75,0x28,0x51,0x7c,0x5b,0xb9,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x76,0x84,0x7f, + 0x51,0x7e,0xdc,0x8f,0xde,0x63,0xa5,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x8b,0xf7,0x78,0x6e,0x5b,0x9a,0x6b, + 0x64,0x65,0x87,0x4e,0xf6,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x5e,0x76,0x53,0xef,0x8b, + 0xfb,0x53,0xd6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x8b,0xf7,0x78,0x6e,0x5b,0x9a,0x6b,0x64,0x65,0x87,0x4e,0xf6, + 0x4f,0xdd,0x5b,0x58,0x57,0x28,0x53,0xef,0x51,0x99,0x76,0xee,0x5f,0x55,0x4e,0x2d, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x51,0x85,0x5b,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63, + 0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65, + 0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x66,0x3e,0x79,0x3a,0x56,0x68,0x59,0x4,0x57,0x28,0x77,0x61,0x77,0x20,0x72,0xb6, + 0x60,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x9f,0x20,0x68,0x7, + 0x65,0x4f,0x61,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76, + 0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x9f, + 0x20,0x68,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x7f,0x51,0x7e,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x7f,0x51,0x7e,0xdc,0x90,0x2,0x91,0x4d,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x7f,0x51,0x7e,0xdc,0x7c,0x7b,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x65,0xb0,0x5e, + 0xfa,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x67,0x2a,0x62,0x7e,0x52,0x30,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x0,0x20,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x62,0x7e,0x4e,0xd,0x52,0x30,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x65,0xe0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x66,0xf4,0x51,0xc6, + 0x78,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75, + 0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61, + 0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78,0x6e, + 0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x51,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x5f,0x0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x68,0x38,0x5f,0xc3,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x47, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x65,0xe0,0x6c,0xd5,0x52,0x1d,0x59, + 0xcb,0x53,0x16,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x68,0x38,0x5f, + 0xc3,0x0,0x29,0x0,0x20,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30,0x2,0x8b,0xf7,0x4f, + 0x7f,0x75,0x28,0x51,0x76,0x4e,0xd6,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30,0x2,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x77,0x40,0x82,0x72, + 0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x0,0x20,0x90,0x9,0x98,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x76,0x4e,0xd6,0x59,0x16, + 0x56,0xf4,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x51,0x76,0x4e,0xd6, + 0x53,0xef,0x79,0xfb,0x52,0xa8,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x89,0x86,0x76,0xd6,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x20,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x49,0x0,0x54,0x0, + 0x20,0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x81,0xea,0x68,0xc0,0x0,0x20,0x0,0x28,0x0,0x50,0x0, + 0x4f,0x0,0x53,0x0,0x54,0x0,0x29,0x0,0x20,0x53,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x5e,0x76,0x53,0xe3,0x0,0x20,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x5e,0x76,0x53,0xe3,0x0,0x20,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x5e,0x76,0x53,0xe3,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x5e,0x76,0x53, + 0xe3,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x72,0x36,0x76,0xd8,0x4e,0xe,0x5b, + 0x50,0x76,0xd8,0x76,0x84,0x65,0xf6,0x95,0xf4,0x62,0x33,0x4e,0xd,0x53,0x39,0x91, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x66,0x82,0x50,0x5c,0x62,0x67,0x88,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x68, + 0x7,0x51,0xc6,0x8f,0x6c,0x90,0x1f,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x8b,0xf7,0x63,0x7,0x5b,0x9a,0x67,0x9,0x65,0x48,0x76,0x84,0x65, + 0x87,0x4e,0xf6,0x54,0xd,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x7a,0xef,0x53, + 0xe3,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x54,0x8c,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20, + 0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x99, + 0x96,0x90,0x9,0x98,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0, + 0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x63,0x9,0x4e,0xb,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x63, + 0x9,0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0, + 0x20,0x8f,0xd4,0x56,0xde,0x52,0x30,0x7a,0x97,0x53,0xe3,0x6a,0x21,0x5f,0xf,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x46,0x0,0x38,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x62,0x16,0x9f,0x20,0x68,0x7,0x4e, + 0x2d,0x95,0x2e,0x91,0xca,0x65,0x3e,0x9f,0x20,0x68,0x7,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31, + 0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x63,0x9, + 0x4e,0xb,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x91,0xca,0x65,0x3e,0x9f,0x20,0x68,0x7,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x8f,0xdb,0x5e,0xa6, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x7b,0x2c,0x56,0xdb,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x63,0xa7, + 0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75, + 0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x8b,0xb0,0x4f,0x4f,0x7a,0x97,0x53,0xe3,0x59,0x27,0x5c,0xf,0x54,0x8c, + 0x4f,0x4d,0x7f,0x6e,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x47,0x0, + 0x42,0x0,0x20,0x5f,0x69,0x82,0x72,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f, + 0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x8f,0x6c, + 0x90,0x1f,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x29,0x0,0x20, + 0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x53,0x9f,0x59,0xcb,0x66,0x20,0x50,0xcf,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x6e, + 0x32,0x67,0xd3,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x8b,0xf7,0x8b,0xb0,0x5f, + 0x97,0x4e,0x3a,0x65,0xb0,0x52,0x1b,0x5e,0xfa,0x76,0x84,0x66,0x20,0x50,0xcf,0x52, + 0x6,0x53,0x3a,0x5e,0x76,0x68,0x3c,0x5f,0xf,0x53,0x16,0x30,0x2,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x91,0xcd,0x7f,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x60,0x62,0x59,0xd,0x62,0x67,0x88, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d, + 0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x78,0x6c, + 0x4e,0xf6,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x4f,0xdd,0x5b,0x58,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x5c, + 0x6,0x4e,0xe5,0x4e,0xa,0x8b,0xbe,0x7f,0x6e,0x5b,0x58,0x50,0xa8,0x4e,0x3a,0x51, + 0x68,0x5c,0x40,0x9e,0xd8,0x8b,0xa4,0x50,0x3c,0x0,0x28,0x0,0x26,0x0,0x47,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20, + 0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61, + 0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x62,0x47,0x53, + 0x3a,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x4e,0xce,0x7a,0xb,0x5e,0x8f,0x5d,0xe5,0x4f,0x5c, + 0x76,0xee,0x5f,0x55,0x4e,0x2d,0x90,0x9,0x62,0xe9,0x4e,0xcb,0x8d,0x28,0x66,0x20, + 0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65, + 0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72, + 0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x90,0x9,0x62,0xe9,0x72,0x36,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x65,0x87,0x4e,0xf6,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4e,0x32,0x53,0xe3,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x4e,0x32,0x53,0xe3,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4e,0x32,0x53,0xe3,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x4e,0x32,0x53,0xe3,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x8b, + 0xbe,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x61, + 0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x5c,0xf,0x57,0x57,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x58,0xf0,0x97,0xf3,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x97,0xf3,0x91,0xcf,0x58,0x9e,0x76,0xca, + 0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67, + 0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x97,0xf3,0x91,0xcf,0x58,0x9e,0x76,0xca,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x58,0xf0,0x53,0x61,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x58,0xf0,0x53,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x58,0xf0,0x53,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x58,0xf0,0x53,0x61, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x63,0x7,0x5b,0x9a,0x4e,0x3b,0x7a,0x97, + 0x53,0xe3,0x59,0x27,0x5c,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e, + 0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x63,0x7,0x5b,0x9a,0x7a,0x97,0x53, + 0xe3,0x59,0x27,0x5c,0xf,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x90,0x1f,0x5e,0xa6,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x90,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x72,0xec,0x7a,0xcb,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55, + 0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55, + 0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x68, + 0x7,0x51,0xc6,0x0,0x20,0x0,0x32,0x0,0x20,0x95,0x2e,0x64,0xcd,0x7e,0xb5,0x67, + 0x46,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0,0x34,0x0,0x20,0x95,0x2e,0x64, + 0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0,0x36,0x0,0x20,0x95,0x2e, + 0x64,0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0,0x38,0x0,0x20,0x95, + 0x2e,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x5b,0x58,0x50,0xa8,0x63,0xa7,0x52,0x36,0x56,0x68, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67, + 0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x88,0x68,0x97,0x62,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x62,0x2a,0x56,0xfe,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20, + 0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x76, + 0xee,0x68,0x7,0x5e,0x27,0x73,0x87,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x7b,0x2c,0x4e,0x9,0x0,0x20,0x0,0x49,0x0,0x44,0x0, + 0x45,0x0,0x20,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x7f,0x51,0x7e,0xdc,0x91,0x4d,0x7f,0x6e,0x5c,0x6,0x52, + 0x7,0x63,0x62,0x4e,0x3a,0x7a,0x7a,0x9a,0x71,0x52,0xa8,0x7a,0xb,0x5e,0x8f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63, + 0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x90,0x9,0x5b,0x9a,0x76,0x84,0x65,0x87,0x4e,0xf6,0x5c,0x6,0x88,0xab,0x89, + 0x86,0x76,0xd6,0x30,0x2,0x78,0x6e,0x5b,0x9a,0x7e,0xe7,0x7e,0xed,0x4f,0x7f,0x75, + 0x28,0x6b,0x64,0x65,0x87,0x4e,0xf6,0x54,0x17,0xff,0x1f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x72,0x36,0x66,0x20,0x50,0xcf,0x53,0xef,0x80, + 0xfd,0x57,0x28,0x52,0x1b,0x5e,0xfa,0x5d,0xee,0x5f,0x2,0x66,0x20,0x50,0xcf,0x54, + 0xe,0x88,0xab,0x4f,0xee,0x65,0x39,0x30,0x2,0x0,0xa,0x0,0xa,0x59,0x82,0x67, + 0x9c,0x66,0x20,0x50,0xcf,0x65,0x87,0x4e,0xf6,0x88,0xab,0x79,0xfb,0x52,0xa8,0x62, + 0x16,0x59,0xd,0x52,0x36,0xff,0xc,0x62,0x16,0x52,0x1b,0x5e,0xfa,0x6b,0x64,0x78, + 0xc1,0x76,0xd8,0x76,0x84,0x7a,0xb,0x5e,0x8f,0x4e,0x2d,0x5b,0x58,0x57,0x28,0x95, + 0x19,0x8b,0xef,0xff,0xc,0x4e,0x5f,0x53,0xef,0x80,0xfd,0x53,0xd1,0x75,0x1f,0x8f, + 0xd9,0x79,0xcd,0x60,0xc5,0x51,0xb5,0x30,0x2,0x0,0xa,0x0,0xa,0x66,0x2f,0x54, + 0x26,0x97,0x0,0x89,0x81,0x4f,0xee,0x59,0xd,0x65,0xf6,0x95,0xf4,0x62,0x33,0xff, + 0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x6b,0x64,0x64,0xcd,0x4f,0x5c,0x5c,0x6,0x78,0x6c, + 0x91,0xcd,0x7f,0x6e,0x6a,0x21,0x62,0xdf,0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x65,0xf6,0x95,0xf4,0x54,0xc,0x6b,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x52,0xa0,0x90,0x1f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x52,0xa0,0x90,0x1f,0x65,0xf6,0x5e,0x8f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d, + 0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x7c, + 0x7b,0x57,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x7c,0x7b,0x57,0x8b, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x5c,0x1a,0x67,0x2a, + 0x65,0x2f,0x63,0x1,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x65,0xe0,0x6c,0xd5,0x52,0x1d,0x59, + 0xcb,0x53,0x16,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73, + 0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x65,0xe0,0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0xff,0xc,0x97,0x0,0x89,0x81,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44, + 0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xe0,0x6c, + 0xd5,0x52,0xa0,0x8f,0x7d,0x95,0x2e,0x76,0xd8,0x52,0xa0,0x90,0x1f,0x56,0x68,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x65,0xe0,0x6c,0xd5,0x8b, + 0xfb,0x53,0xd6,0x65,0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65, + 0xe0,0x6c,0xd5,0x6c,0xe8,0x51,0x8c,0x53,0x9f,0x59,0xcb,0x8f,0x93,0x51,0x65,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61, + 0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x65,0xe0,0x6c,0xd5,0x51,0x99,0x51,0x65,0x65,0x87,0x4e,0xf6,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4e,0xd,0x65,0x2f,0x63,0x1,0x76,0x84, + 0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x4f,0x7f,0x75,0x28,0x53,0x55,0x7c,0xbe,0x5e,0xa6,0x6d,0x6e,0x70, + 0xb9,0x0,0x20,0x0,0x28,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55, + 0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x5c,0x4f,0x5e,0x55,0x7c,0x7b,0x57,0x8b,0x0,0x28,0x0,0x26,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x65,0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48, + 0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x68,0x75,0x31,0x4e,0x8e,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x65,0x87, + 0x4e,0xf6,0x59,0x39,0x4e,0x2d,0x7f,0x3a,0x5c,0x11,0x54,0x8,0x90,0x2,0x76,0x84, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0xff,0xc,0x66,0x3e,0x53,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4e,0xd,0x53,0xef, + 0x75,0x28,0x30,0x2,0x5c,0x6,0x52,0x7,0x63,0x62,0x52,0x30,0x51,0x76,0x4e,0xd6, + 0x53,0xef,0x75,0x28,0x66,0x3e,0x53,0x61,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22, + 0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73, + 0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65, + 0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67, + 0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x66,0x3e,0x53,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68, + 0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x49,0x5f,0x85,0x72,0xb6, + 0x60,0x1,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0,0x29,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x6b, + 0x22,0x8f,0xce,0x4f,0x7f,0x75,0x28,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0xff,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57, + 0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x5b,0xbd,0x5e,0xa6,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x66,0xf4,0x5f,0xeb,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20, + 0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x6b,0x63,0x57,0x28,0x8f,0x7d,0x51,0x65,0x4e,0x0,0x4e,0x2a,0x4e, + 0xd,0x53,0xd7,0x65,0x2f,0x63,0x1,0x76,0x84,0x91,0x4d,0x7f,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c, + 0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x9a,0x71, + 0x52,0xa8,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x66,0x20, + 0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0, + 0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_fr-FR.qm + 0x0,0x0,0x97,0x1b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x5,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0x7b,0x0,0x0,0x0,0x53,0x0,0x0,0x6d,0x2,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0xa2,0x0,0x0,0x4,0xf2,0x0,0x0,0x52,0x71,0x0,0x0,0x5,0x12, + 0x0,0x0,0x54,0x64,0x0,0x0,0x5,0x3b,0x0,0x0,0x5f,0xd4,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x60,0x19,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x3b,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0xa1,0x0,0x0,0x29,0xa8,0x0,0x0,0x5,0x7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x5,0x46,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0xac,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x6,0x12,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0x78,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x96,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xc6,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4e,0x2,0x0,0x0,0x4d,0x85,0x0,0x0,0x4e,0x20,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5f,0xef,0x0,0x0,0x5d,0x81,0x0,0x0,0x87,0x55,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x69,0x0,0x2,0x97,0xd3,0x0,0x0,0x5,0x25,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x38,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x34,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xe4,0x0,0x4,0xa7,0x89,0x0,0x0,0x3f,0x35,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0xf0,0x0,0x4,0xc8,0xa4,0x0,0x0,0x45,0x1,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0xa5,0x0,0x4,0xd0,0x25,0x0,0x0,0x45,0x60,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0xf7,0x0,0x5,0x56,0x45,0x0,0x0,0x5f,0x61,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6d,0x1a,0x0,0x5,0x98,0xc5,0x0,0x0,0x6d,0xfe,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x71,0x87,0x0,0x5,0xc0,0x65,0x0,0x0,0x7f,0x1d,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0xe,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x47,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x17,0x0,0x2a,0xec,0x30,0x0,0x0,0xb,0x1b,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0xd,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xa8,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x22,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x82,0x3,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xce,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x9f,0x0,0x4c,0x99,0x62,0x0,0x0,0x41,0x7e,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0xab,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6c,0x7f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x74,0x5d,0x0,0x5a,0x6c,0x44,0x0,0x0,0x71,0xfc,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7e,0xcd,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7f,0x3e,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x89,0xeb,0x0,0x73,0x75,0x3e,0x0,0x0,0x36,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5f,0x17,0x0,0x97,0x96,0x4,0x0,0x0,0x39,0x0,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x50,0x8d,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x52,0x2b,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4b,0x8a,0x0,0xb8,0x5f,0x43,0x0,0x0,0x61,0xeb,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xd5,0x1,0x9,0x1c,0x92,0x0,0x0,0x43,0x4c,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xb4,0x1,0x39,0xa4,0xce,0x0,0x0,0x5b,0x3e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7e,0xf1,0x1,0x4c,0x50,0xee,0x0,0x0,0x6a,0x42,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4b,0x49,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x54,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7d,0x2c,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3d,0xa9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0xab,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0xb2,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0xe7,0x1,0xb0,0x47,0x5c,0x0,0x0,0x54,0x7f,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xb,0x3f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0xca,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xc,0xd,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x13,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x33,0x12,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6d,0xc2,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x74,0xb0,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0xdc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x76,0x47,0x2,0x23,0x3c,0x6b,0x0,0x0,0x75,0xda,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x75,0x6d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xa0,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4d,0x25,0x2,0x78,0x48,0x1a,0x0,0x0,0x55,0xab,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x87,0xb5,0x2,0x90,0x8d,0x12,0x0,0x0,0x44,0x11,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x62,0x76,0x2,0xad,0x4a,0x22,0x0,0x0,0x6a,0xaf,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0xb9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xe6,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xe2,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xa0,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x59,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x62,0x2a,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x8a,0xf,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0xa4,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x65,0xfd,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x46,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x22,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x49,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x54,0xa9,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0x5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x2c,0x3,0x6a,0x66,0x2e,0x0,0x0,0x59,0x5d,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x57,0x22,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x9a,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0xdd,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xbd,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x80,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0xd0,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0xa2,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xa7,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5c,0x61,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x74,0xf7,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x73,0x34,0x3,0xe4,0x25,0x5a,0x0,0x0,0x72,0xfa,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x72,0xc0,0x3,0xe4,0x25,0x7a,0x0,0x0,0x72,0x86,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0xb4,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0xee,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xf7,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x6d,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x97,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x46,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0xca,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x55,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x65,0x4,0x51,0x79,0xb1,0x0,0x0,0x77,0x55,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x80,0x54,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x72,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x72,0x57,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3e,0x60,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3e,0x8b,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0xb9,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x31,0x4,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3a,0x5e,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x35,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xea,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xab,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5d,0xc4,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x34,0x68,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x51,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x4d,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5d,0xec,0x4,0xeb,0x2f,0xa,0x0,0x0,0x53,0x90,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0xd2,0x5,0x18,0x5,0x95,0x0,0x0,0x82,0x7b,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xcb,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0xdc,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5d,0x9b,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x88,0xa0,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xcc,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0xe9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x71,0xa8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x57,0x4c,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7e,0x74,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x78,0x6d,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x9d,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x74,0x85,0x5,0xb2,0x16,0x79,0x0,0x0,0x6b,0x16,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xa2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4b,0x4,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x41,0x1d,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x70,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xc7,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xc1,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4d,0x76,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x80,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x85,0xc7,0x5,0xd0,0x4f,0x11,0x0,0x0,0x86,0x73,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xc4,0x5,0xdf,0xba,0xba,0x0,0x0,0x86,0xc5,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x69,0xb4,0x6,0x7,0xd3,0xda,0x0,0x0,0x4f,0x77,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x39,0x2f,0x6,0x19,0x20,0x43,0x0,0x0,0x6e,0x2d,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3c,0x94,0x6,0x38,0x9f,0x35,0x0,0x0,0x3a,0x5,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xee,0x6,0x51,0xe6,0x13,0x0,0x0,0x7,0x6d,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x9a,0x6,0x6c,0xb8,0x3,0x0,0x0,0x83,0xe2,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0xd5,0x6,0x74,0xe,0x6a,0x0,0x0,0x63,0x47,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4c,0x46,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0xb,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0xdd,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3b,0x95,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x73,0x6e,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0xa4,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6d,0x80,0x6,0xc3,0xce,0xa3,0x0,0x0,0x76,0xb4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x47,0x5e,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0xd2,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0xa0,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0x6e,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4c,0xc,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x1d,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x56,0xd6,0x7,0x6,0x93,0xe3,0x0,0x0,0x89,0x82,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xb1,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x55,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x14,0x7,0x2a,0xb5,0xca,0x0,0x0,0x71,0x50,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5c,0xea,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0xdf,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x65,0x7d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xa2,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0xff,0x7,0x58,0x61,0xe5,0x0,0x0,0x4c,0x79,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xc9,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0x81,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0xc0,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6c,0xb3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x59,0x30,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6b,0xa9,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x60,0x87,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xc3,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x83,0x9f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x8a,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xba,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xd9,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x67,0x68,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x67,0xb,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3f,0x56,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6d,0x3b,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0x80,0x8,0x0,0x3f,0x29,0x0,0x0,0x66,0x8b,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5c,0x8d,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x6a,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x54,0xa,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7d,0xef,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x63,0x77,0x8,0x68,0x71,0xae,0x0,0x0,0x9,0x35,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7f,0x62,0x8,0x9b,0xc,0x24,0x0,0x0,0x6f,0xdd,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x51,0x43,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0xf1,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x51,0x7d,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0xb7,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3e,0xf,0x8,0xa9,0xcf,0x35,0x0,0x0,0x32,0x6a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x42,0x28,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0xf1,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x40,0x7f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x47,0xd,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0xbc,0x9,0x49,0xfa,0x4a,0x0,0x0,0x35,0x41,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0x7d,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0xc9,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x35,0x5,0x9,0x4e,0xde,0x64,0x0,0x0,0x7f,0xd7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5e,0x7b,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x59,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x53,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0xbf,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x68,0x71,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x64,0x9,0x88,0x63,0xa, + 0x0,0x0,0x31,0x2d,0x9,0x88,0x63,0x1a,0x0,0x0,0x31,0x59,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x85,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0xb1,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0xca,0x9,0x9f,0xe,0xe0,0x0,0x0,0xa,0x3b,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x6,0x30,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5e,0x3b,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x64,0xb9,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xf5,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5d,0x42,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0xdf,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xa1,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xdb,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0xd2,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x61,0xa,0x41,0x77,0x3, + 0x0,0x0,0x46,0x50,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x69,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0x9a,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x40,0x45,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0xe9,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x7,0x2,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x82,0xe0,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6f,0x12,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x77,0xa,0xa,0x98,0x1f,0x89,0x0,0x0,0x38,0x29,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0xde,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0xf5,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0x6f,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x75,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0x74,0xa,0xda,0x50,0x7e,0x0,0x0,0x81,0x1,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x62,0xa,0xea,0x46,0xf4,0x0,0x0,0x5e,0xb5,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x9c,0xb,0xa,0x72,0xc9,0x0,0x0,0x3b,0x67,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0xe8,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5a,0x9b,0xb,0x29,0x70,0x65, + 0x0,0x0,0x48,0x18,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xb8,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xb0,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0xf7,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xb4,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x49,0xb,0x95,0xed,0xa, + 0x0,0x0,0x56,0x83,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0xc9,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x3f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6e,0xe3,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x72,0x1c,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xeb,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0xe7,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4e,0x3e,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x89,0x48,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x65,0xc9,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x77,0xad,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x2f,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0xe,0xc,0x33,0xeb,0xe2,0x0,0x0,0x78,0x11,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0xb8,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xe7,0xc,0x48,0x83,0xde, + 0x0,0x0,0x67,0xbf,0xc,0x4a,0x5f,0x82,0x0,0x0,0x50,0x3f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x7a,0xb,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0xf6,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3c,0x54,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x7,0x2c,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x97,0xc,0x90,0x26,0xb5,0x0,0x0,0x81,0xa1,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x62,0xda,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x68,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x71,0x23,0xc,0xc8,0xdd,0x32,0x0,0x0,0x8,0x1e,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x60,0x3c,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x84,0x18,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x66,0xd5,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xf2,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xb4,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x88,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x85,0xee,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6b,0x5f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x87,0x1a,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0xb9,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x37,0x1b,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x9d,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3b,0x2c,0xd,0x88,0x48,0x23,0x0,0x0,0x32,0x25,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0xb6,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0xee,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x87,0xfb,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5f,0x84,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x86,0xf0,0xe,0x20,0x13,0x12,0x0,0x0,0x45,0x26,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x3f,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xb0,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x32,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xf1,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x73,0xe,0x62,0x79,0x4,0x0,0x0,0x3c,0x1b,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x71,0xe,0x7b,0xa1,0x23,0x0,0x0,0x56,0x24,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0xa0,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x35,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x69,0x30,0xe,0xbe,0x61,0x81,0x0,0x0,0x70,0x3b,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x70,0x75,0xe,0xbe,0x61,0x83,0x0,0x0,0x70,0xaf,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x70,0xe9,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0xf9,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x9f,0xe,0xe2,0x34,0x60,0x0,0x0,0x88,0xf4,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x89,0x1e,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x9d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xe8,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x68,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x89,0xb5,0xf,0x15,0xf4,0x85,0x0,0x0,0x4f,0x2a,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x79,0x1f,0xf,0x17,0x9c,0x64,0x0,0x0,0x83,0x4b,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x61,0xac,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x93,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x43,0xd,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0xd9,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x74,0x5,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x79,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0xb,0xf,0x70,0xaa,0x1a,0x0,0x0,0x86,0x32,0xf,0x74,0xd,0xca, + 0x0,0x0,0x6a,0xe6,0xf,0x85,0x7b,0xea,0x0,0x0,0x63,0x6,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xca,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x71,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x69,0xe2,0xf,0xd3,0x41,0x72,0x0,0x0,0x3d,0x54,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x52,0x8c,0xf,0xd9,0x8c,0xca,0x0,0x0,0x53,0xe,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0xcd,0xf,0xd9,0x8f,0xca,0x0,0x0,0x53,0x4f,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3f,0x9b,0xf,0xe2,0xe9,0x49,0x0,0x0,0x87,0x73,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x63,0xa9,0xf,0xf5,0xeb,0x52,0x0,0x0,0x63,0xed,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x64,0x31,0xf,0xf5,0xeb,0x54,0x0,0x0,0x64,0x75,0x69,0x0,0x0,0x8a, + 0x39,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x84,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x6e,0x0,0xe9,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x44, + 0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x6e,0x0,0x76,0x0,0x6f,0x0,0x79,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0xe0, + 0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0xe9, + 0x0,0x6e,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0xe9,0x0,0x73, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f, + 0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c, + 0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0xe9,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x28,0x0,0x73,0x0,0x29,0x0, + 0x20,0x0,0x64,0x0,0x27,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x54,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42, + 0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x41,0x0,0x20, + 0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x75, + 0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x56,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x70,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f, + 0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x79,0x0, + 0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x44,0x0, + 0xe9,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x78, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45, + 0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x46,0x0,0x69, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x26,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26, + 0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0xe9, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x26,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x45,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x41,0x0,0x69,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0, + 0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0xe8,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67, + 0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x26,0x0, + 0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe9,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64, + 0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d, + 0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x75,0x0,0x70,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0, + 0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e, + 0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x75,0x0,0x76, + 0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x4a,0x0,0x6f,0x0,0x75,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0xe9,0x0,0x66,0x0, + 0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72, + 0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x20,0x0,0x54,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x47,0x0,0x72,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x45,0x0,0x6e,0x0,0x26, + 0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x63,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52, + 0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x53,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6d,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x53,0x0,0x26,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6d,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x46,0x0,0x65,0x0,0x6e, + 0x0,0xe8,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x52,0x0,0x65, + 0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c, + 0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x72,0x0,0x6f,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x47,0x0,0x61,0x0,0x75, + 0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4c, + 0x0,0x6f,0x0,0x67,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28, + 0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x53,0x0,0xe9,0x0,0x26,0x0,0x6c,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26, + 0x0,0x52,0x0,0xe9,0x0,0x67,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0xe9,0x0, + 0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x70,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0, + 0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x28,0x0, + 0x4b,0x0,0x65,0x0,0x65,0x0,0x70,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26, + 0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b, + 0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0, + 0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xe9,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x75,0x0,0x26,0x0,0x74,0x0,0x69, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x4d,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0xe0,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x26,0x0,0x75,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61, + 0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53, + 0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x75,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x45,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x28,0x0,0x44,0x0,0xe9, + 0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0xe8,0x0,0x6d,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74, + 0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0, + 0x72,0x0,0xe9,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x31,0x0,0x25,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x50,0x0,0x72,0x0,0xe9,0x0,0x63,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0,0x72,0x0,0xe9,0x0,0x63,0x0,0x69, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x69,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x32,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x6f,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35, + 0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x20,0x0,0x28, + 0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22, + 0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20, + 0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0, + 0x69,0x0,0xe8,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8c,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x53,0x0,0x27,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66, + 0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a, + 0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62, + 0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73, + 0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22, + 0x0,0x3e,0x0,0x74,0x0,0xe9,0x0,0x6c,0x0,0xe9,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x7a,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x6d,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x79,0x0,0x65,0x0,0x7a,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x41,0x0,0x72,0x0,0x72,0x0,0xea,0x0,0x74,0x0,0x20,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50, + 0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0xc0,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x41,0x0,0x6a,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x41,0x0,0x6a,0x0,0x6f, + 0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x6f,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x6f,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41, + 0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x4,0x4,0x0,0x55,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x78,0x0,0x20, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4c, + 0x0,0x69,0x0,0x62,0x0,0xe9,0x0,0x72,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45, + 0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66, + 0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa, + 0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47, + 0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c, + 0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61, + 0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43, + 0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64, + 0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e, + 0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61, + 0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64, + 0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79, + 0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c, + 0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77, + 0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c, + 0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d, + 0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69, + 0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e, + 0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa, + 0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f, + 0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73, + 0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b, + 0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e, + 0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73, + 0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73, + 0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61, + 0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61, + 0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45, + 0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4e,0x0,0x45,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0, + 0x75,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0xfb,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x45,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0xfb, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0xe9,0x0,0x65,0x0,0x20,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e, + 0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48, + 0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x62,0x0, + 0x61,0x0,0x73,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0xe9,0x0, + 0x6d,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4c, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41, + 0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41, + 0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67, + 0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x86,0x0,0x4c,0x0,0x61,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63, + 0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0xe9,0x0,0x73,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x63, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0xe9,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x65, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x6c,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0xe9,0x0,0x2e, + 0x0,0x20,0x0,0x43,0x0,0x65,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x69,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x63,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4c,0x0,0x27, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x75, + 0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x67, + 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x74,0x0,0x20, + 0x0,0xea,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x72, + 0x0,0x6d,0x0,0xe9,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65, + 0x0,0x20,0x0,0xe9,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6e,0x0,0x6e, + 0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x75,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x6f,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x69, + 0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63, + 0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72, + 0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x56,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0, + 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0, + 0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0, + 0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe9,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0, + 0x68,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69, + 0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0xe9,0x0,0x20,0x0,0x28,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0xe9,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46, + 0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x44,0x0,0xe9,0x0,0x66, + 0x0,0x61,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x66,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0xe9,0x0,0x73,0x0,0x61,0x0,0x63, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0xe9,0x0,0xe9,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0xe9,0x0,0x6a,0x0,0xe0,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x20,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x90,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x54,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41,0x0, + 0x66,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x56,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x67,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0xe8,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x46,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x75, + 0x0,0x76,0x0,0x65,0x0,0x61,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69, + 0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52,0x0,0x65,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x28,0x0, + 0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20, + 0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0xe9,0x0,0x67,0x0,0x6c,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x45,0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x51, + 0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45, + 0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44, + 0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x4c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x70,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0xf4,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69, + 0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0xe9,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0, + 0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x28,0x0,0x26, + 0x0,0x4c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0, + 0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x50,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74,0x0,0x68, + 0x0,0xe9,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20, + 0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0xc9,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x63,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0, + 0x20,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x72,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0x61,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d, + 0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x46, + 0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4c,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x4c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0, + 0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x73,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x47,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79, + 0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f, + 0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61, + 0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70, + 0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0xe0, + 0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x4c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0, + 0x63,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x35,0x0,0x31,0x0, + 0x32,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20, + 0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65, + 0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0, + 0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x4d,0x0,0x61,0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,0x0,0xea,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65, + 0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x48,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x69,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0xe9,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x48,0x0, + 0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c, + 0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70, + 0x0,0x68,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35, + 0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x6d,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x6f,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x72,0x0,0xe9,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75, + 0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x45,0x0, + 0x6e,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x27,0x0,0x69,0x0,0x63,0x0,0xf4,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0xe9,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0,0xf4,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61, + 0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x69,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x63,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x27,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xe9,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d, + 0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4d,0x0,0x61,0x0,0x67, + 0x0,0x6e,0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x74, + 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4c,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x6e,0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x6e,0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x74, + 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x18,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x61,0x0,0x62, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73, + 0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e, + 0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f, + 0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67, + 0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xce,0x0,0x41,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0, + 0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0, + 0x65,0x0,0x74,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x73,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x64,0x0,0x41,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x7a,0x0, + 0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xd4,0x0,0x41,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x75, + 0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74, + 0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x63, + 0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe9,0x0,0x6d,0x0,0x6f,0x0, + 0x69,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63, + 0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65, + 0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20, + 0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe9,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74, + 0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0xe9,0x0,0x73, + 0x0,0x65,0x0,0x61,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x41,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72, + 0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x41,0x0,0x75,0x0, + 0x63,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x75,0x0, + 0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0, + 0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x76,0x0, + 0xe9,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x63,0x0,0x75,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x6b, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x6c,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0xe9,0x0,0x73,0x0,0x61,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x4c,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x75,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0xea,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0xe9,0x0,0x2e,0x0,0x20,0x0, + 0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65, + 0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64, + 0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53, + 0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70, + 0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70, + 0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x73, + 0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0xc9,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66, + 0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0, + 0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0, + 0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20, + 0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0xe8,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0xe8,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0xe8,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0xe8,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0, + 0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x66,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x78,0x0,0xe9,0x0, + 0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x63,0x0, + 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x58,0x0,0x56,0x0,0x65,0x0,0x75,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0xe9,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50, + 0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0, + 0xe9,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x53,0x0,0x75,0x0, + 0x70,0x0,0x70,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x41, + 0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74, + 0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6e,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79,0x0, + 0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0, + 0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0xea,0x0,0x74,0x0,0x72,0x0, + 0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0, + 0x79,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x75,0x0, + 0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0, + 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65, + 0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64, + 0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x46, + 0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0xe9,0x0,0x72, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0xe8,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x49, + 0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0,0x26,0x0,0x61,0x0,0x75, + 0x0,0x76,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x26,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x43,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xe9,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0, + 0x4e,0x0,0x27,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x65,0x0, + 0x7a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x74,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x72,0x0,0xe9,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0,0xe9,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x65,0x0,0x70,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x27,0x0,0x65,0x0,0x78,0x0,0xe9,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73, + 0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x67, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x7a,0x0,0x53,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x67,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0xe8,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x75,0x0, + 0x72,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0xe9,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73, + 0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67, + 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0,0xe9,0x0,0x6c,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64, + 0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70, + 0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64, + 0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x53,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe9,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0xe9,0x0,0x67,0x0, + 0x6c,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x6f,0x0,0x29,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42, + 0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4c,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42, + 0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x74, + 0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x53,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x26,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61, + 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x70,0x0,0xe9,0x0,0x63,0x0,0x69,0x0,0x66, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0xea,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57, + 0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x70,0x0, + 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x56,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x73,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x56,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34, + 0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34, + 0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x28,0x0,0x73,0x0, + 0x29,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0, + 0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0, + 0x34,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0,0x36,0x0,0x20, + 0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62,0x0, + 0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x63, + 0x0,0x6b,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72, + 0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0, + 0x70,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x63,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x75,0x0,0x78,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x72,0x0,0x61,0x0, + 0xee,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x49,0x0, + 0x44,0x0,0x45,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x61,0x0,0x69,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x60,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0xe9,0x0, + 0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x20,0x0, + 0x70,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x90,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0xe9,0x0, + 0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0xe9,0x0, + 0x63,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0xe9,0x0,0x2e,0x0,0x20,0x0,0x45,0x0, + 0x74,0x0,0x65,0x0,0x73,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x73,0x0,0xfb,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x76,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20,0x0, + 0x6c,0x0,0x27,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2, + 0x1c,0x0,0x49,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0xe9,0x0, + 0x74,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0xe8,0x0,0x73,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0xe9,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0xe0,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0xe9,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x6c,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0xea,0x0,0x6d,0x0,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x20,0x0, + 0xe9,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0xe9,0x0,0x70,0x0,0x6c,0x0, + 0x61,0x0,0x63,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x62,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0, + 0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0xe9,0x0, + 0xe9,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f, + 0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c, + 0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69, + 0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65, + 0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x84,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xee,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x6c,0x0,0xe8,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0xe9,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a, + 0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, + 0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0xe8,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x79,0x0,0x6e, + 0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f, + 0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20, + 0x0,0x6e,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x49,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x49,0x0,0x6d,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x6e,0x0,0xe9,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x69, + 0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x63,0x0, + 0x63,0x0,0xe9,0x0,0x6c,0x0,0xe9,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x6c,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61, + 0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x49,0x0,0x6d,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0xe9,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20, + 0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0xe9,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0, + 0x20,0x0,0x45,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x22,0x0,0x4c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25, + 0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27, + 0x0,0x61,0x0,0x62,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x42, + 0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0xc9,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x42,0x0,0x69,0x0,0x65,0x0, + 0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57, + 0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63, + 0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69, + 0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x6c,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x64,0x0,0x56,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61, + 0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25, + 0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30, + 0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4c, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_en-US.qm + 0x0,0x0,0x8b,0x55, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x26,0x23,0x0,0x0,0x0,0x48, + 0x0,0x0,0x42,0xf1,0x0,0x0,0x0,0x53,0x0,0x0,0x63,0x6a,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x48,0x0,0x0,0x4,0xf2,0x0,0x0,0x4b,0xd9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x4d,0x9e,0x0,0x0,0x5,0x3b,0x0,0x0,0x57,0xa6,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x57,0xdf,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xe1,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x29,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x71,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xb0,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0xf8,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x40,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x88,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xa6,0x0,0x0,0x49,0xc3,0x0,0x0,0x25,0xe4,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x47,0xe0,0x0,0x0,0x4d,0x85,0x0,0x0,0x47,0xfe,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x57,0xc1,0x0,0x0,0x5d,0x81,0x0,0x0,0x7b,0xa9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x25,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x8f,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x11,0x82,0x0,0x4,0x8c,0xaf,0x0,0x0,0x24,0x70,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x26,0x2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3a,0x39,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x3e,0xc8,0x0,0x4,0xc8,0xa4,0x0,0x0,0x3f,0xbb,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3d,0x7b,0x0,0x4,0xd0,0x25,0x0,0x0,0x40,0x12,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x42,0x6d,0x0,0x5,0x56,0x45,0x0,0x0,0x57,0x31,0x0,0x5,0x78,0x79, + 0x0,0x0,0x63,0x82,0x0,0x5,0x98,0xc5,0x0,0x0,0x64,0x66,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x67,0x8d,0x0,0x5,0xc0,0x65,0x0,0x0,0x74,0x5f,0x0,0x12,0x74,0x52, + 0x0,0x0,0x18,0x12,0x0,0x19,0x74,0x52,0x0,0x0,0x18,0x4b,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xbd,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xb,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0xeb,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0xc9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x11,0xca,0x0,0x34,0x9,0xc8,0x0,0x0,0x13,0x3e,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x76,0xe7,0x0,0x3b,0xa9,0x68,0x0,0x0,0x18,0xd2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1b,0x75,0x0,0x4c,0x99,0x62,0x0,0x0,0x3c,0x70,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x33,0x7f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x63,0x1,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6a,0x4b,0x0,0x5a,0x6c,0x44,0x0,0x0,0x68,0x2,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x73,0xff,0x0,0x5c,0x6,0x8a,0x0,0x0,0x74,0x80,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x7e,0x25,0x0,0x73,0x75,0x3e,0x0,0x0,0x32,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x56,0xf5,0x0,0x97,0x96,0x4,0x0,0x0,0x34,0xcc,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4a,0x17,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4b,0xa9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x45,0x8e,0x0,0xb8,0x5f,0x43,0x0,0x0,0x59,0x77,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x17,0xd9,0x1,0x9,0x1c,0x92,0x0,0x0,0x3e,0x38,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x28,0xae,0x1,0x39,0xa4,0xce,0x0,0x0,0x53,0xb6,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x74,0x23,0x1,0x4c,0x50,0xee,0x0,0x0,0x61,0x6,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x45,0x4f,0x1,0x61,0xac,0xc9,0x0,0x0,0x12,0x7e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x72,0xa0,0x1,0x7a,0x2c,0x99,0x0,0x0,0x38,0xcb,0x1,0x91,0xe,0x73, + 0x0,0x0,0x26,0xc5,0x1,0x9c,0xe0,0x83,0x0,0x0,0x47,0x92,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x4f,0x9,0x1,0xb0,0x47,0x5c,0x0,0x0,0x4d,0xb9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x2f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3d,0x9c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0xe3,0x1,0xdd,0x59,0x87,0x0,0x0,0xe,0xa3,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2f,0x4a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x64,0x2a,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6a,0x96,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0xcc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x6c,0x13,0x2,0x23,0x3c,0x6b,0x0,0x0,0x6b,0xb0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x6b,0x4d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x15,0xa8,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x47,0x17,0x2,0x78,0x48,0x1a,0x0,0x0,0x4e,0xc7,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x7c,0x9,0x2,0x90,0x8d,0x12,0x0,0x0,0x3e,0xe9,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x59,0xfe,0x2,0xad,0x4a,0x22,0x0,0x0,0x61,0x69,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xa9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xb,0xc4,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xc,0xa2,0x2,0xbb,0x66,0x33,0x0,0x0,0x10,0xfe,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x11,0xa3,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x59,0xb6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x7e,0x49,0x3,0x5,0x38,0xb2,0x0,0x0,0x3c,0x94,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x5d,0x3d,0x3,0x41,0x45,0x12,0x0,0x0,0x13,0x62,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x14,0x34,0x3,0x4b,0x26,0xf2,0x0,0x0,0x14,0x5b,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x4d,0xe3,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xd,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x17,0x34,0x3,0x6a,0x66,0x2e,0x0,0x0,0x51,0xfd,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x4f,0xf6,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0x74,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2e,0x15,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x63,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x18,0x84,0x3,0xa4,0x35,0xa5,0x0,0x0,0x3e,0xa8,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x3e,0x7a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x18,0xab,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x54,0x79,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x6a,0xe1,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x69,0x4c,0x3,0xe4,0x25,0x5a,0x0,0x0,0x69,0x10,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x68,0xd4,0x3,0xe4,0x25,0x7a,0x0,0x0,0x68,0x98,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xc4,0x4,0x3,0xf6,0x9a,0x0,0x0,0x51,0x94,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x15,0xff,0x4,0x15,0x75,0x22,0x0,0x0,0x13,0x89,0x4,0x17,0x65,0x22, + 0x0,0x0,0x13,0xb3,0x4,0x1c,0x68,0x69,0x0,0x0,0x15,0x4e,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xa4,0x4,0x31,0xff,0xe9,0x0,0x0,0x24,0x91,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x27,0x7f,0x4,0x51,0x79,0xb1,0x0,0x0,0x6d,0x3,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x75,0x76,0x4,0x5b,0x53,0x1f,0x0,0x0,0x23,0xb0,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x68,0x65,0x4,0x7d,0xb,0xa4,0x0,0x0,0x39,0x76,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x39,0x9d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x31,0xd5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2d,0x46,0x4,0xb8,0x1,0x2e,0x0,0x0,0x36,0x4,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xf,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xa6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x16,0xb3,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x55,0xc6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x30,0x88,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x16,0x59,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1c,0x17,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x55,0xf0,0x4,0xeb,0x2f,0xa,0x0,0x0,0x4c,0xd8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x46,0xc6,0x5,0x18,0x5,0x95,0x0,0x0,0x77,0x53,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x14,0xd3,0x5,0x30,0xd3,0xe,0x0,0x0,0x38,0x14,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x55,0x9f,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x7c,0xde,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0x5a,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x39,0xf1,0x5,0x88,0x2e,0xd9,0x0,0x0,0x67,0xae,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x50,0x20,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x73,0xae,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x6e,0x5,0x5,0xa5,0x3a,0x79,0x0,0x0,0x24,0xd9,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6a,0x6f,0x5,0xb2,0x16,0x79,0x0,0x0,0x61,0xcc,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x43,0xde,0x5,0xb3,0x5f,0x79,0x0,0x0,0x45,0xa,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3c,0x13,0x5,0xb8,0x5d,0xad,0x0,0x0,0x14,0x82,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x12,0xed,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x13,0xdd,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x47,0x56,0x5,0xc1,0x4d,0x83,0x0,0x0,0x35,0x44,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x7a,0x35,0x5,0xd0,0x4f,0x11,0x0,0x0,0x7a,0xd7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0x58,0x5,0xdf,0xba,0xba,0x0,0x0,0x7b,0x1f,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x60,0x76,0x6,0x7,0xd3,0xda,0x0,0x0,0x49,0x21,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x34,0xf9,0x6,0x19,0x20,0x43,0x0,0x0,0x64,0x87,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x37,0xde,0x6,0x38,0x9f,0x35,0x0,0x0,0x35,0xb3,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1d,0x70,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x6f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x30,0xb8,0x6,0x6c,0xb8,0x3,0x0,0x0,0x78,0x88,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x45,0xd3,0x6,0x74,0xe,0x6a,0x0,0x0,0x5a,0xc1,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x46,0x3c,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1b,0xe1,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3a,0xdb,0x6,0x81,0xb7,0x1f,0x0,0x0,0x36,0xf1,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x69,0x88,0x6,0x96,0xa4,0x13,0x0,0x0,0x41,0x44,0x6,0x97,0x71,0x79, + 0x0,0x0,0x63,0xe8,0x6,0xc3,0xce,0xa3,0x0,0x0,0x6c,0x76,0x6,0xce,0x41,0x63, + 0x0,0x0,0x41,0xda,0x6,0xed,0xca,0xce,0x0,0x0,0x43,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x80,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x4c,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x46,0x6,0x7,0x0,0x57,0x53,0x0,0x0,0x26,0x3b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x4f,0xc6,0x7,0x6,0x93,0xe3,0x0,0x0,0x7d,0xbc,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1d,0x3d,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1c,0xb6,0x7,0x2a,0xb5,0xca,0x0,0x0,0x67,0x5a,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x55,0x0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x48,0xaf,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x5c,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x17,0xa6,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x30,0x31,0x7,0x58,0x61,0xe5,0x0,0x0,0x46,0x6f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0x25,0x7,0x70,0xb3,0xaa,0x0,0x0,0x40,0x33,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2d,0x16,0x7,0x9e,0x50,0x1e,0x0,0x0,0x63,0x25,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x51,0xd0,0x7,0xa3,0x63,0x9e,0x0,0x0,0x62,0x41,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x58,0x45,0x7,0xa4,0x32,0x89,0x0,0x0,0x1b,0x99,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x78,0x43,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x46,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x76,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x25,0x15,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x5e,0x7e,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x5e,0x33,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3a,0x5a,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x63,0xa3,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x48,0x5e,0x8,0x0,0x3f,0x29,0x0,0x0,0x5d,0xb5,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x54,0xa3,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0x3c,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x4d,0x56,0x8,0x60,0xe7,0xcd,0x0,0x0,0x73,0x33,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5a,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x13,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x74,0xa4,0x8,0x9b,0xc,0x24,0x0,0x0,0x65,0xe9,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4a,0xb9,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4b,0x6d,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4a,0xf5,0x8,0xa4,0xb,0xae,0x0,0x0,0x4b,0x31,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x39,0x25,0x8,0xa9,0xcf,0x35,0x0,0x0,0x2e,0xa2,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3c,0xfa,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xcf,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3b,0x7d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x41,0x9b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x4d,0x8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x31,0x5d,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x31,0x99,0x9,0x49,0xfa,0x6a,0x0,0x0,0x30,0xe5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x31,0x21,0x9,0x4e,0xde,0x64,0x0,0x0,0x75,0x1,0x9,0x50,0x63,0x15, + 0x0,0x0,0x56,0x71,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0xff,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x17,0x5b,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x47,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x5f,0x6b,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xce,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2d,0x6d,0x9,0x88,0x63,0x1a,0x0,0x0,0x2d,0x97,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2d,0xc1,0x9,0x88,0x63,0x3a,0x0,0x0,0x2d,0xeb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x16,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x2d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x5e,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x56,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x5c,0x29,0x9,0xc2,0x33,0xa9,0x0,0x0,0x14,0xfd,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x55,0x54,0x9,0xd5,0x43,0xd3,0x0,0x0,0x32,0xcb,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0x1d,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0x53,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3b,0xce,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x37,0xa,0x41,0x77,0x3, + 0x0,0x0,0x40,0xf6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1b,0x39,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x42,0x10,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3b,0x41,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4a,0x65,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x6,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x77,0xa4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x65,0x3e,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x6c,0xc4,0xa,0x98,0x1f,0x89,0x0,0x0,0x33,0xfd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x33,0xb2,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x49,0x8d,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x33,0x4f,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x53,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x34,0x48,0xa,0xda,0x50,0x7e,0x0,0x0,0x76,0x15,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x0,0xa,0xea,0x46,0xf4,0x0,0x0,0x56,0xa1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x34,0x72,0xb,0xa,0x72,0xc9,0x0,0x0,0x36,0xc7,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xc8,0xb,0x1e,0xee,0xfe,0x0,0x0,0x53,0x23,0xb,0x29,0x70,0x65, + 0x0,0x0,0x42,0x8e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xb,0x9a,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0x78,0xb,0x4e,0x19,0x54,0x0,0x0,0x4e,0x31,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0x6e,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0xef,0xb,0x95,0xed,0xa, + 0x0,0x0,0x4f,0x93,0xb,0x9d,0xe,0xa2,0x0,0x0,0x30,0x1,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x65,0x11,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x68,0x26,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x23,0x2f,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x44,0x23,0xb,0xe2,0xf9,0x49,0x0,0x0,0x48,0x1c,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x7d,0x86,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x5d,0x7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x6d,0x63,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0xed,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xf,0x9c,0xc,0x33,0xeb,0xe2,0x0,0x0,0x6d,0xab,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x40,0x66,0xc,0x42,0x70,0xde,0x0,0x0,0x27,0x1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x5e,0xc9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x49,0xc9,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x6f,0xbb,0xc,0x77,0x67,0x19,0x0,0x0,0x40,0xa2,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x37,0x9c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x30,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x2e,0xcf,0xc,0x90,0x26,0xb5,0x0,0x0,0x76,0x99,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5a,0x58,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x26,0x86,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x67,0x2d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xfc,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x57,0xfa,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x78,0xb8,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x5d,0xfd,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x18,0xf6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1c,0x6e,0xd,0x11,0x45,0x1a,0x0,0x0,0x25,0xae,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x7a,0x5c,0xd,0x4a,0x90,0xb2,0x0,0x0,0x62,0x11,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x7b,0x70,0xd,0x60,0xef,0x6a,0x0,0x0,0x49,0x51,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x33,0x7,0xd,0x77,0xa4,0xc0,0x0,0x0,0x3f,0x67,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x36,0x94,0xd,0x88,0x48,0x23,0x0,0x0,0x2e,0x5d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x39,0xc4,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xdc,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x7c,0x45,0xd,0xf9,0x90,0xe9,0x0,0x0,0x57,0x52,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x7b,0x46,0xe,0x20,0x13,0x12,0x0,0x0,0x3f,0xdc,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x10,0xb9,0xe,0x48,0xfa,0xca,0x0,0x0,0x27,0xca,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x28,0x3c,0xe,0x48,0xfd,0xca,0x0,0x0,0x28,0x3,0xe,0x48,0xff,0xca, + 0x0,0x0,0x28,0x75,0xe,0x62,0x79,0x4,0x0,0x0,0x37,0x69,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1d,0xd,0xe,0x7b,0xa1,0x23,0x0,0x0,0x4f,0x4e,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2f,0xd4,0xe,0x98,0x18,0x54,0x0,0x0,0x25,0x63,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x60,0xa,0xe,0xbe,0x61,0x81,0x0,0x0,0x66,0x3d,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x66,0x79,0xe,0xbe,0x61,0x83,0x0,0x0,0x66,0xb5,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x66,0xf1,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x46,0xed,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x12,0xc3,0xe,0xe2,0x34,0x60,0x0,0x0,0x7d,0x32,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x7d,0x5c,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0x8d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xd,0x98,0xe,0xf7,0xac,0xae,0x0,0x0,0xf,0xe4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x7d,0xef,0xf,0x15,0xf4,0x85,0x0,0x0,0x48,0xdc,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x6e,0xd1,0xf,0x17,0x9c,0x64,0x0,0x0,0x77,0xfb,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x59,0x38,0xf,0x29,0x4d,0x2a,0x0,0x0,0x43,0x9,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x3d,0xf9,0xf,0x30,0x6b,0x3,0x0,0x0,0x2f,0x11,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x69,0xf7,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0x2d,0xf,0x70,0xaa,0x1a,0x0,0x0,0x7a,0x9e,0xf,0x74,0xd,0xca, + 0x0,0x0,0x61,0x9c,0xf,0x85,0x7b,0xea,0x0,0x0,0x5a,0x88,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x11,0xee,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0x2f,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x60,0xa6,0xf,0xd3,0x41,0x72,0x0,0x0,0x38,0x80,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4b,0xf4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x4c,0x66,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4c,0x2d,0xf,0xd9,0x8f,0xca,0x0,0x0,0x4c,0x9f,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3a,0x9f,0xf,0xe2,0xe9,0x49,0x0,0x0,0x7b,0xc7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5b,0x21,0xf,0xf5,0xeb,0x52,0x0,0x0,0x5b,0x63,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x5b,0xa5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x5b,0xe7,0x69,0x0,0x0,0x7e, + 0x73,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x40,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x28,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0, + 0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35, + 0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x41,0x0,0x62, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x62,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0, + 0x2d,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x73,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x44,0x0,0x65,0x0, + 0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x46,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x48,0x0,0x65,0x0,0x6c,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26, + 0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0, + 0x4b,0x0,0x65,0x0,0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62, + 0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x47,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x61,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f, + 0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x67,0x0,0x69,0x0, + 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x67,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x41, + 0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52, + 0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66, + 0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x53,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x53,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x78,0x0, + 0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4b,0x0,0x65,0x0,0x65,0x0, + 0x70,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x20,0x0,0x77,0x0,0x69,0x0, + 0x74,0x0,0x68,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x54,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x55,0x0, + 0x70,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x57,0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x77,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0, + 0x70,0x0,0x74,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x62, + 0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42, + 0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49, + 0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22, + 0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30, + 0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20, + 0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x49,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x58,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c,0x0,0x6f, + 0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x75,0x0, + 0x74,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x62,0x0,0x6f,0x0,0x75,0x0, + 0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0, + 0x64,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x64,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x65, + 0x0,0x77,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x64, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xc6,0x0,0x41,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xa, + 0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x73, + 0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61, + 0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47, + 0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64, + 0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79, + 0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x65, + 0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45, + 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f, + 0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, + 0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72, + 0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c, + 0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37, + 0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b, + 0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72, + 0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68, + 0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c, + 0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65, + 0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20, + 0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, + 0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75, + 0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e, + 0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e, + 0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29, + 0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65, + 0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75, + 0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74, + 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20, + 0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20, + 0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65, + 0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20, + 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65, + 0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63, + 0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f, + 0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43, + 0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e, + 0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79, + 0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0, + 0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0, + 0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x61,0x0, + 0x73,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x65,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x20, + 0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x2,0xe2,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79, + 0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x20, + 0x0,0x48,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79, + 0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x45,0x0,0x6e, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69, + 0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20, + 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69, + 0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20, + 0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63, + 0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74, + 0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20, + 0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79, + 0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65, + 0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62, + 0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61, + 0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74, + 0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63, + 0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0, + 0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e, + 0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e, + 0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x78,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x50,0x0,0x43,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44, + 0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20, + 0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x6f,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x6f,0x0,0x6e, + 0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x77,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x67,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0, + 0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x26, + 0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x45,0x0,0x26,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x78, + 0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72, + 0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x66,0x0,0x75,0x0, + 0x6c,0x0,0x6c,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x46,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74,0x0,0x68,0x0,0x20, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x46,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0, + 0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0, + 0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75, + 0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x74, + 0x0,0x68,0x0,0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x64,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x46,0x0,0x6c,0x0,0x6f, + 0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65, + 0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e, + 0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44, + 0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77, + 0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,0x0,0x65, + 0x0,0x61,0x0,0x64,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x48,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0, + 0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c, + 0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20, + 0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34, + 0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x4d,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0, + 0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x49,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0, + 0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x0, + 0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c, + 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0, + 0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xea,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77, + 0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xb6,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0,0x61, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x79,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x65, + 0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f, + 0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x65,0x0, + 0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x79,0x0, + 0x70,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0,0x66,0x0,0x66,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70, + 0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0, + 0x64,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5c,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x38, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x51,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x79, + 0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61, + 0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x26, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x26,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x52,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x65,0x0, + 0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x77,0x0,0x6c,0x0,0x79,0x0,0x2d,0x0,0x63,0x0, + 0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x64,0x0, + 0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70, + 0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72, + 0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x65,0x0, + 0x73,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0, + 0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63, + 0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x61, + 0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0, + 0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x69, + 0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72, + 0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63, + 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69, + 0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x53,0x0,0x6c,0x0,0x6f,0x0,0x77,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x53,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x6f, + 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x33,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53, + 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20,0x0,0x4d, + 0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64, + 0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0,0x64,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x62,0x0, + 0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0, + 0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x36,0x0,0x2d,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62, + 0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x38,0x0,0x2d,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72, + 0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x75,0x0,0x72, + 0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x54,0x0,0x61,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x26,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x74,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65, + 0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x67,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x79,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72, + 0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x54,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54, + 0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65, + 0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x54,0x0,0x68,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0, + 0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1, + 0xe0,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x77,0x0, + 0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x66,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x20,0x0,0x77,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0, + 0x74,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x73,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x64,0x0,0x20,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x65,0x0, + 0x64,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0, + 0x6f,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x78,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20, + 0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72, + 0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x55,0x0,0x6e, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x55,0x0,0x6e,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x79,0x0, + 0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x63,0x0, + 0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74, + 0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x55,0x0, + 0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73, + 0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x6e,0x0,0x61,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x0, + 0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0,0x6e,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0, + 0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x26,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74, + 0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf0,0x0,0x56, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79, + 0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61, + 0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f, + 0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e, + 0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0, + 0x65,0x0,0x6c,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x74,0x0,0x68,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x66,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x59,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0, + 0x61,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pt-PT.qm + 0x0,0x0,0x96,0x3b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xeb,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0x1d,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0xb6,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0xae,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0xbd,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0xae,0x0,0x0,0x5,0x3b,0x0,0x0,0x5f,0x14,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5f,0x5b,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x47,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x8f,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xd7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x5,0x16,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x5e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xa6,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xee,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0xc,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x96,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x7a,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x98,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5f,0x2f,0x0,0x0,0x5d,0x81,0x0,0x0,0x86,0x7d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x71,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xf5,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xe6,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xf0,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xc2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x61,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x66,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x6d,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xf5,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xc6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x75,0x0,0x5,0x56,0x45,0x0,0x0,0x5e,0x9f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0xce,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0xb2,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x70,0x2f,0x0,0x5,0xc0,0x65,0x0,0x0,0x7e,0x25,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xc2,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xfb,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x23,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xb3,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xa7,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x95,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x2e,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xc8,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x81,0x49,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x82,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x53,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xc4,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x4f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6b,0x45,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x73,0x27,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0xac,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7d,0xbf,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7e,0x46,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x89,0xb,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xdc,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5e,0x41,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x9c,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xef,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x8d,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xea,0x0,0xb8,0x5f,0x43,0x0,0x0,0x61,0x21,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x89,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xc6,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xaa,0x1,0x39,0xa4,0xce,0x0,0x0,0x5a,0xc4,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0xe3,0x1,0x4c,0x50,0xee,0x0,0x0,0x69,0x3e,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0xa5,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0xf0,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7c,0x42,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xc9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x91,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0x2c,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0x49,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0xc9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xd9,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x16,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xa1,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xaf,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x94,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6c,0x76,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x73,0x86,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x58,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x75,0x1d,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0xae,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x74,0x3f,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x56,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0xb3,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0xff,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x86,0xdd,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x87,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x61,0xb0,0x2,0xad,0x4a,0x22,0x0,0x0,0x69,0xa1,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x2b,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x80,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x6e,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x3e,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x7,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x61,0x64,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x89,0x2f,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xe6,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x65,0x3f,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0xec,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xd0,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0xf7,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0xf3,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xbb,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xe2,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x9b,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x56,0x8a,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x2e,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x59,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xc9,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x34,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x46,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x18,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x5b,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5b,0xa3,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0xcd,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x72,0x6,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0xc6,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x71,0x86,0x3,0xe4,0x25,0x7a,0x0,0x0,0x71,0x46,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x2a,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0x2c,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xad,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x13,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x3d,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xfc,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x60,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x1d,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x53,0x4,0x51,0x79,0xb1,0x0,0x0,0x76,0x3b,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7f,0x6c,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x1e,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x71,0xf,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x88,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xb1,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x3b,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x7e,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xea,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xcb,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xf2,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x61,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0xf6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xe2,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x7,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xfd,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5d,0x1a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0xe4,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x5e,0x5,0x18,0x5,0x95,0x0,0x0,0x81,0xcf,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x81,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0xa,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0xd1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x87,0xbe,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x70,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x11,0x5,0x88,0x2e,0xd9,0x0,0x0,0x70,0x52,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0xb4,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7d,0x6c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x77,0x5f,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x65,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x73,0x55,0x5,0xb2,0x16,0x79,0x0,0x0,0x6a,0x4,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0x1c,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x5e,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x5b,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x1e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x65,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x67,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xf0,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x20,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x84,0xf3,0x5,0xd0,0x4f,0x11,0x0,0x0,0x85,0xa1,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x5a,0x5,0xdf,0xba,0xba,0x0,0x0,0x85,0xef,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x68,0xa8,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0xcb,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xcd,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0xd9,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xd0,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x89,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xa6,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xd9,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x14,0x6,0x6c,0xb8,0x3,0x0,0x0,0x83,0x36,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x3d,0x6,0x74,0xe,0x6a,0x0,0x0,0x62,0x8f,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0xb6,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xbf,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0x9,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xed,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x72,0x46,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x12,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6c,0x34,0x6,0xc3,0xce,0xa3,0x0,0x0,0x75,0x8c,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xc4,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x76,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xfc,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xcc,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x78,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x3,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x56,0x3e,0x7,0x6,0x93,0xe3,0x0,0x0,0x88,0xa0,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x67,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x5d,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xc4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0xf6,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5c,0x2c,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x4f,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x64,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x56,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x81,0x7,0x58,0x61,0xe5,0x0,0x0,0x4c,0x5,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x71,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0xef,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x48,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6b,0x71,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x58,0x6e,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6a,0x87,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5f,0xcf,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x77,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x82,0xef,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x92,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xc2,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xa1,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x66,0x9a,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x66,0x5b,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x82,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0xef,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0xf8,0x8,0x0,0x3f,0x29,0x0,0x0,0x65,0xd9,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5b,0xcf,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x2,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x62,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0xf1,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x62,0xbf,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x91,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7e,0x6a,0x8,0x9b,0xc,0x24,0x0,0x0,0x6e,0x6b,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x9d,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0x51,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xd9,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0x15,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x33,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xea,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x60,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x51,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xb1,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x77,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0x10,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xbf,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xfd,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x43,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x81,0x9,0x4e,0xde,0x64,0x0,0x0,0x7e,0xe3,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5d,0x97,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x65,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x9,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0xad,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x67,0x89,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x34,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xa9,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xd5,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x1,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x2d,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x7c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xb9,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xc4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5d,0x5b,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x64,0x1,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xab,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5c,0x7e,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x7d,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x3f,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x7d,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x2,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xf7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xc0,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0xf,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0x4,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x75,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x49,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x74,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x82,0x40,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0xa0,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0xee,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xcd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x82,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0x51,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0x11,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xd1,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0x18,0xa,0xda,0x50,0x7e,0x0,0x0,0x80,0x39,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0xc,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0xcb,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x40,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0xb9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x42,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5a,0x1f,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0x98,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x56,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x42,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0x41,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x62,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xed,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0xed,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x49,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xe5,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6d,0x71,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0xcc,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x95,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x63,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0xb6,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x88,0x66,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x65,0x7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x76,0xa5,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xc5,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0xb2,0xc,0x33,0xeb,0xe2,0x0,0x0,0x77,0x1,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x18,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xcf,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0xd9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0xa1,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x79,0x21,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x60,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x8c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x9a,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x15,0xc,0x90,0x26,0xb5,0x0,0x0,0x80,0xe3,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x62,0x16,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x4e,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0xc5,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x7a,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5f,0x80,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x83,0x6e,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x66,0x23,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xa6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x68,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x54,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x85,0x1a,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6a,0x4f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x86,0x44,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0xb,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0xb9,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x9,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x8a,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x9f,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xe4,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x5c,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x87,0x23,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5e,0xc4,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x86,0x1a,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x92,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xed,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x9e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x24,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xe1,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x67,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x5d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x25,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x90,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x20,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xfb,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x68,0x30,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0xbd,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0xff,0xe,0xbe,0x61,0x83,0x0,0x0,0x6f,0x41,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6f,0x83,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x89,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x3b,0xe,0xe2,0x34,0x60,0x0,0x0,0x88,0x12,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x88,0x3c,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x19,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x8c,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x2,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x88,0xd5,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x7c,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x78,0x29,0xf,0x17,0x9c,0x64,0x0,0x0,0x82,0xa1,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0xe2,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x35,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x85,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x5d,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0xcb,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x91,0xf,0x70,0xaa,0x1a,0x0,0x0,0x85,0x5c,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0xd4,0xf,0x85,0x7b,0xea,0x0,0x0,0x62,0x4c,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x50,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x9,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0xda,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x78,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xd8,0xf,0xd9,0x8c,0xca,0x0,0x0,0x52,0x5e,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0x1b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0xa1,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xc7,0xf,0xe2,0xe9,0x49,0x0,0x0,0x86,0x9b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0xf1,0xf,0xf5,0xeb,0x52,0x0,0x0,0x63,0x35,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x63,0x79,0xf,0xf5,0xeb,0x54,0x0,0x0,0x63,0xbd,0x69,0x0,0x0,0x89, + 0x59,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x8c,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74, + 0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f, + 0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41, + 0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e, + 0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65, + 0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20, + 0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x43,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48, + 0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e, + 0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x71,0x0,0x2f,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x41,0x0,0xe7, + 0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0xe2,0x0,0x6d,0x0,0x62,0x0,0x26,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0, + 0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x63,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f, + 0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76, + 0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x64,0x0, + 0x72,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72, + 0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x45,0x0,0x26,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x69,0x0,0x6f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6a,0x0, + 0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4f,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x69, + 0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0, + 0x26,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0, + 0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x4d,0x0,0x75,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76, + 0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0, + 0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61, + 0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x62,0x0,0x6f,0x0, + 0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0xed,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65, + 0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x26,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0xe9, + 0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53, + 0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c, + 0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70, + 0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x73,0x0, + 0x20,0x0,0x26,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71, + 0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0,0x74,0x0,0x75,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0xed,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x46,0x0,0x26,0x0,0x61,0x0,0x63,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x28,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x20,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0, + 0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31, + 0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0, + 0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x32,0x0,0x25, + 0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31, + 0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x0,0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x7e,0x0,0x4f,0x0,0x20, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x67, + 0x0,0x75,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1, + 0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x3c,0x0,0x2f, + 0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x0,0x65,0x0,0x2d,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61, + 0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa, + 0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, + 0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e, + 0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52, + 0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61, + 0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22, + 0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41, + 0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41, + 0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63, + 0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0, + 0x6f,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xf6,0x0,0x55,0x0,0x6d, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x6f, + 0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28, + 0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77, + 0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e, + 0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d, + 0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65, + 0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67, + 0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b, + 0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61, + 0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74, + 0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x55,0x0,0x73,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0xe7,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62, + 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69, + 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x54,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78, + 0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x84,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0xed,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0xe1,0x0,0x73,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x69,0x0,0x6f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67, + 0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x42,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x42,0x0,0x61,0x0,0x72,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x2e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69, + 0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44, + 0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4c,0x0,0x4f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0, + 0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x18, + 0x0,0x41,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x74, + 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf3, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c, + 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61, + 0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0, + 0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4d,0x0,0x75,0x0,0x64, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72, + 0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x70,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0, + 0x69,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64, + 0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x64,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28, + 0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0xe1,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x6d,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62, + 0x0,0x41,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32, + 0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x41,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0, + 0x20,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c, + 0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77, + 0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52, + 0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0xe2, + 0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6e,0x0,0xe2,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x65,0x0,0x66,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x45, + 0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x43,0x0,0x44,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x53,0x0,0x61, + 0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0, + 0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x6d, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6f,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x41,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0, + 0xe3,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20, + 0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x72, + 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x61,0x0, + 0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x46, + 0x0,0x6f,0x0,0x72,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe1, + 0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34, + 0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x46,0x0, + 0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x72,0x0, + 0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x46,0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74, + 0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x52,0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d, + 0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69, + 0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0, + 0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4d,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72, + 0x0,0xe3,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0,0x61,0x0, + 0x6e,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x54, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x41,0x0,0x73, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x49,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x74,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x35,0x0,0x31,0x0, + 0x32,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xed, + 0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0xe7,0x0,0x61, + 0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65, + 0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26, + 0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x47,0x0,0x72,0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35, + 0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45, + 0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0, + 0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0xed,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f, + 0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0, + 0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x78,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x2e,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x2e,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0xed,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d, + 0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xee,0x0,0x41,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0xe0,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed, + 0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73, + 0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1, + 0x14,0x0,0x43,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x62,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x62,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f, + 0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x66,0x0,0x43,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0, + 0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x43,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2d, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74, + 0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68, + 0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0, + 0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0, + 0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d, + 0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e, + 0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x45,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73, + 0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x52,0x0,0x65, + 0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4c,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x6e,0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x4e,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x75,0x0, + 0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x6b, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26, + 0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0xfa,0x0,0x63,0x0,0x6c, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xb4,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0, + 0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0, + 0x2e,0x0,0x20,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0xe7,0x0,0xf5,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x75,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x4f,0x0,0x73,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2f,0x0, + 0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0, + 0x63,0x0,0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x64,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0, + 0x61,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0xe1,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e, + 0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6a,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75, + 0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d, + 0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65, + 0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64, + 0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0xe1, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4c,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x4c,0x0, + 0x65,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f, + 0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72, + 0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0, + 0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x53,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x26,0x0,0x47,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x47,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x45,0x0,0x73, + 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65, + 0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0, + 0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74, + 0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, + 0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e, + 0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xed,0x0,0x63,0x0,0x69,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72, + 0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x54,0x0, + 0x61,0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x63,0x0, + 0x69,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x78,0x0,0x41,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x9c,0x0, + 0x4f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0, + 0x20,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0xe1,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x2,0x1c,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x67,0x0,0x6e,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x69,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0xe7,0x0, + 0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0, + 0x6d,0x0,0x62,0x0,0xe9,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x51,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0, + 0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0xed,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0, + 0x70,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69, + 0x0,0x70,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c, + 0x0,0x4f,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73, + 0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x4f,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c, + 0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20, + 0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0, + 0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x61,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0, + 0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20, + 0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0, + 0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xf8,0x0,0x41,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x20, + 0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xed,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x47,0x0,0x72,0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0x65,0x0,0x6d,0x0,0x2d,0x0, + 0x76,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x47,0x0,0x72,0x0,0xe1, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0, + 0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0, + 0x69,0x0,0x64,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x45,0x0,0x73,0x0,0x74,0x0, + 0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_hr-HR.qm + 0x0,0x0,0x93,0x77, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xd5,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0x25,0x0,0x0,0x0,0x53,0x0,0x0,0x69,0xde,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x6c,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0xdb,0x0,0x0,0x5,0x12, + 0x0,0x0,0x52,0xb2,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0xec,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5d,0x3b,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x5,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x4d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x95,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xd4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x1c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x64,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xac,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xca,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x8a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0x6c,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x8a,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5d,0xf,0x0,0x0,0x5d,0x81,0x0,0x0,0x83,0xe5,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x43,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xb3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xa4,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xf8,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xa8,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0x51,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0x58,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0x8f,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x40,0xf7,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0xec,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0x81,0x0,0x5,0x56,0x45,0x0,0x0,0x5c,0x7f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x69,0xf6,0x0,0x5,0x98,0xc5,0x0,0x0,0x6a,0xd8,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6e,0x4f,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x25,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xd2,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0xb,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xe1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x75,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x93,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x89,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xec,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xb6,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7e,0xdd,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x92,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x87,0x0,0x4c,0x99,0x62,0x0,0x0,0x3f,0xcc,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x8f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x69,0x7f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x71,0x49,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6e,0xc6,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7b,0xc1,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7c,0x44,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x86,0x47,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5c,0x27,0x0,0x97,0x96,0x4,0x0,0x0,0x37,0xda,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0xd9,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x50,0x9f,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0xe2,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5f,0x7,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x99,0x1,0x9,0x1c,0x92,0x0,0x0,0x41,0xb4,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x64,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0xde,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7b,0xe5,0x1,0x4c,0x50,0xee,0x0,0x0,0x67,0x32,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0xa1,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0xb0,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7a,0x48,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3b,0xd3,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x77,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0x20,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0x37,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0xcd,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x9b,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x1c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x6f,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xa7,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x2a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6a,0x9c,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x71,0x98,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x26,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x73,0x45,0x2,0x23,0x3c,0x6b,0x0,0x0,0x72,0xd0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x72,0x5b,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x54,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0x91,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0xed,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x84,0x45,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0x87,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5f,0x9a,0x2,0xad,0x4a,0x22,0x0,0x0,0x67,0x9b,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xe5,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x6a,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x62,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x12,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0xc5,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5f,0x44,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x86,0x6b,0x3,0x5,0x38,0xb2,0x0,0x0,0x3f,0xf2,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x63,0x21,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0xda,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xc6,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0xed,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0xf7,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xb9,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xe0,0x3,0x6a,0x66,0x2e,0x0,0x0,0x57,0x27,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0x2a,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xec,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x30,0xed,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x87,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x44,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0x38,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0xa,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x6b,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0xb7,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x71,0xe3,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x70,0x3e,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6f,0xfa,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6f,0xb6,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6f,0x72,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xe8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0xc2,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xab,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x1,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x2b,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xfa,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x1c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x19,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x35,0x4,0x51,0x79,0xb1,0x0,0x0,0x74,0x4f,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7d,0x40,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x32,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6f,0x31,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3c,0x8a,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3c,0xb3,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x34,0xb3,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x6,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xe,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xc9,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xc4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x5f,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5b,0xa,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0x72,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x5,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x33,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5b,0x30,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0xda,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0x40,0x5,0x18,0x5,0x95,0x0,0x0,0x7f,0x61,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x7f,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0x1c,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0xe7,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x85,0x2,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x5a,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xb,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6e,0x72,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0x52,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7b,0x6c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x75,0x79,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x61,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x71,0x6f,0x5,0xb2,0x16,0x79,0x0,0x0,0x68,0x18,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0x32,0x5,0xb3,0x5f,0x79,0x0,0x0,0x49,0x5c,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0x63,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x14,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x4b,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x55,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0xd6,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0x54,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x82,0x69,0x5,0xd0,0x4f,0x11,0x0,0x0,0x83,0xf,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x3e,0x5,0xdf,0xba,0xba,0x0,0x0,0x83,0x5b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x66,0xa2,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0xd9,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xb,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0xff,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3a,0xe4,0x6,0x38,0x9f,0x35,0x0,0x0,0x38,0xb5,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xac,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xa1,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xa0,0x6,0x6c,0xb8,0x3,0x0,0x0,0x80,0xb4,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0x33,0x6,0x74,0xe,0x6a,0x0,0x0,0x60,0x5b,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0xa8,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xf3,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3d,0xf1,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xd,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x70,0x82,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x42,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6a,0x5c,0x6,0xc3,0xce,0xa3,0x0,0x0,0x73,0xba,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0xdc,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0x8e,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xc4,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x94,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4a,0x6c,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xed,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0xfc,0x7,0x6,0x93,0xe3,0x0,0x0,0x85,0xe0,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x7b,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x25,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xea,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6e,0x14,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5a,0x42,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0x41,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x62,0x8f,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x66,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x17,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0xeb,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x39,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x15,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xcc,0x7,0x9e,0x50,0x1e,0x0,0x0,0x69,0xab,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0xfc,0x7,0xa3,0x63,0x9e,0x0,0x0,0x68,0xaf,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0xb3,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xab,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x80,0x6f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x64,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x94,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x9d,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x64,0x68,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x64,0x1b,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3d,0x72,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6a,0x17,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0xea,0x8,0x0,0x3f,0x29,0x0,0x0,0x63,0xa3,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0xe5,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xf8,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0x56,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7a,0xf1,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x60,0x8d,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x59,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0x66,0x8,0x9b,0xc,0x24,0x0,0x0,0x6c,0x87,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0x7f,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0x57,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0xc7,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0xf,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0x39,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x6c,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0x6a,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x17,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3e,0xb3,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0x99,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x4,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x3f,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x79,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0xcb,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x5,0x9,0x4e,0xde,0x64,0x0,0x0,0x7c,0xbd,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5b,0xa9,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x23,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x7,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x6b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x65,0x71,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xf2,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x2d,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x5d,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0x8d,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xbd,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x3a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x71,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x82,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5b,0x73,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0xdb,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xa9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0x9c,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xc5,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x19,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x4d,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x12,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xc7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0xf2,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x3b,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0x10,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3e,0x73,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0x29,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x34,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7f,0xc4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6b,0xce,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0xc,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xc0,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0x4b,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x55,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x9b,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x5a,0xa,0xda,0x50,0x7e,0x0,0x0,0x7d,0xed,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xfc,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0xdb,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x86,0xb,0xa,0x72,0xc9,0x0,0x0,0x39,0xe7,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0xc,0xb,0x1e,0xee,0xfe,0x0,0x0,0x58,0x39,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0xb0,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x3c,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x36,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0x45,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x46,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xd5,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0xc9,0xb,0x9d,0xe,0xa2,0x0,0x0,0x32,0xdf,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x3,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6b,0xa1,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6e,0xe8,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xa3,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0x77,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0xa8,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x85,0xaa,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x62,0xc3,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x74,0xbd,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xb3,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x9a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0x1d,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x4e,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xb1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x64,0xb5,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0x89,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0x55,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0x94,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3a,0xac,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x5e,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xa1,0xc,0x90,0x26,0xb5,0x0,0x0,0x7e,0x79,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0xf6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x38,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6d,0xeb,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x44,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5d,0x64,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x80,0xe4,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xeb,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xb6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x96,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x4c,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x82,0x90,0xd,0x4a,0x90,0xb2,0x0,0x0,0x68,0x7f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x83,0xae,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0xf,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x1,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x25,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x39,0xaa,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x2f,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3c,0xdc,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x14,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x84,0x7d,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0x9e,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x83,0x84,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0xb0,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xbf,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x80,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xf2,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xb9,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x2b,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0x7b,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x45,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0x84,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xb6,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xf5,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x66,0x28,0xe,0xbe,0x61,0x81,0x0,0x0,0x6c,0xe3,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6d,0x25,0xe,0xbe,0x61,0x83,0x0,0x0,0x6d,0x67,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6d,0xa9,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0x67,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x1f,0xe,0xe2,0x34,0x60,0x0,0x0,0x85,0x56,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x85,0x80,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xe7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x6e,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xe4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x86,0x11,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x94,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x76,0x4d,0xf,0x17,0x9c,0x64,0x0,0x0,0x80,0x1b,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0xc8,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x3d,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0x6d,0xf,0x30,0x6b,0x3,0x0,0x0,0x31,0xe9,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x70,0xf7,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xff,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x53,0xf,0x70,0xaa,0x1a,0x0,0x0,0x82,0xd0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x67,0xd0,0xf,0x85,0x7b,0xea,0x0,0x0,0x60,0x22,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x14,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xef,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x66,0xd2,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0x80,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0xf6,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0x68,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x2f,0xf,0xd9,0x8f,0xca,0x0,0x0,0x51,0xa1,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3d,0xb7,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0x3,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0xc3,0xf,0xf5,0xeb,0x52,0x0,0x0,0x61,0x9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x61,0x4f,0xf,0xf5,0xeb,0x54,0x0,0x0,0x61,0x95,0x69,0x0,0x0,0x86, + 0x95,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x5e,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6a,0x0,0x75, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x50, + 0x0,0x44,0x0,0x46,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74, + 0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x53,0x0,0x76, + 0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6c, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x6b,0x0,0x69, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61, + 0x1,0xd,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x20,0x1,0x7,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x1, + 0xd,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2c,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x61, + 0x0,0x64,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61, + 0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c, + 0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41, + 0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x69,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x6b,0x0, + 0x75,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0, + 0x50,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6a,0x0,0x65,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61, + 0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a, + 0x0,0x65,0x1,0x7,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1, + 0x7,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x52,0x0,0x61, + 0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6a,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0, + 0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x50, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0, + 0x6f,0x0,0x6d,0x0,0x6f,0x1,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x26,0x0,0x53,0x0,0x61,0x0,0x6b,0x0,0x72,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73, + 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74, + 0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0, + 0x54,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x68,0x0,0x74,0x0,0x69,0x0, + 0x6a,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x76,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x1, + 0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72, + 0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6a,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x73,0x0, + 0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x7a,0x0, + 0x76,0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x26,0x0,0x4e,0x0,0x61,0x0,0x6a,0x0,0x62,0x0,0x6c,0x0,0x69,0x1,0x7e,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72, + 0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x75,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x73,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x53, + 0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x75,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6a, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64, + 0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61, + 0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x55,0x0, + 0x6b,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0, + 0x26,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65, + 0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6c,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x41, + 0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52, + 0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66, + 0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x4f,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70, + 0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x26,0x0,0x4b,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x7a,0x0,0x61,0x0, + 0x64,0x0,0x72,0x1,0x7e,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0, + 0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26, + 0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b, + 0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0, + 0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x26,0x0,0x41,0x1,0x7e,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0, + 0x67,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6b,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e, + 0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0, + 0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x64, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x42,0x0,0x69, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73, + 0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x46,0x0,0x61,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x28,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x6e,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28, + 0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x64,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x65,0x0, + 0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0, + 0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2c, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2c,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x31,0x0,0x2c,0x0, + 0x35,0x0,0x25,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x6e,0x0, + 0x6f,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x32,0x0,0x25,0x0,0x20, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x61, + 0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20, + 0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6b, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2c,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2c,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2c,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x34,0x0, + 0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x6a,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2c, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2c,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8c,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x61,0x1,0x7,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6c,0x0,0x6a, + 0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4d,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x6d, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6a,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20, + 0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74, + 0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x3c,0x0,0x2f,0x0,0x61, + 0x0,0x3e,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x73, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c, + 0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f, + 0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f, + 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d, + 0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74, + 0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f, + 0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38, + 0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x62,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x67,0x0, + 0x61,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0x7,0x0,0x69,0x0,0x20,0x0,0x74,0x0, + 0x76,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45, + 0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x6f, + 0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x64,0x0,0x69, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x73, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63, + 0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x76,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x53,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x3,0xfe,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x68, + 0x0,0x20,0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65, + 0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20, + 0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67, + 0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6f,0x0,0x3a,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x62,0x0,0x32,0x0,0x30,0x0,0x35,0x0,0xa,0x0,0xa,0x0,0x4f,0x0,0x62, + 0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x2e,0x0,0x20, + 0x0,0x5a,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x1,0x61,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6c, + 0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x20, + 0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x43,0x0,0x45,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x4a,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x67, + 0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20, + 0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68, + 0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41, + 0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0, + 0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30, + 0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0, + 0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30, + 0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x42,0x0,0x4f,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x5a,0x0,0x26,0x0, + 0x61,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x61,0x1,0x7,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x42,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53, + 0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x26,0x0,0x56,0x0,0x69,0x1,0x61,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41, + 0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41, + 0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67, + 0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61, + 0x0,0x6a,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11, + 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xe2,0x0,0x46,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x75,0x0,0x20,0x0,0x6f, + 0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x67, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61, + 0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75, + 0x1,0x7,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x6f, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x75,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x2e,0x0,0x20,0x0,0x4d,0x0,0x65,0x1,0x11,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x65, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x69,0x1,0x7,0x0,0x69, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x2d, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x75,0x1,0x7e,0x0,0x62,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0,0x61, + 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x69,0x0,0x6e,0x0,0x76, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66, + 0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f, + 0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66, + 0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20, + 0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50, + 0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77, + 0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65, + 0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65, + 0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e, + 0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e, + 0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f, + 0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20, + 0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61, + 0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4f,0x0,0x74, + 0x0,0x6b,0x0,0x61,0x1,0x7e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0, + 0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50, + 0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72, + 0x0,0x6e,0x0,0x6f,0x0,0x2d,0x0,0x62,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d, + 0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0, + 0x65,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4b,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x68,0x0,0x76,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x61,0x0,0x6d,0x0,0x6a, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f, + 0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x4e,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76,0x0, + 0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x6f,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4a,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x6c,0x0, + 0x61,0x0,0x67,0x0,0x6f,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0, + 0x28,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x72,0x0, + 0x69,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x6f,0x1,0x11,0x0,0x65,0x0,0x6e,0x0, + 0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x61, + 0x0,0x7a,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x49,0x0,0x73,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x5e,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32, + 0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x1,0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70, + 0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x61, + 0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x69,0x1,0x61,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x76,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x75, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x1,0xd,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6b, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61, + 0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0xd,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0, + 0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e, + 0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e, + 0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x49,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x49,0x0,0x7a,0x0,0x26,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x49,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x7a,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0, + 0x61,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x75,0x1,0x7,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f, + 0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0, + 0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0, + 0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0, + 0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0, + 0x6c,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x76,0x0,0x72, + 0x1,0x61,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,0x1,0x7,0x0,0x65, + 0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x55,0x0,0x6c,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x69,0x0, + 0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0, + 0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1, + 0xd,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45, + 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x47,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0x7, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x7a,0x0,0x61,0x1,0x61,0x0,0x74,0x0,0x69,0x1,0x7, + 0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70, + 0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57, + 0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x49,0x0, + 0x7a,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x6f,0x0,0x6d, + 0x0,0x6a,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x72,0x0,0x61, + 0x0,0x6a,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x69, + 0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x7a,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61, + 0x0,0x6a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4e,0x0, + 0x65,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x6a,0x0,0x65,0x1,0x61,0x0,0x6e,0x0, + 0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x72,0x0,0x65,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x6b,0x0,0x6f,0x0, + 0x67,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x50,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x0, + 0x73,0x0,0x70,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73, + 0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x72,0x0,0x7a,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61, + 0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x6d,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69, + 0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70, + 0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b, + 0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26, + 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x6f,0x0,0x6a,0x0,0x61,0x1, + 0xd,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x56,0x0,0x72,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x7a,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20, + 0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x64,0x0, + 0x6f,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x65,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x34, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6b,0x0,0x42,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72, + 0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e, + 0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70, + 0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x76,0x0,0x72,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x76,0x0,0x72, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x76,0x0,0x72,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0, + 0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x54,0x0,0x76,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x47,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x44,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53, + 0x0,0x61,0x0,0x6b,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x61,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49, + 0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a, + 0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x50,0x0,0x72,0x0,0x6f,0x1,0x61,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f, + 0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x53,0x0,0x61,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x28,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x29,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x65, + 0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42, + 0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x50,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46, + 0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x55,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x55,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6e,0x0, + 0x6a,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x4e,0x0,0x65,0x0,0x76,0x0,0x61,0x1,0x7e,0x0,0x65,0x1,0x7,0x0,0x69,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x75,0x0,0x72,0x0, + 0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x4e,0x0,0x65,0x0,0x76,0x0,0x61,0x1,0x7e,0x0,0x65,0x1,0x7,0x0,0x61,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0, + 0x75,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x32,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0, + 0x75,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0, + 0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72, + 0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55, + 0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0, + 0x61,0x0,0x6a,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4a,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x56,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x61, + 0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x75, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x73,0x0, + 0x75,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x55,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0, + 0x7a,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0, + 0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d, + 0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4d,0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe6,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61, + 0x1,0xd,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa2,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x62,0x0, + 0x69,0x0,0x6c,0x0,0x6e,0x0,0x6f,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75, + 0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e, + 0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74, + 0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69, + 0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74, + 0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x50,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0, + 0x76,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8a,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x70,0x0,0x75,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6a, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72, + 0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65, + 0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77, + 0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0, + 0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x6a,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65, + 0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4f,0x0,0x73,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x6a, + 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69, + 0x1,0x61,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4d,0x0, + 0x69,0x1,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x4d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x69,0x0,0x70,0x0, + 0x20,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0, + 0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4e,0x0, + 0x69,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x7a,0x0,0x6e, + 0x0,0x69,0x0,0x6a,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63, + 0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x55,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x49,0x0,0x73,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0, + 0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x7a,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb6,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x7a,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x29,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x4d,0x0, + 0x6f,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x73,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x70,0x0, + 0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x72, + 0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68, + 0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x6b,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x69, + 0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x70,0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11, + 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x72,0x0,0x56,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x65,0x1, + 0x11,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x64,0x0,0x67,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6a,0x0, + 0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72, + 0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f, + 0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0,0x61,0x0,0x76,0x0, + 0x72,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x72,0x0, + 0x6f,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x61,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4d,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0, + 0x6d,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x1,0x7e,0x0,0x65,0x1, + 0x7,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x76,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53, + 0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45, + 0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72, + 0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x50,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x7a,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x73,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x6a,0x0, + 0x69,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x1,0x61,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0, + 0x74,0x0,0x70,0x0,0x75,0x1,0x61,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31, + 0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x50, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x70,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x69,0x1,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x76,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x70, + 0x0,0x61,0x0,0x6d,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x61, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d, + 0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f, + 0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x26,0x0, + 0x62,0x0,0x6f,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6f, + 0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f, + 0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x53, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x82,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x62,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61, + 0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x53, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x66,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x72,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6a,0x0,0x73, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0, + 0x7a,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c, + 0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x5a,0x0,0x76, + 0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26, + 0x0,0x50,0x0,0x6f,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x6a,0x0,0x61,0x1, + 0xd,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x75,0x1,0xd, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76, + 0x0,0x75,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x5a,0x0,0x76,0x0,0x75,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x75,0x1,0xd,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4f,0x0,0x64,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x61, + 0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x7a,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0, + 0x64,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x75,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x42,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x42,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53, + 0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x73,0x0, + 0x20,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0, + 0x72,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x74,0x0, + 0x69,0x0,0x70,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x36, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36, + 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x69,0x0,0x6e, + 0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66, + 0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x69,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0, + 0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0, + 0x6b,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66, + 0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x6a,0x0, + 0x61,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72, + 0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x72,0x0, + 0x65,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x20,0x1, + 0x7,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x61,0x1, + 0xd,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x6b,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69, + 0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c, + 0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xac,0x0,0x4f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x20,0x1, + 0x7,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x72,0x0, + 0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x4a,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x75,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xee,0x0,0x54,0x0,0x6f,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x6d,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x1,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x11,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x6b,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x6a,0x0,0x65,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6a,0x0,0x69,0x0, + 0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0, + 0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6a,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x1, + 0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x7a,0x0, + 0x6e,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65, + 0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64, + 0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa, + 0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70, + 0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65, + 0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20, + 0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, + 0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa, + 0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d, + 0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x4f, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x69,0x0,0x6a,0x0, + 0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x54,0x0,0x69,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0,0x53, + 0x0,0x42,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6a, + 0x0,0x6f,0x1,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e, + 0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4e,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x47,0x0,0x68,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32, + 0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x52,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x75,0x1,0xd,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x62,0x0, + 0x72,0x0,0x7a,0x0,0x69,0x0,0x76,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74, + 0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x1,0xd,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x52,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x65,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56, + 0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf8,0x0,0x56,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70, + 0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x75, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f, + 0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x1,0xd,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0, + 0x64,0x0,0x6f,0x1,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x1,0x60,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x62,0x0,0x72,0x1,0x7e,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20, + 0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x55,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x76,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0, + 0x64,0x0,0x72,0x1,0x7e,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0x6a,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x73, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ru-RU.qm + 0x0,0x0,0x95,0x1f, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x11,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0x19,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0x54,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x56,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0xb9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x9e,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x7a,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0xb5,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xef,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x51,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb3,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf2,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x54,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xb6,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0x18,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x36,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xce,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x86,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0xa4,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x95,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x6d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x43,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd1,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x52,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x3a,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xee,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x93,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x76,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x81,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0x5,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xee,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x7f,0x0,0x5,0x56,0x45,0x0,0x0,0x5e,0x9,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x6c,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x50,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0xd9,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x93,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x12,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x4b,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xcb,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xd5,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xfb,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xfd,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x9a,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x2,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0x4b,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xd2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xbb,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xf2,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x4d,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0xcf,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0xcf,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0x5e,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7d,0x31,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0xb2,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xef,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xe6,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0xcb,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0xba,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xe5,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x89,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xd2,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x67,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xd9,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xd8,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xd2,0x1,0x39,0xa4,0xce,0x0,0x0,0x5a,0x76,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x55,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0xbe,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x8d,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x3e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0xaa,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3d,0x9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0xb9,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0x34,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0x29,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0xb9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xfd,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x28,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xe1,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0xf,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0xae,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6c,0x14,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x73,0x26,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x80,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0xbf,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x50,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xe1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x88,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x8d,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0xe5,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0xcd,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x97,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xf0,0x2,0xad,0x4a,0x22,0x0,0x0,0x69,0x27,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x55,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xce,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xd6,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xaa,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x73,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0xaa,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x88,0x13,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0x18,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0xa7,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x26,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x6,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x2d,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0xe3,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xed,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x14,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0xb9,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x56,0x86,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x52,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x81,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x71,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x84,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x56,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x28,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xab,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5b,0x49,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x6f,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0xce,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x8a,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x71,0x46,0x3,0xe4,0x25,0x7a,0x0,0x0,0x71,0x2,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x54,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0x44,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xdf,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x4d,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x77,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x2e,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x82,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x5b,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x83,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0xb9,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0xb8,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x58,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0xc7,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0xc8,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xf3,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x63,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0xaa,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3a,0x6,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x33,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xc4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2e,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x93,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0xa0,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x34,0x12,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x39,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x55,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0xc4,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0xd8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x38,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0xe9,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xb3,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0x3a,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x7b,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0xa2,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xc8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x4b,0x5,0x88,0x2e,0xd9,0x0,0x0,0x70,0x4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0xb4,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0xde,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0xcb,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0xa3,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xf9,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x90,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0x14,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x48,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x91,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x54,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xa3,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xa1,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xdc,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x34,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0xcf,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x85,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xba,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0xdd,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x68,0x2a,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0xe1,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xe9,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x7b,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xfa,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0xa7,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xe0,0x6,0x51,0xe6,0x13,0x0,0x0,0x7,0x15,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x42,0x6,0x6c,0xb8,0x3,0x0,0x0,0x82,0x26,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x21,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0xbf,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x96,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0x27,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0x41,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3b,0x7,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x72,0x12,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x42,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0xd2,0x6,0xc3,0xce,0xa3,0x0,0x0,0x75,0x2e,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xd4,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x70,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x3e,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0x4,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x5a,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x29,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x56,0x2a,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x86,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xad,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x27,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x1c,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0xa2,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0xd0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x67,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x64,0x1f,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xa6,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0xa3,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0xdf,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xdd,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0xf,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x7e,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6b,0x3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x58,0x7c,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6a,0x7,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5f,0x13,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xdf,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0xe3,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x64,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x94,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xdf,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xf6,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0xa9,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0xb4,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x8d,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0x4,0x8,0x0,0x3f,0x29,0x0,0x0,0x65,0x2f,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5b,0x73,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x64,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x50,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x59,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xcd,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0xd4,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xf7,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x99,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0x4d,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xd5,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0x11,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x75,0x8,0xa9,0xcf,0x35,0x0,0x0,0x32,0xe,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x84,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x7b,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xe7,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x97,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0x0,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xeb,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0x27,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x73,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0xaf,0x9,0x4e,0xde,0x64,0x0,0x0,0x7e,0x35,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5d,0x39,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0xd,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x3b,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x6f,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xed,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x10,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xd1,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xfd,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x29,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x55,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x72,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xcb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xd4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5d,0x5,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x63,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xdd,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5c,0x28,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x79,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x9d,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xd3,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x34,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x3b,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xf0,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x6d,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0xa,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0xa9,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x3d,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0xa2,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x81,0x42,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0x4c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x7a,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xc9,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x7e,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0x51,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0xd,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x7,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0x14,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x61,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x64,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x6d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x48,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0xdd,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x84,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0xcd,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa8,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xa0,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xa4,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0x31,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xb8,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x4f,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0xd3,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x6b,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x41,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6d,0x1f,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x80,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xd3,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x59,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0xc2,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0x4a,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0x73,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x76,0x1b,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x37,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0xa,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x6f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x42,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xf5,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0x43,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x93,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x7f,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x84,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0xb4,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xd0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x39,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xf1,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x48,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x74,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0x73,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xb0,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0xd2,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x82,0x56,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x77,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xf6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xc2,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x94,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x84,0x0,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0xd5,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x85,0x30,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0x19,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0xb5,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x25,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0xa4,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0xc7,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0x1c,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x86,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x86,0xb,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5e,0x28,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x85,0x6,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0xa8,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x59,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xce,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x50,0xe,0x48,0xfd,0xca,0x0,0x0,0x2b,0xf,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x91,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x7f,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x7d,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x70,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x42,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x3b,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0xac,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x53,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x9b,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0xe3,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6f,0x2b,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x63,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x79,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xf6,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x87,0x20,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x3d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xe2,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x54,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0xb9,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x94,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x8f,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0xa5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0x28,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x31,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x99,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x77,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x7f,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x79,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xfb,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0x46,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x5e,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x7e,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xbc,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x75,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x5a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0xb0,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xd4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x52,0x56,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0x15,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x97,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xf9,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x8b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0x23,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x73,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0xc3,0xf,0xf5,0xeb,0x54,0x0,0x0,0x63,0x13,0x69,0x0,0x0,0x88, + 0x3d,0x3,0x0,0x0,0x0,0x10,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x1f,0x4,0x10, + 0x4,0x23,0x4,0x17,0x4,0x10,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x1,0x60,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,0x4,0x43, + 0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x30,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3c,0x4,0x30,0x4,0x42, + 0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x33,0x4,0x3e, + 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20, + 0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x3e,0x4,0x32,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3e, + 0x4,0x3a,0x4,0x43,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x4b,0x0,0x2c, + 0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30, + 0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f, + 0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x2c,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x43,0x4,0x42, + 0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x35, + 0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34, + 0x4,0x35,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x3e,0x4,0x32, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73, + 0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1a,0x4,0x3e,0x4,0x3d, + 0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x38, + 0x4,0x4f,0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x30,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x25,0x0, + 0x69,0x0,0x20,0x0,0x57,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x4,0x1c,0x4, + 0x11,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25, + 0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4, + 0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4, + 0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32, + 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34, + 0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x4,0x1e,0x0,0x20, + 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x3c, + 0x4,0x35,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x14,0x4,0x35,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x2f,0x4,0x3d,0x4,0x42,0x4,0x30, + 0x4,0x40,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x42, + 0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x10,0x4, + 0x32,0x4,0x42,0x4,0x3e,0x4,0x3f,0x4,0x30,0x4,0x43,0x4,0x37,0x4,0x30,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4, + 0x35,0x4,0x40,0x4,0x35,0x0,0x20,0x4,0x44,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4, + 0x41,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75, + 0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75, + 0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x26,0x4,0x23,0x4,0x41,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x3d,0x4, + 0x51,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x4, + 0x1f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4, + 0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x4,0x14,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x12,0x4,0x4b, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x4,0x1f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x30,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x35,0x4,0x46,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1f,0x4, + 0x30,0x4,0x3f,0x4,0x3a,0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x4,0x1d, + 0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x20,0x4,0x4d, + 0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x3e,0x4,0x4d,0x4, + 0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4, + 0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x26,0x4,0x17,0x4,0x35,0x4,0x3b,0x4,0x51,0x4,0x3d,0x4, + 0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x42,0x4,0x35,0x4,0x3d,0x4, + 0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72, + 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x4,0x25,0x4,0x3e,0x4,0x3b,0x4,0x3e, + 0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a, + 0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x4,0x1f,0x4, + 0x3e,0x4,0x3c,0x4,0x3e,0x4,0x49,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x26,0x4,0x21,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3a,0x4,0x43,0x0, + 0x20,0x4,0x41,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x4f,0x4,0x3d,0x4, + 0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69, + 0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x4,0x26,0x4,0x35,0x4,0x3b, + 0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42, + 0x4,0x30,0x4,0x31,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d, + 0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x4,0x18,0x4,0x3d,0x4,0x32,0x4, + 0x35,0x4,0x40,0x4,0x42,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x4,0x46,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x30,0x0, + 0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x26,0x4,0x1a,0x4,0x3b,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x30,0x4, + 0x42,0x4,0x43,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x35,0x4, + 0x31,0x4,0x43,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x45,0x4, + 0x32,0x4,0x30,0x4,0x42,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1b,0x4,0x38,0x4,0x3d,0x4,0x35, + 0x4,0x39,0x4,0x3d,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1d,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,0x42, + 0x4,0x35,0x4,0x3b,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x4,0x1e,0x0,0x26,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4, + 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x4,0x11,0x4,0x3b,0x4, + 0x38,0x4,0x36,0x4,0x30,0x4,0x39,0x4,0x48,0x4,0x38,0x4,0x39,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x4,0x1d,0x4,0x3e, + 0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x4,0x21,0x4,0x3e, + 0x4,0x37,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x4,0x1f, + 0x4,0x30,0x4,0x43,0x4,0x37,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x26,0x4,0x12,0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4, + 0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4, + 0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x4, + 0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4, + 0x4b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4, + 0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x4,0x21,0x4,0x3d,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43, + 0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35, + 0x4,0x34,0x4,0x4b,0x4,0x34,0x4,0x43,0x4,0x49,0x4,0x38,0x4,0x39,0x0,0x20, + 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x4,0x23,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x4,0x23,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x48,0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x26,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x4f,0x4,0x35, + 0x4,0x3c,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c, + 0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61, + 0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x3c,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x30,0x0, + 0x20,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,0x30,0x4,0x3b,0x4,0x3e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74, + 0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x1f,0x4,0x40, + 0x4,0x30,0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52, + 0x0,0x4c,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x3e,0x0,0x20, + 0x4,0x3b,0x4,0x35,0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x41,0x0,0x4c, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x48,0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x4,0x1d,0x4,0x30, + 0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20, + 0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x4,0x1a,0x4,0x32,0x4, + 0x30,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0, + 0x20,0x4,0x3f,0x4,0x38,0x4,0x3a,0x4,0x41,0x4,0x35,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x0,0x28,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4, + 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4, + 0x3d,0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4, + 0x38,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x41,0x0, + 0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20, + 0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x26,0x4,0x18,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x48,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4, + 0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3d,0x4, + 0x30,0x4,0x47,0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x41,0x4, + 0x42,0x4,0x3e,0x4,0x4f,0x4,0x3d,0x4,0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x4,0x11,0x4,0x35,0x4,0x3b,0x4,0x4b,0x4,0x39,0x0,0x20, + 0x4,0x3e,0x4,0x42,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4, + 0x31,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x28,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35, + 0x4,0x3c,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x28,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x3e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1d,0x4,0x30,0x0,0x20,0x0, + 0x31,0x0,0x25,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4, + 0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e, + 0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x4,0x1c,0x4, + 0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x1d,0x4,0x30,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4, + 0x35,0x4,0x3d,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4, + 0x47,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1d,0x4,0x30,0x0,0x20, + 0x0,0x32,0x0,0x25,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4,0x35, + 0x4,0x3d,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47, + 0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x4,0x13,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x47,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42, + 0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x38,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49, + 0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22, + 0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30, + 0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20, + 0x4,0x13,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20, + 0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0, + 0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30, + 0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x4,0x26,0x4,0x35,0x4, + 0x3b,0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4, + 0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x41,0x4,0x48,0x4, + 0x42,0x4,0x30,0x4,0x31,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x4,0x13,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x4,0x13,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8a,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41, + 0x4,0x3c,0x4,0x3e,0x4,0x33,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42, + 0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x34,0x4,0x3d, + 0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x45, + 0x4,0x3e,0x4,0x34,0x4,0x4f,0x4,0x49,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20, + 0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e, + 0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38, + 0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x20, + 0x4,0x41,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x4,0x1f,0x4,0x3e,0x4,0x36,0x4,0x30,0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41, + 0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x4,0x41,0x4,0x3a,0x4,0x30,0x4,0x47,0x4,0x30, + 0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20, + 0x4,0x3d,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x1f,0x4,0x17, + 0x4,0x23,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x3b, + 0x4,0x35,0x4,0x3a,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x35,0x4,0x33, + 0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30, + 0x4,0x3b,0x4,0x3e,0x4,0x33,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac, + 0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, + 0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e, + 0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73, + 0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69, + 0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73, + 0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x76,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x4,0x21,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0, + 0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68, + 0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1e,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x12,0x4,0x4b,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x43,0x4, + 0x49,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x4e,0x4,0x49,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x36,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x21,0x4,0x3e,0x4,0x37,0x4,0x34, + 0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x4b, + 0x4,0x39,0x0,0x20,0x4,0x36,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x4,0x20,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x38,0x4,0x40,0x4,0x35, + 0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x4,0x12,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x44,0x4,0x30,0x4, + 0x39,0x4,0x3b,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x4,0x12,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xfa,0x4,0x2d,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4f, + 0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x40, + 0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x4,0x4c, + 0x4,0x4e,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0xa,0x0,0xa, + 0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x0,0x3a,0x0,0x20, + 0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72, + 0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38, + 0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39, + 0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f, + 0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c, + 0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73, + 0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a, + 0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x4,0x12,0x4,0x4b,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x30, + 0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34, + 0x0,0x20,0x4,0x3b,0x4,0x38,0x4,0x46,0x4,0x35,0x4,0x3d,0x4,0x37,0x4,0x38, + 0x4,0x35,0x4,0x39,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50, + 0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x4,0x32,0x4,0x35, + 0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x38,0x0,0x20,0x0,0x32,0x0,0x20,0x4,0x38, + 0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x31,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x34,0x4,0x3d,0x4,0x35,0x4,0x39, + 0x0,0x2e,0x0,0x20,0x4,0x14,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d, + 0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x43,0x4,0x4e, + 0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x44,0x4,0x3e,0x4,0x40,0x4,0x3c,0x4,0x30, + 0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x41,0x4,0x3c,0x0,0x2e,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x35,0x0,0x20, + 0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x4,0x12,0x4,0x4b,0x0,0x20,0x4, + 0x43,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x2c,0x0, + 0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4, + 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x39,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x4,0x12, + 0x4,0x4b,0x0,0x20,0x4,0x43,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d, + 0x4,0x4b,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x45, + 0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b, + 0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20, + 0x4,0x45,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x43,0x4,0x4e, + 0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33, + 0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x4d,0x4,0x3c, + 0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x40,0x4,0x43,0x4,0x35,0x4,0x3c,0x4,0x3e, + 0x4,0x39,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0, + 0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26, + 0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0, + 0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26, + 0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4, + 0x4b,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x35,0x4,0x3a,0x4, + 0x42,0x4,0x3e,0x4,0x40,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x4,0x1d,0x4,0x30,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4, + 0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e,0x4, + 0x32,0x4,0x3a,0x4,0x43,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67, + 0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x20,0x4,0x30,0x4,0x37, + 0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e,0x4,0x3a, + 0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x14,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x4b,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69, + 0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x12,0x4,0x4b,0x4, + 0x3b,0x4,0x35,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4, + 0x32,0x4,0x51,0x4,0x40,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4, + 0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e, + 0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x26,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x3e, + 0x4,0x40,0x0,0x20,0x4,0x42,0x4,0x38,0x4,0x3f,0x4,0x3e,0x4,0x32,0x0,0x20, + 0x4,0x26,0x4,0x1f,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x4d, + 0x4,0x42,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x41,0x4,0x42, + 0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34, + 0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x4d,0x4,0x3c, + 0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x40,0x4,0x43,0x4,0x35,0x4,0x3c,0x4,0x3e, + 0x4,0x39,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35, + 0x4,0x3d,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x2d,0x4,0x42,0x4,0x3e,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x32,0x4,0x3e,0x4,0x3b,0x4,0x4f,0x4,0x35, + 0x4,0x42,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x46,0x4,0x35,0x4,0x41, + 0x4,0x41,0x4,0x3e,0x4,0x40,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3f, + 0x4,0x40,0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4,0x3c, + 0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x35,0x0,0x20, + 0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x3c,0x4,0x35,0x4,0x41, + 0x4,0x42,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x32,0x4,0x4b, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20, + 0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42, + 0x4,0x3e,0x4,0x39,0x0,0x2e,0x0,0x20,0x4,0x1e,0x4,0x34,0x4,0x3d,0x4,0x30, + 0x4,0x3a,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x42, + 0x4,0x3e,0x4,0x3b,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x4c,0x4,0x41, + 0x4,0x4f,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x3e, + 0x4,0x32,0x4,0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x3e, + 0x4,0x41,0x4,0x42,0x4,0x4c,0x4,0x4e,0x0,0x20,0x4,0x41,0x0,0x20,0x0,0x42, + 0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35, + 0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x39,0x0,0x20, + 0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x3b, + 0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x38,0x4,0x3c, + 0x0,0x20,0x4,0x1f,0x4,0x1e,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x3a, + 0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20, + 0x4,0x4d,0x4,0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x30, + 0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20, + 0x4,0x3e,0x4,0x44,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x4c, + 0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e, + 0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30, + 0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x38,0x0,0x20, + 0x4,0x32,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x30, + 0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x47, + 0x4,0x35,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x31,0x0,0x20,0x4,0x3e, + 0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x30,0x4,0x45,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x33,0x4,0x43,0x4,0x42,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42, + 0x4,0x4b,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x4,0x34,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x42, + 0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x26,0x4,0x1f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20, + 0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x4,0x1e,0x4,0x42,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4, + 0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4, + 0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4, + 0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x4,0x35,0x4,0x39,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x4,0x1a,0x4,0x30,0x4,0x41,0x4,0x41,0x4,0x35,0x4,0x42, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x41,0x4,0x41,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1a,0x4, + 0x30,0x4,0x41,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x30,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x58,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38, + 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40, + 0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x0,0x26,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4,0x40, + 0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3b,0x4,0x35,0x4,0x4f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1a,0x4,0x30,0x4,0x3d,0x4,0x30, + 0x4,0x3b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x4f,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x29,0x4,0x51,0x4,0x3b,0x4, + 0x3a,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x4b,0x4, + 0x48,0x4,0x4c,0x4,0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4, + 0x37,0x4,0x30,0x4,0x45,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x4, + 0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1d,0x4,0x30,0x4,0x41,0x4,0x42, + 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x34, + 0x4,0x3e,0x4,0x3b,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4, + 0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4, + 0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4, + 0x40,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x4,0x1d,0x4,0x35,0x0,0x20,0x4, + 0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c,0x0,0x20,0x4, + 0x38,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4, + 0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x3a,0x4, + 0x43,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66, + 0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1d,0x4,0x35, + 0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c, + 0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b, + 0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x17,0x4,0x30,0x4, + 0x34,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4, + 0x47,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c, + 0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x4,0x17,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4,0x47,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x4,0x26,0x4,0x38,0x4,0x3b,0x4,0x38,0x4,0x3d,0x4,0x34,0x4, + 0x40,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x4,0x3a, + 0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46, + 0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1f,0x4,0x3e,0x0,0x20, + 0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,0x4,0x38, + 0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x4,0x14, + 0x4,0x38,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46, + 0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b, + 0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42, + 0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4, + 0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4,0x34,0x4, + 0x30,0x4,0x3d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x24,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x30, + 0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x43, + 0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x49,0x4,0x35,0x4,0x41, + 0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x21,0x4, + 0x3b,0x4,0x38,0x4,0x48,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x31,0x4, + 0x3e,0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4, + 0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x4,0x20,0x4,0x30, + 0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35, + 0x4,0x32,0x4,0x4b,0x4,0x48,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x4,0x13,0x4,0x11,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x20,0x4,0x30,0x4,0x37, + 0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69, + 0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x4,0x14,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3b,0x4,0x35,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x25,0x4, + 0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4, + 0x30,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x4, + 0x45,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1d,0x4,0x35,0x0,0x20, + 0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38, + 0x4,0x41,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37, + 0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x4,0x11,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x3d, + 0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x4b, + 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x3e, + 0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d, + 0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x14,0x4,0x38,0x4,0x3d,0x4,0x30,0x4,0x3c, + 0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20, + 0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x4,0x38,0x4,0x3b, + 0x4,0x4f,0x4,0x42,0x4,0x3e,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,0x30,0x4, + 0x3c,0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x33,0x4, + 0x3e,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x4, + 0x30,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1d,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x18, + 0x0,0x26,0x4,0x37,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x47,0x4,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1f,0x0,0x26,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x3e,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x4,0x12,0x4,0x4b,0x4,0x45,0x4,0x3e,0x4,0x34,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x4,0x2d,0x0,0x26,0x4,0x3a,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4, + 0x42,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4, + 0x1f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x4b,0x4,0x34,0x4,0x43,0x4,0x49,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4, + 0x32,0x4,0x3e,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4, + 0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x42,0x4, + 0x35,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54, + 0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x12,0x4, + 0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x0, + 0x28,0x4,0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x17,0x4,0x30,0x4,0x32, + 0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42, + 0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32, + 0x4,0x3a,0x4,0x43,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x12,0x4,0x45,0x4,0x3e,0x4,0x34,0x0, + 0x20,0x4,0x32,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x3e,0x4, + 0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0, + 0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1e,0x4,0x48,0x4,0x38,0x4,0x31, + 0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4,0x1e, + 0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x3d, + 0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x37,0x4,0x30, + 0x4,0x46,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x12,0x4,0x4b,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x28,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x49, + 0x4,0x38,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x0,0x20,0x4,0x37, + 0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x38,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x12,0x4,0x4b,0x4, + 0x45,0x4,0x3e,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x23, + 0x0,0x26,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38, + 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4,0x3d, + 0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x41, + 0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x3d,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4, + 0x35,0x4,0x40,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x14, + 0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x46, + 0x0,0x4d,0x0,0x2d,0x4,0x41,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x37, + 0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1d,0x4, + 0x35,0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4, + 0x4c,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4, + 0x3b,0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4, + 0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4, + 0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x0, + 0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c,0x0, + 0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x38,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x11,0x4,0x4b,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46, + 0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1d, + 0x4,0x35,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38, + 0x4,0x3c,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3e,0x4,0x48,0x4,0x38,0x4,0x31, + 0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x4,0x18,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x44,0x4, + 0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1c,0x4,0x35,0x4,0x42,0x4,0x3e, + 0x4,0x34,0x0,0x20,0x4,0x44,0x4,0x38,0x4,0x3b,0x4,0x4c,0x4,0x42,0x4,0x40, + 0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x4,0x44,0x4,0x38,0x4,0x3a,0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20, + 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x30,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x14,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e, + 0x4,0x32,0x4,0x3e,0x4,0x34,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x13,0x4,0x38,0x4,0x31,0x4,0x3a, + 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38, + 0x0,0x20,0x4,0x38,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x13,0x4, + 0x38,0x4,0x31,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x38,0x4, + 0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x26,0x4,0x20,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x4f,0x4,0x33,0x4,0x38, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x3e,0x4,0x4d,0x4,0x3a,0x4,0x40, + 0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x40,0x4,0x35, + 0x4,0x36,0x4,0x38,0x4,0x3c,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74, + 0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x23,0x4,0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x22, + 0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45, + 0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20, + 0x0,0x26,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42, + 0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4, + 0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x64,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35, + 0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3e, + 0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20, + 0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,0x40, + 0x4,0x35,0x4,0x32,0x4,0x4b,0x4,0x48,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20, + 0x0,0x34,0x0,0x20,0x4,0x13,0x4,0x11,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4, + 0x3c,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4, + 0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x3e,0x4, + 0x42,0x4,0x3b,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4, + 0x3e,0x4,0x42,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x2c,0x0,0x20,0x4, + 0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4, + 0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x4e,0x4,0x42,0x4,0x41,0x4, + 0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49, + 0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77, + 0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a, + 0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32, + 0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x4,0x16,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x36,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a, + 0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e, + 0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x16,0x4,0x51,0x4,0x41,0x4,0x42,0x4, + 0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4, + 0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x4,0x16,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x25,0x4,0x3e, + 0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43, + 0x4,0x37,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x4,0x1e,0x4,0x31,0x4,0x3e,0x4,0x40,0x4,0x43,0x4, + 0x34,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4, + 0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4, + 0x3d,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x13, + 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x32,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x12,0x4,0x4b,0x4,0x41,0x4, + 0x3e,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4, + 0x31,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x35,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x4,0x21,0x0,0x26,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x3d,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20, + 0x4,0x38,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c,0x4,0x35, + 0x4,0x3d,0x4,0x42,0x4,0x3e,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x23,0x4,0x41,0x4,0x3a, + 0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x1a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x38, + 0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x30, + 0x4,0x3c,0x4,0x4f,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x23,0x4,0x41,0x4,0x42, + 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1d,0x4,0x30,0x4,0x31,0x4,0x3e,0x4, + 0x40,0x0,0x20,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4, + 0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x37,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x32,0x4, + 0x32,0x4,0x3e,0x4,0x34,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x12,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x3e,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4, + 0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4, + 0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74, + 0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1d,0x4,0x35,0x4, + 0x32,0x4,0x35,0x4,0x40,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4, + 0x3e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3f,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4, + 0x3e,0x4,0x3d,0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4, + 0x46,0x4,0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4, + 0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4, + 0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x38,0x4,0x3a,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4, + 0x1a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42, + 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41, + 0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e, + 0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4, + 0x3e,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x2f, + 0x4,0x37,0x4,0x4b,0x4,0x3a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x11,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x48, + 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x38, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x17,0x4,0x30,0x4,0x44,0x4,0x38,0x4,0x3a, + 0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4, + 0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x4,0x3d,0x4, + 0x38,0x4,0x3a,0x4,0x3e,0x4,0x33,0x4,0x34,0x4,0x30,0x0,0x20,0x4,0x3d,0x4, + 0x35,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x49,0x4,0x35,0x4,0x41,0x4,0x42,0x4, + 0x32,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3b,0x4,0x3e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20, + 0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x4,0x43,0x4,0x41,0x4, + 0x42,0x4,0x40,0x0,0x2d,0x4,0x32,0x4,0x3e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0, + 0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x0,0x2d,0x4,0x32,0x4,0x3e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3e,0x4,0x1c,0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x38, + 0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x35, + 0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x1c,0x4,0x30,0x4,0x33,0x4, + 0x3d,0x4,0x38,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f,0x4,0x42,0x4,0x38,0x4, + 0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x4b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x3c, + 0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f, + 0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x45, + 0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1a,0x4,0x3e, + 0x4,0x3c,0x4,0x3f,0x4,0x4c,0x4,0x4e,0x4,0x42,0x4,0x35,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x6,0x4,0x21,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f, + 0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41, + 0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x37, + 0x0,0x2d,0x4,0x37,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x41,0x4,0x43, + 0x4,0x42,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x44, + 0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20, + 0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30, + 0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x33,0x4,0x35,0x0,0x20,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x4,0x1f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d, + 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e, + 0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20, + 0x4,0x41,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x43, + 0x4,0x4e,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x43,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x22,0x4,0x38,0x4,0x3f, + 0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d, + 0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x30, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa4,0x4, + 0x23,0x4,0x31,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x41,0x4, + 0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x0, + 0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x35,0x0, + 0x20,0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x32,0x4, + 0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x3e,0x0,0x20,0x4, + 0x41,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b, + 0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69, + 0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20, + 0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6a,0x4,0x23,0x4,0x31,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4, + 0x35,0x4,0x41,0x4,0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0, + 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x41,0x4,0x43,0x4, + 0x49,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x35,0x4,0x42,0x0, + 0x20,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4, + 0x3f,0x4,0x35,0x4,0x3d,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4, + 0x47,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x4,0x23,0x4,0x31, + 0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x2c, + 0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d, + 0x4,0x4f,0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43, + 0x4,0x3f,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x38,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4, + 0x1f,0x4,0x30,0x4,0x3c,0x4,0x4f,0x4,0x42,0x4,0x4c,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x1c,0x4,0x3e,0x4,0x3d,0x4,0x38,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x4f, + 0x4,0x49,0x4,0x35,0x4,0x3c,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38, + 0x4,0x3c,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x27, + 0x4,0x43,0x4,0x32,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x35, + 0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20, + 0x4,0x3c,0x4,0x4b,0x4,0x48,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74, + 0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x4,0x1c,0x4,0x4b,0x4,0x48,0x4,0x4c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x21,0x4,0x35,0x4,0x42,0x4,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x21,0x4,0x35,0x4,0x42, + 0x4,0x35,0x4,0x32,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x22,0x4,0x38,0x4, + 0x3f,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x38,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4, + 0x1d,0x4,0x3e,0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4, + 0x41,0x4,0x42,0x4,0x32,0x4,0x30,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x39,0x4, + 0x34,0x4,0x35,0x4,0x3d,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4, + 0x3d,0x4,0x30,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x4b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4, + 0x1d,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x4,0x31,0x4,0x3e, + 0x4,0x3b,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d, + 0x4,0x4b,0x4,0x39,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75, + 0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x12,0x4,0x4b,0x4, + 0x3a,0x4,0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x12,0x4,0x3a,0x4, + 0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb6,0x4,0x1d,0x4,0x35,0x4,0x32,0x4, + 0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4, + 0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x38,0x4, + 0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x40,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x0,0x2e,0x0,0x20,0x4, + 0x1f,0x4,0x3e,0x4,0x36,0x4,0x30,0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4, + 0x3b,0x4,0x4c,0x4,0x37,0x4,0x43,0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x20,0x4, + 0x34,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x40,0x4, + 0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x28, + 0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x20,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70, + 0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x4,0x14,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x44,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x14,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x38, + 0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x4a,0x4,0x51,0x4,0x3c,0x4,0x3d,0x4,0x4b, + 0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x0,0x2d,0x4,0x32, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41, + 0x4,0x30,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x4,0x20,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0, + 0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4, + 0x30,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x4,0x12,0x4,0x40,0x4,0x35,0x4, + 0x3c,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3c,0x4, + 0x35,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x34,0x4, + 0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4, + 0x33,0x4,0x3e,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x47,0x4, + 0x35,0x4,0x40,0x4,0x3d,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35,0x0, + 0x20,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x3f,0x4,0x30,0x4,0x34,0x4,0x30,0x4, + 0x4e,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72, + 0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f, + 0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x3e,0x4,0x41,0x4, + 0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x32,0x4,0x4b,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x22,0x4,0x3e,0x4,0x47,0x4, + 0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x4,0x1f,0x4, + 0x3e,0x4,0x36,0x4,0x30,0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x30,0x0,0x2c,0x0,0x20,0x4,0x43,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x38,0x4, + 0x42,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4, + 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x3c,0x4, + 0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x4,0x1f,0x4,0x3e,0x4,0x40,0x4,0x42,0x4,0x4b,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x4,0x38,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50, + 0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65, + 0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4, + 0x1d,0x4,0x30,0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1d,0x4,0x30, + 0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73, + 0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x4,0x1d,0x4,0x30,0x4,0x36,0x4, + 0x3c,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x44,0x0,0x6e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x32,0x4, + 0x3e,0x4,0x37,0x4,0x32,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x4, + 0x32,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, + 0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x7c,0x4,0x1d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4, + 0x35,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x40,0x4,0x35,0x4, + 0x34,0x4,0x3d,0x4,0x4e,0x4,0x4e,0x0,0x20,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4, + 0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3c,0x4,0x4b,0x4,0x48,0x4,0x38,0x0, + 0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4, + 0x41,0x4,0x32,0x4,0x3e,0x4,0x31,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4c,0x4,0x1d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4,0x35, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x41, + 0x4,0x32,0x4,0x3e,0x4,0x31,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x35,0x4,0x41,0x4,0x41, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x4,0x27,0x4,0x35,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x38, + 0x4,0x47,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b, + 0x4,0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3a,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x3e,0x4,0x3c, + 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37, + 0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e, + 0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x4,0x46,0x4,0x32,0x4,0x35,0x4,0x42,0x4, + 0x3d,0x4,0x3e,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52, + 0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x4,0x40,0x4,0x35, + 0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x41,0x0,0x57,0x0,0x20,0x4,0x3e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69, + 0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x4,0x20,0x4, + 0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x4,0x1d,0x4, + 0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x4c,0x4, + 0x42,0x4,0x35,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4, + 0x42,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3e,0x4, + 0x42,0x4,0x44,0x4,0x3e,0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x38,0x4, + 0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4, + 0x3d,0x4,0x3e,0x4,0x32,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4, + 0x34,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4, + 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x12,0x4,0x3e,0x4,0x37,0x4, + 0x3e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x32,0x4,0x4b,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30, + 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x68,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x0, + 0x20,0x4,0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x0,0x26,0x4,0x33,0x4,0x3b,0x4, + 0x3e,0x4,0x31,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4, + 0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4, + 0x40,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x64,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x3c, + 0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x30,0x0,0x2d,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x20, + 0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x33,0x4,0x3e, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x33, + 0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30, + 0x4,0x3c,0x4,0x3c,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x12,0x4, + 0x4b,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4, + 0x40,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4, + 0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4, + 0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4, + 0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4, + 0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4, + 0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1d,0x4,0x30,0x4,0x41,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x3c, + 0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x28,0x4,0x1c,0x4,0x11,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x1c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1c,0x4,0x30,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x4c,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x31, + 0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31, + 0x0,0x32,0x0,0x20,0x4,0x1a,0x4,0x11,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x4,0x23,0x4,0x41,0x4,0x38,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43, + 0x4,0x3a,0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x23,0x4, + 0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4, + 0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x17,0x4,0x32, + 0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x4f, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32, + 0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x37, + 0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c, + 0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x20,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x32, + 0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x37,0x4, + 0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4, + 0x35,0x4,0x40,0x4,0x4b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4, + 0x41,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x21,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1e,0x4,0x42, + 0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x32,0x0, + 0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4, + 0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4, + 0x34,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0, + 0x34,0x0,0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4, + 0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x36, + 0x0,0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x3d, + 0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41, + 0x4,0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x38,0x0, + 0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4, + 0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e, + 0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x20,0x4,0x34,0x4,0x38, + 0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20, + 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4, + 0x21,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4, + 0x41,0x0,0x26,0x4,0x3a,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x48,0x4,0x3e,0x4, + 0x42,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b, + 0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x4,0x26,0x4,0x35,0x4,0x3b,0x4,0x35,0x4,0x32,0x4,0x30,0x4,0x4f,0x0, + 0x20,0x0,0x26,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x42,0x4, + 0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x4,0x22,0x4,0x40,0x4,0x35,0x4,0x42,0x4,0x38,0x4, + 0x47,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4, + 0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54, + 0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x72,0x4,0x21,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4,0x30,0x4,0x4f,0x0, + 0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4, + 0x40,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x31,0x4,0x43,0x4, + 0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x20,0x4, + 0x3d,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x3b,0x4,0x35,0x4,0x32,0x4, + 0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4, + 0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x94,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4, + 0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4, + 0x41,0x4,0x30,0x4,0x3d,0x0,0x2e,0x0,0x20,0x4,0x12,0x4,0x4b,0x0,0x20,0x4, + 0x43,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x2c,0x0, + 0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4, + 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4, + 0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x2,0x26,0x4,0x2d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x3c,0x4, + 0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4, + 0x30,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4, + 0x42,0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4, + 0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x4, + 0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x31,0x4,0x4b,0x4, + 0x3b,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x51,0x4, + 0x3d,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x0,0x20,0x4, + 0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x3a,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x3b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4, + 0x37,0x4,0x34,0x4,0x30,0x4,0x3d,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x44,0x4, + 0x44,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46,0x4,0x38,0x4,0x40,0x4, + 0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4, + 0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0xa,0x0,0xa,0x4, + 0x2d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x3a,0x4,0x36,0x4, + 0x35,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4, + 0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x3e,0x4,0x39,0x4,0x42,0x4, + 0x38,0x0,0x2c,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4, + 0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x4,0x30,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x3b,0x4, + 0x38,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4, + 0x49,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x3f,0x4,0x38,0x4,0x40,0x4,0x3e,0x4, + 0x32,0x4,0x30,0x4,0x3d,0x4,0x4b,0x0,0x2c,0x0,0x20,0x4,0x38,0x4,0x3b,0x4, + 0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x2d,0x4,0x37,0x4,0x30,0x0,0x20,0x4, + 0x3e,0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x32,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4, + 0x3c,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4,0x34,0x4, + 0x30,0x4,0x32,0x4,0x48,0x4,0x35,0x4,0x39,0x0,0x20,0x4,0x4d,0x4,0x42,0x4, + 0x3e,0x4,0x42,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x0, + 0xa,0x0,0xa,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4, + 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x40,0x4, + 0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x40,0x4, + 0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4, + 0x3c,0x4,0x35,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d, + 0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68, + 0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68, + 0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f, + 0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f, + 0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b, + 0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74, + 0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70, + 0x4,0x2d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x32, + 0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3a,0x0,0x20,0x4,0x45, + 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20, + 0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40, + 0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x3c,0x4,0x43, + 0x4,0x3b,0x4,0x38,0x4,0x40,0x4,0x43,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x39, + 0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x4, + 0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x30,0x0,0x20,0x4, + 0x43,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4, + 0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x42,0x4, + 0x3e,0x4,0x3c,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e, + 0x4,0x3d,0x4,0x38,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20, + 0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x22,0x4,0x43,0x4,0x40,0x4,0x31,0x4, + 0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x22,0x4,0x43,0x4, + 0x40,0x4,0x31,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x39,0x4,0x3c,0x4, + 0x38,0x4,0x3d,0x4,0x33,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x22,0x4,0x38,0x4,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36, + 0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x4,0x1d,0x4,0x35,0x4, + 0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0, + 0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4, + 0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x4,0x1d, + 0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d, + 0x4,0x3e,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30, + 0x4,0x3b,0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30, + 0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20, + 0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,0x4,0x43,0x4,0x35,0x4,0x42,0x4,0x41, + 0x4,0x4f,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64, + 0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4, + 0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x37,0x4, + 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x42,0x4, + 0x35,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4,0x32,0x4, + 0x38,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x40,0x4,0x4b,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61, + 0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4, + 0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4, + 0x40,0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6c,0x4,0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4, + 0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x40,0x4,0x35,0x4, + 0x33,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x40,0x4,0x3e,0x4, + 0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x42,0x4,0x30,0x4,0x3d,0x4, + 0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x41,0x0,0x57,0x0, + 0x29,0x0,0x20,0x4,0x32,0x4,0x32,0x4,0x3e,0x4,0x34,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e, + 0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4, + 0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4, + 0x3d,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4, + 0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x3e, + 0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30, + 0x4,0x35,0x4,0x3c,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x4,0x37,0x4,0x32,0x4, + 0x43,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x4,0x22,0x4,0x38,0x4, + 0x3f,0x0,0x20,0x4,0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0, + 0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x24,0x4,0x30, + 0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xec,0x4,0x12,0x4,0x38, + 0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4,0x3d, + 0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d, + 0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x2d,0x4,0x37,0x4,0x30,0x0,0x20, + 0x4,0x3e,0x4,0x42,0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x41,0x4,0x42,0x4,0x32, + 0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30, + 0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e, + 0x4,0x33,0x4,0x35,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x4,0x1f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35, + 0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34, + 0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x4,0x4e, + 0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30, + 0x4,0x40,0x4,0x42,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68, + 0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69, + 0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72, + 0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x4,0x12,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e,0x4, + 0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x23,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x26,0x4,0x38, + 0x4,0x3a,0x4,0x3b,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x36,0x4,0x38,0x4,0x34, + 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x14,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x36,0x4,0x30,0x4, + 0x3b,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x4,0x28,0x4,0x38,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x30,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x23,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x4, + 0x31,0x4,0x4b,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x39,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4, + 0x43,0x4,0x36,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3d,0x4, + 0x35,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4, + 0x38,0x4,0x32,0x4,0x30,0x4,0x35,0x4,0x3c,0x4,0x43,0x4,0x4e,0x0,0x20,0x4, + 0x3a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4,0x40,0x4, + 0x30,0x4,0x46,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ko-KR.qm + 0x0,0x0,0x78,0x77, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x23,0x19,0x0,0x0,0x0,0x48, + 0x0,0x0,0x3a,0xe7,0x0,0x0,0x0,0x53,0x0,0x0,0x56,0x12,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0xa4,0x0,0x0,0x4,0xf2,0x0,0x0,0x42,0xa7,0x0,0x0,0x5,0x12, + 0x0,0x0,0x44,0x1a,0x0,0x0,0x5,0x3b,0x0,0x0,0x4c,0x5c,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x4c,0x93,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x43,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x97,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xeb,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x36,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x8a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xde,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x32,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x56,0x0,0x0,0x49,0xc3,0x0,0x0,0x22,0xde,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3f,0x34,0x0,0x0,0x4d,0x85,0x0,0x0,0x3f,0x52,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x4c,0x77,0x0,0x0,0x5d,0x81,0x0,0x0,0x69,0x15,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0xaf,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xf,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x10,0x7e,0x0,0x4,0x8c,0xaf,0x0,0x0,0x21,0x88,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x22,0xfa,0x0,0x4,0xa7,0x89,0x0,0x0,0x33,0x9f,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x37,0x7a,0x0,0x4,0xc8,0xa4,0x0,0x0,0x38,0x47,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x36,0x3d,0x0,0x4,0xd0,0x25,0x0,0x0,0x38,0x92,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x3a,0x81,0x0,0x5,0x56,0x45,0x0,0x0,0x4b,0xfb,0x0,0x5,0x78,0x79, + 0x0,0x0,0x56,0x2a,0x0,0x5,0x98,0xc5,0x0,0x0,0x57,0x12,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x59,0x81,0x0,0x5,0xc0,0x65,0x0,0x0,0x62,0xf7,0x0,0x12,0x74,0x52, + 0x0,0x0,0x16,0xae,0x0,0x19,0x74,0x52,0x0,0x0,0x16,0xe7,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0x19,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x65,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0x29,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0x25,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x10,0xd4,0x0,0x34,0x9,0xc8,0x0,0x0,0x12,0x8,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x65,0x11,0x0,0x3b,0xa9,0x68,0x0,0x0,0x17,0x6e,0x0,0x46,0x86,0x49, + 0x0,0x0,0x19,0xb9,0x0,0x4c,0x99,0x62,0x0,0x0,0x35,0x76,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2d,0xf1,0x0,0x58,0xc9,0xc4,0x0,0x0,0x55,0xc3,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x5b,0xbb,0x0,0x5a,0x6c,0x44,0x0,0x0,0x59,0xe4,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x62,0xad,0x0,0x5c,0x6,0x8a,0x0,0x0,0x63,0x14,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x6b,0x47,0x0,0x73,0x75,0x3e,0x0,0x0,0x2c,0xd4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x4b,0xbb,0x0,0x97,0x96,0x4,0x0,0x0,0x2f,0xe,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x41,0x1f,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x42,0x7f,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x3d,0x30,0x0,0xb8,0x5f,0x43,0x0,0x0,0x4d,0xf7,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x16,0x75,0x1,0x9,0x1c,0x92,0x0,0x0,0x36,0xe4,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x25,0x78,0x1,0x39,0xa4,0xce,0x0,0x0,0x49,0x1e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x62,0xcb,0x1,0x4c,0x50,0xee,0x0,0x0,0x54,0x14,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x3c,0xf7,0x1,0x61,0xac,0xc9,0x0,0x0,0x11,0x70,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x61,0x9e,0x1,0x7a,0x2c,0x99,0x0,0x0,0x32,0x45,0x1,0x91,0xe,0x73, + 0x0,0x0,0x23,0xb7,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3e,0xf0,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x45,0x73,0x1,0xb0,0x47,0x5c,0x0,0x0,0x44,0x35,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x8d,0x1,0xc8,0x65,0x8f,0x0,0x0,0x36,0x5c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0x33,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0xf3,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2a,0x76,0x1,0xe6,0x0,0xe9,0x0,0x0,0x56,0xd0,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x5b,0xfa,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0x2e,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x5d,0xd,0x2,0x23,0x3c,0x6b,0x0,0x0,0x5c,0xc8,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x5c,0x83,0x2,0x3c,0xaa,0x89,0x0,0x0,0x14,0x4c,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x3e,0x75,0x2,0x78,0x48,0x1a,0x0,0x0,0x45,0x39,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x69,0x75,0x2,0x90,0x8d,0x12,0x0,0x0,0x37,0x9b,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x4e,0x60,0x2,0xad,0x4a,0x22,0x0,0x0,0x54,0x67,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0x25,0x2,0xb3,0xba,0xf1,0x0,0x0,0xb,0x0,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0xfa,0x2,0xbb,0x66,0x33,0x0,0x0,0x10,0x8,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x10,0xa5,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x4e,0x2c,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x6b,0x6b,0x3,0x5,0x38,0xb2,0x0,0x0,0x35,0x94,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x50,0xfd,0x3,0x41,0x45,0x12,0x0,0x0,0x12,0x32,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x12,0xee,0x3,0x4b,0x26,0xf2,0x0,0x0,0x13,0x15,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x44,0x5f,0x3,0x65,0x26,0xf2,0x0,0x0,0x15,0xb1,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x15,0xd8,0x3,0x6a,0x66,0x2e,0x0,0x0,0x47,0xe3,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x46,0x52,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0xca,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x29,0x77,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0xbf,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x17,0x20,0x3,0xa4,0x35,0xa5,0x0,0x0,0x37,0x5a,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x37,0x22,0x3,0xa5,0x26,0xf2,0x0,0x0,0x17,0x47,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x49,0xad,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x5c,0x3b,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x5b,0x4,0x3,0xe4,0x25,0x5a,0x0,0x0,0x5a,0xd0,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x5a,0x9c,0x3,0xe4,0x25,0x7a,0x0,0x0,0x5a,0x68,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x7a,0x4,0x3,0xf6,0x9a,0x0,0x0,0x47,0x92,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x14,0xa3,0x4,0x15,0x75,0x22,0x0,0x0,0x12,0x59,0x4,0x17,0x65,0x22, + 0x0,0x0,0x12,0x83,0x4,0x1c,0x68,0x69,0x0,0x0,0x13,0xf2,0x4,0x23,0x29,0x55, + 0x0,0x0,0x9,0xfc,0x4,0x31,0xff,0xe9,0x0,0x0,0x21,0xa5,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x24,0x69,0x4,0x51,0x79,0xb1,0x0,0x0,0x5d,0xb7,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x63,0xe8,0x4,0x5b,0x53,0x1f,0x0,0x0,0x21,0x14,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x5a,0x3f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x32,0xd8,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x33,0x1,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x2c,0x7b,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x28,0xc0,0x4,0xb8,0x1,0x2e,0x0,0x0,0x30,0x22,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xb,0x51,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x30,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x15,0x57,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x4a,0xc2,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x2b,0x78,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0xfd,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1a,0x57,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x4a,0xe6,0x4,0xeb,0x2f,0xa,0x0,0x0,0x43,0x86,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x3e,0x32,0x5,0x18,0x5,0x95,0x0,0x0,0x65,0x69,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x13,0x77,0x5,0x30,0xd3,0xe,0x0,0x0,0x31,0xc8,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x4a,0x9f,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x6a,0xa,0x5,0x5f,0x7b,0x59,0x0,0x0,0xe,0x8c,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x33,0x5b,0x5,0x88,0x2e,0xd9,0x0,0x0,0x59,0x9e,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x46,0x72,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x62,0x78,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x5e,0x93,0x5,0xa5,0x3a,0x79,0x0,0x0,0x21,0xf3,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x5b,0xd9,0x5,0xb2,0x16,0x79,0x0,0x0,0x54,0xc8,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x3b,0xb2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x3c,0xb6,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x35,0x35,0x5,0xb8,0x5d,0xad,0x0,0x0,0x13,0x3c,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x11,0xcd,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x12,0xad,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3e,0xb4,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2f,0x80,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x67,0xcd,0x5,0xd0,0x4f,0x11,0x0,0x0,0x68,0x5b,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xd,0xa6,0x5,0xdf,0xba,0xba,0x0,0x0,0x68,0x9b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x53,0xaa,0x6,0x7,0xd3,0xda,0x0,0x0,0x40,0x65,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2f,0x39,0x6,0x19,0x20,0x43,0x0,0x0,0x57,0x2f,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x31,0x9c,0x6,0x38,0x9f,0x35,0x0,0x0,0x2f,0xdb,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1b,0x5a,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x1f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x2b,0x9a,0x6,0x6c,0xb8,0x3,0x0,0x0,0x66,0x7e,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x3d,0x69,0x6,0x74,0xe,0x6a,0x0,0x0,0x4e,0xf9,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x3d,0xc2,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1a,0x25,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x34,0x35,0x6,0x81,0xb7,0x1f,0x0,0x0,0x30,0xef,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x5b,0x38,0x6,0x96,0xa4,0x13,0x0,0x0,0x39,0x96,0x6,0x97,0x71,0x79, + 0x0,0x0,0x56,0x90,0x6,0xc3,0xce,0xa3,0x0,0x0,0x5d,0x52,0x6,0xce,0x41,0x63, + 0x0,0x0,0x3a,0xe,0x6,0xed,0xca,0xce,0x0,0x0,0x3b,0x32,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x2a,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xde,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x3d,0x94,0x7,0x0,0x57,0x53,0x0,0x0,0x23,0x31,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x46,0x26,0x7,0x6,0x93,0xe3,0x0,0x0,0x6a,0xe4,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1b,0x2f,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x6f,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1a,0xc4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x59,0x54,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x4a,0x2e,0x7,0x35,0x7c,0x8a,0x0,0x0,0x3f,0xf5,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x50,0x9b,0x7,0x40,0xb5,0xe2,0x0,0x0,0x16,0x42,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x2b,0x25,0x7,0x58,0x61,0xe5,0x0,0x0,0x3d,0xe7,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x10,0x2f,0x7,0x70,0xb3,0xaa,0x0,0x0,0x38,0xaf,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x28,0x94,0x7,0x9e,0x50,0x1e,0x0,0x0,0x55,0xe3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x47,0xc0,0x7,0xa3,0x63,0x9e,0x0,0x0,0x55,0x35,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x4c,0xfb,0x7,0xa4,0x32,0x89,0x0,0x0,0x19,0xdd,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x66,0x3f,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xd0,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x0,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x22,0x35,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x51,0xfe,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x51,0xbf,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x33,0xc0,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x56,0x4b,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3f,0xb2,0x8,0x0,0x3f,0x29,0x0,0x0,0x51,0x55,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x49,0xd1,0x8,0x31,0xf7,0xee,0x0,0x0,0xb,0x8a,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x43,0xea,0x8,0x60,0xe7,0xcd,0x0,0x0,0x61,0xfd,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x4f,0x25,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0xa7,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x63,0x34,0x8,0x9b,0xc,0x24,0x0,0x0,0x58,0x37,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x41,0xaf,0x8,0xa3,0xdb,0xae,0x0,0x0,0x42,0x4b,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x41,0xe3,0x8,0xa4,0xb,0xae,0x0,0x0,0x42,0x17,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x32,0x93,0x8,0xa9,0xcf,0x35,0x0,0x0,0x29,0xea,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x35,0xd8,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x77,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x34,0xb9,0x8,0xf7,0xb3,0xda,0x0,0x0,0x39,0xd9,0x9,0x9,0x24,0x29, + 0x0,0x0,0x43,0xaa,0x9,0x49,0xfa,0x4a,0x0,0x0,0x2c,0x1b,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x2c,0x4b,0x9,0x49,0xfa,0x6a,0x0,0x0,0x2b,0xbb,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x2b,0xeb,0x9,0x4e,0xde,0x64,0x0,0x0,0x63,0x83,0x9,0x50,0x63,0x15, + 0x0,0x0,0x4b,0x4f,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x67,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0xff,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0xbb,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x52,0xc3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x5a,0x9,0x88,0x63,0xa, + 0x0,0x0,0x28,0xdf,0x9,0x88,0x63,0x1a,0x0,0x0,0x29,0x5,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x29,0x2b,0x9,0x88,0x63,0x3a,0x0,0x0,0x29,0x51,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0xae,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x9b,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x2,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x4b,0x1d,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x50,0x19,0x9,0xc2,0x33,0xa9,0x0,0x0,0x13,0xa1,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x4a,0x6a,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2d,0x3b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xf,0x45,0xa,0xf,0x3d,0xb9,0x0,0x0,0xf,0x77,0xa,0x17,0x34,0x34, + 0x0,0x0,0x34,0xf6,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x81,0xa,0x41,0x77,0x3, + 0x0,0x0,0x39,0x4e,0xa,0x4e,0x21,0xe,0x0,0x0,0x19,0x89,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x3a,0x3c,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x34,0x87,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x41,0x6b,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0xbe,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x65,0xae,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x57,0xbe,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x5d,0x88,0xa,0x98,0x1f,0x89,0x0,0x0,0x2e,0x5d,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2e,0x18,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x40,0xbd,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2d,0xc1,0xa,0xbc,0x8a,0x94,0x0,0x0,0x6,0xff,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2e,0xa2,0xa,0xda,0x50,0x7e,0x0,0x0,0x64,0x6d,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xe,0x38,0xa,0xea,0x46,0xf4,0x0,0x0,0x4b,0x77,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2e,0xc4,0xb,0xa,0x72,0xc9,0x0,0x0,0x30,0xc9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x62,0xb,0x1e,0xee,0xfe,0x0,0x0,0x48,0xaf,0xb,0x29,0x70,0x65, + 0x0,0x0,0x3a,0xa0,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0xd0,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0xc4,0xb,0x4e,0x19,0x54,0x0,0x0,0x44,0xad,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0xc2,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0x3d,0xb,0x95,0xed,0xa, + 0x0,0x0,0x45,0xf5,0xb,0x9d,0xe,0xa2,0x0,0x0,0x2a,0xfb,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x19,0x5f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x57,0x9b,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x5a,0x4,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x20,0xbd,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x3b,0xf3,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3f,0x70,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x6a,0xb2,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x50,0xcf,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x5e,0xd,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0x4f,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xe,0xce,0xc,0x33,0xeb,0xe2,0x0,0x0,0x5e,0x4f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x38,0xd6,0xc,0x42,0x70,0xde,0x0,0x0,0x23,0xed,0xc,0x48,0x83,0xde, + 0x0,0x0,0x52,0x3d,0xc,0x4a,0x5f,0x82,0x0,0x0,0x40,0xe9,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x5f,0xa1,0xc,0x77,0x67,0x19,0x0,0x0,0x39,0x2,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x31,0x6a,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xe6,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x2a,0x15,0xc,0x90,0x26,0xb5,0x0,0x0,0x64,0xcf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x4e,0xa2,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x23,0x7c,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x59,0x33,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xa2,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x4c,0xae,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x66,0xa8,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x51,0x97,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x17,0x92,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1a,0x94,0xd,0x11,0x45,0x1a,0x0,0x0,0x22,0xb2,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x67,0xf6,0xd,0x4a,0x90,0xb2,0x0,0x0,0x55,0x9,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x68,0xe6,0xd,0x60,0xef,0x6a,0x0,0x0,0x40,0x8d,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2d,0x7d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x37,0xff,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x30,0x9c,0xd,0x88,0x48,0x23,0x0,0x0,0x29,0xb5,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x33,0x2a,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x56,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x69,0xaf,0xd,0xf9,0x90,0xe9,0x0,0x0,0x4c,0x18,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x68,0xbc,0xe,0x20,0x13,0x12,0x0,0x0,0x38,0x64,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xf,0xcd,0xe,0x48,0xfa,0xca,0x0,0x0,0x24,0xb4,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x25,0x16,0xe,0x48,0xfd,0xca,0x0,0x0,0x24,0xe5,0xe,0x48,0xff,0xca, + 0x0,0x0,0x25,0x47,0xe,0x62,0x79,0x4,0x0,0x0,0x31,0x3f,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1b,0x7,0xe,0x7b,0xa1,0x23,0x0,0x0,0x45,0xae,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2a,0xd8,0xe,0x98,0x18,0x54,0x0,0x0,0x22,0x6f,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x53,0x4a,0xe,0xbe,0x61,0x81,0x0,0x0,0x58,0x73,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x58,0xa3,0xe,0xbe,0x61,0x83,0x0,0x0,0x58,0xd3,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x59,0x3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x3e,0x53,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x11,0xa7,0xe,0xe2,0x34,0x60,0x0,0x0,0x6a,0x5e,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x6a,0x88,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xf7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0xee,0xe,0xf7,0xac,0xae,0x0,0x0,0xf,0x12,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x6b,0x11,0xf,0x15,0xf4,0x85,0x0,0x0,0x40,0x28,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x5f,0x11,0xf,0x17,0x9c,0x64,0x0,0x0,0x65,0xfd,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x4d,0xc0,0xf,0x29,0x4d,0x2a,0x0,0x0,0x3a,0xff,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x36,0xb1,0xf,0x30,0x6b,0x3,0x0,0x0,0x2a,0x47,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x5b,0x79,0xf,0x5a,0x14,0x2,0x0,0x0,0xd,0x6f,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x11,0x31,0xf,0x70,0xaa,0x1a,0x0,0x0,0x68,0x2e,0xf,0x74,0xd,0xca, + 0x0,0x0,0x54,0x9c,0xf,0x85,0x7b,0xea,0x0,0x0,0x4e,0xc8,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x10,0xfa,0xf,0xbd,0xdc,0x15,0x0,0x0,0xc,0x89,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x53,0xce,0xf,0xd3,0x41,0x72,0x0,0x0,0x32,0x10,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x42,0xc2,0xf,0xd9,0x8c,0xca,0x0,0x0,0x43,0x24,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x42,0xf3,0xf,0xd9,0x8f,0xca,0x0,0x0,0x43,0x55,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x34,0x5,0xf,0xe2,0xe9,0x49,0x0,0x0,0x69,0x33,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x4f,0x51,0xf,0xf5,0xeb,0x52,0x0,0x0,0x4f,0x83,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x4f,0xb5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x4f,0xe7,0x69,0x0,0x0,0x6b, + 0x95,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xca,0xc7,0x40,0x0,0x28,0xb2,0x94,0x0,0x29,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0x0,0x50, + 0x0,0x44,0x0,0x46,0xb8,0x5c,0x0,0x20,0xc7,0x90,0xb3,0xd9,0xbc,0xc0,0xd6,0x58, + 0xd5,0x58,0xb2,0x94,0x0,0x20,0xb3,0x70,0xc5,0xd0,0x0,0x20,0xd5,0x44,0xc6,0x94, + 0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa,0xd4,0x5c,0xc9,0x0, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0xd5,0x4,0xb9,0xb0,0xd1,0x30,0xb8,0x5c, + 0x0,0x20,0xbc,0xf4,0xb0,0xb4,0xc2,0xe0,0x0,0x20,0xc7,0x84,0xc7,0x58,0xc7,0x58, + 0x0,0x20,0xbb,0x38,0xc1,0x1c,0xb2,0x94,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0xd3,0xc,0xc7,0x7c, + 0xb8,0x5c,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xb4,0x29,0xb2,0xc8,0xb2,0xe4,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0xc7,0xa5, + 0xce,0x58,0x0,0x20,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x25,0x0,0x69,0x0,0x20,0xb3,0x0,0xae,0x30,0x0, + 0x20,0xc0,0xc1,0xd0,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25, + 0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20, + 0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x30,0x0,0x2e,0x0,0x35,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0xbc,0x30,0x0,0x28,0x0, + 0x26,0x0,0x31,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x32,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x32,0xbc, + 0x30,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0, + 0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0,0x26,0x0, + 0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34,0xbc,0x30, + 0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26, + 0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x35,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0xbc,0x30,0x0,0x28,0x0,0x26, + 0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38,0xbc,0x30, + 0x0,0x28,0x0,0x26,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xc5,0xd0,0x0,0x20,0xb3,0x0, + 0xd5,0x74,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0xb3,0xd9,0xc7,0x91,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xc8,0xfc,0xd6,0x69, + 0xc0,0xc9,0x0,0x20,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26,0x0,0x41, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0xc9,0xd1,0xc9,0x11,0xb8,0x25,0x0,0x20,0xc8,0x0,0xd5, + 0x58,0x0,0x20,0xc2,0xdc,0x0,0x20,0xc7,0x90,0xb3,0xd9,0x0,0x20,0xc7,0x7c,0xc2, + 0xdc,0x0,0x20,0xc9,0x11,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xd3,0xc9,0xad, + 0xe0,0xac,0x12,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c, + 0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0xae,0x30,0xbc,0xf8,0xac,0x12,0x0,0x28,0x0,0x26,0x0, + 0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0xbb,0x38,0xc1,0x1c,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20, + 0xbd,0x88,0xb7,0xec,0xc6,0x24,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xbd,0x88,0xb7, + 0xec,0xc6,0x24,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0xb9,0xe8,0xb0,0x5d,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xbe,0x68, + 0xb9,0xac,0xac,0x10,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xd3,0xf4,0xb3,0x54,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xc8,0x4,0xcc,0xb4, + 0x0,0x20,0xd6,0x54,0xba,0x74,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xd6,0x55,0xb3,0x0, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0xc8,0x4,0xcc,0xb4,0x0,0x20,0xd6,0x54,0xba,0x74,0x0,0x28,0x0,0x26,0x0, + 0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xb1,0x79,0xc0, + 0xc9,0x0,0x20,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26,0x0,0x47,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xb3,0xc4,0xc6,0xc0,0xb9, + 0xd0,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0xc0,0xc1,0xd0,0xdc,0x0,0x20,0xbc,0x14,0x0,0x20,0xc2,0x28,0xae, + 0x30,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0xc8,0x15,0xc2,0x18,0xbc,0x30,0x0,0x20,0xd6,0x55,0xb3,0x0,0x0,0x28, + 0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0xc0,0xc9,0xc0,0xc1,0x0,0x20,0xbc, + 0x18,0xc8,0x4,0xb4,0x1c,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0xba, + 0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64, + 0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0xd0,0xa4,0xbc,0xf4,0xb4,0xdc,0xb2,0x94,0x0, + 0x20,0xce,0xa1,0xcc,0xd0,0xac,0x0,0x0,0x20,0xd5,0x44,0xc6,0x94,0xd5,0x68,0x0, + 0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0xc1,0x20,0xd6,0x15,0x0,0x20,0xbc,0xf4,0xac,0x4, + 0xbc,0x95,0x0,0x28,0x0,0x26,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0xbb,0xf8,0xb5,0x14,0xc5,0xb4,0x0,0x28,0x0,0x26, + 0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d, + 0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc7, + 0x4c,0xc1,0x8c,0xac,0x70,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xcd,0x5c,0xad,0xfc,0xbc,0x29,0x0,0x20,0xc7, + 0x74,0xc6,0xc3,0x0,0x20,0xbc,0xf4,0xac,0x4,0xbc,0x95,0x0,0x28,0x0,0x26,0x0, + 0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0xc0,0xc8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x4e, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0xc0,0xc8,0xb8,0x5c,0x0,0x20, + 0xb9,0xcc,0xb4,0xe4,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0xc7,0x7c,0xc2,0xdc,0xc8,0x15,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xc7,0xac,0xc0,0xdd,0xd5, + 0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0xd6,0x58,0xac,0xbd,0xc1,0x24,0xc8,0x15,0x0,0x28,0x0, + 0x26,0x0,0x50,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0xd6,0x8c,0xc0,0xc9,0xc8,0x70,0x0,0x28,0x0, + 0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xb1,0x79,0xc7,0x4c,0xd5,0x58,0xae,0x30, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0xc7,0x74,0xc8,0x4,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0, + 0x0,0x20,0xb2,0xe4,0xc2,0xdc,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6,0x24,0xae,0x30, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0xba,0xa9,0xb8,0x5d,0xc5,0xd0,0xc1,0x1c,0x0,0x20,0xc8,0x1c,0xac, + 0x70,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0xc2,0x50,0xc7,0x74,0xb3,0x54,0x0,0x20,0xb0,0x44,0xae, + 0x30,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xcc,0x3d,0x0,0x20, + 0xd0,0x6c,0xae,0x30,0x0,0x20,0xc8,0x70,0xc8,0x8,0x0,0x20,0xac,0x0,0xb2,0xa5, + 0xd5,0x58,0xac,0x8c,0x0,0x20,0xd5,0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x52, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xb9,0xe8,0xc5,0x5e,0xc7,0x3c,0xb8, + 0x5c,0x0,0x20,0xb4,0x18,0xac,0x10,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0xc6,0xb0, + 0xce,0x21,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0xb8,0x5c,0x0,0x20,0xc8,0x8c, + 0xce,0x21,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0xc7,0x85,0xb8,0x25,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0xc1,0x8c,0xd5,0x4, + 0xd2,0xb8,0xc6,0xe8,0xc5,0xb4,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28, + 0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0xc2,0x50,0xc7,0x74,0xb3,0x54,0x0,0x20,0xbd,0x88,0xb7,0xec, + 0xc6,0x24,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c, + 0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc1,0x24,0xc8,0x15,0x0,0x28,0x0,0x26, + 0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc5,0xf4,0xae,0x30,0x0, + 0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xc8,0x15,0xc0, + 0xac,0xac,0x1,0xd6,0x15,0x0,0x20,0xd5,0x3d,0xc1,0x40,0x0,0x20,0x0,0x28,0xbe, + 0x44,0xc7,0x28,0x0,0x20,0xc7,0x20,0xc9,0xc0,0x0,0x29,0x0,0x28,0x0,0x26,0x0, + 0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71, + 0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0xbe,0x44,0xb5,0x14,0xc6,0x24,0xc6,0x40,0x0,0x20,0xb3,0xd9,0xae, + 0x30,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69, + 0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xb3,0xc4, + 0xad,0x6c,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0xc0,0xc1,0xd0,0xdc,0x0,0x20,0xbc,0x14,0x0,0x20,0xc5, + 0x44,0xc7,0x74,0xcf,0x58,0x0,0x20,0xac,0x31,0xc2,0xe0,0xd5,0x58,0xae,0x30,0x0, + 0x28,0x0,0x26,0x0,0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26,0x0,0x56, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xc2,0x18,0xc9,0xc1,0x0, + 0x20,0xb3,0xd9,0xae,0x30,0xd6,0x54,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xd4,0x5c,0xc2,0xdc,0x0,0x28, + 0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0xd7,0x70,0xc0,0xc9,0x0,0x20,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26, + 0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xcc,0x3d,0x0,0x20,0xd4,0x5c,0xc2,0xdc,0x0, + 0x20,0xbc,0x30,0xc7,0x28,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x28,0xc2,0xdc,0xc2,0xa4,0xd1,0x5c,0x0,0x20, + 0xae,0x30,0xbc,0xf8,0xac,0x12,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x28,0xbe, + 0x44,0xc5,0xc8,0xc7,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x31,0x0,0x25,0x0,0x20,0xb0,0xae,0xc7,0x40,0x0,0x20,0xd6, + 0x8c,0xc8,0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x31, + 0x0,0x2e,0x0,0x35,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0xb0,0xae,0xc7, + 0x40,0x0,0x20,0xd6,0x8c,0xc8,0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x32,0x0,0x25,0x0,0x20,0xb0,0xae,0xc7,0x40,0x0,0x20,0xd6,0x8c, + 0xc8,0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25, + 0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0, + 0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e, + 0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f, + 0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e, + 0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69, + 0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33, + 0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0, + 0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0xc8,0x15,0xc2, + 0x18,0xbc,0x30,0x0,0x20,0xd6,0x55,0xb3,0x0,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xc,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0xc5,0xd0,0xc1,0x1c,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x0,0x20,0xac,0x0, + 0xb2,0xa5,0xd5,0x5c,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0xc7,0x74, + 0xbb,0xf8,0xc9,0xc0,0xb9,0x7c,0x0,0x20,0xcc,0x3e,0xc7,0x44,0x0,0x20,0xc2,0x18, + 0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0xc1,0x38,0xd2,0xb8,0xb9,0x7c,0x0,0x3c, + 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22, + 0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f, + 0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0xb2,0xe4, + 0xc6,0xb4,0xb8,0x5c,0xb4,0xdc,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20, + 0xd6,0xc4,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22, + 0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0x0,0x20,0xc5,0x55, + 0xcd,0x95,0xc7,0x44,0x0,0x20,0xd4,0x80,0xc5,0xb4,0x0,0x20,0xc8,0xfc,0xc1,0x38, + 0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0xc8,0x85,0xb8,0xcc,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74, + 0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41, + 0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0xc5,0xd0,0x0,0x20,0xb3,0x0,0xd5,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xae,0x30,0xc8, + 0x74,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xc0,0xc8,0xb8,0x5c,0x0,0x20, + 0xc0,0xdd,0xc1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xc5,0xb4,0xb4,0xdc,0xbc,0x34, + 0xc2,0xa4,0xb4,0xdc,0x0,0x20,0xc1,0x39,0xd1,0x30,0x0,0x20,0xc7,0x74,0xbb,0xf8, + 0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61, + 0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xba,0xa8,0xb4, + 0xe0,0x0,0x20,0xd3,0xc,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0xba,0xa8,0xb4,0xe0,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9, + 0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x6a, + 0xac,0xe0,0xc8,0x4,0x0,0x20,0xce,0xf4,0xd4,0xe8,0xd1,0x30,0x0,0x20,0xc5,0xd0, + 0xbb,0xac,0xb8,0x8,0xc7,0x74,0xd1,0x30,0x0,0xa,0x0,0xa,0xc8,0x0,0xc7,0x90, + 0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61, + 0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47, + 0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64, + 0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79, + 0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50, + 0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0xb7,0x7c,0xc7,0x74, + 0xc1,0x20,0xc2,0xa4,0x0,0x20,0x0,0x28,0xbc,0x84,0xc8,0x4,0x0,0x20,0x0,0x32, + 0x0,0x20,0xc7,0x74,0xc0,0xc1,0x0,0x29,0xc5,0xd0,0x0,0x20,0xc7,0x58,0xd5,0x74, + 0x0,0x20,0xbc,0x30,0xd3,0xec,0xb4,0x18,0xc5,0xc8,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4, + 0x0,0x2e,0x0,0x20,0xc7,0x90,0xc1,0x38,0xd5,0x5c,0x0,0x20,0xb0,0xb4,0xc6,0xa9, + 0xc7,0x40,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xc7,0x7d,0xc5,0xb4, + 0x0,0x20,0xc8,0xfc,0xc1,0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20, + 0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73, + 0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e, + 0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72, + 0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20, + 0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20, + 0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77, + 0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e, + 0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a, + 0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20, + 0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65, + 0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42, + 0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63, + 0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34, + 0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b, + 0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20, + 0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69, + 0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e, + 0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20, + 0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f, + 0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61, + 0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f, + 0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74, + 0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e, + 0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65, + 0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e, + 0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20, + 0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e, + 0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f, + 0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xb9,0x7c,0x0, + 0x20,0xb0,0x5d,0xb0,0xb4,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xc2,0xe4,0xd5,0x89,0xc9,0x11, + 0xc7,0x78,0x0,0x20,0xba,0x38,0xc2,0xe0,0xc7,0x44,0x0,0x20,0xc7,0xac,0xc2,0xdc, + 0xc7,0x91,0xd5,0x58,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68, + 0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc7,0x90, + 0xb3,0xd9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0x54,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0, + 0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26, + 0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x54,0x0,0x37,0x0, + 0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0, + 0x29,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xae,0x30,0xbc,0xf8,0x0, + 0x20,0xc1,0x39,0xd1,0x30,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0xcd,0x94,0xc8,0x1,0x0,0x20,0xc2,0xdc,0xc7,0x91,0xd5, + 0x58,0xae,0x30,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e, + 0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xbe,0x14,0xb8,0x5d,0x0,0x20,0xd0,0x6c, + 0xae,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0xbc,0x84,0xc2,0xa4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0xbc,0x84,0xc2,0xa4,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28, + 0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9, + 0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0, + 0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0, + 0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0xc6,0x24,0xbc,0x84,0xc2,0xa4,0xce,0x94,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f, + 0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72, + 0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x32,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x96,0xc7,0x74, + 0x0,0x20,0xc5,0xd0,0xbb,0xac,0xb8,0x8,0xc7,0x74,0xd2,0xb8,0xb4,0x1c,0x0,0x20, + 0xae,0x30,0xc8,0x85,0xc5,0xd0,0x0,0x20,0xb3,0x0,0xd5,0x74,0x0,0x20,0xc1,0x20, + 0xd0,0xdd,0xd5,0x5c,0x0,0x20,0xae,0x30,0xc8,0x85,0xc7,0x44,0x0,0x20,0xae,0x30, + 0xbc,0x18,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xd5,0x58,0xb2,0x94,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0xc8,0x85,0xb9,0x58,0x0,0x20,0xd5,0x44,0xd1,0x30, + 0xb9,0xc1,0xc7,0x74,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xb4,0x18,0xc9,0xc0,0x0,0x20, + 0xc5,0x4a,0xb3,0xc4,0xb8,0x5d,0x0,0x20,0xc1,0x24,0xc8,0x15,0xb4,0x18,0xc5,0xc8, + 0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa,0xb5,0x30,0xb7,0x7c, + 0xc1,0x1c,0x0,0x20,0xc1,0x20,0xd0,0xdd,0xb4,0x1c,0x0,0x20,0xba,0x38,0xc2,0xe0, + 0xac,0xfc,0x0,0x20,0xd6,0x38,0xd6,0x58,0xb4,0x18,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xb2,0x94,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0xb9,0x7c,0x0,0x20,0xc1,0x20, + 0xd0,0xdd,0xd5,0x58,0xc2,0xe4,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5, + 0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xd5,0x58,0xc9,0xc0,0xb9,0xcc,0x0,0x20, + 0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0,0x20, + 0xb2,0xe4,0xb9,0x78,0x0,0x20,0xc1,0x8c,0xd5,0x4,0xd2,0xb8,0xc6,0xe8,0xc5,0xb4, + 0xc6,0x40,0x0,0x20,0xd6,0x38,0xd6,0x58,0xb4,0x18,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xc7,0x44,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4, + 0x0,0x2e,0x0,0xa,0x0,0xa,0xc7,0x74,0x0,0x20,0xc1,0x24,0xc8,0x15,0xc7,0x44, + 0x0,0x20,0xd6,0x5c,0xc1,0x31,0xd6,0x54,0xd5,0x58,0xb2,0x94,0x0,0x20,0xac,0x83, + 0xc7,0x40,0x0,0x20,0xac,0xf5,0xc2,0xdd,0xc8,0x1,0xc7,0x3c,0xb8,0x5c,0x0,0x20, + 0xc9,0xc0,0xc6,0xd0,0xb4,0x18,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x3c,0xba,0x70, + 0x0,0x2c,0x0,0x20,0xc8,0x1c,0xcd,0x9c,0xb4,0x1c,0x0,0x20,0xbc,0x84,0xad,0xf8, + 0x0,0x20,0xbc,0xf4,0xac,0xe0,0xc1,0x1c,0xb2,0x94,0x0,0x20,0xc7,0x20,0xd6,0xa8, + 0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x4c,0xc7,0x3c,0xb8,0x5c,0x0,0x20, + 0xb2,0xeb,0xd7,0x90,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67, + 0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74, + 0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f, + 0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69, + 0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68, + 0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75, + 0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20, + 0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69, + 0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c, + 0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20, + 0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f, + 0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50,0x0,0x55, + 0x0,0x20,0xc8,0x85,0xb9,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0xcd,0xe8,0xc1,0x8c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xce,0x74,0xb4,0xdc,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xce,0x74,0xd2, + 0xb8,0xb9,0xac,0xc9,0xc0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xce,0x74,0xd2,0xb8,0xb9, + 0xac,0xc9,0xc0,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0xce,0x74,0xc1,0x38,0xd2,0xb8,0x0,0x20,0xd1,0x4c,0xc7,0x74,0xd5,0x4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xce,0x74,0xc1,0x38,0xd2, + 0xb8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xce,0x74,0xc1, + 0x38,0xd2,0xb8,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xd7,0x51,0xbc,0x31, + 0x0,0x20,0xd4,0x5c,0xc2,0xdc,0xb9,0x7c,0x0,0x20,0xc7,0x4,0xd5,0x5c,0x0,0x20, + 0xbc,0x1d,0xae,0x30,0x0,0x20,0xc8,0x70,0xc8,0x15,0x0,0x28,0x0,0x26,0x0,0x4d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xcc,0x44, + 0xb1,0x10,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x42,0x0,0x50,0x0,0x42,0x0,0x20,0xd6,0x55,0xc7,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0xc7,0x74,0x0,0x20,0xcc, + 0x3d,0xc7,0x44,0x0,0x20,0xd0,0x74,0xb9,0xad,0xd5,0x58,0xba,0x74,0x0,0x20,0xb9, + 0xc8,0xc6,0xb0,0xc2,0xa4,0xb9,0x7c,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x69,0xb2, + 0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc1,0x24, + 0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0xac,0xc4,0xc1,0x8d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f, + 0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0xd0,0xc0,0xc7,0x84,0xc2,0xa4,0xd0, + 0xec,0xd5,0x4,0xb9,0x7c,0x0,0x20,0xac,0xe0,0xce,0x60,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0xbe,0x44,0xb5,0x14,0xc6,0x24, + 0x0,0x20,0xb8,0xc,0xb3,0x54,0xb7,0xec,0xb9,0x7c,0x0,0x20,0xcd,0x8,0xae,0x30, + 0xd6,0x54,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0xc0,0xac,0xc6,0xa9,0xc7,0x90,0x0,0x20,0xc1,0x24,0xc8,0x15,0x0, + 0x20,0x0,0x28,0xb3,0x0,0xc6,0xa9,0xb7,0xc9,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac,0xc6,0xa9,0xc7,0x90,0x0,0x20,0xc1, + 0x24,0xc8,0x15,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xc2,0xe4,0xb9,0xb0,0xb3,0x54,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44, + 0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0xd0,0x74,0xb7,0xec,0xc2,0xa4,0xd1,0x30, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0xd0,0x74,0xb7, + 0xec,0xc2,0xa4,0xd1,0x30,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28, + 0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xae,0x30,0xbc,0xf8,0xac,0x12,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0xb5,0x14,0xd3,0x7c,0xb7,0xf0, + 0xc2,0xf1,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0xc0,0xac,0xc6,0xa9,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xc7,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0xb5, + 0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac,0x0,0x0, + 0x20,0xc0,0xdd,0xc1,0x31,0xb4,0x18,0xc5,0xc8,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74, + 0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x74,0x0,0x20,0xc7,0x74, + 0xbb,0xf8,0x0,0x20,0xc8,0x74,0xc7,0xac,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20, + 0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac, + 0x0,0x0,0x20,0xb1,0x8,0xbb,0x34,0x0,0x20,0xd0,0x7d,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20, + 0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xb2,0x94,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37, + 0x0,0x47,0x0,0x42,0x0,0x20,0xc7,0x74,0xc0,0xc1,0xc7,0x3c,0xb8,0x5c,0x0,0x20, + 0xc9,0xc0,0xc8,0x15,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5, + 0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc6,0xa9,0xb7,0xc9,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xb5, + 0x14,0xc2,0xa4,0xd5,0xc,0xb8,0x8,0xc7,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0xc1,0x24,0xc8,0x15,0xc7,0x44,0x0,0x20,0xc8,0x0,0xc7, + 0xa5,0xd5,0x58,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0xb0,0x5d,0xb0,0xb4,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xae, + 0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74, + 0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0xb3,0x6e,0xc5,0xb4,0xc4,0xf0,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x0,0x20,0xc5,0x48,0xd5,0x68,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65, + 0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xc7,0x74, + 0x0,0x20,0xba,0x54,0xc2,0xdc,0xc9,0xc0,0x0,0x20,0xad,0xf8,0xb9,0xcc,0x0,0x20, + 0xbc,0xf4,0xae,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0xb3,0xd9,0xc8,0x1,0x0,0x20,0xc7,0xac,0xce,0xf4, + 0xd3,0xc,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79, + 0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0xb3,0xd9,0xc8,0x1,0x0, + 0x20,0xc0,0xac,0xc7,0x74,0xc9,0x88,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x45,0x0,0x26,0x0,0x47,0x0, + 0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xae,0xbc, + 0xb0,0xb4,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbe,0x44,0xc5,0xc8,0xc7,0x4c,0x0,0x28,0x0, + 0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0xb0,0x5d,0xb0,0xb4,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x38,0x0,0x36,0x0,0x46,0xb8,0x5c,0x0,0x20,0xbc,0xf4,0xb0,0xb4,0xae, + 0x30,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc7,0x74,0xc8,0x4,0x0, + 0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0xb5,0x14,0xc2,0xa4,0xcf, + 0x54,0xb4,0xdc,0x0,0x20,0xc5,0xf0,0xb3,0xd9,0x0,0x20,0xd6,0x5c,0xc1,0x31,0xd6, + 0x54,0xd5,0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44, + 0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xc0,0xac,0xc6, + 0xa9,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xc0, + 0xac,0xc6,0xa9,0x0,0x20,0x0,0x28,0xd6,0x4,0xc9,0xc0,0x0,0x20,0xc2,0xdc,0xac, + 0x4,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0xcd,0x94,0xc8,0x1, + 0x0,0x20,0xb0,0x5d,0xb0,0xb4,0xae,0x30,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xc8,0x4,0xcc,0xb4,0x0, + 0x20,0xd6,0x54,0xba,0x74,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xc8,0x4,0xd6,0x58,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e, + 0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc6,0x24,0xb9,0x58, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xb8,0xc,0xb3,0x54,0xb7,0xec, + 0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0x0,0x20,0xc6,0x24,0xb9,0x58,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0xc7,0x74, + 0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6,0x24,0xae,0x30,0x0,0x20, + 0x0,0x28,0xc4,0xf0,0xae,0x30,0xbc,0x29,0xc9,0xc0,0x0,0x29,0x0,0x28,0x0,0x26, + 0x0,0x57,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0xb0,0x5d,0xb0,0xb4,0xae,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0xd6,0x54,0xba,0x74,0x0,0x20,0xbe,0x44,0xc7,0x28,0xc7,0x44,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xb9,0xde,0xcd,0x94, + 0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x44,0x0,0x20,0xce,0xe8,0xd2, + 0xb8,0xb8,0x64,0xb7,0xec,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x4d,0x0,0x20, + 0xc2,0xe0,0xb5,0x14,0xc0,0xac,0xc7,0x74,0xc8,0x0,0x0,0x20,0xb4,0xdc,0xb7,0x7c, + 0xc7,0x74,0xbc,0x84,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x61,0x0,0x6c,0x0,0x67, + 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x69, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7, + 0x74,0xbc,0x84,0xb9,0x7c,0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0xd5,0x58,0xc9, + 0xc0,0x0,0x20,0xba,0xbb,0xd5,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc1, + 0x24,0xc8,0x15,0xc5,0xd0,0x0,0x20,0xc2,0xe4,0xd3,0x28,0xd5,0x88,0xc2,0xb5,0xb2, + 0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xbe,0x60,0xb9, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xce,0x58,0xba,0x85,0xc8,0x1, + 0xc7,0x78,0x0,0x20,0xc6,0x24,0xb9,0x58,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xd3,0xc,0xc7,0x7c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0xd3,0xc,0xc7,0x7c,0xba,0x85,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xd5,0x44,0xd1,0x30, + 0x0,0x20,0xd6,0x15,0xc2,0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0xac,0xe0,0xc8,0x15,0x0,0x20,0xc0,0xac, + 0xc7,0x74,0xc9,0x88,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0xd5,0xc,0xb8,0x5c,0xd5,0x3c,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xd5,0xc,0xb8,0x5c, + 0xd5,0x3c,0x0,0x20,0x0,0x2f,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xd5, + 0xc,0xb8,0x5c,0xd5,0x3c,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0xd5,0xc,0xb7,0xed,0xc2,0xa4,0x0,0x20,0xc7,0x74,0xbb,0xf8, + 0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0xc8,0x4,0xcc,0xb4,0x0,0x20,0xd6,0x54,0xba,0x74,0x0,0x20,0xbe,0x44, + 0xc7,0x28,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26, + 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc9,0x9d,0xac,0x0,0xac,0x12,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0xd6,0x8c,0xc0,0xc9,0xc8,0x70,0x0,0x20,0xd4,0x5c, + 0xd6,0x4,0xbc,0x29,0xc2,0xdd,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79, + 0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x48,0x0,0x44,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8, + 0x64,0xb7,0xec,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xb2,0x94, + 0x0,0x20,0x0,0x34,0x0,0x47,0x0,0x42,0x0,0x20,0xc7,0x74,0xc0,0xc1,0xc7,0x3c, + 0xb8,0x5c,0x0,0x20,0xc9,0xc0,0xc8,0x15,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20, + 0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0xbc,0x14,0xc7,0x74,0xd2,0xb8,0x0,0x20,0xc7,0x74,0xc6,0x78,0xc7,0x58,0x0, + 0x20,0xc1,0x39,0xd1,0x30,0x0,0x20,0xd0,0x6c,0xae,0x30,0xb9,0x7c,0x0,0x20,0xac, + 0x0,0xc9,0xc4,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0xb6,0x10,0xb2, + 0x94,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0xd6,0x15,0xc2,0xdd,0xc7, + 0x58,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xb9,0x7c,0x0,0x20,0xc0,0xdd,0xc1, + 0x31,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2, + 0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x44, + 0x0,0x58,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xd5,0x58,0xb4, + 0xdc,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0xd5,0x58,0xb4,0xdc,0x0,0x20,0xb5,0x14,0xc2,0xa4, + 0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xd5, + 0x58,0xb4,0xdc,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xd5,0x58,0xb4,0xdc,0x0,0x20, + 0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0xd5,0x58,0xb4, + 0xdc,0xc6,0xe8,0xc5,0xb4,0xb9,0x7c,0x0,0x20,0xc7,0x74,0xc6,0xa9,0xd5,0x60,0x0, + 0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xd5,0xe4,0xb4,0xdc,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc1,0x38,0xb8,0x5c,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x69,0x0, + 0x44,0x0,0x50,0x0,0x49,0x0,0x20,0xc2,0xa4,0xcf,0x0,0xc7,0x7c,0xb9,0xc1,0x0, + 0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0xad,0xf8,0xb7,0x98, + 0xd5,0x3d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20, + 0xba,0x54,0xba,0xa8,0xb9,0xac,0x0,0x20,0xd6,0x55,0xc7,0xa5,0x0,0x20,0xce,0x74, + 0xb4,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72, + 0x0,0x20,0xc7,0xa5,0xce,0x58,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xc5,0x44,0xc7,0x74,0xcf, + 0x58,0xc1,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49, + 0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xd3,0xec,0xb9,0xf7,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0xc7,0x85,0xb8,0x25,0x0,0x20,0xc7,0xa5,0xce,0x58,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xb0, + 0xb4,0xbd,0x80,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc7, + 0xa5,0xce,0x58,0xac,0x0,0x0,0x20,0xc6,0x2c,0xbc,0x14,0xb9,0x74,0xc9,0xc0,0x0, + 0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0xc6,0x2c,0xbc,0x14,0xb9,0x74,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x40,0x0, + 0x20,0xc1,0x24,0xc8,0x15,0xc7,0x85,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2, + 0xf1,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc8,0x70,0xc7, + 0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31, + 0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x33,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc5,0xb8,0xc5,0xb4, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67, + 0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0xb3,0x0,0xd6,0x15,0x0,0x20,0xbe,0x14,0xb8,0x5d,0x0,0x20,0x0,0x28,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0xd0,0x6c,0xae,0x30,0x0,0x20,0xac,0xe0,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73, + 0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4c,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0xac,0x0,0x0,0x20,0xc8,0x74,0xc7, + 0xac,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69, + 0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0xc7,0x85,0xb8,0x25,0x0,0x20,0xc7, + 0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d, + 0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x20,0xcd,0x9c,0xb8,0x25,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0xad,0x11,0xc7,0x90,0xae,0x30,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xad,0x11,0xc7,0x90,0xae, + 0x30,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xad,0x11,0xc7,0x90, + 0xae,0x30,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xae,0x30,0xc8,0x85,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0x0,0x20, + 0xd5,0x44,0xc6,0x94,0xd5,0x5c,0x0,0x20,0xb8,0x6c,0xd3,0xc,0xc7,0x7c,0xc7,0x74, + 0x0,0x20,0xc5,0xc6,0xc5,0xb4,0x0,0x20,0xae,0x30,0xc8,0x85,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0xc7,0x44,0x0,0x28,0xb9,0x7c,0x0,0x29, + 0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6, + 0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x0,0x20, + 0xac,0x0,0xb2,0xa5,0xd5,0x5c,0x0,0x20,0xae,0x30,0xc8,0x85,0xc7,0x3c,0xb8,0x5c, + 0x0,0x20,0xbc,0xc0,0xac,0xbd,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xba,0x38,0xc2,0xe0,0x0,0x20,0xc8,0x85, + 0xb9,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0xae,0x30,0xc8,0x85,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0xc7,0x74,0x0,0x20,0xc1,0x24,0xce, + 0x58,0xb4,0x18,0xc5,0xc8,0xb2,0x94,0xc9,0xc0,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0xc5,0xd0,0x0,0x20,0xb3,0x0,0xc7, + 0x51,0xd5,0x58,0xb2,0x94,0x0,0x20,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c,0xc5, + 0xd0,0x0,0x20,0xc8,0x11,0xc1,0x8d,0xb4,0x18,0xc5,0xb4,0x0,0x20,0xc7,0x88,0xb2, + 0x94,0xc9,0xc0,0x0,0x20,0xd6,0x55,0xc7,0x78,0xd5,0x74,0x0,0x20,0xc8,0xfc,0xc1, + 0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f, + 0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0xd3,0xc,0xc7,0x7c,0xc7,0x74,0x0,0x20,0xc8,0x74,0xc7, + 0xac,0xd5,0x58,0xba,0x70,0x0,0x20,0xc7,0x7d,0xc7,0x44,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc7,0x88,0xb2,0x94,0xc9,0xc0,0x0,0x20,0xd6,0x55,0xc7,0x78,0xd5,0x69,0xb2, + 0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0xd3,0xc,0xc7,0x7c,0xc7,0x74,0x0,0x20,0xc4,0xf0,0xae,0x30, + 0x0,0x20,0xac,0x0,0xb2,0xa5,0xd5,0x5c,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0, + 0xb9,0xac,0xc5,0xd0,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xb4,0x18,0xac,0xe0,0x0,0x20, + 0xc7,0x88,0xb2,0x94,0xc9,0xc0,0x0,0x20,0xd6,0x55,0xc7,0x78,0xd5,0x69,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0xba,0x54,0xba,0xa8,0xb9,0xac,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57, + 0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x20,0xc8,0x8,0xc8,0x4, + 0x0,0x20,0xba,0xa8,0xb4,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0xb9,0xc8,0xc6,0xb0,0xc2,0xa4,0x0,0x20,0xac,0x10,0xb3,0xc4,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0xb9,0xc8,0xc6,0xb0,0xc2,0xa4,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xb1,0x24,0xd2,0xb8, + 0xc6,0xcc,0xd0,0x6c,0x0,0x20,0xc5,0xb4,0xb3,0x11,0xd1,0x30,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c,0x0,0x20,0xc8,0x85,0xb9, + 0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xc0,0xc8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc7,0xa5,0xce,0x58,0xac,0x0,0x0,0x20,0xc5, + 0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x52,0x0,0x4f,0x0,0x4d,0xc7,0x44,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6, + 0x2c,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0xc5,0xc6,0xc7,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0xb3,0x54,0x0,0x20, + 0xc8,0x15,0xd6,0x55,0xd5,0x5c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63, + 0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0xd6,0x55,0xc7,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xae,0xbc,0xc9, + 0xd0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xcf,0x1c,0xc9,0xd0,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0xcf,0x54,0xc5,0xb4, + 0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30, + 0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x66,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0xb8,0xc,0xb3,0x54,0xb7,0xec,0xb9,0x7c,0x0,0x20,0xcd, + 0x8,0xae,0x30,0xd6,0x54,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2, + 0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xb2,0xe4,0xb9,0x78,0x0,0x20,0xb8, + 0xc,0xb3,0x54,0xb7,0xec,0xb9,0x7c,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x58,0xc2, + 0xed,0xc2,0xdc,0xc6,0x24,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x20,0xc2,0x50,0xc7,0x74,0xb3,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0xc1,0x24,0xc8,0x15,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0xae,0x30,0xd0,0xc0,0x0,0x20,0xc8,0xfc,0xbc,0xc0,0xae,0x30,0xae,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0xae,0x30,0xd0,0xc0,0x0,0x20,0xc7,0x74,0xb3,0xd9, + 0xc2,0xdd,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xc7,0xa5,0xce,0x58,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f, + 0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xb3,0x6e,0xc5,0xb4,0xc4,0xf0,0xae,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x20,0xba,0xa8,0xb4,0xdc,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x4f,0x0, + 0x53,0x0,0x54,0x0,0x20,0xce,0x74,0xb4,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8,0x2c,0x0,0x20,0xd3,0xec,0xd2, + 0xb8,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8,0x2c,0x0, + 0x20,0xd3,0xec,0xd2,0xb8,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8, + 0x2c,0x0,0x20,0xd3,0xec,0xd2,0xb8,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0xbd, + 0x80,0xba,0xa8,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0xc6,0x40,0x0,0x20,0xc7, + 0x90,0xc2,0xdd,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0xc7,0x58,0x0,0x20,0xd0, + 0xc0,0xc7,0x84,0xc2,0xa4,0xd0,0xec,0xd5,0x4,0xac,0x0,0x0,0x20,0xc7,0x7c,0xce, + 0x58,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20, + 0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74, + 0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0xc2,0xe4,0xd5,0x89,0x0,0x20,0xc7,0x7c,0xc2,0xdc,0x0,0x20,0xc9,0x11,0xc9, + 0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0xc6,0x44,0xbc,0xbd,0xd5,0x5c,0x0,0x20,0xd6,0x8c,0xc8, + 0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0xc6,0x2c,0xbc,0x14,0xb9,0x78,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xba, + 0x85,0xc7,0x44,0x0,0x20,0xc9,0xc0,0xc8,0x15,0xd5,0x74,0x0,0x20,0xc8,0xfc,0xc1, + 0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xd3,0xec,0xd2,0xb8,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50, + 0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xd6,0x58,0xac, + 0xbd,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c, + 0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0xd0, + 0xa4,0xb9,0x7c,0x0,0x20,0xb2,0x4,0xb9,0x74,0xba,0x74,0x0,0x20,0xcc,0x3d,0x0, + 0x20,0xba,0xa8,0xb4,0xdc,0xb8,0x5c,0x0,0x20,0xc8,0x4,0xd6,0x58,0xd5,0x69,0xb2, + 0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x2b,0x0,0x46,0x0,0x38,0xd0,0xa4,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0,0x20,0xac, + 0x0,0xc6,0xb4,0xb3,0x70,0x0,0x20,0xbc,0x84,0xd2,0xbc,0xc7,0x44,0x0,0x20,0xd0, + 0x74,0xb9,0xad,0xd5,0x58,0xba,0x74,0x0,0x20,0xb9,0xc8,0xc6,0xb0,0xc2,0xa4,0xb9, + 0x7c,0x0,0x20,0xd5,0x74,0xc8,0x1c,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x2b,0x0,0x46,0x0,0x38,0xd0,0xa4,0xb9,0x7c, + 0x0,0x20,0xb2,0x4,0xb9,0x74,0xba,0x74,0x0,0x20,0xb9,0xc8,0xc6,0xb0,0xc2,0xa4, + 0xb9,0x7c,0x0,0x20,0xd5,0x74,0xc8,0x1c,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0xc9,0xc4,0xd5,0x89,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0xc8,0x1c,0x0,0x34,0xc7,0x58,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79, + 0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0xcc,0x3d,0x0,0x20,0xd0,0x6c, + 0xae,0x30,0xc6,0x40,0x0,0x20,0xc7,0x4,0xce,0x58,0xb9,0x7c,0x0,0x20,0xae,0x30, + 0xc5,0xb5,0xd5,0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0xcc,0x9c,0xc5,0xf0,0xc0,0xc9,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0xba,0xa8,0xb4,0xdc,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f, + 0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52, + 0x0,0x61,0x0,0x77,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xb8, + 0xc,0xb3,0x54,0xb7,0xec,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0xc0,0xc8,0xb8,0x5c,0x0, + 0x20,0xc0,0xdd,0xc1,0x31,0xd5,0x5c,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe, + 0xc,0xc7,0x58,0x0,0x20,0xd3,0xc,0xd2,0xf0,0xc1,0x58,0x0,0x20,0xc1,0x24,0xc8, + 0x15,0xac,0xfc,0x0,0x20,0xd3,0xec,0xb9,0xf7,0xc7,0x44,0x0,0x20,0xaf,0x2d,0x0, + 0x20,0xd5,0x74,0xc8,0xfc,0xc1,0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xc2,0xe4,0xd5,0x89,0x0,0x20,0xc7, + 0xac,0xac,0x1c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73, + 0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0xd5,0x58,0xb4,0xdc,0xc6,0xe8,0xc5,0xb4,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc8,0x0,0xc7,0xa5,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0xc7,0x74,0x0,0x20,0xc1,0x24,0xc8,0x15,0xb4,0xe4,0xc7, + 0x44,0x0,0x20,0xc8,0x4,0xc5,0xed,0x0,0x20,0xae,0x30,0xbc,0xf8,0xac,0x12,0xc7, + 0x3c,0xb8,0x5c,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xd5,0x58,0xae,0x30,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0xc1,0x39,0xd1,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0xd5,0x4,0xb8,0x5c,0xad,0xf8,0xb7,0xa8,0x0,0x20,0xc7,0x91, + 0xc5,0xc5,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0xc1,0x1c, + 0x0,0x20,0xbb,0xf8,0xb5,0x14,0xc5,0xb4,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0, + 0x0,0x20,0xc1,0x20,0xd0,0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xbd,0x80,0xba, + 0xa8,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0xc1,0x20,0xd0,0xdd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc6,0xa9,0xb7,0xc9,0x0,0x28, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xb2,0x90,0xb9,0xb0,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0xc1,0x8c,0xd6,0x15,0x0,0x20,0xbe,0x14,0xb8,0x5d,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc0,0xac,0xc6,0xb4,0xb4,0xdc, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xc7,0x4c,0xb7,0xc9,0x0,0x20, + 0xc9,0x9d,0xd3,0xed,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xc7,0x4c,0xb7,0xc9,0x0,0x20,0xc9,0x9d,0xd3,0xed,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac, + 0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0xc0,0xac,0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac,0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xce,0x74, + 0xb4,0xdc,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac,0xc6,0xb4,0xb4,0xdc, + 0x0,0x20,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xcc,0x3d, + 0x0,0x20,0xd0,0x6c,0xae,0x30,0x0,0x20,0xc9,0xc0,0xc8,0x15,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61, + 0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xcc, + 0x3d,0x0,0x20,0xd0,0x6c,0xae,0x30,0x0,0x20,0xc9,0xc0,0xc8,0x15,0xd5,0x58,0xae, + 0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0xc1,0x8d,0xb3,0xc4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc1, + 0x8d,0xb3,0xc4,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53, + 0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20, + 0xb2,0xe8,0xb3,0xc5,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d, + 0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0xd4,0x5c,0xc9,0x0,0x0,0x20,0x0,0x32,0xbc,0x84,0xd2,0xbc,0x0,0x20,0xc8, + 0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xd4,0x5c,0xc9,0x0,0x0,0x20,0x0, + 0x34,0xbc,0x84,0xd2,0xbc,0x0,0x20,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xd4,0x5c, + 0xc9,0x0,0x0,0x20,0x0,0x36,0xbc,0x84,0xd2,0xbc,0x0,0x20,0xc8,0x70,0xc7,0x74, + 0xc2,0xa4,0xd2,0xf1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74, + 0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, + 0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0xd4,0x5c,0xc9,0x0,0x0,0x20,0x0,0x38,0xbc,0x84,0xd2,0xbc,0x0, + 0x20,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc7,0xa5,0xce,0x58,0x0,0x20,0xce,0xe8, + 0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xd4,0x5c, + 0xba,0x74,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0xc2,0xa4,0xd0, + 0x6c,0xb9,0xb0,0xc0,0xf7,0x0,0x20,0xcc,0xd,0xae,0x30,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0xba,0xa9,0xd4,0x5c,0x0,0x20,0xd5,0x4,0xb8,0x8,0xc7,0x84,0x0, + 0x20,0xb8,0x8,0xc7,0x74,0xd2,0xb8,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0xc8,0x1c,0x0,0x33,0xc7,0x58,0x0,0x20,0x0,0x49,0x0, + 0x44,0x0,0x45,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0, + 0x6c,0x0,0x20,0xad,0x6c,0xc1,0x31,0xc7,0x74,0x0,0x20,0xb1,0x10,0x0,0x20,0xb4, + 0xdc,0xb7,0x7c,0xc7,0x74,0xbc,0x84,0xb8,0x5c,0x0,0x20,0xc8,0x4,0xd6,0x58,0xb4, + 0x29,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54, + 0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65, + 0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0xc1,0x20,0xd0,0xdd,0xd5,0x58,0xc2,0xe0,0x0, + 0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xb3,0x6e,0xc5,0xb4,0xc5,0xc,0xc6, + 0xc1,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x58,0xc2, + 0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xf8,0xc7,0x74,0xb2,0x94,0x0,0x20,0xb5,0x14,0xd3, + 0x7c,0xb7,0xf0,0xc2,0xf1,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac,0x0,0x0, + 0x20,0xc0,0xdd,0xc1,0x31,0xb4,0x1c,0x0,0x20,0xd6,0xc4,0x0,0x20,0xbd,0x80,0xba, + 0xa8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac,0x0,0x0,0x20,0xc2,0x18,0xc8, + 0x15,0xb4,0x18,0xc5,0xc8,0xc7,0x4c,0xc7,0x44,0x0,0x20,0xc7,0x58,0xbb,0xf8,0xd5, + 0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0, + 0x2e,0x0,0xa,0x0,0xa,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xd3,0xc,0xc7, + 0x7c,0xc7,0x74,0x0,0x20,0xc7,0x74,0xb3,0xd9,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0, + 0x20,0xbc,0xf5,0xc0,0xac,0xb4,0x1c,0x0,0x20,0xac,0xbd,0xc6,0xb0,0x0,0x20,0xb6, + 0x10,0xb2,0x94,0x0,0x20,0xc7,0x74,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0xb9, + 0x7c,0x0,0x20,0xb9,0xcc,0xb4,0xe0,0x0,0x20,0xd5,0x4,0xb8,0x5c,0xad,0xf8,0xb7, + 0xa8,0xc7,0x58,0x0,0x20,0xbc,0x84,0xad,0xf8,0xb8,0x5c,0x0,0x20,0xc7,0x78,0xd5, + 0x74,0x0,0x20,0xbc,0x1c,0xc0,0xdd,0xd5,0x60,0x0,0x20,0xc2,0x18,0xb3,0xc4,0x0, + 0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa,0xd0, + 0xc0,0xc7,0x84,0xc2,0xa4,0xd0,0xec,0xd5,0x4,0xb9,0x7c,0x0,0x20,0xc2,0x18,0xc8, + 0x15,0xd5,0x58,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c, + 0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72, + 0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65, + 0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68, + 0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20, + 0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69, + 0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xc9,0x11,0xc7,0x78,0x0,0x20,0xba,0x38, + 0xc2,0xe0,0xc7,0x74,0x0,0x20,0xc7,0xac,0xbd,0x80,0xd3,0x5,0xb4,0x29,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xc2,0xdc, + 0xac,0x4,0x0,0x20,0xb3,0xd9,0xae,0x30,0xd6,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0xd1,0x30,0xbc,0xf4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0xac,0xe0,0xc1,0x8d,0x0,0x20,0xb3,0xd9,0xc7,0x91,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xd6,0x15,0xc2, + 0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xd6,0x15,0xc2,0xdd,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x55,0x0,0x53,0x0,0x42, + 0xb2,0x94,0x0,0x20,0xc5,0x44,0xc9,0xc1,0x0,0x20,0xc9,0xc0,0xc6,0xd0,0xd5,0x58, + 0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0xb9, + 0x7c,0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x53, + 0x0,0x44,0x0,0x4c,0xc7,0x44,0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0xd5,0x60, + 0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0xc7,0x74,0x0,0x20,0xd5,0x44,0xc6,0x94,0xd5,0x69,0xb2,0xc8,0xb2,0xe4, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0xd0,0xa4,0xbc,0xf4,0xb4,0xdc,0x0,0x20,0xac,0x0,0xc1,0x8d,0xae, + 0x30,0xb9,0x7c,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6,0x2c,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xc7,0x7d,0xc7, + 0x44,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x52,0x0,0x61,0x0,0x77,0x0,0x20,0xc7, + 0x85,0xb8,0x25,0xc7,0x44,0x0,0x20,0xb4,0xf1,0xb8,0x5d,0xd5,0x60,0x0,0x20,0xc2, + 0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e, + 0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xd3, + 0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xd5,0x60,0x0,0x20,0xc2, + 0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77, + 0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0xc9,0xc0,0xc6,0xd0,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xb2,0x94,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8, + 0xc9,0xc0,0xc7,0x85,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x0,0x20,0xc0,0xac,0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0xd6,0x54,0xba, + 0x74,0x0,0x20,0xc8,0x85,0xb9,0x58,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72, + 0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0xd3,0xc,0xc7,0x7c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x98,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0x0,0x20, + 0xd5,0x44,0xc6,0x94,0xd5,0x5c,0x0,0x20,0xb8,0x6c,0xd3,0xc,0xc7,0x7c,0xc7,0x74, + 0x0,0x20,0xc5,0xc6,0xc5,0xb4,0x0,0x20,0xbe,0x44,0xb5,0x14,0xc6,0x24,0x0,0x20, + 0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0xc7,0x44,0x0,0x28,0xb9,0x7c,0x0,0x29,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x60, + 0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e, + 0x0,0x20,0xc0,0xac,0xc6,0xa9,0x0,0x20,0xac,0x0,0xb2,0xa5,0xd5,0x5c,0x0,0x20, + 0xae,0x30,0xc8,0x85,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xbc,0xc0,0xac,0xbd,0xd5,0x69, + 0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78, + 0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22, + 0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67, + 0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d, + 0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0xbe,0x44,0xb5,0x14,0xc6,0x24,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0xad,0xf8,0xb7,0x98,0xd5,0x3d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0xb3,0x0,0xae,0x30,0x0,0x20,0xc0,0xc1,0xd0,0xdc,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xc5,0xd0,0x0,0x20,0xc5, + 0xb4,0xc1,0x1c,0xc6,0x24,0xc1,0x38,0xc6,0x94,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0xac,0x0,0xb8,0x5c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61, + 0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x58,0x0,0x47, + 0x0,0x41,0x0,0x20,0xad,0xf8,0xb7,0x98,0xd5,0x3d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0xb3,0x54,0x0,0x20,0xbe,0x60,0xb9,0x74,0xac, + 0x8c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0xc9,0xc0,0xc6,0xd0,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5, + 0x4a,0xb2,0x94,0x0,0x20,0xc1,0x24,0xc8,0x15,0xc7,0x85,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_fi-FI.qm + 0x0,0x0,0x91,0x83, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xd5,0x0,0x0,0x0,0x48, + 0x0,0x0,0x46,0xaf,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0xa4,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x80,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0x1f,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0xde,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0x54,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0x8f,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x19,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6b,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xbd,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xfc,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x4e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xa0,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xf2,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x10,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x8e,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0xfa,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x18,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5c,0x6f,0x0,0x0,0x5d,0x81,0x0,0x0,0x81,0xd5,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x5d,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xdb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x86,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xfa,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xb0,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0x81,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0x60,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0x6b,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x3,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0xc6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0x27,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0xdf,0x0,0x5,0x78,0x79, + 0x0,0x0,0x68,0xbc,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0xba,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6c,0xf3,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0x21,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x46,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x7f,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xf5,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xd9,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0x23,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x23,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xce,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x50,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7c,0xb7,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1b,0x6,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xa1,0x0,0x4c,0x99,0x62,0x0,0x0,0x3f,0xd8,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x89,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0x1f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6f,0x99,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0x6c,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x79,0xbb,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7a,0x46,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x84,0x53,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x40,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0x89,0x0,0x97,0x96,0x4,0x0,0x0,0x37,0xd8,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0x3b,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0xeb,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0x46,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0x49,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x1a,0xd,0x1,0x9,0x1c,0x92,0x0,0x0,0x41,0xbe,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x66,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0x42,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x79,0xdf,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0x20,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0x5,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x7c,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x78,0x52,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3b,0xe7,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x77,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4b,0x9a,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x53,0x6f,0x1,0xb0,0x47,0x5c,0x0,0x0,0x51,0xf9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xfd,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x28,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xd9,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x4d,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x5e,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0x7e,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6f,0xe8,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x78,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x71,0xa7,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0x32,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x70,0xbd,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xce,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0x3,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0x2b,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x82,0x35,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0x91,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0xd6,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0x7f,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x55,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xfc,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xfc,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xf0,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0xa7,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0x8c,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x84,0x77,0x3,0x5,0x38,0xb2,0x0,0x0,0x3f,0xfc,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0x37,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x74,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x50,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x77,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0x23,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0x33,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x5a,0x3,0x6a,0x66,0x2e,0x0,0x0,0x56,0x83,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x54,0x86,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x48,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x1d,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x9b,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0xb8,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0x40,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0x12,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xdf,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0xb,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0x31,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6e,0xb2,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6e,0x76,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0x3a,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6d,0xfe,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x2e,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0xa,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0x25,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x9b,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0xc5,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x74,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x8c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x2d,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x3f,0x4,0x51,0x79,0xb1,0x0,0x0,0x72,0xa5,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7b,0x3e,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x32,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6d,0xcb,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3c,0x90,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3c,0xd7,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x34,0xc3,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x3c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0x0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x4d,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xde,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2e,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xd9,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5a,0x4e,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0x9e,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x7f,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x4f,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5a,0x76,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0x16,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4a,0xaa,0x5,0x18,0x5,0x95,0x0,0x0,0x7d,0x37,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xf9,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0x16,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0x27,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0x6,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xf0,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0x2f,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0x16,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0xb4,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x79,0x6c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x73,0xa1,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x75,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6f,0xbf,0x5,0xb2,0x16,0x79,0x0,0x0,0x66,0xf2,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x47,0xa8,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0xba,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0x71,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x9e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xf5,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xef,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0x4c,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0x4e,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x80,0x27,0x5,0xd0,0x4f,0x11,0x0,0x0,0x80,0xe9,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xf8,0x5,0xdf,0xba,0xba,0x0,0x0,0x81,0x37,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0x9a,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0x47,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xb,0x6,0x19,0x20,0x43,0x0,0x0,0x69,0xe3,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3a,0xc8,0x6,0x38,0x9f,0x35,0x0,0x0,0x38,0xaf,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xe6,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xf1,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xcc,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7e,0x7c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0x89,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0x8f,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x49,0xf6,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0xd,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0x25,0x6,0x81,0xb7,0x1f,0x0,0x0,0x39,0xf5,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6e,0xee,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x4,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0x22,0x6,0xc3,0xce,0xa3,0x0,0x0,0x72,0x1c,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0x8c,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0xc,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x28,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0xc,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0xbe,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xed,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0x50,0x7,0x6,0x93,0xe3,0x0,0x0,0x83,0xe4,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xa7,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3f,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x6,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6c,0xc0,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0x92,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4c,0xc7,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0xb5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xda,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x3f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0x47,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x13,0x1d,0x7,0x70,0xb3,0xaa,0x0,0x0,0x43,0xef,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xf8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0x5f,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0x52,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0x75,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5c,0xfd,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xc5,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7e,0x33,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x7e,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xae,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xb1,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x80,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0x35,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3d,0xa2,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x68,0xdd,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0x78,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0xa9,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0x35,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x86,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0x90,0x8,0x60,0xe7,0xcd,0x0,0x0,0x78,0xf1,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0xbf,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xc9,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7a,0x6e,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0x4d,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0xeb,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0xab,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0x2b,0x8,0xa4,0xb,0xae,0x0,0x0,0x4f,0x6b,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0x3d,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xae,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0x68,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x75,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3e,0xcb,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0x4f,0x9,0x9,0x24,0x29, + 0x0,0x0,0x51,0x40,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x5b,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x8f,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0xf3,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x27,0x9,0x4e,0xde,0x64,0x0,0x0,0x7a,0xc7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0xf3,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x37,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x81,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x89,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0x75,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x1a,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x65,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x93,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xc1,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xef,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x6c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xdb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xbe,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0xb5,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0x13,0x9,0xc2,0x33,0xa9,0x0,0x0,0x17,0x23,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x59,0xe0,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xc5,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xe3,0xa,0xf,0x3d,0xb9,0x0,0x0,0x12,0x19,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x20,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x45,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0xb6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x65,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x45,0xc8,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3e,0x8d,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4e,0x91,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x7c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7d,0x98,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0xb0,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x72,0x66,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x5,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xbe,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4d,0xb7,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x51,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xfd,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x4c,0xa,0xda,0x50,0x7e,0x0,0x0,0x7b,0xdb,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x94,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0x2b,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x74,0xb,0xa,0x72,0xc9,0x0,0x0,0x39,0xcd,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x68,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0x9b,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0x48,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xac,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xd0,0xb,0x4e,0x19,0x54,0x0,0x0,0x52,0x71,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xdc,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x7b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x53,0xf5,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x9,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x3b,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0x81,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0x8e,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xb7,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0xf3,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0x36,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x83,0xae,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0xf9,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x73,0x7,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x4b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0x48,0xc,0x33,0xeb,0xe2,0x0,0x0,0x73,0x53,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x28,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xb9,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0xcb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0xf5,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x75,0x21,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0x68,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3a,0x90,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xaa,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xe3,0xc,0x90,0x26,0xb5,0x0,0x0,0x7c,0x63,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0x2e,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x38,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0x8f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xa6,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0xb2,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7e,0xb4,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x62,0xf3,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0x2a,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xb6,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x56,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x80,0x5c,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0x41,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x81,0x8a,0xd,0x60,0xef,0x6a,0x0,0x0,0x4d,0x79,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x1,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x11,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x39,0x98,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x69,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3c,0xfe,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x88,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x82,0x75,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0xa,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x81,0x60,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0x8e,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0xa3,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x8a,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xf8,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xc1,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x2f,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0x5d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x69,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0xb0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xde,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x3,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0x24,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0x9f,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6b,0xdb,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0x17,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0x53,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0xd7,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0xcb,0xe,0xe2,0x34,0x60,0x0,0x0,0x83,0x5a,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x83,0x84,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x47,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xf,0xa,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0xa6,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0x1d,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x4,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x74,0x3f,0xf,0x17,0x9c,0x64,0x0,0x0,0x7d,0xe7,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5d,0xf6,0xf,0x29,0x4d,0x2a,0x0,0x0,0x46,0xc7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0x81,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x27,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0x4f,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0xa5,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0x2b,0xf,0x70,0xaa,0x1a,0x0,0x0,0x80,0xb0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x66,0xb4,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0x58,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xf4,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x99,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0xd0,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0x88,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0x3a,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0xa8,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x50,0x71,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0xdf,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3d,0xe7,0xf,0xe2,0xe9,0x49,0x0,0x0,0x81,0xf3,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5f,0xf3,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0x3b,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0x83,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0xcb,0x69,0x0,0x0,0x84, + 0xa1,0x3,0x0,0x0,0x0,0x10,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x54,0x0,0x41, + 0x0,0x55,0x0,0x4b,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x1,0x7a,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x61,0x0,0x64,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2d, + 0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x74, + 0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x69, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4b,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x6b, + 0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x2d,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6c, + 0x0,0xe4,0x0,0x68,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x79,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x72, + 0x0,0x6a,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73, + 0x0,0x29,0x0,0x20,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74, + 0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20, + 0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73, + 0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x2d,0x0,0x20, + 0x0,0x4c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x79, + 0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x64,0x0, + 0x6f,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28, + 0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0, + 0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x75,0x0, + 0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74,0x0, + 0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74, + 0x0,0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75, + 0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x72,0x0,0x75, + 0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x54,0x0,0x6f,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x69,0x0,0x68, + 0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x76,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41, + 0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0, + 0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x68,0x0,0xe4,0x0, + 0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75, + 0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4b,0x0, + 0x65,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x76,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26, + 0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26, + 0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61, + 0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x26,0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x61,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x4b,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x26, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x75,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4b,0x0, + 0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74, + 0x0,0x74,0x0,0xf6,0x0,0xf6,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3e,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0, + 0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6c,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0, + 0x26,0x0,0x69,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26, + 0x0,0x55,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x79,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x6b,0x0,0x79,0x0,0x6c, + 0x0,0x6d,0x0,0xe4,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x26,0x0,0x50,0x0,0x69,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x70,0x0, + 0x61,0x0,0x6c,0x0,0x6b,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x6b, + 0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x26,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0, + 0x74,0x0,0x74,0x0,0xf6,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0xe4,0x0, + 0x20,0x0,0x76,0x0,0xe4,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0, + 0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65, + 0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x0,0x56,0x0, + 0x61,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x70,0x0, + 0x70,0x0,0xe4,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xf6,0x0, + 0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x61,0x0, + 0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x4c,0x0,0x69,0x0,0x26,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x61, + 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0,0x79,0x0, + 0x6b,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x26,0x0,0x4c,0x0,0xe4,0x0,0x68,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x72,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x55, + 0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e, + 0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x55,0x0,0x75,0x0,0x73,0x0,0x69, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x75,0x0,0x6b,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x54,0x0,0x6f,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x53,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x61,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x73,0x0,0xe4,0x0,0x76,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x75,0x0,0x68,0x0,0x6f,0x0,0x69, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52, + 0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46, + 0x0,0x26,0x0,0x4c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x50,0x0, + 0x6f,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x72,0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0, + 0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x74, + 0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c, + 0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4b,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x75,0x0,0x75,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74, + 0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x4f,0x0,0x69, + 0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c, + 0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x56, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e, + 0x0,0x26,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4b, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x4d,0x0,0xe4,0x0, + 0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x26,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x76,0x0, + 0x75,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x75,0x0, + 0x76,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x65,0x0, + 0x74,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0xe4,0x0,0x69,0x0,0x6c,0x0,0x79,0x0, + 0x74,0x0,0xe4,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x73,0x0, + 0x75,0x0,0x68,0x0,0x64,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c, + 0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x79,0x0, + 0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x6f,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x6f,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x54,0x0,0x79,0x0,0xf6,0x0,0x26,0x0,0x6b, + 0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x26,0x0,0x50,0x0,0xe4,0x0,0x69,0x0,0x76,0x0,0x69,0x0, + 0x74,0x0,0xe4,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x70,0x0, + 0x61,0x0,0x6c,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x75,0x0, + 0x76,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xe4, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x26,0x0,0x61, + 0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x26,0x0,0x49,0x0,0x6b,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x65,0x0, + 0x72,0x0,0x72,0x0,0x6f,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x28,0x0,0x4a,0x0,0xe4,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x28,0x0,0x74,0x0,0x79,0x0,0x68,0x0,0x6a,0x0,0xe4,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x31,0x0,0x25,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0, + 0x79,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x79,0x0, + 0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50, + 0x0,0x4d,0x0,0x3a,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x74,0x0, + 0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20, + 0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49, + 0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32, + 0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x47, + 0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32, + 0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x74,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33, + 0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0, + 0x20,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x69,0x0, + 0x73,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20, + 0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20, + 0x0,0x47,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e, + 0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20, + 0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e, + 0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30, + 0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36, + 0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x50, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x65,0x0,0x69, + 0x0,0x20,0x0,0x6c,0x0,0xf6,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x6e,0x0,0x79, + 0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6, + 0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x6f,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x3c,0x0,0x2f, + 0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x70, + 0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x72,0x0,0x6b,0x0,0x61,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2d,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x65, + 0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x0,0x2d,0x0,0x73,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x75,0x0, + 0x74,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41, + 0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3a,0x0, + 0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x4c,0x0,0x69,0x0,0x73,0x0,0xe4,0x0,0xe4,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x61,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0, + 0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45, + 0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4c,0x0,0x69, + 0x0,0x73,0x0,0xe4,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x73,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c, + 0x0,0x65,0x0,0x76,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4b,0x0,0x65, + 0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x6e,0x0,0x65,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64, + 0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4b,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0, + 0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0, + 0x61,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xd8,0x0,0x56,0x0,0x61, + 0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0xe4, + 0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65, + 0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20, + 0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x75, + 0x0,0x75,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75, + 0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4a,0x0,0x75,0x0,0x6c,0x0,0x6b, + 0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20, + 0x0,0x6d,0x0,0x79,0x0,0xf6,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0xe4, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6b, + 0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x49, + 0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x2d,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x73, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e, + 0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64, + 0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68, + 0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61, + 0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63, + 0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e, + 0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35, + 0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65, + 0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61, + 0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20, + 0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e, + 0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29, + 0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20, + 0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43, + 0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65, + 0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20, + 0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f, + 0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61, + 0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68, + 0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f, + 0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20, + 0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69, + 0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f, + 0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68, + 0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75, + 0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e, + 0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72, + 0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x48,0x0, + 0x61,0x0,0x6c,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x69,0x0,0x6e,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x48,0x0,0x61,0x0,0x6c,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe4, + 0x0,0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0xe4, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x64, + 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75, + 0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x6c,0x0,0x6f,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0xe4,0x0,0x6c,0x0,0x6a,0x0, + 0x69,0x0,0x74,0x0,0x79,0x0,0x73,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42, + 0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x6f, + 0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x56,0x0,0xe4,0x0,0x79,0x0,0x6c,0x0,0xe4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xe4,0x0,0x79,0x0,0x6c,0x0,0xe4, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0, + 0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0, + 0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0, + 0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x26,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x75,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69, + 0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x2d,0x0, + 0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xc,0x0,0x56,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73,0x0,0x73,0x0,0xe4, + 0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x75,0x0,0x6c, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0xe4, + 0x0,0x6d,0x0,0xe4,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x68,0x0,0x64,0x0,0x6f, + 0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x79,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6f, + 0x0,0x70,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x6b,0x0,0x79,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x68,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x65, + 0x0,0x6c,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x3a,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75, + 0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54, + 0x0,0xe4,0x0,0x6d,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b, + 0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x20,0x0,0x65,0x0,0x69, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x69, + 0x0,0x6b,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x64, + 0x0,0x79,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74, + 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x70,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x6e,0x0,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53, + 0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70,0x0,0x70, + 0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x75,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0, + 0x75,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x76, + 0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d, + 0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x54,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x4b,0x0,0x61,0x0,0x61,0x0,0x70,0x0,0x70,0x0, + 0x61,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x69,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x79,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x4a,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0, + 0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0, + 0x6e,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0x61,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43, + 0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69, + 0x0,0x6a,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f, + 0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x75,0x0,0x6b,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x28,0x0, + 0x73,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x75,0x0,0x6b,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x53,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x6c, + 0x0,0x6f,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d, + 0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x4d,0x0, + 0x46,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x6f,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0, + 0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65, + 0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x66, + 0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x61, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x45, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73, + 0x0,0x73,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x6f,0x0,0x74,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65, + 0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x4c,0x0,0x69,0x0,0x69,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b, + 0x0,0x75,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x68, + 0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x74,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c, + 0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69, + 0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x4e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x54,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x61,0x0, + 0x61,0x0,0x6e,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0xc4,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0xc4,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x0,0x72,0x0,0x76,0x0,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0xc4, + 0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0xc4,0x0,0x6c, + 0x0,0xe4,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20, + 0x0,0x74,0x0,0xe4,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77, + 0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44, + 0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0,0x74, + 0x0,0xe4,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0, + 0x79,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x26,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x65,0x0,0x73,0x0,0xe4,0x0,0x73,0x0,0x74, + 0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65, + 0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x54,0x0,0x79,0x0,0x68,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x75,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x46,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x41,0x0, + 0x69,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4b,0x0,0xe4,0x0, + 0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74, + 0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73,0x0, + 0x73,0x0,0xe4,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x4b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73,0x0,0x73,0x0, + 0xe4,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4c,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0xe4,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x74, + 0x0,0x79,0x0,0x73,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x53,0x0,0x69,0x0,0x69,0x0,0x72,0x0, + 0x72,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0, + 0xf6,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x61,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72, + 0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56, + 0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x56,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6a, + 0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74, + 0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4f, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a,0x0,0x6f, + 0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x6a, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x6f,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x50, + 0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x0,0x2d,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6, + 0x0,0x73,0x0,0x75,0x0,0x68,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0, + 0x6b,0x0,0x65,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x4d,0x0,0x2d,0x0,0x73,0x0,0x79,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x75, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6b,0x0, + 0x6b,0x0,0x6f,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x2d,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75, + 0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x4e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x54,0x0,0x69, + 0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x75,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73, + 0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74, + 0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b, + 0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0xe4,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c,0x0,0x65, + 0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4c,0x0,0x65,0x0,0x76, + 0x0,0x79,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0, + 0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x2d,0x0,0x6c,0x0,0x65, + 0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74, + 0x0,0xf6,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x61, + 0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x73,0x0,0xe4, + 0x0,0x76,0x0,0x79,0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x6e,0x0,0x6f, + 0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79, + 0x0,0x70,0x0,0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0, + 0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0, + 0x79,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x5c,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76, + 0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x68,0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x74,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b, + 0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x2d,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0, + 0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0, + 0x61,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x35,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79, + 0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x69,0x0, + 0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x69, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79, + 0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4b,0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x79, + 0x0,0x6c,0x0,0x6d,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0xe4,0x0,0x79, + 0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4c,0x0, + 0x61,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0, + 0x6c,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48, + 0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x4c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x70,0x0,0xe4,0x0,0xe4,0x0,0x74, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0, + 0x6f,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x53,0x0,0x75,0x0, + 0x75,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x2d,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x50,0x0,0x69,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x79,0x0,0xf6,0x0,0x6b,0x0,0x61,0x0,0x6c, + 0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x6b,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69, + 0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x2d,0x0,0x6d,0x0,0x75,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6e, + 0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x2d,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x28,0x0, + 0x6b,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x29,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x2d,0x0,0x6c, + 0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0, + 0x75,0x0,0x76,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x65,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x54,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x75,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0, + 0x79,0x0,0xf6,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x6c,0x0,0x61,0x0,0x69,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x69,0x0, + 0x73,0x0,0xe4,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0, + 0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x56,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x69,0x0,0x72,0x0,0x68,0x0, + 0x65,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x20,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x79,0x0, + 0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69, + 0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x2d,0x0, + 0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x74,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4c,0x0,0x75,0x0,0x6b,0x0,0x69,0x0,0x74, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x68,0x0,0xe4,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x2d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x6d,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x74,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x73,0x0,0x69,0x0, + 0x73,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20, + 0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0, + 0x75,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x61,0x0, + 0x67,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x73,0x0, + 0x6f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x4d,0x0,0x4f,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x6c,0x0,0x65, + 0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x54,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xcc,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xe4, + 0x0,0xe4,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x75, + 0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x75,0x0,0x6f, + 0x0,0x6b,0x0,0x73,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x61,0x0,0x69, + 0x0,0x68,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x6b,0x0,0x65, + 0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64, + 0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70, + 0x0,0x70,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa8,0x0,0x56,0x0,0x61,0x0,0x72,0x0, + 0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0xe4,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x79,0x0, + 0x68,0x0,0x74,0x0,0x65,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x69,0x0, + 0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x79,0x0,0x68,0x0,0x74,0x0,0x65,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x76,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x68,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0xe4,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x6c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x70,0x0, + 0x6f,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x6d, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74, + 0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x73,0x0,0x6b,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a,0x0,0x6f,0x0,0x69, + 0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x75, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4d,0x0,0x75,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0xe4,0x0,0x79,0x0,0x74, + 0x0,0x74,0x0,0xf6,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x74, + 0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x79, + 0x0,0x79,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,0x0, + 0x69,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x65, + 0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0, + 0x72,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79,0x0, + 0x70,0x0,0x70,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x75,0x0,0x73,0x0, + 0x69,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0, + 0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0xf6,0x0,0x79,0x0,0x74,0x0,0x79,0x0, + 0x6e,0x0,0x79,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e, + 0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x65,0x0, + 0x69,0x0,0x20,0x0,0x6c,0x0,0xf6,0x0,0x79,0x0,0x74,0x0,0x79,0x0,0x6e,0x0, + 0x79,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x45,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x6b,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x74, + 0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0xe4,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0, + 0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30, + 0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x9a,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0,0x2d,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6a,0x0,0xe4,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0xe4,0x0, + 0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0xf6,0x0,0x69,0x0,0x6a,0x0,0xe4,0x0,0xe4,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x76,0x0,0x61,0x0,0x72, + 0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x68, + 0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x74, + 0x0,0x65,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x75, + 0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x76,0x0,0x61,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x2d,0x0,0x74,0x0, + 0x69,0x0,0x6c,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x2d,0x0, + 0x6b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0, + 0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0, + 0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0, + 0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0, + 0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x59,0x0,0x6c,0x0,0xe4,0x0, + 0x2d,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x65,0x0,0x69,0x0,0x76,0x0,0xe4,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0xe4,0x0,0x73,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x79,0x0, + 0x73,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x54,0x0,0xe4,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0, + 0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x41,0x0, + 0x6e,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e, + 0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x53,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x66,0x0,0x50,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x69,0x0, + 0x20,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x6f,0x0,0x69,0x0, + 0x74,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0, + 0x61,0x0,0x61,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, + 0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x50,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x65,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x61,0x0, + 0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x68,0x0,0x69,0x0, + 0x69,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72, + 0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x50,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x69, + 0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x45,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0xe4, + 0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x2c,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x61,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x4d,0x0,0x75,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x20,0x0, + 0x6a,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x75,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x6d,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x69,0x0,0x68, + 0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x54,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x54,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0, + 0x6d,0x0,0xe4,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x75,0x0, + 0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x62,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6b,0x0, + 0x73,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0, + 0x6b,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61, + 0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x74, + 0x0,0x79,0x0,0xf6,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64, + 0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70, + 0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64, + 0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x79,0x0,0x6c,0x0,0xe4,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x61,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x61,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0, + 0x6e,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x74,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f, + 0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x50,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x68, + 0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67, + 0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53, + 0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f, + 0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0xc4,0x0,0xe4, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0xe4,0x0,0x20,0x0,0x70,0x0,0xe4,0x0,0xe4,0x0,0x69,0x0,0x6b,0x0,0x6b, + 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x4e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x75,0x0, + 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45, + 0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x2d,0x0, + 0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x2f,0x0, + 0x2d,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6d,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x70,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0, + 0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x36,0x0,0x2d, + 0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x69,0x0, + 0x20,0x0,0x38,0x0,0x2d,0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x6b,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e, + 0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6d, + 0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b, + 0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4f,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x26,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x6b,0x0, + 0x61,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26, + 0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0, + 0x4b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6a,0x0, + 0x75,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x69,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72, + 0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0x6f,0x0,0x6c,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0, + 0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44, + 0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6b,0x0, + 0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0, + 0x70,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x69,0x0, + 0x68,0x0,0x74,0x0,0x75,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x61,0x0,0x2d,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x69,0x0, + 0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x86,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x76,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x4f,0x0, + 0x6c,0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0xe4,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xe4,0x0,0xe4,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x2,0x2c,0x0,0x54,0x0,0xe4,0x0,0x6d,0x0,0xe4,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x61,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0xe4,0x0,0x20,0x0,0x79,0x0,0x6c,0x0,0xe4,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0, + 0x75,0x0,0x76,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x6d,0x0,0x75,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0, + 0x75,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x6f,0x0, + 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0xe4,0x0,0x6c,0x0, + 0x6b,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4e,0x0, + 0xe4,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0xe4,0x0,0x79,0x0,0x64,0x0,0xe4,0x0,0x20,0x0,0x6d,0x0,0x79,0x0, + 0xf6,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x69,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x6f,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x2e,0x0,0x20,0x0,0x4c,0x0,0x69,0x0, + 0x73,0x0,0xe4,0x0,0x6b,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x79,0x0, + 0x79,0x0,0x6e,0x0,0xe4,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0, + 0x79,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x61,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x54,0x0,0xe4,0x0,0x6d,0x0,0xe4, + 0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0xe4,0x0,0xe4,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x4b,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x6f, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69, + 0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x0, + 0x2d,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,0x0,0x79,0x0,0x79,0x0,0x70,0x0, + 0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x54,0x0,0x79, + 0x0,0x79,0x0,0x70,0x0,0x70,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x2d,0x0,0x74,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x3a,0x0,0x6e,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72, + 0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74, + 0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c, + 0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4e,0x0,0x4e,0x0,0xe4,0x0,0x70,0x0,0x70,0x0,0xe4,0x0,0x69,0x0,0x6e,0x0, + 0x6b,0x0,0x69,0x0,0x69,0x0,0x68,0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x54,0x0,0x69,0x0,0x65,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x61,0x0,0x20,0x0,0x65,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x75,0x0, + 0x6b,0x0,0x65,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x52,0x0, + 0x61,0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x79,0x0,0xf6,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6b,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x54,0x0, + 0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0, + 0x20,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4c, + 0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0, + 0xe4,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x2d,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0, + 0x74,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x2d,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x20,0x0, + 0x26,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70,0x0,0x70,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe6,0x0,0x4e,0x0,0xe4,0x0,0x79, + 0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xe4,0x0,0xe4, + 0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x76, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d, + 0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x75,0x0,0x6f,0x0,0x6b, + 0x0,0x73,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x61,0x0,0x69,0x0,0x68, + 0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b, + 0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x6b,0x0,0x65,0x0,0x6c, + 0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0, + 0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x2d, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x69,0x0,0x6b,0x0,0x6b, + 0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4f,0x0,0x64,0x0,0x6f,0x0,0x74,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x54,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6c,0x0, + 0x6f,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x69,0x0,0x69,0x0,0x6e,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0, + 0x65,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63, + 0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69, + 0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x6e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0, + 0x61,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4f,0x0,0x6c,0x0, + 0x65,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0, + 0x2d,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49, + 0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0, + 0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_sk-SK.qm + 0x0,0x0,0x92,0xd9, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x27,0xcd,0x0,0x0,0x0,0x48, + 0x0,0x0,0x46,0x87,0x0,0x0,0x0,0x53,0x0,0x0,0x69,0x24,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x7a,0x0,0x0,0x4,0xf2,0x0,0x0,0x4f,0xf3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0xf8,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0xc2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0xfd,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x13,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x5b,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xa3,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xe2,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x2a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x72,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xba,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xd8,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0x7a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0xd6,0x0,0x0,0x4d,0x85,0x0,0x0,0x4b,0xf4,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5c,0xdd,0x0,0x0,0x5d,0x81,0x0,0x0,0x83,0xf,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4f,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xc1,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x52,0x0,0x4,0x8c,0xaf,0x0,0x0,0x25,0xe4,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0xa2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3c,0x77,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x41,0x6e,0x0,0x4,0xc8,0xa4,0x0,0x0,0x42,0xaf,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x40,0x3,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0x10,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x45,0xf5,0x0,0x5,0x56,0x45,0x0,0x0,0x5c,0x51,0x0,0x5,0x78,0x79, + 0x0,0x0,0x69,0x3c,0x0,0x5,0x98,0xc5,0x0,0x0,0x6a,0x20,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6d,0xb3,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0xb7,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x3e,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x77,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xef,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x63,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x57,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x4b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0x9a,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x4c,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7d,0xad,0x0,0x3b,0xa9,0x68,0x0,0x0,0x19,0xfe,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1c,0xb9,0x0,0x4c,0x99,0x62,0x0,0x0,0x3e,0xd8,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x35,0x6d,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0xc5,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x70,0x8b,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6e,0x28,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7a,0x53,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7a,0xd6,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x85,0xa9,0x0,0x73,0x75,0x3e,0x0,0x0,0x34,0x18,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0xef,0x0,0x97,0x96,0x4,0x0,0x0,0x36,0xbe,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0x27,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0xc3,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0x64,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0xa5,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x5,0x1,0x9,0x1c,0x92,0x0,0x0,0x40,0xcc,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2a,0xb0,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0x8a,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7a,0x77,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0xb8,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0x23,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x64,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x78,0xf4,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3a,0xc9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x28,0x75,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4b,0x8a,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x53,0x8d,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0x13,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x89,0x1,0xc8,0x65,0x8f,0x0,0x0,0x40,0x2a,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x59,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x51,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x31,0x26,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0xe4,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x70,0xe2,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x2c,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x72,0x77,0x2,0x23,0x3c,0x6b,0x0,0x0,0x72,0xa,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x71,0x9d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0xc2,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4a,0xf7,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0x53,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x83,0x6f,0x2,0x90,0x8d,0x12,0x0,0x0,0x41,0x9d,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5f,0x2e,0x2,0xad,0x4a,0x22,0x0,0x0,0x67,0x1f,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x11,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x30,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x1a,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xac,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x73,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0xe6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x85,0xcd,0x3,0x5,0x38,0xb2,0x0,0x0,0x3e,0xfc,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0xd1,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x70,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x48,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x6f,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0x3d,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0x27,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x4e,0x3,0x6a,0x66,0x2e,0x0,0x0,0x56,0xc3,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x54,0x90,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xd8,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2f,0xf5,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x95,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0xb0,0x3,0xa4,0x35,0xa5,0x0,0x0,0x41,0x4e,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x41,0x20,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0xd7,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0x5d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x71,0x2d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6f,0x94,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6f,0x52,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6f,0x10,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6e,0xce,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xf6,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0x5a,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0x19,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0x97,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0xc1,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x68,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x8,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0x13,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x29,0x49,0x4,0x51,0x79,0xb1,0x0,0x0,0x73,0x69,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7b,0xfe,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0x42,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6e,0x8f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3b,0x98,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3b,0xc9,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x33,0x95,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2f,0x1e,0x4,0xb8,0x1,0x2e,0x0,0x0,0x38,0x10,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x7f,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xd0,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x3a,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0xcd,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5a,0xa8,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x32,0x6e,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x73,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0x65,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5a,0xcc,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0x2a,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4a,0xa8,0x5,0x18,0x5,0x95,0x0,0x0,0x7e,0x29,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x15,0xed,0x5,0x30,0xd3,0xe,0x0,0x0,0x3a,0xe,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0x85,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x84,0x4e,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3c,0x27,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0xd8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0xba,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7a,0x4,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x74,0x81,0x5,0xa5,0x3a,0x79,0x0,0x0,0x26,0x5b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x70,0xb5,0x5,0xb2,0x16,0x79,0x0,0x0,0x67,0x8c,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x47,0x7e,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0xde,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3e,0x6d,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0x96,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xf5,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xeb,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0x3c,0x5,0xc1,0x4d,0x83,0x0,0x0,0x37,0x42,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x81,0x5f,0x5,0xd0,0x4f,0x11,0x0,0x0,0x82,0x2f,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xfe,0x5,0xdf,0xba,0xba,0x0,0x0,0x82,0x87,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x66,0x3c,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0x27,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x36,0xe9,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0x45,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x39,0xd8,0x6,0x38,0x9f,0x35,0x0,0x0,0x37,0xb1,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1e,0xf8,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xb7,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x32,0x9c,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7f,0x82,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0xb1,0x6,0x74,0xe,0x6a,0x0,0x0,0x60,0x3,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0x1e,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x25,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3d,0x1d,0x6,0x81,0xb7,0x1f,0x0,0x0,0x38,0xff,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6f,0xd6,0x6,0x96,0xa4,0x13,0x0,0x0,0x44,0x80,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0xa2,0x6,0xc3,0xce,0xa3,0x0,0x0,0x72,0xe4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0x2e,0x6,0xed,0xca,0xce,0x0,0x0,0x46,0xda,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xf2,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xbe,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0xe6,0x7,0x0,0x57,0x53,0x0,0x0,0x27,0xe5,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0x60,0x7,0x6,0x93,0xe3,0x0,0x0,0x85,0x32,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0xb1,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x33,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x1a,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6d,0x7a,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0xe2,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4c,0xa7,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x62,0x47,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0xd2,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x32,0x11,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0x4f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xd9,0x7,0x70,0xb3,0xaa,0x0,0x0,0x43,0x33,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2e,0xee,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0xf1,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0x96,0x7,0xa3,0x63,0x9e,0x0,0x0,0x68,0x7,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0x67,0x7,0xa4,0x32,0x89,0x0,0x0,0x1c,0xdd,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7f,0x3b,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x70,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xa0,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0x97,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x64,0xa,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0xb5,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3c,0x98,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x69,0x5d,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0x54,0x8,0x0,0x3f,0x29,0x0,0x0,0x63,0x3f,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0x85,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xb0,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0xa0,0x8,0x60,0xe7,0xcd,0x0,0x0,0x79,0x89,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x60,0x35,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x81,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7a,0xf8,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0xcf,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0xd3,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0x87,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0xf,0x8,0xa4,0xb,0xae,0x0,0x0,0x4f,0x4b,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3b,0x37,0x8,0xa9,0xcf,0x35,0x0,0x0,0x30,0x82,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3f,0x74,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x37,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3d,0xcb,0x8,0xf7,0xb3,0xda,0x0,0x0,0x44,0xe3,0x9,0x9,0x24,0x29, + 0x0,0x0,0x51,0x54,0x9,0x49,0xfa,0x4a,0x0,0x0,0x33,0x31,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x33,0x63,0x9,0x49,0xfa,0x6a,0x0,0x0,0x32,0xcd,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x32,0xff,0x9,0x4e,0xde,0x64,0x0,0x0,0x7b,0x61,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5b,0x49,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x31,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x75,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x79,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x65,0x11,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x0,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2f,0x45,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0x71,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2f,0x9d,0x9,0x88,0x63,0x3a,0x0,0x0,0x2f,0xc9,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x48,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x7f,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x90,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5b,0x11,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0x91,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x17,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0x40,0x9,0xd5,0x43,0xd3,0x0,0x0,0x34,0xb5,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xc9,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xfb,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3e,0x1e,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x9f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0x18,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0x65,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x45,0x7e,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3d,0x8f,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4e,0x7f,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x3c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7e,0x92,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6b,0x1a,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x73,0x2a,0xa,0x98,0x1f,0x89,0x0,0x0,0x35,0xe9,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x35,0x9e,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4d,0x9d,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x35,0x3b,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xbb,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x36,0x34,0xa,0xda,0x50,0x7e,0x0,0x0,0x7c,0xc3,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xa8,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0x7b,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x36,0x68,0xb,0xa,0x72,0xc9,0x0,0x0,0x38,0xd9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x32,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0xe7,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0x22,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x2,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xee,0xb,0x4e,0x19,0x54,0x0,0x0,0x52,0x8b,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0xf2,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x91,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0xf,0xb,0x9d,0xe,0xa2,0x0,0x0,0x31,0xdb,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0x3b,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0xed,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6e,0x4a,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x24,0xd1,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0xc3,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0x12,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x84,0xf6,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x62,0x7f,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x73,0xd9,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x75,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x44,0xc,0x33,0xeb,0xe2,0x0,0x0,0x74,0x37,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x43,0x6c,0xc,0x42,0x70,0xde,0x0,0x0,0x28,0xbb,0xc,0x48,0x83,0xde, + 0x0,0x0,0x64,0x59,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0xe3,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x75,0xff,0xc,0x77,0x67,0x19,0x0,0x0,0x43,0xb4,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x39,0x9c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x6c,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x30,0xab,0xc,0x90,0x26,0xb5,0x0,0x0,0x7d,0x4f,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0x94,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0x30,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6d,0x49,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x64,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5d,0x1c,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7f,0xb4,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0x83,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x22,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1d,0xc8,0xd,0x11,0x45,0x1a,0x0,0x0,0x27,0x3c,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x81,0x8a,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0xd7,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x82,0xd8,0xd,0x60,0xef,0x6a,0x0,0x0,0x4d,0x5f,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x34,0xf1,0xd,0x77,0xa4,0xc0,0x0,0x0,0x42,0x2b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x38,0x9e,0xd,0x88,0x48,0x23,0x0,0x0,0x30,0x3d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3b,0xfa,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x44,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x83,0xb1,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0x76,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x82,0xae,0xe,0x20,0x13,0x12,0x0,0x0,0x42,0xd4,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x55,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0x94,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0x22,0xe,0x48,0xfd,0xca,0x0,0x0,0x29,0xdb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2a,0x69,0xe,0x62,0x79,0x4,0x0,0x0,0x39,0x67,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0x79,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0xca,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x31,0xb2,0xe,0x98,0x18,0x54,0x0,0x0,0x26,0xf1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0xc8,0xe,0xbe,0x61,0x81,0x0,0x0,0x6c,0x39,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6c,0x7d,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0xc1,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6d,0x5,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0xcf,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0xc7,0xe,0xe2,0x34,0x60,0x0,0x0,0x84,0xa2,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x84,0xcc,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xe7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x20,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x8c,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x85,0x73,0xf,0x15,0xf4,0x85,0x0,0x0,0x4c,0xda,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x75,0x37,0xf,0x17,0x9c,0x64,0x0,0x0,0x7e,0xef,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0x66,0xf,0x29,0x4d,0x2a,0x0,0x0,0x46,0x9f,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x40,0x89,0xf,0x30,0x6b,0x3,0x0,0x0,0x30,0xf1,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x70,0x3f,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xbd,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xd,0xf,0x70,0xaa,0x1a,0x0,0x0,0x81,0xf2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x67,0x56,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0xc2,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0xca,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xb3,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x66,0x6a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3a,0x7c,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0xe,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0x9c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x50,0x55,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0xe3,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3c,0xdd,0xf,0xe2,0xe9,0x49,0x0,0x0,0x83,0x2d,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0x79,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0xbf,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x61,0x5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x61,0x4b,0x69,0x0,0x0,0x85, + 0xf7,0x3,0x0,0x0,0x0,0x1c,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x4f, + 0x0,0x5a,0x0,0x41,0x0,0x53,0x0,0x54,0x0,0x41,0x0,0x56,0x0,0x45,0x0,0x4e, + 0x0,0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50, + 0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x60, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6b,0x0,0xe9,0x0,0x6b,0x0,0x6f, + 0x1,0x3e,0x0,0x76,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x76, + 0x0,0x79,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x76,0x1,0x61,0x0,0x65, + 0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0xfa,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xfa,0x0,0x20,0x0,0x74,0x0,0x6c,0x0,0x61, + 0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x65,0x1,0x48,0x0,0x20,0x0,0x62, + 0x0,0x75,0x0,0x64,0x0,0xfa,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69, + 0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x25,0x0,0x69,0x0,0x20,0x1, + 0xd,0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x28,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x4f, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x26,0x0, + 0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0, + 0x75,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0, + 0x50,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x56,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0xfd,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6e, + 0x0,0x75,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x5a,0x0,0x6c,0x0,0x6f,0x1, + 0x7e,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x52,0x0,0x6f, + 0x0,0x7a,0x1,0x61,0x0,0xed,0x0,0x72,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0xe1,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0, + 0x6b,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0, + 0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x6f,0x0, + 0x6d,0x0,0x6f,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x26,0x0,0x53,0x0,0x6b,0x0,0x72,0x0,0x79,0x1,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20,0x1,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0xe1,0x0,0x74,0x0,0x69,0x1,0x65,0x0, + 0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0, + 0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x79,0x1,0x7e,0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0xe1,0x0,0x62,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71, + 0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0xe1,0x0,0x72,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x53,0x0,0x74,0x0,0xed,0x1,0x61,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x6a,0x0,0x62,0x0, + 0x6c,0x0,0x69,0x1,0x7e,0x1,0x61,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x50,0x0,0x26,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x72,0x0,0x61,0x1, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x62,0x0,0x79,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26, + 0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4f,0x0,0x64,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x68, + 0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x63,0x0,0x68, + 0x0,0xe1,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72, + 0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x76,0x0, + 0x69,0x0,0x6e,0x0,0x75,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x7a,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x50,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x1,0x3e,0x0,0x61, + 0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x5a,0x0,0x76, + 0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68, + 0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x26,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78, + 0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74, + 0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0, + 0x26,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x69,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x26,0x0,0x5a,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x26,0x0,0x42,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x26,0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x62,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0xe4,0x1,0xd,0x1,0x61,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x28,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74, + 0x0,0xe9,0x0,0x6d,0x0,0x75,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x28,0x0, + 0x70,0x0,0x72,0x0,0xe1,0x0,0x7a,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x31,0x0,0x25,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66, + 0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0, + 0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0, + 0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x32,0x0,0x25, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0, + 0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33, + 0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61, + 0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d, + 0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e, + 0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d, + 0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x0,0x20,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0, + 0xed,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20,0x1,0x61,0x0, + 0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x58,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x61,0x1,0x61,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x1,0x7e,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x1,0x3e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x69, + 0x0,0x64,0x1,0x7e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74, + 0x0,0xed,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x73,0x0,0x61, + 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x6f,0x0,0x76,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x75, + 0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x79, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x56,0x0,0x79,0x0, + 0x70,0x0,0x6e,0x0,0xfa,0x1,0x65,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74, + 0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41, + 0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,0x0,0x72,0x0, + 0x69,0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x50, + 0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x52,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64, + 0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x56,0x1,0x61,0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x73,0x0, + 0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x1,0x61,0x0,0x65,0x0,0x74,0x0, + 0x6b,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x79,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xe0,0x0,0x45, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x6f, + 0x0,0x76,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65, + 0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20, + 0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67, + 0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c, + 0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68, + 0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74, + 0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x5a,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e, + 0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55, + 0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x32, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x1,0x61,0x0,0x65,0x0,0x6a,0x0,0x2e,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x7a,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x61,0x0,0x63,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xed,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75, + 0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d, + 0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74, + 0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38, + 0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e, + 0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64, + 0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f, + 0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69, + 0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c, + 0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69, + 0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69, + 0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69, + 0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d, + 0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76, + 0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a, + 0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72, + 0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69, + 0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62, + 0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61, + 0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69, + 0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67, + 0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20, + 0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c, + 0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32, + 0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c, + 0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20, + 0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0,0x61,0x0,0x6f,0x0,0x7a,0x0, + 0x61,0x0,0x6a,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x1, + 0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0x61,0x0,0x6f,0x0,0x7a, + 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x5a,0x0, + 0xe1,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x5a,0x0,0x61,0x1,0xd,0x0,0x61,0x1, + 0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1,0x65, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x5a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x62,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x79,0x0,0x74,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x75,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0, + 0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0, + 0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f, + 0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72, + 0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x2,0xb8,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0xfa,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x79, + 0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x1,0x3e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd, + 0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x54,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x6f, + 0x1,0x7e,0x1,0x48,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76, + 0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6b, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x62,0x0,0x79,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20, + 0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x6d, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xfd,0x0,0x2e,0x0,0x20,0x0,0x4d, + 0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x76,0x1,0x61,0x0,0x61,0x0,0x6b, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x65,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x6c,0x0,0xe9,0x0,0x6d,0x0,0x79, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x76,0x0,0xe9,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x68,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0xe9,0x0,0x6b,0x0,0x6f, + 0x1,0x3e,0x0,0x76,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0xe1, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0xe1,0x0,0x63,0x0,0x68,0x0,0x20, + 0x0,0x6d,0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x79,0x1,0x65, + 0x0,0x20,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0, + 0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x76,0x0, + 0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x26,0x0,0xda, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x20, + 0x1,0xd,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x6f,0x0,0x62,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x79,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0xe1, + 0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1, + 0xd,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0, + 0x69,0x1,0xd,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x69,0x1,0x65,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0, + 0xfa,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x74,0x0, + 0x6b,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74, + 0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x6c,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x28,0x0,0x76,0x0,0x65,0x1,0x3e,0x0, + 0x6b,0x0,0xe1,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x56,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0xe1,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46, + 0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0xfd,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76, + 0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52, + 0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x76, + 0x0,0xfd,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x79,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74, + 0x0,0xe1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0xfa,0x0,0x62,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x75, + 0x1,0x7e,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75, + 0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c, + 0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xed,0x0,0x6c,0x0,0x69,0x1, + 0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0xfd,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x79, + 0x1,0x65,0x0,0x20,0x0,0x76,0x0,0xe4,0x1,0xd,0x1,0x61,0x0,0xed,0x0,0x20, + 0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x1,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x1,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0, + 0x65,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0x65,0x0,0x7a,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x1,0xf, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0xfa,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63, + 0x0,0x6b,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x79,0x0, + 0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1,0x65,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0, + 0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26, + 0x0,0x56,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x68,0x0,0x6e, + 0x0,0xfa,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x26,0x0,0x56,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x68,0x0, + 0x6e,0x0,0xfa,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x26,0x0,0x55,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x1,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0, + 0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x53,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0xe1,0x0,0x20,0x0, + 0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69, + 0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69, + 0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x75,0x0, + 0x74,0x0,0xe1,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0xe1,0x0, + 0x20,0x0,0x28,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x56,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0, + 0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72, + 0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x43, + 0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x48,0x0,0x43,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x69, + 0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x73,0x1,0x3e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0xd,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x45,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0xe1, + 0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x55,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x1,0xd,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32, + 0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0xfd,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x4f,0x0,0x76,0x0,0x6c,0x0,0xe1,0x0,0x64,0x0,0x61,0x1,0xd, + 0x0,0x20,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73, + 0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65, + 0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63, + 0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x56,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x65,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x6c,0x0,0xe1,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5a,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x69,0x0, + 0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x7e,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73, + 0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6c,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4b,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0x79,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0xe1,0x0,0x7a,0x0, + 0x6f,0x0,0x76,0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0, + 0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c, + 0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x53,0x0,0x70,0x0,0xf4,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x20, + 0x0,0x26,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0x6f, + 0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x1,0x65,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69, + 0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe1, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x6b,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4a,0x0,0x52,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x26,0x0,0x68, + 0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0xfa,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x5a,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x76, + 0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x26,0x0,0x6f,0x0,0x64,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x6a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79, + 0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x62, + 0x0,0x79,0x1,0x65,0x0,0x20,0x0,0x76,0x0,0xe4,0x1,0xd,0x1,0x61,0x0,0xed, + 0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44, + 0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc0,0x0,0x4f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0xe1,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x58,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0, + 0x6f,0x0,0x73,0x1,0x65,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x6f,0x0, + 0x76,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xfa,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x65,0x0,0x76,0x0, + 0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e, + 0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x65,0x0,0x76,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x65, + 0x0,0x76,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0, + 0xe9,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0, + 0x6e,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48, + 0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xfd,0x1,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x1,0x60,0x0, + 0x26,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x44,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x53,0x0,0x6b,0x0,0x72,0x0,0x79,0x1,0x65,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x6e,0x0,0xe1, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6f,0x0,0x76,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0xe4, + 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6e,0x0, + 0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75, + 0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0xfa,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0xe1,0x0, + 0x74,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x56,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x69,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0, + 0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0, + 0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4a,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x65,0x1,0x3e, + 0x0,0x6b,0x0,0xe9,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x79, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x55,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6b, + 0x0,0x6e,0x0,0xfa,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a, + 0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73, + 0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x88,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0, + 0x7a,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x64,0x0,0x79,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53, + 0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x76,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0, + 0xfd,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20, + 0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x6f,0x0,0x6f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0xe9,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74, + 0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x16, + 0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0xfd,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x22,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74, + 0x0,0x61,0x1,0xd,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64, + 0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb4,0x0,0x55,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x2c,0x0, + 0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x1,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0xed,0x0, + 0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x55,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x61,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xfa,0x0, + 0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x1,0x7e,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x65,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0x65,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64, + 0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84, + 0x0,0x55,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x61,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6c,0x0,0x6f, + 0x1,0x7e,0x0,0x6b,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x20,0x0,0x73, + 0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f, + 0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0xe1,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x1,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0xe4,0x1,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x70,0x0,0xe1,0x0,0x6e,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61, + 0x0,0xed,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f, + 0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4d,0x0,0x79,0x1, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75, + 0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x69,0x0,0x65,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xfd, + 0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0xe9,0x0,0x72, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x68,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x6e,0x0,0xe1,0x0,0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x1, + 0x7e,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x1,0x7e,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x1,0x7d,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0xed,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x56,0x0,0x79,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x56,0x0, + 0x79,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x73,0x1,0x3e,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0xd,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x69,0x0, + 0x6c,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0, + 0x2e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6e, + 0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xed,0x0,0x73,0x0,0x6c,0x0,0x75, + 0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3a,0x1,0xe,0x0,0x61,0x0,0x6c,0x1,0x61,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x1,0x3e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x70,0x0,0xed,0x0,0x73,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x65,0x1,0x7e,0x0, + 0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x6b,0x0,0xf3,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20, + 0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x1,0xc,0x0,0x61,0x0,0x73,0x0,0x6f,0x0, + 0x76,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0xd,0x0,0x69,0x0,0x61,0x0, + 0x74,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0xfa,0x0, + 0x68,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0, + 0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x1, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0xe1,0x1,0xd,0x0, + 0x6b,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0xfa,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x6e,0x0,0xfd,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0, + 0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x64,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x74,0x0, + 0x6c,0x0,0x61,0x1,0xd,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x53,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x69,0x1,0x65,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0, + 0x53,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0, + 0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0, + 0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x53,0x0,0x74,0x0,0x6c,0x0,0x61,0x1, + 0xd,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0, + 0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x75,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31, + 0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x53, + 0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46, + 0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20, + 0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x68, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x1,0x60,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x74,0x0,0xfd,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72, + 0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74,0x0,0x61,0x1,0x65,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f, + 0x0,0x73,0x1,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6c, + 0x0,0x6f,0x0,0x68,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x66,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xfd,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x65, + 0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f, + 0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0, + 0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x4e,0x0, + 0x65,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x75,0x0,0x64,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x72,0x0, + 0x6f,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0xe1,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x62,0x0,0x6e,0x0,0x6f,0x0, + 0x76,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x55,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69, + 0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x55,0x0,0x6c,0x0, + 0x6f,0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0, + 0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0xe1,0x0,0x6c,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x76,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20, + 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63, + 0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e, + 0x0,0x56,0x0,0xfd,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x76,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d, + 0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d, + 0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67, + 0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x79,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1, + 0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0, + 0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x56,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x6f,0x0,0x6d,0x0, + 0x61,0x0,0x6c,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d, + 0x0,0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d, + 0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20, + 0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x5a, + 0x0,0x76,0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x26,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x6c,0x0, + 0x6e,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0, + 0x75,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53, + 0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x76, + 0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75, + 0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x61, + 0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d, + 0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0x61,0x0,0x76, + 0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x1, + 0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1, + 0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x52,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x1, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0xfd,0x0, + 0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x1,0x60,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x32,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x1,0x60,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x34,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x1,0x60,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x36,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd, + 0x0,0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a, + 0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x1,0x60,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0, + 0xfd,0x0,0x20,0x0,0x38,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x69,0x0, + 0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x52,0x0,0x61,0x0,0x64, + 0x0,0x69,0x1,0xd,0x0,0x65,0x0,0x20,0x0,0xfa,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x55,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x73,0x0, + 0x6e,0x0,0xed,0x0,0x6d,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x26,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x79,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20, + 0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x26,0x0,0x43,0x0,0x69,0x0,0x65,0x1,0x3e,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x20,0x0,0x73,0x0,0x6e,0x0,0xed,0x0,0x6d,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0, + 0xe1,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0, + 0x72,0x0,0x65,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44, + 0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0, + 0x75,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x6c,0x0,0xe1,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x5a,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x73,0x0, + 0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0xed,0x0,0x73,0x0, + 0x61,0x0,0x6e,0x0,0xfd,0x0,0x2e,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x6f,0x0, + 0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x63,0x0, + 0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x75,0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xf0,0x0,0x54,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0xf4,0x1, + 0x7e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x1,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x61,0x0,0x68,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x76,0x0, + 0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0xed,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x76,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0xe1,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x1,0x7e,0x0,0x20,0x0,0x6d,0x0,0xf4,0x1, + 0x7e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x1, + 0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x70,0x0,0xed,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0xfd,0x0, + 0x2c,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0, + 0x6b,0x0,0x76,0x0,0xf4,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x79,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x2c,0x0,0x20,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6c,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0, + 0x74,0x0,0x65,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x74,0x0, + 0x6b,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x69,0x1,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54, + 0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74, + 0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, + 0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20, + 0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20, + 0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72, + 0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61, + 0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67, + 0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20, + 0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x50,0x0,0x6f,0x0,0x6b, + 0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xed, + 0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x79,0x0,0x6e, + 0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0xe1, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73, + 0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72, + 0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0, + 0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x54,0x0, + 0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x61, + 0x1,0x3e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0, + 0x63,0x0,0x69,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x7e,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x82,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x7e,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e, + 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64, + 0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x65,0x0,0x62,0x0, + 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0x61,0x1,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x6b,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x65,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0x65,0x0, + 0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4a,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e, + 0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0, + 0x69,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x1, + 0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x20,0x0,0x46,0x0, + 0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32, + 0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0xfa,0x0,0x62,0x0,0x6f, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x1e,0x0,0x56,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd, + 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6f,0x1,0x7e, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0xfd,0x0,0x62,0x0,0x61,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x20, + 0x0,0x7a,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x22,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75, + 0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68, + 0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69, + 0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72, + 0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20, + 0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0xe1, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x1,0xc,0x0,0x61,0x0,0x6b,0x0,0x61, + 0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x56,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x1,0x60,0x0, + 0xed,0x0,0x72,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61, + 0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50, + 0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x58, + 0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47, + 0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0, + 0x28,0x0,0x72,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6a,0x1, + 0x61,0x0,0xed,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0xfa,0x1, + 0x61,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0, + 0x69,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0, + 0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32, + 0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_it-IT.qm + 0x0,0x0,0x94,0xe9, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0x93,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0xc7,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0xa,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x82,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0x39,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x3a,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x42,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x81,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x1b,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x63,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xab,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xea,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x32,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x7a,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xc2,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xe0,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x54,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0xf6,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x14,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x5d,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x2b,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x49,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xc9,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xe6,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xb6,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x72,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x53,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x48,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x55,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0x7,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xb4,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x3d,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0xc9,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x22,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x6,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0x91,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x3f,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xbc,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xf5,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xf7,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xab,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xaf,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xa9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x2e,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xde,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0xd,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x7c,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x27,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xbe,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x9,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0x8f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0xa3,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0xe,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0xef,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0x60,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xb9,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x9e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0x6f,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x5e,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0x67,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xa0,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x4b,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x83,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xb8,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x54,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xe4,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x13,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x72,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x61,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x6,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0x90,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xbd,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x33,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0xaa,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0xb5,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0x55,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xc9,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x28,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x91,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xb5,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x66,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0xca,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x72,0xf6,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x72,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x7b,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x12,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xa9,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x54,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x33,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0x77,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0x8b,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x69,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xdc,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xdf,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x3b,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x7c,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x82,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x42,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x7,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x94,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x87,0xdd,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xe4,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x75,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x2,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xda,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x1,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0x7f,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xb9,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xe0,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x11,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0xb6,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x1e,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x29,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x9d,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x2e,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x28,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0xfa,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x55,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5a,0xc9,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x3d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x7c,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x3c,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x70,0xfc,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0xbc,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xfe,0x4,0x3,0xf6,0x9a,0x0,0x0,0x57,0x8a,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xab,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x29,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x53,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xfa,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x54,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0xe3,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x29,0xfd,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0x7f,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0x66,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x4,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x79,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x86,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xb1,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x11,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x48,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xaa,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xd3,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xca,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x5f,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0x2a,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xc4,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x5,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xdd,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0x4e,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0x60,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0xdc,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x81,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x7f,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xf6,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x3,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0x70,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x6e,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0xb4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0xec,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0x94,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0x9d,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x2b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xcd,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x4a,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0xca,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x16,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x45,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x28,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x87,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x7d,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0x6e,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xe4,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0xa7,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x4f,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x5a,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0x9b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xde,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0x45,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x93,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x29,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xbc,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x49,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x88,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xbd,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xf4,0x6,0x6c,0xb8,0x3,0x0,0x0,0x81,0xce,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0xef,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0xb9,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x54,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x93,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xf9,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xc9,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0xbc,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0xf8,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0x88,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xe4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0x8a,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x1e,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x6,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xde,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x20,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xab,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0x82,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x4c,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x47,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3b,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xae,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x52,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0x52,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0xc9,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0xeb,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x50,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x5f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0x81,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x71,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0xd5,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x10,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0xb7,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0xd8,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0xc5,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xef,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x4b,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0x8f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6a,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9a,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x67,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xb4,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x63,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x74,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x43,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0x74,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xe7,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xf5,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0xe,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0xde,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x19,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xa3,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0x84,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xc5,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x19,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0xcd,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0x55,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0x91,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x2d,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xba,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x66,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x4f,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xa3,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x4d,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x8c,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x99,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xd5,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x21,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x5d,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0xe7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0xcd,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x39,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x7,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x81,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xb1,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x8,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x71,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x9f,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xcd,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xfb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x50,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xcb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x98,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x91,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x3d,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xa9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0xb0,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x33,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x3f,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x79,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0xf8,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xe7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xaa,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xed,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xc8,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x63,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0xc1,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x54,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0xe2,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6c,0xf8,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x30,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x85,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x3a,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0xcd,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xc9,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xd1,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xd0,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x11,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0xc,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x7,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x2,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x9f,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x50,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x43,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0x66,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x50,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x54,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0xcd,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x56,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xed,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x37,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x29,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xc3,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xcb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x32,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x83,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x15,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0x32,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0x18,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0x3d,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xe1,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xd7,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0xb0,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x41,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x8,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x73,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0x3,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x1b,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x45,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x44,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x76,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x7e,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xe7,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xaf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x42,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0xf6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0x1d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x7a,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0xa4,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0xfc,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x2f,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xa0,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x4c,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x10,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0xce,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x95,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0xf4,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0x89,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x6f,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0xf7,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x5e,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x71,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xdc,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x72,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0xcf,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0xf0,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0xca,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x7a,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xf1,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x48,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xce,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0x8b,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x11,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x43,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x11,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0xf2,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xfe,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xbf,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x64,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x1d,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x5d,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0x9d,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xdd,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x7,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x5d,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xc4,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0xee,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x33,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x84,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xfe,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x83,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0xf6,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x63,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x47,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0xe,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0xdf,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x79,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x2d,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x4b,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x9f,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0xe,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x12,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x76,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x5e,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x17,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x10,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x6a,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0x54,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0xda,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x97,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x1d,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xb9,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x49,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0x25,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x6b,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0xb1,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xf7,0x69,0x0,0x0,0x88, + 0x7,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x64,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x72,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x51,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x72, + 0x0,0xe0,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f, + 0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c, + 0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x25, + 0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68, + 0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42, + 0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x46, + 0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x7a, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x64,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0, + 0x75,0x0,0x6f,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x4d,0x0,0x65,0x0,0x64,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76, + 0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x44, + 0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x41,0x0,0x26,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x41,0x0,0x64,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x63, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x26,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6d,0x0, + 0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x61, + 0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x0,0x26,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0, + 0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x61,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x44,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0xf9,0x0,0x20,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0x75, + 0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x26,0x0,0x69,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0, + 0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x7a,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x52, + 0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x0,0x52,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6f,0x0,0x76,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52, + 0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x69,0x0, + 0x26,0x0,0x61,0x0,0x76,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x67,0x0,0x69,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65, + 0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x26,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73, + 0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c, + 0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0, + 0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0, + 0x26,0x0,0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x72, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0,0x67,0x0,0x67,0x0, + 0x69,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x63, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69, + 0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69, + 0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x28,0x0,0x50, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74, + 0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x35,0x0,0x25,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x7a,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31, + 0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52, + 0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66, + 0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x53,0x0, + 0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e, + 0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22, + 0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36, + 0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0xf2, + 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68, + 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e, + 0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65, + 0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c, + 0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f, + 0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f, + 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d, + 0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74, + 0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f, + 0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x41,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x41,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x41,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x6e,0x0,0x67, + 0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6f, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x75,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0, + 0x75,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x4,0x2,0x0,0x55, + 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x3a,0x0,0x20, + 0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72, + 0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38, + 0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39, + 0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f, + 0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c, + 0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73, + 0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a, + 0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x74,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x65,0x0,0x78, + 0x0,0x70,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x7a, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x62,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x6f, + 0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x67,0x0,0x69, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x53,0x0,0x65,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x3f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x49,0x0, + 0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74, + 0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c, + 0x0,0x6f,0x0,0x63,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x53,0x0,0x6f,0x0,0x76,0x0, + 0x72,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61, + 0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20, + 0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x36,0x0,0x49,0x0,0x6c,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x67, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x67, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x51, + 0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x65,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x75, + 0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x2c,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x6d,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0xa,0x0,0xa,0x0,0x4c, + 0x0,0x27,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x75,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x6e, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41, + 0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72, + 0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0, + 0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x43,0x0,0x61, + 0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d, + 0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74, + 0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x61,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x58,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0, + 0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65, + 0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e, + 0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d, + 0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0, + 0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c, + 0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65, + 0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0xe0,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76, + 0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69, + 0x0,0xf9,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x69, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x56,0x0,0x75,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x61, + 0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4e,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0xf9,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68, + 0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20, + 0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x45,0x0, + 0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45, + 0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x41,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f, + 0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0, + 0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x46, + 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x49,0x0,0x6d, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57, + 0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x73,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46, + 0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44, + 0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0, + 0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x49,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x6f,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20, + 0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0, + 0x66,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4d, + 0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65, + 0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x67,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79, + 0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6c,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0xf9, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x4c,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x69,0x0,0x61, + 0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x54,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50, + 0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x45,0x0,0x73,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67, + 0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0, + 0x63,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61, + 0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x68,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63, + 0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73, + 0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6a,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0xe0,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x73,0x0, + 0x63,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44, + 0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x6e,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x69, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x64,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x14,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6d, + 0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64, + 0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50, + 0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x67,0x0, + 0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73, + 0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x52,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4e,0x0,0x75,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4e,0x0, + 0x65,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x75,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x69,0x0,0xf9,0x0,0x20,0x0,0x61,0x0,0x63, + 0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41,0x0,0x63,0x0,0x63,0x0,0x65,0x0, + 0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc0,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x74,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f, + 0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53, + 0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69, + 0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6f, + 0x0,0x76,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f, + 0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x6f,0x0,0x76,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4d,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0, + 0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6c,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0, + 0x63,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20, + 0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74, + 0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x53,0x0,0x6f,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x73,0x0, + 0x65,0x0,0x63,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65, + 0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x70,0x0, + 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28, + 0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x7a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x6d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x43,0x0,0x61,0x0, + 0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73, + 0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x55,0x0,0x73,0x0,0x61,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x69,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72, + 0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73, + 0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x52,0x0,0x26,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20, + 0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69, + 0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0, + 0x26,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x52,0x0,0x69,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x70,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x69,0x0,0x61,0x0,0x76,0x0,0x76,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52,0x0, + 0x69,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63, + 0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x61, + 0x0,0x6c,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x53,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x26,0x0, + 0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x53, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x42,0x0,0x6c,0x0,0x6f, + 0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x63, + 0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x75, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69, + 0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x47,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75, + 0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x5c,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69, + 0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79, + 0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x56,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x63,0x0,0x69,0x0,0x74,0x0,0xe0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x2e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x70,0x0, + 0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x6c,0x0, + 0x73,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x36, + 0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f, + 0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x70,0x0,0x75,0x0, + 0x6c,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66, + 0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73, + 0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x66,0x0, + 0x6f,0x0,0x74,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0, + 0x44,0x0,0x45,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0, + 0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x74,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x72,0x0, + 0xe0,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x75,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x49,0x0,0x6c,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0xe0,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x46,0x0,0x51,0x0,0x75,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x62,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x67,0x0,0x6e,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x7a,0x0,0x69,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x75,0x0,0xf2,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x63,0x0, + 0x63,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x75,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x61,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0, + 0x72,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x51,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x76,0x0,0x76,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0,0x69,0x0,0x6e, + 0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x27,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72, + 0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x49,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x49,0x0,0x6d, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x55,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x69,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x26,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72, + 0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48, + 0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x1e,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x61, + 0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x68,0x0,0x65,0x0,0x7a,0x0, + 0x7a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72, + 0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x70,0x0, + 0x69,0x0,0xf9,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0, + 0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x60,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61, + 0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25, + 0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30, + 0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x55, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0, + 0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32, + 0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_es-ES.qm + 0x0,0x0,0x95,0x29, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0x93,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0xd3,0x0,0x0,0x0,0x53,0x0,0x0,0x6a,0xd0,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x8c,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0x5d,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x56,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x36,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x79,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x25,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb5,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x3c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x84,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xcc,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xea,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x54,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x34,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x52,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x5b,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x6d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4d,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xaa,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xc2,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x72,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x43,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x2a,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x41,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xd1,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0x9c,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x53,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0xbf,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6a,0xe8,0x0,0x5,0x98,0xc5,0x0,0x0,0x6b,0xcc,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0x63,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x63,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xb0,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xe9,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x6b,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x71,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x6b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xf2,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xa4,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0x1b,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x70,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x31,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xb6,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0xff,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0x4f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0xb3,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6f,0xe2,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0xf3,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0x84,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xf9,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x9c,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0x71,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x52,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xab,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x33,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0x9e,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x2d,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x77,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0x86,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x5a,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xf2,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x17,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x54,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x5d,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0xbe,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0x6c,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xa3,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x3f,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0xe6,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0xe9,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0x71,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x91,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0xf4,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x67,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x63,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x48,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0x90,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x73,0xe,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x2c,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x97,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x32,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xcd,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x36,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x37,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0x8d,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0xcd,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x4b,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xb6,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xb9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x11,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x48,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x44,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xfe,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0xcb,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x6e,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x88,0x1d,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xda,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x49,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0xc8,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xae,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0xd5,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0x9b,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0x9b,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xc2,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x1b,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0xfa,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xe6,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x3,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xa7,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x22,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0xa,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0xdc,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x49,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5a,0xcd,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x5f,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x78,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x2e,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x70,0xe4,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0x9a,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x57,0xac,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0x8d,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0xef,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x19,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xdc,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x18,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0xef,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x3,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0xa1,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0x86,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0xc8,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x57,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x68,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0x93,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x18,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xb0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x9f,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xce,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x41,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0x28,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xa4,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0xe7,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xdb,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0x4a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0x84,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0xe6,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x9f,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x61,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xea,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0xaa,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x20,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xf9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0x86,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0x24,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0x9e,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0xb3,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x37,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xdf,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x1c,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0xd8,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x16,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x45,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0xfc,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x3f,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x43,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0x88,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xdc,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0xe7,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x95,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xc,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0xe3,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xc8,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0x87,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x89,0x6,0x19,0x20,0x43,0x0,0x0,0x6b,0xf3,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xaa,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x47,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x78,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xbb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xd6,0x6,0x6c,0xb8,0x3,0x0,0x0,0x82,0x2,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0xef,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0x97,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x60,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x9d,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xe9,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xb9,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0xc2,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0xfc,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0x4e,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xfc,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xb0,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x2e,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xe4,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xb6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x26,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xab,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0xc0,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x8c,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x35,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3b,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x90,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x2c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0x56,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0xb,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x44,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x37,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0x93,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x33,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0xc3,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xe2,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0x83,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0xee,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0x9f,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xdf,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x55,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0xb3,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6e,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9e,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x73,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xb6,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x67,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x64,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x9,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0xb2,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xe3,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xf9,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xd4,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x4,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x23,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xd1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x7b,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0xa8,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xa1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x5b,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0xfd,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0x91,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0xc7,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x9,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x96,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x52,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x2f,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0x9f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x63,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0xb0,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x85,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xc5,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x45,0x9,0x4e,0xde,0x64,0x0,0x0,0x7e,0x5,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0xcb,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x43,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0xe9,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x8b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xa5,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x12,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x43,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x73,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xa3,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xd3,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x5a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x7f,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa2,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x91,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x1f,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x8b,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0xac,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x41,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xfb,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x39,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0xf6,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xbd,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xaa,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xf9,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xf2,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x5d,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x5,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x52,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x81,0x4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6c,0xd2,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x62,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x7d,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x32,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0xb,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xcb,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xaf,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xc8,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x29,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xb8,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0xfa,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x93,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x2c,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x55,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0x7c,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x1e,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x16,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0xe9,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x18,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x9b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x89,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x1,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xcf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xa3,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x8,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x3b,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x1f,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0x70,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0x52,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0xf,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xfd,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x9b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x62,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x57,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x6,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x85,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0x3,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x5b,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x5f,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x4e,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x66,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x7c,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xc3,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xbf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x1c,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0xf6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6e,0xf1,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x58,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0x94,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x82,0x38,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x2f,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x94,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x3c,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x12,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x84,0xe,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x67,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x85,0x34,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0xc5,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x7d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0xe3,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x54,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x49,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xca,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x46,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x86,0x11,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0xe6,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x85,0xa,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x66,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xad,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x4e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xd4,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0x91,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x17,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x37,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0xf3,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x44,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xd8,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xc1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x52,0xe,0xbe,0x61,0x81,0x0,0x0,0x6d,0xf9,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x37,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0x75,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xb3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x11,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x15,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xfe,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x87,0x28,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xed,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x42,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xb4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0xc3,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x38,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x73,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x67,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5f,0xee,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0xeb,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x43,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0xf,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x53,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xc9,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x59,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0x50,0xf,0x74,0xd,0xca, + 0x0,0x0,0x68,0xec,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x54,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x18,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xdf,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x67,0xf8,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x52,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0x78,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0xfe,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0xbb,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x41,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xa9,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x8b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0x7,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x4d,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x93,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xd9,0x69,0x0,0x0,0x88, + 0x47,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x68,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0xe1, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74, + 0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20, + 0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73, + 0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68, + 0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26, + 0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0xc1,0x0,0x6d,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x46,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x66,0x0,0x6f,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f, + 0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61, + 0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x41, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe1, + 0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0, + 0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0, + 0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x41,0x0,0x79,0x0,0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x4f,0x0,0x63,0x0,0x75,0x0, + 0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0, + 0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x26,0x0,0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0, + 0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26, + 0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65, + 0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e, + 0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x4d,0x0,0xe1,0x0,0x73,0x0,0x20,0x0, + 0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4e,0x0,0x75, + 0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4e, + 0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61, + 0x0,0x75,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0, + 0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x47,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x45,0x0,0x26,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x45,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x43, + 0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53, + 0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x26,0x0,0x50,0x0,0xed,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x2e,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71, + 0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x48,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56, + 0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26, + 0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x26,0x0,0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x28,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x76,0x0, + 0x61,0x0,0x63,0x0,0xed,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32, + 0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x31,0x0,0x2e,0x0,0x35,0x0, + 0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31, + 0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x7a,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x75, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6e, + 0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6a, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x65, + 0x0,0x78,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x6c, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x41,0x0, + 0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41, + 0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x41,0x0,0xf1,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x75,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x41,0x0,0xf1,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x4e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65, + 0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xca,0x0,0x55, + 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0xfc, + 0x0,0x6f,0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c, + 0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33, + 0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x79,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x79,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x4c,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62, + 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66, + 0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa, + 0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47, + 0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c, + 0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61, + 0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43, + 0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64, + 0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e, + 0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61, + 0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64, + 0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79, + 0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c, + 0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77, + 0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c, + 0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d, + 0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69, + 0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e, + 0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa, + 0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f, + 0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73, + 0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b, + 0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e, + 0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73, + 0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73, + 0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61, + 0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61, + 0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45, + 0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x54,0x0,0xbf,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xac,0x0,0xbf, + 0x0,0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67, + 0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72, + 0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0, + 0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0, + 0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41, + 0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0, + 0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0, + 0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x61,0x0,0x73,0x0, + 0x69,0x0,0x63,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e, + 0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c, + 0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52, + 0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0, + 0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x2, + 0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20, + 0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62, + 0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa, + 0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70, + 0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73, + 0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20, + 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d, + 0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69, + 0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42, + 0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66, + 0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67, + 0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20, + 0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e, + 0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69, + 0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65, + 0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43, + 0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x43, + 0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x26, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x48,0x0, + 0x61,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74, + 0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64, + 0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x68,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x68, + 0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0,0xed,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0, + 0xbf,0x0,0x51,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x6f, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x61,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0xe1,0x0,0x6d,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61, + 0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0xe1,0x0,0x6d,0x0, + 0x69,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0, + 0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e, + 0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e, + 0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45, + 0x0,0x26,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x45,0x0,0x26,0x0,0x78,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x26,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74, + 0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x68,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x54,0x0,0x65, + 0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x45,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e, + 0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x53, + 0x0,0xf3,0x0,0x6c,0x0,0x6f,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70, + 0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x26,0x0,0x6f, + 0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33, + 0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68, + 0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x60,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x49,0x0,0x6e,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0xe1,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61, + 0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x41,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0, + 0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4d, + 0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f, + 0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x61,0x0,0x6e,0x0, + 0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6a,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x9c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x71,0x0,0x75,0x0, + 0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77, + 0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61, + 0x0,0x62,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4f, + 0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26, + 0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70, + 0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75, + 0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4a,0x0, + 0x75,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46, + 0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67, + 0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x42,0x0,0x6c,0x0,0x6f, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0xf1,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0, + 0x4e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d, + 0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x4d,0x0,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x4d, + 0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xfe,0x0,0x4c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73, + 0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xca,0x0,0x41,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0xfa,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c, + 0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c, + 0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61, + 0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x41,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0xfa,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0xed,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x41,0x0,0x73,0x0,0x65,0x0,0x67, + 0x0,0xfa,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d, + 0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0, + 0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f, + 0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x68, + 0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65, + 0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0x61,0x0,0x74,0x0,0xf3,0x0, + 0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75, + 0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x52, + 0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x41,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xe1,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6f, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x63, + 0x0,0x65,0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x4f,0x0,0x66,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xb0,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0, + 0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0, + 0x20,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0, + 0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f, + 0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69, + 0x0,0x63,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4f,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xed,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0, + 0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6a,0x0, + 0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61, + 0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x64,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0, + 0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x6a,0x0,0x6f,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0, + 0x63,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28, + 0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0, + 0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x53,0x0, + 0x75,0x0,0x70,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x75, + 0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73, + 0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x50,0x0,0x75,0x0,0x6c,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0, + 0x6c,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, + 0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x50,0x0,0x75,0x0, + 0x6c,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x62,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50, + 0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d, + 0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x50,0x0,0x75,0x0,0x6c,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69, + 0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65, + 0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43, + 0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79, + 0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x52,0x0,0x65, + 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50, + 0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0, + 0x65,0x0,0x26,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x62,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x79,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x65,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d, + 0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x53,0x0,0x61,0x0,0x6c,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0, + 0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73, + 0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67, + 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x62, + 0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x50,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f, + 0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x42,0x0,0x6c, + 0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0xf1,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x47,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0, + 0x61,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x61,0x0,0x72, + 0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x32, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54, + 0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65, + 0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x70,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e, + 0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x26,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79, + 0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0, + 0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x32,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0xe1,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62, + 0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x38,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67, + 0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x66, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75, + 0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x54,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x63,0x0,0x26,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x6a,0x0,0x65,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x54,0x0, + 0x65,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x4c,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0xe1,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x45,0x0,0x6c,0x0,0x20,0x0, + 0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0xbf,0x0, + 0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x73,0x0, + 0x61,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x2,0x8,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0xf3,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x75,0x0,0xe9,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0xa,0x0, + 0xa,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0xe9,0x0,0x6e,0x0, + 0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x63,0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x76,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0, + 0x2c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0xf3,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0xbf,0x0,0x51,0x0, + 0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f, + 0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c, + 0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69, + 0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65, + 0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x78,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0xe1, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e, + 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73, + 0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72, + 0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x54,0x0, + 0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x54,0x0, + 0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0xfa,0x0,0x6e, + 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x49,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20, + 0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x52,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20, + 0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x55,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x54,0x0,0x69,0x0, + 0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x72,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x22,0x0,0x4c, + 0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6d,0x0,0x62, + 0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6a, + 0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0xa1,0x0,0x42,0x0, + 0x69,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c, + 0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41,0x0,0x6e,0x0,0x63,0x0, + 0x68,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0, + 0x6d,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0, + 0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32, + 0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_cs-CZ.qm + 0x0,0x0,0x91,0xc7, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x27,0x8d,0x0,0x0,0x0,0x48, + 0x0,0x0,0x45,0xd9,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0x46,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x6c,0x0,0x0,0x4,0xf2,0x0,0x0,0x4f,0x2f,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0x24,0x0,0x0,0x5,0x3b,0x0,0x0,0x5b,0xde,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0x19,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x5,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x4d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x95,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xd4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x1c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x64,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xac,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xca,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0x3a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0x26,0x0,0x0,0x4d,0x85,0x0,0x0,0x4b,0x44,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5b,0xf9,0x0,0x0,0x5d,0x81,0x0,0x0,0x81,0xfd,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x47,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xb3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x28,0x0,0x4,0x8c,0xaf,0x0,0x0,0x25,0xa4,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0x62,0x0,0x4,0xa7,0x89,0x0,0x0,0x3b,0xf5,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x40,0xd0,0x0,0x4,0xc8,0xa4,0x0,0x0,0x42,0xd,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3f,0x75,0x0,0x4,0xd0,0x25,0x0,0x0,0x42,0x6e,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x45,0x53,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0x6f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x68,0x5e,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0x42,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6c,0xc9,0x0,0x5,0xc0,0x65,0x0,0x0,0x79,0xaf,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x4,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x3d,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xe1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x43,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x41,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x35,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0x70,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x14,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7c,0x9b,0x0,0x3b,0xa9,0x68,0x0,0x0,0x19,0xc4,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1c,0x7d,0x0,0x4c,0x99,0x62,0x0,0x0,0x3e,0x4c,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x35,0x3,0x0,0x58,0xc9,0xc4,0x0,0x0,0x67,0xe7,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6f,0x9b,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0x3e,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x79,0x4d,0x0,0x5c,0x6,0x8a,0x0,0x0,0x79,0xce,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x84,0x97,0x0,0x73,0x75,0x3e,0x0,0x0,0x33,0xb0,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0xd,0x0,0x97,0x96,0x4,0x0,0x0,0x36,0x48,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4d,0x69,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4e,0xff,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x48,0xb6,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5d,0xc5,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x18,0xcb,0x1,0x9,0x1c,0x92,0x0,0x0,0x40,0x40,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2a,0x5a,0x1,0x39,0xa4,0xce,0x0,0x0,0x57,0xae,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x79,0x71,0x1,0x4c,0x50,0xee,0x0,0x0,0x65,0xda,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x48,0x75,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x34,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x77,0xf0,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3a,0x55,0x1,0x91,0xe,0x73, + 0x0,0x0,0x28,0x35,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4a,0xda,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x52,0xb5,0x1,0xb0,0x47,0x5c,0x0,0x0,0x51,0x3f,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x6f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3f,0x9c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x3f,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x31,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x30,0xc6,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0x6,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6f,0xf2,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0xc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x71,0x87,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0x1a,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x70,0xad,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0x8a,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4a,0x47,0x2,0x78,0x48,0x1a,0x0,0x0,0x52,0x7b,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x82,0x5d,0x2,0x90,0x8d,0x12,0x0,0x0,0x40,0xff,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0x50,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0x41,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xed,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x1a,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x4,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0x88,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x49,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0x6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x84,0xbb,0x3,0x5,0x38,0xb2,0x0,0x0,0x3e,0x70,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x61,0xe5,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x38,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x10,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x37,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x51,0x69,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xef,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x16,0x3,0x6a,0x66,0x2e,0x0,0x0,0x55,0xeb,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x53,0xb8,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xc0,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2f,0x95,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x87,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0x76,0x3,0xa4,0x35,0xa5,0x0,0x0,0x40,0xb0,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x40,0x82,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0x9d,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x58,0x85,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0x3d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6e,0xa2,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6e,0x60,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0x1e,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6d,0xdc,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xe8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x55,0x82,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x16,0xe1,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0x5f,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0x89,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x30,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xf0,0x4,0x31,0xff,0xe9,0x0,0x0,0x25,0xd3,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x29,0x3,0x4,0x51,0x79,0xb1,0x0,0x0,0x72,0x79,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7a,0xee,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0x0,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6d,0xa1,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3b,0x22,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3b,0x4d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x33,0x2f,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2e,0xbe,0x4,0xb8,0x1,0x2e,0x0,0x0,0x37,0x9c,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x69,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xc8,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0x95,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x59,0xd0,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x32,0x8,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x3b,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0x29,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x59,0xf2,0x4,0xeb,0x2f,0xa,0x0,0x0,0x50,0x56,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x49,0xf8,0x5,0x18,0x5,0x95,0x0,0x0,0x7d,0x17,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x15,0xb5,0x5,0x30,0xd3,0xe,0x0,0x0,0x39,0x9c,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x59,0xad,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0x3e,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0xe0,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3b,0xa5,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6c,0xee,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x53,0xe2,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x79,0x0,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x73,0x83,0x5,0xa5,0x3a,0x79,0x0,0x0,0x26,0x1b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6f,0xc5,0x5,0xb2,0x16,0x79,0x0,0x0,0x66,0xae,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x46,0xd2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0x30,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3d,0xe3,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0x5e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xbd,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xb3,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4a,0x8a,0x5,0xc1,0x4d,0x83,0x0,0x0,0x36,0xca,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x80,0x4f,0x5,0xd0,0x4f,0x11,0x0,0x0,0x81,0x1d,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xda,0x5,0xdf,0xba,0xba,0x0,0x0,0x81,0x75,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0x60,0x6,0x7,0xd3,0xda,0x0,0x0,0x4c,0x71,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x36,0x73,0x6,0x19,0x20,0x43,0x0,0x0,0x69,0x67,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x39,0x66,0x6,0x38,0x9f,0x35,0x0,0x0,0x37,0x3d,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1e,0xc0,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x9f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x32,0x36,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7e,0x72,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0x3,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0x19,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x49,0x70,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1c,0xe9,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3c,0x9b,0x6,0x81,0xb7,0x1f,0x0,0x0,0x38,0x8f,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6e,0xe4,0x6,0x96,0xa4,0x13,0x0,0x0,0x43,0xe0,0x6,0x97,0x71,0x79, + 0x0,0x0,0x68,0xc4,0x6,0xc3,0xce,0xa3,0x0,0x0,0x71,0xf4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x44,0x8e,0x6,0xed,0xca,0xce,0x0,0x0,0x46,0x2c,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xd2,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x9c,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0x38,0x7,0x0,0x57,0x53,0x0,0x0,0x27,0xa5,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x53,0x88,0x7,0x6,0x93,0xe3,0x0,0x0,0x84,0x22,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0x79,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x25,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1d,0xde,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6c,0x8e,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0xa,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4b,0xf5,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0x5b,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0x98,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x31,0xab,0x7,0x58,0x61,0xe5,0x0,0x0,0x49,0xa1,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xb5,0x7,0x70,0xb3,0xaa,0x0,0x0,0x42,0x93,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2e,0x8e,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0x13,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x55,0xbe,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0x29,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5c,0x83,0x7,0xa4,0x32,0x89,0x0,0x0,0x1c,0xa1,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7e,0x2b,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x68,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x98,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0x57,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x24,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x62,0xcb,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3c,0x16,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x68,0x7f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4b,0xa4,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0x55,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x58,0xad,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0x9a,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x50,0xcc,0x8,0x60,0xe7,0xcd,0x0,0x0,0x78,0x85,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0x4b,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x5f,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x79,0xf0,0x8,0x9b,0xc,0x24,0x0,0x0,0x6a,0xe5,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0xf,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4e,0xc3,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4e,0x4b,0x8,0xa4,0xb,0xae,0x0,0x0,0x4e,0x87,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3a,0xc3,0x8,0xa9,0xcf,0x35,0x0,0x0,0x30,0x22,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3e,0xe6,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x23,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3d,0x43,0x8,0xf7,0xb3,0xda,0x0,0x0,0x44,0x43,0x9,0x9,0x24,0x29, + 0x0,0x0,0x50,0x80,0x9,0x49,0xfa,0x4a,0x0,0x0,0x32,0xcb,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x32,0xfd,0x9,0x49,0xfa,0x6a,0x0,0x0,0x32,0x67,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x32,0x99,0x9,0x4e,0xde,0x64,0x0,0x0,0x7a,0x53,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0x6b,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x23,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x3d,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x6b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0x31,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xf2,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2e,0xe5,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0x11,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2f,0x3d,0x9,0x88,0x63,0x3a,0x0,0x0,0x2f,0x69,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x3a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x5f,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x82,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x60,0xa7,0x9,0xc2,0x33,0xa9,0x0,0x0,0x15,0xdf,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x59,0x68,0x9,0xd5,0x43,0xd3,0x0,0x0,0x34,0x4b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xa5,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xd7,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3d,0x94,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x89,0xa,0x41,0x77,0x3, + 0x0,0x0,0x43,0x78,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0x25,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x44,0xde,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3d,0x7,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4d,0xbd,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x2e,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7d,0x82,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0x32,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x72,0x3a,0xa,0x98,0x1f,0x89,0x0,0x0,0x35,0x7f,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x35,0x34,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4c,0xe1,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x34,0xd1,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xa5,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x35,0xca,0xa,0xda,0x50,0x7e,0x0,0x0,0x7b,0xb1,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x86,0xa,0xea,0x46,0xf4,0x0,0x0,0x5a,0x9d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x35,0xf4,0xb,0xa,0x72,0xc9,0x0,0x0,0x38,0x69,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x10,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0xb,0xb,0x29,0x70,0x65, + 0x0,0x0,0x45,0x7c,0xb,0x30,0x4b,0xa2,0x0,0x0,0xb,0xec,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xd8,0xb,0x4e,0x19,0x54,0x0,0x0,0x51,0xb7,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0xda,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x6d,0xb,0x95,0xed,0xa, + 0x0,0x0,0x53,0x37,0xb,0x9d,0xe,0xa2,0x0,0x0,0x31,0x75,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xfb,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0x5,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0x60,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x24,0x8d,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0x17,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4b,0x62,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x83,0xe6,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0x93,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x72,0xdf,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x5f,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x22,0xc,0x33,0xeb,0xe2,0x0,0x0,0x73,0x39,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x42,0xce,0xc,0x42,0x70,0xde,0x0,0x0,0x28,0x7b,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0x77,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0x23,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x74,0xff,0xc,0x77,0x67,0x19,0x0,0x0,0x43,0x14,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x39,0x2a,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x54,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x30,0x4b,0xc,0x90,0x26,0xb5,0x0,0x0,0x7c,0x3d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5e,0xb0,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x27,0xf0,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0x5f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x4e,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0x38,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7e,0xa6,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x62,0x99,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x19,0xe8,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1d,0x8c,0xd,0x11,0x45,0x1a,0x0,0x0,0x26,0xfc,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x80,0x7a,0xd,0x4a,0x90,0xb2,0x0,0x0,0x66,0xf9,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x81,0xc6,0xd,0x60,0xef,0x6a,0x0,0x0,0x4c,0xa3,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x34,0x87,0xd,0x77,0xa4,0xc0,0x0,0x0,0x41,0x8b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x38,0x2c,0xd,0x88,0x48,0x23,0x0,0x0,0x2f,0xdd,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3b,0x78,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x20,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x82,0x9f,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5b,0x92,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x81,0x9c,0xe,0x20,0x13,0x12,0x0,0x0,0x42,0x32,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x31,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0x4e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x29,0xd4,0xe,0x48,0xfd,0xca,0x0,0x0,0x29,0x91,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2a,0x17,0xe,0x62,0x79,0x4,0x0,0x0,0x38,0xf5,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0x3d,0xe,0x7b,0xa1,0x23,0x0,0x0,0x52,0xf2,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x31,0x4c,0xe,0x98,0x18,0x54,0x0,0x0,0x26,0xb1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x64,0xea,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0x4f,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6b,0x93,0xe,0xbe,0x61,0x83,0x0,0x0,0x6b,0xd7,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0x1b,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0x1f,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0x8f,0xe,0xe2,0x34,0x60,0x0,0x0,0x83,0x92,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x83,0xbc,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xc7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x8,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x6a,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0x61,0xf,0x15,0xf4,0x85,0x0,0x0,0x4c,0x28,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x74,0x35,0xf,0x17,0x9c,0x64,0x0,0x0,0x7d,0xdf,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5d,0x86,0xf,0x29,0x4d,0x2a,0x0,0x0,0x45,0xf1,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x3f,0xfd,0xf,0x30,0x6b,0x3,0x0,0x0,0x30,0x91,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0x4d,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x99,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0xdf,0xf,0x70,0xaa,0x1a,0x0,0x0,0x80,0xe2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x66,0x78,0xf,0x85,0x7b,0xea,0x0,0x0,0x5e,0xdc,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0x9e,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0x9d,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0x8c,0xf,0xd3,0x41,0x72,0x0,0x0,0x3a,0x8,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4f,0x4a,0xf,0xd9,0x8c,0xca,0x0,0x0,0x4f,0xd0,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4f,0x8d,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0x13,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3c,0x5b,0xf,0xe2,0xe9,0x49,0x0,0x0,0x82,0x1b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5f,0x8f,0xf,0xf5,0xeb,0x52,0x0,0x0,0x5f,0xd5,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0x1b,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0x61,0x69,0x0,0x0,0x84, + 0xe5,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x74,0x1,0x59,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20,0x0,0x70, + 0x1,0x59,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x1,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x44, + 0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4a,0x0,0x61,0x0,0x6b,0x0,0xe9, + 0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x20, + 0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x75, + 0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x1,0x7e,0x0,0x65,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62, + 0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66, + 0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e, + 0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50, + 0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67, + 0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62, + 0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25, + 0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4b, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x25,0x0,0x69,0x0, + 0x20,0x1,0xd,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x63,0x0,0xed,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x28,0x0,0x79,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x41,0x0,0x6b,0x0,0x63,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x70,0x1,0x59,0x0, + 0x69,0x0,0x20,0x0,0x7a,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x74,0x1,0x1b,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x1,0x1b,0x1,0x59,0x0,0x65,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x1, + 0x6f,0x0,0x6d,0x1,0x1b,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x56,0x0, + 0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0,0xed,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x74,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0, + 0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x74, + 0x0,0xe1,0x0,0x68,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0xe1,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0, + 0x6b,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0, + 0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0xe1,0x0,0x26,0x0, + 0x70,0x0,0x6f,0x0,0x76,0x1,0x1b,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0, + 0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x1,0x59,0x0,0xe1,0x0,0x64,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20, + 0x1,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e, + 0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74, + 0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x76,0x0, + 0x72,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x61,0x0, + 0x72,0x0,0x76,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26, + 0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x26,0x0,0x4b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x79,0x1,0x7e,0x0,0x61,0x0, + 0x64,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0xe1,0x0,0x62,0x1, + 0x1b,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0xe1,0x0,0x72, + 0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x5a,0x0,0x74,0x0,0x69,0x1, + 0x61,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x4e,0x0,0x65,0x0,0x6a,0x0,0x62,0x0,0x6c,0x0,0x69,0x1,0x7e,0x1, + 0x61,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x26,0x0,0x6f, + 0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x50,0x1, + 0x59,0x0,0x65,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x64,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x73,0x0,0x74,0x0,0xed,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x1,0x61,0x0,0x65,0x0,0x64,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79, + 0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x61, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26, + 0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65, + 0x0,0x64,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x0,0x4f,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x26,0x0,0x4d,0x1,0x1b,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x74,0x0, + 0x6f,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x7a,0x0,0x61,0x1,0xd,0x0,0xe1,0x0,0x74,0x0,0x65,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x50, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76, + 0x0,0xfd,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53, + 0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x5a,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x6e,0x0,0xed,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x5a,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0, + 0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x1,0x1b,0x0,0x72,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0, + 0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69, + 0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x41,0x0, + 0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x1,0x59,0x0,0xe1,0x0,0x64,0x0,0x6b,0x0, + 0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61, + 0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x5a,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x42,0x0,0xed,0x0,0x6c,0x0,0xe1,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69, + 0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0, + 0x62,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x76,0x1,0x1b,0x0,0x74,0x1, + 0x61,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x28,0x0,0x56,0x0,0xfd, + 0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x6d,0x0,0x75,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0xe1,0x0,0x7a,0x0, + 0x64,0x0,0x6e,0x0,0xe9,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0, + 0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32, + 0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x31,0x0,0x2e,0x0,0x35,0x0, + 0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0, + 0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f, + 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62, + 0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0, + 0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20, + 0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39, + 0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e, + 0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31, + 0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67, + 0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47, + 0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0, + 0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x43,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x65,0x0,0x6c,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x1,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35, + 0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35, + 0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36, + 0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x52,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x6c,0x0,0x20,0x1,0x7e,0x0,0xe1, + 0x0,0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x1,0x7e, + 0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d, + 0x1,0x1b,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x53,0x0,0x74,0x0,0xe1,0x0,0x68,0x0,0x6e,0x1,0x1b, + 0x0,0x74,0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x73, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x1,0x6f,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x75, + 0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x79, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x56,0x0,0x79,0x0, + 0x70,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x6b,0x0, + 0x72,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20, + 0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x50,0x1,0x59,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0, + 0xed,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x50,0x1,0x59,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x1,0x59, + 0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x56,0x1,0x61,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x56,0x1,0x61,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x79,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x1,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xd4,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72, + 0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x1,0x6f,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x1,0x59,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x5a, + 0x0,0x76,0x0,0x65,0x1,0x59,0x0,0x65,0x0,0x6a,0x0,0x6e,0x1,0x1b,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x32, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x1,0x1b,0x0,0x6a,0x1,0x61,0x0,0xed,0x0,0x2e,0x0,0x20,0x0,0x56, + 0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0xed, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0xed,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20, + 0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73, + 0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e, + 0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72, + 0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20, + 0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20, + 0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77, + 0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e, + 0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a, + 0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20, + 0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65, + 0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42, + 0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63, + 0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34, + 0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b, + 0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20, + 0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69, + 0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e, + 0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20, + 0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f, + 0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61, + 0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f, + 0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74, + 0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e, + 0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65, + 0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e, + 0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20, + 0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e, + 0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f, + 0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x4f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x64,0x0, + 0x75,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76, + 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x5a,0x0, + 0xe1,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x5a,0x0,0x61,0x1,0xd,0x0,0xed,0x0, + 0x74,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x1,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x62,0x1,0x1b,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x62,0x1,0x1b,0x0,0x72, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x50,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x68,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59, + 0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0, + 0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xae, + 0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x79,0x0,0x6c, + 0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x1,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75, + 0x0,0x6d,0x0,0x6f,0x1,0x7e,0x1,0x48,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x62, + 0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0xfd,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xed, + 0x0,0x2e,0x0,0x20,0x0,0x4d,0x1,0x6f,0x1,0x7e,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x76,0x1,0x61,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0xed, + 0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f, + 0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6d, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x68,0x0,0x6f, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0xed,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0xe1, + 0x0,0x6c,0x0,0x6e,0x1,0x1b,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6b,0x0,0x6f, + 0x0,0x6c,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0xe1,0x1,0x61, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0x79,0x0,0x62,0x0,0xe1,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x68,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0xfd,0x0,0x74,0x0,0x20, + 0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x76,0x1,0x59,0x0,0x65,0x0,0x6e,0x0,0x79, + 0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0, + 0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x76,0x0, + 0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x55, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20, + 0x1,0xd,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x6f,0x0,0x62,0x0,0xed,0x0,0x6c, + 0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f, + 0x0,0x76,0x0,0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27, + 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, + 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x42,0x0, + 0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65, + 0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6d,0x0,0x79,0x1, + 0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x6f, + 0x0,0x6b,0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e, + 0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x1,0x58,0x0, + 0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x1, + 0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x1,0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x1,0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x50,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x20,0x1, + 0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43, + 0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61, + 0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0, + 0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x28,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0xfd,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x6c,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0xed,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x79,0x0,0x6c,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x56,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x6f,0x0,0x7a, + 0x0,0x64,0x0,0xed,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56, + 0x0,0x79,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x74,0x0, + 0x76,0x0,0x6f,0x1,0x59,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40, + 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x69,0x1,0x7e,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x70,0x1,0x59,0x0,0xed,0x0,0x6c,0x0,0x69,0x1,0x61,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f, + 0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x52,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x1,0x6f,0x1,0x7e,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0xfd,0x0,0x74, + 0x0,0x20,0x0,0x76,0x1,0x1b,0x0,0x74,0x1,0x61,0x0,0xed,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x1,0x7e,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0xed,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61, + 0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x65,0x0, + 0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0x61,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74, + 0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x4e,0x0,0x65,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x69,0x0,0x73, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x4e,0x0,0x65,0x0,0x7a,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0xe1, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77, + 0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44, + 0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd, + 0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79, + 0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0xed,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4e,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53, + 0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x56,0x0,0x79,0x0,0x6a, + 0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x56,0x0,0x79,0x0,0x6a,0x0,0x6d,0x0,0x6f,0x0, + 0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d, + 0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26, + 0x0,0x55,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0,0x26,0x0, + 0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45, + 0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44, + 0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x1,0xc,0x0,0x61,0x0,0x73,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72, + 0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44, + 0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x5a,0x0, + 0x61,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0, + 0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x5a,0x0,0x61,0x0,0x70,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xed,0x0, + 0x73,0x0,0x74,0x0,0x6e,0x0,0xed,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x73,0x0,0x74,0x0, + 0x75,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x1, + 0x7e,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0, + 0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0, + 0x76,0x0,0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45, + 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x43,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61, + 0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0xd,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x45,0x0,0x78, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0,0xed, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x7a, + 0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x55,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x1,0x1b, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0, + 0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x1,0x59,0x0,0x61,0x0,0x64,0x0,0x69,0x1, + 0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79, + 0x0,0x6e,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x1,0x59,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0, + 0xed,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x58,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x1, + 0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x79,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74, + 0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x52,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0xfd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4b,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79, + 0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0xe1,0x0,0x7a,0x0, + 0x65,0x0,0x76,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0, + 0x72,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0x6f, + 0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69, + 0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe1, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x6b,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x48,0x0,0x52,0x0,0x65,0x1,0x7e,0x0,0xed,0x0,0x6d,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x26,0x0,0x68,0x0,0x6e, + 0x0,0x75,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20, + 0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x65,0x0,0x73,0x0, + 0xed,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x64,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6f,0x0,0x64,0x0,0x73,0x0,0x74, + 0x0,0xed,0x0,0x6e,0x0,0x79,0x0,0x20,0x1,0x61,0x0,0x65,0x0,0x64,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x1,0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1, + 0xd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x66,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x1,0x6f,0x1,0x7e,0x0,0x6f,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0xfd,0x0,0x74,0x0,0x20,0x0,0x76,0x1,0x1b,0x0,0x74, + 0x1,0x61,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x65,0x1,0x7e,0x0,0x20,0x0,0x34, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xbe,0x0,0x4f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x6a,0x0, + 0x69,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x1,0x7e,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6a,0x0, + 0x74,0x1,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65, + 0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74, + 0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x65,0x0, + 0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76, + 0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x65,0x0,0x76,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50, + 0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0, + 0x6e,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48, + 0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xfd,0x1,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x1,0x60,0x0, + 0x26,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63, + 0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x6e, + 0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x1,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x1,0x59,0x0,0x65, + 0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x1,0x1b,0x0,0x74, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x5a, + 0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe1,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x73,0x0,0x74,0x0,0x75,0x0, + 0x70,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59,0x0,0xed,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x1,0x1b,0x0,0x6e,0x0,0xfd,0x0,0x20,0x1,0x59,0x0, + 0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x4e,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x1, + 0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x6e,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0, + 0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4a,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0xe9, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x55,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6b,0x0,0x6e,0x0,0x6f, + 0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x79, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x1,0x1b, + 0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x65,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0,0x73,0x0, + 0x74,0x0,0x75,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0,0xfd,0x0,0x73,0x0,0x74,0x0,0x75,0x0, + 0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44, + 0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4d,0x0, + 0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50, + 0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x16,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x2c, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x1,0x7e, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x1,0x1b,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x22,0x0,0x2e,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x70, + 0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61, + 0x1,0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xb0,0x0,0x55,0x0,0x6a,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x1b,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x69,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0, + 0x76,0x0,0xe1,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xed,0x1,0x65,0x0, + 0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x70,0x0, + 0x6f,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x73,0x0,0x20,0x0, + 0x6e,0x0,0xed,0x0,0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xed,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x64,0x0,0x55,0x0,0x6a,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x1b,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6a,0x0, + 0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x1,0xd,0x0,0xed,0x0, + 0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x88,0x0,0x55,0x0,0x6a,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x1b, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x79,0x0,0x2c,0x0,0x20, + 0x0,0x6b,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x64,0x0,0xe1,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20, + 0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e, + 0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69, + 0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x61,0x0, + 0x6d,0x1,0x1b,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63, + 0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65, + 0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e, + 0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0xe1,0x0,0x6e, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43, + 0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0xed,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x4d,0x0,0x79,0x1,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0xed,0x1,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0xed,0x1,0x65,0x0,0x6f, + 0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0xe9,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x72,0x0, + 0x75,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0xed,0x0,0x74,0x1,0x1b,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x1,0x7e,0x0,0xe1,0x0,0x64,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59,0x0, + 0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x79,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x1,0x7e,0x0,0xe1,0x0,0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x1,0x7d,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0xe9,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x73,0x0,0x6e, + 0x1,0x1b,0x0,0x6a,0x1,0x61,0x0,0xed,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20, + 0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x56,0x0,0x79,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x5a,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa4,0x0,0x56,0x0,0x79,0x0,0x6b,0x0, + 0x72,0x0,0x65,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0xd,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x1,0x59,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x0,0x6a,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4a,0x0,0x69, + 0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0xed,0x0,0x73,0x0,0x6c, + 0x0,0x75,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0xed, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x61,0x0,0x6c,0x1,0x61,0x0,0xed, + 0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6d,0x1,0x1b,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59, + 0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x73, + 0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54, + 0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0xf3,0x0,0x64,0x0,0x79,0x0,0x20,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0, + 0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x1,0xc,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x64,0x1,0x59,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0, + 0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x1,0x59,0x0, + 0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x6f,0x0,0x75,0x0,0x68,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0xed,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20, + 0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74, + 0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x74,0x0, + 0xe1,0x1,0xd,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0, + 0x6d,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x5a,0x0,0x61,0x0, + 0x64,0x0,0x65,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x7a,0x0, + 0x65,0x0,0x76,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0, + 0x72,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20, + 0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x50,0x1,0x59,0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x6f,0x0, + 0x75,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x74,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x53,0x0, + 0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0, + 0x6d,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0, + 0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x59,0x0, + 0x65,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x74,0x0,0x6c,0x0,0x61,0x1, + 0xd,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x1,0x1b,0x0, + 0x6e,0x0,0xed,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x6e,0x1,0x1b,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6d,0x0,0x79, + 0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72, + 0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x72,0x1,0x6f,0x0,0x62,0x1,0x1b, + 0x0,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72, + 0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x1,0xc,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x74,0x0,0xfd,0x0,0x20, + 0x1,0x59,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74, + 0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38, + 0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x7a,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x26,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f, + 0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52, + 0x0,0x65,0x1,0x7e,0x0,0xed,0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e, + 0x0,0x2f,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xfd, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0, + 0x4e,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x1, + 0x48,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x1,0x1b,0x0, + 0x20,0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x1,0x59,0x0,0x65,0x0, + 0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0, + 0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x1,0x1b,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61, + 0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65, + 0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x62,0x0,0x6e,0x0, + 0x6f,0x0,0x76,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x55,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x55,0x0, + 0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0, + 0x6f,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0xe1,0x0, + 0x6c,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x76,0x0,0xfd,0x0,0x63,0x0,0x68,0x0, + 0x6f,0x0,0x7a,0x0,0xed,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68, + 0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20, + 0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x56,0x0,0xfd,0x0,0x62,0x1,0x1b, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0xe1,0x0,0x6c, + 0x0,0x6e,0x0,0xed,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x1,0x6f,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0xed,0x0,0x68,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0xe1,0x1,0x59, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x79,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x64,0x1,0x59,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0, + 0x76,0x0,0x69,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x50,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0xfd,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x62, + 0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x5a,0x0,0x65,0x0,0x73,0x0,0xed, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x65,0x0,0x73,0x0,0xed,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0, + 0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75, + 0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xe1, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x76, + 0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x1,0x1b, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x6e, + 0x0,0xed,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69, + 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x52,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x79,0x0, + 0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x32,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x34,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x36,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd, + 0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a, + 0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x38,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0xed,0x0, + 0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x1,0x58,0x0,0x61,0x0,0x64, + 0x0,0x69,0x1,0xd,0x0,0x65,0x0,0x20,0x0,0xfa,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x69,0x1,0x61,0x0,0x74,0x1,0x1b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x50,0x0,0x6f,0x1,0x59,0x0,0xed,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x20,0x0, + 0x26,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0, + 0x68,0x0,0x6f,0x0,0x74,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f, + 0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x43,0x0,0xed,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x6e,0x0,0xed,0x0,0x6d,0x0,0x6b,0x0, + 0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x6b,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65, + 0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x54,0x1,0x59,0x0,0x65,0x0,0x74,0x0,0xed,0x0,0x20,0x1,0x59,0x0,0x61,0x0, + 0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0xed,0x0,0x74,0x1,0x1b,0x0,0x20,0x0,0x62,0x0,0x75,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x6e,0x0, + 0x75,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c, + 0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x5a,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x73,0x0,0xe1,0x0, + 0x6e,0x0,0x2e,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x64,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x63,0x0, + 0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x75,0x1,0x7e,0x0,0xed,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xec,0x0,0x54,0x0,0x6f,0x0,0x20,0x0,0x6d,0x1,0x6f,0x1, + 0x7e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x0,0x74,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x61,0x0,0x68,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x1,0x59,0x0,0x61,0x0,0x7a,0x0, + 0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x6d,0x1,0x1b,0x0,0x6e,0x0, + 0x69,0x0,0x6c,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x76,0x0, + 0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x1,0x59,0x0,0x65,0x0,0x6e,0x0,0xed,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0xed,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x75,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6b,0x0,0xe9,0x0,0x20,0x0,0x6d,0x1,0x6f,0x1,0x7e,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x64,0x0,0x20,0x0, + 0x62,0x0,0x79,0x0,0x6c,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x70,0x0,0xed,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x6e,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x70,0x1, + 0x59,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x2c,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x76,0x1, + 0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x1, + 0x1b,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0, + 0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x1,0x59,0x0,0x69,0x0,0x6c,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x0,0x6d,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68, + 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72, + 0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x54,0x0,0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0xed,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4e,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0, + 0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x68,0x0, + 0x6f,0x0,0x76,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x80,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20, + 0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x1,0x59,0x0,0x65,0x0,0x62, + 0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64, + 0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0, + 0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x74,0x0,0x20,0x0, + 0x6b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x6b,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x6b,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70,0x1, + 0x59,0x0,0x65,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x73,0x0, + 0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4e,0x0, + 0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0, + 0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0, + 0x74,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x20,0x0,0x46,0x0, + 0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32, + 0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x62, + 0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x1c,0x0,0x56,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x2c, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x1,0x7e, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x1,0x1b,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x22,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x69, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75, + 0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68, + 0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69, + 0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72, + 0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0,0x74,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20, + 0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0xe1, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x1,0xc,0x0,0x65,0x0,0x6b,0x0,0x61, + 0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x79, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x56,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57, + 0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x1,0x60,0x0,0xed,0x1, + 0x59,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61, + 0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72, + 0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0, + 0x72,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6a,0x1,0x61,0x0, + 0xed,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x5e,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x75,0x1, + 0x61,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x1,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_hu-HU.qm + 0x0,0x0,0x94,0x6b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xef,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0xf,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0x3a,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x7e,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0x6b,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x44,0x0,0x0,0x5,0x3b,0x0,0x0,0x5d,0xf4,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x3d,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x17,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x5f,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xa7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xe6,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x2e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x76,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xbe,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xdc,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xac,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x4a,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x68,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0xf,0x0,0x0,0x5d,0x81,0x0,0x0,0x84,0xb5,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4f,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xc5,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x44,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x6,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xcc,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x4b,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x66,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0xa1,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xff,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xfe,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x7b,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0x85,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x52,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x38,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0x77,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x99,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x28,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x61,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xf3,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xc3,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xd7,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xe9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x8c,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x20,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7f,0x75,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xe8,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x87,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xca,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0xfd,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0xb5,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0x51,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6f,0xf2,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0x37,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7c,0xbc,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0x3b,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xae,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0x25,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x56,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0x8b,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x33,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xc6,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x21,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xef,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xc2,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x86,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xb2,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7c,0x5b,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x82,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x85,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x4c,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7a,0xd2,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xa9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x97,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0xf0,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0xbd,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0x5f,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xe7,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x26,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xbd,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x1,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x6a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0xfc,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x72,0xa0,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x6e,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x3f,0x2,0x23,0x3c,0x6b,0x0,0x0,0x73,0xd0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0x61,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xaa,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x71,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0x7f,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0x15,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x95,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xae,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xeb,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x35,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xb0,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xb2,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xae,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x65,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x68,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x87,0x5f,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xec,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x2f,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x44,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x26,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x4d,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0x89,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0xf,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x36,0x3,0x6a,0x66,0x2e,0x0,0x0,0x57,0xc9,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0xb0,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x36,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x19,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x99,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x9a,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x46,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x18,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xc1,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5a,0x7d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x72,0xe9,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x52,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x16,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x70,0xda,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0x9e,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xfa,0x4,0x3,0xf6,0x9a,0x0,0x0,0x57,0x62,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0x1,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x6b,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x95,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x50,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x6a,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x35,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x57,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0x39,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7d,0xcc,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x58,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x5f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x66,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0x8f,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x29,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x3c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xac,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x1,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xd0,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xb5,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5b,0xc6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xc8,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x5b,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x33,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5b,0xf0,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0x6a,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x20,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x11,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xd5,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xd8,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5b,0xa1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x85,0xe6,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xc6,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xeb,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0x9a,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0xe0,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7b,0xea,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0x4f,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x7d,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0x7b,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x4e,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xc,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x3a,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x63,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x74,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xbf,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xbf,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xb4,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xee,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0x5,0x5,0xd0,0x4f,0x11,0x0,0x0,0x83,0xc7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xb2,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0x17,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xf6,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0x93,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x83,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x5d,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0x9a,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x55,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xc6,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xb5,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x2,0x6,0x6c,0xb8,0x3,0x0,0x0,0x81,0x4c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x13,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0x73,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x84,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xf3,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xf3,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xad,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0x8e,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x34,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0xb8,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xae,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xd8,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x6a,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xf8,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xdc,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x4a,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x7,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0x7a,0x7,0x6,0x93,0xe3,0x0,0x0,0x86,0xca,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x8b,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x29,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xee,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x42,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0x6,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x15,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0x9d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xbc,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x61,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0xcd,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xdb,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0x1f,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0xe5,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0x96,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0xd3,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xb5,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xab,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x80,0xff,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x70,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xa0,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xb9,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0x82,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x29,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x6c,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x73,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0xc8,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xa7,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xa9,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x34,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0xe8,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7b,0x6f,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xa9,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xa1,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0xe2,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xc9,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x3b,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0xf5,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0x79,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0xb7,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0xf,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xac,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x70,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x2b,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xab,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x93,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x94,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xad,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xeb,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x31,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x6f,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0x41,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0x77,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x35,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x5d,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x7d,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xa5,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x4,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x61,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x8f,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xbd,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xeb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x4c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xc7,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x94,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x62,0xf5,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xff,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0x58,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x4b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xa1,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xdf,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x4,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x13,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xe6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x49,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0x18,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x65,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0xe1,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x46,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0x5c,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0x1c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0xf2,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x7b,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x2e,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0xfd,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xcd,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xbb,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xc8,0xa,0xda,0x50,0x7e,0x0,0x0,0x7e,0x8f,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x60,0xa,0xea,0x46,0xf4,0x0,0x0,0x5c,0xc1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x2,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x7b,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x3e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x7,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa2,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x82,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x8a,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0xd7,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xa6,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x33,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x41,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x27,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x1f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xef,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x14,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xbd,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x57,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0x86,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x86,0x8e,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x63,0xf5,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xa5,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x17,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0xc,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0xf5,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x4e,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xd1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x65,0xdb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x41,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0xff,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x86,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x5c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x72,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xe1,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0x25,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0xa,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x52,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0xd,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x64,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0x6a,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0x7e,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x64,0xf3,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0xc,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x98,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x76,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0x38,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x9d,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0x70,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0xc9,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x87,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x3b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x50,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x65,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xb8,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x66,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0x55,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0xa8,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0x46,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0xc4,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x53,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xa2,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x14,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xdb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x4d,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x25,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x57,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0xfc,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xf8,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x15,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x6c,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x25,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x5f,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0x99,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xd3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x43,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x97,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0x3a,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0x64,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x31,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xd4,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x60,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x5,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x4e,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0xf,0xf,0x17,0x9c,0x64,0x0,0x0,0x80,0xb5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5f,0xe0,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x27,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x81,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x29,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x71,0xf7,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x67,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xf1,0xf,0x70,0xaa,0x1a,0x0,0x0,0x83,0x86,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x20,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x3a,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xb2,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x59,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x26,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x56,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0x86,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0xf8,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0xbf,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x31,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xb1,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0xd3,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x61,0xdd,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x23,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x69,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xaf,0x69,0x0,0x0,0x87, + 0x89,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x6a,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0,0x6b, + 0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f, + 0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x20,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0xe1,0x0,0x68,0x0,0x6f, + 0x0,0x7a,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x7a,0x0,0x20,0x0,0xe1, + 0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0xe1,0x0,0x6e,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x6d, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0xfc,0x0,0x6c,0x0,0x64,0x0,0xf6,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x75, + 0x0,0x6d,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a, + 0x0,0x6c,0x0,0x6b,0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x72,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x6b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x72,0x0,0x61,0x0,0x6b,0x0, + 0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x69,0x0, + 0x6b,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x28,0x0,0x6f,0x0,0x6b,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48, + 0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2c,0x0, + 0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e, + 0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x41,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20, + 0x0,0x26,0x0,0x6e,0x0,0xe9,0x0,0x76,0x0,0x6a,0x0,0x65,0x0,0x67,0x0,0x79, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d, + 0x1,0x71,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x47,0x0,0x79,0x0,0xf6, + 0x0,0x6d,0x0,0x62,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a, + 0x0,0x65,0x0,0x6c,0x0,0x7a,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0, + 0x75,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x20,0x0,0x66,0x0,0xf3,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x7a,0x0, + 0x76,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x6b,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75, + 0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75, + 0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x26,0x0,0xc1,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x20,0x0, + 0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x41,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0xe9,0x0,0x72,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x74,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26, + 0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6c,0x0,0xe9,0x0,0x76, + 0x1,0x51,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a, + 0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6e,0x0,0x79, + 0x0,0x69,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x67,0x0, + 0x6e,0x0,0x79,0x0,0x69,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x45,0x0,0x6c,0x1,0x51,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0xe9,0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4d,0x0, + 0x61,0x0,0x70,0x0,0x70,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x0,0x4e, + 0x0,0x79,0x0,0xfa,0x0,0x6a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51, + 0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46, + 0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x0, + 0x54,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x5a,0x0,0xf6,0x0,0x6c,0x0, + 0x64,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x7a,0x1, + 0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0xfa,0x0,0x6a,0x0,0x72, + 0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x53,0x0,0xfa,0x0, + 0x67,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65, + 0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0xc1,0x0, + 0x6c,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x73,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x26,0x0,0x65,0x0,0x6c,0x0,0x72,0x0,0x65,0x0,0x6a,0x0, + 0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0xe9, + 0x0,0x70,0x0,0x26,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x26,0x0,0x45,0x0,0x67,0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x74, + 0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x65,0x0,0x7a,0x1,0x51,0x0,0x73,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67, + 0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x7a,0x1,0x51,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74, + 0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x41,0x0,0x20,0x0,0x26,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x1, + 0x71,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x66,0x0, + 0x6f,0x0,0x67,0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x67,0x0, + 0xe9,0x0,0x6e,0x0,0x79,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71, + 0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0, + 0x4e,0x0,0xe9,0x0,0x6d,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x53,0x0,0x7a,0x0,0x6f,0x0, + 0x6d,0x0,0x73,0x0,0x7a,0x0,0xe9,0x0,0x64,0x0,0x6f,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0xda,0x0,0x6a, + 0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c, + 0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x6f, + 0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x26,0x0,0xda,0x0,0x6a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x53,0x0,0x7a,0x0,0xfc, + 0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x74, + 0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x4c,0x0,0x65,0x0,0x6a,0x0,0xe1,0x0,0x74,0x0,0x73,0x0,0x7a,0x0, + 0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0, + 0x42,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0, + 0x73,0x0,0x6f,0x0,0x6b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0, + 0x72,0x0,0x6b,0x0,0x65,0x0,0xe1,0x0,0x72,0x0,0x6e,0x0,0x79,0x0,0x61,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x46, + 0x0,0x65,0x0,0x6c,0x0,0x76,0x0,0xe9,0x0,0x74,0x0,0x65,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x45,0x0,0x6c,0x1,0x51, + 0x0,0x7a,0x1,0x51,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1, + 0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61, + 0x0,0x74,0x0,0xf6,0x0,0x6c,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20, + 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x6c,0x0, + 0x74,0x0,0xe1,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53,0x0, + 0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x65,0x0, + 0x6c,0x0,0x74,0x0,0xe1,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0xed,0x0,0x74,0x0, + 0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0xc1,0x0,0x74,0x0,0x6d, + 0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x73,0x0, + 0x73,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x72,0x0, + 0xe9,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x6a,0x0,0xe9,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x41,0x0,0x20,0x0,0x26,0x0,0x6a,0x0,0x6f, + 0x0,0x62,0x0,0x62,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74, + 0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x7a,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0x6b,0x0,0x69,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73, + 0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63, + 0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4b,0x0,0x69,0x0,0x76,0x0, + 0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4e,0x0,0xe9,0x0,0x67,0x0,0x79,0x0, + 0x7a,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0, + 0x70,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0, + 0x28,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c, + 0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x53,0x0,0x7a,0x0, + 0x69,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0, + 0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0xf3,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x20,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6, + 0x0,0x7a,0x0,0xf6,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0xc1,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x74,0x0, + 0x73,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x72,0x0,0x69,0x0, + 0x73,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e, + 0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0, + 0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x4e,0x0,0xe9,0x0,0x7a,0x0,0x65,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x68, + 0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c, + 0x0,0x7a,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x62,0x0,0x6c,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0xe9,0x0, + 0x6e,0x0,0x79,0x0,0x65,0x0,0x7a,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x28,0x0,0x41,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x79,0x0,0x65, + 0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0, + 0xfc,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x38,0x0,0x31,0x0,0x25,0x0,0x2d,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6,0x0,0x6b,0x0,0xe9,0x0, + 0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2c,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x2d,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6,0x0, + 0x6b,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x32,0x0,0x25,0x0,0x2d, + 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6, + 0x0,0x6b,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62, + 0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0, + 0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20, + 0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39, + 0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e, + 0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31, + 0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67, + 0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47, + 0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0, + 0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x45,0x0, + 0x67,0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0xe9,0x0,0x6e,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x1,0x51,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x67,0x0,0x79,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33, + 0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x52,0x0,0x41,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x7a, + 0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0xa,0x0,0xa,0x0,0x4b,0x0,0xe9,0x0,0x72, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x74,0x0,0xf6,0x0,0x6c,0x0,0x74,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6b, + 0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6b, + 0x0,0xf6,0x0,0x6e,0x0,0x79,0x0,0x76,0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x62, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x41,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0xe9,0x0,0x76,0x0, + 0x6a,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4d,0x0,0x65,0x0,0x67,0x0, + 0x6c,0x0,0xe9,0x0,0x76,0x1,0x51,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x20,0x0, + 0x68,0x0,0x6f,0x0,0x7a,0x0,0x7a,0x0,0xe1,0x0,0x61,0x0,0x64,0x0,0xe1,0x0, + 0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0xda, + 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x7a, + 0x0,0x7a,0x0,0xe1,0x0,0x61,0x0,0x64,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3e,0x0,0x54,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x62,0x0,0x62, + 0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x74, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6b, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61, + 0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0xe1,0x0, + 0x6a,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xfe,0x0,0x52,0x0,0xe9, + 0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xe1,0x0,0x6d,0x0,0xed, + 0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x46,0x0,0x65,0x0,0x6a,0x0,0x6c,0x0,0x65, + 0x0,0x73,0x0,0x7a,0x0,0x74,0x1,0x51,0x0,0x6b,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0x6f,0x0,0x74, + 0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0x20,0x0,0x62,0x0,0xe1,0x0,0x27,0x0,0xa,0x0,0xa,0x0,0x4d,0x0,0x65, + 0x0,0x67,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75, + 0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x32,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0xfa,0x0,0x6a,0x0,0x61, + 0x0,0x62,0x0,0x62,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x62,0x0,0x62, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0x20, + 0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x66, + 0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20, + 0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73, + 0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e, + 0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72, + 0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20, + 0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20, + 0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77, + 0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e, + 0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a, + 0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20, + 0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65, + 0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42, + 0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63, + 0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34, + 0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b, + 0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20, + 0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69, + 0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e, + 0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20, + 0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f, + 0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61, + 0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f, + 0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74, + 0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e, + 0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65, + 0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e, + 0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20, + 0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e, + 0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f, + 0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x62,0x0,0x42,0x0,0x69,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0, + 0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0, + 0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x62,0x0, + 0xf3,0x0,0x6c,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x42, + 0x0,0x69,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64, + 0x0,0xed,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x74, + 0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x3f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e, + 0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48, + 0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x41,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x76,0x0,0x65,0x0,0x74,0x1,0x51,0x0, + 0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0, + 0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x79,0x0, + 0x6f,0x0,0x6d,0x0,0x6b,0x0,0xf6,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6b,0x0,0x65,0x0,0x7a,0x0, + 0x64,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42, + 0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c, + 0x0,0x6f,0x0,0x6b,0x0,0x6b,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63, + 0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0,0x61, + 0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0, + 0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x74,0x0, + 0xfa,0x0,0x6c,0x0,0x70,0x0,0xe1,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0, + 0x7a,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43, + 0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26, + 0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63, + 0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x33,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xfc,0x0,0x41,0x0,0x20, + 0x0,0x6b,0x0,0x69,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a, + 0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x75, + 0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x74, + 0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x7a,0x1,0x71,0x0,0x72, + 0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x74, + 0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x45,0x0,0x7a,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x79,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x76, + 0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x0,0xe1,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x62,0x0,0x6b, + 0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0x69,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x70, + 0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x6c,0x1,0x51,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x75,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x62,0x0,0x61,0x0,0x6e, + 0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x2d,0x0,0xe1,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73, + 0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x41,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c, + 0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x67, + 0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x7a,0x0,0xe9, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0xe9, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x79, + 0x0,0xfa,0x0,0x6a,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x68, + 0x0,0x69,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20, + 0x0,0xe9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x74,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x74, + 0x0,0x6a,0x0,0x75,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x7a,0x0,0x6f, + 0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x4d,0x0,0xe9,0x0,0x67,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0, + 0x79,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x2d,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0xf3,0x0,0x6b,0x0,0x61, + 0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0, + 0xf3,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0, + 0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0xf3,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x7a, + 0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0xf3,0x0,0x6d,0x0,0x20,0x0,0x6b, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x7a,0x1,0x51,0x0,0x68,0x0,0xf6, + 0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65, + 0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42,0x0, + 0x50,0x0,0x42,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x1, + 0x51,0x0,0x72,0x0,0x7a,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x66,0x0,0x6f,0x0,0x67,0x0,0xe1,0x0,0x73,0x0,0xe1,0x0,0x68,0x0, + 0x6f,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42, + 0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x0,0x6f,0x0,0x6b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x46,0x0,0x6f,0x0,0x6c,0x0,0x79, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0, + 0x61,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0,0x61,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x61,0x0, + 0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0, + 0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0, + 0x61,0x0,0x76,0x0,0xed,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x69,0x0,0x64,0x1, + 0x51,0x0,0x62,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x67,0x0,0xe9,0x0, + 0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x60,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0xf3,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x74,0x1,0x51, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0, + 0x67,0x0,0x79,0x0,0xe9,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x6e,0x0, + 0x61,0x0,0x67,0x0,0x79,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c, + 0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x45,0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x6e,0x0,0x69,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x73, + 0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x41, + 0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0xfc,0x0,0x6c,0x0,0xf6, + 0x0,0x6e,0x0,0x62,0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x2d,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x41,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0, + 0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41,0x0,0x20,0x0, + 0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0, + 0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0xfa,0x0,0x6c,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f, + 0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x66,0x0,0x41,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a, + 0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0xe9, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x68,0x0,0x61, + 0x0,0x74,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2d,0x0,0x6f,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b, + 0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0xed,0x0,0x74,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x53,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0, + 0x61,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61, + 0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0xed,0x0,0x72,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x6c,0x0,0xfc,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74, + 0x0,0x73,0x0,0x61,0x0,0x20,0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65, + 0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e, + 0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed, + 0x0,0x74,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20, + 0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x7a,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74, + 0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x64, + 0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6b,0x0,0x75,0x0, + 0x73,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x62,0x1,0x51,0x0,0x76,0x0,0xfc,0x0, + 0x6c,0x1,0x51,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0, + 0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20, + 0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0, + 0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b, + 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d, + 0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26, + 0x0,0x4b,0x0,0x69,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0,0xe9,0x0,0x73,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0, + 0x6d,0x0,0x62,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0xe1,0x0, + 0x62,0x0,0x62,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x45,0x0,0x6e,0x0, + 0x67,0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x7a,0x0, + 0x76,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x45,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x68,0x0, + 0x65,0x0,0x6c,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x64,0x1,0x51,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x79,0x0,0x6f, + 0x0,0x6d,0x0,0x6b,0x0,0xf6,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0xe9,0x0,0x73, + 0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x65,0x0,0x7a, + 0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x54,0x0,0x65,0x0,0x6c,0x0, + 0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0, + 0x64,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0, + 0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74, + 0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x48,0x0,0x69,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x54,0x0,0x48,0x0,0x69,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6, + 0x0,0x72,0x0,0x74,0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6c, + 0x1,0x51,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6c,0x0,0xe9, + 0x0,0x76,0x1,0x51,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1, + 0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6e,0x0,0x79, + 0x0,0x69,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0xed,0x0,0x72,0x0,0xe1,0x0,0x73,0x0,0x76,0x0,0xe9,0x0,0x64,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f, + 0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x69,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0, + 0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52, + 0x0,0xf6,0x0,0x67,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0, + 0x70,0x0,0x79,0x0,0x2d,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0, + 0x6c,0x1,0x51,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73, + 0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x7a, + 0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67, + 0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x73,0x0,0xe9,0x0,0x67, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x4e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0xe1,0x0,0x6c,0x0,0xf3,0x0,0x7a,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x73,0x0,0x7a,0x0,0x74,0x1,0x51,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0, + 0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0,0x79,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0xe9,0x0,0x67, + 0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x68,0x0,0x69, + 0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x46,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6e,0x0, + 0xe9,0x0,0x76,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x7a,0x1,0x71,0x0,0x72,0x0,0xe9,0x0,0x73, + 0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x52,0x0,0xf6, + 0x0,0x67,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20, + 0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x1,0x71,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x46,0x0,0x6c,0x0,0x6f, + 0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0, + 0x70,0x0,0x70,0x0,0x79,0x0,0x2d,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x46, + 0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x6b,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x54, + 0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x73,0x0,0x20, + 0x0,0x26,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x7a, + 0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63, + 0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x72,0x1,0x51,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0,0x7a,0x0,0xfc,0x0,0x72, + 0x0,0x6b,0x0,0xe9,0x0,0x73,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x26,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x7a, + 0x0,0x69,0x0,0xf3,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0xe1, + 0x0,0x72,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x2e,0x0,0x2d,0x0,0x76,0x0, + 0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62, + 0x0,0x41,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x68, + 0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x67,0x0,0x79,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x61,0x0,0x6b,0x0,0x20, + 0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2d,0x0,0x6e,0x0,0xe1,0x0,0x6c, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x6d, + 0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0,0x41,0x0, + 0x7a,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x2d,0x0,0x74,0x1,0x51,0x0, + 0x6c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0xe9,0x0,0x72,0x1,0x51,0x0, + 0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x1,0x71,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0, + 0x6b,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0, + 0x6d,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0, + 0x61,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4d,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a, + 0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c, + 0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d, + 0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0xfa, + 0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74, + 0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0xe9,0x0,0x72,0x0,0x68,0x0,0x65,0x0,0x74,0x1,0x51,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x65,0x0,0x6a,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x61,0x0,0x67,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x2d,0x0,0x67,0x0,0x79, + 0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0xe1, + 0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x62,0x1,0x51,0x0,0x76,0x0,0xed,0x0,0x74,0x1,0x51, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x28,0x0,0xf3,0x0, + 0x72,0x0,0x61,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67, + 0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b, + 0x0,0xf6,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53, + 0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x6b,0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x6c,0x0,0x65,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x6d,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0, + 0x7a,0x0,0xf6,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0xc9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0xc9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0, + 0x6e,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0, + 0x7a,0x0,0x2e,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0, + 0x2e,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4a,0x0, + 0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x2e,0x0, + 0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4a,0x0,0xe1,0x0, + 0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x2e,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0xe1,0x0,0x74,0x0, + 0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1, + 0x51,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x31,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6, + 0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b, + 0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4e,0x0,0x79,0x0,0x65,0x0,0x6c,0x0,0x76,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x61,0x0,0x67, + 0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6b,0x0,0x6d, + 0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x52, + 0x0,0xf6,0x0,0x67,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0, + 0x6b,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x65,0x0,0x7a,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0, + 0x62,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6b,0x0, + 0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25, + 0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x6d,0x0, + 0x65,0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1, + 0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x7a,0x0,0xe1,0x0,0x6d,0x0,0xed, + 0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xf8,0x0,0x41,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xe1, + 0x0,0x6d,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x72,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70, + 0x0,0x70,0x0,0xe1,0x0,0x62,0x0,0xf3,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x69, + 0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x7a,0x0,0xf3,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20, + 0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x45, + 0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20, + 0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x69, + 0x0,0x6b,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x74,0x0,0x74, + 0x0,0x61,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x47,0x0,0xe9,0x0,0x70,0x0,0x74, + 0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x7a, + 0x0,0xe1,0x0,0x6d,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xce,0x0, + 0x47,0x0,0x79,0x1,0x51,0x0,0x7a,0x1,0x51,0x0,0x64,0x0,0x6a,0x0,0xf6,0x0, + 0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x68,0x0,0x6f,0x0, + 0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x28,0x0,0x7a,0x0,0x29,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x70,0x0,0xed,0x0,0x74,0x0,0x76,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x73,0x0, + 0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x20,0x0,0x6b,0x0,0x61,0x0,0x70,0x0,0x63,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0, + 0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x47,0x0, + 0x79,0x1,0x51,0x0,0x7a,0x1,0x51,0x0,0x64,0x0,0x6a,0x0,0xf6,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x72,0x0, + 0xf3,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0, + 0x6c,0x0,0xe9,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x0,0x20,0x0, + 0xe9,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x73,0x0, + 0x68,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x47,0x0,0x79,0x1,0x51,0x0,0x7a, + 0x1,0x51,0x0,0x64,0x0,0x6a,0x0,0xf6,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0xf3,0x0,0x6c,0x0,0x2c, + 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x67, + 0x0,0x79,0x0,0x20,0x0,0xed,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0xf3, + 0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x6e,0x0,0x79,0x0,0x76,0x0,0x74,0x0,0xe1, + 0x0,0x72,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d, + 0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0, + 0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f, + 0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x20,0x0,0x61, + 0x0,0x6c,0x0,0x76,0x0,0xf3,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x64,0x0,0x62, + 0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45, + 0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0xe9,0x0,0x72,0x0,0x7a,0x0,0xe9, + 0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x79,0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x67,0x0,0xe9,0x0,0x72,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0xe1, + 0x0,0x6c,0x0,0xf3,0x0,0x7a,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0xe1,0x0,0x6c,0x0,0xf3,0x0,0x7a, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74, + 0x0,0x79,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0xe1,0x0, + 0x6c,0x0,0xf3,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x74,0x0, + 0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0xda,0x0, + 0x6a,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0, + 0x6c,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x68,0x0, + 0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74,0x0, + 0xf3,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0xf6,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x68,0x0, + 0x61,0x0,0x74,0x0,0xf3,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x67,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0, + 0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4e,0x0,0x69,0x0, + 0x6e,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x62,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x70,0x0, + 0x63,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x42,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x70,0x0,0x63,0x0, + 0x73,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70, + 0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xcc,0x0,0x41,0x0,0x7a,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6a,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x74,0x1,0x51,0x0,0x2d,0x0,0x6d,0x0, + 0x6f,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x2e,0x0,0x20,0x0,0x4b,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x68,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x6a,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6c,0x1,0x51,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0, + 0x47,0x0,0x4c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0, + 0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x62,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0xe1,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x62,0x0,0x20, + 0x0,0x63,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe9,0x0,0x6c,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x6f,0x0,0x6c, + 0x0,0xf3,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x46,0x0,0x65,0x0,0x6c,0x0,0xfc,0x0,0x6c,0x0,0xed,0x0,0x72,0x0,0xe1, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x49,0x0,0x54,0x0, + 0x20,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0xf3,0x0,0x64,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d, + 0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x20,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0, + 0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x75,0x0,0x7a,0x0, + 0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0xe1,0x0,0x72,0x0, + 0x68,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x75,0x0, + 0x7a,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x41,0x0,0x20,0x0, + 0x73,0x0,0x7a,0x0,0xfc,0x0,0x6c,0x1,0x51,0x0,0x2d,0x0,0x20,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x69,0x0,0x64,0x1,0x51,0x0,0x62,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0, + 0x65,0x0,0x67,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x7a,0x0,0x6e,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x4b,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x7a,0x0, + 0xfc,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x65,0x0, + 0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0xf6,0x0, + 0x6b,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x42,0x0,0x41,0x0,0x64,0x0,0x6a,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0x79,0x0, + 0x20,0x0,0xe9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0, + 0x76,0x0,0x65,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65, + 0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x4e,0x0,0x79,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x79,0x0,0x6f,0x0,0x6d, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x86,0x0,0x48,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x44,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0, + 0x6b,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x61,0x0, + 0x62,0x0,0x6c,0x0,0x61,0x0,0x6b,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0x20,0x0, + 0x76,0x0,0x61,0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0, + 0x73,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0xe9,0x0,0x73,0x0, + 0x68,0x0,0x65,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, + 0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x4e,0x0,0x79,0x0, + 0x6f,0x0,0x6d,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0, + 0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x2d,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x67,0x0, + 0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0xe9,0x0, + 0x70,0x0,0x73,0x1,0x51,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0, + 0x6f,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x67,0x0, + 0xe9,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x67,0x0, + 0xe9,0x0,0x64,0x0,0xe9,0x0,0x73,0x0,0xe9,0x0,0x68,0x0,0x65,0x0,0x7a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x58,0x0,0x4e,0x0,0x79,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x46, + 0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x2d,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x20, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0xe9,0x0,0x64,0x0,0xe9, + 0x0,0x73,0x0,0xe9,0x0,0x68,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x46,0x0,0x6f, + 0x0,0x6c,0x0,0x79,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4e,0x0,0x65, + 0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0,0x76,0x0,0x65, + 0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4d,0x0,0xe9,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a, + 0x0,0xed,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x6a,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x7a,0x0,0xe9,0x0,0x73, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d, + 0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f, + 0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x7a,0x0, + 0xed,0x0,0x6e,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x2d,0x0,0x6d, + 0x0,0xf3,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6a,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x74,0x1,0x51,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x4e,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x74,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe1,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x7a,0x0, + 0x20,0x0,0xfa,0x0,0x6a,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x6f,0x0, + 0x7a,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0, + 0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x74,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0xda,0x0,0x6a,0x0, + 0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0xe1,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x6f,0x0, + 0x6c,0x0,0x79,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0xe9,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x68,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63, + 0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61, + 0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x56,0x0,0x42,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0, + 0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0xe9,0x0, + 0x6b,0x0,0x6b,0x0,0xe9,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x66,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6b,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x76,0x0,0xe1, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,0x61, + 0x0,0x6b,0x0,0xf6,0x0,0x6e,0x0,0x79,0x0,0x76,0x0,0x74,0x0,0xe1,0x0,0x72, + 0x0,0xe1,0x0,0x62,0x0,0xf3,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72, + 0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63, + 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x56,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x7a,0x0, + 0xfc,0x0,0x6c,0x1,0x51,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2d,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x53,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0xe9,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42, + 0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x4b,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x6b,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61, + 0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x72,0x1,0x51,0x0,0x73,0x0,0x7a,0x0,0x61, + 0x0,0x62,0x0,0xe1,0x0,0x6c,0x0,0x79,0x0,0x7a,0x0,0xf3,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0, + 0x72,0x1,0x51,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0xe1,0x0,0x6c,0x0, + 0x79,0x0,0x7a,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53, + 0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0xe1, + 0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74, + 0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x61, + 0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67, + 0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x46,0x1,0x51,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61, + 0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67, + 0x0,0x61,0x0,0x64,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x61,0x0, + 0x64,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64, + 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x62,0x0,0x65,0x0, + 0x73,0x0,0x73,0x0,0xe9,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x53,0x0,0x65,0x0,0x62,0x0,0x2e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0xfc,0x0,0x6c,0x0,0xf6,0x0,0x6e, + 0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55, + 0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55, + 0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0, + 0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0, + 0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x0, + 0x28,0x0,0x6b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0, + 0x76,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x34,0x0, + 0x2d,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0, + 0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x76, + 0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x36,0x0,0x2d, + 0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6a, + 0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9, + 0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x76,0x0, + 0xe1,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x2d,0x0, + 0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6a,0x0, + 0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0, + 0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x54,0x0,0xe1,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0xf3, + 0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67, + 0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x65,0x0,0x6c,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x26,0x0,0x4b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1, + 0x51,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x73,0x0, + 0x7a,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72, + 0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0xe9,0x0, + 0x6c,0x0,0x20,0x0,0x26,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0, + 0x63,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x73,0x0, + 0x73,0x0,0xe9,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54, + 0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0,0x76,0x0,0x65,0x0, + 0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6e,0x0,0x41,0x0,0x20,0x0,0x68,0x0,0xe1,0x0,0x6c,0x0, + 0xf3,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x20,0x0,0xe1,0x0,0x74,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0, + 0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0, + 0x20,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x74,0x1, + 0x51,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x94,0x0,0x41,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x76,0x0, + 0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x74,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x66,0x0, + 0x65,0x0,0x6c,0x0,0xfc,0x0,0x6c,0x0,0xed,0x0,0x72,0x0,0xe1,0x0,0x73,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0, + 0x2e,0x0,0x20,0x0,0x42,0x0,0x69,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x73,0x0, + 0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x65,0x0, + 0x7a,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0xed,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x6e,0x0, + 0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xce,0x0,0x45,0x0,0x7a,0x0,0x20,0x0,0x61,0x0,0x7a,0x0, + 0x74,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0, + 0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0, + 0x6c,0x1,0x51,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0xe9,0x0,0x72,0x1,0x51,0x0, + 0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x61,0x0, + 0x20,0x0,0x75,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x45,0x0,0x7a,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x1,0x51,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x64,0x0,0x75,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74,0x0, + 0x2c,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0xe1,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6c,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0, + 0x6c,0x0,0x74,0x0,0xe1,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xf3,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x68,0x0,0x69,0x0, + 0x62,0x0,0xe1,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x61,0x0, + 0x74,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x53,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x6b,0x0,0x69,0x0, + 0x6a,0x0,0x61,0x0,0x76,0x0,0xed,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x64,0x1,0x51,0x0,0x62,0x0, + 0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x6b,0x0,0x65,0x0, + 0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x45,0x0,0x7a,0x0,0x7a,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0xfa,0x0,0x6a, + 0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70, + 0x0,0x65,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a, + 0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, + 0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x49,0x0,0x64,0x1,0x51,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x69,0x0,0x6e, + 0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69, + 0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0, + 0x75,0x0,0x72,0x0,0x62,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0xf3,0x0,0x20,0x0,0x69,0x0, + 0x64,0x1,0x51,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d, + 0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x54,0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x54,0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x41,0x0,0x7a,0x0,0x20,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x67,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x65,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73, + 0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x80,0x0,0x41,0x0,0x7a,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x74, + 0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x7a,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64, + 0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20, + 0x0,0x73,0x0,0x7a,0x0,0xfc,0x0,0x6b,0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62, + 0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x5c,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x68,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x74,0x0, + 0xf6,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x79,0x1,0x71,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x67,0x0,0x79,0x0,0x6f,0x0, + 0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x61,0x0,0x74,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x20,0x0, + 0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x73,0x0,0x68,0x0,0x61,0x0, + 0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x41,0x0,0x20,0x0, + 0x6b,0x0,0xf6,0x0,0x7a,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x6e,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0, + 0x62,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0x72,0x0, + 0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x20,0x0,0x66,0x0,0xe1,0x0, + 0x6a,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0xed,0x0, + 0x72,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69, + 0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x6d, + 0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x68,0x0,0x61,0x0, + 0x73,0x0,0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x20,0x0, + 0x26,0x0,0x74,0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a, + 0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xfa,0x0,0x41,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x72,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x22,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0xe1,0x0,0x62, + 0x0,0xf3,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0xe1,0x0,0x6e,0x0,0x79, + 0x0,0x7a,0x0,0xf3,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b, + 0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x68,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0x79, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6b, + 0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x74,0x0,0x74, + 0x0,0x61,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61, + 0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f, + 0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e, + 0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x6f,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64, + 0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x56, + 0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x2d,0x0,0x67,0x0,0x79, + 0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0xe1, + 0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0xe1, + 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x2e,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6b, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0xdc,0x0, + 0x64,0x0,0x76,0x0,0xf6,0x0,0x7a,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0xf6,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0, + 0x7a,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe9,0x0,0x67,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x67, + 0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b, + 0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x79,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x0,0x61,0x0,0x62,0x0,0x62,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x45,0x0,0x67,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0, + 0x6d,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0xf6,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pt-BR.qm + 0x0,0x0,0x96,0x45, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x75,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0xed,0x0,0x0,0x0,0x53,0x0,0x0,0x6c,0x54,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x92,0x0,0x0,0x4,0xf2,0x0,0x0,0x52,0xa3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x54,0x96,0x0,0x0,0x5,0x3b,0x0,0x0,0x5f,0xd2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x60,0xf,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x2b,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x73,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xbb,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xfa,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x42,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x8a,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xd2,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xf0,0x0,0x0,0x49,0xc3,0x0,0x0,0x29,0x1a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4e,0x74,0x0,0x0,0x4d,0x85,0x0,0x0,0x4e,0x92,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5f,0xed,0x0,0x0,0x5d,0x81,0x0,0x0,0x86,0x7b,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x55,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd9,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xda,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x84,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x29,0x46,0x0,0x4,0xa7,0x89,0x0,0x0,0x3f,0x4d,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x44,0x4c,0x0,0x4,0xc8,0xa4,0x0,0x0,0x45,0x5d,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0xdd,0x0,0x4,0xd0,0x25,0x0,0x0,0x45,0xb6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x48,0x55,0x0,0x5,0x56,0x45,0x0,0x0,0x5f,0x5f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6c,0x6e,0x0,0x5,0x98,0xc5,0x0,0x0,0x6d,0x52,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x70,0xb9,0x0,0x5,0xc0,0x65,0x0,0x0,0x7e,0x5d,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x10,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x49,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x7,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x73,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x95,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x8b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x44,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xf2,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x81,0x47,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xd0,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xb7,0x0,0x4c,0x99,0x62,0x0,0x0,0x41,0xb0,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x38,0x2d,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6b,0xdb,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x73,0xbb,0x0,0x5a,0x6c,0x44,0x0,0x0,0x71,0x36,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7e,0xd,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7e,0x7e,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x89,0x15,0x0,0x73,0x75,0x3e,0x0,0x0,0x36,0xb4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5f,0x13,0x0,0x97,0x96,0x4,0x0,0x0,0x39,0x76,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x50,0xd5,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x52,0x73,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4b,0xc6,0x0,0xb8,0x5f,0x43,0x0,0x0,0x61,0xc5,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xd7,0x1,0x9,0x1c,0x92,0x0,0x0,0x43,0xac,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2c,0x42,0x1,0x39,0xa4,0xce,0x0,0x0,0x5b,0x6a,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7e,0x31,0x1,0x4c,0x50,0xee,0x0,0x0,0x69,0xce,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4b,0x81,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x20,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7c,0x86,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3d,0xbd,0x1,0x91,0xe,0x73, + 0x0,0x0,0x2a,0x23,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4e,0x26,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x56,0x23,0x1,0xb0,0x47,0x5c,0x0,0x0,0x54,0xb1,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x99,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0xfe,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x91,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x93,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x33,0x5c,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6d,0x16,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x74,0x12,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x18,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x75,0x8b,0x2,0x23,0x3c,0x6b,0x0,0x0,0x75,0x26,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x74,0xc1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x74,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4d,0x8f,0x2,0x78,0x48,0x1a,0x0,0x0,0x55,0xd3,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x86,0xdb,0x2,0x90,0x8d,0x12,0x0,0x0,0x44,0x6d,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x62,0x52,0x2,0xad,0x4a,0x22,0x0,0x0,0x6a,0x31,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xf7,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x6e,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x62,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x32,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0xfb,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x62,0x8,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x89,0x39,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0xd2,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x65,0xd5,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x16,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xf4,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x1b,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x54,0xdb,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xd9,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x0,0x3,0x6a,0x66,0x2e,0x0,0x0,0x59,0x83,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x57,0x6a,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xee,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x32,0x21,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xad,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x82,0x3,0xa4,0x35,0xa5,0x0,0x0,0x44,0x2c,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0xfe,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xa9,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5c,0x4b,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x74,0x59,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x72,0x90,0x3,0xe4,0x25,0x5a,0x0,0x0,0x72,0x50,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x72,0x10,0x3,0xe4,0x25,0x7a,0x0,0x0,0x71,0xd0,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0xe,0x4,0x3,0xf6,0x9a,0x0,0x0,0x59,0x14,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xcb,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x3d,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x67,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x1a,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x20,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0xb1,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0xeb,0x4,0x51,0x79,0xb1,0x0,0x0,0x76,0x93,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7f,0x8a,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0xae,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x71,0x99,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3e,0x80,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3e,0xa9,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x36,0x11,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x31,0x46,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3a,0xca,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xbf,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xd6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x32,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x7f,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5d,0xb0,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x34,0xb8,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x25,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x5d,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5d,0xd4,0x4,0xeb,0x2f,0xa,0x0,0x0,0x53,0xca,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4d,0x3a,0x5,0x18,0x5,0x95,0x0,0x0,0x81,0xcf,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x9f,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0xf6,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5d,0x89,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x87,0xc8,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x56,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0xfd,0x5,0x88,0x2e,0xd9,0x0,0x0,0x70,0xdc,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x57,0x94,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7d,0xba,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x77,0xa7,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0xf9,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x73,0xe9,0x5,0xb2,0x16,0x79,0x0,0x0,0x6a,0x94,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xfa,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4b,0x3a,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x41,0x47,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x42,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x95,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x91,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4d,0xcc,0x5,0xc1,0x4d,0x83,0x0,0x0,0x3a,0xa,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x84,0xfb,0x5,0xd0,0x4f,0x11,0x0,0x0,0x85,0xa1,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x3e,0x5,0xdf,0xba,0xba,0x0,0x0,0x85,0xed,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x69,0x38,0x6,0x7,0xd3,0xda,0x0,0x0,0x4f,0xc5,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x39,0xa5,0x6,0x19,0x20,0x43,0x0,0x0,0x6d,0x77,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3c,0xbc,0x6,0x38,0x9f,0x35,0x0,0x0,0x3a,0x61,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x20,0x0,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xb9,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0xea,0x6,0x6c,0xb8,0x3,0x0,0x0,0x83,0x2c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4c,0x19,0x6,0x74,0xe,0x6a,0x0,0x0,0x63,0x1b,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4c,0x92,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0x23,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0xf5,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3b,0xcb,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x72,0xd0,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0xfe,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6c,0xd4,0x6,0xc3,0xce,0xa3,0x0,0x0,0x75,0xf0,0x6,0xce,0x41,0x63, + 0x0,0x0,0x47,0x98,0x6,0xed,0xca,0xce,0x0,0x0,0x49,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xd6,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xa6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4c,0x54,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x8f,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x57,0x1e,0x7,0x6,0x93,0xe3,0x0,0x0,0x88,0xaa,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xc1,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x41,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x24,0x7,0x2a,0xb5,0xca,0x0,0x0,0x70,0x80,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5c,0xd4,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4f,0x49,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x65,0x57,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xa4,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x34,0x55,0x7,0x58,0x61,0xe5,0x0,0x0,0x4c,0xe1,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x65,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0xdd,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x31,0x10,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6c,0x7,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x59,0x56,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6b,0x17,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x60,0x7d,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xdb,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x82,0xe5,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x76,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xa6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x28,0x35,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x67,0x24,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x66,0xcf,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3f,0x6e,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6c,0x8f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0xf2,0x8,0x0,0x3f,0x29,0x0,0x0,0x66,0x4d,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5c,0x77,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xf6,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x54,0x48,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7d,0x35,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x63,0x4b,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x6b,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7e,0xa2,0x8,0x9b,0xc,0x24,0x0,0x0,0x6f,0x1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x51,0x83,0x8,0xa3,0xdb,0xae,0x0,0x0,0x52,0x37,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x51,0xbf,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0xfb,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3e,0x25,0x8,0xa9,0xcf,0x35,0x0,0x0,0x32,0xb2,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x42,0x46,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x2b,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x40,0x9f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x47,0x4b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0xf6,0x9,0x49,0xfa,0x4a,0x0,0x0,0x35,0x95,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0xd3,0x9,0x49,0xfa,0x6a,0x0,0x0,0x35,0x19,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x35,0x57,0x9,0x4e,0xde,0x64,0x0,0x0,0x7f,0x5,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5e,0x59,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x49,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x27,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x91,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x68,0x19,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x18,0x9,0x88,0x63,0xa, + 0x0,0x0,0x31,0x71,0x9,0x88,0x63,0x1a,0x0,0x0,0x31,0x9d,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0xc9,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0xf5,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x60,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x79,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa8,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5e,0x1d,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x64,0xa1,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xc9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5d,0x36,0x9,0xd5,0x43,0xd3,0x0,0x0,0x37,0x5b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x2b,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x69,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0xee,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xe7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x46,0xac,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x6b,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0xd8,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x40,0x65,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x51,0x2f,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x54,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x82,0x3e,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6e,0x3c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x76,0x46,0xa,0x98,0x1f,0x89,0x0,0x0,0x38,0xab,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x38,0x60,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x50,0x37,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0xef,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xab,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0xf6,0xa,0xda,0x50,0x7e,0x0,0x0,0x80,0x3f,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xee,0xa,0xea,0x46,0xf4,0x0,0x0,0x5e,0xa5,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x39,0x1e,0xb,0xa,0x72,0xc9,0x0,0x0,0x3b,0xa5,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x1c,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5a,0xc7,0xb,0x29,0x70,0x65, + 0x0,0x0,0x48,0x78,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x44,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x36,0xb,0x4e,0x19,0x54,0x0,0x0,0x55,0x29,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x46,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xd1,0xb,0x95,0xed,0xa, + 0x0,0x0,0x56,0xcd,0xb,0x9d,0xe,0xa2,0x0,0x0,0x34,0x1d,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x37,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6e,0xf,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x71,0x56,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x26,0x25,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x4a,0x41,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4e,0xb0,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x88,0x70,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x65,0x9d,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x76,0xef,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xbb,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x98,0xc,0x33,0xeb,0xe2,0x0,0x0,0x77,0x49,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x46,0x6,0xc,0x42,0x70,0xde,0x0,0x0,0x2a,0x67,0xc,0x48,0x83,0xde, + 0x0,0x0,0x67,0x79,0xc,0x4a,0x5f,0x82,0x0,0x0,0x50,0x87,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x79,0x5f,0xc,0x77,0x67,0x19,0x0,0x0,0x46,0x4e,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3c,0x78,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x7a,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0xdd,0xc,0x90,0x26,0xb5,0x0,0x0,0x80,0xe3,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x62,0xa2,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0xda,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x70,0x49,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x54,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x60,0x2e,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x83,0x62,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x66,0x97,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xf4,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xc8,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0xec,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x85,0x22,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6a,0xdf,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x86,0x42,0xd,0x60,0xef,0x6a,0x0,0x0,0x50,0x5,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x37,0x97,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0xef,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3b,0x76,0xd,0x88,0x48,0x23,0x0,0x0,0x32,0x67,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0xd0,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x28,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x87,0x21,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5f,0x80,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x86,0x18,0xe,0x20,0x13,0x12,0x0,0x0,0x45,0x82,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xe1,0xe,0x48,0xfa,0xca,0x0,0x0,0x2b,0x36,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0xbc,0xe,0x48,0xfd,0xca,0x0,0x0,0x2b,0x79,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0xff,0xe,0x62,0x79,0x4,0x0,0x0,0x3c,0x49,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x81,0xe,0x7b,0xa1,0x23,0x0,0x0,0x56,0x70,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0xf4,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x8b,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x68,0xc2,0xe,0xbe,0x61,0x81,0x0,0x0,0x6f,0x51,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6f,0x8f,0xe,0xbe,0x61,0x83,0x0,0x0,0x6f,0xcd,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x70,0xb,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4d,0x65,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x6b,0xe,0xe2,0x34,0x60,0x0,0x0,0x88,0x1c,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x88,0x46,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xd9,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x70,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xe8,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x88,0xdf,0xf,0x15,0xf4,0x85,0x0,0x0,0x4f,0x76,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x78,0x67,0xf,0x17,0x9c,0x64,0x0,0x0,0x82,0x9f,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x61,0x86,0xf,0x29,0x4d,0x2a,0x0,0x0,0x49,0x7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x43,0x6b,0xf,0x30,0x6b,0x3,0x0,0x0,0x33,0x25,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x73,0x5b,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xfd,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xad,0xf,0x70,0xaa,0x1a,0x0,0x0,0x85,0x5c,0xf,0x74,0xd,0xca, + 0x0,0x0,0x6a,0x64,0xf,0x85,0x7b,0xea,0x0,0x0,0x62,0xd8,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x6c,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xff,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x69,0x6a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3d,0x6c,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x52,0xbe,0xf,0xd9,0x8c,0xca,0x0,0x0,0x53,0x44,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x53,0x1,0xf,0xd9,0x8f,0xca,0x0,0x0,0x53,0x87,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3f,0xb3,0xf,0xe2,0xe9,0x49,0x0,0x0,0x86,0x99,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x63,0x91,0xf,0xf5,0xeb,0x52,0x0,0x0,0x63,0xd5,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x64,0x19,0xf,0xf5,0xeb,0x54,0x0,0x0,0x64,0x5d,0x69,0x0,0x0,0x89, + 0x63,0x3,0x0,0x0,0x0,0x14,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x41,0x0,0x44,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x6e,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x61, + 0x0,0x6c,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70, + 0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x28,0x0,0x73,0x0,0x29,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42, + 0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x30,0x0,0x2c,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x71, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x41,0x0,0xe7, + 0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0xe2,0x0,0x6d,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75, + 0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75, + 0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x44, + 0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61, + 0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x41, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61, + 0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0, + 0x50,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26, + 0x0,0x54,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72, + 0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x26,0x0,0x54,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x69,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6a,0x0, + 0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4f,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x64,0x0,0x69, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0, + 0x26,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0, + 0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72, + 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0xed,0x0,0x64,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x53,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x69,0x0,0x73,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0, + 0x75,0x0,0x7a,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72, + 0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0, + 0x6f,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6d,0x0,0x65,0x0,0xe7,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x26, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74, + 0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0, + 0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x26,0x0,0x73,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0xe7,0x0,0xe3,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x72, + 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0, + 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0xed,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x26,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x45,0x0,0x78, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4a,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x28,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x28,0x0,0x76,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x31,0x0,0x25,0x0, + 0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2c,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0, + 0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x61, + 0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x52,0x0, + 0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x82,0x0,0x4f,0x0,0x20,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75, + 0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76,0x0,0x6f, + 0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72, + 0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75, + 0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65, + 0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75, + 0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73, + 0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74, + 0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61, + 0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74, + 0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38, + 0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41, + 0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0, + 0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x4,0x2c,0x0,0x55,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x6f,0x0,0x73,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a, + 0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47, + 0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47, + 0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31, + 0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c, + 0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b, + 0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69, + 0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f, + 0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20, + 0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74, + 0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x72, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x69, + 0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x4c,0x0,0x61,0x0,0x6e, + 0x0,0xe7,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e, + 0x0,0xe7,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0xfa,0x0,0x62,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x54,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78, + 0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x88,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x65, + 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0, + 0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0, + 0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0, + 0xe1,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x42,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x43,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73, + 0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0, + 0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64, + 0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76, + 0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0, + 0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72, + 0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x48,0x0,0x41,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x61, + 0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x75, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41, + 0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0xe7,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6c, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0, + 0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0, + 0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x61,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x5c,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e, + 0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x6c,0x0, + 0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x4e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x61, + 0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0x65, + 0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x41,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c, + 0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0, + 0x6d,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e, + 0x0,0x41,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x54,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0,0xed,0x0, + 0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x48,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x69,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x6e,0x0,0xe2,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0xe2,0x0,0x6d,0x0,0x69,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0, + 0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x45,0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x56,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x53,0x0,0x61,0x0,0x69,0x0,0x72, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53, + 0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x41,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x46,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x45,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x61,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x53,0x0,0x61,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0xe7,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26, + 0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e, + 0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20, + 0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f, + 0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f, + 0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4a,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74, + 0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x52,0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x72, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0xe9, + 0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73, + 0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4d, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0,0x61,0x0, + 0x6e,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x54, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e, + 0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x43,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x41, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x47,0x0,0x42,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x9e,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0, + 0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0, + 0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48, + 0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0xe7,0x0,0x61,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x4f,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x47,0x0,0x72, + 0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x49, + 0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67, + 0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x63,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0xed,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74, + 0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x49,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0,0x6c, + 0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0, + 0x41,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0, + 0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x75,0x0, + 0x6e,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53, + 0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x2e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d, + 0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x2e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0xed,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d, + 0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf6,0x0,0x41,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0xe0,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe1, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xd4,0x0,0x43,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2d,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x43,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0xe9,0x0, + 0x20,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64, + 0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x92, + 0x0,0x43,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x6f,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74, + 0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4d,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xe3, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76, + 0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x4d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x52,0x0,0x65,0x0,0x64,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x41,0x0,0x64,0x0,0x61, + 0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0,0x65,0x0, + 0x6e,0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x65,0x0,0x6e,0x0, + 0x68,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0xfa,0x0,0x63,0x0,0x6c,0x0,0x65, + 0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xaa,0x0,0x4f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0xfa,0x0,0x63,0x0,0x6c,0x0,0x65,0x0,0x6f,0x0,0x20,0x0, + 0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0xf4,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0, + 0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x6f, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x76,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f, + 0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54, + 0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0xf3,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x41,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65, + 0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x69,0x0, + 0x67,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70, + 0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50, + 0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0, + 0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0, + 0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75, + 0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d, + 0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x41,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x65,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50, + 0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d, + 0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x41,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0xe1, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4c,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x4c,0x0, + 0x65,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0, + 0xe9,0x0,0x6d,0x0,0x2d,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d, + 0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69, + 0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20, + 0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0,0x75,0x0, + 0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x53,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x76, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x55,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x7e,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xed, + 0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x62, + 0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c, + 0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0x6f, + 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x47, + 0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69, + 0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x47,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xf5,0x0,0x65,0x0, + 0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x2e,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d, + 0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0xf4, + 0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55, + 0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0, + 0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0, + 0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4a,0x0,0x6f, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f, + 0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x62,0x0,0x6f,0x0, + 0x74,0x0,0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61, + 0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xed, + 0x0,0x63,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f, + 0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x78,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65, + 0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0xe1,0x0,0x72,0x0,0x69,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x41,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x9c,0x0,0x4f,0x0, + 0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0, + 0xe1,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x56,0x0, + 0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x73,0x0, + 0xe1,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x2,0x22,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x67,0x0, + 0x6e,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x70,0x0, + 0xf3,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x6d,0x0, + 0x62,0x0,0xe9,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x63,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0, + 0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0, + 0xa,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e, + 0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66, + 0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49, + 0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65, + 0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20, + 0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79, + 0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72, + 0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69, + 0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x49,0x0,0x73, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0, + 0x20,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0, + 0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f, + 0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4f,0x0,0x20,0x0,0x55,0x0,0x53, + 0x0,0x42,0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4e,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73, + 0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72, + 0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x2c,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6f, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62, + 0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x61,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4e,0x0, + 0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20, + 0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0, + 0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77, + 0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0, + 0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55, + 0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x54,0x0, + 0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x41,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xc,0x0,0x41,0x0,0x20,0x0,0x70,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0xe0,0x0,0x20, + 0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x4d, + 0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69, + 0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69, + 0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52, + 0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f, + 0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x56,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x33,0x0,0x44,0x0,0x46,0x0,0x58, + 0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x65,0x0,0x6d,0x0,0x2d,0x0, + 0x76,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6f,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x47,0x0,0x72,0x0,0xe1,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72, + 0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x6d,0x0, + 0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c, + 0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_pl-PL.qm + 0x0,0x0,0x93,0xd1, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xaf,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0x43,0x0,0x0,0x0,0x53,0x0,0x0,0x69,0xf6,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x5c,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0xbf,0x0,0x0,0x5,0x12, + 0x0,0x0,0x52,0x92,0x0,0x0,0x5,0x3b,0x0,0x0,0x5d,0x36,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5d,0x75,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xf5,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x3d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x85,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xc4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0xc,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x54,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x9c,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xba,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x54,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0x80,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x9e,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5d,0x51,0x0,0x0,0x5d,0x81,0x0,0x0,0x84,0x33,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x2b,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xa3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x66,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xaa,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x80,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0x89,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0x98,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0xc1,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x1d,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0x1e,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0xa9,0x0,0x5,0x56,0x45,0x0,0x0,0x5c,0xbf,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6a,0xe,0x0,0x5,0x98,0xc5,0x0,0x0,0x6a,0xf2,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6e,0x75,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x5b,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x5c,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x95,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xd1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x59,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x67,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x4b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xae,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x5a,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7f,0x17,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x1c,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xf,0x0,0x4c,0x99,0x62,0x0,0x0,0x3f,0xfe,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x83,0x0,0x58,0xc9,0xc4,0x0,0x0,0x69,0x85,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x71,0x69,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6e,0xec,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7b,0xf9,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7c,0x80,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x86,0xa1,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x28,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5c,0x69,0x0,0x97,0x96,0x4,0x0,0x0,0x37,0xce,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0xdf,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x50,0x8f,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0x4,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0xfd,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x23,0x1,0x9,0x1c,0x92,0x0,0x0,0x41,0xfe,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x62,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xe,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7c,0x1d,0x1,0x4c,0x50,0xee,0x0,0x0,0x67,0x62,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0xc1,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x6c,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7a,0x94,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3b,0xf7,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x51,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0x34,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0x1f,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0xad,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x7f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x44,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x49,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x49,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x31,0xf4,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6a,0xb6,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x71,0xc0,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x16,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x73,0x81,0x2,0x23,0x3c,0x6b,0x0,0x0,0x73,0xe,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x72,0x9b,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0xe4,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0xa3,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0xc7,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x84,0x93,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0xcd,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5f,0x94,0x2,0xad,0x4a,0x22,0x0,0x0,0x67,0xc9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xcf,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x3e,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x24,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xc6,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x87,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5f,0x38,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x86,0xc5,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0x20,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x63,0x27,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x7e,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x60,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x87,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0xd7,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0x49,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x70,0x3,0x6a,0x66,0x2e,0x0,0x0,0x57,0x33,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0x20,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xcc,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x30,0xcf,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x77,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0xce,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0x78,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0x4a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0xf5,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0xe1,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x72,0x23,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x70,0x7a,0x3,0xe4,0x25,0x5a,0x0,0x0,0x70,0x34,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6f,0xee,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6f,0xa8,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xd8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0xc6,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0x3b,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0xa5,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0xcf,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x8a,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xfc,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0xdb,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x13,0x4,0x51,0x79,0xb1,0x0,0x0,0x74,0x8d,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7d,0x88,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0xdc,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6f,0x63,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3c,0xbc,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3c,0xe5,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x34,0xa3,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2f,0xf8,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0x16,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x8d,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xac,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0xef,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5b,0x32,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0x5a,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x95,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xa9,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5b,0x56,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0xde,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0x4a,0x5,0x18,0x5,0x95,0x0,0x0,0x7f,0xb1,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xf,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0x2c,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5b,0xd,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x85,0x5a,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0xf8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0x3b,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6e,0x9c,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0x4a,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7b,0xa8,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x75,0xbf,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x23,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x71,0x93,0x5,0xb2,0x16,0x79,0x0,0x0,0x68,0x36,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0x50,0x5,0xb3,0x5f,0x79,0x0,0x0,0x49,0x7c,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0x85,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0xae,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xf9,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xf9,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0xe8,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0x4e,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x82,0xb3,0x5,0xd0,0x4f,0x11,0x0,0x0,0x83,0x5f,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xee,0x5,0xdf,0xba,0xba,0x0,0x0,0x83,0xa3,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x66,0xd0,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0xd1,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x37,0xfd,0x6,0x19,0x20,0x43,0x0,0x0,0x6b,0x17,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3a,0xf0,0x6,0x38,0x9f,0x35,0x0,0x0,0x38,0xbd,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x3c,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x85,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0x8c,0x6,0x6c,0xb8,0x3,0x0,0x0,0x80,0xfa,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0x53,0x6,0x74,0xe,0x6a,0x0,0x0,0x60,0x5d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0xc4,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x7b,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0x35,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0x11,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x70,0xc0,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x74,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6a,0x74,0x6,0xc3,0xce,0xa3,0x0,0x0,0x73,0xf4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0x16,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0xb0,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xae,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x80,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4a,0x8a,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xc7,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0xf0,0x7,0x6,0x93,0xe3,0x0,0x0,0x86,0x38,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0xfd,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0xf,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x5e,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6e,0x3c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5a,0x68,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0x57,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x62,0x9d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0xf0,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x32,0xeb,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0xfb,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xf5,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x3f,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xb8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x69,0xaf,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0x6,0x7,0xa3,0x63,0x9e,0x0,0x0,0x68,0xb1,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0xe1,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x33,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x80,0xb1,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x4c,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x7c,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x5f,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x64,0x68,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x64,0x17,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3d,0xaa,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6a,0x2f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0xfe,0x8,0x0,0x3f,0x29,0x0,0x0,0x63,0x99,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xb,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xba,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0x52,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7b,0x2d,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x60,0x8d,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x43,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0xa8,0x8,0x9b,0xc,0x24,0x0,0x0,0x6c,0xa5,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0x9f,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0x53,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0xdb,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0x17,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0x67,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x5a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0x88,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xfd,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3e,0xd9,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0xd1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x2f,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x69,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0xbb,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x33,0xf5,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0x11,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5b,0xd5,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x13,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x97,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x5b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x65,0x6f,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xe2,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x1f,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x4b,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0x77,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xa3,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x2a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x71,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x72,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5b,0x99,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0xd7,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x39,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0xc4,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xb1,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xc1,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xf5,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x30,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x9f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0x20,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xcf,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0x4c,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3e,0x9b,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0x41,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x12,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0x8,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6b,0xe8,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0x40,0xa,0x98,0x1f,0x89,0x0,0x0,0x36,0xff,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xb4,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0x45,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x43,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x7f,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x4a,0xa,0xda,0x50,0x7e,0x0,0x0,0x7e,0x23,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x9e,0xa,0xea,0x46,0xf4,0x0,0x0,0x5c,0x7,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x76,0xb,0xa,0x72,0xc9,0x0,0x0,0x39,0xeb,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xf4,0xb,0x1e,0xee,0xfe,0x0,0x0,0x58,0x69,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0xd6,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x14,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xf8,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0x25,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x4,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x8d,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0xbd,0xb,0x9d,0xe,0xa2,0x0,0x0,0x32,0xb3,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xa5,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6b,0xbb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6f,0x12,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x53,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0x95,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0xbc,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x86,0x2,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x62,0xeb,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x74,0xf1,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x75,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x3a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0x5b,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x76,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x8d,0xc,0x48,0x83,0xde, + 0x0,0x0,0x64,0xb9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0x8f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0x69,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0xbc,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3a,0xb4,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x3a,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0x83,0xc,0x90,0x26,0xb5,0x0,0x0,0x7e,0xbf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0xf0,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x12,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6e,0xb,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x28,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5d,0x96,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0x2a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xe1,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x40,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xc,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x18,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x82,0xda,0xd,0x4a,0x90,0xb2,0x0,0x0,0x68,0x81,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x83,0xfc,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0x7,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x35,0xed,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x63,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x39,0xb0,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x15,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xc,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x2,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x84,0xd1,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0xe2,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x83,0xd2,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0xe6,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x75,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x5e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xe0,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0x9f,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x21,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0x83,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0xc1,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0x78,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0x8a,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xbb,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x66,0x3e,0xe,0xbe,0x61,0x81,0x0,0x0,0x6d,0x3,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6d,0x45,0xe,0xbe,0x61,0x83,0x0,0x0,0x6d,0x87,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6d,0xc9,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0x75,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0xcf,0xe,0xe2,0x34,0x60,0x0,0x0,0x85,0xae,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x85,0xd8,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xd3,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x2e,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x84,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x86,0x6b,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x84,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x76,0x83,0xf,0x17,0x9c,0x64,0x0,0x0,0x80,0x63,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0xbe,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x5b,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0xb3,0xf,0x30,0x6b,0x3,0x0,0x0,0x31,0xbf,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x71,0x1b,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xb3,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x13,0xf,0x70,0xaa,0x1a,0x0,0x0,0x83,0x1a,0xf,0x74,0xd,0xca, + 0x0,0x0,0x68,0x6,0xf,0x85,0x7b,0xea,0x0,0x0,0x60,0x1c,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0xd4,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xb7,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x66,0xfc,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0xa2,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0xda,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0x5c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x1b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x51,0x9d,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3d,0xef,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0x51,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0xbf,0xf,0xf5,0xeb,0x52,0x0,0x0,0x61,0x5,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x61,0x4b,0xf,0xf5,0xeb,0x54,0x0,0x0,0x61,0x91,0x69,0x0,0x0,0x86, + 0xef,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x46,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x6e, + 0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x77,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x73,0x1,0x42,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x67,0x0,0xf3, + 0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75, + 0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x1,0x5, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63, + 0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20, + 0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69, + 0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x72, + 0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x53,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,0x0, + 0x6b,0x0,0x69,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26, + 0x0,0x4f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6b,0x0,0x63, + 0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x26,0x0,0x42,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0x79, + 0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x41,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0, + 0x7a,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0, + 0x75,0x0,0x73,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f, + 0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x1,0x5a,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1, + 0x5b,0x0,0x6c,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x73, + 0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26, + 0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65, + 0x0,0x77,0x0,0x69,0x1,0x44,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x1,0x44,0x0,0x63,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x54,0x0,0x65,0x0,0x63,0x0,0x7a,0x0, + 0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x54,0x0,0x72,0x0,0x79, + 0x0,0x62,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x63,0x0,0x69,0x1,0x5, + 0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x65,0x1,0x42,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20, + 0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x50,0x0,0x65,0x1,0x42,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x5a,0x0,0x69,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x54, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x55,0x0,0x6b,0x0,0x72,0x0,0x79,0x0, + 0x6a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x26,0x0,0x53,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x1,0x42, + 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x0,0x4f,0x0,0x64,0x0,0x77,0x0,0x72,0x0,0xf3,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0, + 0x61,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x77,0x0, + 0x79,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x77,0x0,0x79,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x6d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72, + 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e,0x0,0x6f,0x1,0x5b,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x1, + 0x5a,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61, + 0x0,0x75,0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,0xf3,0x0,0x72,0x0, + 0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0, + 0x6a,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x53,0x0,0x6b,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e,0x0,0x61, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70, + 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x55,0x0,0x73,0x0,0x75,0x1,0x44,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x55,0x0,0x73,0x0, + 0x75,0x1,0x44,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4f,0x0,0x6b,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e, + 0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69, + 0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x26,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x77,0x0,0x69,0x1,0x44,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x1, + 0x5,0x0,0x74,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79, + 0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x57,0x0,0x79,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x7a, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x55,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4f,0x0,0x6b,0x0,0x72,0x0, + 0x65,0x1,0x5b,0x0,0x6c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x26,0x0,0x4b,0x0, + 0x77,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x77,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x28,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x77,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78, + 0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x5a,0x0, + 0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65, + 0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4e, + 0x0,0x61,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x41,0x0, + 0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x75,0x0, + 0x6a,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x42,0x0,0x69, + 0x0,0x61,0x1,0x42,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x43,0x0,0x7a,0x0, + 0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x28,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x79, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0, + 0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6c,0x0, + 0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x6f,0x0,0x74,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x34,0x0,0x34,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34, + 0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x1,0x7c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x1,0x7c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2c,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2c,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2c,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x1,0x42,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e, + 0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2c,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22, + 0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36, + 0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0xa4,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x1,0x7a, + 0x1,0x7,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3, + 0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x74,0x0,0x6b,0x0,0x75,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x7a,0x1,0x19,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x7a, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68, + 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e, + 0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70, + 0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x22,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61, + 0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa, + 0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, + 0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e, + 0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52, + 0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61, + 0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22, + 0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50, + 0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0, + 0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x77,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b, + 0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x0,0x5a,0x0,0x61,0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x57,0x0,0x73,0x0,0x7a,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x57,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x4,0x1e,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c, + 0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68, + 0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74, + 0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x69, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x74,0x1,0x42,0x0,0x75,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x3a,0x0,0x20,0x0,0x46,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x2d,0x0,0x53,0x0,0x68,0x0,0x6f,0x0,0x6b, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x79,0x0,0x64, + 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20, + 0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c, + 0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6c,0x0,0x75, + 0x0,0x62,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x65, + 0x0,0x6a,0x0,0x2e,0x0,0x20,0x0,0x5a,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x63, + 0x0,0x7a,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x7a, + 0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x77,0x0,0x69, + 0x1,0x19,0x0,0x63,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x1,0x5b,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x77,0x0,0x69,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6b,0x0, + 0x6f,0x1,0x44,0x0,0x63,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x80,0x0,0x4a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x1,0x5b,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x1,0x7c, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x1,0x7, + 0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6a, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x79, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79, + 0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0, + 0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26, + 0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0, + 0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26, + 0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x50,0x0,0x6f,0x0,0x64,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x77,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0, + 0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x1,0x5b,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52, + 0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x62, + 0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19, + 0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44, + 0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4e,0x0,0x4f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64, + 0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0, + 0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xd0,0x0,0x57,0x0,0x79,0x0,0x62,0x0,0xf3, + 0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a, + 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x42, + 0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x64, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e, + 0x0,0x79,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x77, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x62,0x0,0xf3,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x79,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x77, + 0x0,0x79,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x1,0x5,0x0,0x2e,0x0,0x20, + 0x0,0x4a,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x6b,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x7a,0x0,0x67,0x0,0x6f,0x0,0x64,0x0,0x6e,0x0,0x6f, + 0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x2d,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6c,0x0,0x75, + 0x0,0x62,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20, + 0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x61, + 0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x7a, + 0x0,0x67,0x1,0x42,0x0,0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x62,0x1,0x42,0x1,0x19,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6b, + 0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x61, + 0x1,0x7c,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x52, + 0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41, + 0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0, + 0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0, + 0x79,0x0,0x64,0x1,0x7c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x72,0x0,0x79,0x0,0x64,0x1,0x7c,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x5a,0x0,0x6d,0x0,0x69, + 0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x6e, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68, + 0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69, + 0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x1,0x42,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x42,0x0, + 0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65, + 0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x75,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x77,0x0,0x79,0x0, + 0x63,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x79,0x0, + 0x73,0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43, + 0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x6e,0x0,0x75, + 0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f, + 0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x69,0x1,0x7,0x0,0x20,0x0, + 0x73,0x0,0x79,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x79,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x77,0x0, + 0x65,0x0,0x6a,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74, + 0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a, + 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0, + 0x20,0x0,0x28,0x0,0x64,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x79,0x0,0x6c,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x6b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x79, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x0,0x72,0x0,0xf3,0x1,0x7c,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x75,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x55,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0, + 0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x79, + 0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x75,0x1,0x7c,0x0,0x20, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0, + 0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x75,0x1, + 0x7c,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x4f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73, + 0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x1,0x5,0x0,0x20,0x0,0x62,0x0,0x79,0x1,0x7, + 0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x73,0x0,0x7a,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b, + 0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x45,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x43,0x0,0x7a,0x0,0x79,0x0,0x20,0x0, + 0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x1,0x44,0x0,0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x44,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b, + 0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19, + 0x0,0x63,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61, + 0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x26,0x0,0x79,0x0,0x6a,0x0,0x6d,0x0,0x69,0x0,0x6a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x26,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x57,0x0,0x26,0x0,0x79,0x0,0x6a,0x0,0x64,0x1,0x7a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x45,0x0,0x26,0x0,0x6b,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x57,0x0,0x63,0x0,0x7a,0x0,0x65,0x1,0x5b,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x70,0x1,0x19,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x57,0x1,0x42,0x1, + 0x5,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x20,0x0,0x7a,0x0, + 0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x28,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6c,0x0, + 0x6f,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x5a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x44, + 0x0,0x63,0x0,0x7a,0x0,0x20,0x1,0x5b,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x50,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x79,0x0,0x62,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0x42,0x0, + 0x6e,0x0,0x6f,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0, + 0x77,0x0,0x65,0x0,0x67,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x42,0x1,0x42,0x1,0x5,0x0,0x64,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x42,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x49, + 0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63, + 0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6d,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x5a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x44,0x0,0x63,0x0, + 0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x57,0x0,0x79, + 0x0,0x6d,0x0,0x75,0x1,0x5b,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x79, + 0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33, + 0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x79,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x77, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4a, + 0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x61, + 0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x5e,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x64,0x0, + 0x61,0x1,0x42,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x6f,0x0, + 0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x64,0x0,0x61,0x1,0x42,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x69,0x1,0x19,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0, + 0x69,0x1,0x7,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x7a,0x0,0x79,0x0,0x62,0x0, + 0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x62,0x1,0x42, + 0x1,0x5,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x61,0x0,0x7a,0x0,0x77,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72, + 0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x73, + 0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x61,0x0,0x70, + 0x1,0x19,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b, + 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19,0x0, + 0x64,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x69,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x6c, + 0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0,0x63,0x0,0x72, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20, + 0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x57,0x0,0x7a,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x54,0x0,0x79, + 0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x77,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x26,0x0,0x77,0x0,0x20,0x0,0x73, + 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x61, + 0x0,0x72,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0xf3,0x0,0x77, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x1,0x5,0x0,0x20,0x0,0x62,0x0,0x79, + 0x1,0x7,0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x73,0x0,0x7a, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x34,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b, + 0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72, + 0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x20,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0, + 0x79,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x1, + 0x5,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72, + 0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e, + 0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70, + 0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x6b,0x0, + 0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b, + 0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65, + 0x0,0x67,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x79,0x0,0x73,0x0, + 0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x74,0x0,0x20,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0, + 0x70,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48, + 0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x47,0x1,0x42,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x57,0x0,0x79,0x0, + 0x73,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x53,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55, + 0x0,0x6b,0x0,0x72,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x26,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x7a, + 0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d, + 0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34, + 0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x73,0x0,0x7a,0x0,0x65, + 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x49, + 0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x72,0x0,0x7a, + 0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x72,0x0, + 0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x77,0x0,0x65,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x77,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x77,0x0, + 0x6e,0x1,0x19,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x6e,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x0, + 0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x4a,0x1,0x19,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x75,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x74,0x0,0x61,0x1,0x42, + 0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4e,0x0,0x61,0x0, + 0x70,0x1,0x19,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x67,0x0, + 0x64,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x55,0x0, + 0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20, + 0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x79,0x0, + 0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19,0x0,0x64,0x0,0x79,0x0, + 0x20,0x0,0x4d,0x0,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79, + 0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf2, + 0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x2c, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x61, + 0x1,0x7c,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x75,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3, + 0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x77,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e,0x1,0x5, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x1,0x19, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74, + 0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x52,0x0,0x6f, + 0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73, + 0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61, + 0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x53,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x64,0x1,0x7a,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x7a,0x0, + 0x79,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0, + 0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x63,0x0, + 0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x61,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0x42,0x1, + 0x5,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x79,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75, + 0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e, + 0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74, + 0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69, + 0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74, + 0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x64,0x1,0x7a,0x0,0x2c,0x0, + 0x20,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x79,0x0, + 0x74,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x84,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x64, + 0x1,0x7a,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x79,0x0,0x73,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x7a, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x0,0x6f, + 0x1,0x5b,0x0,0x63,0x0,0x69,0x1,0x5,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70, + 0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0x69,0x1, + 0x19,0x1,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0, + 0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f, + 0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20, + 0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4d, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x77, + 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x79,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x7a,0x0,0x75,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0,0x72,0x0,0x61, + 0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20, + 0x0,0x6d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x4d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x69,0x0,0x65,0x1,0x7, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70, + 0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x6f,0x0, + 0x77,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x72,0x0, + 0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e, + 0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x1,0x7b,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x6f,0x0,0x6b,0x1,0x42,0x0,0x61, + 0x0,0x64,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x7a,0x0,0x79, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0, + 0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x57,0x1,0x42,0x1, + 0x5,0x0,0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33, + 0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x6f,0x0,0x77,0x0,0x61,0x1, + 0x7,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0, + 0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x55,0x1, + 0x7c,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0, + 0x67,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f, + 0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x49, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x7a,0x1,0x5, + 0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x6a, + 0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x49,0x0,0x6e,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6d, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x61,0x0,0x64,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x54,0x0,0x72,0x0,0x79,0x0,0x62,0x0,0x20,0x0,0x50,0x0, + 0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x67,0x1, + 0x42,0x0,0x79,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x67,0x1,0x42,0x0,0x79,0x0,0x20,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0xf3,0x0, + 0x77,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x67,0x1,0x42,0x0,0x79,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x1,0x42,0x0,0x79,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0, + 0x79,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x64,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6e,0x0,0x65,0x0, + 0x67,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x67,0x0,0x61,0x0, + 0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x1,0x5,0x0,0x20,0x0,0x73,0x0,0x69,0x1, + 0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65, + 0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x49,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4f,0x0, + 0x6b,0x0,0x72,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x1,0x5,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,0x0,0x77,0x1,0x19,0x0,0x20,0x0,0x70,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e, + 0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73, + 0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0, + 0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e, + 0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0, + 0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0, + 0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x72,0x0,0xf3,0x0,0x63,0x0, + 0x69,0x1,0x7,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x72,0x0, + 0x79,0x0,0x62,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8c,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0, + 0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0, + 0x69,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x1, + 0x5b,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x75,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73, + 0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c, + 0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x60,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e, + 0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0,0x69, + 0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c, + 0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x79,0x0,0x73, + 0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72, + 0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72, + 0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x43,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20, + 0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,0x0,0x26,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x1,0x19,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x69, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x6a,0x1,0x19, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x26,0x0,0x4b,0x0, + 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x54,0x0,0x72, + 0x0,0x79,0x0,0x62,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x6f, + 0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x79,0x0, + 0x63,0x0,0x6a,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x20,0x0, + 0x75,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0, + 0x7a,0x0,0x79,0x0,0x77,0x0,0x72,0x0,0xf3,0x1,0x7,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0,0x7a,0x0,0x6e,0x0,0xf3,0x0,0x77,0x0, + 0x20,0x0,0x77,0x0,0x79,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x5a,0x0, + 0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0, + 0x6c,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x57, + 0x0,0x79,0x0,0x62,0x0,0xf3,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x67, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x57,0x0,0x79,0x0, + 0x62,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6e,0x0,0x79,0x0,0x20,0x0, + 0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x67,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x67,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x0, + 0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x4d,0x0,0x61,0x1,0x42,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c, + 0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x44,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x57,0x0,0x7a,0x0,0x6d,0x0,0x6f, + 0x0,0x63,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x75, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x57,0x0,0x7a,0x0,0x6d,0x0, + 0x6f,0x0,0x63,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77, + 0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77, + 0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19, + 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a, + 0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x6b,0x0,0x72,0x0,0x65,0x1,0x5b, + 0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x4f,0x0,0x6b,0x0,0x72,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x79,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x53,0x0,0x7a,0x0,0x79,0x0,0x62,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x7a,0x0,0x79,0x0, + 0x62,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75, + 0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x7a,0x0, + 0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2d,0x0, + 0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x44,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x6f, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x36, + 0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74, + 0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0, + 0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x38,0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x7a,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x5a,0x0,0x72,0x0,0xf3,0x0,0x62,0x0,0x20,0x0,0x26,0x0, + 0x7a,0x0,0x72,0x0,0x7a,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6b,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73, + 0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x1,0x19,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x38,0x0,0x54,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x72,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,0x57,0x0,0x79,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x70,0x0,0x69,0x0, + 0x73,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x7a,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x77,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0, + 0x7a,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x75,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65, + 0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74, + 0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65, + 0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x26,0x0, + 0x4d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x6f,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x61,0x1,0x7,0x0, + 0x2c,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x7a,0x1, + 0x19,0x0,0x64,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x79,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x77,0x0, + 0x6f,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x75,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x72,0x0, + 0xf3,0x1,0x7c,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x6a,0x1,0x5,0x0, + 0x63,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4d,0x0, + 0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x1,0x7c,0x0,0x20,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x7a,0x0, + 0x79,0x1,0x7,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0, + 0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x79,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0, + 0x20,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x6f,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0, + 0x20,0x0,0x77,0x0,0x79,0x0,0x73,0x0,0x74,0x1,0x5,0x0,0x70,0x0,0x69,0x1, + 0x42,0x0,0x20,0x0,0x62,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x20,0x0,0x77,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0, + 0x79,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0, + 0x79,0x1,0x42,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0, + 0x79,0x0,0x73,0x0,0x6b,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x7a,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x69,0x1,0x7,0x0, + 0x20,0x0,0x73,0x0,0x79,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0, + 0x77,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54, + 0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74, + 0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, + 0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20, + 0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20, + 0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72, + 0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61, + 0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67, + 0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20, + 0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x54,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65, + 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e, + 0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53, + 0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x7a, + 0x0,0x61,0x0,0x73,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x72,0x0,0x7a,0x1,0x5,0x0, + 0x64,0x0,0x79,0x0,0x20,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74, + 0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61, + 0x0,0x6a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x6f,0x0,0x77,0x0,0x61,0x1, + 0x7,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a, + 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61, + 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e, + 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64, + 0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x1,0x42,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0, + 0x20,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6b,0x0, + 0x6c,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x63,0x0, + 0x7a,0x0,0x79,0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x73,0x0, + 0x75,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x77,0x0, + 0x65,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x79,0x0, + 0x63,0x0,0x68,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e, + 0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x1,0x7c,0x0,0x79,0x0, + 0x6a,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0, + 0x75,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46, + 0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0, + 0x61,0x0,0x6a,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x75,0x0,0x20,0x0,0x26,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x56,0x0,0x48, + 0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xfc, + 0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19, + 0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x61,0x1,0x7c,0x0,0x20,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x6b,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e, + 0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63, + 0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e, + 0x1,0x5,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x19,0x0,0x20, + 0x0,0x77,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x63, + 0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x79,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c, + 0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50, + 0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61, + 0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58, + 0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x59,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x62,0x0,0x73,0x0, + 0x7a,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x1,0x41,0x0,0x61,0x0,0x64,0x0,0x75,0x0, + 0x6a,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x6f,0x0,0x62,0x0,0x73,0x1,0x42,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19, + 0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0, + 0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_ca-ES.qm + 0x0,0x0,0x94,0x93, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0x13,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0x5f,0x0,0x0,0x0,0x53,0x0,0x0,0x6a,0x68,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x8a,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0xf3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x52,0xdc,0x0,0x0,0x5,0x3b,0x0,0x0,0x5d,0xc2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x5,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x23,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6b,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb3,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf2,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x3a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x82,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xca,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xe8,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0xd4,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0xb2,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0xd0,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5d,0xe7,0x0,0x0,0x5d,0x81,0x0,0x0,0x84,0xd9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4b,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd1,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x9c,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0x3a,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0xf2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0xe3,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0xc6,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0xf7,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x6b,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0x50,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0xe7,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0x55,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6a,0x80,0x0,0x5,0x98,0xc5,0x0,0x0,0x6b,0x64,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6e,0xcf,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x91,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x90,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xc9,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xff,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x85,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x85,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x77,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xe4,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x8c,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7f,0x91,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x50,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x13,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0x4c,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x91,0x0,0x53,0x72,0xd1,0x0,0x0,0x3,0x35,0x0,0x58,0xc9,0xc4, + 0x0,0x0,0x69,0xef,0x0,0x5a,0x6b,0xb4,0x0,0x0,0x71,0xcf,0x0,0x5a,0x6c,0x44, + 0x0,0x0,0x6f,0x44,0x0,0x5b,0xc8,0x8f,0x0,0x0,0x7c,0x35,0x0,0x5c,0x6,0x8a, + 0x0,0x0,0x7c,0xb4,0x0,0x72,0xf8,0xe3,0x0,0x0,0x87,0x63,0x0,0x73,0x75,0x3e, + 0x0,0x0,0x35,0xc,0x0,0x7a,0x20,0x54,0x0,0x0,0x5d,0x7,0x0,0x97,0x96,0x4, + 0x0,0x0,0x37,0xe4,0x0,0xa4,0xd5,0x15,0x0,0x0,0x4f,0x1b,0x0,0xaa,0xa8,0x9a, + 0x0,0x0,0x50,0xc3,0x0,0xac,0x9c,0x93,0x0,0x0,0x4a,0x1c,0x0,0xb8,0x5f,0x43, + 0x0,0x0,0x5f,0xd9,0x0,0xc0,0x3,0xf2,0x0,0x0,0x19,0x57,0x1,0x9,0x1c,0x92, + 0x0,0x0,0x42,0x26,0x1,0x30,0x54,0x2e,0x0,0x0,0x2a,0xce,0x1,0x39,0xa4,0xce, + 0x0,0x0,0x59,0x68,0x1,0x4b,0x75,0xc3,0x0,0x0,0x7c,0x59,0x1,0x4c,0x50,0xee, + 0x0,0x0,0x67,0xe8,0x1,0x54,0xc3,0xb9,0x0,0x0,0x49,0xdf,0x1,0x61,0xac,0xc9, + 0x0,0x0,0x13,0xac,0x1,0x72,0x4a,0xde,0x0,0x0,0x7a,0xae,0x1,0x7a,0x2c,0x99, + 0x0,0x0,0x3c,0x4b,0x1,0x91,0xe,0x73,0x0,0x0,0x28,0xbd,0x1,0x9c,0xe0,0x83, + 0x0,0x0,0x4c,0x66,0x1,0x9f,0x22,0x4a,0x0,0x0,0x54,0x75,0x1,0xb0,0x47,0x5c, + 0x0,0x0,0x52,0xf7,0x1,0xb0,0x6c,0xf2,0x0,0x0,0xa,0xab,0x1,0xc8,0x65,0x8f, + 0x0,0x0,0x41,0x90,0x1,0xd3,0x9,0x82,0x0,0x0,0xb,0x7b,0x1,0xdd,0x59,0x87, + 0x0,0x0,0xf,0x73,0x1,0xe2,0x3,0x79,0x0,0x0,0x31,0xb6,0x1,0xe6,0x0,0xe9, + 0x0,0x0,0x6b,0x28,0x1,0xf8,0xc4,0xc1,0x0,0x0,0x72,0x2a,0x2,0x14,0x18,0x2e, + 0x0,0x0,0xa,0x28,0x2,0x21,0x3c,0x6b,0x0,0x0,0x73,0xc5,0x2,0x23,0x3c,0x6b, + 0x0,0x0,0x73,0x54,0x2,0x2d,0x3c,0x6b,0x0,0x0,0x72,0xe3,0x2,0x3c,0xaa,0x89, + 0x0,0x0,0x17,0x16,0x2,0x3f,0x61,0xd7,0x0,0x0,0x4b,0xcb,0x2,0x78,0x48,0x1a, + 0x0,0x0,0x54,0x1d,0x2,0x90,0x5e,0xf9,0x0,0x0,0x85,0x39,0x2,0x90,0x8d,0x12, + 0x0,0x0,0x42,0xe7,0x2,0x9b,0xf0,0x3,0x0,0x0,0x60,0x60,0x2,0xad,0x4a,0x22, + 0x0,0x0,0x68,0x47,0x2,0xae,0xfe,0x6e,0x0,0x0,0x9,0xf,0x2,0xb3,0xba,0xf1, + 0x0,0x0,0xc,0x5a,0x2,0xb6,0x8c,0x95,0x0,0x0,0xd,0x50,0x2,0xbb,0x66,0x33, + 0x0,0x0,0x11,0xfc,0x2,0xbb,0xb0,0x43,0x0,0x0,0x12,0xbd,0x2,0xcc,0xe1,0xf3, + 0x0,0x0,0x60,0x18,0x2,0xf9,0x69,0xf0,0x0,0x0,0x87,0x87,0x3,0x5,0x38,0xb2, + 0x0,0x0,0x40,0x70,0x3,0x15,0xb6,0x4e,0x0,0x0,0x63,0xe5,0x3,0x41,0x45,0x12, + 0x0,0x0,0x14,0xb0,0x3,0x49,0x26,0xf2,0x0,0x0,0x15,0x92,0x3,0x4b,0x26,0xf2, + 0x0,0x0,0x15,0xb9,0x3,0x52,0xf3,0x99,0x0,0x0,0x53,0x21,0x3,0x65,0x26,0xf2, + 0x0,0x0,0x18,0x7b,0x3,0x69,0x26,0xf2,0x0,0x0,0x18,0xa2,0x3,0x6a,0x66,0x2e, + 0x0,0x0,0x57,0x83,0x3,0x79,0xf0,0x15,0x0,0x0,0x55,0x7c,0x3,0x7d,0x6c,0xe, + 0x0,0x0,0xa,0xfa,0x3,0x7f,0x76,0xa3,0x0,0x0,0x30,0x85,0x3,0x95,0x9d,0xe9, + 0x0,0x0,0x3,0xa5,0x3,0x97,0x26,0xf2,0x0,0x0,0x1a,0x2,0x3,0xa4,0x35,0xa5, + 0x0,0x0,0x42,0xa6,0x3,0xa4,0x6f,0x55,0x0,0x0,0x42,0x78,0x3,0xa5,0x26,0xf2, + 0x0,0x0,0x1a,0x29,0x3,0xc4,0x69,0x9a,0x0,0x0,0x5a,0x57,0x3,0xc6,0xfd,0xa9, + 0x0,0x0,0x72,0x6f,0x3,0xe4,0x25,0x4a,0x0,0x0,0x70,0x9e,0x3,0xe4,0x25,0x5a, + 0x0,0x0,0x70,0x5c,0x3,0xe4,0x25,0x6a,0x0,0x0,0x70,0x1a,0x3,0xe4,0x25,0x7a, + 0x0,0x0,0x6f,0xd8,0x3,0xfa,0xfa,0xce,0x0,0x0,0x6,0x6,0x4,0x3,0xf6,0x9a, + 0x0,0x0,0x57,0x12,0x4,0xa,0x1d,0x19,0x0,0x0,0x17,0x6d,0x4,0x15,0x75,0x22, + 0x0,0x0,0x14,0xd7,0x4,0x17,0x65,0x22,0x0,0x0,0x15,0x1,0x4,0x1c,0x68,0x69, + 0x0,0x0,0x16,0xbc,0x4,0x23,0x29,0x55,0x0,0x0,0xb,0x2c,0x4,0x31,0xff,0xe9, + 0x0,0x0,0x26,0x65,0x4,0x38,0xa0,0xf,0x0,0x0,0x29,0x7f,0x4,0x51,0x79,0xb1, + 0x0,0x0,0x74,0xe3,0x4,0x59,0x41,0xa4,0x0,0x0,0x7d,0xb0,0x4,0x5b,0x53,0x1f, + 0x0,0x0,0x25,0x86,0x4,0x61,0x71,0x3e,0x0,0x0,0x6f,0xa3,0x4,0x7d,0xb,0xa4, + 0x0,0x0,0x3d,0x4,0x4,0x7d,0x47,0xb9,0x0,0x0,0x3d,0x31,0x4,0x7e,0x9f,0x1e, + 0x0,0x0,0x34,0x69,0x4,0x98,0x49,0xbc,0x0,0x0,0x2f,0x98,0x4,0xb8,0x1,0x2e, + 0x0,0x0,0x39,0x66,0x4,0xb8,0x8e,0x14,0x0,0x0,0xc,0xb3,0x4,0xbc,0xa4,0x5e, + 0x0,0x0,0x2,0xcc,0x4,0xc2,0x5c,0xee,0x0,0x0,0x0,0x34,0x4,0xc5,0xa8,0xe9, + 0x0,0x0,0x18,0x21,0x4,0xcb,0xe6,0xdb,0x0,0x0,0x5b,0xb8,0x4,0xcf,0xa6,0xe5, + 0x0,0x0,0x33,0x10,0x4,0xd5,0xa8,0xe9,0x0,0x0,0x17,0xc7,0x4,0xe6,0xae,0xdb, + 0x0,0x0,0x1d,0xb9,0x4,0xea,0x36,0x9a,0x0,0x0,0x5b,0xde,0x4,0xeb,0x2f,0xa, + 0x0,0x0,0x52,0x12,0x4,0xeb,0x7b,0x6a,0x0,0x0,0x4b,0x7c,0x5,0x18,0x5,0x95, + 0x0,0x0,0x80,0x27,0x5,0x1b,0xa5,0x22,0x0,0x0,0x16,0x41,0x5,0x30,0xd3,0xe, + 0x0,0x0,0x3b,0x90,0x5,0x46,0x85,0x64,0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a, + 0x0,0x0,0x5b,0x8f,0x5,0x5f,0x67,0xa3,0x0,0x0,0x86,0x18,0x5,0x5f,0x7b,0x59, + 0x0,0x0,0x10,0x28,0x5,0x6b,0x37,0x6e,0x0,0x0,0x3d,0x99,0x5,0x88,0x2e,0xd9, + 0x0,0x0,0x6e,0xf0,0x5,0x8b,0xc9,0xde,0x0,0x0,0x55,0xa6,0x5,0xa1,0xa5,0x7e, + 0x0,0x0,0x7b,0xe0,0x5,0xa3,0x3d,0xd2,0x0,0x0,0x75,0xf7,0x5,0xa5,0x3a,0x79, + 0x0,0x0,0x26,0xad,0x5,0xa6,0xbb,0x7a,0x0,0x0,0x71,0xfb,0x5,0xb2,0x16,0x79, + 0x0,0x0,0x68,0xaa,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0x62,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0x98,0x5,0xb4,0x6c,0x55,0x0,0x0,0x3f,0xdd,0x5,0xb8,0x5d,0xad, + 0x0,0x0,0x15,0xe0,0x5,0xb8,0x5d,0xdd,0x0,0x0,0x14,0x2b,0x5,0xbc,0x9b,0x9d, + 0x0,0x0,0x15,0x2b,0x5,0xc0,0x5a,0x12,0x0,0x0,0x4c,0x1a,0x5,0xc1,0x4d,0x83, + 0x0,0x0,0x38,0x7e,0x5,0xcf,0xac,0x2a,0x0,0x0,0x83,0x59,0x5,0xd0,0x4f,0x11, + 0x0,0x0,0x84,0x3,0x5,0xd1,0x13,0x7,0x0,0x0,0xf,0x1a,0x5,0xdf,0xba,0xba, + 0x0,0x0,0x84,0x4d,0x5,0xe8,0x9d,0xfa,0x0,0x0,0x67,0x58,0x6,0x7,0xd3,0xda, + 0x0,0x0,0x4e,0x1,0x6,0xc,0xc0,0xb4,0x0,0x0,0x38,0x15,0x6,0x19,0x20,0x43, + 0x0,0x0,0x6b,0x87,0x6,0x33,0xa9,0x24,0x0,0x0,0x3b,0x58,0x6,0x38,0x9f,0x35, + 0x0,0x0,0x38,0xfd,0x6,0x44,0xc6,0x5e,0x0,0x0,0x1f,0x42,0x6,0x51,0xe6,0x13, + 0x0,0x0,0x6,0xb5,0x6,0x5b,0x1,0x15,0x0,0x0,0x33,0x42,0x6,0x6c,0xb8,0x3, + 0x0,0x0,0x81,0x98,0x6,0x6f,0xe2,0xa3,0x0,0x0,0x4a,0x69,0x6,0x74,0xe,0x6a, + 0x0,0x0,0x61,0x3f,0x6,0x7c,0x21,0x44,0x0,0x0,0x4a,0xd2,0x6,0x7c,0x3f,0xa8, + 0x0,0x0,0x1d,0x7f,0x6,0x7d,0x4e,0x8e,0x0,0x0,0x3e,0x89,0x6,0x81,0xb7,0x1f, + 0x0,0x0,0x3a,0x6f,0x6,0x83,0xe4,0xa3,0x0,0x0,0x70,0xe0,0x6,0x96,0xa4,0x13, + 0x0,0x0,0x45,0xa0,0x6,0x97,0x71,0x79,0x0,0x0,0x6a,0xe6,0x6,0xc3,0xce,0xa3, + 0x0,0x0,0x74,0x36,0x6,0xce,0x41,0x63,0x0,0x0,0x46,0x4a,0x6,0xed,0xca,0xce, + 0x0,0x0,0x47,0xbe,0x6,0xf9,0x0,0x2e,0x0,0x0,0x7,0xec,0x6,0xfa,0xae,0xd4, + 0x0,0x0,0x8,0xb8,0x6,0xfe,0x2a,0xa,0x0,0x0,0x4a,0x9c,0x7,0x0,0x57,0x53, + 0x0,0x0,0x28,0x2b,0x7,0x3,0x2f,0xd3,0x0,0x0,0x55,0x4a,0x7,0x6,0x93,0xe3, + 0x0,0x0,0x86,0xf8,0x7,0x7,0xff,0x23,0x0,0x0,0x1f,0x1,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x60,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6e,0x9c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5a,0xe0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0x87,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0x65,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x24,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x32,0xa7,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0x23,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x23,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x75,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0x60,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0x1b,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0x56,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0x2d,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0x6b,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x37,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0x47,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6c,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9c,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0xe9,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0x32,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x64,0xe3,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x4,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6a,0xa1,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0x30,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0x63,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0x83,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xe6,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0x8a,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7b,0x65,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0x6f,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x7f,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0xda,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0x29,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0xd3,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0x87,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xf,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0x4b,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0xad,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x12,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0xec,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x33,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0x41,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x3e,0x9,0x49,0xfa,0x4a,0x0,0x0,0x33,0xed,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x2b,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0x71,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x33,0xaf,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0x37,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0x69,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x41,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0xc9,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x89,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0x2b,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x10,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2f,0xc5,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0xf5,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0x25,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0x55,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x58,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x7d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa0,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x29,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x62,0xb5,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x6b,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0x38,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xc3,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xfb,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x39,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x92,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xcf,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0x50,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xd9,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0x88,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x5,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0x7f,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x4c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0xa0,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6c,0x5a,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0x98,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xf,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xc4,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0x83,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x53,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xb7,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x5a,0xa,0xda,0x50,0x7e,0x0,0x0,0x7e,0x6d,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xc8,0xa,0xea,0x46,0xf4,0x0,0x0,0x5c,0x9d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x8c,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x49,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x32,0xb,0x1e,0xee,0xfe,0x0,0x0,0x58,0xc3,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x30,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x26,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0x6f,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x22,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xa9,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x15,0xb,0x9d,0xe,0xa2,0x0,0x0,0x32,0x6f,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xaf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0x2d,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6f,0x62,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x1,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0xa9,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0xee,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x86,0xc0,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x63,0xab,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0x43,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xa5,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x6a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0x9b,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0xb2,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x65,0x7f,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0xcf,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0xaf,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0xf8,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x14,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x74,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0x3b,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0x1d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x60,0xc6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0x76,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6e,0x69,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x60,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0x20,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0xcc,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x64,0xab,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x74,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x14,0xd,0x11,0x45,0x1a,0x0,0x0,0x27,0x98,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0x80,0xd,0x4a,0x90,0xb2,0x0,0x0,0x68,0xf3,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0xa2,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0x41,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x35,0xff,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x93,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x6,0xd,0x88,0x48,0x23,0x0,0x0,0x30,0xc9,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0x68,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x44,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0x7b,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0x74,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0x78,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x1a,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xa9,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0xca,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0x4c,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2a,0x8d,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0xe3,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0xc3,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0xd0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0x46,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0x47,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x66,0xdc,0xe,0xbe,0x61,0x81,0x0,0x0,0x6d,0x81,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6d,0xbb,0xe,0xbe,0x61,0x83,0x0,0x0,0x6d,0xf5,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0x2f,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0xa1,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x3,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0x6c,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0x96,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xeb,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x4c,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xbc,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x2d,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0xb4,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x76,0xbd,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x3,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5f,0x9a,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x77,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0xdf,0xf,0x30,0x6b,0x3,0x0,0x0,0x31,0x81,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x71,0x71,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xd7,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x49,0xf,0x70,0xaa,0x1a,0x0,0x0,0x83,0xc0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x68,0x7a,0xf,0x85,0x7b,0xea,0x0,0x0,0x60,0xfe,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xa,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xe9,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x67,0x86,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0xfe,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xe,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0x90,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x4f,0xf,0xd9,0x8f,0xca,0x0,0x0,0x51,0xd1,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0x49,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0xf7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x61,0xa5,0xf,0xf5,0xeb,0x52,0x0,0x0,0x61,0xe9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x2d,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0x71,0x69,0x0,0x0,0x87, + 0xb1,0x3,0x0,0x0,0x0,0x16,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x45,0x0,0x4e, + 0x0,0x20,0x0,0x50,0x0,0x41,0x0,0x55,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x20,0x0,0xe9,0x0,0x73, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe0, + 0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x61, + 0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe0,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74, + 0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x65,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61, + 0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0xe8,0x0,0x72,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0xe0,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63, + 0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20, + 0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69, + 0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0xf3,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x28,0x0, + 0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x25,0x69,0x20,0x65,0x73,0x74,0x61,0x74,0x28,0x73,0x29,0x20,0x64,0x27,0x65, + 0x73,0x70,0x65,0x72,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x51, + 0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x41, + 0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x26,0x0,0x50,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0xe0,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0xe8,0x0, + 0x72,0x0,0x64,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0,0x69,0x0, + 0x74,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0, + 0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x41,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x20,0x0,0x72,0x0,0xe0, + 0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x70,0x0, + 0x65,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0, + 0x6a,0x0,0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x69,0x0,0x78,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x26,0x0,0x4d,0x0,0x69,0x0,0x74,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x75,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75, + 0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0, + 0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x69,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xe8,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x69,0x0, + 0x73,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe8,0x0,0x76, + 0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52, + 0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x45,0x0,0x26,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0, + 0x45,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32, + 0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43, + 0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x72, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68, + 0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x26,0x0,0x41,0x0,0x6a,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x26,0x0,0x50,0x0,0xed,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x73,0x0, + 0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x20,0x0, + 0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6d,0x0, + 0x62,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74, + 0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x26,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0, + 0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x26,0x0,0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x28,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0,0x62,0x0,0x75,0x0, + 0x69,0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28, + 0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x38,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66, + 0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31, + 0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x7a,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61, + 0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x3c, + 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22, + 0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f, + 0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67, + 0x0,0x75,0x0,0x65,0x0,0x75,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0,0x75, + 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x75,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x41,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41, + 0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x41,0x0,0x66,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x66,0x0,0x65, + 0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65, + 0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x74,0x0, + 0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xc6,0x0,0x55,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x27,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c, + 0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33, + 0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75, + 0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x4c,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75, + 0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d, + 0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74, + 0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38, + 0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e, + 0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64, + 0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f, + 0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69, + 0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c, + 0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69, + 0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69, + 0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69, + 0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d, + 0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76, + 0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a, + 0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72, + 0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69, + 0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62, + 0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61, + 0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69, + 0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67, + 0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20, + 0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c, + 0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32, + 0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c, + 0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20, + 0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x75,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x45,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe0,0x0,0x74,0x0,0x69, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e, + 0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48, + 0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0xe0,0x0,0x73,0x0,0x69,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42, + 0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0, + 0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d, + 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d, + 0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4f,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x47,0x0, + 0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x3,0xc,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62, + 0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0xe0,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41, + 0x0,0x69,0x0,0x78,0x0,0xf2,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x61, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20, + 0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0xf2, + 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0xe8,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x75, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x0,0x72,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x63,0x0,0x74, + 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x61, + 0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41, + 0x0,0x6e,0x0,0x75,0x1,0x40,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x78,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0, + 0x74,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d, + 0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x46,0x0, + 0x65,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69, + 0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0, + 0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64, + 0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x7a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0, + 0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0, + 0x61,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0xfa,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x63,0x0,0x6c,0x0,0xfa,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4c,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0, + 0x68,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74, + 0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4c,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0xe0,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x56,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x6a,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0xe9, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x67, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73, + 0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x6e,0x0,0xe0,0x0,0x6d,0x0,0x69,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0, + 0xe0,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x26,0x0,0x41,0x0,0x6a,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x45,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f, + 0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x45,0x0,0x26,0x0,0x78, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d, + 0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26, + 0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0, + 0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x61,0x0, + 0x6d,0x0,0x62,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x61,0x0,0x62, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0x61, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0, + 0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45, + 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f, + 0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x46,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0xe9,0x0,0x73, + 0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0xe7, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe0,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x78,0x0,0x61,0x0,0x72,0x0,0x78,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x27,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0, + 0x75,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0, + 0xe0,0x0,0x70,0x0,0x69,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x46,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4e,0x0,0x6f,0x0, + 0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4d,0x0,0xe8,0x0,0x74, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74, + 0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x61, + 0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x45, + 0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0, + 0x75,0x0,0x61,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x34, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0, + 0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x61,0x0,0x6d,0x0, + 0x62,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x27,0x0,0x61,0x0,0x64,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49, + 0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77, + 0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a, + 0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32, + 0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0, + 0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0, + 0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x61,0x0,0x71,0x0, + 0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6c,0x0,0xe7,0x0,0x61,0x0, + 0x64,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48, + 0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63, + 0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x41,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26, + 0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x27, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x72, + 0x0,0xe0,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35, + 0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x65,0x0,0x6d,0x0,0xf2,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x49, + 0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0, + 0x75,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x6a,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6e,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x75,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x65,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6d,0x0, + 0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x55,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x4d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe2,0x0,0x4c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0xe8, + 0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe0, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xd0,0x0,0x41,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x2d,0x0,0x76,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x78,0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x41,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x2d,0x0,0x76,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x69,0x0, + 0x78,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75, + 0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62, + 0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x41, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x75, + 0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0xe0,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x75,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72, + 0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65, + 0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77, + 0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0, + 0x65,0x0,0x6d,0x0,0xf2,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0, + 0xed,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75, + 0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x58, + 0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x78, + 0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70, + 0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x78,0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x27,0x0,0x68,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x27,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x43,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x75,0x0,0x6b, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xe9,0x0,0x73,0x0,0x20, + 0x0,0x61,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0,0x27,0x0,0x61,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0, + 0x66,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26, + 0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20, + 0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30, + 0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xd0,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x20,0x0, + 0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20, + 0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x78, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xef,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x75,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0xb7,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x4c,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0, + 0x70,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0, + 0x78,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65, + 0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x45,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0, + 0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0, + 0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x69,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xe8,0x0, + 0x6e,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0,0x75,0x0,0x6c,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x53,0x0,0x75,0x0,0x70,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x75,0x0,0x6c,0x0,0x73, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74, + 0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x68,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0, + 0x75,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6e,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0, + 0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4a,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x75,0x0,0x20, + 0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x62, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72, + 0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26, + 0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20, + 0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x72,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d, + 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61, + 0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52,0x0,0x65,0x0,0x26,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52, + 0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x74,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0, + 0x65,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x6a,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x78,0x0,0x65,0x0, + 0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x44,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x53,0x0, + 0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0xe0,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20, + 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63, + 0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88, + 0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0xe8,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72, + 0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63, + 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe8,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x41,0x0,0x6a,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x4d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x53,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x47,0x0,0x75,0x0,0x61, + 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x75,0x0,0x61,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70, + 0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70, + 0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f, + 0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0, + 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53, + 0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x74,0x0,0xf2,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0, + 0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0, + 0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0,0x79, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x36,0x0,0x20, + 0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36, + 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0, + 0x29,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x6d,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6d,0x0,0x61, + 0x0,0x74,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x26,0x0,0x61,0x0, + 0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65, + 0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x54,0x0,0x61,0x0, + 0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x66,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4c,0x0, + 0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x78,0x0,0x61,0x0,0x72,0x0, + 0x78,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0xe0,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69, + 0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c, + 0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x96,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0, + 0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0, + 0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0xe0,0x0, + 0x2e,0x0,0x20,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xfa,0x0,0x41,0x0,0x69,0x0,0x78,0x0,0xf2,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0xe8,0x0,0x20,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0xe9,0x0,0x73,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0xe9,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x20,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0xbf,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c, + 0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72, + 0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65, + 0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68, + 0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20, + 0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69, + 0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x78,0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72, + 0x0,0xe0,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0xf3,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0xe0,0x0,0x72,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65, + 0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54, + 0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x54,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4c,0x0,0x27,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x27,0x0,0x61,0x0,0x64,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x47,0x0,0x68,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x76,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0, + 0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x55,0x0,0x73,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0, + 0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74, + 0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46, + 0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48, + 0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x0,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x67, + 0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0xe8,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72, + 0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x56,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x72,0x0,0xe0,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x65,0x0,0x6e,0x0, + 0x76,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x41,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72,0x0,0xe0,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x72,0x0,0xe0,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5c,0x0,0x53,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c, + 0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x61, + 0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49, + 0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0, + 0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/86box_uk-UA.qm + 0x0,0x0,0x94,0xdf, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x33,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0xf,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0x16,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x58,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0xb7,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x86,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x52,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x8d,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xf1,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x53,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb5,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x56,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xb8,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0x1a,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x38,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xf0,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x8a,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0xa8,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x6d,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x2d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x49,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x68,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x62,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x29,0x10,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x7d,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x6a,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x79,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xfd,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xe6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x77,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0xe3,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x2e,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x12,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0xa9,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x57,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x3e,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x77,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xcd,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xef,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0x11,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x19,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xb0,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x2a,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0x3,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xfe,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xeb,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xe4,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x21,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0x93,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0x9d,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0x2c,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0xf5,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0x76,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xaf,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xc6,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0xa3,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x92,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xe7,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x87,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xce,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x41,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x1a,0x5,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xcc,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xe6,0x1,0x39,0xa4,0xce,0x0,0x0,0x5a,0x34,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x19,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x7c,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x87,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x5e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0x72,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xef,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0xdb,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0x36,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0x5,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0xa1,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xb,0x1b,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x20,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xfb,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x27,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x8a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0xd6,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x72,0xf8,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x94,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x8d,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x1e,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xaf,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xb4,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x8d,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0xc3,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0x8d,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x8b,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xc6,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xe9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x69,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xea,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xf2,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xca,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x89,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x84,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x87,0xd3,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0xc,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x6b,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x4e,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x30,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x57,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0xcb,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0x19,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x40,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x7f,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x56,0x52,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x6c,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x63,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x73,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0xb0,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x4a,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x1c,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xd7,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5b,0x19,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x3d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x9a,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x58,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x71,0x16,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0xd4,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x56,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0xc,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0xb,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x75,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x9f,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x5a,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x9c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x83,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0xa7,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0x85,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0x74,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x7c,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x97,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0xb0,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xdd,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x3d,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x8a,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xda,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x4b,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xca,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xbf,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0x6a,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xee,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x65,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x89,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0x92,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0xc6,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x38,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x9d,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xdf,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0x20,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x45,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0x62,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xe8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x35,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0xd4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0x80,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0xa8,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0x91,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0xcb,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xc9,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x58,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xc,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x42,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x83,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x7e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xc9,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xc9,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xd8,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x12,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0x89,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x45,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xd6,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0x9b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xec,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0xe3,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xc3,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x3b,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xd8,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x7b,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x20,0xe,0x6,0x51,0xe6,0x13,0x0,0x0,0x7,0x17,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x24,0x6,0x6c,0xb8,0x3,0x0,0x0,0x81,0xe0,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x1f,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0x89,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x94,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0x57,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0x2f,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xdf,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0xdc,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x36,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0x94,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xfc,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xc8,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x64,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x48,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0xe,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x58,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x4b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0xfa,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x46,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xdb,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x29,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x4e,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x72,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0xa2,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x6d,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0xe9,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xd2,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x7f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0xe3,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xfd,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0x7,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x5e,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0xcb,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x58,0x44,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0xcf,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xef,0x7,0xa4,0x32,0x89,0x0,0x0,0x1e,0xf,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0x9d,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6a,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9a,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x28,0x7,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xa8,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x55,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x9e,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x4f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0x8,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xdb,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5b,0x45,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x7e,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x3c,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x21,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xbb,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xd7,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0x98,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xc1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x97,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0x4b,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xd3,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0xf,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x57,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xf0,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x7a,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x7d,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xd9,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x8b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0xee,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xc9,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0x3,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x55,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x8f,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0xf7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5d,0x13,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0xf,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x67,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x71,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xaf,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x12,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xb3,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xdf,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0xb,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x37,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x74,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xdd,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xd6,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0xdb,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x25,0x9,0xc2,0x33,0xa9,0x0,0x0,0x17,0x9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0xfe,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x51,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xc3,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xf9,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x28,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x55,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xe4,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x9d,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xfe,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x99,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x3b,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0xa6,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0xf4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0xc,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x46,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x9d,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x52,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0x53,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xe3,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x9,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xe8,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x15,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x86,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x47,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x24,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0xb5,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x8e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x97,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa2,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xbc,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xbe,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0x19,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xcc,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x65,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0xa9,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x45,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x71,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xdf,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x4e,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xf9,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x51,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0xc6,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0xa,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0x37,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xe3,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x4b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0x2a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x37,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x3c,0xc,0x42,0x70,0xde,0x0,0x0,0x2a,0x17,0xc,0x48,0x83,0xde, + 0x0,0x0,0x65,0xfb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x97,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x41,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x7e,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x92,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xca,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x19,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xab,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x16,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x96,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0x3d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xb2,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0xae,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x82,0x10,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x23,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0x22,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xf0,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0xb6,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0xba,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x9d,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0xee,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0x1b,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x8d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x19,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x7c,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0xa9,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0x6,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x98,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0xcb,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5e,0x0,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0xc4,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0xa0,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x79,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xf2,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x6c,0xe,0x48,0xfd,0xca,0x0,0x0,0x2b,0x2f,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0xa9,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x5d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0xab,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x4a,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x1c,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x5f,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x6e,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x1d,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x65,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0xad,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xf5,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x63,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x99,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xb6,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0xe0,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x4f,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xf4,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x74,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x79,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x9a,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x4b,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x5f,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0x2,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x27,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x8f,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x55,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x4d,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x93,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0x19,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0x2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x26,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x4c,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xd8,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x89,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x1a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x9a,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xd2,0xf,0xd9,0x8c,0xca,0x0,0x0,0x52,0x4c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0xf,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x89,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xe3,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x4b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x61,0xed,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x3b,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x89,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xd7,0x69,0x0,0x0,0x87, + 0xfd,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x64,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4,0x40, + 0x4,0x56,0x4,0x31,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x30,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3c,0x4,0x30,0x4,0x42, + 0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x35, + 0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b, + 0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x4,0x32,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x41, + 0x4,0x56,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4,0x3c,0x4,0x35, + 0x4,0x3d,0x4,0x42,0x4,0x38,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x56, + 0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x30, + 0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x40, + 0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x2c,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x43,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x35, + 0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x33, + 0x4,0x3b,0x4,0x4f,0x4,0x34,0x4,0x56,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f, + 0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c, + 0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32, + 0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x56,0x4,0x33,0x4,0x43,0x4,0x40, + 0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38, + 0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x4e,0x0,0x20,0x0,0x25,0x0,0x68, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x57,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x4, + 0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4, + 0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x4, + 0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x32,0x0, + 0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x32, + 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x30, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34, + 0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x37, + 0x0,0x35,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32, + 0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d, + 0x4,0x34,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x4,0x1f, + 0x4,0x40,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40, + 0x4,0x30,0x4,0x3c,0x4,0x43,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x4,0x14, + 0x4,0x56,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x26,0x4,0x11,0x4,0x43,0x4,0x40,0x4,0x48,0x4,0x42,0x4,0x38,0x4,0x3d, + 0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x42,0x4,0x56,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4, + 0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3f,0x4,0x30,0x4,0x43,0x4,0x37,0x4, + 0x30,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x42,0x4, + 0x40,0x4,0x30,0x4,0x42,0x4,0x56,0x0,0x20,0x4,0x44,0x4,0x3e,0x4,0x3a,0x4, + 0x43,0x4,0x41,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f, + 0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x26,0x4,0x23,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x34,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65, + 0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x26,0x4,0x17,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4, + 0x32,0x4,0x47,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x4, + 0x3c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26, + 0x4,0x14,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x42, + 0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x4, + 0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x26,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c, + 0x4,0x3e,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f, + 0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x3a,0x4,0x56,0x4,0x3d,0x4,0x35,0x4,0x46, + 0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x26,0x4,0x22,0x4,0x35,0x4,0x3a,0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x4,0x1d,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x20, + 0x4,0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4, + 0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x17,0x4,0x35,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x42,0x4, + 0x56,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x25,0x4,0x3e, + 0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42, + 0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72, + 0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x14,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4, + 0x3c,0x4,0x3e,0x4,0x33,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x26,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x45,0x4,0x3e,0x4,0x32,0x4, + 0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x4f,0x4,0x34,0x4,0x3e,0x4, + 0x3a,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x26,0x4,0x26,0x4,0x56,0x4,0x3b,0x4,0x56,0x4,0x41,0x4,0x3d, + 0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30, + 0x4,0x31,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x26,0x4,0x6,0x4,0x3d,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4, + 0x3b,0x4,0x4c,0x4,0x3e,0x4,0x40,0x4,0x38,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65, + 0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x1a,0x4, + 0x3b,0x4,0x30,0x4,0x32,0x4,0x56,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x40,0x4, + 0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,0x4, + 0x43,0x4,0x54,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x45,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x4,0x1b,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x39,0x4,0x3d, + 0x4,0x38,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x26,0x4,0x1d,0x4,0x3e,0x4,0x41,0x4,0x56,0x4,0x57,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x4,0x12,0x4,0x56,0x4,0x34,0x4, + 0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4, + 0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x4,0x1d,0x4,0x30,0x4,0x39,0x4,0x31,0x4,0x3b,0x4,0x38,0x4, + 0x36,0x4,0x47,0x4,0x38,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x4,0x1d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39, + 0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x4,0x21,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x4,0x1f,0x4,0x30,0x4,0x43, + 0x4,0x37,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x26,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4, + 0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4, + 0x42,0x4,0x40,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4, + 0x3e,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x38,0x4,0x39,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x4,0x17,0x4,0x3d, + 0x4,0x3e,0x4,0x32,0x4,0x43,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30, + 0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x3d, + 0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61, + 0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1f,0x4, + 0x40,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x4,0x12,0x4,0x38,0x4, + 0x34,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x48,0x4, + 0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x4,0x17, + 0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x40, + 0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x32,0x4,0x56, + 0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x4, + 0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x42,0x4,0x43,0x4, + 0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x4,0x1f, + 0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x54, + 0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x46,0x4,0x35,0x0,0x20, + 0x4,0x3b,0x4,0x56,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x41,0x0,0x4c, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x48,0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x4,0x1d,0x4,0x30, + 0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d, + 0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d, + 0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x4,0x12,0x4,0x3a,0x4, + 0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0, + 0x26,0x4,0x1a,0x4,0x32,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x42,0x4, + 0x3d,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x3a,0x4,0x41,0x4,0x35,0x4, + 0x3b,0x4,0x56,0x0,0x20,0x0,0x28,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40,0x4, + 0x35,0x4,0x33,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4, + 0x3d,0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4, + 0x56,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x20,0x4,0x37,0x0, + 0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20, + 0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x26,0x4,0x6,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4, + 0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x3d,0x4, + 0x30,0x4,0x47,0x4,0x3a,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x40,0x4,0x4f,0x4, + 0x34,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4, + 0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61, + 0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x33,0x4,0x3b, + 0x4,0x4f,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56, + 0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x4,0x11,0x4,0x56,0x4,0x3b,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x56, + 0x4,0x34,0x4,0x42,0x4,0x56,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4,0x31,0x0, + 0x20,0x4,0x32,0x4,0x56,0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x28,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35, + 0x4,0x3c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x28,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x4c,0x4, + 0x3e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4, + 0x1d,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x25,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4, + 0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56,0x4,0x48,0x4,0x35,0x0, + 0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x4, + 0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34, + 0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4, + 0x1d,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x4, + 0x3f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56,0x4, + 0x48,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4, + 0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x4,0x1d,0x4,0x30,0x0,0x20,0x0,0x32,0x0,0x25,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56, + 0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e, + 0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x4, + 0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x4,0x13,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x4,0x13,0x4,0x11, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x1c,0x4, + 0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x26,0x4, + 0x56,0x4,0x3b,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x3e,0x4,0x47,0x4,0x38,0x4, + 0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3c,0x4, + 0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4,0x31,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x4,0x13,0x4,0x11,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x4, + 0x13,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8e,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3c,0x4,0x56, + 0x4,0x33,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x36,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e, + 0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x56, + 0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x3b, + 0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38, + 0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x44, + 0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x20,0x4,0x37,0x0,0x20,0x4,0x1f, + 0x4,0x17,0x4,0x23,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x11,0x4,0x43,0x4,0x34, + 0x4,0x4c,0x0,0x20,0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36, + 0x4,0x42,0x4,0x35,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x4,0x3d, + 0x4,0x30,0x4,0x31,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23, + 0x0,0x20,0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4f,0x4,0x33, + 0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x39,0x4,0x3e,0x4,0x33, + 0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30, + 0x4,0x3b,0x4,0x3e,0x4,0x33,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac, + 0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, + 0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e, + 0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73, + 0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69, + 0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73, + 0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x76,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x4,0x21,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0, + 0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x35,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68, + 0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4, + 0x40,0x4,0x3e,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4, + 0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4, + 0x56,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x36,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x21,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x36,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a, + 0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x48,0x4,0x38,0x4,0x40, + 0x4,0x35,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e, + 0x4,0x40,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x4,0x12,0x4,0x41,0x4,0x56,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x4,0x12,0x4,0x41,0x4,0x56,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4, + 0x30,0x4,0x37,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41, + 0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x3,0xf2,0x4,0x15,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4f,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x40,0x4,0x38, + 0x4,0x45,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x0,0x27,0x4,0x4e, + 0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0xa,0x0,0xa,0x4,0x10, + 0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x4,0x12,0x4,0x38,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x30,0x4,0x54, + 0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x0,0x20, + 0x4,0x3b,0x4,0x56,0x4,0x46,0x4,0x35,0x4,0x3d,0x4,0x37,0x4,0x56,0x4,0x54, + 0x4,0x4e,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75, + 0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x40, + 0x4,0x41,0x4,0x56,0x4,0x57,0x0,0x20,0x0,0x32,0x0,0x20,0x4,0x30,0x4,0x31, + 0x4,0x3e,0x0,0x20,0x4,0x31,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x37,0x4,0x3d,0x4,0x56,0x4,0x48,0x4,0x35, + 0x0,0x2e,0x0,0x20,0x4,0x14,0x4,0x3e,0x4,0x34,0x4,0x30,0x4,0x34,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x43,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x44,0x4,0x3e, + 0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x0,0x20,0x4,0x41, + 0x4,0x3c,0x0,0x2e,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x4,0x56,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4, + 0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f, + 0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75, + 0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4, + 0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52, + 0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d, + 0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39, + 0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20, + 0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28, + 0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69, + 0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69, + 0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73, + 0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f, + 0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c, + 0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46, + 0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65, + 0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65, + 0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c, + 0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69, + 0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66, + 0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72, + 0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c, + 0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63, + 0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa, + 0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20, + 0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76, + 0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65, + 0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66, + 0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74, + 0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x4, + 0x12,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,0x4,0x32,0x4,0x3d,0x4, + 0x35,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4, + 0x45,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4, + 0x38,0x4,0x39,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x37,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x98,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,0x4,0x32, + 0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e, + 0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20, + 0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x32, + 0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x4f,0x0,0x20,0x4,0x35,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3c,0x4,0x30, + 0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x38,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72, + 0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1f,0x4, + 0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4, + 0x41,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3d,0x4,0x56,0x0, + 0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x4,0x1f,0x4,0x3e,0x4,0x47,0x4,0x30,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42, + 0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x20,0x4,0x3e, + 0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e, + 0x4,0x3a,0x4,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x14,0x4,0x38, + 0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x4,0x12,0x4, + 0x38,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4, + 0x3e,0x4,0x37,0x4,0x33,0x4,0x3e,0x4,0x40,0x4,0x42,0x4,0x3a,0x4,0x38,0x0, + 0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43, + 0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26, + 0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63, + 0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xf2,0x4,0x12,0x4,0x38, + 0x4,0x31,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x42,0x4,0x38,0x4,0x3f,0x4,0x56, + 0x4,0x32,0x0,0x20,0x4,0x26,0x4,0x1f,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x46,0x4,0x56,0x4,0x54,0x4,0x57,0x0,0x20,0x4,0x41,0x4,0x38, + 0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20, + 0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x30, + 0x0,0x20,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x35, + 0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d, + 0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d, + 0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x3a,0x4,0x3b,0x4,0x4e, + 0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x26, + 0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x37,0x4,0x32,0x4,0x3e,0x4,0x3b, + 0x4,0x4f,0x4,0x54,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x46,0x4,0x35, + 0x4,0x41,0x4,0x3e,0x4,0x40,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x48,0x4,0x3e, + 0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3f,0x4,0x30,0x4,0x34, + 0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x43, + 0x4,0x3c,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x37, + 0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3e, + 0x4,0x4e,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x38, + 0x4,0x3d,0x4,0x41,0x4,0x4c,0x4,0x3a,0x4,0x3e,0x4,0x4e,0x0,0x20,0x4,0x3f, + 0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x4e,0x0,0x2e,0x0,0x20,0x4,0x1e, + 0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x3a,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x38, + 0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20, + 0x4,0x37,0x4,0x56,0x4,0x42,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x38, + 0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x37,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x41, + 0x4,0x43,0x4,0x3c,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x56,0x4,0x41,0x4,0x42, + 0x4,0x4e,0x0,0x20,0x4,0x37,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53, + 0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x3d, + 0x4,0x41,0x4,0x4c,0x4,0x3a,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0,0x20, + 0x4,0x56,0x4,0x3d,0x4,0x48,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x1f,0x4,0x1e, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47, + 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x46,0x4,0x4c,0x4,0x3e, + 0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c, + 0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x44,0x4,0x56, + 0x4,0x46,0x4,0x56,0x4,0x39,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x3c, + 0x4,0x43,0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20, + 0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x3e, + 0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x56, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x0,0x20,0x4,0x3f, + 0x4,0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x43,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x31,0x4,0x43, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x38, + 0x4,0x42,0x4,0x56,0x0,0x20,0x4,0x4f,0x4,0x3a,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x4,0x34,0x4,0x56,0x4,0x39,0x4,0x41,0x4,0x3d,0x4,0x56,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x26,0x4,0x1f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20, + 0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4, + 0x42,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1a,0x4,0x30,0x4,0x40,0x4, + 0x42,0x4,0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x4,0x56,0x4, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72, + 0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1a,0x4,0x30,0x4,0x41,0x4,0x35,0x4,0x42, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x41,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1a,0x4,0x30,0x4, + 0x41,0x4,0x35,0x4,0x42,0x4,0x30,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56, + 0x4,0x17,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x42, + 0x4,0x3d,0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x26,0x4,0x3c, + 0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d, + 0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3f, + 0x4,0x3b,0x4,0x35,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27, + 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, + 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x4,0x1a,0x4,0x30,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x35,0x4, + 0x40,0x4,0x35,0x4,0x32,0x4,0x56,0x4,0x40,0x4,0x4f,0x4,0x42,0x4,0x38,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x4,0x1a,0x4,0x3b,0x4,0x30,0x4,0x46,0x4,0x3d,0x4, + 0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x38,0x4,0x48,0x4,0x35,0x4, + 0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x30,0x4, + 0x45,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x43,0x0,0x20,0x4,0x3a,0x4,0x43,0x4, + 0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x4,0x1d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,0x40,0x4,0x3e, + 0x4,0x34,0x4,0x3e,0x4,0x32,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1a,0x4,0x3e,0x4, + 0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4, + 0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4, + 0x40,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x58,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4, + 0x3b,0x4,0x3e,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3f,0x4, + 0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x42,0x4, + 0x38,0x4,0x3c,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x43,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,0x3a,0x4, + 0x43,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66, + 0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x4,0x1d,0x4,0x35, + 0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4f, + 0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b, + 0x4,0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x32, + 0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x4,0x17,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x38,0x0, + 0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4,0x47,0x4,0x3d,0x4,0x43,0x0,0x20,0x0, + 0x28,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x30,0x4,0x34,0x4, + 0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4,0x47,0x4, + 0x3d,0x4,0x43,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x26,0x4,0x38,0x4,0x3b,0x4,0x56,0x4, + 0x3d,0x4,0x34,0x4,0x40,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x40, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x4,0x3a,0x4, + 0x3b,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17, + 0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4,0x32,0x4,0x47, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x4,0x3c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x14,0x4,0x38,0x4,0x44, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46,0x4,0x56,0x4,0x39,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x3a, + 0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x1e,0x4,0x31,0x4,0x40,0x4, + 0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x43,0x0, + 0x20,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x35,0x4,0x3d,0x4, + 0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b, + 0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x43,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x36, + 0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20, + 0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x4,0x17,0x4,0x30,0x4,0x3d,0x4,0x30,0x4,0x34,0x4,0x42,0x4,0x3e,0x0, + 0x20,0x4,0x32,0x4,0x35,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64, + 0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x3e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x32,0x4,0x38,0x4,0x49,0x4,0x43,0x4,0x32,0x4,0x30, + 0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x4,0x13, + 0x4,0x11,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x14,0x4,0x38,0x4, + 0x41,0x4,0x3f,0x4,0x3b,0x4,0x35,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x4,0x27,0x4,0x38,0x0,0x20,0x4,0x31,0x4,0x30,0x4, + 0x36,0x4,0x30,0x4,0x54,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x38,0x0, + 0x20,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x33,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x45,0x4, + 0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x1d, + 0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x43,0x4,0x32, + 0x4,0x30,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x11,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x48, + 0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a, + 0x4,0x30,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x46,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68, + 0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20, + 0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x4,0x14,0x4,0x38,0x4,0x3d,0x4,0x30,0x4,0x3c,0x4,0x56,0x4,0x47,0x4,0x3d, + 0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3c, + 0x4,0x3f,0x4,0x56,0x4,0x3b,0x4,0x4f,0x4,0x42,0x4,0x3e,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20, + 0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x3d,0x4,0x30,0x4,0x3c,0x4,0x56,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4, + 0x33,0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4, + 0x40,0x4,0x43,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1d,0x4, + 0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x3b,0x4,0x43, + 0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x4,0x1f,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x38,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x12, + 0x4,0x38,0x4,0x45,0x4,0x56,0x4,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x15,0x4, + 0x3a,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x4,0x32,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53, + 0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x11,0x4,0x56,0x4,0x3b,0x4, + 0x4c,0x4,0x48,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x56,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4, + 0x3e,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72, + 0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x4,0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x4, + 0x3d,0x4,0x43,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x42,0x4, + 0x35,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4, + 0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4, + 0x38,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4, + 0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4, + 0x38,0x0,0x20,0x0,0x28,0x4,0x3c,0x4,0x56,0x4,0x41,0x4,0x46,0x4,0x35,0x4, + 0x32,0x4,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x17, + 0x4,0x30,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x43,0x4,0x32,0x4,0x30, + 0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x12,0x4,0x45,0x4,0x56,0x4, + 0x34,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4, + 0x3e,0x4,0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20, + 0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1f,0x4,0x3e,0x4,0x3c, + 0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x4,0x1f,0x4,0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x30, + 0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b, + 0x4,0x56,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x57,0x0,0x20,0x4,0x40, + 0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x4,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a, + 0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x28,0x0,0x26, + 0x4,0x17,0x4,0x30,0x4,0x45,0x4,0x38,0x4,0x41,0x4,0x42,0x0,0x20,0x4,0x32, + 0x4,0x56,0x4,0x34,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41, + 0x4,0x43,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x4,0x12,0x4,0x38,0x4,0x45,0x4,0x56,0x4,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x4,0x12,0x4,0x41,0x4,0x42,0x4,0x30, + 0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32, + 0x4,0x56,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x4f,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x56,0x4,0x3d, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x4,0x14,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4,0x35,0x4,0x40, + 0x0,0x20,0x0,0x46,0x0,0x4d,0x0,0x2d,0x4,0x41,0x4,0x38,0x4,0x3d,0x4,0x42, + 0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68, + 0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4,0x3b,0x4, + 0x3e,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4, + 0x56,0x4,0x30,0x4,0x3b,0x4,0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4, + 0x35,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4, + 0x39,0x4,0x32,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4, + 0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4, + 0x41,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4, + 0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20, + 0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4, + 0x28,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x3a,0x4,0x38,0x4,0x39,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f, + 0x4,0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x24,0x4,0x30, + 0x4,0x39,0x4,0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x6,0x4, + 0x3c,0x0,0x27,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4, + 0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c, + 0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x4,0x1c,0x4,0x35,0x4,0x42,0x4,0x3e,0x4,0x34,0x0,0x20,0x4,0x44, + 0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x56, + 0x4,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x4,0x44,0x4,0x56, + 0x4,0x3a,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x33, + 0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40, + 0x4,0x43,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d, + 0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x14,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x13,0x4,0x3d, + 0x4,0x43,0x4,0x47,0x4,0x3a,0x4,0x56,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x56,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x13,0x4,0x3d,0x4,0x43,0x4,0x47,0x4,0x3a,0x4,0x56,0x0,0x20,0x4, + 0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x0,0x46,0x0,0x6c, + 0x0,0x75,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x0,0x26,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x41,0x4,0x42, + 0x4,0x4f,0x4,0x33,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f, + 0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e, + 0x4,0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x3c, + 0x4,0x43,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x4,0x56, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4, + 0x3e,0x4,0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20, + 0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3c, + 0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x26,0x4,0x3a,0x4,0x3e, + 0x4,0x3d,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30, + 0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4, + 0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x4,0x20,0x4,0x3e,0x4,0x37, + 0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x3d, + 0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x32,0x4,0x38,0x4,0x49,0x4,0x43,0x4,0x32, + 0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x34,0x0,0x20,0x4,0x13,0x4,0x11, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x37,0x4,0x38,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x30,0x4, + 0x31,0x4,0x3e,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x4,0x37,0x0, + 0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x4,0x3e,0x4, + 0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4, + 0x30,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x3c,0x4,0x56,0x4, + 0x3d,0x4,0x3d,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x2c,0x0,0x20,0x4,0x3d,0x4,0x35,0x0, + 0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x3c,0x4, + 0x43,0x4,0x4e,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20, + 0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e, + 0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x16,0x4, + 0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x4, + 0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38, + 0x0,0x20,0x4,0x36,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38, + 0x4,0x45,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x16,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4, + 0x3a,0x4,0x56,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x16, + 0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x56,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x25,0x4,0x3e,0x4,0x3b, + 0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30, + 0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1e,0x4,0x31,0x4,0x3b,0x4, + 0x30,0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4, + 0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4, + 0x3d,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x13, + 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x32,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x12,0x4,0x38,0x4,0x41,0x4, + 0x3e,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4, + 0x31,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26, + 0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x45,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42, + 0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x3d,0x4,0x35,0x4,0x3b,0x4,0x4c, + 0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x40, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x4e,0x4,0x32,0x4,0x30, + 0x4,0x47,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35, + 0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4,0x1a, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37, + 0x4,0x48,0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20, + 0x4,0x3f,0x4,0x30,0x4,0x3c,0x0,0x27,0x4,0x4f,0x4,0x42,0x4,0x56,0x0,0x20, + 0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45, + 0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0, + 0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53, + 0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1d,0x4,0x30,0x4,0x31,0x4, + 0x56,0x4,0x40,0x0,0x20,0x4,0x56,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4, + 0x3a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f, + 0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4, + 0x30,0x4,0x37,0x4,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1f,0x4,0x40,0x4,0x38,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x32,0x4, + 0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x12,0x4, + 0x31,0x4,0x43,0x4,0x34,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4, + 0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1d,0x4, + 0x35,0x4,0x32,0x4,0x56,0x4,0x40,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4, + 0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x3f,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4, + 0x3d,0x4,0x44,0x4,0x56,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4,0x46,0x4, + 0x56,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4, + 0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4, + 0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x32,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4, + 0x3a,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x14,0x4, + 0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x1a,0x4, + 0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x1c,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x4,0x12,0x4,0x35,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x56, + 0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x4,0x17,0x4,0x30,0x4,0x44,0x4,0x56,0x4,0x3a,0x4,0x41,0x4,0x43, + 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37, + 0x4,0x3c,0x4,0x56,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x1c,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x4, + 0x30,0x4,0x31,0x4,0x3e,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4, + 0x34,0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x4,0x3d,0x4,0x56,0x4,0x3a,0x4,0x3e,0x4,0x3b,0x4, + 0x38,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x41,0x4,0x3d,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x3b,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53, + 0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0, + 0x2d,0x4,0x56,0x4,0x39,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0,0x20,0x4,0x3f,0x4, + 0x40,0x4,0x38,0x0,0x2d,0x4,0x56,0x4,0x39,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x4,0x1c,0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x3e,0x4,0x3e, + 0x4,0x3f,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4, + 0x1c,0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4, + 0x3f,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x3c, + 0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f, + 0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1a,0x4,0x3e,0x4,0x3c,0x4,0x3f, + 0x0,0x27,0x4,0x4e,0x4,0x42,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x2,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35, + 0x4,0x3c,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42, + 0x4,0x30,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20, + 0x4,0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f, + 0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37, + 0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x3d, + 0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x4,0x43,0x0,0x20,0x4,0x57,0x4,0x57,0x0,0x20,0x4,0x1f,0x4,0x17, + 0x4,0x23,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30, + 0x4,0x3b,0x4,0x3e,0x4,0x37,0x4,0x56,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35, + 0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f, + 0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42, + 0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73, + 0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48, + 0x4,0x38,0x4,0x3d,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x21,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa8,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4, + 0x3e,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x4c,0x0, + 0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x42,0x4, + 0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x0, + 0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x35,0x4,0x32,0x4, + 0x35,0x0,0x20,0x4,0x37,0x0,0x27,0x4,0x54,0x4,0x34,0x4,0x3d,0x4,0x30,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x3c,0x4, + 0x56,0x4,0x41,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x37,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x4,0x1f,0x4, + 0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x39,0x4, + 0x42,0x4,0x35,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0, + 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x54,0x0,0x20,0x4, + 0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x38,0x4, + 0x3c,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x47,0x4,0x38,0x4, + 0x42,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x4,0x1f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x35, + 0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4,0x44, + 0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40, + 0x4,0x56,0x4,0x33,0x4,0x30,0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f, + 0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b, + 0x4,0x3e,0x4,0x33,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x4,0x38,0x4,0x39, + 0x0,0x20,0x4,0x54,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43, + 0x4,0x3f,0x4,0x3d,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x43,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4, + 0x1f,0x4,0x30,0x4,0x3c,0x0,0x27,0x4,0x4f,0x4,0x42,0x4,0x4c,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1c,0x4,0x3e,0x4,0x3d,0x4,0x56, + 0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x3f, + 0x4,0x3b,0x4,0x4f,0x4,0x47,0x4,0x3e,0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x40, + 0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x4,0x56,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73, + 0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x4,0x27,0x4,0x43,0x4,0x42,0x4,0x3b,0x4,0x38,0x4,0x32, + 0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x38,0x4,0x48, + 0x4,0x56,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f, + 0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x1c,0x4,0x38,0x4, + 0x48,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x4,0x1c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x1c,0x4,0x35,0x4,0x40,0x4,0x35, + 0x4,0x36,0x4,0x35,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x30,0x4,0x34, + 0x4,0x30,0x4,0x3f,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4, + 0x35,0x4,0x36,0x4,0x56,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1d,0x4,0x3e,0x4,0x32,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1f,0x4, + 0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x57,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4, + 0x37,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x56,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,0x4,0x17,0x4,0x23,0x0, + 0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x39,0x4, + 0x34,0x4,0x35,0x4,0x3d,0x4,0x56,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x1d,0x4,0x56,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x28,0x4,0x31,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x48,0x0,0x20, + 0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x4,0x12,0x4,0x38,0x4,0x3c,0x4,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x4,0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xb4,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4, + 0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4, + 0x46,0x4,0x56,0x4,0x30,0x4,0x3b,0x4,0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4, + 0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0, + 0x29,0x0,0x2e,0x0,0x20,0x4,0x11,0x4,0x43,0x4,0x34,0x4,0x4c,0x0,0x20,0x4, + 0x3b,0x4,0x30,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x32,0x4, + 0x38,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,0x4, + 0x32,0x4,0x43,0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x3d,0x4, + 0x48,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4, + 0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x28,0x4,0x35,0x4,0x39,0x4,0x34, + 0x4,0x35,0x4,0x40,0x4,0x38,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4, + 0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x38,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x6,0x4,0x3d,0x4,0x48, + 0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x44,0x4,0x35, + 0x4,0x40,0x4,0x56,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x6,0x4,0x3d, + 0x4,0x48,0x4,0x56,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,0x56,0x4,0x3c,0x4,0x3d, + 0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x2d,0x4,0x3e,0x4,0x57, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x30, + 0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x39,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4, + 0x20,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x20,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54, + 0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x50,0x0, + 0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4, + 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4, + 0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4, + 0x4c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4, + 0x42,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4, + 0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4, + 0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x4,0x22,0x4,0x38,0x4, + 0x3c,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x56,0x0,0x20,0x4, + 0x3c,0x4,0x56,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x31,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x4,0x3a,0x4,0x56,0x4,0x32,0x4,0x41,0x4,0x4c,0x4,0x3a,0x4, + 0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x34,0x4, + 0x3e,0x4,0x47,0x4,0x56,0x4,0x40,0x4,0x3d,0x4,0x4c,0x4,0x3e,0x4,0x33,0x4, + 0x3e,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32,0x0, + 0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x56,0x4,0x32,0x4, + 0x3f,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x4e,0x4,0x42,0x4,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e, + 0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d, + 0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4, + 0x1f,0x4,0x40,0x4,0x38,0x4,0x37,0x4,0x43,0x4,0x3f,0x4,0x38,0x4,0x3d,0x4, + 0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4, + 0x3d,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x22,0x4, + 0x3e,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x4,0x12,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x56,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x3b,0x4,0x4c,0x4, + 0x3d,0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x3c,0x0,0x27,0x4,0x4f,0x0,0x20,0x4, + 0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x4,0x1f,0x4,0x3e,0x4,0x40,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x4,0x38,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x38,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1d,0x4,0x30,0x4, + 0x42,0x4,0x38,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x38,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1d, + 0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x38, + 0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x70,0x4,0x1d,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4,0x3d,0x4,0x56,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0, + 0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4, + 0x35,0x4,0x40,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4, + 0x43,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3d,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x7c,0x4,0x1d,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4, + 0x3d,0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0,0x20,0x4, + 0x41,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x3d,0x4,0x4e,0x0,0x20,0x4, + 0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3c,0x4, + 0x38,0x4,0x48,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x4,0x31,0x0, + 0x20,0x4,0x37,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4, + 0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73, + 0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c, + 0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x4,0x1d,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4,0x3d, + 0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x4,0x31,0x0,0x20, + 0x4,0x37,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4,0x42, + 0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20, + 0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x35,0x4,0x41, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x4,0x27,0x4,0x35,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x38, + 0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b, + 0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75, + 0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x30,0x4,0x3c,0x0,0x27, + 0x4,0x4f,0x4,0x42,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e, + 0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x56,0x0,0x20,0x4,0x41, + 0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x49,0x4,0x35, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x4,0x3a,0x4,0x3e,0x4,0x3b,0x4, + 0x4c,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x50, + 0x0,0x4d,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f, + 0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52, + 0x0,0x41,0x0,0x57,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x26,0x4,0x20,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4, + 0x40,0x4,0x38,0x4,0x3d,0x4,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x76,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4, + 0x31,0x4,0x43,0x4,0x34,0x4,0x4c,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x40,0x4, + 0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x38,0x0, + 0x20,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x44,0x4, + 0x3e,0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x41,0x4, + 0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,0x4,0x35,0x4,0x40,0x4, + 0x35,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4, + 0x36,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x17,0x4,0x31,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x33,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x68,0x4,0x17,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x33,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x46,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x4f,0x4, + 0x3a,0x0,0x20,0x0,0x26,0x4,0x33,0x4,0x3b,0x4,0x3e,0x4,0x31,0x4,0x30,0x4, + 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x37,0x4,0x30,0x0,0x20,0x4, + 0x37,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4,0x32,0x4,0x47,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x4,0x3c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4, + 0x40,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6e,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x56,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x56,0x4,0x30,0x0,0x2d, + 0x4,0x37,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d, + 0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x37,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x31, + 0x4,0x3e,0x4,0x47,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x40, + 0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x56,0x4,0x57,0x0,0x20, + 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x38, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x35,0x4, + 0x40,0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x31,0x4,0x30,0x4,0x42,0x4, + 0x4c,0x4,0x3a,0x4,0x56,0x4,0x32,0x4,0x41,0x4,0x4c,0x4,0x3a,0x4,0x38,0x4, + 0x39,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4, + 0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4, + 0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4, + 0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4, + 0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4, + 0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4, + 0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x4,0x1d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x3c, + 0x4,0x56,0x4,0x40,0x0,0x20,0x0,0x28,0x4,0x1c,0x4,0x11,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x1f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x1c,0x4,0x30,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x4c,0x4,0x3a,0x4,0x56,0x0,0x20,0x4,0x31,0x4,0x3b, + 0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x4,0x1a,0x4,0x11,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43, + 0x4,0x3a,0x4,0x43,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,0x4, + 0x3e,0x4,0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0, + 0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x32,0x4,0x43, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x32, + 0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30, + 0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17, + 0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x4,0x12,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x4,0x38, + 0x0,0x20,0x4,0x33,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e, + 0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x3a,0x4,0x3d,0x4,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69, + 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x26,0x4,0x12,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4, + 0x40,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x4,0x28,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x3a,0x4,0x56,0x4, + 0x41,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4, + 0x28,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x3a,0x4,0x56,0x4,0x41,0x4,0x42,0x4, + 0x4c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1e, + 0x4,0x3a,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x32,0x0,0x2d,0x4, + 0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x34,0x0, + 0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4,0x30, + 0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x36,0x0,0x2d, + 0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42, + 0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74, + 0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, + 0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x38,0x0,0x2d,0x4, + 0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b, + 0x4,0x35,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x35, + 0x4,0x40,0x4,0x45,0x4,0x3d,0x4,0x56,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x17,0x4,0x40,0x4, + 0x3e,0x4,0x31,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x26,0x4,0x37,0x4, + 0x3d,0x4,0x56,0x4,0x3c,0x4,0x3e,0x4,0x3a,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65, + 0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x26,0x4,0x56,0x4,0x3b,0x4, + 0x4c,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x0,0x26,0x4,0x47,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x3e,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x22,0x4, + 0x40,0x4,0x35,0x4,0x42,0x4,0x38,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44, + 0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4, + 0x56,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x0, + 0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x56,0x0,0x20,0x4, + 0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3c,0x4,0x56,0x4, + 0x3d,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4, + 0x3d,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4,0x35,0x4,0x40,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63, + 0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x9a,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x31,0x4, + 0x43,0x4,0x34,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x30,0x4,0x3d,0x4,0x3e,0x0, + 0x2e,0x0,0x20,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,0x4, + 0x32,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4, + 0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0, + 0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x41,0x4, + 0x42,0x4,0x3e,0x4,0x32,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0, + 0x20,0x4,0x39,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x2,0x2c,0x4,0x26,0x4,0x35,0x0,0x20,0x4,0x3c,0x4, + 0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4,0x30,0x4, + 0x47,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0, + 0x20,0x4,0x31,0x4,0x30,0x4,0x42,0x4,0x4c,0x4,0x3a,0x4,0x56,0x4,0x32,0x4, + 0x41,0x4,0x4c,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x32,0x0,0x20,0x4, + 0x37,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x3f,0x4,0x56,0x4,0x41,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x42,0x4, + 0x3e,0x4,0x33,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x0,0x20,0x4, + 0x31,0x4,0x43,0x4,0x3b,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x32,0x4, + 0x3e,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x38,0x4, + 0x44,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46,0x4,0x56,0x4,0x39,0x4, + 0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x26,0x4, + 0x35,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x3a,0x4,0x3e,0x4,0x36,0x0,0x20,0x4, + 0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4, + 0x42,0x4,0x38,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x4, + 0x49,0x4,0x3e,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x37,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x35,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x56,0x4,0x49,0x4, + 0x35,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0,0x20,0x4, + 0x41,0x4,0x3a,0x4,0x3e,0x4,0x3f,0x4,0x56,0x4,0x39,0x4,0x3e,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0, + 0x20,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x32,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4, + 0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x42,0x4, + 0x32,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,0x46,0x4, + 0x35,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x0, + 0xa,0x0,0x20,0x0,0xa,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x45,0x4,0x3e,0x4, + 0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3f,0x4, + 0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x42,0x4, + 0x38,0x4,0x3c,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x56,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,0x3a,0x4, + 0x38,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x4,0x26,0x4,0x35,0x0,0x20,0x4,0x3f, + 0x4,0x40,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x0,0x20, + 0x4,0x34,0x4,0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34, + 0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35, + 0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x38, + 0x0,0x20,0x4,0x35,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x32, + 0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48, + 0x4,0x38,0x4,0x3d,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4, + 0x35,0x4,0x3c,0x4,0x30,0x0,0x20,0x4,0x43,0x4,0x3f,0x4,0x40,0x4,0x30,0x4, + 0x32,0x4,0x3b,0x4,0x56,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x3c,0x0,0x20,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x21, + 0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4,0x56,0x4,0x37, + 0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x41, + 0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65, + 0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x22,0x4,0x43,0x4, + 0x40,0x4,0x31,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54, + 0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x22,0x4,0x43,0x4,0x40,0x4,0x31,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x4, + 0x39,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x33,0x4,0x38,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x22,0x4, + 0x38,0x4,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x22,0x4,0x38, + 0x4,0x3f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20, + 0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40, + 0x4,0x38,0x4,0x3c,0x4,0x43,0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x1d,0x4, + 0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0, + 0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b,0x4, + 0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0, + 0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x4,0x1d,0x4,0x35,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x56, + 0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b,0x4,0x56,0x4,0x37, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x2c,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x31,0x4,0x3d,0x4,0x3e,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32, + 0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x4,0x1d,0x4,0x35,0x4, + 0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4, + 0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4, + 0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4, + 0x3a,0x4,0x3e,0x4,0x40,0x4,0x4e,0x4,0x32,0x4,0x30,0x4,0x47,0x4,0x56,0x0, + 0x20,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4,0x32,0x4,0x56,0x4,0x30,0x4,0x42,0x4, + 0x43,0x4,0x40,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20, + 0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4, + 0x32,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x47,0x4,0x38,0x4, + 0x42,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4, + 0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x37,0x4, + 0x30,0x4,0x40,0x4,0x40,0x4,0x35,0x4,0x54,0x4,0x41,0x4,0x42,0x4,0x40,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x35,0x4, + 0x3e,0x4,0x31,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4, + 0x35,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x41,0x0,0x57,0x0,0x29,0x0,0x20,0x4, + 0x32,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61, + 0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4, + 0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4, + 0x41,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30, + 0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20, + 0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x3c,0x4,0x43, + 0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54, + 0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x35,0x4, + 0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73, + 0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x38, + 0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xec,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e, + 0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x22,0x0,0x25, + 0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x34,0x4,0x3e, + 0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x47, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x3d,0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x20,0x4,0x57, + 0x4,0x57,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x37,0x4,0x56, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x4,0x1f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41, + 0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x56, + 0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x43, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4, + 0x12,0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x40,0x4, + 0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x4e, + 0x4,0x32,0x4,0x30,0x4,0x47,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x26,0x4,0x38,0x4,0x3a,0x4,0x3b, + 0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x47,0x4,0x56,0x4,0x3a,0x4,0x43,0x4,0x32, + 0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1b,0x4,0x30,0x4, + 0x41,0x4,0x3a,0x4,0x30,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4, + 0x3e,0x4,0x41,0x4,0x38,0x4,0x3c,0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x4,0x28,0x4,0x38,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e, + 0x4,0x40,0x4,0x4e,0x4,0x32,0x4,0x30,0x4,0x47,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x4, + 0x48,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x48,0x4,0x38,0x4,0x39,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4, + 0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x43,0x4,0x54,0x4,0x42,0x4,0x35,0x0, + 0x20,0x4,0x3d,0x4,0x35,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4, + 0x38,0x4,0x3c,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x43,0x0,0x20,0x4, + 0x3a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x56,0x4,0x33,0x4,0x43,0x4,0x40,0x4, + 0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + +}; + +static const unsigned char qt_resource_name[] = { + // 86box_sl-SI.qm + 0x0,0xe, + 0x6,0xa,0x86,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x73,0x0,0x6c,0x0,0x2d,0x0,0x53,0x0,0x49,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ja-JP.qm + 0x0,0xe, + 0xd,0x32,0xff,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x6a,0x0,0x61,0x0,0x2d,0x0,0x4a,0x0,0x50,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_tr-TR.qm + 0x0,0xe, + 0xc,0x4,0x96,0xfd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x74,0x0,0x72,0x0,0x2d,0x0,0x54,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_zh-TW.qm + 0x0,0xe, + 0x2,0x4,0x65,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x7a,0x0,0x68,0x0,0x2d,0x0,0x54,0x0,0x57,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_en-GB.qm + 0x0,0xe, + 0x8,0x36,0x90,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x47,0x0,0x42,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_de-DE.qm + 0x0,0xe, + 0x1,0x35,0xc0,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x64,0x0,0x65,0x0,0x2d,0x0,0x44,0x0,0x45,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_zh-CN.qm + 0x0,0xe, + 0x2,0x3d,0xd5,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x7a,0x0,0x68,0x0,0x2d,0x0,0x43,0x0,0x4e,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_fr-FR.qm + 0x0,0xe, + 0xc,0x36,0x90,0x3d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x66,0x0,0x72,0x0,0x2d,0x0,0x46,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_en-US.qm + 0x0,0xe, + 0x8,0x7,0xa0,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x55,0x0,0x53,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_pt-PT.qm + 0x0,0xe, + 0xe,0x8,0xb7,0x7d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x50,0x0,0x54,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_hr-HR.qm + 0x0,0xe, + 0xc,0x30,0x90,0x7d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x68,0x0,0x72,0x0,0x2d,0x0,0x48,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ru-RU.qm + 0x0,0xe, + 0x1,0xa,0xc6,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x72,0x0,0x75,0x0,0x2d,0x0,0x52,0x0,0x55,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ko-KR.qm + 0x0,0xe, + 0xb,0x4d,0x9e,0x5d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x6b,0x0,0x6f,0x0,0x2d,0x0,0x4b,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_fi-FI.qm + 0x0,0xe, + 0x5,0x37,0x80,0x1d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x66,0x0,0x69,0x0,0x2d,0x0,0x46,0x0,0x49,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_sk-SK.qm + 0x0,0xe, + 0x7,0xa,0x26,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x73,0x0,0x6b,0x0,0x2d,0x0,0x53,0x0,0x4b,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_it-IT.qm + 0x0,0xe, + 0xe,0x33,0xbf,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x69,0x0,0x74,0x0,0x2d,0x0,0x49,0x0,0x54,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_es-ES.qm + 0x0,0xe, + 0xf,0x37,0xa0,0x1d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x65,0x0,0x73,0x0,0x2d,0x0,0x45,0x0,0x53,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_cs-CZ.qm + 0x0,0xe, + 0xf,0x35,0x10,0xdd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x63,0x0,0x73,0x0,0x2d,0x0,0x43,0x0,0x5a,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_hu-HU.qm + 0x0,0xe, + 0x1,0x30,0xc0,0x5d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x68,0x0,0x75,0x0,0x2d,0x0,0x48,0x0,0x55,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_pt-BR.qm + 0x0,0xe, + 0xe,0x3a,0x97,0x7d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x42,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_pl-PL.qm + 0x0,0xe, + 0x6,0x9,0x37,0x5d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x70,0x0,0x6c,0x0,0x2d,0x0,0x50,0x0,0x4c,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ca-ES.qm + 0x0,0xe, + 0xd,0x37,0xa0,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x63,0x0,0x61,0x0,0x2d,0x0,0x45,0x0,0x53,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_uk-UA.qm + 0x0,0xe, + 0x7,0x5,0x6,0xfd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x75,0x0,0x6b,0x0,0x2d,0x0,0x55,0x0,0x41,0x0,0x2e,0x0,0x71,0x0,0x6d, + +}; + +static const unsigned char qt_resource_struct[] = { + // : + 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/86box_ru-RU.qm + 0x0,0x0,0x1,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xed,0xcb, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0xa4, + // :/86box_hu-HU.qm + 0x0,0x0,0x2,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xdb,0xb2, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x77, + // :/86box_de-DE.qm + 0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x98,0x35, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x72, + // :/86box_zh-TW.qm + 0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9c,0xb1, +0x0,0x0,0x1,0x8b,0x4a,0x97,0x91,0x45, + // :/86box_zh-CN.qm + 0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x31,0x84, +0x0,0x0,0x1,0x8b,0x4a,0x97,0x91,0x45, + // :/86box_fi-FI.qm + 0x0,0x0,0x1,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfb,0x69, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x75, + // :/86box_pl-PL.qm + 0x0,0x0,0x2,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x6,0x6a, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x91, + // :/86box_sl-SI.qm + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0xa6, + // :/86box_uk-UA.qm + 0x0,0x0,0x2,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xc,0x2e,0xd6, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0xab, + // :/86box_sk-SK.qm + 0x0,0x0,0x1,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x8c,0xf0, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0xa6, + // :/86box_en-US.qm + 0x0,0x0,0x1,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x38,0xb8, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x75, + // :/86box_en-GB.qm + 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xc,0xda, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x74, + // :/86box_ko-KR.qm + 0x0,0x0,0x1,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x82,0xee, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x8d, + // :/86box_tr-TR.qm + 0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb,0x18, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0xa9, + // :/86box_hr-HR.qm + 0x0,0x0,0x1,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x5a,0x50, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x76, + // :/86box_fr-FR.qm + 0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa1,0x99, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x77, + // :/86box_ja-JP.qm + 0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x92,0x63, +0x0,0x0,0x1,0x8b,0x4a,0x97,0x91,0x45, + // :/86box_ca-ES.qm + 0x0,0x0,0x2,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x9a,0x3f, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x74, + // :/86box_pt-PT.qm + 0x0,0x0,0x1,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc4,0x11, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0xa1, + // :/86box_it-IT.qm + 0x0,0x0,0x1,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x1f,0xcd, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x78, + // :/86box_pt-BR.qm + 0x0,0x0,0x2,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x70,0x21, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x9a, + // :/86box_cs-CZ.qm + 0x0,0x0,0x2,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x49,0xe7, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x6d, + // :/86box_es-ES.qm + 0x0,0x0,0x2,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xb4,0xba, +0x0,0x0,0x1,0x8b,0x2a,0xef,0x34,0x74, + +}; + +#ifdef QT_NAMESPACE +# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name +# define QT_RCC_MANGLE_NAMESPACE0(x) x +# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b +# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) +# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ + QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) +#else +# define QT_RCC_PREPEND_NAMESPACE(name) name +# define QT_RCC_MANGLE_NAMESPACE(name) name +#endif + +#ifdef QT_NAMESPACE +namespace QT_NAMESPACE { +#endif + +bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); +bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); + +#ifdef QT_NAMESPACE +} +#endif + +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_translations)(); +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_translations)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_translations)(); +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_translations)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +namespace { + struct initializer { + initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_translations)(); } + ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_translations)(); } + } dummy; +} diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp new file mode 100644 index 000000000..55acc728b --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp @@ -0,0 +1,153 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_d3d9renderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_d3d9renderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_d3d9renderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_D3D9Renderer_t { + QByteArrayData data[4]; + char stringdata0[32]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_D3D9Renderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_D3D9Renderer_t qt_meta_stringdata_D3D9Renderer = { + { +QT_MOC_LITERAL(0, 0, 12), // "D3D9Renderer" +QT_MOC_LITERAL(1, 13, 11), // "initialized" +QT_MOC_LITERAL(2, 25, 0), // "" +QT_MOC_LITERAL(3, 26, 5) // "error" + + }, + "D3D9Renderer\0initialized\0\0error" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_D3D9Renderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 2, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 24, 2, 0x06 /* Public */, + 3, 1, 25, 2, 0x06 /* Public */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, QMetaType::QString, 2, + + 0 // eod +}; + +void D3D9Renderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->initialized(); break; + case 1: _t->error((*reinterpret_cast< QString(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (D3D9Renderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&D3D9Renderer::initialized)) { + *result = 0; + return; + } + } + { + using _t = void (D3D9Renderer::*)(QString ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&D3D9Renderer::error)) { + *result = 1; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject D3D9Renderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_D3D9Renderer.data, + qt_meta_data_D3D9Renderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *D3D9Renderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *D3D9Renderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_D3D9Renderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QWidget::qt_metacast(_clname); +} + +int D3D9Renderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = -1; + _id -= 2; + } + return _id; +} + +// SIGNAL 0 +void D3D9Renderer::initialized() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void D3D9Renderer::error(QString _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp.d new file mode 100644 index 000000000..974c0e65c --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp.d @@ -0,0 +1,439 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/d3d9.h \ + C:/msys64/mingw32/include/d3d9caps.h \ + C:/msys64/mingw32/include/d3d9types.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp new file mode 100644 index 000000000..261ab2418 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_deviceconfig.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_deviceconfig.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_deviceconfig.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_DeviceConfig_t { + QByteArrayData data[1]; + char stringdata0[13]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_DeviceConfig_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_DeviceConfig_t qt_meta_stringdata_DeviceConfig = { + { +QT_MOC_LITERAL(0, 0, 12) // "DeviceConfig" + + }, + "DeviceConfig" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_DeviceConfig[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void DeviceConfig::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject DeviceConfig::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_DeviceConfig.data, + qt_meta_data_DeviceConfig, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *DeviceConfig::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *DeviceConfig::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_DeviceConfig.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int DeviceConfig::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp.d new file mode 100644 index 000000000..bd7800719 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp new file mode 100644 index 000000000..6a014a559 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp @@ -0,0 +1,169 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_filefield.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_filefield.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_filefield.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_FileField_t { + QByteArrayData data[7]; + char stringdata0[80]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_FileField_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_FileField_t qt_meta_stringdata_FileField = { + { +QT_MOC_LITERAL(0, 0, 9), // "FileField" +QT_MOC_LITERAL(1, 10, 12), // "fileSelected" +QT_MOC_LITERAL(2, 23, 0), // "" +QT_MOC_LITERAL(3, 24, 8), // "fileName" +QT_MOC_LITERAL(4, 33, 8), // "precheck" +QT_MOC_LITERAL(5, 42, 15), // "fileTextEntered" +QT_MOC_LITERAL(6, 58, 21) // "on_pushButton_clicked" + + }, + "FileField\0fileSelected\0\0fileName\0" + "precheck\0fileTextEntered\0on_pushButton_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_FileField[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 4, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 2, 39, 2, 0x06 /* Public */, + 1, 1, 44, 2, 0x26 /* Public | MethodCloned */, + 5, 2, 47, 2, 0x06 /* Public */, + 5, 1, 52, 2, 0x26 /* Public | MethodCloned */, + + // slots: name, argc, parameters, tag, flags + 6, 0, 55, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::QString, QMetaType::Bool, 3, 4, + QMetaType::Void, QMetaType::QString, 3, + QMetaType::Void, QMetaType::QString, QMetaType::Bool, 3, 4, + QMetaType::Void, QMetaType::QString, 3, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void FileField::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->fileSelected((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 1: _t->fileSelected((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 2: _t->fileTextEntered((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 3: _t->fileTextEntered((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 4: _t->on_pushButton_clicked(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (FileField::*)(const QString & , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&FileField::fileSelected)) { + *result = 0; + return; + } + } + { + using _t = void (FileField::*)(const QString & , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&FileField::fileTextEntered)) { + *result = 2; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject FileField::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_FileField.data, + qt_meta_data_FileField, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *FileField::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *FileField::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_FileField.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int FileField::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + *reinterpret_cast(_a[0]) = -1; + _id -= 5; + } + return _id; +} + +// SIGNAL 0 +void FileField::fileSelected(const QString & _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 2 +void FileField::fileTextEntered(const QString & _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 2, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp.d new file mode 100644 index 000000000..b6d530409 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp new file mode 100644 index 000000000..196b4f6aa --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp @@ -0,0 +1,192 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_harddiskdialog.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_harddiskdialog.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_harddiskdialog.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_HarddiskDialog_t { + QByteArrayData data[18]; + char stringdata0[332]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_HarddiskDialog_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_HarddiskDialog_t qt_meta_stringdata_HarddiskDialog = { + { +QT_MOC_LITERAL(0, 0, 14), // "HarddiskDialog" +QT_MOC_LITERAL(1, 15, 12), // "fileProgress" +QT_MOC_LITERAL(2, 28, 0), // "" +QT_MOC_LITERAL(3, 29, 1), // "i" +QT_MOC_LITERAL(4, 31, 6), // "accept" +QT_MOC_LITERAL(5, 38, 35), // "on_comboBoxType_currentIndexC..." +QT_MOC_LITERAL(6, 74, 5), // "index" +QT_MOC_LITERAL(7, 80, 29), // "on_lineEditSectors_textEdited" +QT_MOC_LITERAL(8, 110, 4), // "arg1" +QT_MOC_LITERAL(9, 115, 27), // "on_lineEditHeads_textEdited" +QT_MOC_LITERAL(10, 143, 31), // "on_lineEditCylinders_textEdited" +QT_MOC_LITERAL(11, 175, 26), // "on_lineEditSize_textEdited" +QT_MOC_LITERAL(12, 202, 34), // "on_comboBoxBus_currentIndexCh..." +QT_MOC_LITERAL(13, 237, 37), // "on_comboBoxFormat_currentInde..." +QT_MOC_LITERAL(14, 275, 15), // "onCreateNewFile" +QT_MOC_LITERAL(15, 291, 22), // "onExistingFileSelected" +QT_MOC_LITERAL(16, 314, 8), // "fileName" +QT_MOC_LITERAL(17, 323, 8) // "precheck" + + }, + "HarddiskDialog\0fileProgress\0\0i\0accept\0" + "on_comboBoxType_currentIndexChanged\0" + "index\0on_lineEditSectors_textEdited\0" + "arg1\0on_lineEditHeads_textEdited\0" + "on_lineEditCylinders_textEdited\0" + "on_lineEditSize_textEdited\0" + "on_comboBoxBus_currentIndexChanged\0" + "on_comboBoxFormat_currentIndexChanged\0" + "onCreateNewFile\0onExistingFileSelected\0" + "fileName\0precheck" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_HarddiskDialog[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 11, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 69, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 0, 72, 2, 0x0a /* Public */, + 5, 1, 73, 2, 0x08 /* Private */, + 7, 1, 76, 2, 0x08 /* Private */, + 9, 1, 79, 2, 0x08 /* Private */, + 10, 1, 82, 2, 0x08 /* Private */, + 11, 1, 85, 2, 0x08 /* Private */, + 12, 1, 88, 2, 0x08 /* Private */, + 13, 1, 91, 2, 0x08 /* Private */, + 14, 0, 94, 2, 0x08 /* Private */, + 15, 2, 95, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, 3, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::QString, QMetaType::Bool, 16, 17, + + 0 // eod +}; + +void HarddiskDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->fileProgress((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->accept(); break; + case 2: _t->on_comboBoxType_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_lineEditSectors_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 4: _t->on_lineEditHeads_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 5: _t->on_lineEditCylinders_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 6: _t->on_lineEditSize_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 7: _t->on_comboBoxBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->on_comboBoxFormat_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->onCreateNewFile(); break; + case 10: _t->onExistingFileSelected((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (HarddiskDialog::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&HarddiskDialog::fileProgress)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject HarddiskDialog::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_HarddiskDialog.data, + qt_meta_data_HarddiskDialog, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *HarddiskDialog::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *HarddiskDialog::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_HarddiskDialog.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int HarddiskDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 11) + qt_static_metacall(this, _c, _id, _a); + _id -= 11; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 11) + *reinterpret_cast(_a[0]) = -1; + _id -= 11; + } + return _id; +} + +// SIGNAL 0 +void HarddiskDialog::fileProgress(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp.d new file mode 100644 index 000000000..7a9c1dcf1 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp new file mode 100644 index 000000000..73ec298ec --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp @@ -0,0 +1,128 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_hardwarerenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_hardwarerenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_hardwarerenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_HardwareRenderer_t { + QByteArrayData data[8]; + char stringdata0[41]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_HardwareRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_HardwareRenderer_t qt_meta_stringdata_HardwareRenderer = { + { +QT_MOC_LITERAL(0, 0, 16), // "HardwareRenderer" +QT_MOC_LITERAL(1, 17, 6), // "onBlit" +QT_MOC_LITERAL(2, 24, 0), // "" +QT_MOC_LITERAL(3, 25, 7), // "buf_idx" +QT_MOC_LITERAL(4, 33, 1), // "x" +QT_MOC_LITERAL(5, 35, 1), // "y" +QT_MOC_LITERAL(6, 37, 1), // "w" +QT_MOC_LITERAL(7, 39, 1) // "h" + + }, + "HardwareRenderer\0onBlit\0\0buf_idx\0x\0y\0" + "w\0h" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_HardwareRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 5, 19, 2, 0x0a /* Public */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 3, 4, 5, 6, 7, + + 0 // eod +}; + +void HardwareRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject HardwareRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_HardwareRenderer.data, + qt_meta_data_HardwareRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *HardwareRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *HardwareRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_HardwareRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QOpenGLFunctions")) + return static_cast< QOpenGLFunctions*>(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QOpenGLWindow::qt_metacast(_clname); +} + +int HardwareRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QOpenGLWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp.d new file mode 100644 index 000000000..f059eb52c --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp.d @@ -0,0 +1,505 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/GL/gl.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/mutex \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMargins \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/QScopedPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/QSharedDataPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreapplication.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qeventloop.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qt_windows.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/QKeyEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/QMatrix3x3 \ + C:/msys64/mingw32/qt5-static/include/QtGui/QMatrix4x4 \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLBuffer \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLContext \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLFunctions \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLPixelTransferOptions \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShader \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLTexture \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLTextureBlitter \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLVertexArrayObject \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPaintDevice \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPaintDeviceWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPainter \ + C:/msys64/mingw32/qt5-static/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw32/qt5-static/include/QtGui/QWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qguiapplication.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qinputmethod.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengl.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglbuffer.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglpixeltransferoptions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengltexture.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengltextureblitter.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglvertexarrayobject.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevicewindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpainter.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpen.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qquaternion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurface.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtextoption.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector3d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector4d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QApplication \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qapplication.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp new file mode 100644 index 000000000..e41f35af9 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp @@ -0,0 +1,121 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_joystickconfiguration.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_joystickconfiguration.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_joystickconfiguration.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_JoystickConfiguration_t { + QByteArrayData data[4]; + char stringdata0[67]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_JoystickConfiguration_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_JoystickConfiguration_t qt_meta_stringdata_JoystickConfiguration = { + { +QT_MOC_LITERAL(0, 0, 21), // "JoystickConfiguration" +QT_MOC_LITERAL(1, 22, 37), // "on_comboBoxDevice_currentInde..." +QT_MOC_LITERAL(2, 60, 0), // "" +QT_MOC_LITERAL(3, 61, 5) // "index" + + }, + "JoystickConfiguration\0" + "on_comboBoxDevice_currentIndexChanged\0" + "\0index" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_JoystickConfiguration[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 19, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + + 0 // eod +}; + +void JoystickConfiguration::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_comboBoxDevice_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject JoystickConfiguration::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_JoystickConfiguration.data, + qt_meta_data_JoystickConfiguration, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *JoystickConfiguration::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *JoystickConfiguration::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_JoystickConfiguration.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int JoystickConfiguration::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp.d new file mode 100644 index 000000000..5d95c54a4 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp new file mode 100644 index 000000000..664839d2a --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp @@ -0,0 +1,282 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_machinestatus.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_machinestatus.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_machinestatus.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_ClickableLabel_t { + QByteArrayData data[5]; + char stringdata0[46]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_ClickableLabel_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_ClickableLabel_t qt_meta_stringdata_ClickableLabel = { + { +QT_MOC_LITERAL(0, 0, 14), // "ClickableLabel" +QT_MOC_LITERAL(1, 15, 7), // "clicked" +QT_MOC_LITERAL(2, 23, 0), // "" +QT_MOC_LITERAL(3, 24, 13), // "doubleClicked" +QT_MOC_LITERAL(4, 38, 7) // "dropped" + + }, + "ClickableLabel\0clicked\0\0doubleClicked\0" + "dropped" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_ClickableLabel[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 3, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 3, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 29, 2, 0x06 /* Public */, + 3, 1, 32, 2, 0x06 /* Public */, + 4, 1, 35, 2, 0x06 /* Public */, + + // signals: parameters + QMetaType::Void, QMetaType::QPoint, 2, + QMetaType::Void, QMetaType::QPoint, 2, + QMetaType::Void, QMetaType::QString, 2, + + 0 // eod +}; + +void ClickableLabel::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->clicked((*reinterpret_cast< QPoint(*)>(_a[1]))); break; + case 1: _t->doubleClicked((*reinterpret_cast< QPoint(*)>(_a[1]))); break; + case 2: _t->dropped((*reinterpret_cast< QString(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (ClickableLabel::*)(QPoint ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ClickableLabel::clicked)) { + *result = 0; + return; + } + } + { + using _t = void (ClickableLabel::*)(QPoint ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ClickableLabel::doubleClicked)) { + *result = 1; + return; + } + } + { + using _t = void (ClickableLabel::*)(QString ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ClickableLabel::dropped)) { + *result = 2; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject ClickableLabel::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_ClickableLabel.data, + qt_meta_data_ClickableLabel, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *ClickableLabel::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *ClickableLabel::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_ClickableLabel.stringdata0)) + return static_cast(this); + return QLabel::qt_metacast(_clname); +} + +int ClickableLabel::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QLabel::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 3) + *reinterpret_cast(_a[0]) = -1; + _id -= 3; + } + return _id; +} + +// SIGNAL 0 +void ClickableLabel::clicked(QPoint _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 1 +void ClickableLabel::doubleClicked(QPoint _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} + +// SIGNAL 2 +void ClickableLabel::dropped(QString _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 2, _a); +} +struct qt_meta_stringdata_MachineStatus_t { + QByteArrayData data[10]; + char stringdata0[79]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MachineStatus_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MachineStatus_t qt_meta_stringdata_MachineStatus = { + { +QT_MOC_LITERAL(0, 0, 13), // "MachineStatus" +QT_MOC_LITERAL(1, 14, 7), // "refresh" +QT_MOC_LITERAL(2, 22, 0), // "" +QT_MOC_LITERAL(3, 23, 11), // "QStatusBar*" +QT_MOC_LITERAL(4, 35, 4), // "sbar" +QT_MOC_LITERAL(5, 40, 7), // "message" +QT_MOC_LITERAL(6, 48, 3), // "msg" +QT_MOC_LITERAL(7, 52, 9), // "updateTip" +QT_MOC_LITERAL(8, 62, 3), // "tag" +QT_MOC_LITERAL(9, 66, 12) // "refreshIcons" + + }, + "MachineStatus\0refresh\0\0QStatusBar*\0" + "sbar\0message\0msg\0updateTip\0tag\0" + "refreshIcons" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MachineStatus[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 4, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 34, 2, 0x0a /* Public */, + 5, 1, 37, 2, 0x0a /* Public */, + 7, 1, 40, 2, 0x0a /* Public */, + 9, 0, 43, 2, 0x0a /* Public */, + + // slots: parameters + QMetaType::Void, 0x80000000 | 3, 4, + QMetaType::Void, QMetaType::QString, 6, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, + + 0 // eod +}; + +void MachineStatus::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->refresh((*reinterpret_cast< QStatusBar*(*)>(_a[1]))); break; + case 1: _t->message((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 2: _t->updateTip((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->refreshIcons(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject MachineStatus::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MachineStatus.data, + qt_meta_data_MachineStatus, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MachineStatus::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MachineStatus::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MachineStatus.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int MachineStatus::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 4) + *reinterpret_cast(_a[0]) = -1; + _id -= 4; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp.d new file mode 100644 index 000000000..bca5fe7e4 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp.d @@ -0,0 +1,304 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMimeData \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmimedata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QMouseEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QLabel \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qframe.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qlabel.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp new file mode 100644 index 000000000..69ae5048e --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp @@ -0,0 +1,844 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mainwindow.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mainwindow.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mainwindow.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_MainWindow_t { + QByteArrayData data[107]; + char stringdata0[2695]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = { + { +QT_MOC_LITERAL(0, 0, 10), // "MainWindow" +QT_MOC_LITERAL(1, 11, 5), // "paint" +QT_MOC_LITERAL(2, 17, 0), // "" +QT_MOC_LITERAL(3, 18, 5), // "image" +QT_MOC_LITERAL(4, 24, 14), // "resizeContents" +QT_MOC_LITERAL(5, 39, 1), // "w" +QT_MOC_LITERAL(6, 41, 1), // "h" +QT_MOC_LITERAL(7, 43, 21), // "resizeContentsMonitor" +QT_MOC_LITERAL(8, 65, 13), // "monitor_index" +QT_MOC_LITERAL(9, 79, 16), // "statusBarMessage" +QT_MOC_LITERAL(10, 96, 3), // "msg" +QT_MOC_LITERAL(11, 100, 20), // "updateStatusBarPanes" +QT_MOC_LITERAL(12, 121, 23), // "updateStatusBarActivity" +QT_MOC_LITERAL(13, 145, 3), // "tag" +QT_MOC_LITERAL(14, 149, 6), // "active" +QT_MOC_LITERAL(15, 156, 20), // "updateStatusBarEmpty" +QT_MOC_LITERAL(16, 177, 5), // "empty" +QT_MOC_LITERAL(17, 183, 18), // "updateStatusBarTip" +QT_MOC_LITERAL(18, 202, 23), // "updateMenuResizeOptions" +QT_MOC_LITERAL(19, 226, 26), // "updateWindowRememberOption" +QT_MOC_LITERAL(20, 253, 19), // "initRendererMonitor" +QT_MOC_LITERAL(21, 273, 22), // "destroyRendererMonitor" +QT_MOC_LITERAL(22, 296, 33), // "initRendererMonitorForNonQtTh..." +QT_MOC_LITERAL(23, 330, 36), // "destroyRendererMonitorForNonQ..." +QT_MOC_LITERAL(24, 367, 18), // "hardResetCompleted" +QT_MOC_LITERAL(25, 386, 8), // "setTitle" +QT_MOC_LITERAL(26, 395, 5), // "title" +QT_MOC_LITERAL(27, 401, 13), // "setFullscreen" +QT_MOC_LITERAL(28, 415, 5), // "state" +QT_MOC_LITERAL(29, 421, 15), // "setMouseCapture" +QT_MOC_LITERAL(30, 437, 25), // "showMessageForNonQtThread" +QT_MOC_LITERAL(31, 463, 5), // "flags" +QT_MOC_LITERAL(32, 469, 6), // "header" +QT_MOC_LITERAL(33, 476, 7), // "message" +QT_MOC_LITERAL(34, 484, 22), // "getTitleForNonQtThread" +QT_MOC_LITERAL(35, 507, 8), // "wchar_t*" +QT_MOC_LITERAL(36, 516, 12), // "showSettings" +QT_MOC_LITERAL(37, 529, 9), // "hardReset" +QT_MOC_LITERAL(38, 539, 11), // "togglePause" +QT_MOC_LITERAL(39, 551, 23), // "initRendererMonitorSlot" +QT_MOC_LITERAL(40, 575, 26), // "destroyRendererMonitorSlot" +QT_MOC_LITERAL(41, 602, 18), // "updateUiPauseState" +QT_MOC_LITERAL(42, 621, 29), // "on_actionFullscreen_triggered" +QT_MOC_LITERAL(43, 651, 27), // "on_actionSettings_triggered" +QT_MOC_LITERAL(44, 679, 23), // "on_actionExit_triggered" +QT_MOC_LITERAL(45, 703, 29), // "on_actionAuto_pause_triggered" +QT_MOC_LITERAL(46, 733, 24), // "on_actionPause_triggered" +QT_MOC_LITERAL(47, 758, 31), // "on_actionCtrl_Alt_Del_triggered" +QT_MOC_LITERAL(48, 790, 31), // "on_actionCtrl_Alt_Esc_triggered" +QT_MOC_LITERAL(49, 822, 29), // "on_actionHard_Reset_triggered" +QT_MOC_LITERAL(50, 852, 41), // "on_actionRight_CTRL_is_left_A..." +QT_MOC_LITERAL(51, 894, 44), // "on_actionKeyboard_requires_ca..." +QT_MOC_LITERAL(52, 939, 35), // "on_actionResizable_window_tri..." +QT_MOC_LITERAL(53, 975, 7), // "checked" +QT_MOC_LITERAL(54, 983, 39), // "on_actionInverted_VGA_monitor..." +QT_MOC_LITERAL(55, 1023, 23), // "on_action0_5x_triggered" +QT_MOC_LITERAL(56, 1047, 21), // "on_action1x_triggered" +QT_MOC_LITERAL(57, 1069, 23), // "on_action1_5x_triggered" +QT_MOC_LITERAL(58, 1093, 21), // "on_action2x_triggered" +QT_MOC_LITERAL(59, 1115, 21), // "on_action3x_triggered" +QT_MOC_LITERAL(60, 1137, 21), // "on_action4x_triggered" +QT_MOC_LITERAL(61, 1159, 21), // "on_action5x_triggered" +QT_MOC_LITERAL(62, 1181, 21), // "on_action6x_triggered" +QT_MOC_LITERAL(63, 1203, 21), // "on_action7x_triggered" +QT_MOC_LITERAL(64, 1225, 21), // "on_action8x_triggered" +QT_MOC_LITERAL(65, 1247, 25), // "on_actionLinear_triggered" +QT_MOC_LITERAL(66, 1273, 26), // "on_actionNearest_triggered" +QT_MOC_LITERAL(67, 1300, 33), // "on_actionFullScreen_int_trigg..." +QT_MOC_LITERAL(68, 1334, 35), // "on_actionFullScreen_int43_tri..." +QT_MOC_LITERAL(69, 1370, 39), // "on_actionFullScreen_keepRatio..." +QT_MOC_LITERAL(70, 1410, 32), // "on_actionFullScreen_43_triggered" +QT_MOC_LITERAL(71, 1443, 37), // "on_actionFullScreen_stretch_t..." +QT_MOC_LITERAL(72, 1481, 32), // "on_actionWhite_monitor_triggered" +QT_MOC_LITERAL(73, 1514, 32), // "on_actionGreen_monitor_triggered" +QT_MOC_LITERAL(74, 1547, 32), // "on_actionAmber_monitor_triggered" +QT_MOC_LITERAL(75, 1580, 32), // "on_actionRGB_Grayscale_triggered" +QT_MOC_LITERAL(76, 1613, 28), // "on_actionRGB_Color_triggered" +QT_MOC_LITERAL(77, 1642, 26), // "on_actionAverage_triggered" +QT_MOC_LITERAL(78, 1669, 29), // "on_actionBT709_HDTV_triggered" +QT_MOC_LITERAL(79, 1699, 33), // "on_actionBT601_NTSC_PAL_trigg..." +QT_MOC_LITERAL(80, 1733, 32), // "on_actionDocumentation_triggered" +QT_MOC_LITERAL(81, 1766, 30), // "on_actionAbout_86Box_triggered" +QT_MOC_LITERAL(82, 1797, 27), // "on_actionAbout_Qt_triggered" +QT_MOC_LITERAL(83, 1825, 42), // "on_actionForce_4_3_display_ra..." +QT_MOC_LITERAL(84, 1868, 57), // "on_actionChange_contrast_for_..." +QT_MOC_LITERAL(85, 1926, 52), // "on_actionCGA_PCjr_Tandy_EGA_S..." +QT_MOC_LITERAL(86, 1979, 45), // "on_actionRemember_size_and_po..." +QT_MOC_LITERAL(87, 2025, 37), // "on_actionSpecify_dimensions_t..." +QT_MOC_LITERAL(88, 2063, 32), // "on_actionHiDPI_scaling_triggered" +QT_MOC_LITERAL(89, 2096, 34), // "on_actionHide_status_bar_trig..." +QT_MOC_LITERAL(90, 2131, 32), // "on_actionHide_tool_bar_triggered" +QT_MOC_LITERAL(91, 2164, 42), // "on_actionUpdate_status_bar_ic..." +QT_MOC_LITERAL(92, 2207, 34), // "on_actionTake_screenshot_trig..." +QT_MOC_LITERAL(93, 2242, 29), // "on_actionSound_gain_triggered" +QT_MOC_LITERAL(94, 2272, 30), // "on_actionPreferences_triggered" +QT_MOC_LITERAL(95, 2303, 45), // "on_actionEnable_Discord_integ..." +QT_MOC_LITERAL(96, 2349, 35), // "on_actionRenderer_options_tri..." +QT_MOC_LITERAL(97, 2385, 16), // "refreshMediaMenu" +QT_MOC_LITERAL(98, 2402, 12), // "showMessage_" +QT_MOC_LITERAL(99, 2415, 9), // "getTitle_" +QT_MOC_LITERAL(100, 2425, 30), // "on_actionMCA_devices_triggered" +QT_MOC_LITERAL(101, 2456, 22), // "on_actionPen_triggered" +QT_MOC_LITERAL(102, 2479, 30), // "on_actionCursor_Puck_triggered" +QT_MOC_LITERAL(103, 2510, 32), // "on_actionACPI_Shutdown_triggered" +QT_MOC_LITERAL(104, 2543, 44), // "on_actionShow_non_primary_mon..." +QT_MOC_LITERAL(105, 2588, 42), // "on_actionOpen_screenshots_fol..." +QT_MOC_LITERAL(106, 2631, 63) // "on_actionApply_fullscreen_str..." + + }, + "MainWindow\0paint\0\0image\0resizeContents\0" + "w\0h\0resizeContentsMonitor\0monitor_index\0" + "statusBarMessage\0msg\0updateStatusBarPanes\0" + "updateStatusBarActivity\0tag\0active\0" + "updateStatusBarEmpty\0empty\0" + "updateStatusBarTip\0updateMenuResizeOptions\0" + "updateWindowRememberOption\0" + "initRendererMonitor\0destroyRendererMonitor\0" + "initRendererMonitorForNonQtThread\0" + "destroyRendererMonitorForNonQtThread\0" + "hardResetCompleted\0setTitle\0title\0" + "setFullscreen\0state\0setMouseCapture\0" + "showMessageForNonQtThread\0flags\0header\0" + "message\0getTitleForNonQtThread\0wchar_t*\0" + "showSettings\0hardReset\0togglePause\0" + "initRendererMonitorSlot\0" + "destroyRendererMonitorSlot\0" + "updateUiPauseState\0on_actionFullscreen_triggered\0" + "on_actionSettings_triggered\0" + "on_actionExit_triggered\0" + "on_actionAuto_pause_triggered\0" + "on_actionPause_triggered\0" + "on_actionCtrl_Alt_Del_triggered\0" + "on_actionCtrl_Alt_Esc_triggered\0" + "on_actionHard_Reset_triggered\0" + "on_actionRight_CTRL_is_left_ALT_triggered\0" + "on_actionKeyboard_requires_capture_triggered\0" + "on_actionResizable_window_triggered\0" + "checked\0on_actionInverted_VGA_monitor_triggered\0" + "on_action0_5x_triggered\0on_action1x_triggered\0" + "on_action1_5x_triggered\0on_action2x_triggered\0" + "on_action3x_triggered\0on_action4x_triggered\0" + "on_action5x_triggered\0on_action6x_triggered\0" + "on_action7x_triggered\0on_action8x_triggered\0" + "on_actionLinear_triggered\0" + "on_actionNearest_triggered\0" + "on_actionFullScreen_int_triggered\0" + "on_actionFullScreen_int43_triggered\0" + "on_actionFullScreen_keepRatio_triggered\0" + "on_actionFullScreen_43_triggered\0" + "on_actionFullScreen_stretch_triggered\0" + "on_actionWhite_monitor_triggered\0" + "on_actionGreen_monitor_triggered\0" + "on_actionAmber_monitor_triggered\0" + "on_actionRGB_Grayscale_triggered\0" + "on_actionRGB_Color_triggered\0" + "on_actionAverage_triggered\0" + "on_actionBT709_HDTV_triggered\0" + "on_actionBT601_NTSC_PAL_triggered\0" + "on_actionDocumentation_triggered\0" + "on_actionAbout_86Box_triggered\0" + "on_actionAbout_Qt_triggered\0" + "on_actionForce_4_3_display_ratio_triggered\0" + "on_actionChange_contrast_for_monochrome_display_triggered\0" + "on_actionCGA_PCjr_Tandy_EGA_S_VGA_overscan_triggered\0" + "on_actionRemember_size_and_position_triggered\0" + "on_actionSpecify_dimensions_triggered\0" + "on_actionHiDPI_scaling_triggered\0" + "on_actionHide_status_bar_triggered\0" + "on_actionHide_tool_bar_triggered\0" + "on_actionUpdate_status_bar_icons_triggered\0" + "on_actionTake_screenshot_triggered\0" + "on_actionSound_gain_triggered\0" + "on_actionPreferences_triggered\0" + "on_actionEnable_Discord_integration_triggered\0" + "on_actionRenderer_options_triggered\0" + "refreshMediaMenu\0showMessage_\0getTitle_\0" + "on_actionMCA_devices_triggered\0" + "on_actionPen_triggered\0" + "on_actionCursor_Puck_triggered\0" + "on_actionACPI_Shutdown_triggered\0" + "on_actionShow_non_primary_monitors_triggered\0" + "on_actionOpen_screenshots_folder_triggered\0" + "on_actionApply_fullscreen_stretch_mode_when_maximized_triggered" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MainWindow[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 90, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 20, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 464, 2, 0x06 /* Public */, + 4, 2, 467, 2, 0x06 /* Public */, + 7, 3, 472, 2, 0x06 /* Public */, + 9, 1, 479, 2, 0x06 /* Public */, + 11, 0, 482, 2, 0x06 /* Public */, + 12, 2, 483, 2, 0x06 /* Public */, + 15, 2, 488, 2, 0x06 /* Public */, + 17, 1, 493, 2, 0x06 /* Public */, + 18, 0, 496, 2, 0x06 /* Public */, + 19, 0, 497, 2, 0x06 /* Public */, + 20, 1, 498, 2, 0x06 /* Public */, + 21, 1, 501, 2, 0x06 /* Public */, + 22, 1, 504, 2, 0x06 /* Public */, + 23, 1, 507, 2, 0x06 /* Public */, + 24, 0, 510, 2, 0x06 /* Public */, + 25, 1, 511, 2, 0x06 /* Public */, + 27, 1, 514, 2, 0x06 /* Public */, + 29, 1, 517, 2, 0x06 /* Public */, + 30, 3, 520, 2, 0x06 /* Public */, + 34, 1, 527, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 36, 0, 530, 2, 0x0a /* Public */, + 37, 0, 531, 2, 0x0a /* Public */, + 38, 0, 532, 2, 0x0a /* Public */, + 39, 1, 533, 2, 0x0a /* Public */, + 40, 1, 536, 2, 0x0a /* Public */, + 41, 0, 539, 2, 0x0a /* Public */, + 42, 0, 540, 2, 0x08 /* Private */, + 43, 0, 541, 2, 0x08 /* Private */, + 44, 0, 542, 2, 0x08 /* Private */, + 45, 0, 543, 2, 0x08 /* Private */, + 46, 0, 544, 2, 0x08 /* Private */, + 47, 0, 545, 2, 0x08 /* Private */, + 48, 0, 546, 2, 0x08 /* Private */, + 49, 0, 547, 2, 0x08 /* Private */, + 50, 0, 548, 2, 0x08 /* Private */, + 51, 0, 549, 2, 0x08 /* Private */, + 52, 1, 550, 2, 0x08 /* Private */, + 54, 0, 553, 2, 0x08 /* Private */, + 55, 0, 554, 2, 0x08 /* Private */, + 56, 0, 555, 2, 0x08 /* Private */, + 57, 0, 556, 2, 0x08 /* Private */, + 58, 0, 557, 2, 0x08 /* Private */, + 59, 0, 558, 2, 0x08 /* Private */, + 60, 0, 559, 2, 0x08 /* Private */, + 61, 0, 560, 2, 0x08 /* Private */, + 62, 0, 561, 2, 0x08 /* Private */, + 63, 0, 562, 2, 0x08 /* Private */, + 64, 0, 563, 2, 0x08 /* Private */, + 65, 0, 564, 2, 0x08 /* Private */, + 66, 0, 565, 2, 0x08 /* Private */, + 67, 0, 566, 2, 0x08 /* Private */, + 68, 0, 567, 2, 0x08 /* Private */, + 69, 0, 568, 2, 0x08 /* Private */, + 70, 0, 569, 2, 0x08 /* Private */, + 71, 0, 570, 2, 0x08 /* Private */, + 72, 0, 571, 2, 0x08 /* Private */, + 73, 0, 572, 2, 0x08 /* Private */, + 74, 0, 573, 2, 0x08 /* Private */, + 75, 0, 574, 2, 0x08 /* Private */, + 76, 0, 575, 2, 0x08 /* Private */, + 77, 0, 576, 2, 0x08 /* Private */, + 78, 0, 577, 2, 0x08 /* Private */, + 79, 0, 578, 2, 0x08 /* Private */, + 80, 0, 579, 2, 0x08 /* Private */, + 81, 0, 580, 2, 0x08 /* Private */, + 82, 0, 581, 2, 0x08 /* Private */, + 83, 0, 582, 2, 0x08 /* Private */, + 84, 0, 583, 2, 0x08 /* Private */, + 85, 0, 584, 2, 0x08 /* Private */, + 86, 0, 585, 2, 0x08 /* Private */, + 87, 0, 586, 2, 0x08 /* Private */, + 88, 0, 587, 2, 0x08 /* Private */, + 89, 0, 588, 2, 0x08 /* Private */, + 90, 0, 589, 2, 0x08 /* Private */, + 91, 0, 590, 2, 0x08 /* Private */, + 92, 0, 591, 2, 0x08 /* Private */, + 93, 0, 592, 2, 0x08 /* Private */, + 94, 0, 593, 2, 0x08 /* Private */, + 95, 1, 594, 2, 0x08 /* Private */, + 96, 0, 597, 2, 0x08 /* Private */, + 97, 0, 598, 2, 0x08 /* Private */, + 98, 3, 599, 2, 0x08 /* Private */, + 99, 1, 606, 2, 0x08 /* Private */, + 100, 0, 609, 2, 0x08 /* Private */, + 101, 0, 610, 2, 0x08 /* Private */, + 102, 0, 611, 2, 0x08 /* Private */, + 103, 0, 612, 2, 0x08 /* Private */, + 104, 0, 613, 2, 0x08 /* Private */, + 105, 0, 614, 2, 0x08 /* Private */, + 106, 1, 615, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::QImage, 3, + QMetaType::Void, QMetaType::Int, QMetaType::Int, 5, 6, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, 5, 6, 8, + QMetaType::Void, QMetaType::QString, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, QMetaType::Bool, 13, 14, + QMetaType::Void, QMetaType::Int, QMetaType::Bool, 13, 16, + QMetaType::Void, QMetaType::Int, 13, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, + QMetaType::Void, QMetaType::QString, 26, + QMetaType::Void, QMetaType::Bool, 28, + QMetaType::Void, QMetaType::Bool, 28, + QMetaType::Void, QMetaType::Int, QMetaType::QString, QMetaType::QString, 31, 32, 33, + QMetaType::Void, 0x80000000 | 35, 26, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 53, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 53, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, QMetaType::QString, QMetaType::QString, 31, 32, 33, + QMetaType::Void, 0x80000000 | 35, 26, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 53, + + 0 // eod +}; + +void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->paint((*reinterpret_cast< const QImage(*)>(_a[1]))); break; + case 1: _t->resizeContents((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; + case 2: _t->resizeContentsMonitor((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; + case 3: _t->statusBarMessage((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 4: _t->updateStatusBarPanes(); break; + case 5: _t->updateStatusBarActivity((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 6: _t->updateStatusBarEmpty((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 7: _t->updateStatusBarTip((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->updateMenuResizeOptions(); break; + case 9: _t->updateWindowRememberOption(); break; + case 10: _t->initRendererMonitor((*reinterpret_cast< int(*)>(_a[1]))); break; + case 11: _t->destroyRendererMonitor((*reinterpret_cast< int(*)>(_a[1]))); break; + case 12: _t->initRendererMonitorForNonQtThread((*reinterpret_cast< int(*)>(_a[1]))); break; + case 13: _t->destroyRendererMonitorForNonQtThread((*reinterpret_cast< int(*)>(_a[1]))); break; + case 14: _t->hardResetCompleted(); break; + case 15: _t->setTitle((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 16: _t->setFullscreen((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 17: _t->setMouseCapture((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 18: _t->showMessageForNonQtThread((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QString(*)>(_a[3]))); break; + case 19: _t->getTitleForNonQtThread((*reinterpret_cast< wchar_t*(*)>(_a[1]))); break; + case 20: _t->showSettings(); break; + case 21: _t->hardReset(); break; + case 22: _t->togglePause(); break; + case 23: _t->initRendererMonitorSlot((*reinterpret_cast< int(*)>(_a[1]))); break; + case 24: _t->destroyRendererMonitorSlot((*reinterpret_cast< int(*)>(_a[1]))); break; + case 25: _t->updateUiPauseState(); break; + case 26: _t->on_actionFullscreen_triggered(); break; + case 27: _t->on_actionSettings_triggered(); break; + case 28: _t->on_actionExit_triggered(); break; + case 29: _t->on_actionAuto_pause_triggered(); break; + case 30: _t->on_actionPause_triggered(); break; + case 31: _t->on_actionCtrl_Alt_Del_triggered(); break; + case 32: _t->on_actionCtrl_Alt_Esc_triggered(); break; + case 33: _t->on_actionHard_Reset_triggered(); break; + case 34: _t->on_actionRight_CTRL_is_left_ALT_triggered(); break; + case 35: _t->on_actionKeyboard_requires_capture_triggered(); break; + case 36: _t->on_actionResizable_window_triggered((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 37: _t->on_actionInverted_VGA_monitor_triggered(); break; + case 38: _t->on_action0_5x_triggered(); break; + case 39: _t->on_action1x_triggered(); break; + case 40: _t->on_action1_5x_triggered(); break; + case 41: _t->on_action2x_triggered(); break; + case 42: _t->on_action3x_triggered(); break; + case 43: _t->on_action4x_triggered(); break; + case 44: _t->on_action5x_triggered(); break; + case 45: _t->on_action6x_triggered(); break; + case 46: _t->on_action7x_triggered(); break; + case 47: _t->on_action8x_triggered(); break; + case 48: _t->on_actionLinear_triggered(); break; + case 49: _t->on_actionNearest_triggered(); break; + case 50: _t->on_actionFullScreen_int_triggered(); break; + case 51: _t->on_actionFullScreen_int43_triggered(); break; + case 52: _t->on_actionFullScreen_keepRatio_triggered(); break; + case 53: _t->on_actionFullScreen_43_triggered(); break; + case 54: _t->on_actionFullScreen_stretch_triggered(); break; + case 55: _t->on_actionWhite_monitor_triggered(); break; + case 56: _t->on_actionGreen_monitor_triggered(); break; + case 57: _t->on_actionAmber_monitor_triggered(); break; + case 58: _t->on_actionRGB_Grayscale_triggered(); break; + case 59: _t->on_actionRGB_Color_triggered(); break; + case 60: _t->on_actionAverage_triggered(); break; + case 61: _t->on_actionBT709_HDTV_triggered(); break; + case 62: _t->on_actionBT601_NTSC_PAL_triggered(); break; + case 63: _t->on_actionDocumentation_triggered(); break; + case 64: _t->on_actionAbout_86Box_triggered(); break; + case 65: _t->on_actionAbout_Qt_triggered(); break; + case 66: _t->on_actionForce_4_3_display_ratio_triggered(); break; + case 67: _t->on_actionChange_contrast_for_monochrome_display_triggered(); break; + case 68: _t->on_actionCGA_PCjr_Tandy_EGA_S_VGA_overscan_triggered(); break; + case 69: _t->on_actionRemember_size_and_position_triggered(); break; + case 70: _t->on_actionSpecify_dimensions_triggered(); break; + case 71: _t->on_actionHiDPI_scaling_triggered(); break; + case 72: _t->on_actionHide_status_bar_triggered(); break; + case 73: _t->on_actionHide_tool_bar_triggered(); break; + case 74: _t->on_actionUpdate_status_bar_icons_triggered(); break; + case 75: _t->on_actionTake_screenshot_triggered(); break; + case 76: _t->on_actionSound_gain_triggered(); break; + case 77: _t->on_actionPreferences_triggered(); break; + case 78: _t->on_actionEnable_Discord_integration_triggered((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 79: _t->on_actionRenderer_options_triggered(); break; + case 80: _t->refreshMediaMenu(); break; + case 81: _t->showMessage_((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QString(*)>(_a[3]))); break; + case 82: _t->getTitle_((*reinterpret_cast< wchar_t*(*)>(_a[1]))); break; + case 83: _t->on_actionMCA_devices_triggered(); break; + case 84: _t->on_actionPen_triggered(); break; + case 85: _t->on_actionCursor_Puck_triggered(); break; + case 86: _t->on_actionACPI_Shutdown_triggered(); break; + case 87: _t->on_actionShow_non_primary_monitors_triggered(); break; + case 88: _t->on_actionOpen_screenshots_folder_triggered(); break; + case 89: _t->on_actionApply_fullscreen_stretch_mode_when_maximized_triggered((*reinterpret_cast< bool(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (MainWindow::*)(const QImage & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::paint)) { + *result = 0; + return; + } + } + { + using _t = void (MainWindow::*)(int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::resizeContents)) { + *result = 1; + return; + } + } + { + using _t = void (MainWindow::*)(int , int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::resizeContentsMonitor)) { + *result = 2; + return; + } + } + { + using _t = void (MainWindow::*)(const QString & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::statusBarMessage)) { + *result = 3; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarPanes)) { + *result = 4; + return; + } + } + { + using _t = void (MainWindow::*)(int , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarActivity)) { + *result = 5; + return; + } + } + { + using _t = void (MainWindow::*)(int , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarEmpty)) { + *result = 6; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarTip)) { + *result = 7; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateMenuResizeOptions)) { + *result = 8; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateWindowRememberOption)) { + *result = 9; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::initRendererMonitor)) { + *result = 10; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::destroyRendererMonitor)) { + *result = 11; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::initRendererMonitorForNonQtThread)) { + *result = 12; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::destroyRendererMonitorForNonQtThread)) { + *result = 13; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::hardResetCompleted)) { + *result = 14; + return; + } + } + { + using _t = void (MainWindow::*)(const QString & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::setTitle)) { + *result = 15; + return; + } + } + { + using _t = void (MainWindow::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::setFullscreen)) { + *result = 16; + return; + } + } + { + using _t = void (MainWindow::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::setMouseCapture)) { + *result = 17; + return; + } + } + { + using _t = void (MainWindow::*)(int , const QString & , const QString & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::showMessageForNonQtThread)) { + *result = 18; + return; + } + } + { + using _t = void (MainWindow::*)(wchar_t * ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::getTitleForNonQtThread)) { + *result = 19; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject MainWindow::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MainWindow.data, + qt_meta_data_MainWindow, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MainWindow::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MainWindow::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata0)) + return static_cast(this); + return QMainWindow::qt_metacast(_clname); +} + +int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QMainWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 90) + qt_static_metacall(this, _c, _id, _a); + _id -= 90; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 90) + *reinterpret_cast(_a[0]) = -1; + _id -= 90; + } + return _id; +} + +// SIGNAL 0 +void MainWindow::paint(const QImage & _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 1 +void MainWindow::resizeContents(int _t1, int _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} + +// SIGNAL 2 +void MainWindow::resizeContentsMonitor(int _t1, int _t2, int _t3) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))) }; + QMetaObject::activate(this, &staticMetaObject, 2, _a); +} + +// SIGNAL 3 +void MainWindow::statusBarMessage(const QString & _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 3, _a); +} + +// SIGNAL 4 +void MainWindow::updateStatusBarPanes() +{ + QMetaObject::activate(this, &staticMetaObject, 4, nullptr); +} + +// SIGNAL 5 +void MainWindow::updateStatusBarActivity(int _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 5, _a); +} + +// SIGNAL 6 +void MainWindow::updateStatusBarEmpty(int _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 6, _a); +} + +// SIGNAL 7 +void MainWindow::updateStatusBarTip(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 7, _a); +} + +// SIGNAL 8 +void MainWindow::updateMenuResizeOptions() +{ + QMetaObject::activate(this, &staticMetaObject, 8, nullptr); +} + +// SIGNAL 9 +void MainWindow::updateWindowRememberOption() +{ + QMetaObject::activate(this, &staticMetaObject, 9, nullptr); +} + +// SIGNAL 10 +void MainWindow::initRendererMonitor(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 10, _a); +} + +// SIGNAL 11 +void MainWindow::destroyRendererMonitor(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 11, _a); +} + +// SIGNAL 12 +void MainWindow::initRendererMonitorForNonQtThread(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 12, _a); +} + +// SIGNAL 13 +void MainWindow::destroyRendererMonitorForNonQtThread(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 13, _a); +} + +// SIGNAL 14 +void MainWindow::hardResetCompleted() +{ + QMetaObject::activate(this, &staticMetaObject, 14, nullptr); +} + +// SIGNAL 15 +void MainWindow::setTitle(const QString & _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 15, _a); +} + +// SIGNAL 16 +void MainWindow::setFullscreen(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 16, _a); +} + +// SIGNAL 17 +void MainWindow::setMouseCapture(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 17, _a); +} + +// SIGNAL 18 +void MainWindow::showMessageForNonQtThread(int _t1, const QString & _t2, const QString & _t3) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))) }; + QMetaObject::activate(this, &staticMetaObject, 18, _a); +} + +// SIGNAL 19 +void MainWindow::getTitleForNonQtThread(wchar_t * _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 19, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp.d new file mode 100644 index 000000000..4b634ac43 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp.d @@ -0,0 +1,306 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QFocusEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QLabel \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QMainWindow \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qframe.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qlabel.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qmainwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtabwidget.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp new file mode 100644 index 000000000..13b298d39 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mcadevicelist.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mcadevicelist.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mcadevicelist.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_MCADeviceList_t { + QByteArrayData data[1]; + char stringdata0[14]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MCADeviceList_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MCADeviceList_t qt_meta_stringdata_MCADeviceList = { + { +QT_MOC_LITERAL(0, 0, 13) // "MCADeviceList" + + }, + "MCADeviceList" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MCADeviceList[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void MCADeviceList::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject MCADeviceList::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MCADeviceList.data, + qt_meta_data_MCADeviceList, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MCADeviceList::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MCADeviceList::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MCADeviceList.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int MCADeviceList::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp.d new file mode 100644 index 000000000..4e12226ce --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp new file mode 100644 index 000000000..4405ca359 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp @@ -0,0 +1,85 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mediahistorymanager.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mediahistorymanager.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mediahistorymanager.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_ui_t { + QByteArrayData data[7]; + char stringdata0[44]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_ui_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_ui_t qt_meta_stringdata_ui = { + { +QT_MOC_LITERAL(0, 0, 2), // "ui" +QT_MOC_LITERAL(1, 3, 9), // "MediaType" +QT_MOC_LITERAL(2, 13, 6), // "Floppy" +QT_MOC_LITERAL(3, 20, 7), // "Optical" +QT_MOC_LITERAL(4, 28, 3), // "Zip" +QT_MOC_LITERAL(5, 32, 2), // "Mo" +QT_MOC_LITERAL(6, 35, 8) // "Cassette" + + }, + "ui\0MediaType\0Floppy\0Optical\0Zip\0Mo\0" + "Cassette" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_ui[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 1, 14, // enums/sets + 0, 0, // constructors + 4, // flags + 0, // signalCount + + // enums: name, alias, flags, count, data + 1, 1, 0x2, 5, 19, + + // enum data: key, value + 2, uint(ui::MediaType::Floppy), + 3, uint(ui::MediaType::Optical), + 4, uint(ui::MediaType::Zip), + 5, uint(ui::MediaType::Mo), + 6, uint(ui::MediaType::Cassette), + + 0 // eod +}; + +QT_INIT_METAOBJECT const QMetaObject ui::staticMetaObject = { { + nullptr, + qt_meta_stringdata_ui.data, + qt_meta_data_ui, + nullptr, + nullptr, + nullptr +} }; + +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp.d new file mode 100644 index 000000000..c6dc449e0 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp.d @@ -0,0 +1,291 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QString \ + C:/msys64/mingw32/qt5-static/include/QtCore/QVector \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/include/86box/86box.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp new file mode 100644 index 000000000..d43681ca7 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mediamenu.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mediamenu.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mediamenu.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_MediaMenu_t { + QByteArrayData data[1]; + char stringdata0[10]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MediaMenu_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MediaMenu_t qt_meta_stringdata_MediaMenu = { + { +QT_MOC_LITERAL(0, 0, 9) // "MediaMenu" + + }, + "MediaMenu" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MediaMenu[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void MediaMenu::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject MediaMenu::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MediaMenu.data, + qt_meta_data_MediaMenu, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MediaMenu::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MediaMenu::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MediaMenu.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int MediaMenu::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp.d new file mode 100644 index 000000000..829e9dd56 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp.d @@ -0,0 +1,295 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMap \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QString \ + C:/msys64/mingw32/qt5-static/include/QtCore/QVector \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/include/86box/86box.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp new file mode 100644 index 000000000..48decf732 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp @@ -0,0 +1,144 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_newfloppydialog.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_newfloppydialog.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_newfloppydialog.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_NewFloppyDialog_t { + QByteArrayData data[5]; + char stringdata0[41]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_NewFloppyDialog_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_NewFloppyDialog_t qt_meta_stringdata_NewFloppyDialog = { + { +QT_MOC_LITERAL(0, 0, 15), // "NewFloppyDialog" +QT_MOC_LITERAL(1, 16, 12), // "fileProgress" +QT_MOC_LITERAL(2, 29, 0), // "" +QT_MOC_LITERAL(3, 30, 1), // "i" +QT_MOC_LITERAL(4, 32, 8) // "onCreate" + + }, + "NewFloppyDialog\0fileProgress\0\0i\0" + "onCreate" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_NewFloppyDialog[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 24, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 0, 27, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, 3, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void NewFloppyDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->fileProgress((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->onCreate(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (NewFloppyDialog::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&NewFloppyDialog::fileProgress)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject NewFloppyDialog::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_NewFloppyDialog.data, + qt_meta_data_NewFloppyDialog, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *NewFloppyDialog::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *NewFloppyDialog::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_NewFloppyDialog.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int NewFloppyDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = -1; + _id -= 2; + } + return _id; +} + +// SIGNAL 0 +void NewFloppyDialog::fileProgress(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp.d new file mode 100644 index 000000000..6e692b5a1 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp new file mode 100644 index 000000000..a7f924aba --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_opengloptions.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_opengloptions.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_opengloptions.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_OpenGLOptions_t { + QByteArrayData data[1]; + char stringdata0[14]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_OpenGLOptions_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_OpenGLOptions_t qt_meta_stringdata_OpenGLOptions = { + { +QT_MOC_LITERAL(0, 0, 13) // "OpenGLOptions" + + }, + "OpenGLOptions" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_OpenGLOptions[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void OpenGLOptions::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject OpenGLOptions::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_OpenGLOptions.data, + qt_meta_data_OpenGLOptions, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *OpenGLOptions::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *OpenGLOptions::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_OpenGLOptions.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int OpenGLOptions::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp.d new file mode 100644 index 000000000..35570f9c0 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp.d @@ -0,0 +1,430 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/GL/gl.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QList \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QScopedPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qt_windows.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLContext \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw32/qt5-static/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw32/qt5-static/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengl.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qquaternion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector3d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector4d.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp new file mode 100644 index 000000000..d3a9b185f --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp @@ -0,0 +1,161 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_opengloptionsdialog.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_opengloptionsdialog.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_opengloptionsdialog.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_OpenGLOptionsDialog_t { + QByteArrayData data[7]; + char stringdata0[87]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_OpenGLOptionsDialog_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_OpenGLOptionsDialog_t qt_meta_stringdata_OpenGLOptionsDialog = { + { +QT_MOC_LITERAL(0, 0, 19), // "OpenGLOptionsDialog" +QT_MOC_LITERAL(1, 20, 14), // "optionsChanged" +QT_MOC_LITERAL(2, 35, 0), // "" +QT_MOC_LITERAL(3, 36, 14), // "OpenGLOptions*" +QT_MOC_LITERAL(4, 51, 7), // "options" +QT_MOC_LITERAL(5, 59, 6), // "accept" +QT_MOC_LITERAL(6, 66, 20) // "on_addShader_clicked" + + }, + "OpenGLOptionsDialog\0optionsChanged\0\0" + "OpenGLOptions*\0options\0accept\0" + "on_addShader_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_OpenGLOptionsDialog[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 3, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 29, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 5, 0, 32, 2, 0x0a /* Public */, + 6, 0, 33, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, 0x80000000 | 3, 4, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +void OpenGLOptionsDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->optionsChanged((*reinterpret_cast< OpenGLOptions*(*)>(_a[1]))); break; + case 1: _t->accept(); break; + case 2: _t->on_addShader_clicked(); break; + default: ; + } + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + switch (_id) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 0: + switch (*reinterpret_cast(_a[1])) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 0: + *reinterpret_cast(_a[0]) = qRegisterMetaType< OpenGLOptions* >(); break; + } + break; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (OpenGLOptionsDialog::*)(OpenGLOptions * ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&OpenGLOptionsDialog::optionsChanged)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject OpenGLOptionsDialog::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_OpenGLOptionsDialog.data, + qt_meta_data_OpenGLOptionsDialog, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *OpenGLOptionsDialog::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *OpenGLOptionsDialog::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_OpenGLOptionsDialog.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int OpenGLOptionsDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } + return _id; +} + +// SIGNAL 0 +void OpenGLOptionsDialog::optionsChanged(OpenGLOptions * _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp.d new file mode 100644 index 000000000..130824224 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp.d @@ -0,0 +1,458 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/GL/gl.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QList \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QScopedPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qt_windows.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLContext \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw32/qt5-static/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengl.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qquaternion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector3d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector4d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp new file mode 100644 index 000000000..4708eef1e --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp @@ -0,0 +1,191 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_openglrenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_openglrenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_openglrenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_OpenGLRenderer_t { + QByteArrayData data[14]; + char stringdata0[116]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_OpenGLRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_OpenGLRenderer_t qt_meta_stringdata_OpenGLRenderer = { + { +QT_MOC_LITERAL(0, 0, 14), // "OpenGLRenderer" +QT_MOC_LITERAL(1, 15, 11), // "initialized" +QT_MOC_LITERAL(2, 27, 0), // "" +QT_MOC_LITERAL(3, 28, 17), // "errorInitializing" +QT_MOC_LITERAL(4, 46, 6), // "onBlit" +QT_MOC_LITERAL(5, 53, 7), // "buf_idx" +QT_MOC_LITERAL(6, 61, 1), // "x" +QT_MOC_LITERAL(7, 63, 1), // "y" +QT_MOC_LITERAL(8, 65, 1), // "w" +QT_MOC_LITERAL(9, 67, 1), // "h" +QT_MOC_LITERAL(10, 69, 6), // "render" +QT_MOC_LITERAL(11, 76, 13), // "updateOptions" +QT_MOC_LITERAL(12, 90, 14), // "OpenGLOptions*" +QT_MOC_LITERAL(13, 105, 10) // "newOptions" + + }, + "OpenGLRenderer\0initialized\0\0" + "errorInitializing\0onBlit\0buf_idx\0x\0y\0" + "w\0h\0render\0updateOptions\0OpenGLOptions*\0" + "newOptions" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_OpenGLRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 2, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 39, 2, 0x06 /* Public */, + 3, 0, 40, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 5, 41, 2, 0x0a /* Public */, + 10, 0, 52, 2, 0x08 /* Private */, + 11, 1, 53, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 5, 6, 7, 8, 9, + QMetaType::Void, + QMetaType::Void, 0x80000000 | 12, 13, + + 0 // eod +}; + +void OpenGLRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->initialized(); break; + case 1: _t->errorInitializing(); break; + case 2: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + case 3: _t->render(); break; + case 4: _t->updateOptions((*reinterpret_cast< OpenGLOptions*(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + switch (_id) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 4: + switch (*reinterpret_cast(_a[1])) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 0: + *reinterpret_cast(_a[0]) = qRegisterMetaType< OpenGLOptions* >(); break; + } + break; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (OpenGLRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&OpenGLRenderer::initialized)) { + *result = 0; + return; + } + } + { + using _t = void (OpenGLRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&OpenGLRenderer::errorInitializing)) { + *result = 1; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject OpenGLRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_OpenGLRenderer.data, + qt_meta_data_OpenGLRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *OpenGLRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *OpenGLRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_OpenGLRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QOpenGLExtraFunctions")) + return static_cast< QOpenGLExtraFunctions*>(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QWindow::qt_metacast(_clname); +} + +int OpenGLRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } + return _id; +} + +// SIGNAL 0 +void OpenGLRenderer::initialized() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void OpenGLRenderer::errorInitializing() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp.d new file mode 100644 index 000000000..f64004f60 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp.d @@ -0,0 +1,483 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/GL/gl.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QList \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMargins \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/QScopedPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/QTimer \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasictimer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qt_windows.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtimer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLContext \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLExtraFunctions \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw32/qt5-static/include/QtGui/QResizeEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw32/qt5-static/include/QtGui/QWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengl.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglextrafunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qquaternion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurface.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector3d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector4d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtOpenGLExtensions/QOpenGLExtensions \ + C:/msys64/mingw32/qt5-static/include/QtOpenGLExtensions/qopenglextensions.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp new file mode 100644 index 000000000..26f4eabaf --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp @@ -0,0 +1,138 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_progsettings.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_progsettings.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_progsettings.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_ProgSettings_t { + QByteArrayData data[8]; + char stringdata0[138]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_ProgSettings_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_ProgSettings_t qt_meta_stringdata_ProgSettings = { + { +QT_MOC_LITERAL(0, 0, 12), // "ProgSettings" +QT_MOC_LITERAL(1, 13, 6), // "accept" +QT_MOC_LITERAL(2, 20, 0), // "" +QT_MOC_LITERAL(3, 21, 22), // "on_pushButton_released" +QT_MOC_LITERAL(4, 44, 30), // "on_pushButtonLanguage_released" +QT_MOC_LITERAL(5, 75, 32), // "on_horizontalSlider_valueChanged" +QT_MOC_LITERAL(6, 108, 5), // "value" +QT_MOC_LITERAL(7, 114, 23) // "on_pushButton_2_clicked" + + }, + "ProgSettings\0accept\0\0on_pushButton_released\0" + "on_pushButtonLanguage_released\0" + "on_horizontalSlider_valueChanged\0value\0" + "on_pushButton_2_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_ProgSettings[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 0, 39, 2, 0x09 /* Protected */, + 3, 0, 40, 2, 0x08 /* Private */, + 4, 0, 41, 2, 0x08 /* Private */, + 5, 1, 42, 2, 0x08 /* Private */, + 7, 0, 45, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + + 0 // eod +}; + +void ProgSettings::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->accept(); break; + case 1: _t->on_pushButton_released(); break; + case 2: _t->on_pushButtonLanguage_released(); break; + case 3: _t->on_horizontalSlider_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_pushButton_2_clicked(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject ProgSettings::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_ProgSettings.data, + qt_meta_data_ProgSettings, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *ProgSettings::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *ProgSettings::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_ProgSettings.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int ProgSettings::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + *reinterpret_cast(_a[0]) = -1; + _id -= 5; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp.d new file mode 100644 index 000000000..5dab0e439 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp.d @@ -0,0 +1,291 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QTranslator \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtranslator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp new file mode 100644 index 000000000..217d47536 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp @@ -0,0 +1,192 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_rendererstack.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_rendererstack.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_rendererstack.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_RendererStack_t { + QByteArrayData data[13]; + char stringdata0[101]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_RendererStack_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_RendererStack_t qt_meta_stringdata_RendererStack = { + { +QT_MOC_LITERAL(0, 0, 13), // "RendererStack" +QT_MOC_LITERAL(1, 14, 14), // "blitToRenderer" +QT_MOC_LITERAL(2, 29, 0), // "" +QT_MOC_LITERAL(3, 30, 7), // "buf_idx" +QT_MOC_LITERAL(4, 38, 1), // "x" +QT_MOC_LITERAL(5, 40, 1), // "y" +QT_MOC_LITERAL(6, 42, 1), // "w" +QT_MOC_LITERAL(7, 44, 1), // "h" +QT_MOC_LITERAL(8, 46, 4), // "blit" +QT_MOC_LITERAL(9, 51, 15), // "rendererChanged" +QT_MOC_LITERAL(10, 67, 10), // "blitCommon" +QT_MOC_LITERAL(11, 78, 12), // "blitRenderer" +QT_MOC_LITERAL(12, 91, 9) // "blitDummy" + + }, + "RendererStack\0blitToRenderer\0\0buf_idx\0" + "x\0y\0w\0h\0blit\0rendererChanged\0blitCommon\0" + "blitRenderer\0blitDummy" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_RendererStack[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 6, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 3, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 5, 44, 2, 0x06 /* Public */, + 8, 4, 55, 2, 0x06 /* Public */, + 9, 0, 64, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 10, 4, 65, 2, 0x0a /* Public */, + 11, 4, 74, 2, 0x0a /* Public */, + 12, 4, 83, 2, 0x0a /* Public */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 3, 4, 5, 6, 7, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + QMetaType::Void, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + + 0 // eod +}; + +void RendererStack::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->blitToRenderer((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + case 1: _t->blit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + case 2: _t->rendererChanged(); break; + case 3: _t->blitCommon((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + case 4: _t->blitRenderer((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + case 5: _t->blitDummy((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (RendererStack::*)(int , int , int , int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RendererStack::blitToRenderer)) { + *result = 0; + return; + } + } + { + using _t = void (RendererStack::*)(int , int , int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RendererStack::blit)) { + *result = 1; + return; + } + } + { + using _t = void (RendererStack::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RendererStack::rendererChanged)) { + *result = 2; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject RendererStack::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_RendererStack.data, + qt_meta_data_RendererStack, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *RendererStack::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *RendererStack::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_RendererStack.stringdata0)) + return static_cast(this); + return QStackedWidget::qt_metacast(_clname); +} + +int RendererStack::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QStackedWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 6) + qt_static_metacall(this, _c, _id, _a); + _id -= 6; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 6) + *reinterpret_cast(_a[0]) = -1; + _id -= 6; + } + return _id; +} + +// SIGNAL 0 +void RendererStack::blitToRenderer(int _t1, int _t2, int _t3, int _t4, int _t5) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))), const_cast(reinterpret_cast(std::addressof(_t4))), const_cast(reinterpret_cast(std::addressof(_t5))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 1 +void RendererStack::blit(int _t1, int _t2, int _t3, int _t4) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))), const_cast(reinterpret_cast(std::addressof(_t4))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} + +// SIGNAL 2 +void RendererStack::rendererChanged() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp.d new file mode 100644 index 000000000..d8a7fc748 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp.d @@ -0,0 +1,309 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QCursor \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/QKeyEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QStackedWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qframe.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qstackedwidget.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp new file mode 100644 index 000000000..78db00f11 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp @@ -0,0 +1,119 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settings.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settings.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settings.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_Settings_t { + QByteArrayData data[3]; + char stringdata0[17]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_Settings_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_Settings_t qt_meta_stringdata_Settings = { + { +QT_MOC_LITERAL(0, 0, 8), // "Settings" +QT_MOC_LITERAL(1, 9, 6), // "accept" +QT_MOC_LITERAL(2, 16, 0) // "" + + }, + "Settings\0accept\0" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_Settings[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 0, 19, 2, 0x09 /* Protected */, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void Settings::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->accept(); break; + default: ; + } + } + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject Settings::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_Settings.data, + qt_meta_data_Settings, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *Settings::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *Settings::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_Settings.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int Settings::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp.d new file mode 100644 index 000000000..feb471af3 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp new file mode 100644 index 000000000..4867e90a5 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp @@ -0,0 +1,161 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsdisplay.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsdisplay.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsdisplay.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsDisplay_t { + QByteArrayData data[14]; + char stringdata0[347]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsDisplay_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsDisplay_t qt_meta_stringdata_SettingsDisplay = { + { +QT_MOC_LITERAL(0, 0, 15), // "SettingsDisplay" +QT_MOC_LITERAL(1, 16, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 40, 0), // "" +QT_MOC_LITERAL(3, 41, 9), // "machineId" +QT_MOC_LITERAL(4, 51, 39), // "on_pushButtonConfigureSeconda..." +QT_MOC_LITERAL(5, 91, 45), // "on_comboBoxVideoSecondary_cur..." +QT_MOC_LITERAL(6, 137, 5), // "index" +QT_MOC_LITERAL(7, 143, 30), // "on_checkBoxVoodoo_stateChanged" +QT_MOC_LITERAL(8, 174, 5), // "state" +QT_MOC_LITERAL(9, 180, 27), // "on_checkBoxXga_stateChanged" +QT_MOC_LITERAL(10, 208, 36), // "on_comboBoxVideo_currentIndex..." +QT_MOC_LITERAL(11, 245, 36), // "on_pushButtonConfigureVoodoo_..." +QT_MOC_LITERAL(12, 282, 33), // "on_pushButtonConfigureXga_cli..." +QT_MOC_LITERAL(13, 316, 30) // "on_pushButtonConfigure_clicked" + + }, + "SettingsDisplay\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConfigureSecondary_clicked\0" + "on_comboBoxVideoSecondary_currentIndexChanged\0" + "index\0on_checkBoxVoodoo_stateChanged\0" + "state\0on_checkBoxXga_stateChanged\0" + "on_comboBoxVideo_currentIndexChanged\0" + "on_pushButtonConfigureVoodoo_clicked\0" + "on_pushButtonConfigureXga_clicked\0" + "on_pushButtonConfigure_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsDisplay[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 9, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 59, 2, 0x0a /* Public */, + 4, 0, 62, 2, 0x08 /* Private */, + 5, 1, 63, 2, 0x08 /* Private */, + 7, 1, 66, 2, 0x08 /* Private */, + 9, 1, 69, 2, 0x08 /* Private */, + 10, 1, 72, 2, 0x08 /* Private */, + 11, 0, 75, 2, 0x08 /* Private */, + 12, 0, 76, 2, 0x08 /* Private */, + 13, 0, 77, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +void SettingsDisplay::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureSecondary_clicked(); break; + case 2: _t->on_comboBoxVideoSecondary_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_checkBoxVoodoo_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_checkBoxXga_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxVideo_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_pushButtonConfigureVoodoo_clicked(); break; + case 7: _t->on_pushButtonConfigureXga_clicked(); break; + case 8: _t->on_pushButtonConfigure_clicked(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsDisplay::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsDisplay.data, + qt_meta_data_SettingsDisplay, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsDisplay::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsDisplay::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsDisplay.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsDisplay::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 9) + qt_static_metacall(this, _c, _id, _a); + _id -= 9; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 9) + *reinterpret_cast(_a[0]) = -1; + _id -= 9; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp.d new file mode 100644 index 000000000..a81decd4d --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp new file mode 100644 index 000000000..e57f7360c --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp @@ -0,0 +1,167 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsfloppycdrom.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsfloppycdrom.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsfloppycdrom.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsFloppyCDROM_t { + QByteArrayData data[16]; + char stringdata0[338]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsFloppyCDROM_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsFloppyCDROM_t qt_meta_stringdata_SettingsFloppyCDROM = { + { +QT_MOC_LITERAL(0, 0, 19), // "SettingsFloppyCDROM" +QT_MOC_LITERAL(1, 20, 30), // "on_comboBoxCDROMType_activated" +QT_MOC_LITERAL(2, 51, 0), // "" +QT_MOC_LITERAL(3, 52, 5), // "index" +QT_MOC_LITERAL(4, 58, 28), // "on_comboBoxChannel_activated" +QT_MOC_LITERAL(5, 87, 24), // "on_comboBoxBus_activated" +QT_MOC_LITERAL(6, 112, 26), // "on_comboBoxSpeed_activated" +QT_MOC_LITERAL(7, 139, 34), // "on_comboBoxBus_currentIndexCh..." +QT_MOC_LITERAL(8, 174, 31), // "on_comboBoxFloppyType_activated" +QT_MOC_LITERAL(9, 206, 32), // "on_checkBoxCheckBPB_stateChanged" +QT_MOC_LITERAL(10, 239, 4), // "arg1" +QT_MOC_LITERAL(11, 244, 36), // "on_checkBoxTurboTimings_state..." +QT_MOC_LITERAL(12, 281, 18), // "onFloppyRowChanged" +QT_MOC_LITERAL(13, 300, 11), // "QModelIndex" +QT_MOC_LITERAL(14, 312, 7), // "current" +QT_MOC_LITERAL(15, 320, 17) // "onCDROMRowChanged" + + }, + "SettingsFloppyCDROM\0on_comboBoxCDROMType_activated\0" + "\0index\0on_comboBoxChannel_activated\0" + "on_comboBoxBus_activated\0" + "on_comboBoxSpeed_activated\0" + "on_comboBoxBus_currentIndexChanged\0" + "on_comboBoxFloppyType_activated\0" + "on_checkBoxCheckBPB_stateChanged\0arg1\0" + "on_checkBoxTurboTimings_stateChanged\0" + "onFloppyRowChanged\0QModelIndex\0current\0" + "onCDROMRowChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsFloppyCDROM[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 10, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 64, 2, 0x08 /* Private */, + 4, 1, 67, 2, 0x08 /* Private */, + 5, 1, 70, 2, 0x08 /* Private */, + 6, 1, 73, 2, 0x08 /* Private */, + 7, 1, 76, 2, 0x08 /* Private */, + 8, 1, 79, 2, 0x08 /* Private */, + 9, 1, 82, 2, 0x08 /* Private */, + 11, 1, 85, 2, 0x08 /* Private */, + 12, 1, 88, 2, 0x08 /* Private */, + 15, 1, 91, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, 0x80000000 | 13, 14, + QMetaType::Void, 0x80000000 | 13, 14, + + 0 // eod +}; + +void SettingsFloppyCDROM::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_comboBoxCDROMType_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_comboBoxChannel_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 2: _t->on_comboBoxBus_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxSpeed_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_comboBoxBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxFloppyType_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_checkBoxCheckBPB_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_checkBoxTurboTimings_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->onFloppyRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + case 9: _t->onCDROMRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsFloppyCDROM::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsFloppyCDROM.data, + qt_meta_data_SettingsFloppyCDROM, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsFloppyCDROM::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsFloppyCDROM::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsFloppyCDROM.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsFloppyCDROM::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 10) + qt_static_metacall(this, _c, _id, _a); + _id -= 10; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 10) + *reinterpret_cast(_a[0]) = -1; + _id -= 10; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp.d new file mode 100644 index 000000000..2bfdf0fcf --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp new file mode 100644 index 000000000..350d6be17 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp @@ -0,0 +1,152 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsharddisks.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsharddisks.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsharddisks.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsHarddisks_t { + QByteArrayData data[12]; + char stringdata0[257]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsHarddisks_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsHarddisks_t qt_meta_stringdata_SettingsHarddisks = { + { +QT_MOC_LITERAL(0, 0, 17), // "SettingsHarddisks" +QT_MOC_LITERAL(1, 18, 38), // "on_comboBoxChannel_currentInd..." +QT_MOC_LITERAL(2, 57, 0), // "" +QT_MOC_LITERAL(3, 58, 5), // "index" +QT_MOC_LITERAL(4, 64, 36), // "on_comboBoxSpeed_currentIndex..." +QT_MOC_LITERAL(5, 101, 27), // "on_pushButtonRemove_clicked" +QT_MOC_LITERAL(6, 129, 29), // "on_pushButtonExisting_clicked" +QT_MOC_LITERAL(7, 159, 24), // "on_pushButtonNew_clicked" +QT_MOC_LITERAL(8, 184, 34), // "on_comboBoxBus_currentIndexCh..." +QT_MOC_LITERAL(9, 219, 17), // "onTableRowChanged" +QT_MOC_LITERAL(10, 237, 11), // "QModelIndex" +QT_MOC_LITERAL(11, 249, 7) // "current" + + }, + "SettingsHarddisks\0" + "on_comboBoxChannel_currentIndexChanged\0" + "\0index\0on_comboBoxSpeed_currentIndexChanged\0" + "on_pushButtonRemove_clicked\0" + "on_pushButtonExisting_clicked\0" + "on_pushButtonNew_clicked\0" + "on_comboBoxBus_currentIndexChanged\0" + "onTableRowChanged\0QModelIndex\0current" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsHarddisks[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 49, 2, 0x08 /* Private */, + 4, 1, 52, 2, 0x08 /* Private */, + 5, 0, 55, 2, 0x08 /* Private */, + 6, 0, 56, 2, 0x08 /* Private */, + 7, 0, 57, 2, 0x08 /* Private */, + 8, 1, 58, 2, 0x08 /* Private */, + 9, 1, 61, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, 0x80000000 | 10, 11, + + 0 // eod +}; + +void SettingsHarddisks::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_comboBoxChannel_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_comboBoxSpeed_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 2: _t->on_pushButtonRemove_clicked(); break; + case 3: _t->on_pushButtonExisting_clicked(); break; + case 4: _t->on_pushButtonNew_clicked(); break; + case 5: _t->on_comboBoxBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->onTableRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsHarddisks::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsHarddisks.data, + qt_meta_data_SettingsHarddisks, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsHarddisks::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsHarddisks::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsHarddisks.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsHarddisks::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp.d new file mode 100644 index 000000000..1a2b2938c --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp new file mode 100644 index 000000000..358e2acdb --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp @@ -0,0 +1,155 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsinput.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsinput.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsinput.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsInput_t { + QByteArrayData data[12]; + char stringdata0[292]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsInput_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsInput_t qt_meta_stringdata_SettingsInput = { + { +QT_MOC_LITERAL(0, 0, 13), // "SettingsInput" +QT_MOC_LITERAL(1, 14, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 38, 0), // "" +QT_MOC_LITERAL(3, 39, 9), // "machineId" +QT_MOC_LITERAL(4, 49, 35), // "on_pushButtonConfigureMouse_c..." +QT_MOC_LITERAL(5, 85, 39), // "on_comboBoxJoystick_currentIn..." +QT_MOC_LITERAL(6, 125, 5), // "index" +QT_MOC_LITERAL(7, 131, 36), // "on_comboBoxMouse_currentIndex..." +QT_MOC_LITERAL(8, 168, 30), // "on_pushButtonJoystick1_clicked" +QT_MOC_LITERAL(9, 199, 30), // "on_pushButtonJoystick2_clicked" +QT_MOC_LITERAL(10, 230, 30), // "on_pushButtonJoystick3_clicked" +QT_MOC_LITERAL(11, 261, 30) // "on_pushButtonJoystick4_clicked" + + }, + "SettingsInput\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConfigureMouse_clicked\0" + "on_comboBoxJoystick_currentIndexChanged\0" + "index\0on_comboBoxMouse_currentIndexChanged\0" + "on_pushButtonJoystick1_clicked\0" + "on_pushButtonJoystick2_clicked\0" + "on_pushButtonJoystick3_clicked\0" + "on_pushButtonJoystick4_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsInput[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 8, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 54, 2, 0x0a /* Public */, + 4, 0, 57, 2, 0x08 /* Private */, + 5, 1, 58, 2, 0x08 /* Private */, + 7, 1, 61, 2, 0x08 /* Private */, + 8, 0, 64, 2, 0x08 /* Private */, + 9, 0, 65, 2, 0x08 /* Private */, + 10, 0, 66, 2, 0x08 /* Private */, + 11, 0, 67, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +void SettingsInput::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureMouse_clicked(); break; + case 2: _t->on_comboBoxJoystick_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxMouse_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_pushButtonJoystick1_clicked(); break; + case 5: _t->on_pushButtonJoystick2_clicked(); break; + case 6: _t->on_pushButtonJoystick3_clicked(); break; + case 7: _t->on_pushButtonJoystick4_clicked(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsInput::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsInput.data, + qt_meta_data_SettingsInput, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsInput::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsInput::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsInput.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsInput::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 8) + qt_static_metacall(this, _c, _id, _a); + _id -= 8; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 8) + *reinterpret_cast(_a[0]) = -1; + _id -= 8; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp.d new file mode 100644 index 000000000..6b86861e1 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp new file mode 100644 index 000000000..664894fc2 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp @@ -0,0 +1,170 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsmachine.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsmachine.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsmachine.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsMachine_t { + QByteArrayData data[11]; + char stringdata0[275]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsMachine_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsMachine_t qt_meta_stringdata_SettingsMachine = { + { +QT_MOC_LITERAL(0, 0, 15), // "SettingsMachine" +QT_MOC_LITERAL(1, 16, 21), // "currentMachineChanged" +QT_MOC_LITERAL(2, 38, 0), // "" +QT_MOC_LITERAL(3, 39, 9), // "machineId" +QT_MOC_LITERAL(4, 49, 30), // "on_pushButtonConfigure_clicked" +QT_MOC_LITERAL(5, 80, 34), // "on_comboBoxFPU_currentIndexCh..." +QT_MOC_LITERAL(6, 115, 5), // "index" +QT_MOC_LITERAL(7, 121, 36), // "on_comboBoxSpeed_currentIndex..." +QT_MOC_LITERAL(8, 158, 34), // "on_comboBoxCPU_currentIndexCh..." +QT_MOC_LITERAL(9, 193, 38), // "on_comboBoxMachine_currentInd..." +QT_MOC_LITERAL(10, 232, 42) // "on_comboBoxMachineType_curren..." + + }, + "SettingsMachine\0currentMachineChanged\0" + "\0machineId\0on_pushButtonConfigure_clicked\0" + "on_comboBoxFPU_currentIndexChanged\0" + "index\0on_comboBoxSpeed_currentIndexChanged\0" + "on_comboBoxCPU_currentIndexChanged\0" + "on_comboBoxMachine_currentIndexChanged\0" + "on_comboBoxMachineType_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsMachine[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 49, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 0, 52, 2, 0x08 /* Private */, + 5, 1, 53, 2, 0x08 /* Private */, + 7, 1, 56, 2, 0x08 /* Private */, + 8, 1, 59, 2, 0x08 /* Private */, + 9, 1, 62, 2, 0x08 /* Private */, + 10, 1, 65, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, 3, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + + 0 // eod +}; + +void SettingsMachine::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->currentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigure_clicked(); break; + case 2: _t->on_comboBoxFPU_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxSpeed_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_comboBoxCPU_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxMachine_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxMachineType_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (SettingsMachine::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&SettingsMachine::currentMachineChanged)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsMachine::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsMachine.data, + qt_meta_data_SettingsMachine, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsMachine::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsMachine::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsMachine.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsMachine::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} + +// SIGNAL 0 +void SettingsMachine::currentMachineChanged(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp.d new file mode 100644 index 000000000..09a1994a7 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp new file mode 100644 index 000000000..6cad4e19d --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp @@ -0,0 +1,152 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsnetwork.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsnetwork.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsnetwork.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsNetwork_t { + QByteArrayData data[13]; + char stringdata0[225]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsNetwork_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsNetwork_t qt_meta_stringdata_SettingsNetwork = { + { +QT_MOC_LITERAL(0, 0, 15), // "SettingsNetwork" +QT_MOC_LITERAL(1, 16, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 40, 0), // "" +QT_MOC_LITERAL(3, 41, 9), // "machineId" +QT_MOC_LITERAL(4, 51, 26), // "on_pushButtonConf1_clicked" +QT_MOC_LITERAL(5, 78, 26), // "on_pushButtonConf2_clicked" +QT_MOC_LITERAL(6, 105, 26), // "on_pushButtonConf3_clicked" +QT_MOC_LITERAL(7, 132, 26), // "on_pushButtonConf4_clicked" +QT_MOC_LITERAL(8, 159, 20), // "on_comboIndexChanged" +QT_MOC_LITERAL(9, 180, 5), // "index" +QT_MOC_LITERAL(10, 186, 14), // "enableElements" +QT_MOC_LITERAL(11, 201, 20), // "Ui::SettingsNetwork*" +QT_MOC_LITERAL(12, 222, 2) // "ui" + + }, + "SettingsNetwork\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConf1_clicked\0" + "on_pushButtonConf2_clicked\0" + "on_pushButtonConf3_clicked\0" + "on_pushButtonConf4_clicked\0" + "on_comboIndexChanged\0index\0enableElements\0" + "Ui::SettingsNetwork*\0ui" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsNetwork[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 49, 2, 0x0a /* Public */, + 4, 0, 52, 2, 0x08 /* Private */, + 5, 0, 53, 2, 0x08 /* Private */, + 6, 0, 54, 2, 0x08 /* Private */, + 7, 0, 55, 2, 0x08 /* Private */, + 8, 1, 56, 2, 0x08 /* Private */, + 10, 1, 59, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, 0x80000000 | 11, 12, + + 0 // eod +}; + +void SettingsNetwork::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConf1_clicked(); break; + case 2: _t->on_pushButtonConf2_clicked(); break; + case 3: _t->on_pushButtonConf3_clicked(); break; + case 4: _t->on_pushButtonConf4_clicked(); break; + case 5: _t->on_comboIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->enableElements((*reinterpret_cast< Ui::SettingsNetwork*(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsNetwork::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsNetwork.data, + qt_meta_data_SettingsNetwork, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsNetwork::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsNetwork::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsNetwork.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsNetwork::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp.d new file mode 100644 index 000000000..298d844d7 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp new file mode 100644 index 000000000..cb0995cff --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp @@ -0,0 +1,171 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsotherperipherals.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsotherperipherals.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsotherperipherals.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsOtherPeripherals_t { + QByteArrayData data[15]; + char stringdata0[427]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsOtherPeripherals_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsOtherPeripherals_t qt_meta_stringdata_SettingsOtherPeripherals = { + { +QT_MOC_LITERAL(0, 0, 24), // "SettingsOtherPeripherals" +QT_MOC_LITERAL(1, 25, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 49, 0), // "" +QT_MOC_LITERAL(3, 50, 9), // "machineId" +QT_MOC_LITERAL(4, 60, 35), // "on_pushButtonConfigureCard4_c..." +QT_MOC_LITERAL(5, 96, 36), // "on_comboBoxCard4_currentIndex..." +QT_MOC_LITERAL(6, 133, 5), // "index" +QT_MOC_LITERAL(7, 139, 35), // "on_pushButtonConfigureCard3_c..." +QT_MOC_LITERAL(8, 175, 36), // "on_comboBoxCard3_currentIndex..." +QT_MOC_LITERAL(9, 212, 35), // "on_pushButtonConfigureCard2_c..." +QT_MOC_LITERAL(10, 248, 36), // "on_comboBoxCard2_currentIndex..." +QT_MOC_LITERAL(11, 285, 35), // "on_pushButtonConfigureCard1_c..." +QT_MOC_LITERAL(12, 321, 36), // "on_comboBoxCard1_currentIndex..." +QT_MOC_LITERAL(13, 358, 33), // "on_pushButtonConfigureRTC_cli..." +QT_MOC_LITERAL(14, 392, 34) // "on_comboBoxRTC_currentIndexCh..." + + }, + "SettingsOtherPeripherals\0" + "onCurrentMachineChanged\0\0machineId\0" + "on_pushButtonConfigureCard4_clicked\0" + "on_comboBoxCard4_currentIndexChanged\0" + "index\0on_pushButtonConfigureCard3_clicked\0" + "on_comboBoxCard3_currentIndexChanged\0" + "on_pushButtonConfigureCard2_clicked\0" + "on_comboBoxCard2_currentIndexChanged\0" + "on_pushButtonConfigureCard1_clicked\0" + "on_comboBoxCard1_currentIndexChanged\0" + "on_pushButtonConfigureRTC_clicked\0" + "on_comboBoxRTC_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsOtherPeripherals[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 11, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 69, 2, 0x0a /* Public */, + 4, 0, 72, 2, 0x08 /* Private */, + 5, 1, 73, 2, 0x08 /* Private */, + 7, 0, 76, 2, 0x08 /* Private */, + 8, 1, 77, 2, 0x08 /* Private */, + 9, 0, 80, 2, 0x08 /* Private */, + 10, 1, 81, 2, 0x08 /* Private */, + 11, 0, 84, 2, 0x08 /* Private */, + 12, 1, 85, 2, 0x08 /* Private */, + 13, 0, 88, 2, 0x08 /* Private */, + 14, 1, 89, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + + 0 // eod +}; + +void SettingsOtherPeripherals::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureCard4_clicked(); break; + case 2: _t->on_comboBoxCard4_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_pushButtonConfigureCard3_clicked(); break; + case 4: _t->on_comboBoxCard3_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_pushButtonConfigureCard2_clicked(); break; + case 6: _t->on_comboBoxCard2_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_pushButtonConfigureCard1_clicked(); break; + case 8: _t->on_comboBoxCard1_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_pushButtonConfigureRTC_clicked(); break; + case 10: _t->on_comboBoxRTC_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsOtherPeripherals::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsOtherPeripherals.data, + qt_meta_data_SettingsOtherPeripherals, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsOtherPeripherals::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsOtherPeripherals::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsOtherPeripherals.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsOtherPeripherals::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 11) + qt_static_metacall(this, _c, _id, _a); + _id -= 11; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 11) + *reinterpret_cast(_a[0]) = -1; + _id -= 11; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp.d new file mode 100644 index 000000000..952d6b735 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp new file mode 100644 index 000000000..b68759700 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp @@ -0,0 +1,168 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsotherremovable.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsotherremovable.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsotherremovable.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsOtherRemovable_t { + QByteArrayData data[16]; + char stringdata0[338]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsOtherRemovable_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsOtherRemovable_t qt_meta_stringdata_SettingsOtherRemovable = { + { +QT_MOC_LITERAL(0, 0, 22), // "SettingsOtherRemovable" +QT_MOC_LITERAL(1, 23, 30), // "on_checkBoxZIP250_stateChanged" +QT_MOC_LITERAL(2, 54, 0), // "" +QT_MOC_LITERAL(3, 55, 4), // "arg1" +QT_MOC_LITERAL(4, 60, 31), // "on_comboBoxZIPChannel_activated" +QT_MOC_LITERAL(5, 92, 5), // "index" +QT_MOC_LITERAL(6, 98, 27), // "on_comboBoxZIPBus_activated" +QT_MOC_LITERAL(7, 126, 37), // "on_comboBoxZIPBus_currentInde..." +QT_MOC_LITERAL(8, 164, 27), // "on_comboBoxMOType_activated" +QT_MOC_LITERAL(9, 192, 30), // "on_comboBoxMOChannel_activated" +QT_MOC_LITERAL(10, 223, 26), // "on_comboBoxMOBus_activated" +QT_MOC_LITERAL(11, 250, 36), // "on_comboBoxMOBus_currentIndex..." +QT_MOC_LITERAL(12, 287, 14), // "onMORowChanged" +QT_MOC_LITERAL(13, 302, 11), // "QModelIndex" +QT_MOC_LITERAL(14, 314, 7), // "current" +QT_MOC_LITERAL(15, 322, 15) // "onZIPRowChanged" + + }, + "SettingsOtherRemovable\0" + "on_checkBoxZIP250_stateChanged\0\0arg1\0" + "on_comboBoxZIPChannel_activated\0index\0" + "on_comboBoxZIPBus_activated\0" + "on_comboBoxZIPBus_currentIndexChanged\0" + "on_comboBoxMOType_activated\0" + "on_comboBoxMOChannel_activated\0" + "on_comboBoxMOBus_activated\0" + "on_comboBoxMOBus_currentIndexChanged\0" + "onMORowChanged\0QModelIndex\0current\0" + "onZIPRowChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsOtherRemovable[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 10, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 64, 2, 0x08 /* Private */, + 4, 1, 67, 2, 0x08 /* Private */, + 6, 1, 70, 2, 0x08 /* Private */, + 7, 1, 73, 2, 0x08 /* Private */, + 8, 1, 76, 2, 0x08 /* Private */, + 9, 1, 79, 2, 0x08 /* Private */, + 10, 1, 82, 2, 0x08 /* Private */, + 11, 1, 85, 2, 0x08 /* Private */, + 12, 1, 88, 2, 0x08 /* Private */, + 15, 1, 91, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, 0x80000000 | 13, 14, + QMetaType::Void, 0x80000000 | 13, 14, + + 0 // eod +}; + +void SettingsOtherRemovable::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_checkBoxZIP250_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_comboBoxZIPChannel_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 2: _t->on_comboBoxZIPBus_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxZIPBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_comboBoxMOType_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxMOChannel_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxMOBus_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_comboBoxMOBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->onMORowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + case 9: _t->onZIPRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsOtherRemovable::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsOtherRemovable.data, + qt_meta_data_SettingsOtherRemovable, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsOtherRemovable::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsOtherRemovable::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsOtherRemovable.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsOtherRemovable::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 10) + qt_static_metacall(this, _c, _id, _a); + _id -= 10; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 10) + *reinterpret_cast(_a[0]) = -1; + _id -= 10; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp.d new file mode 100644 index 000000000..3c50a5e39 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp new file mode 100644 index 000000000..609f13f07 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp @@ -0,0 +1,175 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsports.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsports.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsports.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsPorts_t { + QByteArrayData data[16]; + char stringdata0[452]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsPorts_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsPorts_t qt_meta_stringdata_SettingsPorts = { + { +QT_MOC_LITERAL(0, 0, 13), // "SettingsPorts" +QT_MOC_LITERAL(1, 14, 34), // "on_checkBoxSerialPassThru4_cl..." +QT_MOC_LITERAL(2, 49, 0), // "" +QT_MOC_LITERAL(3, 50, 7), // "checked" +QT_MOC_LITERAL(4, 58, 34), // "on_checkBoxSerialPassThru3_cl..." +QT_MOC_LITERAL(5, 93, 34), // "on_checkBoxSerialPassThru2_cl..." +QT_MOC_LITERAL(6, 128, 36), // "on_pushButtonSerialPassThru4_..." +QT_MOC_LITERAL(7, 165, 36), // "on_pushButtonSerialPassThru3_..." +QT_MOC_LITERAL(8, 202, 36), // "on_pushButtonSerialPassThru2_..." +QT_MOC_LITERAL(9, 239, 36), // "on_pushButtonSerialPassThru1_..." +QT_MOC_LITERAL(10, 276, 34), // "on_checkBoxSerialPassThru1_cl..." +QT_MOC_LITERAL(11, 311, 33), // "on_checkBoxParallel3_stateCha..." +QT_MOC_LITERAL(12, 345, 4), // "arg1" +QT_MOC_LITERAL(13, 350, 33), // "on_checkBoxParallel2_stateCha..." +QT_MOC_LITERAL(14, 384, 33), // "on_checkBoxParallel1_stateCha..." +QT_MOC_LITERAL(15, 418, 33) // "on_checkBoxParallel4_stateCha..." + + }, + "SettingsPorts\0on_checkBoxSerialPassThru4_clicked\0" + "\0checked\0on_checkBoxSerialPassThru3_clicked\0" + "on_checkBoxSerialPassThru2_clicked\0" + "on_pushButtonSerialPassThru4_clicked\0" + "on_pushButtonSerialPassThru3_clicked\0" + "on_pushButtonSerialPassThru2_clicked\0" + "on_pushButtonSerialPassThru1_clicked\0" + "on_checkBoxSerialPassThru1_clicked\0" + "on_checkBoxParallel3_stateChanged\0" + "arg1\0on_checkBoxParallel2_stateChanged\0" + "on_checkBoxParallel1_stateChanged\0" + "on_checkBoxParallel4_stateChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsPorts[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 12, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 74, 2, 0x08 /* Private */, + 4, 1, 77, 2, 0x08 /* Private */, + 5, 1, 80, 2, 0x08 /* Private */, + 6, 0, 83, 2, 0x08 /* Private */, + 7, 0, 84, 2, 0x08 /* Private */, + 8, 0, 85, 2, 0x08 /* Private */, + 9, 0, 86, 2, 0x08 /* Private */, + 10, 1, 87, 2, 0x08 /* Private */, + 11, 1, 90, 2, 0x08 /* Private */, + 13, 1, 93, 2, 0x08 /* Private */, + 14, 1, 96, 2, 0x08 /* Private */, + 15, 1, 99, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, QMetaType::Int, 12, + QMetaType::Void, QMetaType::Int, 12, + QMetaType::Void, QMetaType::Int, 12, + QMetaType::Void, QMetaType::Int, 12, + + 0 // eod +}; + +void SettingsPorts::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_checkBoxSerialPassThru4_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 1: _t->on_checkBoxSerialPassThru3_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 2: _t->on_checkBoxSerialPassThru2_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 3: _t->on_pushButtonSerialPassThru4_clicked(); break; + case 4: _t->on_pushButtonSerialPassThru3_clicked(); break; + case 5: _t->on_pushButtonSerialPassThru2_clicked(); break; + case 6: _t->on_pushButtonSerialPassThru1_clicked(); break; + case 7: _t->on_checkBoxSerialPassThru1_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 8: _t->on_checkBoxParallel3_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_checkBoxParallel2_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 10: _t->on_checkBoxParallel1_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 11: _t->on_checkBoxParallel4_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsPorts::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsPorts.data, + qt_meta_data_SettingsPorts, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsPorts::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsPorts::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsPorts.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsPorts::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 12) + qt_static_metacall(this, _c, _id, _a); + _id -= 12; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 12) + *reinterpret_cast(_a[0]) = -1; + _id -= 12; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp.d new file mode 100644 index 000000000..d2ca9e21e --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp new file mode 100644 index 000000000..1a9ac5977 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp @@ -0,0 +1,191 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingssound.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingssound.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingssound.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsSound_t { + QByteArrayData data[20]; + char stringdata0[612]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsSound_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsSound_t qt_meta_stringdata_SettingsSound = { + { +QT_MOC_LITERAL(0, 0, 13), // "SettingsSound" +QT_MOC_LITERAL(1, 14, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 38, 0), // "" +QT_MOC_LITERAL(3, 39, 9), // "machineId" +QT_MOC_LITERAL(4, 49, 36), // "on_pushButtonConfigureMPU401_..." +QT_MOC_LITERAL(5, 86, 30), // "on_checkBoxMPU401_stateChanged" +QT_MOC_LITERAL(6, 117, 4), // "arg1" +QT_MOC_LITERAL(7, 122, 36), // "on_pushButtonConfigureMidiIn_..." +QT_MOC_LITERAL(8, 159, 37), // "on_pushButtonConfigureMidiOut..." +QT_MOC_LITERAL(9, 197, 37), // "on_comboBoxMidiIn_currentInde..." +QT_MOC_LITERAL(10, 235, 5), // "index" +QT_MOC_LITERAL(11, 241, 38), // "on_comboBoxMidiOut_currentInd..." +QT_MOC_LITERAL(12, 280, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(13, 321, 41), // "on_comboBoxSoundCard1_current..." +QT_MOC_LITERAL(14, 363, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(15, 404, 41), // "on_comboBoxSoundCard2_current..." +QT_MOC_LITERAL(16, 446, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(17, 487, 41), // "on_comboBoxSoundCard3_current..." +QT_MOC_LITERAL(18, 529, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(19, 570, 41) // "on_comboBoxSoundCard4_current..." + + }, + "SettingsSound\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConfigureMPU401_clicked\0" + "on_checkBoxMPU401_stateChanged\0arg1\0" + "on_pushButtonConfigureMidiIn_clicked\0" + "on_pushButtonConfigureMidiOut_clicked\0" + "on_comboBoxMidiIn_currentIndexChanged\0" + "index\0on_comboBoxMidiOut_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard1_clicked\0" + "on_comboBoxSoundCard1_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard2_clicked\0" + "on_comboBoxSoundCard2_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard3_clicked\0" + "on_comboBoxSoundCard3_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard4_clicked\0" + "on_comboBoxSoundCard4_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsSound[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 15, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 89, 2, 0x0a /* Public */, + 4, 0, 92, 2, 0x08 /* Private */, + 5, 1, 93, 2, 0x08 /* Private */, + 7, 0, 96, 2, 0x08 /* Private */, + 8, 0, 97, 2, 0x08 /* Private */, + 9, 1, 98, 2, 0x08 /* Private */, + 11, 1, 101, 2, 0x08 /* Private */, + 12, 0, 104, 2, 0x08 /* Private */, + 13, 1, 105, 2, 0x08 /* Private */, + 14, 0, 108, 2, 0x08 /* Private */, + 15, 1, 109, 2, 0x08 /* Private */, + 16, 0, 112, 2, 0x08 /* Private */, + 17, 1, 113, 2, 0x08 /* Private */, + 18, 0, 116, 2, 0x08 /* Private */, + 19, 1, 117, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + + 0 // eod +}; + +void SettingsSound::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureMPU401_clicked(); break; + case 2: _t->on_checkBoxMPU401_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_pushButtonConfigureMidiIn_clicked(); break; + case 4: _t->on_pushButtonConfigureMidiOut_clicked(); break; + case 5: _t->on_comboBoxMidiIn_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxMidiOut_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_pushButtonConfigureSoundCard1_clicked(); break; + case 8: _t->on_comboBoxSoundCard1_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_pushButtonConfigureSoundCard2_clicked(); break; + case 10: _t->on_comboBoxSoundCard2_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 11: _t->on_pushButtonConfigureSoundCard3_clicked(); break; + case 12: _t->on_comboBoxSoundCard3_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 13: _t->on_pushButtonConfigureSoundCard4_clicked(); break; + case 14: _t->on_comboBoxSoundCard4_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsSound::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsSound.data, + qt_meta_data_SettingsSound, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsSound::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsSound::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsSound.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsSound::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 15) + qt_static_metacall(this, _c, _id, _a); + _id -= 15; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 15) + *reinterpret_cast(_a[0]) = -1; + _id -= 15; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp.d new file mode 100644 index 000000000..3f76c1082 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp new file mode 100644 index 000000000..ffbde1624 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp @@ -0,0 +1,211 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsstoragecontrollers.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsstoragecontrollers.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsstoragecontrollers.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsStorageControllers_t { + QByteArrayData data[24]; + char stringdata0[663]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsStorageControllers_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsStorageControllers_t qt_meta_stringdata_SettingsStorageControllers = { + { +QT_MOC_LITERAL(0, 0, 26), // "SettingsStorageControllers" +QT_MOC_LITERAL(1, 27, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 51, 0), // "" +QT_MOC_LITERAL(3, 52, 9), // "machineId" +QT_MOC_LITERAL(4, 62, 26), // "on_pushButtonSCSI4_clicked" +QT_MOC_LITERAL(5, 89, 26), // "on_pushButtonSCSI3_clicked" +QT_MOC_LITERAL(6, 116, 26), // "on_pushButtonSCSI2_clicked" +QT_MOC_LITERAL(7, 143, 26), // "on_pushButtonSCSI1_clicked" +QT_MOC_LITERAL(8, 170, 36), // "on_comboBoxSCSI4_currentIndex..." +QT_MOC_LITERAL(9, 207, 5), // "index" +QT_MOC_LITERAL(10, 213, 36), // "on_comboBoxSCSI3_currentIndex..." +QT_MOC_LITERAL(11, 250, 36), // "on_comboBoxSCSI2_currentIndex..." +QT_MOC_LITERAL(12, 287, 36), // "on_comboBoxSCSI1_currentIndex..." +QT_MOC_LITERAL(13, 324, 34), // "on_pushButtonQuaternaryIDE_cl..." +QT_MOC_LITERAL(14, 359, 32), // "on_pushButtonTertiaryIDE_clicked" +QT_MOC_LITERAL(15, 392, 23), // "on_pushButtonFD_clicked" +QT_MOC_LITERAL(16, 416, 23), // "on_pushButtonHD_clicked" +QT_MOC_LITERAL(17, 440, 32), // "on_pushButtonCDInterface_clicked" +QT_MOC_LITERAL(18, 473, 37), // "on_checkBoxQuaternaryIDE_stat..." +QT_MOC_LITERAL(19, 511, 4), // "arg1" +QT_MOC_LITERAL(20, 516, 35), // "on_checkBoxTertiaryIDE_stateC..." +QT_MOC_LITERAL(21, 552, 33), // "on_comboBoxFD_currentIndexCha..." +QT_MOC_LITERAL(22, 586, 33), // "on_comboBoxHD_currentIndexCha..." +QT_MOC_LITERAL(23, 620, 42) // "on_comboBoxCDInterface_curren..." + + }, + "SettingsStorageControllers\0" + "onCurrentMachineChanged\0\0machineId\0" + "on_pushButtonSCSI4_clicked\0" + "on_pushButtonSCSI3_clicked\0" + "on_pushButtonSCSI2_clicked\0" + "on_pushButtonSCSI1_clicked\0" + "on_comboBoxSCSI4_currentIndexChanged\0" + "index\0on_comboBoxSCSI3_currentIndexChanged\0" + "on_comboBoxSCSI2_currentIndexChanged\0" + "on_comboBoxSCSI1_currentIndexChanged\0" + "on_pushButtonQuaternaryIDE_clicked\0" + "on_pushButtonTertiaryIDE_clicked\0" + "on_pushButtonFD_clicked\0on_pushButtonHD_clicked\0" + "on_pushButtonCDInterface_clicked\0" + "on_checkBoxQuaternaryIDE_stateChanged\0" + "arg1\0on_checkBoxTertiaryIDE_stateChanged\0" + "on_comboBoxFD_currentIndexChanged\0" + "on_comboBoxHD_currentIndexChanged\0" + "on_comboBoxCDInterface_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsStorageControllers[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 19, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 109, 2, 0x0a /* Public */, + 4, 0, 112, 2, 0x08 /* Private */, + 5, 0, 113, 2, 0x08 /* Private */, + 6, 0, 114, 2, 0x08 /* Private */, + 7, 0, 115, 2, 0x08 /* Private */, + 8, 1, 116, 2, 0x08 /* Private */, + 10, 1, 119, 2, 0x08 /* Private */, + 11, 1, 122, 2, 0x08 /* Private */, + 12, 1, 125, 2, 0x08 /* Private */, + 13, 0, 128, 2, 0x08 /* Private */, + 14, 0, 129, 2, 0x08 /* Private */, + 15, 0, 130, 2, 0x08 /* Private */, + 16, 0, 131, 2, 0x08 /* Private */, + 17, 0, 132, 2, 0x08 /* Private */, + 18, 1, 133, 2, 0x08 /* Private */, + 20, 1, 136, 2, 0x08 /* Private */, + 21, 1, 139, 2, 0x08 /* Private */, + 22, 1, 142, 2, 0x08 /* Private */, + 23, 1, 145, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 19, + QMetaType::Void, QMetaType::Int, 19, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + + 0 // eod +}; + +void SettingsStorageControllers::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonSCSI4_clicked(); break; + case 2: _t->on_pushButtonSCSI3_clicked(); break; + case 3: _t->on_pushButtonSCSI2_clicked(); break; + case 4: _t->on_pushButtonSCSI1_clicked(); break; + case 5: _t->on_comboBoxSCSI4_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxSCSI3_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_comboBoxSCSI2_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->on_comboBoxSCSI1_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_pushButtonQuaternaryIDE_clicked(); break; + case 10: _t->on_pushButtonTertiaryIDE_clicked(); break; + case 11: _t->on_pushButtonFD_clicked(); break; + case 12: _t->on_pushButtonHD_clicked(); break; + case 13: _t->on_pushButtonCDInterface_clicked(); break; + case 14: _t->on_checkBoxQuaternaryIDE_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 15: _t->on_checkBoxTertiaryIDE_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 16: _t->on_comboBoxFD_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 17: _t->on_comboBoxHD_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 18: _t->on_comboBoxCDInterface_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsStorageControllers::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsStorageControllers.data, + qt_meta_data_SettingsStorageControllers, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsStorageControllers::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsStorageControllers::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsStorageControllers.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsStorageControllers::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 19) + qt_static_metacall(this, _c, _id, _a); + _id -= 19; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 19) + *reinterpret_cast(_a[0]) = -1; + _id -= 19; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp.d new file mode 100644 index 000000000..5821ad1da --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp.d @@ -0,0 +1,288 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp new file mode 100644 index 000000000..b503068fd --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp @@ -0,0 +1,126 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_softwarerenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_softwarerenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_softwarerenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SoftwareRenderer_t { + QByteArrayData data[8]; + char stringdata0[41]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SoftwareRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SoftwareRenderer_t qt_meta_stringdata_SoftwareRenderer = { + { +QT_MOC_LITERAL(0, 0, 16), // "SoftwareRenderer" +QT_MOC_LITERAL(1, 17, 6), // "onBlit" +QT_MOC_LITERAL(2, 24, 0), // "" +QT_MOC_LITERAL(3, 25, 7), // "buf_idx" +QT_MOC_LITERAL(4, 33, 1), // "x" +QT_MOC_LITERAL(5, 35, 1), // "y" +QT_MOC_LITERAL(6, 37, 1), // "w" +QT_MOC_LITERAL(7, 39, 1) // "h" + + }, + "SoftwareRenderer\0onBlit\0\0buf_idx\0x\0y\0" + "w\0h" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SoftwareRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 5, 19, 2, 0x0a /* Public */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 3, 4, 5, 6, 7, + + 0 // eod +}; + +void SoftwareRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SoftwareRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SoftwareRenderer.data, + qt_meta_data_SoftwareRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SoftwareRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SoftwareRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SoftwareRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QRasterWindow::qt_metacast(_clname); +} + +int SoftwareRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QRasterWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp.d new file mode 100644 index 000000000..2ccd89931 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp.d @@ -0,0 +1,307 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMargins \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPaintDevice \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPaintDeviceWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QRasterWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevicewindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrasterwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurface.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp new file mode 100644 index 000000000..7065b488b --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp @@ -0,0 +1,124 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_soundgain.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_soundgain.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_soundgain.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SoundGain_t { + QByteArrayData data[5]; + char stringdata0[70]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SoundGain_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SoundGain_t qt_meta_stringdata_SoundGain = { + { +QT_MOC_LITERAL(0, 0, 9), // "SoundGain" +QT_MOC_LITERAL(1, 10, 30), // "on_verticalSlider_valueChanged" +QT_MOC_LITERAL(2, 41, 0), // "" +QT_MOC_LITERAL(3, 42, 5), // "value" +QT_MOC_LITERAL(4, 48, 21) // "on_SoundGain_rejected" + + }, + "SoundGain\0on_verticalSlider_valueChanged\0" + "\0value\0on_SoundGain_rejected" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SoundGain[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 24, 2, 0x08 /* Private */, + 4, 0, 27, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + + 0 // eod +}; + +void SoundGain::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_verticalSlider_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_SoundGain_rejected(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SoundGain::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SoundGain.data, + qt_meta_data_SoundGain, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SoundGain::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SoundGain::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SoundGain.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int SoundGain::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = -1; + _id -= 2; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp.d new file mode 100644 index 000000000..680046572 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp new file mode 100644 index 000000000..046b21556 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp @@ -0,0 +1,120 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_specifydimensions.h' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_specifydimensions.h" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_specifydimensions.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SpecifyDimensions_t { + QByteArrayData data[3]; + char stringdata0[49]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SpecifyDimensions_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SpecifyDimensions_t qt_meta_stringdata_SpecifyDimensions = { + { +QT_MOC_LITERAL(0, 0, 17), // "SpecifyDimensions" +QT_MOC_LITERAL(1, 18, 29), // "on_SpecifyDimensions_accepted" +QT_MOC_LITERAL(2, 48, 0) // "" + + }, + "SpecifyDimensions\0on_SpecifyDimensions_accepted\0" + "" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SpecifyDimensions[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 0, 19, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void SpecifyDimensions::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_SpecifyDimensions_accepted(); break; + default: ; + } + } + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject SpecifyDimensions::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SpecifyDimensions.data, + qt_meta_data_SpecifyDimensions, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SpecifyDimensions::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SpecifyDimensions::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SpecifyDimensions.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int SpecifyDimensions::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp.d new file mode 100644 index 000000000..fe6561b46 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.h \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp new file mode 100644 index 000000000..1454100e2 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp @@ -0,0 +1,248 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_unixmanagerfilter.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_unixmanagerfilter.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_unixmanagerfilter.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_UnixManagerSocket_t { + QByteArrayData data[11]; + char stringdata0[119]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_UnixManagerSocket_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_UnixManagerSocket_t qt_meta_stringdata_UnixManagerSocket = { + { +QT_MOC_LITERAL(0, 0, 17), // "UnixManagerSocket" +QT_MOC_LITERAL(1, 18, 5), // "pause" +QT_MOC_LITERAL(2, 24, 0), // "" +QT_MOC_LITERAL(3, 25, 10), // "ctrlaltdel" +QT_MOC_LITERAL(4, 36, 12), // "showsettings" +QT_MOC_LITERAL(5, 49, 7), // "resetVM" +QT_MOC_LITERAL(6, 57, 16), // "request_shutdown" +QT_MOC_LITERAL(7, 74, 14), // "force_shutdown" +QT_MOC_LITERAL(8, 89, 12), // "dialogstatus" +QT_MOC_LITERAL(9, 102, 4), // "open" +QT_MOC_LITERAL(10, 107, 11) // "readyToRead" + + }, + "UnixManagerSocket\0pause\0\0ctrlaltdel\0" + "showsettings\0resetVM\0request_shutdown\0" + "force_shutdown\0dialogstatus\0open\0" + "readyToRead" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_UnixManagerSocket[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 8, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 7, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 54, 2, 0x06 /* Public */, + 3, 0, 55, 2, 0x06 /* Public */, + 4, 0, 56, 2, 0x06 /* Public */, + 5, 0, 57, 2, 0x06 /* Public */, + 6, 0, 58, 2, 0x06 /* Public */, + 7, 0, 59, 2, 0x06 /* Public */, + 8, 1, 60, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 10, 0, 63, 2, 0x09 /* Protected */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 9, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void UnixManagerSocket::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->pause(); break; + case 1: _t->ctrlaltdel(); break; + case 2: _t->showsettings(); break; + case 3: _t->resetVM(); break; + case 4: _t->request_shutdown(); break; + case 5: _t->force_shutdown(); break; + case 6: _t->dialogstatus((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 7: _t->readyToRead(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::pause)) { + *result = 0; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::ctrlaltdel)) { + *result = 1; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::showsettings)) { + *result = 2; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::resetVM)) { + *result = 3; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::request_shutdown)) { + *result = 4; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::force_shutdown)) { + *result = 5; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::dialogstatus)) { + *result = 6; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject UnixManagerSocket::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_UnixManagerSocket.data, + qt_meta_data_UnixManagerSocket, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *UnixManagerSocket::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *UnixManagerSocket::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_UnixManagerSocket.stringdata0)) + return static_cast(this); + return QLocalSocket::qt_metacast(_clname); +} + +int UnixManagerSocket::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QLocalSocket::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 8) + qt_static_metacall(this, _c, _id, _a); + _id -= 8; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 8) + *reinterpret_cast(_a[0]) = -1; + _id -= 8; + } + return _id; +} + +// SIGNAL 0 +void UnixManagerSocket::pause() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void UnixManagerSocket::ctrlaltdel() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} + +// SIGNAL 2 +void UnixManagerSocket::showsettings() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} + +// SIGNAL 3 +void UnixManagerSocket::resetVM() +{ + QMetaObject::activate(this, &staticMetaObject, 3, nullptr); +} + +// SIGNAL 4 +void UnixManagerSocket::request_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 4, nullptr); +} + +// SIGNAL 5 +void UnixManagerSocket::force_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 5, nullptr); +} + +// SIGNAL 6 +void UnixManagerSocket::dialogstatus(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 6, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp.d new file mode 100644 index 000000000..e01983361 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp.d @@ -0,0 +1,270 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/QLocalSocket \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qabstractsocket.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qlocalsocket.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qtnetwork-config.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qtnetworkglobal.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp new file mode 100644 index 000000000..f880aad02 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp @@ -0,0 +1,167 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_vulkanwindowrenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_vulkanwindowrenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_vulkanwindowrenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_VulkanWindowRenderer_t { + QByteArrayData data[10]; + char stringdata0[83]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_VulkanWindowRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_VulkanWindowRenderer_t qt_meta_stringdata_VulkanWindowRenderer = { + { +QT_MOC_LITERAL(0, 0, 20), // "VulkanWindowRenderer" +QT_MOC_LITERAL(1, 21, 19), // "rendererInitialized" +QT_MOC_LITERAL(2, 41, 0), // "" +QT_MOC_LITERAL(3, 42, 17), // "errorInitializing" +QT_MOC_LITERAL(4, 60, 6), // "onBlit" +QT_MOC_LITERAL(5, 67, 7), // "buf_idx" +QT_MOC_LITERAL(6, 75, 1), // "x" +QT_MOC_LITERAL(7, 77, 1), // "y" +QT_MOC_LITERAL(8, 79, 1), // "w" +QT_MOC_LITERAL(9, 81, 1) // "h" + + }, + "VulkanWindowRenderer\0rendererInitialized\0" + "\0errorInitializing\0onBlit\0buf_idx\0x\0" + "y\0w\0h" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_VulkanWindowRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 3, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 2, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 29, 2, 0x06 /* Public */, + 3, 0, 30, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 5, 31, 2, 0x0a /* Public */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 5, 6, 7, 8, 9, + + 0 // eod +}; + +void VulkanWindowRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->rendererInitialized(); break; + case 1: _t->errorInitializing(); break; + case 2: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (VulkanWindowRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&VulkanWindowRenderer::rendererInitialized)) { + *result = 0; + return; + } + } + { + using _t = void (VulkanWindowRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&VulkanWindowRenderer::errorInitializing)) { + *result = 1; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject VulkanWindowRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_VulkanWindowRenderer.data, + qt_meta_data_VulkanWindowRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *VulkanWindowRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *VulkanWindowRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_VulkanWindowRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QVulkanWindow::qt_metacast(_clname); +} + +int VulkanWindowRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QVulkanWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 3) + *reinterpret_cast(_a[0]) = -1; + _id -= 3; + } + return _id; +} + +// SIGNAL 0 +void VulkanWindowRenderer::rendererInitialized() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void VulkanWindowRenderer::errorInitializing() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp.d new file mode 100644 index 000000000..3ad155bdb --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp.d @@ -0,0 +1,327 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h264std.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h264std_decode.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h265std.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h265std_decode.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codecs_common.h \ + C:/msys64/mingw32/include/vulkan/vk_platform.h \ + C:/msys64/mingw32/include/vulkan/vulkan.h \ + C:/msys64/mingw32/include/vulkan/vulkan_core.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMargins \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversionnumber.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/QVulkanWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qquaternion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurface.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector3d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector4d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvulkaninstance.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvulkanwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.hpp diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp new file mode 100644 index 000000000..ca9497512 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp @@ -0,0 +1,241 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_winmanagerfilter.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_winmanagerfilter.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_winmanagerfilter.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_WindowsManagerFilter_t { + QByteArrayData data[10]; + char stringdata0[108]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_WindowsManagerFilter_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_WindowsManagerFilter_t qt_meta_stringdata_WindowsManagerFilter = { + { +QT_MOC_LITERAL(0, 0, 20), // "WindowsManagerFilter" +QT_MOC_LITERAL(1, 21, 5), // "pause" +QT_MOC_LITERAL(2, 27, 0), // "" +QT_MOC_LITERAL(3, 28, 10), // "ctrlaltdel" +QT_MOC_LITERAL(4, 39, 12), // "showsettings" +QT_MOC_LITERAL(5, 52, 5), // "reset" +QT_MOC_LITERAL(6, 58, 16), // "request_shutdown" +QT_MOC_LITERAL(7, 75, 14), // "force_shutdown" +QT_MOC_LITERAL(8, 90, 12), // "dialogstatus" +QT_MOC_LITERAL(9, 103, 4) // "open" + + }, + "WindowsManagerFilter\0pause\0\0ctrlaltdel\0" + "showsettings\0reset\0request_shutdown\0" + "force_shutdown\0dialogstatus\0open" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_WindowsManagerFilter[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 7, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 49, 2, 0x06 /* Public */, + 3, 0, 50, 2, 0x06 /* Public */, + 4, 0, 51, 2, 0x06 /* Public */, + 5, 0, 52, 2, 0x06 /* Public */, + 6, 0, 53, 2, 0x06 /* Public */, + 7, 0, 54, 2, 0x06 /* Public */, + 8, 1, 55, 2, 0x06 /* Public */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 9, + + 0 // eod +}; + +void WindowsManagerFilter::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->pause(); break; + case 1: _t->ctrlaltdel(); break; + case 2: _t->showsettings(); break; + case 3: _t->reset(); break; + case 4: _t->request_shutdown(); break; + case 5: _t->force_shutdown(); break; + case 6: _t->dialogstatus((*reinterpret_cast< bool(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::pause)) { + *result = 0; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::ctrlaltdel)) { + *result = 1; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::showsettings)) { + *result = 2; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::reset)) { + *result = 3; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::request_shutdown)) { + *result = 4; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::force_shutdown)) { + *result = 5; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::dialogstatus)) { + *result = 6; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject WindowsManagerFilter::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_WindowsManagerFilter.data, + qt_meta_data_WindowsManagerFilter, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *WindowsManagerFilter::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *WindowsManagerFilter::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_WindowsManagerFilter.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QAbstractNativeEventFilter")) + return static_cast< QAbstractNativeEventFilter*>(this); + return QObject::qt_metacast(_clname); +} + +int WindowsManagerFilter::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} + +// SIGNAL 0 +void WindowsManagerFilter::pause() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void WindowsManagerFilter::ctrlaltdel() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} + +// SIGNAL 2 +void WindowsManagerFilter::showsettings() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} + +// SIGNAL 3 +void WindowsManagerFilter::reset() +{ + QMetaObject::activate(this, &staticMetaObject, 3, nullptr); +} + +// SIGNAL 4 +void WindowsManagerFilter::request_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 4, nullptr); +} + +// SIGNAL 5 +void WindowsManagerFilter::force_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 5, nullptr); +} + +// SIGNAL 6 +void WindowsManagerFilter::dialogstatus(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 6, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp.d new file mode 100644 index 000000000..34744c03a --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp.d @@ -0,0 +1,229 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QAbstractNativeEventFilter \ + C:/msys64/mingw32/qt5-static/include/QtCore/QByteArray \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/qabstractnativeeventfilter.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp new file mode 100644 index 000000000..b91bc45b2 --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp @@ -0,0 +1,97 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_winrawinputfilter.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_winrawinputfilter.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_winrawinputfilter.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_WindowsRawInputFilter_t { + QByteArrayData data[1]; + char stringdata0[22]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_WindowsRawInputFilter_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_WindowsRawInputFilter_t qt_meta_stringdata_WindowsRawInputFilter = { + { +QT_MOC_LITERAL(0, 0, 21) // "WindowsRawInputFilter" + + }, + "WindowsRawInputFilter" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_WindowsRawInputFilter[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void WindowsRawInputFilter::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject WindowsRawInputFilter::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_WindowsRawInputFilter.data, + qt_meta_data_WindowsRawInputFilter, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *WindowsRawInputFilter::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *WindowsRawInputFilter::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_WindowsRawInputFilter.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QAbstractNativeEventFilter")) + return static_cast< QAbstractNativeEventFilter*>(this); + return QObject::qt_metacast(_clname); +} + +int WindowsRawInputFilter::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp.d b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp.d new file mode 100644 index 000000000..921bfe07f --- /dev/null +++ b/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp.d @@ -0,0 +1,452 @@ +K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QAbstractNativeEventFilter \ + C:/msys64/mingw32/qt5-static/include/QtCore/QByteArray \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/qabstractnativeeventfilter.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QFocusEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QLabel \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QMainWindow \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qframe.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qlabel.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qmainwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtabwidget.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.hpp diff --git a/src/build/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp b/src/build/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp new file mode 100644 index 000000000..67db6ac9f --- /dev/null +++ b/src/build/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp @@ -0,0 +1,25777 @@ +/**************************************************************************** +** Resource object code +** +** Created by: The Resource Compiler for Qt version 5.15.10 +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +static const unsigned char qt_resource_data[] = { + // K:/emu_dev/86Box_clean_ex_k/src/qt/texture_vert.spv + 0x0,0x0,0x3,0xc8, + 0x3, + 0x2,0x23,0x7,0x0,0x0,0x1,0x0,0x1,0x0,0x8,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1, + 0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0, + 0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, + 0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0, + 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x1b, + 0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x5, + 0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5, + 0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x76,0x5f,0x74,0x65,0x78,0x63,0x6f,0x6f,0x72, + 0x64,0x0,0x0,0x5,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x74,0x65,0x78,0x63,0x6f, + 0x6f,0x72,0x64,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0xe,0x0,0x0,0x0,0x67, + 0x6c,0x5f,0x50,0x65,0x72,0x56,0x65,0x72,0x74,0x65,0x78,0x0,0x0,0x0,0x0,0x6, + 0x0,0x6,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f, + 0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x5,0x0,0x3,0x0,0x10,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x3,0x0,0x14,0x0,0x0,0x0,0x62,0x75,0x66,0x0,0x6, + 0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x70,0x0,0x5, + 0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x75,0x62,0x75,0x66,0x0,0x0,0x0,0x0,0x5, + 0x0,0x5,0x0,0x1b,0x0,0x0,0x0,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0, + 0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0x2, + 0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x14, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x22, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x21, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x1b,0x0,0x0,0x0,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21, + 0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6, + 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0xb, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0xd, + 0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe, + 0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x18,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x14,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x15,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x3b, + 0x0,0x4,0x0,0x15,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x17,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x3b, + 0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x1e,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x36, + 0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7, + 0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9, + 0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x17,0x0,0x0,0x0,0x18, + 0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x13, + 0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xd, + 0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x91,0x0,0x5,0x0,0xd, + 0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x41, + 0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12, + 0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x1f,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xfd, + 0x0,0x1,0x0,0x38,0x0,0x1,0x0, + // K:/emu_dev/86Box_clean_ex_k/src/qt/texture_frag.spv + 0x0,0x0,0x2,0x2c, + 0x3, + 0x2,0x23,0x7,0x0,0x0,0x1,0x0,0x1,0x0,0x8,0x0,0x14,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1, + 0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0, + 0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, + 0x0,0x7,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0, + 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x10,0x0,0x3,0x0,0x4, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xb8, + 0x1,0x0,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0, + 0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x66,0x72,0x61,0x67,0x43, + 0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x5,0x0,0x3,0x0,0xd,0x0,0x0,0x0,0x74, + 0x65,0x78,0x0,0x5,0x0,0x5,0x0,0x11,0x0,0x0,0x0,0x76,0x5f,0x74,0x65,0x78, + 0x63,0x6f,0x6f,0x72,0x64,0x0,0x0,0x47,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x22, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x21, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21, + 0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6, + 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x19,0x0,0x9,0x0,0xa,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x3,0x0,0xb, + 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0xd, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x11, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5, + 0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xd, + 0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x11, + 0x0,0x0,0x0,0x57,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xe, + 0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0x13, + 0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom.ico + 0x0,0x0,0x4,0x13, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xe5,0x5a,0xbd,0x6e,0xdc,0x30,0xc,0xe6,0x21,0x41,0xe, + 0x41,0x87,0xcb,0x90,0x21,0x5b,0x6e,0xec,0xd8,0x7,0x28,0x90,0x4c,0x45,0x1f,0xa3, + 0x53,0xd1,0xa7,0x68,0xdc,0xad,0x63,0x1f,0xa3,0x53,0xe7,0x8c,0x79,0x94,0x7b,0x82, + 0xe2,0xc6,0xc,0x41,0x58,0xd1,0xb6,0x6c,0x89,0x22,0x29,0xca,0x67,0x14,0x28,0x2a, + 0x83,0xb8,0xd8,0x16,0xbf,0x8f,0xfa,0xfb,0x44,0x19,0x1,0xd8,0xc0,0x39,0x5c,0x5d, + 0x41,0xf8,0xdd,0xc3,0x97,0x73,0x80,0xf,0x0,0x70,0x7d,0x3d,0xdc,0x3f,0x5e,0x0, + 0xfc,0xa,0xcf,0x6e,0x6e,0x86,0xfb,0xef,0x97,0x0,0x9f,0xdf,0x0,0xec,0xf7,0xc3, + 0xfd,0xcf,0xe0,0xf7,0x3b,0xd4,0x7d,0x1b,0x7c,0xc2,0x9f,0xe1,0xc9,0xf0,0x9c,0xca, + 0xfd,0x39,0x78,0xb,0x2a,0x66,0x97,0xae,0xc3,0xde,0x70,0x2e,0x30,0x5d,0x68,0xe3, + 0x4,0xbf,0xa1,0xfe,0x6c,0xdc,0x1f,0x1f,0x3f,0xf6,0x56,0x60,0x24,0xbe,0xe9,0xef, + 0xec,0x9f,0xf8,0x46,0xfc,0x14,0x63,0x8c,0x5b,0xc2,0x48,0xfd,0xd3,0xd8,0x26,0xff, + 0xa4,0xcd,0x5,0x46,0xc4,0xe5,0xbe,0x29,0x46,0xe2,0x9b,0x61,0xd0,0x7d,0xec,0xaf, + 0xf8,0x4e,0xf3,0x17,0x30,0x58,0x1f,0xcd,0xf5,0x78,0x1d,0x86,0xdd,0xc7,0x6a,0xf9, + 0xa7,0x3c,0x89,0x7f,0xd1,0xbf,0x2c,0xfe,0x69,0x3c,0x4,0xfe,0xc2,0x37,0xf6,0x3b, + 0x9b,0x4f,0xc0,0x31,0xd2,0x31,0xe0,0xbe,0xf4,0x17,0xe1,0x16,0xf3,0x69,0xfc,0xe5, + 0xe3,0xcf,0xfc,0x63,0x4c,0x88,0x79,0x9f,0x4f,0xf7,0xc2,0x1c,0x94,0xb8,0xb9,0xbf, + 0xe8,0xcb,0xe7,0x61,0xc2,0x8d,0xa5,0x9f,0x7f,0x1d,0x72,0x13,0xca,0xf3,0x2d,0xe2, + 0x61,0x8b,0xf8,0x74,0x86,0xd8,0x6d,0x6,0xb,0x14,0xbd,0x6d,0xba,0xc1,0xe2,0x7d, + 0x7c,0x4f,0x75,0xc9,0x87,0x7c,0x49,0x67,0x82,0xdc,0xf4,0x7a,0x13,0x75,0xe6,0xc7, + 0x45,0x35,0x42,0x5e,0x96,0xe9,0x8d,0xd6,0x6e,0x36,0x5e,0x18,0xc7,0x65,0x81,0x8e, + 0x49,0x58,0x13,0x5e,0x5c,0x2f,0x8d,0xba,0xe6,0xd1,0x38,0x51,0xe7,0x62,0x6c,0xca, + 0xbc,0x92,0x62,0x33,0xf1,0x14,0xdd,0x13,0xe7,0x3b,0x8f,0x4d,0x9a,0xcb,0x9a,0xe, + 0x22,0x16,0x73,0x51,0xc4,0x4a,0xf1,0x34,0x5d,0x8c,0xcf,0xf8,0x5c,0xf1,0xe8,0xac, + 0xa4,0x93,0xa5,0xd6,0xc5,0x52,0xd7,0x5d,0x8e,0x95,0xc7,0xb6,0xc,0x8f,0xdb,0x8a, + 0x78,0x8a,0xb6,0x97,0x78,0x86,0xce,0x57,0xb5,0x9e,0x69,0xbe,0xd9,0x3f,0xa2,0xf6, + 0x8f,0x17,0xd7,0xae,0x74,0x7e,0x6b,0x7d,0x5d,0xcc,0x1,0xd0,0xb5,0x34,0xb9,0xcf, + 0x30,0x3d,0xba,0x6e,0x68,0x7b,0x86,0xa9,0xae,0x5f,0x19,0x4b,0xc2,0xcb,0xd6,0x50, + 0xe3,0xbe,0xa1,0xe1,0x81,0xa5,0x57,0x12,0xae,0x86,0x77,0xaa,0x4e,0x3b,0xf6,0xa7, + 0x58,0x5e,0x69,0xbf,0x9,0x7b,0xcf,0x1,0x1e,0xf0,0x9,0xee,0x7a,0xeb,0xe0,0xb6, + 0x37,0x80,0x1d,0xc2,0x91,0x59,0x78,0x16,0xdf,0xc7,0xfa,0xe4,0x4b,0x18,0x84,0x45, + 0xfb,0x55,0x48,0xa1,0xe1,0x1d,0xcc,0xfb,0xd6,0xa7,0xcb,0xe6,0x96,0xc4,0xb2,0xce, + 0xfe,0x95,0x16,0x65,0xee,0x63,0xba,0x46,0x96,0x72,0x29,0xba,0x91,0xe3,0x63,0x7d, + 0x2f,0x5a,0x80,0xad,0xe2,0x5b,0xf3,0xbb,0x82,0x9d,0xaf,0x13,0x5,0xdb,0xb3,0x86, + 0x2a,0x6b,0x50,0xc2,0x37,0xd6,0x57,0x8e,0x5d,0xd9,0x67,0x33,0xed,0xb0,0xb0,0x25, + 0xe,0x6b,0xdf,0x8d,0x26,0xe8,0x69,0x13,0x7e,0xe5,0x8c,0x3,0x82,0xfe,0x9b,0x3c, + 0xca,0xf9,0x89,0x73,0x2c,0xda,0xff,0x52,0xe,0x6b,0x9f,0xd6,0xb1,0x7d,0x1c,0xb5, + 0xf7,0xff,0x30,0x7e,0x25,0x57,0xc8,0xf1,0x9d,0x79,0x43,0x86,0xed,0x1c,0xdf,0x58, + 0x6a,0x79,0x84,0xba,0x6e,0x2a,0xf3,0xb3,0x98,0xcb,0x52,0x4c,0x62,0x9e,0x12,0xb5, + 0x0,0xe6,0xbe,0x52,0xd6,0x97,0xc8,0x61,0xe6,0x2d,0x39,0xb6,0x79,0x96,0xd4,0x38, + 0xd4,0x3c,0x66,0xc6,0x6e,0xc1,0xcf,0x34,0xc5,0xd4,0x50,0x1,0xdb,0x89,0x6f,0x62, + 0xb,0x1c,0xee,0x7c,0xc7,0x8b,0x2d,0x8c,0xb7,0x1b,0x7f,0xc9,0x1e,0xec,0xcf,0xaf, + 0xd6,0xcb,0x25,0x9c,0xf9,0x56,0x2c,0xf8,0xd,0xf1,0x25,0xe4,0x4e,0xcf,0x21,0x8f, + 0x3a,0x86,0x9c,0xea,0x0,0xdb,0x90,0x4b,0x9d,0x85,0xbc,0x6a,0x33,0x19,0xbc,0xf, + 0xf1,0x7d,0x65,0x16,0x9e,0xa5,0x75,0xc8,0x87,0x7c,0x9,0x83,0xb0,0x8,0x93,0xb0, + 0x29,0xf,0xdb,0x7,0xbb,0x87,0x39,0xf,0xeb,0xae,0x4e,0x6a,0xed,0x14,0x7a,0xc5, + 0xd6,0x2f,0xc6,0xfe,0x3a,0x8f,0xef,0x78,0xad,0x19,0x4b,0x65,0xaf,0x45,0x89,0x7f, + 0x58,0x41,0xf5,0xef,0x17,0x1e,0x6e,0xc7,0xba,0x2e,0xf9,0xb1,0xfe,0x7d,0x62,0x65, + 0xee,0x2a,0x7f,0xa3,0x46,0x78,0xb8,0x73,0xed,0xac,0x70,0x7b,0xb5,0x24,0xcd,0x8f, + 0x56,0xe8,0xfb,0x26,0x3d,0x73,0xe4,0xb1,0x76,0xfb,0x1d,0xdc,0x56,0xc,0xce,0x5c, + 0x5a,0x6f,0x3f,0xfa,0xb8,0x25,0x7e,0x2b,0xf,0x76,0xb5,0xbf,0x81,0x5b,0x8a,0xc1, + 0xc8,0x93,0xd5,0x18,0x98,0xe6,0x37,0x71,0x4b,0xfc,0xde,0x18,0x96,0x9e,0xb,0x34, + 0x7e,0x2b,0xcf,0x94,0xf2,0x38,0x5d,0xd3,0xea,0x79,0xb5,0x14,0x83,0x75,0x8e,0x48, + 0x62,0x60,0xfc,0x5a,0x59,0xc6,0xef,0x88,0xc1,0xc1,0xdd,0x1e,0x43,0x4b,0xdd,0xff, + 0x98,0xdf,0x79,0x66,0xca,0xf9,0x3d,0x63,0xea,0xe0,0x77,0x9e,0xa9,0x32,0xee,0x6c, + 0xbe,0x5a,0xbf,0x15,0x7e,0xf1,0xcc,0xe5,0x58,0x7f,0x18,0xfd,0x3d,0xed,0xa7,0x52, + 0x3b,0x4b,0xf2,0x18,0x1c,0xfa,0x53,0x8d,0x41,0xd2,0xdf,0x91,0xd7,0xd6,0xd2,0xf1, + 0x32,0xce,0x85,0xae,0x18,0x94,0x73,0xa8,0x87,0xbb,0xe5,0xdc,0xa5,0xc6,0x20,0xec, + 0x81,0xae,0x76,0x37,0xf2,0x8b,0x31,0xa8,0xdf,0xcf,0x9d,0xdc,0x8d,0xfc,0x45,0xc, + 0x95,0x6f,0x85,0x1a,0xf7,0x29,0xfc,0x55,0x6e,0x31,0x6,0x85,0x7b,0x21,0x7f,0x95, + 0x3b,0x8b,0xa1,0xbc,0x9a,0xcf,0xe5,0x4b,0xb8,0x95,0x18,0x9a,0xcf,0xed,0xa7,0x70, + 0xa7,0x31,0x8c,0x71,0x2c,0xe2,0x5f,0xfb,0x1c,0x18,0x75,0xc2,0xe2,0xff,0x9b,0x67, + 0xe1,0x85,0xdf,0x1e,0xd2,0x82,0xc7,0x5d,0xff,0xcf,0x7,0xaf,0x0,0xf,0x2f,0x0, + 0x77,0xcf,0x0,0xb7,0x47,0x80,0xdd,0x1,0x60,0xfb,0x4,0x70,0x46,0xd6,0x1,0x6c, + 0xa2,0xf5,0x4f,0xb6,0xe1,0xed,0xee,0x98,0x1b,0x3d,0xb,0xef,0xd2,0xba,0xd1,0x9f, + 0xb0,0xa8,0x16,0x61,0x13,0x7,0x71,0xf5,0xff,0xf0,0x10,0xb8,0xff,0x0,0x10,0x91, + 0xe6,0x4e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge_empty.ico + 0x0,0x0,0x1,0xd7, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x57,0xbd,0x4e,0xc3,0x30,0x10,0x3e,0xa4,0xa8,0x52, + 0xc5,0x92,0xa1,0x43,0xc7,0x8c,0x8c,0x3c,0x42,0x27,0xde,0x20,0xea,0x18,0x94,0x1, + 0xf1,0x16,0xcd,0xc8,0xc8,0x23,0x74,0x60,0x40,0x19,0xe8,0xda,0x8d,0x3c,0xf,0x3, + 0x5b,0x16,0x24,0x64,0x2e,0x8d,0xac,0x12,0xb,0xc7,0x7f,0xe7,0xe0,0x80,0x4f,0xaa, + 0xbe,0xc6,0x8a,0x73,0xf7,0x9d,0x2f,0xf7,0x5d,0x0,0x2e,0x20,0x81,0x34,0x5,0xc4, + 0xc,0xee,0x13,0x80,0x1b,0x0,0x58,0xad,0xfa,0xeb,0xe3,0x2,0xe0,0x5,0xd7,0xd6, + 0xeb,0xfe,0xfa,0x61,0x9,0x70,0x77,0x9,0x90,0x65,0xfd,0xf5,0x33,0xee,0x7b,0xc7, + 0x7b,0xaf,0x70,0xf,0xfe,0xc5,0x95,0x7e,0xbd,0xb3,0x4d,0x2,0x3a,0xc6,0x14,0x28, + 0xb5,0xaa,0xaa,0x98,0xe,0x8e,0x59,0xd3,0x34,0xa7,0x7b,0x9e,0xf6,0xfb,0x1f,0x71, + 0x2c,0xe,0xfe,0x7c,0xd9,0x5e,0x13,0xff,0x22,0x9a,0xf8,0xe7,0x58,0x96,0xe5,0x0, + 0x4d,0xfc,0x33,0xb4,0xef,0xc8,0xd7,0xff,0x8b,0x7f,0x71,0xaf,0x89,0x7f,0xf1,0xbc, + 0xe7,0x58,0x7f,0x2e,0xfe,0x4d,0xde,0xbf,0xb6,0x60,0xec,0xed,0xc0,0x58,0xbb,0xb5, + 0xc3,0xae,0xcf,0x60,0xbb,0x39,0xf5,0x1b,0xde,0x67,0x1e,0x17,0x2a,0x96,0x3,0x1e, + 0xba,0x28,0x35,0x5d,0xde,0x94,0x75,0x40,0x59,0x17,0x14,0x75,0x42,0xd1,0xb7,0xf8, + 0xbd,0xe2,0xbb,0x27,0xbe,0x83,0x26,0xf1,0xc9,0x7a,0x1,0xc7,0x50,0xe2,0x13,0xfb, + 0x1d,0xc7,0x18,0x9f,0x5e,0x7c,0xa1,0x9f,0x2f,0x65,0x7c,0xb2,0x7e,0x42,0xd9,0xe7, + 0x43,0xeb,0x2f,0x14,0xf1,0xb9,0xf4,0xe7,0x36,0x47,0xbd,0xa9,0x51,0x77,0xf2,0x1d, + 0x9,0x76,0x7a,0x85,0x23,0x34,0x5c,0xc3,0x59,0xb7,0x6e,0x97,0xaa,0xac,0xc,0x78, + 0xda,0xa2,0xd4,0x6c,0xf3,0xe4,0x53,0xd7,0x7c,0xd6,0xa1,0x4f,0xdd,0xf3,0xa9,0x83, + 0x53,0xf4,0x25,0x9f,0x7d,0x74,0x2e,0xf1,0xcb,0x34,0x4f,0xf6,0x6d,0x12,0x5a,0xfc, + 0x53,0xe4,0x5f,0x37,0x47,0xa1,0xc6,0x3f,0xf7,0xfc,0xc7,0xf8,0xe5,0xf1,0xeb,0xea, + 0x95,0xcf,0xb9,0x24,0x74,0xfd,0xf2,0x11,0x3f,0xe5,0xfc,0xd0,0xe6,0x5,0xce,0x4b, + 0x7,0x9c,0x9b,0xb6,0x5e,0xb0,0x9b,0xc3,0x32,0xfc,0x6d,0xe0,0x3c,0x87,0x55,0xa9, + 0x2a,0x8b,0x3,0x13,0xf3,0xe2,0x8a,0xda,0x46,0x95,0x6f,0x93,0xf9,0x4d,0x34,0xd7, + 0x7a,0x32,0xa9,0x2f,0x19,0x7f,0x2a,0xdf,0x91,0xbf,0x3b,0x7f,0xdd,0x79,0xd8,0x66, + 0x3e,0x56,0xf1,0xd7,0xd5,0x12,0x17,0xfd,0x92,0xf1,0x37,0xd5,0x33,0x1b,0x7d,0x8b, + 0xfc,0x23,0xff,0x31,0xfe,0xba,0xb3,0xb8,0xcb,0xf7,0x4b,0xc8,0xfc,0xe3,0xf9,0xc7, + 0xf3,0xb7,0xc1,0xc8,0x3f,0xf2,0xff,0xb,0xfc,0x6d,0xe7,0xfd,0x38,0xff,0x46,0xfe, + 0x73,0xe6,0x3f,0xc5,0xf7,0xef,0x67,0x9e,0xef,0x3e,0xea,0xfa,0x15,0xb1,0xf8,0xd, + 0xfc,0x2,0x6,0x6b,0xd1,0x89, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/ports.ico + 0x0,0x0,0x5,0x32, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x57,0x4f,0x48,0xa3,0x47,0x14,0x9f,0x4c,0xbe,0xc6, + 0x2e,0x6b,0x1a,0xf,0x2b,0x88,0x42,0x57,0xf1,0x60,0x3d,0x28,0x7b,0xf3,0x24,0x9, + 0xb,0xa6,0x3d,0x2d,0x14,0x29,0x78,0x8,0x34,0x5,0x6d,0x8b,0xff,0x50,0x50,0x5c, + 0x51,0x13,0xbd,0x2c,0xbd,0x2c,0x88,0x42,0x24,0x1e,0xfc,0x13,0x4,0x95,0x62,0x4f, + 0x1e,0x3c,0x54,0x13,0x58,0xec,0xdd,0x5b,0xf,0x3d,0x2c,0xdd,0xfb,0x76,0x6f,0x2e, + 0xc5,0x3a,0x9d,0x49,0xf2,0xe2,0xcb,0x7c,0x33,0xf3,0xcd,0x67,0x62,0xbb,0xb,0x3e, + 0x78,0x24,0x99,0x79,0xef,0xf7,0xde,0x9b,0x79,0xf3,0xde,0xb,0x21,0x1,0xe2,0x90, + 0xa6,0x26,0xc2,0x3f,0xdb,0xc9,0x8f,0xe,0x21,0x71,0x42,0xc8,0xa3,0x47,0xa5,0xdf, + 0x27,0x21,0x42,0x7e,0xe1,0x6b,0x2d,0x2d,0xa5,0xdf,0x3f,0x3d,0x20,0xe4,0xfb,0x87, + 0x84,0xb4,0xb7,0x97,0x7e,0x1f,0x70,0xbd,0xb7,0x5c,0xf6,0xb,0xae,0xc3,0xbf,0xf2, + 0x95,0xd2,0xba,0xa0,0x98,0x43,0x5c,0xd4,0xd7,0xd7,0x47,0x17,0x17,0x17,0xdb,0xf8, + 0x57,0x6,0x6b,0x4b,0x4b,0x4b,0xce,0xf2,0xf2,0x32,0x2b,0x14,0xa,0x4c,0x7c,0x8a, + 0xbd,0x81,0x81,0x1,0xac,0xcd,0x82,0xc1,0x60,0x5b,0x47,0x47,0x7,0xdd,0xdd,0xdd, + 0xd,0xa,0x19,0x90,0x3,0x1,0x59,0x1f,0xaf,0xc3,0xda,0xf0,0xf0,0xb0,0xb3,0xb7, + 0xb7,0x57,0xd4,0x17,0x84,0xe5,0xca,0xdf,0x31,0x57,0xf4,0x41,0x76,0x7c,0x7c,0xdc, + 0x19,0x1c,0x1c,0x74,0x64,0xfb,0xf0,0x1b,0xb3,0xbc,0x27,0x7e,0x73,0xff,0x9d,0x8d, + 0x8d,0x8d,0x20,0xda,0x67,0xd8,0x6,0x90,0xac,0xf,0xb2,0x89,0x44,0xc2,0x39,0x3c, + 0x3c,0xac,0x9c,0x95,0xac,0xaf,0xb3,0xf,0xb2,0xa3,0xa3,0xa3,0x46,0x7d,0x9d,0x7d, + 0x90,0x9d,0x99,0x99,0x71,0xe,0xe,0xe,0xb4,0xfa,0x62,0x4d,0xbe,0x3,0x2c,0xbb, + 0xb0,0xb0,0xe0,0xec,0xef,0xef,0x1b,0xf5,0xcf,0xce,0xce,0xb4,0xfa,0x63,0x63,0x63, + 0x4e,0x26,0x93,0x51,0x9e,0x3f,0xe8,0x9f,0x9e,0x9e,0x6a,0xcf,0x7f,0x68,0x68,0xe8, + 0x93,0x78,0x3c,0xee,0x28,0xee,0x5a,0x17,0x7f,0x15,0x77,0x77,0x77,0x17,0x6d,0xcf, + 0xce,0xce,0xfe,0xa1,0xba,0x73,0x88,0x5f,0xbe,0xb,0xec,0x83,0x7c,0x56,0x98,0x65, + 0x1c,0x79,0xf,0xf4,0x6b,0x61,0x9c,0xd7,0xe4,0xe6,0x47,0x29,0xc7,0x81,0x15,0x6f, + 0x8,0xbd,0x13,0x72,0x7c,0x7c,0x4c,0x89,0x4c,0x42,0x6,0xb3,0x86,0x5a,0x5a,0x18, + 0x6b,0x7c,0x52,0xe2,0x4f,0x9b,0xf4,0x2c,0xae,0x4,0xf3,0xef,0x6d,0x8c,0xfd,0x1a, + 0x65,0x4c,0xd4,0x19,0x5e,0x6e,0x8a,0xf5,0x6,0xea,0xcc,0x6a,0x48,0x6d,0xab,0xb5, + 0xb5,0x15,0xfc,0x2c,0xfa,0x13,0xe,0x87,0x2b,0x7e,0xeb,0xea,0xc5,0xc4,0xc4,0x44, + 0x95,0xe,0x60,0x70,0x39,0x7a,0x74,0x74,0x44,0x55,0xb5,0xc7,0x84,0xc7,0xdf,0xdc, + 0x67,0x62,0x6d,0x6a,0x6a,0xea,0x4a,0xac,0xb,0xc,0xfe,0x29,0x6a,0x40,0x80,0xe7, + 0x3a,0xb5,0xac,0x45,0x95,0xfd,0x91,0x91,0x91,0x8,0xd6,0x11,0x18,0xfc,0x53,0xe0, + 0xd0,0x8b,0x8b,0xb,0x97,0x7f,0x1e,0xb9,0xe0,0x7a,0x23,0x2,0xa3,0xec,0x1f,0x5d, + 0x5f,0x5f,0xa7,0xba,0x5a,0x25,0xe7,0x67,0x36,0x9b,0xfd,0x1b,0xcb,0x80,0x8e,0xc0, + 0x0,0xbc,0x9e,0x9e,0x1e,0xea,0x55,0x7b,0x80,0xb6,0xb6,0xb6,0xfe,0xc1,0x32,0xa0, + 0x23,0x30,0x0,0x8f,0xaf,0x69,0xf1,0x64,0xdc,0xed,0xed,0x6d,0x25,0x9e,0xc0,0x0, + 0xbc,0x7c,0x3e,0x6f,0xc4,0x3,0x36,0xe1,0x9,0xc,0x5b,0xff,0x30,0x73,0xbc,0x2b, + 0x83,0x7f,0xd4,0xcb,0x3f,0xf9,0x3e,0x3c,0xfc,0xab,0x1b,0x1e,0x9c,0x5f,0x2a,0x95, + 0xa2,0x90,0xcf,0xb5,0xe0,0x95,0xf3,0xb9,0x78,0x7e,0x9b,0x9b,0x9b,0xca,0x7c,0x56, + 0xe1,0xed,0xec,0xec,0x54,0xe1,0x81,0xe,0xb7,0x43,0x43,0xa1,0x50,0xb0,0xb7,0xb7, + 0x97,0x8a,0xd9,0x43,0xf5,0xae,0x0,0xf,0xa8,0xec,0xdf,0xb5,0x4a,0xb6,0xbf,0xbf, + 0x9f,0x36,0x37,0x37,0xd3,0xc9,0xc9,0x49,0x2a,0xdf,0x21,0xae,0xdf,0xb8,0x8e,0x3, + 0xa6,0xee,0xd,0x26,0x93,0x49,0x7a,0x79,0x79,0x19,0xd0,0xc5,0x66,0xd3,0x1f,0x70, + 0xed,0x59,0x5d,0x5d,0x15,0xb5,0xa0,0x82,0x57,0xb,0x9,0xbc,0xf3,0xf3,0x73,0xba, + 0xb2,0xb2,0x12,0xb0,0xed,0x31,0x5e,0x9c,0x4e,0xa7,0x3,0xa8,0xd6,0x41,0xbd,0xc0, + 0xb,0x25,0xdb,0x4c,0xdd,0x8f,0x94,0x3a,0x37,0xeb,0xc5,0xdc,0x9e,0xe1,0xfc,0xdd, + 0xcb,0x97,0xe,0xda,0x50,0xf6,0xa7,0xaf,0x52,0x29,0x87,0xcf,0x35,0x14,0xf4,0x60, + 0xfd,0xe7,0xf0,0xb7,0xac,0xa1,0x31,0xc2,0x42,0x4e,0x84,0x39,0xd4,0x8e,0x9,0x71, + 0xf3,0xdb,0x86,0x34,0x7b,0xd5,0x18,0x2d,0xf6,0x2d,0x3e,0x42,0x93,0x27,0xe4,0xa6, + 0x6f,0x25,0x1f,0xa8,0x22,0x70,0x51,0x55,0x9c,0xb9,0x5c,0xae,0xd2,0x9f,0xe4,0x7e, + 0x33,0x3d,0x3d,0x4d,0x8b,0xf0,0x48,0xb7,0xab,0xab,0xab,0xea,0xac,0xa5,0xb3,0x72, + 0xf5,0xab,0xf9,0xf9,0x79,0x38,0x33,0x57,0x9f,0x98,0x9b,0x9b,0x13,0x7b,0x54,0xa7, + 0xb,0x7b,0x18,0x1f,0x72,0x48,0x15,0x97,0xaa,0x5f,0x72,0xa,0x1a,0x74,0x5d,0x79, + 0xa3,0xd0,0xd7,0xf5,0x4e,0xd7,0x4c,0xe3,0xd7,0x7f,0x9b,0xdc,0xc6,0xb2,0xa,0xff, + 0x5d,0xf8,0x36,0xb5,0x4d,0x37,0x57,0xdb,0xf8,0x8f,0xe3,0xc6,0xf8,0x32,0xa9,0xf0, + 0xe5,0x33,0x53,0xe1,0xeb,0x6a,0xbd,0x5c,0x7b,0x4c,0xff,0xb,0x6e,0x8b,0xf,0x7c, + 0xd7,0xf8,0xb8,0xa6,0xd7,0xb,0xdf,0xe6,0x7e,0xef,0xf1,0x3f,0x7c,0xfc,0x5a,0xde, + 0xaf,0x8c,0xdf,0xd9,0xd9,0x29,0xff,0xaf,0xd2,0xce,0x2a,0xf2,0xbc,0x22,0xe1,0x2b, + 0x6b,0x5e,0x2c,0x16,0xab,0xfa,0xff,0xa3,0x62,0x8c,0x25,0xcf,0x2f,0xa6,0x19,0x46, + 0x60,0x26,0x12,0x89,0x2a,0x7c,0xd3,0x59,0xd8,0xcc,0x33,0x8a,0x33,0xb,0xc8,0xf8, + 0xaa,0x3a,0x66,0x62,0x15,0x1,0x3e,0x9e,0x4b,0x74,0xe7,0xe3,0x45,0x86,0xbe,0xa0, + 0x24,0xb1,0xb7,0xb6,0xb6,0x16,0x3e,0xc9,0xe7,0x9d,0xf5,0x6c,0xf6,0xa1,0x4e,0x5f, + 0x85,0x63,0xc2,0x45,0x32,0x62,0x6e,0xb,0x7c,0xf3,0xe2,0x5,0x4d,0x9f,0x9c,0x50, + 0x22,0xcf,0x56,0xac,0x7a,0xc6,0x12,0x32,0x5f,0x3e,0x7b,0x46,0x41,0xcf,0xb,0x1f, + 0xd3,0xd7,0xb9,0x5c,0xa0,0x6c,0x94,0x29,0x99,0xd3,0x40,0x26,0x63,0xc4,0xbc,0x7c, + 0xfa,0x3,0x7b,0xf3,0x34,0xce,0xde,0xbc,0xe2,0x4c,0x7e,0x63,0x7f,0x92,0xb8,0x2f, + 0x7e,0x4d,0x42,0xac,0x40,0x28,0xe2,0x20,0x7b,0x47,0xfe,0xe2,0x1c,0x61,0xd7,0x2b, + 0xe9,0xe2,0x1c,0xd6,0xce,0x39,0x46,0x6e,0xe6,0xb0,0xe5,0x26,0x3f,0x51,0x16,0x49, + 0x79,0xee,0x72,0xce,0xe3,0xdc,0xb5,0xc5,0xf0,0x22,0xf9,0xcd,0xe9,0xf6,0x4d,0x72, + 0x5e,0x18,0x5e,0xf6,0xf1,0x9b,0x51,0xed,0x79,0xc5,0x6f,0xc2,0xb0,0xb1,0xef,0x85, + 0x6b,0x63,0xbf,0xce,0xf1,0x9b,0xe6,0x4d,0x57,0x1d,0xae,0x67,0xfc,0x5e,0xf5,0x42, + 0x95,0xb,0xf5,0x8c,0xdf,0xa6,0xce,0xab,0x7a,0x5f,0x3d,0xe3,0x7,0xfb,0x3a,0xb2, + 0x9c,0x9d,0xad,0xed,0x13,0xcd,0x4c,0x6d,0xea,0x49,0xb2,0x7d,0x22,0xe5,0x84,0x1f, + 0xfb,0xb6,0x33,0xab,0xbc,0x87,0x75,0x14,0xb3,0x4d,0x5d,0xec,0xdb,0xc6,0x7f,0x57, + 0xf6,0xff,0xef,0xf8,0x55,0xfc,0x5f,0xd9,0xf7,0xf3,0xfe,0xee,0xed,0xdf,0xdb,0xbf, + 0xb7,0xff,0x71,0xda,0x47,0xfd,0xcb,0x65,0x5f,0x55,0x7b,0x75,0xfd,0xf,0x30,0x7c, + 0x92,0x6b,0xae,0xc1,0xf5,0x4f,0xf5,0x7f,0x4b,0xb2,0xaf,0x9c,0x89,0xfc,0xc6,0x2e, + 0xd7,0x57,0x2f,0xfb,0xba,0xfa,0xec,0xc7,0x7,0x9b,0xbb,0xd6,0xf9,0xe6,0x95,0x13, + 0x7e,0xec,0xeb,0xee,0xd8,0x8b,0x55,0xe4,0xd7,0xbe,0xa9,0xc7,0xda,0xbc,0x1,0xcd, + 0x1d,0xf8,0x22,0xac,0xa3,0x3b,0x13,0xaf,0x58,0x6f,0x99,0xfb,0x5a,0x7f,0x6c,0xb8, + 0x5e,0xf6,0x14,0xe,0x94,0xe2,0xd3,0xf1,0x2d,0x67,0x5d,0xbf,0xf6,0xb5,0xe7,0x7e, + 0xd7,0xf6,0xcb,0x3e,0x18,0xd9,0x27,0x5d,0xbf,0x7f,0x9c,0xbe,0x5a,0xfc,0x3c,0x7a, + 0xf5,0xbc,0xcc,0xc9,0x50,0xf4,0x2a,0x46,0x6b,0x67,0x42,0xa2,0xef,0x9,0x79,0x8c, + 0xf9,0xba,0x10,0x4c,0xb3,0xd7,0xd,0xac,0xc2,0xef,0x22,0xec,0x5f,0x96,0x6c,0xcf, + 0x66, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/network_active.ico + 0x0,0x0,0x4,0xb3, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x5a,0xbd,0x6e,0xdc,0x38,0x10,0x9e,0xc5,0x1a,0x31, + 0xe2,0x14,0x36,0x76,0x53,0xb8,0x5b,0x37,0x1,0xae,0xbc,0x37,0x88,0xab,0x7b,0x8e, + 0xab,0xe,0xf7,0xc,0x57,0xac,0x8,0xb8,0x49,0x15,0xe4,0x31,0xe,0x2e,0xae,0x4e, + 0x1a,0x7b,0xab,0x24,0x5d,0x9a,0x3c,0xc0,0x3e,0xc1,0xc1,0x65,0x3a,0xde,0x8c,0xa4, + 0x11,0x87,0xa3,0xa1,0x48,0xca,0xda,0xb,0x8d,0xf,0x6b,0x51,0x9a,0x6f,0x7e,0x44, + 0xce,0xc,0xd7,0x6,0x58,0xc1,0x19,0x5c,0x5d,0x1,0x7e,0xde,0xc0,0x9f,0x67,0x0, + 0xbf,0x1,0xc0,0xeb,0xd7,0xdd,0xf5,0xc7,0x17,0x0,0xff,0xe0,0xdc,0xf5,0x75,0x77, + 0xfd,0xee,0x25,0xc0,0x1f,0xaf,0x0,0x6e,0x6e,0xba,0xeb,0xbf,0x51,0xee,0x5f,0x7c, + 0xf6,0x17,0x94,0xc1,0x5f,0x71,0xa6,0x9b,0xa7,0x71,0x7b,0x6,0xc9,0xb1,0xbd,0xd8, + 0x78,0x82,0x71,0xcb,0x27,0x10,0xcb,0x79,0xef,0xc1,0x39,0xbf,0xc1,0xdf,0x37,0x1d, + 0x4f,0xb,0x87,0x73,0xce,0xf5,0x32,0x4e,0xa0,0xe7,0x68,0xf6,0x7b,0xdf,0x34,0xfb, + 0x48,0x9e,0xe6,0x48,0xee,0x70,0x38,0x74,0xb2,0x8e,0xee,0xe2,0x7d,0xf9,0xe3,0x62, + 0x3b,0x48,0x86,0xed,0x27,0xd9,0x4e,0x26,0xe8,0x2b,0x91,0xdf,0x8c,0xe4,0xfd,0xc0, + 0x31,0x25,0xcf,0x3e,0x6f,0x2f,0xb6,0x2d,0x48,0x9e,0x65,0xc9,0x7e,0xe9,0x3,0xf, + 0x96,0x6f,0x9a,0x26,0x82,0x6b,0x5c,0x2f,0xf,0xe1,0x39,0xc1,0x11,0xae,0x5d,0x2b, + 0xbf,0x47,0xbb,0x69,0x50,0xac,0xe8,0xba,0x8b,0x59,0xd0,0x2f,0x39,0x64,0x3c,0x9c, + 0xd0,0x6f,0xd,0x19,0x43,0xa7,0x64,0xa3,0xf7,0x87,0xf2,0xda,0x7f,0x2,0x5d,0xf, + 0xef,0x5e,0xf0,0xb8,0x60,0x3b,0xb0,0xfc,0xc3,0xc3,0x43,0x6b,0xf7,0xe3,0xe3,0xe3, + 0x0,0xba,0xa6,0xf9,0x8e,0x23,0x86,0x5c,0x9c,0xec,0xeb,0xa7,0xbf,0x60,0x4,0xe2, + 0xd8,0xd8,0x6b,0x7a,0x18,0xec,0x3f,0x3d,0xe7,0xbf,0xbf,0xf7,0xfe,0x1e,0x5a,0x90, + 0x3c,0xd9,0xb1,0x7d,0xb5,0x9d,0x94,0x67,0xfd,0x1c,0x3,0x46,0xad,0xfe,0xd4,0xc8, + 0xc9,0x93,0xfe,0x76,0xdd,0xf4,0x9f,0x12,0xb4,0x36,0x8,0x53,0xf2,0xdf,0xd6,0xf8, + 0x66,0x56,0x8,0x74,0xfb,0x6b,0xf,0x7a,0x5d,0xc0,0xa0,0x7b,0xf4,0xcc,0x39,0xa2, + 0x19,0x83,0xf2,0xc,0xa6,0x9b,0x36,0xdf,0x70,0x9e,0xf9,0xf0,0x62,0x4a,0x63,0xd1, + 0x48,0xe5,0x1c,0xed,0x4b,0xd1,0x7d,0x33,0xff,0xa8,0x75,0xdc,0xdd,0x77,0xc3,0xae, + 0x81,0x7e,0x7f,0x5,0xe,0xb1,0xfe,0xac,0x7c,0xa0,0xf2,0x42,0xbb,0x1f,0xd,0x3e, + 0x9a,0xf,0x7b,0x14,0xd2,0xf9,0x4d,0xf1,0x75,0x7a,0x15,0x84,0x5d,0xf4,0x5c,0xa7, + 0xb3,0x8c,0x4f,0xc6,0x88,0xed,0xe1,0x89,0x38,0x7f,0x2c,0xc5,0x97,0xc9,0xa7,0x36, + 0x9f,0xb9,0x6,0x4a,0xf2,0x2b,0xf,0x19,0xbf,0x29,0xe4,0xf2,0xad,0xce,0x9b,0x6c, + 0x83,0xcc,0xbb,0xd2,0xf7,0x68,0x9d,0x64,0xb8,0xe2,0x98,0xdb,0x83,0xef,0xb3,0x9c, + 0xce,0xc7,0x83,0xbd,0xe2,0x5d,0xe4,0x7c,0xe,0x8,0x7c,0x32,0x47,0x5b,0xb9,0x36, + 0xb3,0x37,0x23,0xff,0x53,0x39,0xbb,0xc6,0x3e,0x19,0x5b,0x8b,0x43,0xf3,0x71,0xac, + 0xac,0x7a,0x20,0x39,0x73,0x5c,0x9a,0x8f,0x64,0x74,0x7d,0x78,0x2e,0x9f,0xc4,0x73, + 0xf9,0x72,0x31,0x2c,0xe1,0x93,0x9c,0xa9,0x35,0x58,0xcb,0xc7,0x9c,0x19,0xfb,0xb2, + 0xc3,0x1f,0xdf,0xfa,0x3b,0xb7,0xc3,0x67,0x2f,0x7,0x7c,0xee,0xe1,0x86,0xb9,0x5d, + 0xb,0x7,0x6f,0xdb,0x1a,0xe6,0xb0,0x66,0xb9,0xcb,0x18,0x7,0xc4,0x71,0xd7,0xd5, + 0x2d,0x6c,0xa1,0xe1,0x57,0x8,0x75,0xeb,0xf7,0x97,0x35,0x5e,0x4d,0x9b,0x9b,0x41, + 0xc9,0xf3,0x49,0xde,0xa1,0xaf,0xca,0xd7,0xb4,0x4e,0x66,0xa2,0xae,0x5,0xbe,0x38, + 0x1f,0xc,0x5c,0x99,0x1c,0x9d,0xab,0x73,0xb2,0xd6,0x15,0xd5,0xbb,0xca,0xba,0x67, + 0x71,0xd7,0xf0,0x73,0x90,0x88,0xc7,0xca,0x33,0x21,0x8f,0xc7,0x31,0x5e,0x82,0x5f, + 0x72,0xcb,0x5a,0x3b,0x83,0x3f,0x5b,0x27,0xb5,0x8e,0x9a,0xf8,0xd7,0xd6,0xcd,0x9c, + 0x8e,0x76,0x5e,0xd9,0x28,0xd7,0x4b,0xbc,0x6e,0x7c,0xba,0xd6,0xb9,0x89,0x9a,0x5f, + 0x58,0xa7,0xb5,0xfd,0xa5,0xd0,0x7d,0xc0,0x54,0xce,0xac,0xd5,0x21,0xfb,0x2,0x5e, + 0x27,0xd3,0xef,0x20,0xc4,0x28,0xa7,0x2b,0xd5,0x27,0xa4,0xd6,0x50,0xd8,0x83,0xf1, + 0x59,0x70,0xd2,0x1f,0x63,0xf,0x95,0x80,0x39,0x75,0x3f,0x62,0x70,0x8f,0xf8,0x73, + 0x43,0xf7,0x65,0xe3,0x9e,0x67,0xba,0x4f,0xe1,0x77,0x69,0xf5,0x15,0x72,0x7d,0xa5, + 0xf6,0x8c,0xc5,0x6b,0xf1,0x93,0x3c,0xf7,0x18,0xdc,0x67,0x30,0x7f,0x1b,0x1f,0x88, + 0x6c,0x5d,0xa4,0x8f,0x61,0x7e,0xb9,0xef,0x96,0xec,0x6b,0xd8,0x6e,0x1d,0x9f,0x39, + 0xfc,0xe9,0xf5,0x1f,0xf4,0x2f,0xdd,0xf7,0xe8,0xf1,0x9c,0x3e,0xc8,0xca,0x73,0x1a, + 0x2a,0x96,0x55,0xa3,0x74,0xaf,0x15,0xf7,0x5d,0x3f,0xce,0xfd,0xdd,0x71,0x8d,0xcf, + 0xae,0x86,0xf7,0xf7,0x5,0xf1,0x99,0xe2,0x3c,0xca,0x15,0x2b,0x9c,0x23,0xac,0x7b, + 0x5c,0x86,0x5e,0x4c,0xe0,0x80,0x38,0x22,0x9e,0x56,0x5d,0x1f,0x76,0x83,0xb8,0x85, + 0xd0,0x87,0xb9,0xab,0x5a,0xaf,0xab,0x46,0xae,0x37,0xab,0x8e,0x79,0x8d,0x5e,0xb5, + 0x76,0xa6,0xf2,0x67,0xce,0x8e,0x62,0xbb,0x79,0xdd,0x45,0x3d,0x8,0xeb,0x4a,0xd5, + 0xfe,0x71,0x1e,0x8f,0x7b,0x8d,0x4c,0x4f,0x29,0xfd,0xe5,0xef,0x71,0x8b,0x7b,0x3f, + 0xa3,0xc7,0xe9,0xed,0x6,0xde,0x23,0xb9,0x9e,0x33,0xf2,0x57,0xc5,0x77,0x8e,0x7e, + 0xde,0x2f,0xa1,0x86,0x28,0x18,0x79,0x5f,0xf7,0x74,0x55,0xba,0x13,0x7d,0xa4,0xf5, + 0x5e,0xad,0xfb,0xb2,0x66,0xff,0xdf,0xfa,0x59,0xf7,0xcf,0xd6,0x3f,0xab,0xaf,0x5e, + 0x48,0xbf,0xfc,0xbe,0xab,0xaa,0xef,0x5e,0x4c,0x7f,0xd0,0xed,0xdc,0x4c,0x1b,0xc6, + 0xb9,0xa8,0x24,0x77,0x7a,0xed,0xbf,0xee,0x3d,0xe7,0xe8,0xaf,0xa9,0x6b,0xb1,0xff, + 0xb1,0xd,0xfa,0xdc,0x60,0xe9,0x1d,0xee,0x89,0x3c,0xc8,0x9c,0x25,0xf5,0x3b,0xe5, + 0xbf,0x5,0x6b,0x4c,0x9d,0x33,0xac,0x73,0x8c,0xfe,0x94,0xf9,0xc7,0xda,0x83,0x45, + 0xe7,0xf,0xa1,0x5b,0xae,0xa9,0x3a,0xfd,0x5e,0xf8,0x58,0x67,0x8b,0x3e,0xa7,0x48, + 0xfd,0xcc,0x9f,0x7b,0x7,0xd6,0x3a,0x70,0x5,0x36,0xa4,0xce,0x48,0x73,0x86,0xb4, + 0x21,0x9c,0x3b,0xa,0xce,0x82,0x89,0x9c,0x3e,0x17,0x52,0xa7,0x75,0x9e,0x8e,0xe6, + 0x26,0xf2,0x4d,0x69,0xe,0xb0,0x72,0x82,0xac,0xb,0x32,0x27,0x85,0xef,0xf1,0xa7, + 0xfb,0xd2,0xe7,0xf8,0xbf,0x44,0x3f,0x5c,0x93,0x3,0x86,0x3e,0xa5,0xf7,0x7f,0xce, + 0xb9,0x2a,0xa5,0xbf,0x64,0xc8,0xb3,0xc4,0xd2,0xfa,0xe9,0xd3,0x3a,0x7,0xeb,0xf3, + 0x70,0x6a,0x4f,0x2e,0xa1,0x9f,0x38,0xfc,0xfd,0x9b,0x11,0xb4,0x7e,0x38,0x41,0xfc, + 0x23,0xfd,0xed,0x59,0x3a,0xad,0xff,0x54,0xf1,0x2f,0xf5,0xff,0x94,0xf1,0xb7,0x60, + 0x7d,0x1f,0x72,0xa,0xff,0x73,0xb9,0x4e,0x9f,0xa3,0x97,0xd0,0x2f,0x6d,0x98,0x33, + 0x96,0xd0,0xcf,0x36,0xd4,0xe4,0xa0,0x25,0xbe,0x57,0xb0,0x6c,0x38,0x55,0x9e,0xb5, + 0x6,0xbe,0xd1,0x1d,0xfd,0x17,0xc2,0xd3,0x1e,0xd6,0xb7,0x0,0xab,0x1e,0xf0,0xe3, + 0x9,0x71,0x8c,0xe1,0x62,0xd1,0x55,0x8f,0x35,0xe2,0x1c,0xef,0x5d,0x22,0x76,0x88, + 0xc6,0xf5,0x7f,0x3b,0x4a,0xe1,0x80,0x38,0x22,0x9e,0x60,0xe7,0xff,0x3,0xdb,0x9b, + 0xc6,0x7d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_disabled.ico + 0x0,0x0,0x4,0x86, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xb5,0x59,0xbd,0x6e,0x14,0x31,0x10,0x9e,0x44,0x97,0x48, + 0x88,0x22,0x57,0x4,0x29,0x1d,0x57,0x52,0xf2,0x8,0x17,0x9,0xd1,0x92,0x22,0x5b, + 0x43,0x85,0x78,0x8a,0xc4,0xa2,0x4a,0x7,0x8f,0x70,0x42,0x14,0x91,0x23,0x41,0x17, + 0xd1,0xf1,0x6,0xe9,0xee,0x15,0x52,0xf2,0xa,0xc6,0xbb,0x3e,0xdf,0x7a,0x66,0x67, + 0x3c,0xe3,0xd,0x58,0xb2,0xbe,0xf3,0xcf,0xce,0x8f,0x3d,0x9e,0x19,0xfb,0x0,0xe, + 0x60,0x1,0xcb,0x25,0x44,0x5c,0xc1,0xa7,0x5,0xc0,0x5b,0x0,0x38,0x3d,0x4d,0xed, + 0x5f,0xc7,0x0,0x3f,0x62,0xdf,0xd9,0x59,0x6a,0xdf,0x3c,0x3,0xf8,0xf8,0x1c,0x60, + 0xb5,0x4a,0xed,0xdb,0xf8,0xdd,0x9f,0x38,0xf7,0x55,0xfc,0x26,0xfe,0x8c,0x3d,0xa9, + 0xbf,0x2f,0xeb,0x5,0xd4,0x4a,0x30,0x20,0xad,0x43,0x71,0xce,0xa1,0xb9,0xb9,0x4d, + 0x30,0xd6,0x50,0xd4,0x44,0x23,0xcf,0x79,0x78,0x78,0x40,0xf8,0x7d,0xb3,0x29,0xd0, + 0xed,0xbf,0xeb,0xcb,0x8e,0xd5,0x5e,0x86,0xdc,0x97,0x69,0xdd,0xdf,0xdf,0xf,0xf8, + 0xf8,0xf8,0xb8,0x9b,0x9b,0xbe,0x4f,0xb4,0x42,0x48,0x3c,0x2,0xd2,0x21,0xd3,0xa0, + 0x72,0x24,0x5a,0x99,0x7f,0x9e,0x87,0x74,0x98,0xf0,0xcf,0xdf,0x66,0xfe,0xa9,0xed, + 0x2,0xd6,0xdf,0x21,0xfd,0xb3,0xcc,0x19,0x31,0xff,0x52,0x8e,0x54,0x8b,0x35,0x17, + 0xf5,0x97,0x68,0xe6,0xb5,0xe5,0xf8,0xb,0x7b,0x37,0xa1,0xcd,0xf1,0xa7,0x7a,0x4b, + 0xba,0x70,0xfc,0xf3,0x9c,0x4c,0x4b,0xc2,0xfc,0x2d,0xc7,0x9f,0xf2,0x2b,0xf6,0x17, + 0xd1,0x28,0xc7,0x25,0xfd,0xb2,0xe,0xd7,0xd7,0xd7,0x88,0x46,0xfe,0xb6,0xe4,0x2f, + 0xd9,0x70,0xfe,0x36,0x23,0xdd,0x27,0x6e,0x7d,0x29,0xd,0x7a,0xb6,0x6a,0xfc,0x29, + 0x5e,0x13,0xa4,0xe3,0x7d,0xd9,0x9e,0x87,0xe0,0x5d,0x8,0xdd,0x22,0xe1,0x76,0xb9, + 0x6b,0xf7,0xfd,0x3e,0x62,0xc7,0xe0,0xdd,0x88,0xbd,0x9f,0x89,0xee,0x66,0xf0,0x37, + 0xd9,0xcf,0x7c,0x3d,0x86,0x5a,0x61,0xf7,0x46,0x40,0xa9,0x22,0xbd,0x73,0x9f,0x62, + 0xbb,0xe4,0xfc,0xd9,0xfc,0x90,0xe6,0x8f,0xb0,0xdd,0xda,0xfc,0x82,0xcd,0x3f,0xe5, + 0xf9,0x36,0x3f,0x85,0xcf,0xde,0xe8,0xaf,0x32,0x4d,0x8b,0xdf,0xe4,0x69,0x8d,0xf2, + 0xe1,0xf3,0x8b,0xfd,0xa8,0xa4,0x63,0x5d,0xbe,0x91,0xa6,0x65,0xfd,0x24,0x7f,0xc2, + 0xfb,0x57,0x9b,0x9f,0xa5,0x98,0xf7,0x99,0xfa,0xdb,0x39,0x7e,0x97,0xda,0x8e,0x64, + 0x53,0x9c,0x7c,0xd2,0x5c,0x69,0x7d,0x39,0xdf,0x42,0x6d,0x45,0xf3,0xed,0x14,0x6b, + 0x7e,0x1a,0xc7,0xb6,0xa9,0xee,0x74,0xbc,0xe6,0xb7,0xad,0x48,0x69,0xb6,0xf8,0x71, + 0x10,0xfc,0xc,0xa5,0x59,0x5b,0x3f,0x4a,0xf3,0xea,0xea,0xa,0xa1,0x74,0x36,0x39, + 0xf9,0x28,0xcd,0x1c,0x23,0x24,0x7f,0xdf,0x12,0x77,0xb4,0xf8,0x63,0x89,0x21,0x12, + 0xad,0x39,0xf2,0xcd,0x8d,0x4f,0x28,0x4e,0x5d,0xbc,0xc,0x7e,0x73,0x12,0xe3,0xd2, + 0x49,0xc4,0x2f,0x61,0xfb,0xe6,0x5d,0xf0,0xdf,0x72,0x3b,0x62,0x3f,0xee,0x7f,0xc6, + 0xb8,0xf4,0xbe,0x82,0xbf,0xf7,0xd8,0xc7,0xab,0x98,0x42,0xc3,0x6b,0x18,0xe3,0xd6, + 0x87,0x67,0x50,0x2b,0x55,0x3b,0x52,0x90,0xd6,0x72,0xbc,0xf9,0x5c,0xe2,0x3d,0x10, + 0x63,0xda,0x30,0x4e,0xf7,0x53,0xda,0x5f,0x1c,0xdf,0x86,0x99,0x7b,0x7a,0x65,0x61, + 0x78,0x28,0xb9,0xb3,0x1c,0x4f,0x88,0x8f,0x6,0x8e,0x87,0x24,0xbf,0x44,0x1b,0xc7, + 0x17,0x57,0xd0,0x1b,0xe9,0x8c,0x7d,0x38,0x6f,0xb0,0xc5,0xae,0x52,0xfe,0x51,0x6e, + 0xbe,0x6d,0x5f,0x7f,0x9c,0x33,0x8f,0xf4,0xa7,0xf9,0x85,0x9b,0xc8,0x4f,0xf3,0x5f, + 0xbb,0xfc,0x12,0x8f,0xf6,0xf5,0xa7,0xbc,0x29,0x8f,0xb1,0xca,0xf6,0x63,0x8d,0xcd, + 0x9c,0x8d,0x72,0xf6,0x54,0xca,0x4f,0xef,0x2d,0xda,0x5a,0x61,0x1e,0xb4,0xd6,0xe3, + 0x84,0x16,0xbb,0xb5,0x18,0x6e,0xc9,0xb,0xe6,0xfa,0xc,0x4b,0x9c,0x6b,0x95,0x5f, + 0xda,0xa7,0x9a,0xfc,0x9a,0xff,0xd1,0x6c,0x81,0x93,0x1f,0xe7,0x92,0x76,0x94,0x6c, + 0x1,0x18,0xfb,0x97,0xf2,0x1e,0x10,0xfc,0x3f,0xe5,0x51,0xcb,0x83,0xb4,0x7b,0x42, + 0xce,0x33,0xa4,0x3b,0x29,0xdd,0x27,0x4e,0x7e,0x89,0x36,0x8d,0xef,0x34,0x67,0xa0, + 0xb4,0x5b,0xe4,0xd7,0x72,0x8,0xc9,0xbe,0x80,0xf1,0x11,0x92,0x1e,0x9a,0xfc,0x16, + 0xda,0xda,0x5a,0x59,0x73,0x20,0xcb,0xfa,0x6b,0xf9,0x95,0x26,0x7f,0x4b,0x9e,0x45, + 0xf3,0x2d,0xa9,0xcd,0xe6,0x5d,0xdd,0x51,0xcc,0x97,0xe,0x43,0x77,0x79,0x10,0xfc, + 0xed,0x2a,0xe6,0x59,0xcb,0x88,0x37,0x11,0xd7,0xa9,0xdd,0xf7,0xf7,0xe3,0xc3,0x3c, + 0x1f,0xb1,0xab,0xe2,0x16,0xb5,0xef,0x86,0x3c,0x6c,0x15,0xeb,0x1a,0xc6,0x3c,0xcc, + 0x2d,0xa1,0x56,0xaa,0xe7,0x6d,0x26,0xd2,0xca,0xcd,0x13,0xf2,0xaf,0xd9,0xbe,0x78, + 0x57,0xd9,0xf8,0x32,0xd4,0x92,0x8f,0xd5,0x8e,0x24,0x7f,0x4a,0xb0,0xe0,0x25,0xc5, + 0x4f,0x47,0x65,0x10,0xef,0xf,0x52,0x3c,0x90,0xee,0xfe,0x65,0x9e,0xc1,0x15,0x12, + 0xc7,0x91,0x1c,0x92,0xbe,0x5a,0x7c,0x29,0x73,0x1f,0x86,0xc7,0x7e,0x7d,0xb0,0xc, + 0x7b,0xfe,0x26,0xfd,0x35,0xa4,0xf9,0x28,0xcd,0x1b,0x4b,0x3f,0x68,0x95,0xc1,0x8a, + 0xd3,0xb5,0x77,0x61,0xa4,0x47,0xdb,0x93,0xfe,0xc0,0xf1,0x7e,0xaa,0xfe,0xd3,0xb7, + 0x9f,0x71,0x1d,0x28,0x7f,0x2d,0x36,0xce,0xd5,0x9f,0xcb,0xaf,0x35,0xfd,0x69,0xe, + 0x62,0x95,0x81,0xf2,0xa7,0xe3,0x15,0xdb,0x10,0xed,0x1f,0xdf,0x7b,0xf4,0x1c,0xcd, + 0x2e,0x83,0x6c,0x7b,0x92,0xfe,0x52,0x6e,0x44,0xdf,0x4e,0xa7,0x3c,0x68,0x95,0xcf, + 0xbf,0x76,0xb7,0xc9,0x58,0x7f,0x73,0x73,0x8c,0xaf,0x99,0xfa,0xa4,0x7e,0x5e,0x8b, + 0xff,0x93,0xfe,0xf7,0x90,0x64,0x28,0xe5,0xc0,0xfe,0x2f,0x8d,0xcd,0xc9,0xa3,0xb5, + 0x71,0xeb,0xfd,0xc6,0x72,0x4f,0xd0,0xde,0x12,0x34,0x19,0xac,0x77,0x82,0xff,0xa9, + 0x3f,0x6f,0xff,0x6d,0xf7,0xa4,0xb9,0x77,0x31,0xed,0x8e,0x36,0x47,0x7f,0xcd,0xfe, + 0x5b,0xd7,0xa9,0xe5,0x9e,0x48,0xed,0x5f,0x7b,0xf7,0xb6,0xdb,0xa8,0x1e,0xff,0x6d, + 0xbe,0x67,0x1a,0x37,0x24,0xbf,0x69,0xf9,0x9f,0x11,0xc7,0xca,0x76,0xd4,0x64,0xa8, + 0xdd,0x23,0xb4,0xd8,0xa3,0xdd,0x4b,0x33,0x4a,0x32,0xd4,0xf4,0x97,0xd6,0x9c,0xf2, + 0xa6,0xf7,0xd5,0x8c,0xf4,0xbd,0x5c,0xf3,0xdd,0x35,0xfd,0x25,0xde,0xd2,0xbd,0x56, + 0xba,0xbb,0x49,0xeb,0x50,0xd3,0x5f,0x7b,0x3,0x93,0x78,0x4b,0x77,0x3b,0xcb,0xff, + 0x1b,0x54,0x2e,0xe9,0x7d,0xa4,0x55,0xff,0xa7,0x9c,0xff,0x56,0xde,0xda,0xdb,0x2, + 0xa7,0x3f,0x95,0xe1,0x5f,0xed,0xff,0x1c,0xde,0xd6,0x7c,0xb7,0x75,0xff,0xe7,0x9c, + 0xff,0xb9,0x32,0xc0,0x8c,0xfd,0x6f,0x8d,0x63,0xd2,0xfb,0x82,0xf6,0xee,0xc0,0xc8, + 0xa,0xdb,0xee,0xf2,0x85,0xf7,0x9b,0xc3,0xae,0x5b,0x1f,0x78,0xef,0xa0,0xeb,0xce, + 0xcf,0x23,0x6e,0xb6,0xdd,0xe2,0xc2,0xfb,0xcf,0xab,0xae,0x3b,0x5a,0x46,0x74,0xbb, + 0x7e,0x48,0xf3,0xfa,0xf9,0xfd,0x77,0xde,0x77,0xb1,0xb4,0xe0,0x16,0xb7,0xef,0xfe, + 0x2,0x8,0xfb,0x4a,0x22, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge.ico + 0x0,0x0,0x1,0xcb, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x57,0x3b,0x4e,0xc3,0x40,0x14,0x1c,0xa4,0x28,0x51, + 0x44,0x11,0x17,0x29,0xd2,0xe1,0x92,0x92,0x1b,0x90,0x8a,0x73,0x20,0x17,0x8,0x89, + 0x1b,0xd0,0x40,0x49,0x49,0x95,0x33,0x50,0x21,0xd1,0xc1,0x5,0x38,0x7,0xe2,0x0, + 0xc8,0x25,0x5,0x92,0x79,0x8e,0x85,0xb3,0x36,0xbb,0xeb,0xdd,0xf5,0x3e,0x7b,0x9, + 0xfb,0xa4,0x51,0x62,0xc7,0xef,0x8d,0x3f,0x9b,0x99,0x31,0x70,0x80,0x9,0x92,0x4, + 0xf4,0x99,0xe2,0x72,0x2,0x9c,0x1,0x58,0x2e,0xab,0xed,0xe7,0x29,0xf0,0x48,0xfb, + 0x56,0xab,0x6a,0xfb,0x6e,0xe,0x5c,0x1c,0x2,0x69,0x5a,0x6d,0x3f,0x50,0xdf,0x7, + 0x1d,0x7b,0x4c,0x3d,0xf4,0x95,0xf6,0x54,0xfb,0xcb,0x5a,0x4f,0x60,0x52,0x45,0x7, + 0xd4,0x75,0xfd,0x52,0x74,0x42,0x37,0x83,0x7e,0x7f,0x7a,0x2f,0x8a,0xab,0x57,0x39, + 0x86,0xec,0x2f,0x3f,0x45,0xd8,0xf4,0x6f,0x8f,0xdb,0xa0,0x81,0x7a,0xbf,0x61,0x7f, + 0xbb,0x6c,0xfb,0xb3,0x2c,0x6b,0x60,0x68,0x7e,0x64,0x9b,0x6,0x86,0xec,0xaf,0x9f, + 0x95,0x80,0xa1,0xd7,0xcf,0x58,0xfd,0x86,0xff,0xc1,0xba,0xf2,0x45,0x51,0xbc,0xcd, + 0xdc,0x51,0xea,0xc,0xc9,0xcd,0x56,0x6f,0x7e,0x74,0xe6,0x7e,0xaa,0x3c,0x43,0xb1, + 0xba,0x74,0xc6,0xaf,0xee,0x78,0xd4,0x21,0xdf,0xcf,0xb5,0xef,0xbc,0xb6,0x56,0x89, + 0x9a,0x65,0x3b,0x4f,0xa6,0x5d,0xa2,0x86,0xed,0xe3,0x3c,0x55,0xb9,0xce,0x6b,0x6b, + 0xaf,0xa8,0xc1,0x21,0x9c,0x5f,0x5b,0x5b,0x45,0x8d,0x8d,0xf3,0xf4,0xf3,0x64,0xde, + 0x22,0x7a,0x4c,0x8,0x7a,0x10,0xe2,0x3c,0x47,0x8d,0xae,0x2b,0x7,0xf9,0xd,0x6e, + 0xbc,0xa1,0xf4,0x2b,0x8a,0xd0,0x38,0xc1,0xce,0xb7,0xce,0xe7,0xca,0x2b,0x10,0xcb, + 0xd6,0xb7,0x78,0x7d,0x8c,0xd1,0xd7,0xb8,0xd7,0xd,0x97,0xef,0x71,0xfb,0x20,0xb7, + 0x8f,0xc5,0xf9,0x7a,0xdf,0xe3,0xf6,0x69,0x5f,0xbe,0xcd,0x3d,0x9f,0xfb,0xfe,0xa8, + 0x7c,0x93,0xdb,0x97,0xe3,0xfc,0xbf,0x3f,0x5f,0x97,0x93,0x86,0xca,0x4d,0xa1,0xfb, + 0x17,0xc7,0x7c,0x4f,0x19,0xa2,0xae,0x1c,0xb,0xca,0x4b,0x33,0x36,0x94,0x39,0x2c, + 0x25,0xac,0xb1,0xcb,0x61,0xb7,0x89,0xf2,0xa,0x65,0xd5,0x37,0x8f,0x99,0xe7,0x33, + 0xae,0xfb,0x6d,0x9a,0xdf,0x24,0xfc,0x7d,0xd6,0x93,0xf5,0xfa,0x8a,0xfc,0x41,0xf3, + 0x9b,0xe6,0x61,0xe7,0x7c,0xac,0xe1,0xb7,0xc9,0x83,0xce,0xf9,0x30,0xf2,0x47,0xfe, + 0x80,0xf9,0x5d,0xcb,0x17,0xbf,0xe9,0xfb,0x86,0xf3,0xfb,0x47,0xe4,0xd7,0xf2,0x8f, + 0xfd,0xfc,0x4d,0xf3,0xbc,0x73,0xbe,0x8f,0xfc,0x91,0x3f,0xf2,0x4b,0xf9,0xeb,0x7e, + 0x7,0xec,0x4b,0xfe,0x8c,0xfc,0xff,0x8f,0x9f,0xe9,0x1d,0xf8,0x57,0x7d,0x1,0xa7, + 0x9f,0xc0,0xd1,0x58,0xf8,0x6,0x67,0x33,0xf6,0x36, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette.ico + 0x0,0x0,0x2,0xc1, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x6e,0xe3,0x30,0x10,0x7d,0x6,0x8c,0x0, + 0xc1,0x16,0x71,0x91,0x22,0xdd,0xba,0xdc,0x32,0x47,0x48,0xb5,0xe7,0x48,0x15,0xe4, + 0x18,0x2c,0x53,0xee,0x31,0xb6,0xda,0x3a,0xa5,0x4f,0x94,0x5,0x36,0x5a,0xc7,0xf9, + 0x81,0x21,0x2d,0xd3,0x1e,0xe,0x87,0x14,0x45,0xc9,0x56,0x3e,0x7a,0xc0,0x80,0xe2, + 0x67,0x7e,0x14,0x39,0x33,0x12,0x30,0xc1,0x14,0xb3,0x19,0x4c,0x3b,0xc7,0xf5,0x14, + 0xf8,0x9,0xe0,0xf4,0xb4,0xee,0xdf,0x1e,0x1,0x7f,0xcc,0xd8,0xd9,0x59,0xdd,0xbf, + 0x39,0x6,0xae,0xbe,0x1,0xf3,0x79,0xdd,0xff,0x6d,0xf8,0xee,0xcc,0xda,0x1f,0x86, + 0xc7,0x3c,0x9a,0x91,0x7a,0xdc,0xe2,0x62,0x8a,0xf7,0xa,0x5d,0x48,0x80,0x32,0x6d, + 0x29,0xa1,0x6e,0x2d,0xcc,0xd3,0xb6,0x75,0x63,0x8b,0xc5,0xc2,0x9b,0x5f,0xf3,0xe8, + 0x1d,0x1f,0xe5,0x5f,0xaf,0xdd,0xc8,0x90,0xe0,0x78,0xdd,0x3a,0xce,0x4f,0xe1,0xd6, + 0xd0,0xd6,0x93,0xc5,0xf8,0x29,0x45,0x75,0xb3,0xf9,0x80,0x1f,0xd8,0x8e,0xbb,0x56, + 0x29,0xe5,0xad,0xe5,0xf3,0x9c,0xdf,0xdb,0x4f,0xc6,0x13,0x9b,0xf7,0xfa,0x1b,0x72, + 0xfb,0x1e,0xeb,0x4b,0xfb,0xff,0xb4,0xac,0xf4,0xe3,0xf2,0x9f,0x5e,0x55,0x95,0x7e, + 0x59,0xfe,0xd7,0xd5,0xfd,0x5f,0xfd,0x50,0xdd,0xeb,0x67,0xf3,0xbc,0xda,0xb4,0xaf, + 0xab,0xa5,0x7e,0x79,0x32,0xad,0x21,0x62,0x53,0xf9,0x19,0xfa,0x4,0x70,0xe7,0x41, + 0x4d,0xcc,0x3b,0x40,0x33,0xd9,0x75,0x14,0x36,0xce,0x98,0x70,0xb3,0x8e,0x37,0x2e, + 0xce,0xfc,0x3a,0x1a,0xd0,0xa1,0xf7,0x85,0xd2,0xb8,0xd6,0x6f,0x9c,0x4b,0xc5,0x3d, + 0xc0,0x8b,0x5d,0x41,0xfc,0x13,0xe2,0xe1,0x76,0x3c,0x11,0x7,0x9b,0xe2,0xa1,0xbb, + 0xf3,0x7c,0xbd,0x14,0x97,0xa5,0x78,0x98,0xdd,0xa,0xf6,0x51,0xc4,0xec,0x94,0xc6, + 0x45,0xfb,0x84,0xd8,0x4a,0xf5,0x6e,0x63,0xa8,0x86,0xb8,0x56,0x94,0xc7,0x63,0x2d, + 0xd1,0xeb,0xe4,0x51,0x1d,0xde,0xda,0x88,0xbc,0xe0,0x1d,0x91,0xf1,0xc0,0x37,0x89, + 0x9f,0xf3,0x6e,0xc8,0x7b,0x6f,0x4d,0xe3,0xd2,0xfe,0xa1,0xfc,0xfd,0x4a,0xe7,0xaf, + 0x2b,0x7a,0xc9,0xb,0xe1,0x7d,0x1b,0xd1,0x11,0xf4,0x1d,0x29,0x7c,0x37,0x7b,0x7a, + 0x92,0x4d,0x76,0x3d,0x87,0xcd,0x57,0xa6,0x84,0xc6,0x39,0x76,0x79,0xeb,0xf2,0x78, + 0x40,0x7,0x47,0xa4,0xd0,0x57,0x1e,0xdd,0x6f,0x5e,0xd,0xef,0x7d,0xab,0x3c,0x2b, + 0xe5,0x42,0x1a,0x73,0x73,0xf3,0x2e,0xed,0xc7,0x74,0x48,0x39,0x9e,0xcf,0x7b,0xf6, + 0x27,0xbe,0x47,0xb2,0x62,0x6a,0x46,0x5e,0xce,0x89,0xf9,0xd9,0xb9,0x41,0xb0,0xdf, + 0xb3,0x29,0xd3,0xf,0x69,0x9d,0x64,0xbf,0x98,0xdb,0x59,0xde,0xb6,0x64,0x79,0xdd, + 0xb3,0x27,0x8b,0xf3,0x4a,0xf2,0xe1,0xe7,0x7a,0x5e,0x67,0x48,0xf2,0xa9,0xd,0x94, + 0x37,0xa7,0x4e,0xf0,0xf6,0x51,0xa0,0x60,0x2f,0x24,0x79,0x5c,0x96,0x23,0x7a,0xe, + 0x52,0x24,0xac,0x1b,0xe4,0xfc,0xa0,0x47,0xd9,0xc2,0xfd,0xed,0x1b,0x7b,0xa9,0x63, + 0xc2,0xf8,0x36,0xe2,0x93,0x83,0x9f,0x2b,0x85,0x49,0x51,0xae,0xb5,0x7c,0x12,0x6c, + 0x1d,0x36,0x37,0x74,0x81,0x5d,0x1d,0xa6,0x66,0x87,0xf4,0x70,0xc4,0x88,0x6c,0xec, + 0xab,0xe,0x1d,0xb6,0x4e,0x6d,0x8e,0xf3,0xd1,0x3c,0x48,0x73,0x6f,0xab,0x5c,0xac, + 0x58,0x5d,0xa9,0xf2,0xf2,0x64,0xec,0xdf,0x78,0xae,0xd,0xe2,0xbc,0xa0,0xbb,0xcd, + 0xff,0xa8,0xd8,0xb8,0xe8,0x67,0x4c,0x47,0x82,0xbf,0xc9,0x7f,0x67,0x43,0x71,0x9d, + 0xd0,0xa6,0xe,0xea,0xb1,0xc6,0x2a,0xfd,0x7f,0x77,0x48,0x1b,0x52,0xfe,0x73,0x74, + 0xd1,0x15,0xbc,0x97,0x6,0xff,0x79,0x5d,0xee,0xd9,0xa0,0xf2,0xce,0x43,0xa0,0x83, + 0xc9,0x8a,0xf9,0xef,0x7d,0x4f,0xf0,0x96,0xcc,0xd3,0x6f,0x12,0x47,0xe2,0xb7,0x4f, + 0x44,0x56,0xd4,0x7f,0x62,0xaf,0x95,0x45,0xed,0x6e,0xa3,0x9f,0xef,0x63,0x4a,0x56, + 0x89,0xff,0x29,0xea,0xec,0x3f,0xd7,0x41,0xef,0x71,0x6e,0x5c,0xd7,0x88,0xca,0x6a, + 0x3c,0xff,0x82,0xac,0x4e,0x77,0x8c,0xd0,0x47,0xb9,0xff,0x5f,0x32,0xfe,0xe1,0x80, + 0xba,0x11,0xea,0x3f,0x34,0xc8,0xdd,0x18,0xae,0x6,0x1b,0x31,0xe2,0x8b,0x43,0xba, + 0x9b,0xca,0xfe,0x32,0xe8,0x11,0x56,0x5e,0x2c,0xe,0xbc,0x1,0xe7,0x95,0xed,0x2e, + + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525.ico + 0x0,0x0,0x2,0x46, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0x3,0x31,0x10,0x9d,0x85,0x55,0x20, + 0xa2,0xc8,0x16,0x29,0x52,0xa4,0xd8,0x92,0x92,0x13,0xa0,0xd0,0xa0,0x1c,0x83,0xa, + 0x51,0x72,0x4,0x97,0x54,0x11,0xc7,0xa0,0xa2,0xa6,0xdc,0x43,0xe4,0x0,0x9c,0x0, + 0x71,0x83,0xc5,0xde,0x95,0xb5,0x13,0x63,0x7b,0x3d,0xfe,0x90,0xf,0x1e,0xe9,0x29, + 0xb1,0xbd,0x33,0xcf,0x8e,0xbd,0x6f,0xc6,0x1,0x28,0xa0,0x84,0xaa,0x2,0xfe,0x59, + 0xc3,0x53,0x9,0x70,0xf,0x0,0xf3,0x79,0xdf,0xfe,0x98,0x0,0xbc,0xf3,0xbe,0xc5, + 0xa2,0x6f,0xbf,0x4c,0x1,0x1e,0xaf,0x0,0xea,0xba,0x6f,0xbf,0x71,0xbf,0x2f,0xfe, + 0xec,0x35,0xf7,0xe1,0x5f,0x79,0x4f,0xdf,0x2f,0x6c,0x55,0x82,0xce,0xda,0x10,0xac, + 0xd7,0xad,0x13,0x18,0x63,0xbf,0x20,0xfd,0xb7,0xdb,0xb6,0xdd,0x6c,0xec,0x50,0x4d, + 0xfa,0x8b,0x5,0xb8,0xc4,0x68,0x9a,0x66,0x7,0xb1,0xf8,0x6d,0xfe,0x78,0xfd,0xba, + 0x31,0x9b,0xbf,0x5c,0x9b,0x34,0x35,0xc6,0xa1,0xfb,0xa3,0x18,0x1d,0xa8,0xeb,0x1f, + 0x83,0xab,0xbf,0x6d,0x6f,0x5c,0xf6,0x4f,0xec,0xb3,0x6e,0x3c,0xb5,0x3f,0x7e,0x6f, + 0xc4,0xb8,0xed,0xf7,0xd7,0x41,0xee,0x99,0xa9,0x3d,0xf4,0xf,0x60,0xe8,0x7b,0xd1, + 0xc,0xc0,0xcf,0x60,0x9c,0xd5,0x6d,0x2b,0x74,0x86,0xcb,0x4d,0xa7,0x37,0x52,0x67, + 0x5e,0x27,0xf1,0x75,0xc6,0x57,0x77,0x6c,0xfa,0xe3,0xa3,0x43,0x26,0x3d,0xf1,0xd5, + 0x15,0x93,0xbe,0xf8,0xea,0xdc,0xbe,0xe6,0xe7,0xfb,0x1e,0x87,0xe8,0x82,0x4d,0x5f, + 0xa9,0xf1,0xc6,0xf4,0xee,0xd4,0xe2,0xa1,0x98,0x5a,0x7d,0xf6,0x89,0x17,0x7b,0x7f, + 0x5,0x5c,0xce,0x0,0xe5,0xbc,0x98,0xf4,0x38,0xc7,0xb3,0xe7,0x31,0x35,0x9e,0xcb, + 0xf9,0x73,0xcd,0x4d,0xb6,0xfc,0x34,0x8c,0xcf,0x76,0xc0,0x94,0x36,0x3c,0x23,0xa8, + 0x63,0xa,0x8a,0xcb,0x59,0x97,0xb7,0x78,0x9,0xd,0x37,0x28,0x6f,0x3d,0x4c,0xd3, + 0xe7,0xad,0xd0,0x3c,0xe6,0x9a,0xd3,0x62,0xe8,0xb2,0xcd,0x62,0xc4,0x37,0xe5,0xa8, + 0x90,0x3c,0x45,0x9d,0x3f,0x35,0xaf,0x1e,0xda,0xfc,0x63,0xe9,0x72,0x88,0xce,0x60, + 0x9f,0xb1,0x7c,0xec,0x1b,0x5f,0x6a,0xc4,0x58,0xfe,0xf3,0x89,0xaf,0xe6,0x56,0x17, + 0x8e,0xff,0x14,0xdf,0xc0,0x11,0xfd,0xfc,0x60,0x5d,0x4c,0x71,0x3e,0x53,0x9f,0x7f, + 0xf1,0x9c,0x44,0x8a,0xf3,0x8f,0xb5,0x3d,0x66,0x5d,0x94,0xe3,0xef,0x37,0xbe,0xae, + 0xbe,0xc2,0xfd,0x63,0xf1,0xc7,0x20,0xb5,0x80,0x5a,0x73,0x49,0xe,0x15,0x4c,0xed, + 0x5b,0x72,0xdc,0x22,0x2c,0x1d,0xeb,0x9f,0x3b,0xe8,0xea,0xb0,0x9a,0x63,0x5,0x43, + 0x1d,0xc6,0x2a,0x9d,0x9a,0xa5,0xad,0xc3,0xc6,0x10,0x52,0xa7,0x51,0xeb,0xb6,0xd8, + 0x75,0x9c,0xa,0x5b,0xdd,0x92,0xa2,0x8e,0x51,0x41,0xb1,0xbc,0xfe,0xc3,0x58,0xbf, + 0xd4,0x8a,0x18,0x73,0x38,0xc6,0xf5,0x9f,0xd2,0xfe,0x53,0x10,0xa3,0xce,0xa2,0xdc, + 0xb,0x62,0xf3,0x53,0xef,0xd,0x31,0xf9,0xe5,0x7b,0xa3,0x1a,0x65,0xe,0xbe,0xfc, + 0x26,0x6e,0xea,0x1c,0x32,0xff,0x71,0xee,0xbf,0x65,0xe,0x7f,0x76,0xfe,0x95,0x39, + 0x38,0xdd,0xeb,0x52,0xf0,0x87,0x20,0x16,0x7f,0x88,0x76,0x86,0xf2,0xb,0x3f,0x97, + 0x3b,0x4b,0xa,0x7e,0xea,0xbd,0x29,0xf3,0x67,0xfe,0xcc,0x1f,0x87,0x5f,0xfd,0x5f, + 0x1,0xb7,0x7d,0xf8,0xa9,0x90,0xb9,0xce,0xe7,0x7f,0x7,0x9d,0x8f,0xc9,0x98,0xae, + 0xb3,0x68,0x0,0xce,0x3f,0x1,0x2e,0xbe,0x7,0x88,0xb6,0xe8,0xa7,0x5a,0x59,0xc1, + 0xf,0x97,0x33,0x93,0x6, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk.ico + 0x0,0x0,0x3,0x8f, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x31,0x6e,0xdb,0x40,0x10,0x5c,0xc1,0x82,0x1, + 0x23,0x45,0x54,0xb8,0x70,0x17,0x35,0x1,0x52,0xe6,0x9,0xae,0xf2,0x8e,0x40,0x45, + 0x10,0x20,0x3f,0x48,0xc5,0x32,0x65,0x9e,0xe0,0x22,0x45,0x90,0xc2,0x75,0xd2,0xb1, + 0xf2,0x3b,0x5c,0xa9,0xcc,0x17,0x98,0x5b,0x9,0x6b,0x8f,0x7,0xbb,0xc7,0xbb,0x13, + 0x29,0x25,0x81,0x17,0x58,0x88,0xa4,0x78,0x3b,0x4b,0xf2,0x6e,0x76,0xf6,0x44,0x16, + 0xb2,0x94,0xd5,0x4a,0xd2,0xef,0x5a,0x3e,0x2e,0x45,0xde,0x89,0xc8,0xe5,0xe5,0xfe, + 0xfc,0xe7,0xb9,0xc8,0x6d,0xba,0x76,0x75,0xb5,0x3f,0xff,0x72,0x21,0xf2,0xe1,0x85, + 0xc8,0x7a,0xbd,0x3f,0xff,0x9e,0xc6,0xfd,0x4e,0xf7,0xbe,0x49,0x63,0xd2,0x61,0xba, + 0xb2,0xbf,0xae,0x76,0xbd,0x94,0xbf,0xd5,0x86,0x46,0x97,0xcd,0x66,0x33,0xb4,0xba, + 0xc6,0xd0,0xdf,0x6f,0x37,0x37,0x43,0xd7,0x75,0x3b,0xd7,0x63,0x76,0xfe,0x4f,0x8f, + 0xbd,0xf1,0xfa,0xbb,0xdd,0x6e,0x7,0xb5,0xbe,0xef,0x1f,0xce,0xf5,0x58,0x5d,0x4d, + 0xcf,0xf5,0x3a,0x8f,0xc7,0x7b,0xd4,0xf4,0x1a,0xc6,0xd1,0xf8,0x76,0x4f,0x34,0x1e, + 0xb1,0xf0,0x1a,0xe6,0x6c,0x79,0x8e,0x8d,0x37,0xaf,0x19,0x6f,0xf9,0xdb,0x38,0xce, + 0x5f,0x3e,0xff,0xa,0xc7,0xe3,0xf3,0xd9,0x78,0xcb,0x47,0xff,0x7b,0xfd,0x63,0x18, + 0x3e,0xdd,0xd,0xbb,0x18,0xd1,0x78,0x8e,0x61,0x63,0xcd,0x35,0x86,0x3d,0x3,0x8f, + 0x6f,0xf1,0x43,0xe7,0xe0,0x91,0xd6,0x56,0xd6,0x6c,0xbe,0x75,0x8b,0xf4,0x6e,0xa5, + 0xcc,0xf5,0x5e,0x33,0xe5,0x99,0x44,0x37,0x3b,0xbe,0x31,0x9e,0xf9,0x7a,0x7e,0xc2, + 0x7,0x3a,0xcc,0x5a,0x79,0x68,0x52,0x5e,0x2a,0xe1,0xa9,0x88,0xab,0x90,0xa3,0xf8, + 0x7c,0x8c,0xf7,0x6c,0xcd,0x1a,0x4f,0x21,0x87,0xd9,0x1a,0x67,0xe,0x8b,0xd6,0xb1, + 0xdd,0x67,0x31,0x6d,0xc,0x5e,0xc3,0x75,0x1a,0xc5,0x43,0x5e,0x42,0xc3,0xdc,0xec, + 0xdc,0xe3,0xa8,0x88,0xa7,0x38,0xa6,0xc7,0xdd,0xa5,0xf1,0x2c,0x16,0xf3,0x2f,0x72, + 0x21,0x7f,0x83,0xe8,0x7b,0x20,0xf7,0x59,0x3e,0x1c,0xab,0x25,0x3f,0xfc,0xb6,0x1e, + 0x57,0x97,0xc6,0xc3,0xef,0x8b,0xdf,0x98,0xf3,0x45,0xbe,0x1f,0x8b,0x67,0x31,0x39, + 0x56,0xc4,0xff,0x25,0xf1,0xbc,0x5a,0x10,0xd5,0x83,0xdc,0xf7,0x38,0xd4,0x2d,0x9e, + 0x71,0x2,0xe2,0xb7,0xba,0xc5,0x9b,0x8a,0x67,0x66,0x63,0xd3,0x9,0xed,0xa1,0x4e, + 0xc9,0xab,0x94,0xef,0xcb,0x6a,0xef,0x92,0xf7,0x69,0x2c,0xd6,0xad,0x24,0xa1,0xe5, + 0xad,0x3c,0xd6,0xad,0xf7,0x17,0x27,0x7c,0xc0,0x7f,0xdb,0xa6,0xaa,0x9b,0x4f,0x6a, + 0xa8,0xda,0x94,0x75,0x94,0x6b,0xaa,0xc6,0x37,0x2e,0xe1,0x35,0x16,0xf5,0x0,0x63, + 0xb5,0x97,0x79,0x84,0xe3,0xb3,0xce,0xc7,0x7a,0xc1,0x1c,0xcc,0x3d,0x87,0xc7,0x7b, + 0x18,0x1f,0x75,0x37,0xd7,0x58,0xac,0x1b,0x16,0x83,0xeb,0x79,0x49,0x7c,0x8c,0xcd, + 0x35,0x29,0xea,0x79,0xb0,0x26,0x44,0xf1,0xb9,0x26,0x47,0x1a,0x21,0xa7,0x1f,0x72, + 0xef,0x9f,0x7b,0xa,0x1e,0x8f,0xfa,0xc4,0xfe,0xc3,0xba,0x80,0xdf,0x7e,0x2c,0xbe, + 0x57,0x67,0x73,0x5a,0xa5,0x26,0x3e,0xd6,0x5d,0xfe,0x7e,0x91,0x76,0xc9,0xe9,0xe, + 0x6f,0xfe,0x70,0xbf,0x8a,0x78,0x1c,0x5b,0xeb,0x71,0xae,0xce,0x73,0x7c,0x74,0xd4, + 0xf,0x9e,0xe,0xb1,0x9a,0x9f,0xab,0xfb,0x63,0xeb,0xcb,0xe2,0x47,0xeb,0x4b,0x31, + 0xd4,0x4b,0xf2,0xcf,0x69,0xb,0xfe,0x3f,0xe2,0x9d,0xe8,0xfd,0x4f,0xe9,0xac,0x63, + 0xa6,0xd0,0x1c,0xde,0xf3,0x19,0x87,0xce,0x85,0x31,0x77,0x1d,0x98,0xb6,0x4,0xfe, + 0x9f,0x36,0x80,0x75,0x72,0x96,0xde,0xd9,0xa2,0xb9,0xa6,0x77,0xc9,0x7b,0x59,0x60, + 0xc8,0x9d,0xe,0x5b,0x27,0xbf,0x96,0x47,0x1d,0xd6,0xad,0x8e,0xf7,0x7c,0xcf,0x56, + 0x65,0x73,0xe8,0xbc,0x93,0xea,0xc0,0x52,0x9d,0xa8,0xc7,0x5e,0x1d,0x28,0xd5,0x84, + 0x25,0xf7,0xe5,0x74,0x64,0xe,0x9f,0xf7,0x4c,0x59,0x9b,0x45,0xb5,0xcf,0xd3,0x97, + 0x51,0x1d,0x8c,0xf0,0xbd,0xfd,0x8a,0x9c,0x36,0xc4,0x1c,0x3c,0xfd,0x59,0x83,0xcf, + 0x1a,0x82,0xb5,0x21,0xef,0x67,0xb3,0xce,0xcd,0xe5,0x50,0xb2,0x5f,0xc1,0xfa,0x28, + 0xa7,0x8b,0x79,0x4f,0x83,0xf7,0xf5,0x39,0x87,0xb1,0xfd,0x17,0x4f,0x2b,0xf3,0x7e, + 0x9b,0x87,0xcd,0xfa,0x37,0xca,0xa1,0x4,0x7f,0x4c,0xaf,0xe7,0xf6,0x74,0x58,0x53, + 0x72,0xaf,0x10,0xe1,0x73,0x3f,0xe3,0x3d,0xf,0xba,0xf7,0xee,0x19,0x1b,0xe7,0xa3, + 0x69,0xb9,0x1c,0x3e,0x63,0xb3,0x36,0xe6,0x79,0x1c,0xf5,0x1e,0x63,0xfd,0x5e,0xe, + 0xdf,0x7b,0xa7,0x63,0xf8,0xde,0x7b,0x42,0xfc,0x5c,0x1f,0x32,0x15,0x3e,0xf6,0x71, + 0xc7,0xc4,0x47,0x6c,0xaf,0xd7,0x60,0xcc,0x1a,0x7c,0x9e,0x4f,0x3c,0xff,0xf0,0x9d, + 0x7b,0xf3,0xc5,0xd3,0xcf,0x25,0xeb,0xf,0x7b,0x1c,0xaf,0xa7,0xe5,0x79,0x57,0x8a, + 0x5d,0x82,0x8f,0xd8,0x88,0xef,0xf1,0xb1,0xc7,0xcb,0x88,0x8f,0xfd,0x63,0xd,0xff, + 0xd6,0x60,0x63,0xe,0x5e,0x8f,0xc9,0x39,0x94,0xd6,0x9f,0xa8,0xdf,0xac,0xc1,0xe6, + 0x1e,0xb7,0xb6,0xfe,0x46,0x75,0x90,0x3d,0xc2,0xe6,0x1e,0xb8,0x6,0xdf,0xd3,0x1f, + 0x1e,0x6e,0x49,0xef,0xdd,0x8a,0xef,0x7d,0x8f,0x96,0xde,0x1c,0x3d,0x5a,0xff,0xc7, + 0x74,0x4f,0x83,0xe6,0x9e,0x7f,0xe,0x47,0xfc,0x53,0xe5,0x80,0xf8,0xa7,0xe8,0x5, + 0x5a,0x1a,0xa5,0x67,0x9b,0xd6,0x6,0xb0,0x4e,0xe4,0x4c,0x74,0xbb,0x60,0x6,0x4b, + 0xb1,0xa5,0x4f,0x7e,0x2f,0x4f,0x37,0x2a,0xfe,0x0,0x9a,0x58,0xe7,0x1c, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty_active.ico + 0x0,0x0,0x3,0x2f, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xbd,0x6e,0x13,0x41,0x10,0x1e,0x27,0x26,0x51, + 0x44,0x11,0x17,0x41,0x4a,0x67,0x97,0x94,0xbc,0x1,0xa6,0xa1,0x4e,0x91,0xab,0xa1, + 0x42,0x3c,0xc6,0x95,0x94,0x3c,0x42,0xca,0xe8,0x90,0xa0,0xa5,0xc3,0x3c,0x84,0xfb, + 0x48,0xf4,0x28,0x2,0x62,0xc,0x32,0xc,0x73,0xe7,0x5b,0x7b,0x6f,0x3c,0xb3,0x3f, + 0xf7,0x63,0x40,0xf6,0x58,0xab,0xcf,0x77,0xb7,0x3b,0x3f,0xbb,0x7b,0x33,0xdf,0x1e, + 0x40,0xf,0xfa,0x30,0x18,0x0,0xe1,0x8,0x5e,0xf6,0x1,0x9e,0x2,0xc0,0xd9,0xd9, + 0xf2,0xfa,0xfd,0x11,0xc0,0x5b,0xba,0x77,0x7e,0xbe,0xbc,0x7e,0x75,0x2,0xf0,0xe2, + 0x3e,0xc0,0x68,0xb4,0xbc,0xbe,0xa6,0x71,0x9f,0xa9,0xef,0x43,0x1a,0x43,0x7f,0xe9, + 0xce,0xf2,0x7e,0x2e,0xe3,0x3e,0x34,0x15,0xb4,0x5a,0xfc,0xd8,0xd4,0x6a,0x9b,0x3a, + 0x50,0x45,0xea,0x9f,0xb,0xd8,0x3f,0x4b,0x47,0x9a,0xa6,0x4e,0x74,0x8d,0x37,0x7d, + 0x26,0x93,0x49,0x5,0x8b,0xfe,0x46,0x87,0xc7,0xbe,0xe9,0xcb,0xc7,0x56,0xb0,0xd4, + 0x61,0x84,0xdb,0xe7,0x63,0x44,0x7f,0xac,0xf9,0x5b,0xc5,0x26,0xc4,0xcb,0x75,0x69, + 0xcf,0x6d,0xfb,0xda,0x5c,0xda,0x7d,0xc5,0xb9,0xad,0xfe,0x77,0x8e,0x91,0x9e,0xfb, + 0xd6,0xce,0xbb,0xb6,0x96,0xbe,0x1f,0xb3,0x2f,0x5,0x2e,0x66,0x77,0x5,0x7e,0xff, + 0xf6,0xb5,0xc0,0x79,0x89,0xbf,0xe6,0xb3,0x25,0xfe,0xbc,0xe3,0x7b,0xac,0x91,0xfd, + 0xff,0x59,0xf0,0x13,0x4d,0xde,0x47,0xc4,0x29,0xcd,0x62,0x96,0x22,0x26,0x6,0x9f, + 0x10,0x66,0x84,0x49,0x15,0xa7,0x49,0x65,0x1b,0x63,0x9e,0x67,0x28,0xdd,0x14,0xf9, + 0xc6,0xe4,0x99,0xd7,0x47,0xed,0xb9,0x27,0xb4,0xfa,0xba,0x52,0xa1,0xd5,0xd1,0x29, + 0xe5,0x3,0x21,0x2f,0x4,0x63,0x80,0xbe,0xa8,0x7d,0x19,0xe8,0x9f,0x96,0xb7,0x78, + 0x4e,0x8c,0xf1,0x4f,0xcb,0xa3,0x52,0x2e,0x8c,0xf5,0xcf,0x89,0x2c,0xbf,0x6a,0x79, + 0x96,0xfb,0xa5,0xf9,0x69,0x74,0xf2,0x26,0xe5,0x1d,0x9e,0x2b,0x57,0xf3,0xc6,0xe2, + 0x8,0xc9,0xc3,0xa1,0x39,0xdc,0xd8,0x8,0xc9,0x8b,0xc6,0x8f,0x8d,0x75,0x55,0xfc, + 0xe3,0xf7,0xa5,0xf9,0xf3,0xf9,0x11,0xe3,0x5f,0xd0,0xfa,0xa,0x68,0xfc,0xb4,0xfd, + 0x13,0xf7,0x5b,0x4,0xba,0xea,0xea,0xae,0xd6,0x88,0x7f,0x41,0x70,0xfe,0x18,0xf1, + 0x76,0x88,0x78,0x73,0x8a,0xd9,0xd5,0x29,0x26,0x63,0x86,0x17,0x43,0xaa,0x4f,0xef, + 0xa8,0x4e,0x3d,0x13,0xf0,0xc3,0x46,0x5e,0xc8,0xeb,0x15,0x51,0x68,0x78,0x4,0xeb, + 0xba,0xf5,0xfc,0xa4,0x1b,0xd7,0x85,0xd6,0x9e,0xee,0xb6,0x6a,0x1a,0x17,0xa3,0xcb, + 0x5f,0xe3,0x6a,0xe9,0x56,0xf3,0xbf,0x6e,0x23,0xbc,0xa6,0x46,0xea,0x8f,0x7e,0x9f, + 0x23,0xf4,0xf3,0x9c,0xaa,0xd5,0x47,0xa9,0x96,0x85,0xfa,0xaf,0xd5,0x32,0xed,0xba, + 0x8e,0xff,0x41,0x75,0xdd,0x42,0x97,0x8d,0xb2,0x4f,0xe3,0x3a,0xe0,0xa9,0xf9,0x20, + 0xf9,0xef,0xab,0xfb,0x52,0x1c,0xc2,0xfb,0x25,0xd6,0x31,0x1f,0xf,0xd0,0x6a,0x7c, + 0x97,0xbc,0xc0,0xe7,0x3,0xb7,0xe7,0x1a,0xcb,0xb1,0xb,0xde,0xf0,0x37,0x78,0x84, + 0x8b,0x5f,0xf8,0xde,0xdf,0xba,0x28,0xf9,0xdf,0x36,0xc2,0x7a,0xbd,0x5a,0xe3,0x32, + 0x7b,0x6e,0xb3,0x5b,0x82,0x78,0x8c,0xf8,0xfb,0x10,0x71,0xd1,0x43,0x9c,0x3,0x4e, + 0x2f,0x0,0xb3,0x6b,0x20,0xbe,0x55,0xe2,0x65,0x8f,0xf8,0xd5,0x1,0xf1,0xac,0x7b, + 0x84,0x19,0x61,0x22,0xe2,0x34,0x61,0x1f,0xe,0x4a,0xc9,0x79,0xd8,0x88,0xda,0x18, + 0xd6,0x3c,0x2c,0x1d,0x6c,0x37,0x44,0xa1,0x6d,0xcf,0xae,0xce,0xdf,0xba,0xf4,0x3, + 0xbd,0xfc,0xae,0x2d,0x1e,0xc9,0x25,0x84,0x7b,0xb4,0xc5,0x33,0xdb,0xb7,0xef,0xac, + 0x87,0x5e,0x8c,0xb1,0xad,0xf0,0xb0,0x46,0xd8,0xc0,0x7e,0x11,0x84,0xa7,0xce,0x6a, + 0x5c,0x31,0x8a,0x77,0x46,0xf2,0xd0,0x28,0x1f,0x3a,0x8a,0xdf,0x37,0x2f,0x21,0x9c, + 0xb8,0x69,0xfc,0xc1,0x9c,0xa0,0xc1,0xfe,0x6f,0x85,0x67,0xd5,0xb3,0x1f,0xbc,0xfe, + 0x31,0x3e,0x68,0x7e,0xac,0x9e,0xa5,0xf2,0xf7,0x3e,0x6d,0xce,0x63,0x7d,0x70,0x9e, + 0x5f,0xa8,0x49,0x3c,0x54,0xe0,0x8f,0xa2,0xf,0x31,0xfb,0x41,0x3a,0xdf,0x98,0xe7, + 0x21,0xe7,0x1c,0x8e,0x1a,0x87,0xd7,0xde,0x51,0x13,0x3,0x47,0x57,0xfc,0xa6,0x8f, + 0xc6,0xcf,0xf9,0x73,0x6e,0x5b,0x88,0x4f,0x9c,0xcf,0x26,0xf1,0x6b,0x71,0x69,0xbe, + 0xc6,0xc4,0xcf,0x6d,0xc4,0x9e,0xab,0x4,0x1e,0x2f,0xda,0x76,0xed,0x7f,0xdf,0x3a, + 0x87,0xa2,0x4f,0x8f,0x14,0xff,0xb6,0x70,0x1b,0xe7,0x4c,0x1f,0xee,0x6a,0xfc,0x60, + 0xed,0x49,0xdf,0x3b,0xd7,0x15,0xda,0xf1,0x77,0x75,0x86,0xde,0x9f,0xb1,0xf7,0xb2, + 0x17,0xb7,0x20,0x2e,0x86,0x88,0xb7,0xc7,0x88,0x37,0x87,0x88,0x93,0x5e,0xde,0xb2, + 0x2c,0x85,0x24,0x1,0xa8,0xe2,0xb8,0xb7,0xc6,0xab,0x83,0x24,0xb9,0x7c,0x90,0x91, + 0x24,0x24,0x1,0xf8,0x46,0x24,0x64,0x24,0x7f,0x0,0x7f,0xd,0x93,0xd5, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-green.ico + 0x0,0x0,0x91,0x5e, + 0x0, + 0x2,0x37,0x7e,0x78,0x9c,0x2c,0x7a,0x7,0x34,0x5c,0xdd,0xf7,0xf6,0x9d,0x31,0x18, + 0x7d,0x74,0x9,0x62,0x74,0xa2,0x97,0x20,0x82,0x19,0x9d,0xa8,0x9,0x41,0x88,0x2e, + 0xba,0x90,0x10,0x44,0x9b,0xd1,0x82,0xe8,0x25,0x7a,0xf4,0x8,0x89,0x68,0x51,0x42, + 0x30,0x8,0xd1,0xa2,0xf7,0x2e,0x3a,0xd1,0x3b,0x33,0xcc,0x97,0xf7,0xfb,0xff,0xee, + 0x5a,0x77,0xdd,0xfb,0x3c,0x67,0xef,0xb3,0xf7,0x3e,0xf7,0x9c,0xb3,0xf7,0x5d,0xeb, + 0x0,0x0,0x8,0x20,0x1,0xfe,0xbb,0x40,0x0,0x1c,0x60,0xd2,0x1,0x80,0xd4,0x7f, + 0xef,0x30,0xd8,0xff,0x61,0x47,0x8,0x0,0x94,0xff,0xe3,0xe8,0xe8,0xfe,0xf,0x7f, + 0x27,0x2,0x0,0x86,0xc7,0x0,0xc0,0xc4,0xf4,0x7f,0x38,0xf2,0x9f,0xea,0x80,0x9, + 0x0,0xc0,0xe1,0xff,0x87,0x4b,0xfe,0xe9,0x19,0xd9,0x0,0x80,0xa8,0xe8,0xff,0x30, + 0x37,0x0,0xdc,0xbc,0x2,0x0,0x24,0xf2,0xff,0x30,0x9f,0x12,0x0,0x14,0xa7,0x3, + 0x80,0x86,0xc6,0xff,0xf4,0xd,0xff,0xe9,0xcf,0x0,0x0,0x1a,0xfd,0xbf,0x76,0x28, + 0x8,0x30,0x12,0x1,0x1,0x51,0xfa,0xba,0xea,0x14,0xa4,0xb7,0x49,0xff,0xb9,0x42, + 0xa1,0xa9,0xa1,0xf2,0xf8,0xbf,0xd6,0xff,0x6e,0xe8,0x3f,0xfb,0xc0,0xb3,0x57,0x25, + 0xf6,0x0,0xa0,0xbd,0xa8,0xa9,0xa2,0x68,0xe8,0x9b,0xbd,0x1b,0x48,0x82,0x7e,0xf6, + 0xe4,0xfd,0x59,0xe9,0xb6,0xd0,0x87,0x81,0x1c,0xaf,0x89,0x3d,0x5d,0xb0,0x58,0x2, + 0xcc,0x48,0x73,0xa,0x4c,0x64,0x28,0x95,0xa8,0xda,0x66,0xcd,0x82,0x4a,0x43,0xd9, + 0x1b,0x22,0x55,0xa9,0x4f,0x19,0xbd,0xac,0xc,0xbd,0x52,0x54,0x55,0xa8,0xed,0xb3, + 0x5f,0xfe,0xba,0x45,0xfc,0xe8,0x11,0x93,0xa,0xb8,0x1d,0xce,0x3,0x51,0xb5,0x8b, + 0x8,0xe3,0x4e,0xf8,0xf8,0xc0,0x7f,0x64,0x3a,0xd9,0xe2,0xcb,0xd,0x76,0xde,0x67, + 0xf0,0x2b,0xf6,0x45,0xf3,0x4c,0xa3,0xc5,0xeb,0x27,0xcd,0x8d,0x6c,0x86,0xb,0x5f, + 0x8c,0xf7,0xe7,0x7d,0x2c,0x5f,0x7,0x3a,0xfc,0xd8,0xc8,0x61,0x2e,0x8c,0x5c,0x6e, + 0xfc,0x5b,0xae,0x65,0xc3,0x1c,0xdd,0xd9,0x3b,0x4f,0x4f,0x1c,0x51,0xf0,0xf2,0xfa, + 0x74,0x32,0x6d,0x35,0x82,0x45,0xd3,0x5b,0xe6,0xe8,0x81,0xa,0xf5,0x47,0x18,0xf8, + 0xb0,0x92,0x59,0x50,0x3a,0x1d,0x47,0x49,0xf9,0xa8,0xcd,0x18,0x73,0xf5,0xa4,0x81, + 0x1e,0xc,0x3f,0x59,0xf4,0xe,0x9c,0xa2,0x48,0xa5,0x95,0xba,0x4c,0x13,0x7c,0xfa, + 0xb8,0x38,0x47,0x46,0x86,0x2e,0xde,0x40,0x4f,0xfe,0xc9,0xbe,0x32,0x34,0xe0,0xfa, + 0xaf,0x25,0xd5,0xf5,0x9d,0x44,0x6a,0x40,0xea,0x52,0xf,0x71,0x7d,0xf2,0xea,0x75, + 0x67,0x5b,0xbe,0x63,0xfa,0x2a,0x31,0xf9,0xd1,0xf1,0xbe,0x1c,0x9d,0xf,0x9c,0x46, + 0x18,0xcd,0x89,0x51,0x4e,0x49,0x8,0xc7,0xf1,0x28,0xbd,0x24,0xfe,0x6c,0x1,0xfc, + 0x67,0x87,0xe4,0x4d,0x52,0xee,0xa3,0x1a,0x58,0x89,0x33,0x68,0xa9,0x7b,0x1f,0xc6, + 0x4d,0xa7,0x71,0xa3,0xaf,0x5f,0xb,0x6e,0x4d,0x5c,0x64,0x7f,0xc8,0x47,0x7c,0x19, + 0xfc,0x99,0xe,0x88,0xc3,0x51,0x3e,0x52,0x6a,0xe8,0xa6,0x32,0xfc,0x0,0x78,0xac, + 0xfa,0x44,0xd2,0xf4,0x6a,0x6,0xe5,0x7d,0x86,0xfc,0xff,0xae,0xf4,0x5f,0x1c,0x11, + 0x3c,0xe1,0x4,0x58,0x2e,0x59,0xb,0xc2,0x1e,0xc2,0x11,0xfa,0xf4,0xff,0xa7,0x58, + 0x42,0x77,0x44,0x40,0x2f,0xf2,0x3f,0x9a,0x3,0xa1,0x3f,0xfc,0x3f,0x5a,0xf2,0x1f, + 0x2d,0xf0,0x3f,0x9a,0xb,0xa1,0x9f,0xf8,0x3f,0xda,0xf0,0x1f,0xcd,0xfb,0x3f,0x9a, + 0x7,0xa1,0xff,0xe8,0x7f,0xb4,0xd7,0x3f,0xda,0x80,0xaa,0x95,0xb,0x33,0x25,0xe2, + 0x60,0xec,0x4c,0xd4,0x53,0x24,0x90,0x23,0xf9,0xac,0x44,0xe5,0x1f,0x6b,0xd,0xfa, + 0xcf,0xf3,0x5b,0xef,0x1f,0x6,0xe5,0xed,0xfc,0x7f,0xe1,0xde,0x12,0xbb,0x7f,0xf4, + 0xa,0x78,0xca,0xa4,0xce,0xf5,0x69,0xc3,0x8f,0xa5,0x25,0xd8,0x9b,0x94,0x79,0xb0, + 0x87,0x87,0x7,0x1f,0x5b,0xaf,0x30,0xf0,0x6c,0x37,0x88,0x38,0xe2,0x28,0x9f,0xe3, + 0x19,0xc0,0xb,0x61,0x61,0xe9,0xd,0xad,0x36,0x3,0x28,0x29,0x29,0xd7,0x42,0x69, + 0xff,0x3d,0xee,0x91,0xff,0xb3,0xcc,0xe2,0xcc,0xa4,0xb,0xc8,0xc8,0xac,0x6,0xfb, + 0xca,0x65,0x1a,0x46,0xad,0x1b,0xdc,0x97,0x9,0x8b,0x51,0xe1,0xc8,0x3f,0x2f,0xe4, + 0x22,0xbf,0x6b,0x43,0x67,0x25,0x73,0x70,0xb1,0x12,0x9f,0xf6,0x83,0x8c,0x92,0x1d, + 0x6d,0xdc,0x6b,0xde,0x12,0xf0,0xc6,0x62,0x63,0x96,0xf6,0x55,0xbb,0x8a,0xb9,0xb9, + 0xf9,0x38,0xbe,0xbc,0x80,0xb3,0xb7,0x3a,0x6f,0x6,0xaf,0x41,0xb9,0xc5,0xc7,0x5d, + 0x75,0xc,0xfa,0x37,0x4e,0x3f,0xee,0xc1,0xde,0x90,0xa1,0x7b,0x50,0xff,0x7d,0xcf, + 0x5a,0x36,0xca,0x3f,0x68,0x21,0x0,0x50,0x82,0x5b,0x6a,0x59,0x75,0xbe,0xa3,0xcf, + 0x3f,0xfd,0x53,0xd5,0x75,0x67,0x14,0x5b,0xec,0xa2,0x1f,0x5b,0xf2,0xe2,0xf0,0x3d, + 0x2f,0xcb,0x65,0x21,0xc1,0x44,0xd3,0x5a,0x88,0xe6,0xd,0x1f,0xfc,0x88,0x1,0x1d, + 0x8f,0x33,0xfe,0x60,0x50,0x17,0x24,0x63,0x88,0x48,0xc7,0x39,0x64,0xbf,0x54,0xb3, + 0x4b,0x79,0xb8,0x4a,0x88,0x7e,0xfb,0x6f,0xb0,0xa9,0x81,0x4b,0xc5,0x80,0x85,0x78, + 0x52,0xe7,0x76,0xc2,0x7f,0x71,0x11,0x69,0x7,0x8d,0x82,0x45,0x1f,0xf5,0x7,0xb7, + 0x6e,0xef,0x36,0x84,0xfe,0x14,0xe5,0xc8,0x9a,0xa8,0x58,0x47,0xe6,0xfd,0x17,0xd2, + 0x7d,0x20,0xd6,0xdd,0xf9,0x9a,0xaf,0x1,0xa8,0xa5,0x25,0xf8,0x27,0x9,0x2b,0xee, + 0x19,0xc4,0x3e,0xe2,0x40,0x2c,0x9,0x2,0xc4,0x11,0xc0,0xd4,0x6a,0xfd,0xf5,0x4d, + 0x49,0x2b,0x9,0x40,0x4c,0x4c,0xa0,0x18,0xdc,0xc2,0x47,0x6,0xfa,0x2f,0x7e,0xf2, + 0xf4,0x75,0x5,0xd8,0x2a,0x91,0xa,0x89,0x30,0xd1,0xd2,0x12,0x32,0x68,0x51,0xe1, + 0xb3,0x1d,0x55,0xc8,0x7f,0x7d,0xa9,0xdc,0x2a,0xc4,0x3d,0x92,0xc2,0xff,0x27,0xe4, + 0x7c,0xbb,0x41,0x1c,0x57,0x70,0xfb,0xda,0x41,0x6,0xb4,0xa4,0x4f,0x8b,0xac,0xa6, + 0x14,0x3f,0xf3,0x25,0x9b,0x5a,0xad,0xab,0x6d,0xfa,0x0,0x62,0x52,0x4d,0x51,0x5, + 0x76,0xb0,0x13,0xf5,0x27,0xaf,0xac,0xbe,0x24,0x69,0x66,0x7e,0xea,0xd,0x61,0xbb, + 0x38,0xab,0x3f,0xbd,0xdf,0xf5,0x65,0x90,0x29,0x60,0xc0,0x52,0x57,0xd6,0x29,0xdd, + 0xef,0x3e,0xe4,0xd9,0xcb,0x7,0xb5,0x75,0xfd,0xdd,0x7f,0xc7,0xdc,0xcc,0x99,0x23, + 0x5f,0x60,0xa,0x3a,0x58,0x5f,0x89,0x52,0x73,0x41,0xd0,0xf0,0xa4,0x49,0xf0,0x65, + 0xb0,0x35,0x35,0xa0,0x87,0x3a,0xce,0x4a,0xea,0x39,0x6,0x6f,0xe3,0x89,0x59,0xbf, + 0x21,0x24,0x8,0xdb,0xe,0x51,0xb8,0x42,0x3d,0xc7,0x14,0x55,0x38,0x1d,0xf2,0x44, + 0x3b,0x61,0x12,0xf5,0xb7,0xa5,0x66,0x65,0xb6,0x25,0xc0,0xfa,0xd1,0xae,0x2c,0x24, + 0x34,0x8a,0x2a,0x4f,0x4d,0x85,0x27,0x17,0x31,0x1a,0x64,0xf8,0xe8,0xc8,0x1a,0xe9, + 0xe8,0x9f,0x70,0x8f,0x79,0xd8,0xb3,0xad,0x65,0x82,0x8e,0x1c,0x6,0x15,0xd2,0x53, + 0x28,0xad,0xe7,0x26,0xd0,0x10,0x81,0xa,0x58,0xaa,0x26,0x21,0x98,0x87,0x14,0x16, + 0xc9,0xcc,0x22,0x3c,0x5a,0x57,0xa5,0x3,0x83,0x74,0xf,0xd7,0x18,0x51,0xf6,0x9f, + 0x6e,0xd4,0x6e,0x71,0xd3,0x2,0x43,0x57,0xc5,0xa5,0xee,0x5,0xa5,0x5f,0x4,0xdc, + 0x5c,0xd8,0xfa,0x88,0x5,0xa1,0xda,0x20,0xea,0xcf,0x70,0x68,0xf0,0xc9,0xc8,0x98, + 0x74,0xdd,0x25,0x7a,0x3f,0xfc,0xab,0x1e,0x5c,0x86,0x8e,0x70,0xf4,0xbc,0xfe,0x5e, + 0x33,0x2b,0x55,0x9,0xe1,0x2e,0x55,0x8a,0x9d,0x4e,0x39,0x7c,0x99,0x51,0x69,0x7, + 0x7e,0x52,0x57,0x4b,0x1f,0x40,0xf1,0x83,0x92,0xac,0xa2,0xa1,0x38,0xcf,0xf,0xb8, + 0x4c,0xa2,0x28,0x22,0xd2,0xec,0x77,0xcb,0x17,0xad,0x18,0x3c,0xcf,0xa9,0xbd,0xf3, + 0x80,0xa9,0xe9,0x10,0xd4,0x9c,0xfb,0x85,0x8b,0x69,0x92,0x92,0xdc,0xb4,0xf8,0x47, + 0xfa,0xe5,0xf5,0x33,0x18,0x97,0x71,0x73,0x4f,0xe5,0xdf,0x47,0x44,0x74,0x1c,0xfc, + 0xef,0x7e,0xe6,0x93,0xa2,0x1f,0xc3,0x10,0xb4,0x70,0xd8,0x90,0xb7,0x42,0x8,0x28, + 0xc4,0xea,0xcf,0x99,0x9c,0x73,0xd7,0xda,0x9f,0x59,0xaa,0xf0,0xd5,0xf0,0x56,0x92, + 0x90,0x39,0x3e,0x43,0x20,0xa5,0x3a,0xc6,0xa4,0x96,0xc,0xad,0x1f,0x82,0xb6,0xa6, + 0xc5,0xbc,0xe8,0x33,0xba,0x9d,0x2d,0x7e,0xff,0xef,0xfd,0x86,0x67,0x44,0x6,0xa2, + 0xab,0xb4,0xa8,0xee,0xa2,0x53,0x2d,0x9d,0x8b,0x67,0xe7,0x7d,0x5c,0xb0,0xdf,0xf0, + 0x2,0x32,0x16,0x7b,0xb5,0x6,0x17,0xa8,0x91,0xec,0xbb,0x3a,0xe0,0xad,0x52,0x10, + 0x8f,0xef,0x10,0x3,0x74,0x66,0x90,0x1b,0x56,0x1d,0x1c,0xae,0x98,0xc0,0xd,0x53, + 0xc1,0x25,0x25,0x4,0xf5,0xa9,0x15,0xf0,0x8f,0x46,0x4,0xbc,0xd1,0xed,0x2b,0x7a, + 0x1b,0x86,0x64,0x67,0x40,0x36,0x50,0x3b,0x91,0xb5,0xf2,0xa0,0xa4,0x96,0x1d,0x38, + 0xc4,0x68,0xe5,0x47,0xc5,0x16,0x6,0xb9,0x60,0xd5,0x24,0xb4,0xa,0xbc,0xc9,0x5f, + 0xac,0x92,0x31,0xf0,0x65,0x89,0xfc,0xaa,0x7e,0xf4,0xc5,0xc0,0x7c,0xa,0x13,0x62, + 0x2,0xa5,0x23,0xe5,0xe1,0xf,0xa,0x9,0xc1,0xa6,0xe,0x73,0x78,0x4c,0xa0,0x7f, + 0xc2,0x44,0xed,0xb6,0x12,0xa9,0x2e,0x25,0x9c,0x2e,0x44,0xa9,0xc7,0xca,0x3,0xcb, + 0xce,0x45,0x6,0xf5,0xaf,0xfd,0x7,0x12,0x95,0x0,0xa3,0xd6,0x86,0x5c,0x7c,0x80, + 0xe9,0x3,0xeb,0x84,0x5c,0x92,0x78,0x21,0xab,0xbd,0xac,0xfd,0x7e,0x37,0x23,0x3b, + 0x6a,0xe8,0xb4,0x60,0x48,0x9,0x19,0xc8,0x1,0x74,0x21,0x8a,0x63,0x40,0xb2,0x67, + 0xe6,0x26,0x46,0xe3,0x7a,0x76,0x67,0xf9,0xa5,0x9c,0x1e,0xcf,0xdc,0xe8,0xcf,0xd4, + 0xc6,0xdf,0x63,0xc5,0x7b,0x6f,0x5f,0xef,0x3e,0xe,0x91,0xfe,0x8e,0x6c,0xba,0x43, + 0x27,0xc2,0x0,0xe,0x57,0x59,0xa,0xb4,0x33,0x5c,0xad,0xd7,0x74,0x6f,0xbf,0xf9, + 0xfd,0xcf,0x2b,0x8f,0xa1,0xc9,0xcc,0x73,0x42,0x72,0xc5,0x84,0xaf,0x8b,0x95,0x44, + 0x5,0xc2,0x10,0x96,0x76,0xc5,0xb6,0x91,0x9f,0x5c,0x28,0x9e,0xe5,0x8d,0x2f,0x87, + 0x8a,0x27,0x1,0x9,0x15,0xa2,0x56,0x6d,0x6d,0xbb,0x36,0x6c,0x33,0x98,0x97,0x13, + 0xda,0xdb,0x66,0x3f,0x74,0x73,0xcf,0x9b,0x43,0xb1,0x5b,0x99,0x6c,0xd7,0x1a,0x7b, + 0xbc,0x71,0x26,0x9,0xcd,0xc3,0x72,0xb5,0xcd,0xb1,0x70,0x2d,0x78,0xb2,0x6a,0xc2, + 0xee,0x95,0xa4,0x40,0x3e,0xe0,0x2,0xff,0xac,0xd4,0xfa,0x14,0x50,0x20,0x5f,0x14, + 0xcd,0xd3,0xb9,0x49,0xbf,0xed,0xa0,0x67,0xfa,0xe8,0xac,0x51,0x27,0xab,0xf9,0x3, + 0xfa,0x55,0x4f,0x8f,0x9b,0x19,0x3f,0x7f,0x79,0x74,0x27,0x41,0xc1,0x37,0x4d,0xbd, + 0x8d,0x4e,0x53,0xde,0xbe,0xe3,0x26,0xe9,0x97,0x7f,0x53,0x14,0xdf,0x45,0x61,0x33, + 0x36,0xf2,0x9a,0x2f,0x56,0xf9,0x8f,0x2,0x8b,0x5d,0xb0,0xe1,0x80,0xa3,0x28,0x4, + 0x14,0xa6,0xf4,0xf3,0x49,0x6e,0x32,0xf6,0x31,0x74,0xe9,0xe9,0x1,0xcb,0x54,0xc8, + 0x8e,0x1,0x7d,0xa9,0x14,0x73,0x79,0xf0,0x85,0x5c,0x8b,0x2d,0x2f,0x37,0x4f,0xdc, + 0x79,0x64,0x96,0xc6,0xc5,0x59,0x68,0x8e,0x34,0xe7,0x85,0xe9,0x8b,0x41,0x67,0xe3, + 0xfa,0x7b,0x32,0x1a,0x51,0x9a,0xb4,0x27,0x1b,0xa,0x4c,0xed,0x79,0xa9,0x61,0x68, + 0xda,0x7f,0x4e,0xc4,0x3,0x50,0x71,0x2c,0x3b,0x90,0x8e,0x4b,0x3a,0x79,0x87,0xc, + 0x1d,0x2d,0xbe,0xaa,0x41,0xd9,0xfc,0x65,0xd0,0xd4,0x77,0x75,0x3b,0x9a,0x81,0xc, + 0x42,0xb5,0x64,0x34,0xd8,0xb,0x66,0x94,0x7e,0x58,0x18,0xbc,0x5e,0x78,0xa3,0x96, + 0x15,0xe8,0x32,0xd1,0x1b,0x94,0x41,0xd5,0x68,0x8,0xd,0x26,0x13,0xe,0x62,0xb, + 0xc4,0x6d,0x7d,0xda,0xec,0x5a,0xc4,0x7,0x4f,0xaa,0xcf,0xd2,0x4c,0x8d,0xad,0xc9, + 0x53,0x11,0xac,0x2e,0x2e,0x7c,0x90,0x4d,0xd,0xdf,0x89,0x2a,0x8f,0xa5,0x73,0xcf, + 0xd2,0x8d,0xa2,0xc8,0xe2,0x53,0xb0,0x35,0x75,0xfe,0x12,0xb7,0x11,0x26,0x64,0x72, + 0x51,0x29,0x9b,0xda,0x7f,0xb7,0x92,0x30,0x98,0x16,0x58,0x53,0xe5,0x82,0x20,0x79, + 0xbe,0x2d,0xd6,0x1,0x21,0x92,0x18,0xcd,0xa0,0x37,0x3a,0xe8,0x75,0x62,0x4d,0x66, + 0x87,0xc1,0x91,0xd9,0x32,0xab,0x10,0x81,0xe0,0xd6,0x99,0xdc,0xf0,0xe8,0xc6,0xa8, + 0xa,0x37,0xb3,0x7f,0xc9,0x54,0x62,0x76,0x2b,0xf5,0xbd,0x80,0x53,0xcf,0x86,0x82, + 0x3a,0xaf,0xa0,0xc9,0x12,0x9,0xe0,0xe8,0xef,0x18,0xe4,0xfa,0x6,0x9c,0xe4,0xcb, + 0x0,0xb3,0x74,0xfe,0x43,0x9e,0xa9,0x30,0xdc,0x10,0xbc,0xbc,0x2b,0xc1,0xd5,0xd6, + 0x8c,0xed,0x7a,0xcc,0xa0,0xfa,0x6b,0xe3,0x40,0x21,0x2d,0x44,0xd1,0x3c,0x97,0x48, + 0xb,0xb6,0x19,0x78,0x33,0x45,0x7,0xb9,0xc7,0x5,0xc9,0x6,0xe,0xf2,0x6b,0xc0, + 0x70,0xe3,0x56,0xaa,0xa2,0xb4,0xdb,0xa8,0x63,0x86,0xf1,0x2,0x7c,0x57,0x45,0x54, + 0xfc,0xb9,0x94,0xd8,0xe5,0xf7,0xe0,0x22,0xe,0xb,0xb5,0x60,0x2b,0x27,0x5f,0x6, + 0x88,0x29,0x1f,0xc4,0x84,0xce,0x31,0x62,0x3f,0x79,0xd5,0x11,0x3,0x27,0x89,0xb, + 0x40,0xe1,0x2d,0xfc,0xdc,0xec,0xbe,0xd5,0x40,0x6a,0x60,0x48,0x36,0xba,0xc3,0x35, + 0x4f,0xc8,0xbf,0x95,0x6f,0x44,0x2b,0x47,0xf0,0xc7,0x36,0x4b,0xb6,0xd9,0x5f,0xd7, + 0xe5,0xd3,0xd4,0xba,0xf0,0x43,0x5d,0x37,0x2d,0xb7,0x4e,0x7,0x99,0x17,0xf2,0x1, + 0xde,0xf9,0x79,0x61,0x7a,0xbf,0x86,0xc3,0xc8,0x95,0x5a,0x49,0xd0,0x47,0xf9,0x23, + 0x84,0x48,0xc5,0xe4,0xe0,0x90,0x90,0xa0,0x24,0xdc,0x10,0x8e,0x67,0x2b,0x3c,0x8a, + 0x72,0x59,0x2b,0xf7,0x99,0x63,0x40,0xe9,0xa9,0xd0,0x51,0xe8,0x94,0x53,0x91,0x9d, + 0xeb,0x81,0x24,0x3f,0x6a,0xa0,0xbd,0xfd,0x81,0x63,0x22,0x82,0x8a,0x11,0x7c,0x6e, + 0xd3,0x46,0x63,0x6b,0x53,0xe2,0x6f,0x71,0xf,0xa5,0xc0,0xea,0xbd,0x94,0xe7,0x43, + 0xde,0x82,0x80,0x4e,0x35,0xf7,0x71,0x22,0xaa,0xbb,0xb5,0x5d,0xd4,0x9c,0x7c,0x9d, + 0x46,0x42,0xb3,0x1f,0x97,0xbc,0x9,0x84,0x54,0xad,0x19,0xc1,0xb2,0xa2,0xf6,0xb1, + 0xe4,0x46,0x91,0xd,0xf4,0xbb,0xbd,0x9e,0xb1,0x7f,0x4f,0xce,0x79,0x67,0xd2,0x54, + 0x18,0xcf,0x47,0x8d,0x8,0xf3,0xae,0x6c,0xe2,0xef,0x3a,0x7e,0x1,0xae,0x8d,0xdb, + 0x1e,0x2e,0x72,0x71,0x49,0x7f,0x19,0x62,0x27,0xa8,0xa6,0x24,0xb0,0xcf,0xec,0x27, + 0xde,0xd4,0x40,0xb8,0x4,0x85,0xf2,0xcd,0x70,0x39,0x58,0x5a,0x26,0x8e,0x8d,0x5d, + 0x5,0xea,0x5d,0x38,0xec,0x54,0xc1,0x12,0x20,0xf4,0x22,0xc9,0x27,0xd,0x73,0x4, + 0xb7,0xa8,0xf2,0x54,0xac,0x5c,0xdb,0x9a,0xe2,0x56,0x88,0x3e,0xd3,0xbe,0x1a,0xc5, + 0x94,0x27,0x2f,0xd4,0x7d,0xcd,0xba,0xd9,0xff,0x84,0x50,0xc5,0xfb,0xf5,0x1b,0xcb, + 0xb3,0xcd,0x6b,0xb0,0xd5,0xde,0x6b,0xe6,0xe2,0x7d,0xc3,0xf5,0x5c,0x48,0xb8,0x56, + 0xb6,0xce,0x4c,0xaa,0x28,0xac,0xbd,0x37,0x2d,0xa,0x56,0x63,0xcb,0x5e,0x6f,0xcb, + 0xdb,0xd9,0x81,0x2d,0x82,0x9,0x57,0x91,0xac,0x3c,0x36,0x7b,0x99,0xdd,0xa1,0x30, + 0xf0,0x7e,0x52,0x59,0x9f,0xbd,0xe,0xfc,0x17,0x4d,0xa8,0x34,0xa9,0xe6,0x76,0x2b, + 0xbd,0x52,0x9d,0xba,0xe6,0x5e,0x9e,0x9a,0xb0,0xd7,0xb,0xe5,0x72,0x8,0x57,0x44, + 0xa6,0xaa,0xd1,0x71,0x30,0x21,0x72,0x82,0x8b,0x6d,0xf4,0x84,0x97,0x94,0xbc,0x5b, + 0x8c,0x4,0xfb,0x4,0x72,0xc7,0x8e,0x78,0xd8,0xad,0x7f,0xb0,0xab,0x52,0xb5,0xe3, + 0xce,0x46,0x68,0x8d,0xc2,0x32,0xaf,0x81,0x62,0x95,0x64,0x7b,0xd6,0x61,0x30,0x79, + 0x39,0x7a,0x72,0x3c,0xdd,0x72,0x29,0x61,0x83,0x34,0xe0,0xf,0xf3,0x62,0xa,0x96, + 0xa5,0x84,0xe0,0x30,0x7d,0xe,0xfe,0x91,0x47,0x36,0xeb,0x50,0xdb,0xa4,0x86,0x98, + 0x83,0x79,0x51,0xb9,0x98,0xa9,0x55,0xf5,0x87,0xf7,0x48,0xf3,0x4a,0x99,0x63,0xcb, + 0x7d,0x70,0xdb,0xe0,0x2f,0x6a,0x14,0x3d,0x44,0x72,0x9e,0xd0,0xc,0xd6,0x3d,0xa, + 0x7e,0xcb,0xc4,0x1d,0x6,0x8f,0xc4,0x34,0xf6,0x3e,0x38,0xc3,0x20,0x34,0x7e,0x94, + 0xdf,0xfe,0xf3,0xc,0x60,0x7b,0x98,0xc,0x4d,0xd1,0xc1,0x62,0xdd,0xf7,0xaf,0x3d, + 0xee,0x4f,0x6d,0xe0,0x5,0x55,0x6f,0x90,0xb1,0x15,0xe5,0xcf,0x97,0x43,0x4f,0x8a, + 0x22,0xf1,0x59,0x5d,0x69,0xc3,0x97,0x8c,0x98,0x41,0xe6,0x51,0x69,0x12,0xd6,0x63, + 0x62,0x26,0x50,0x9d,0x4c,0x40,0x5b,0x2b,0xc0,0xde,0x9a,0x1a,0xb6,0x97,0xf3,0x87, + 0x17,0xd5,0xf8,0x5c,0x72,0xd8,0xb8,0x3c,0x51,0x9,0x7d,0xaf,0x5c,0xea,0xcf,0xb4, + 0x65,0xc4,0x74,0xf9,0x6f,0x5f,0x47,0xdf,0x6b,0xc2,0xa7,0x46,0xaa,0xb6,0xe,0xbc, + 0xa7,0xb5,0xf5,0x7d,0x5f,0x49,0x58,0xfc,0xad,0xf6,0x15,0x9c,0xe9,0x44,0x8e,0xfb, + 0x62,0x6f,0xe5,0xfe,0xdd,0x57,0x27,0xa1,0xe3,0x87,0x86,0xc1,0xd0,0x95,0x9a,0xba, + 0x87,0x57,0x7d,0x46,0x91,0xfc,0x50,0x71,0x9e,0x5b,0x2f,0x85,0x43,0x1a,0x7f,0xb5, + 0xb5,0xa9,0x28,0x66,0xa0,0xbd,0x15,0x30,0x63,0x37,0x44,0x8f,0x80,0x7,0x25,0x11, + 0xe7,0x70,0xaf,0x84,0x5f,0xe,0x47,0x88,0x22,0xc1,0x50,0x69,0x8b,0x37,0x19,0x44, + 0x84,0x3d,0xdb,0x7,0xa1,0xee,0x1f,0x90,0xe7,0x8b,0xc7,0x2e,0xa6,0x42,0x75,0x9e, + 0x61,0x51,0x37,0x6f,0xa7,0xda,0xd,0x23,0xf4,0x5b,0xf,0xcf,0x5b,0x6c,0xab,0xee, + 0x60,0x1d,0x14,0xf3,0xf6,0x7b,0x94,0x43,0x7b,0xda,0x6a,0x96,0x38,0xc9,0x40,0xdf, + 0x10,0x82,0x50,0x8f,0xdc,0x4f,0x3e,0xae,0x85,0xe1,0xb4,0x66,0x6,0x41,0x72,0xc0, + 0x72,0x28,0xba,0x2e,0x55,0x1a,0x2a,0xc2,0x16,0xc1,0xa6,0xd5,0x74,0xbb,0x43,0xcc, + 0x2c,0x84,0x88,0x55,0xa2,0xc2,0x45,0x7f,0xf7,0xa4,0xfe,0xd3,0x6f,0xd4,0xae,0xac, + 0x55,0xdf,0xc4,0x5b,0x76,0x68,0x48,0x19,0x88,0xf9,0x5f,0x29,0x96,0x1,0x73,0x54, + 0x58,0xed,0x3d,0xfb,0x26,0x81,0xb,0xe1,0xb8,0x66,0x79,0x73,0x9e,0x68,0xe1,0x84, + 0xfb,0xd5,0xc9,0xdb,0x57,0x3f,0x74,0x4,0x97,0x39,0xd8,0xee,0xb6,0x97,0xc5,0xb5, + 0xb6,0xd5,0x7c,0xa5,0xd8,0x9b,0x7a,0x22,0xfe,0xa6,0xeb,0x18,0xeb,0x56,0xf4,0x94, + 0xe0,0x68,0xe1,0x6,0x5e,0xc4,0x5f,0x32,0xb5,0x8b,0xc,0x2,0xae,0x8e,0x3b,0xf5, + 0xcc,0x73,0xae,0x7e,0x8f,0x95,0x2d,0xdf,0xce,0xda,0x69,0x69,0xa1,0xbf,0x5f,0x2f, + 0x6e,0x2f,0xf9,0xae,0xb8,0x46,0xb5,0x15,0xa4,0x2d,0x40,0x1d,0x49,0x8,0x82,0x6d, + 0x32,0xa4,0x77,0x58,0x9e,0xbe,0x73,0xbe,0x18,0x5f,0x96,0x7d,0xa,0xf2,0x10,0x46, + 0x53,0x7d,0xcc,0x22,0x4b,0x70,0x9,0x89,0x8f,0xa2,0xfb,0x63,0x58,0xe1,0x8a,0x37, + 0x4e,0xc4,0xff,0x9,0x6,0x95,0x6e,0x1d,0x6e,0x7d,0x91,0x70,0xd0,0xf7,0x51,0x26, + 0x90,0xff,0xe1,0x8e,0x38,0xdd,0x5b,0x54,0xf7,0x61,0x93,0x41,0x12,0x7b,0xef,0x25, + 0x7c,0x8a,0x9f,0x5b,0xd4,0x28,0x54,0x8f,0x2b,0x2a,0xbe,0x52,0x93,0x7d,0x61,0x48, + 0xa6,0xb3,0xb9,0x9f,0xd6,0xf5,0x54,0x66,0x8e,0x63,0x6,0x58,0x77,0xf5,0x57,0xe2, + 0x39,0xd5,0x38,0x10,0xcd,0x7c,0xa5,0xea,0x2b,0x40,0x1b,0x91,0xa0,0x58,0xf2,0xa, + 0x56,0x43,0x9f,0x7,0xa1,0x33,0x23,0xd8,0x80,0x3f,0xf0,0xb0,0x7f,0x10,0xf8,0xe8, + 0xf5,0xd3,0xa4,0x45,0x78,0xb3,0x53,0x41,0xdf,0xa0,0x72,0xf9,0xa7,0xa2,0x59,0x2d, + 0x3f,0xd4,0x13,0x6f,0xee,0x9a,0x7b,0x68,0xab,0x7c,0x30,0x38,0x12,0x5e,0x4b,0xce, + 0x45,0xaa,0x8,0xb3,0xa3,0xf0,0xa0,0xa1,0x29,0x63,0x34,0x61,0xc,0x64,0xc5,0xfe, + 0xdc,0xad,0x54,0x1e,0xe7,0xdc,0xe5,0xcd,0xd6,0xc1,0xce,0xfe,0x4b,0xef,0x1e,0x71, + 0x67,0xc4,0xce,0x41,0x20,0xc7,0x40,0x47,0x1c,0x31,0x64,0x8b,0x7a,0x62,0xc6,0x88, + 0xf1,0xd3,0x9a,0x59,0xfd,0x48,0x4e,0xa8,0xfc,0x55,0xf6,0xa3,0x8,0xbd,0x8f,0x81, + 0x15,0x2f,0x52,0xcd,0xf6,0x89,0xf8,0xdf,0xcb,0x7c,0x7c,0xce,0xc2,0x2a,0xfb,0x35, + 0xb4,0x18,0xf3,0xfd,0x61,0xbc,0xf9,0xc2,0xcb,0x5,0xff,0xad,0x9,0x4b,0x5c,0x88, + 0x2,0x3e,0x8e,0xfb,0x6,0x99,0xc9,0x1e,0x20,0xfe,0x94,0x20,0xe3,0x8,0x36,0xc5, + 0xda,0xb0,0xc9,0x86,0x51,0x3a,0x15,0x69,0x5e,0xc6,0xa,0xde,0xba,0x88,0xfd,0x28, + 0x3a,0xa4,0xe0,0x15,0x32,0xee,0x53,0x57,0xc4,0x1a,0xcd,0x1d,0xba,0x42,0x70,0x24, + 0x1,0x5,0xc8,0x8a,0x55,0x97,0x42,0x47,0x6e,0x62,0xa9,0xa9,0xc1,0x3,0xe0,0x3, + 0x6b,0x5f,0x7,0x82,0xcc,0xcc,0xdc,0xa8,0xe7,0x49,0x2,0x3a,0xc7,0x64,0x95,0xff, + 0xd2,0x66,0x2,0xea,0xd3,0xd0,0x85,0x80,0xb7,0xf7,0x68,0x70,0x69,0xbf,0x8a,0x44, + 0xd7,0x30,0x9f,0xe2,0xd1,0xcb,0xae,0xd7,0xdd,0xc7,0xb,0xa7,0xd3,0x54,0x90,0x85, + 0xe3,0x61,0x33,0x94,0x62,0xb3,0xcd,0x8f,0xbb,0x2d,0x59,0xde,0x96,0x95,0x9,0xf6, + 0xae,0x71,0xc3,0xe9,0x57,0x44,0x8d,0x3b,0xc1,0x8b,0x43,0x5f,0x8d,0xcd,0x55,0xa5, + 0x17,0x5f,0x91,0x5,0x9e,0x11,0xb0,0x1d,0x5c,0x15,0xbf,0x1d,0x36,0x81,0xa6,0x83, + 0x94,0xe4,0x6d,0x90,0x5b,0x20,0x45,0x80,0x93,0xd2,0xa1,0x7f,0x27,0xaf,0x38,0xbc, + 0xb,0xdb,0x9d,0x1b,0x75,0xd1,0x9,0x53,0x30,0x33,0x13,0x24,0xb7,0xa2,0x5e,0x5a, + 0x80,0x41,0xec,0x3,0x90,0x34,0x19,0xdd,0xd2,0xd9,0xe9,0x24,0xe2,0xde,0x8a,0x29, + 0xc,0x9,0x5e,0x1e,0x80,0x38,0x29,0xfa,0x99,0x41,0xc0,0x7d,0x59,0xf7,0xe2,0xb3, + 0xab,0x7f,0x53,0x7,0xfe,0x60,0x8d,0x2b,0x1e,0xd7,0xee,0xba,0x68,0x64,0xa9,0x8e, + 0x31,0xaf,0x8f,0x53,0x1b,0xf8,0xa0,0xbd,0x42,0xb8,0x95,0x1c,0xf2,0x6f,0x53,0x14, + 0xc9,0xe,0x12,0x9f,0xaf,0x3f,0xd4,0x6c,0xd6,0x29,0x8,0xcc,0xff,0x8a,0x3a,0xf8, + 0x60,0xb6,0xe6,0xf,0xb4,0x5b,0xed,0x4f,0x25,0x7a,0xdd,0xe4,0xf3,0x26,0xc2,0x1e, + 0xbc,0xa,0x42,0x74,0xc7,0x37,0xdc,0x70,0x5a,0xe7,0x6b,0x1f,0x97,0x11,0x7f,0x48, + 0x75,0xfd,0xe,0x69,0xa9,0xb1,0x1e,0x76,0x1f,0xa5,0x3f,0xd0,0x8d,0xd5,0x24,0x83, + 0x37,0xbc,0x90,0xf,0x54,0x81,0x7e,0xc9,0x15,0x7c,0xb6,0x9a,0xb1,0xd6,0xb,0x23, + 0x49,0x3e,0x98,0x6e,0x3d,0x17,0x23,0x4,0x75,0x11,0x6b,0x73,0x64,0x9,0x7,0xd3, + 0x41,0x9a,0x44,0x4,0x41,0x77,0xee,0x89,0xe,0xbe,0xf4,0xa8,0xfc,0x43,0xb,0xbc, + 0xa1,0xba,0x26,0xd9,0x6c,0xc0,0xaa,0x15,0xe8,0x99,0x16,0x59,0xc2,0xf6,0x18,0xe8, + 0xa7,0x17,0xe5,0x65,0x34,0xa8,0x5c,0x37,0xb,0x52,0xeb,0x75,0x12,0x57,0x51,0x1b, + 0xe,0xc2,0x89,0x9f,0xd0,0x3b,0x3c,0x17,0x81,0xc5,0x2b,0x27,0x4f,0xdd,0x8f,0x8f, + 0x67,0x83,0x54,0x3d,0xcf,0x63,0xf2,0x51,0x37,0x1b,0xf,0xb6,0x26,0xf4,0x2c,0x78, + 0xe2,0xb9,0x4d,0x79,0xb7,0x48,0x1e,0x2a,0x28,0xe6,0x25,0xa5,0x20,0x3d,0x72,0x5, + 0xac,0x40,0x3f,0x13,0x1c,0x56,0xb4,0xb6,0x1c,0xb,0xa5,0x8d,0xbf,0x8e,0x74,0x11, + 0xf7,0xda,0x49,0x65,0x85,0xa0,0x57,0x8,0x8a,0xe1,0xa2,0xf3,0xe0,0x51,0xd2,0x84, + 0x4b,0x92,0xd5,0x1a,0x14,0xfb,0xd2,0x76,0x9b,0xd4,0xdd,0xf9,0x4e,0x3e,0x86,0xfb, + 0xc7,0x8e,0xbb,0x49,0xcf,0x80,0x1a,0x4c,0xc0,0xad,0x20,0x44,0xd,0x86,0x7,0xc3, + 0xc1,0xa4,0x8d,0xda,0x91,0x97,0xf7,0xa3,0x9b,0xff,0xf1,0x46,0xa2,0xf6,0xfa,0x94, + 0xc3,0x69,0xf,0x85,0xcf,0x6d,0x11,0x20,0x71,0x4b,0x96,0x63,0xde,0xdb,0x32,0xe5, + 0xa9,0xf,0xe8,0xa7,0x90,0x9e,0x43,0xba,0xc7,0x2d,0x6a,0xb1,0xb2,0xe1,0x4b,0x84, + 0xf1,0xf3,0xa3,0xc3,0x7f,0x28,0x84,0x6e,0x4b,0x6c,0x16,0xc1,0x97,0xf8,0x1a,0x6f, + 0x8b,0x25,0x98,0xad,0x92,0x44,0xa6,0x65,0xd8,0x75,0x18,0xbc,0x65,0x33,0xa9,0x53, + 0x6a,0xc1,0x77,0x8f,0xa2,0xee,0x48,0x7d,0xcd,0xa5,0xc8,0xb8,0xca,0x53,0xe7,0x4a, + 0x49,0xad,0xaf,0x27,0x67,0xa0,0x7b,0x74,0x80,0xff,0x9,0xd1,0x18,0xac,0x78,0xb6, + 0xa1,0x42,0x1f,0xc,0x6e,0x95,0xc4,0x87,0x6e,0x5f,0x4c,0x13,0xca,0xda,0x59,0x60, + 0xee,0x13,0x50,0xc,0xdf,0xdc,0x4,0xf9,0xbd,0xee,0xe5,0xf2,0xcb,0x7f,0x3,0x91, + 0xaf,0x7b,0x2e,0x11,0x1b,0x30,0x6b,0x57,0x7a,0x6a,0x3d,0x40,0x45,0xc8,0x58,0xff, + 0x61,0x9d,0x16,0x8c,0x99,0x3d,0x12,0x3c,0xe5,0x22,0xda,0xfc,0x74,0x7e,0xfd,0xf0, + 0xce,0x31,0x9,0xe8,0xe4,0x11,0x14,0xb4,0x4b,0x54,0xa2,0x70,0x69,0xcf,0x63,0xba, + 0xd5,0x13,0x83,0x7d,0x2,0x7e,0xfc,0x11,0xa4,0x4,0xd7,0x80,0xa5,0x2b,0xb5,0xc6, + 0x91,0x54,0xc2,0x3d,0x18,0x90,0xb2,0xa4,0xdc,0xaf,0xd,0x9,0x15,0x7,0xe0,0x56, + 0xfa,0x62,0x7a,0xe6,0x3d,0xc4,0x33,0x8b,0xbd,0x7,0x12,0x9c,0x7,0xa7,0x21,0x61, + 0x28,0xba,0x62,0xbc,0x55,0x97,0xc9,0x6d,0x9f,0x98,0x7b,0xc7,0x42,0xc4,0x48,0xef, + 0x84,0x9b,0x5,0xa,0xbd,0x21,0x55,0x9,0x86,0x3e,0x5b,0x5f,0xf7,0x20,0x22,0x9f, + 0xa5,0x8c,0x35,0xbd,0x11,0x11,0xa2,0xb3,0x61,0x62,0x22,0xb5,0x2d,0x17,0xaa,0xbb, + 0xec,0x43,0xae,0xc5,0x6b,0x36,0xde,0xb9,0xf4,0xb0,0x30,0xee,0x21,0xc7,0x98,0x67, + 0x48,0x6c,0xae,0x88,0x85,0x86,0x24,0xc7,0xfb,0x5c,0x7d,0x27,0x34,0x83,0xfb,0xb3, + 0xdc,0xdb,0x62,0x4b,0x31,0xca,0xae,0x3a,0xff,0xea,0x18,0x2c,0x25,0x3f,0x84,0x3a, + 0x43,0x27,0xd0,0x42,0x3e,0x32,0x8d,0xe6,0xdb,0x60,0x27,0x96,0xaf,0x81,0xd0,0x89, + 0x1,0xcd,0x8a,0xeb,0x7b,0x12,0x97,0x95,0xec,0x17,0x52,0xf9,0xca,0x4e,0xc2,0x6d, + 0x7b,0x2f,0x55,0x1,0x11,0x12,0xd8,0xa0,0x1d,0x4,0x63,0xe,0x23,0xde,0x8e,0xe9, + 0x60,0x9d,0xc0,0xb1,0x40,0x25,0x11,0xb3,0x97,0xda,0x8c,0xf3,0xa7,0x8b,0x3e,0x9f, + 0x6a,0xc7,0x9b,0x82,0x2,0xb7,0x6f,0xa5,0x30,0x5b,0x4d,0xf2,0x88,0xaa,0x13,0x2, + 0x86,0x64,0x21,0xaf,0xd,0xa2,0x18,0xd0,0x24,0xa3,0x29,0xf5,0xb5,0x3f,0x58,0x99, + 0xc6,0xee,0x93,0xf,0xe0,0xd2,0xf8,0xc2,0x70,0xeb,0xe,0xe4,0x65,0x12,0x95,0x76, + 0x3d,0x49,0x23,0xaf,0x3d,0xd2,0xf3,0x33,0x52,0x5c,0xd6,0x2d,0x61,0x4b,0x12,0x5a, + 0x64,0xad,0xf,0x63,0xc3,0x2f,0xe3,0x63,0x1a,0xe5,0x29,0x28,0xc,0x7d,0xba,0x21, + 0xb7,0x76,0xa9,0x38,0x10,0xb4,0xcc,0x45,0x5d,0x64,0xa6,0x81,0xfa,0x17,0x6b,0x65, + 0xa7,0x55,0x9d,0xfe,0x75,0x90,0x21,0x22,0xd4,0xaf,0x76,0x20,0xe4,0xf9,0x88,0x7a, + 0xdc,0xc7,0x8,0x22,0xff,0x5a,0x66,0xb4,0x45,0x25,0xfd,0x12,0x33,0x85,0x3e,0x7f, + 0xfb,0x8,0x18,0x59,0x86,0xec,0x84,0xdc,0x76,0x78,0xed,0x9b,0x1c,0x17,0x76,0x86, + 0x67,0xcb,0xbf,0x76,0xbf,0xf9,0xb9,0x72,0x19,0x84,0x7a,0x1e,0xaa,0xb3,0x9,0x97, + 0x58,0xcc,0xb8,0x99,0xae,0xb2,0xe9,0x24,0xbd,0x4,0xfb,0x9e,0x5a,0x59,0xc8,0x66, + 0x87,0x83,0xea,0x60,0x60,0x5f,0xd5,0x97,0x89,0x89,0x4d,0xdb,0x20,0xbb,0x6a,0xb0, + 0x95,0xb8,0xcb,0xe2,0x22,0x1c,0x81,0x76,0x6d,0xde,0xa0,0x64,0x19,0x9a,0x59,0x24, + 0xa2,0xcd,0x89,0x8a,0xf9,0xa3,0xb0,0x33,0xd9,0xf5,0xf7,0x54,0xa1,0xce,0x37,0x3e, + 0x90,0x1,0xaa,0x7d,0x53,0x24,0x26,0xe0,0x31,0xe9,0xc9,0xec,0x68,0xac,0x85,0xf2, + 0x58,0x1c,0x77,0x44,0x67,0x70,0x77,0x73,0x82,0xea,0x8,0x81,0xdd,0xf8,0x32,0x25, + 0x72,0x81,0x75,0x79,0x96,0xc7,0x6a,0x10,0x12,0xd0,0xf1,0xfb,0xad,0x26,0xd3,0xf0, + 0xaf,0xd7,0x3a,0xed,0x59,0xa6,0xb9,0x8,0x89,0xfa,0x97,0x5f,0xf8,0xb4,0xd,0xcb, + 0xd0,0x92,0x20,0x2b,0x91,0x3c,0xea,0xa2,0xeb,0xfb,0xd0,0x12,0x4e,0xbc,0x5c,0xec, + 0x13,0xb7,0xfb,0x18,0x94,0xca,0xbf,0x39,0x73,0xad,0x53,0x19,0x45,0xf5,0x2a,0xb, + 0x4b,0x5e,0x47,0x97,0xbe,0xe4,0x9b,0x6b,0x68,0x4,0xb2,0x22,0x25,0x7,0xde,0x80, + 0xbe,0x77,0x65,0x61,0x8f,0xcc,0xde,0x69,0xf,0x9a,0x2d,0xdd,0x87,0x14,0xec,0xb6, + 0xd4,0xfe,0x7d,0xe,0xa7,0xa5,0xf,0x3,0xd9,0x31,0xa6,0xda,0x8d,0x8f,0xd1,0xc0, + 0x19,0x1b,0x58,0x2f,0x43,0x41,0xfd,0xee,0x59,0x38,0x45,0x61,0xa0,0x75,0x3a,0x0, + 0xf4,0xd4,0xf7,0x49,0x3c,0x7b,0x27,0x20,0x3,0x85,0xe2,0x2d,0xcd,0x0,0x67,0xfb, + 0xdc,0xb9,0x27,0x1b,0xbb,0x32,0x9b,0x3a,0x45,0xfc,0x76,0xdf,0x7,0xb5,0x81,0xe5, + 0xf3,0xa6,0xc1,0x36,0xa4,0x1,0xf6,0x67,0x63,0x64,0xa7,0xed,0xc9,0x27,0x4b,0xe1, + 0xbe,0x2f,0x81,0x26,0x40,0x36,0x15,0x5c,0x1d,0xdc,0x41,0x26,0xc,0x4c,0xde,0x45, + 0x5f,0x52,0x91,0x2d,0x25,0x1b,0x9b,0xbf,0xf7,0xc9,0xed,0xa3,0x48,0x90,0x1b,0xed, + 0x6b,0xb,0x2d,0xbd,0xb6,0x1e,0x20,0xce,0xc0,0xa2,0x9b,0xdd,0x85,0xf9,0xe3,0xc6, + 0xc3,0x74,0xd8,0x61,0x84,0x2,0xf0,0x2f,0x64,0x56,0xeb,0x40,0x25,0x5c,0x94,0x71, + 0x37,0x81,0xf0,0xc1,0x98,0xdd,0x6d,0xa2,0xe2,0x5d,0x8e,0xbf,0x22,0x6f,0x7a,0x6d, + 0x9c,0x15,0xec,0xfd,0xd4,0x8e,0xd9,0x22,0x9,0xe9,0x76,0xa1,0xb2,0x94,0x20,0x1a, + 0x3b,0x31,0x24,0x76,0x85,0x50,0x1b,0x3b,0x75,0xd8,0xe6,0xc6,0xff,0xc5,0xce,0xe3, + 0x73,0x1a,0xc5,0x66,0x56,0x43,0x9,0x40,0x86,0xe4,0xf9,0xd,0x4d,0x5b,0x37,0x10, + 0x2a,0xdc,0xf2,0x6f,0x7,0x5f,0xec,0x7c,0xf0,0x81,0xd4,0x6d,0xc0,0x74,0xd2,0x67, + 0x10,0x91,0x17,0x4d,0x6c,0xf7,0xec,0x5e,0x83,0x42,0x52,0x4f,0xc5,0x19,0x17,0x96, + 0x98,0xd0,0xfc,0x10,0x51,0x1d,0x46,0x89,0xb3,0xa4,0x65,0x8c,0xf2,0xc6,0xe0,0x88, + 0xdb,0x74,0xb1,0xbf,0xd4,0xd4,0xb,0xe0,0x13,0xf1,0x8a,0xa9,0x19,0x56,0xc2,0xfb, + 0xe6,0xdf,0x7f,0x58,0xdd,0xce,0xbb,0x4e,0x27,0x55,0x2d,0xf2,0xa5,0xe9,0xca,0x30, + 0xa6,0xb0,0x36,0x5e,0x85,0xc3,0x9e,0xec,0x6b,0xaf,0x92,0x17,0x53,0x3c,0x98,0x86, + 0xe7,0xd5,0xa1,0xb8,0x47,0x5c,0xa,0xca,0x1b,0x20,0xd,0x79,0xfe,0x9a,0xb5,0xc8, + 0x1,0x5d,0x54,0x22,0xd5,0x1f,0xcb,0x49,0x37,0x1a,0x53,0x89,0x17,0x74,0xd7,0xfa, + 0x4a,0x79,0xfb,0x5f,0xef,0x59,0x4,0x93,0xd2,0x1d,0xb4,0xae,0x85,0x86,0x7a,0x61, + 0xe,0xd2,0xca,0x9b,0x70,0xe2,0x57,0xd8,0xf,0xf3,0x92,0x7,0x6a,0x15,0x56,0xa5, + 0x3e,0xfd,0x48,0x1b,0xa4,0x65,0x7c,0x77,0x50,0x20,0x83,0x22,0x8c,0x4b,0x30,0x24, + 0x4e,0xde,0xaf,0x6f,0xf0,0x39,0x6,0x46,0x20,0xb3,0x25,0x1f,0x1d,0x18,0xfc,0x20, + 0x28,0xa7,0x31,0x36,0xcb,0xd1,0xe3,0x97,0x57,0xb3,0x91,0xa2,0x4d,0x9f,0xbd,0x1e, + 0xf6,0xcb,0x7d,0xf2,0x66,0xf7,0x16,0x55,0x9d,0x88,0x3b,0x1c,0x11,0xc0,0x7d,0xa2, + 0x4a,0x67,0x15,0xda,0xaf,0x8d,0x2b,0x11,0xe1,0x4f,0xb4,0x5f,0x97,0xdc,0xf5,0x58, + 0x1a,0x8c,0xbb,0x20,0x28,0x9e,0x20,0x2e,0x10,0x84,0x3c,0xc6,0xbc,0x14,0xf8,0x90, + 0xba,0x48,0xa5,0x9b,0xc5,0x61,0x19,0xa0,0xfb,0xea,0x8b,0x58,0xe1,0x5e,0xc2,0x74, + 0xce,0xfe,0xe2,0x42,0xb1,0x11,0x36,0x6a,0x94,0x90,0xd1,0x52,0xbb,0x1e,0x87,0xdb, + 0xf0,0xea,0x4c,0x54,0x1f,0x76,0x10,0xb9,0xe4,0x13,0xdb,0xa5,0xee,0xdf,0xb0,0x46, + 0xec,0x30,0x46,0xab,0xbf,0x78,0x18,0x7b,0xbd,0x1f,0xe0,0x27,0xf4,0x3a,0x26,0x53, + 0xf7,0x18,0x1e,0xd3,0xe1,0xdf,0xfd,0x92,0x81,0x8,0x8e,0xc8,0x8b,0x20,0x48,0xbe, + 0xc9,0xe3,0x4a,0xc6,0x54,0x71,0x3e,0xbf,0x9c,0xb3,0x98,0xd4,0x48,0x33,0xf7,0x7e, + 0xf3,0x24,0x6,0x22,0x43,0x47,0x99,0x8c,0x23,0x8f,0x23,0x11,0x1d,0xae,0x8a,0xbd, + 0xbb,0xa5,0xb3,0xe9,0xe,0x77,0xa2,0xe,0x25,0x1f,0x9d,0x66,0xd1,0x8a,0xd7,0x91, + 0xa,0x9,0xd1,0x28,0xff,0x53,0xf0,0xa1,0xbb,0x28,0x6b,0x5a,0xf7,0x7c,0xc1,0x93, + 0xca,0xfc,0xe5,0xe9,0xb8,0x17,0x56,0x4b,0x64,0x4,0x35,0xe7,0xc9,0x36,0xce,0x6d, + 0xc0,0x23,0x17,0xe9,0x6e,0xa,0x56,0x26,0x4c,0x46,0x18,0xe5,0x5e,0x11,0x58,0xd0, + 0xb8,0x68,0xc6,0xcf,0x7d,0x79,0x3,0x7a,0xcd,0x2c,0xb5,0xfd,0xa7,0x35,0xfd,0x49, + 0xc0,0x37,0x75,0x13,0x80,0xc4,0xba,0x41,0xbf,0x35,0x84,0x1b,0xef,0xdd,0x93,0xa8, + 0x7a,0x3e,0x9e,0x7f,0x64,0x95,0x79,0x65,0xdf,0x91,0x4b,0x8,0x96,0x6c,0xd9,0x3a, + 0x57,0x7f,0xa,0x83,0x98,0x36,0x10,0x53,0x8,0x0,0x1d,0x62,0x5d,0x23,0xb5,0x84, + 0x70,0xde,0xcf,0x5d,0x8e,0x61,0x43,0x79,0x3c,0x51,0xc2,0x72,0xaf,0xc5,0xe6,0x83, + 0x46,0x75,0x46,0xc0,0x17,0xbf,0x23,0x14,0x54,0xf6,0x4b,0xcd,0x90,0xf2,0xa1,0xcd, + 0x33,0x61,0x54,0xca,0x58,0xc,0x76,0x5b,0x8b,0xfb,0xd2,0xfa,0x4a,0x19,0x5b,0x1f, + 0xeb,0xfc,0xfe,0x3a,0xd1,0xfc,0xf1,0x46,0x4d,0x99,0xf9,0xdf,0xd7,0x6,0xb8,0x47, + 0xd6,0x84,0x17,0xeb,0x84,0x63,0x6f,0x2,0x91,0x98,0x61,0x94,0x89,0x70,0xf,0x48, + 0x24,0x1e,0x10,0x43,0xa7,0x21,0x6e,0x7c,0xbc,0x22,0x3c,0x40,0x2c,0x5,0x4,0x12, + 0x85,0x22,0x7c,0x6c,0x80,0x72,0x60,0xf1,0xd9,0x20,0xc4,0x93,0xe,0xbe,0x63,0xc3, + 0xb6,0x86,0x66,0x0,0x6c,0xcb,0x9b,0x8d,0xc6,0x3f,0x3c,0x2c,0x1e,0x71,0x9c,0x26, + 0x9d,0xca,0x36,0xbd,0x20,0x60,0x40,0xf3,0x42,0x1e,0x9b,0xd2,0x71,0x25,0x69,0x90, + 0xf7,0x7a,0x96,0x37,0x9e,0x3c,0xbe,0x3c,0xfb,0x88,0x90,0x57,0xed,0x5b,0xc,0xb0, + 0xb8,0xc0,0xbe,0xf6,0x5a,0x4f,0x59,0x59,0x15,0x1b,0xf5,0x1a,0x64,0xc,0xa0,0xa8, + 0xf3,0xbd,0xde,0x77,0xc3,0xa4,0x28,0xa3,0x62,0xf4,0x2c,0xae,0x14,0xd9,0x2e,0x5f, + 0xbf,0xd4,0x7d,0xdf,0xf0,0xa4,0xbe,0xed,0x73,0x34,0x42,0x26,0xf,0x1b,0x2b,0x43, + 0xd4,0x12,0x76,0x53,0x1e,0xfb,0xea,0xd6,0xa1,0xde,0x1c,0x1e,0xe1,0xf5,0x9,0x8e, + 0x8f,0xff,0x70,0x16,0x2f,0xa9,0xbd,0x98,0x1b,0xe5,0x7a,0x75,0xad,0xb8,0xef,0xc2, + 0x41,0x5,0xc,0x31,0x0,0x3f,0xcf,0x28,0x79,0xb0,0x9e,0x4,0x26,0xc9,0x67,0x5f, + 0x77,0x4f,0x9c,0x81,0xb9,0xc0,0xfa,0x8d,0x78,0xb2,0x1e,0x3f,0xc5,0xbf,0x4a,0x99, + 0x93,0xd3,0x4a,0x54,0x2f,0xae,0xbe,0x71,0x89,0xd4,0x48,0xd3,0xde,0xea,0xe6,0x86, + 0xfd,0x76,0x59,0x6d,0x7e,0xbf,0x4e,0x9c,0x77,0xbd,0xa1,0xeb,0xf8,0x29,0x99,0x30, + 0x77,0xe3,0xb8,0x11,0x72,0xd5,0xb3,0x4c,0x17,0xfa,0x44,0xe9,0x2e,0x25,0x80,0x71, + 0xff,0x76,0x37,0xc9,0xc9,0x4,0xf0,0xb0,0x9e,0x22,0xef,0x70,0xec,0x72,0x4b,0xb3, + 0xfc,0x13,0x80,0x8f,0x6c,0xaf,0x1,0xeb,0x3e,0xe8,0xcf,0x32,0x21,0x62,0x6f,0xe5, + 0xc1,0xc8,0xaf,0x3a,0x10,0x13,0xe8,0xa8,0x28,0x62,0x9,0x94,0x49,0xbd,0xb2,0x82, + 0x91,0x68,0x21,0xf4,0xaf,0xa7,0xff,0xb2,0xa7,0xa5,0xcc,0x35,0xf9,0x16,0x51,0x36, + 0x87,0x6,0x89,0xc0,0xd2,0xd4,0xb0,0xa7,0xe3,0xe8,0xcf,0xc1,0xe1,0x58,0xe9,0x20, + 0x75,0xda,0xc,0x4d,0xb7,0xa4,0x7,0x8e,0xd1,0x83,0xcf,0x6b,0xd8,0x3e,0xb8,0x95, + 0x25,0x67,0xb2,0x55,0xec,0x7d,0x9a,0x18,0xea,0x28,0x1e,0xf6,0xda,0x20,0xdc,0x4f, + 0x6e,0x27,0x5a,0x5a,0x62,0xcb,0xc2,0xbf,0xac,0x75,0xd4,0xe4,0x39,0xce,0xad,0x45, + 0x6a,0x9b,0x90,0xe,0xdd,0x2c,0xd2,0x87,0xfc,0xed,0x65,0x5b,0xd8,0xab,0x41,0x75, + 0xb4,0xdd,0xbf,0xfe,0xb7,0x8d,0x66,0xf0,0x60,0xdc,0x6e,0x56,0xe4,0x25,0x51,0x74, + 0xb5,0x88,0x25,0x5a,0x40,0xe0,0x3d,0xcf,0x58,0xb2,0x93,0x89,0x44,0xe6,0xe5,0x89, + 0x9d,0x9,0x60,0xb4,0x54,0xe9,0xd0,0x2f,0xeb,0x66,0xf1,0x93,0x2,0x10,0xd3,0x63, + 0x70,0x6b,0xba,0xda,0xf1,0xf4,0x7a,0xb5,0xe8,0x5a,0x70,0x7d,0x2d,0xb9,0x27,0x23, + 0x62,0x9,0x8c,0xfa,0xe6,0xf7,0x27,0x76,0x27,0xbb,0x91,0x79,0xb2,0x29,0x7,0xc2, + 0x31,0x51,0x2f,0x29,0x84,0x6a,0xf2,0x6c,0xcb,0x7,0x65,0xf,0x29,0x8,0xaa,0xf7, + 0xdd,0xd3,0xf1,0xe2,0x80,0x63,0x3a,0xbe,0xa7,0x48,0xcc,0x14,0x5e,0x83,0xdf,0x50, + 0xc9,0xfd,0x37,0xc2,0x52,0x21,0xc5,0x47,0x21,0x73,0x19,0xb8,0x1b,0xf8,0xb2,0xba, + 0x2a,0x96,0x20,0x98,0x1,0x59,0x27,0x77,0x91,0x72,0xa6,0x87,0xd0,0x32,0x5,0x3f, + 0xfc,0x69,0xf3,0x9b,0xd5,0xa9,0x53,0x93,0x1b,0xf2,0xab,0x3e,0x26,0xff,0x89,0xcf, + 0x75,0x70,0xf1,0xb9,0xe4,0xe8,0x85,0x2a,0x6b,0xa,0x8b,0xf6,0xe3,0x57,0x70,0xc5, + 0x95,0xb8,0xc,0xf6,0x7b,0xb2,0x67,0xd3,0x15,0xd2,0xf5,0xa2,0xe7,0x97,0xf2,0x35, + 0x2d,0xae,0xd8,0xf0,0x17,0xb2,0x7e,0x13,0x7f,0xbc,0xe6,0xf9,0xa3,0x6b,0xcf,0xd8, + 0xc,0x3,0xd1,0x67,0x7a,0x13,0x5f,0x14,0xac,0xd6,0x6c,0x46,0x71,0xea,0x8b,0x1d, + 0x64,0x33,0x6c,0x22,0xd3,0xe5,0x34,0xaf,0x8,0x30,0xe6,0x77,0x85,0x80,0x4f,0xd7, + 0x85,0xf1,0x70,0xf0,0xb7,0xd4,0x7a,0xcb,0xcb,0x67,0x66,0xfd,0x7,0xe1,0xab,0x7a, + 0x17,0xbd,0xc6,0x36,0xfe,0x2f,0xbe,0x2b,0xde,0x6d,0x5b,0x1f,0xd0,0xcd,0xa0,0xcd, + 0xa3,0xd,0x8d,0x81,0xe7,0x85,0x3d,0xf3,0x13,0x58,0x27,0xbc,0xf1,0x85,0x52,0x60, + 0x5d,0xe9,0xc9,0x7d,0x33,0x19,0x20,0xe1,0xeb,0x1f,0xf4,0x34,0x2a,0x6f,0x69,0x6e, + 0x74,0xc6,0x17,0xed,0xbb,0x3d,0xd5,0x11,0xa9,0xd9,0x2b,0x38,0xe4,0xf5,0x1a,0xca, + 0x7c,0x90,0x9b,0xf7,0xb2,0xcb,0x7b,0xa8,0x7c,0x63,0x62,0x34,0x8c,0xd6,0x9e,0x98, + 0x14,0x4,0x63,0xcb,0x5,0x7d,0x75,0x27,0x7f,0x8c,0xdd,0xf9,0xb9,0x95,0x49,0xab, + 0x4b,0xce,0x85,0xa1,0x7a,0x46,0x1f,0xd9,0xe5,0x9f,0x7f,0x1d,0xe,0x58,0xa5,0x7d, + 0x3c,0xff,0x5a,0xfb,0x78,0x45,0xba,0x3f,0x93,0xdf,0x13,0x24,0x1a,0x3a,0x9c,0x2f, + 0xd5,0xaa,0x32,0x20,0x9d,0x8b,0x70,0xee,0x70,0x28,0x8a,0xed,0xb1,0xd6,0x95,0x7, + 0x3b,0x37,0x87,0xe0,0xb2,0x75,0xd4,0x3f,0x77,0x17,0x73,0x19,0xbc,0xd,0xc9,0x4c, + 0xc2,0x35,0x9,0xd4,0xb8,0x5,0x6c,0x4b,0x3a,0x5,0xc5,0xc3,0xf6,0xfd,0xd,0xfd, + 0xe,0xe5,0x54,0x3b,0x4,0xba,0xfa,0xf3,0x79,0xc3,0x71,0xbe,0x36,0xe7,0x2e,0x2a, + 0x28,0x14,0xe9,0xd7,0xcb,0x44,0x69,0xde,0x1f,0xd8,0xad,0x5a,0xd0,0xae,0x1f,0xf8, + 0xf9,0x8e,0x8b,0xbc,0xd7,0xea,0xdc,0x4a,0xe9,0xeb,0x13,0xa6,0x77,0xf2,0x55,0xd9, + 0xeb,0x1f,0x7c,0x93,0xe4,0xf6,0x38,0x11,0xe0,0xf8,0xf5,0x6c,0xb7,0xb9,0x41,0x3e, + 0xa8,0xf3,0x15,0xfe,0xc8,0xf6,0xe2,0xe6,0x5b,0x93,0xa,0x7c,0x29,0x77,0x10,0x83, + 0xe,0xd2,0x76,0x7f,0x8e,0x6d,0x61,0xe1,0x78,0xfb,0x2c,0x4,0xfe,0xf9,0x9f,0x1b, + 0x24,0xc0,0x28,0x29,0x90,0x1f,0x60,0x4,0x58,0x99,0x80,0xb5,0xbd,0xee,0x57,0x58, + 0xbc,0x9f,0x7f,0x68,0x6a,0xc0,0x1f,0x4c,0xdd,0x4e,0x2f,0x3,0xf,0x3,0xb0,0xcc, + 0x43,0x73,0xc7,0x1d,0x4e,0xbc,0xb1,0x72,0x31,0x36,0x4a,0xfc,0x88,0xcb,0x9e,0x95, + 0x2d,0x4,0xea,0xd0,0x65,0x66,0xfe,0x87,0xde,0x20,0x3c,0x7b,0x4a,0x2e,0xf5,0x97, + 0x54,0x6c,0x1,0x3f,0xad,0x59,0x69,0x69,0x7e,0xf0,0x2f,0xc4,0xb1,0xa0,0xb9,0x77, + 0x7e,0x1a,0x16,0xb1,0x5f,0x52,0xb8,0x3a,0x31,0x81,0xd3,0xfc,0x61,0x45,0xb0,0xe1, + 0x17,0x1d,0x94,0x99,0x8c,0x92,0xf1,0x1,0xed,0x11,0x76,0xc7,0x3,0x4b,0xb1,0x18, + 0x54,0x4c,0xcb,0xd8,0x6a,0xb7,0xe5,0x97,0x48,0xd9,0x61,0x9,0x76,0x51,0xa2,0xd6, + 0xf7,0xaf,0x63,0x24,0x15,0x1b,0xfe,0x8c,0x98,0x9e,0xf1,0xa1,0x9f,0x35,0x7b,0xf7, + 0x1a,0xde,0xef,0xba,0xa3,0x12,0xaa,0x9f,0xa0,0x20,0xcd,0x70,0x65,0xa8,0xf8,0x3d, + 0xf5,0xf4,0xef,0xf3,0x94,0x5,0x3a,0xaa,0x4a,0xc9,0xa1,0x13,0x4d,0x79,0x15,0x9f, + 0x1c,0xbc,0xc2,0xd5,0x34,0x37,0x5b,0x31,0x59,0xfc,0x1b,0x62,0xf3,0x1a,0x4c,0x1c, + 0x3,0x5b,0x50,0x8c,0x9c,0xd4,0x69,0x67,0xda,0x66,0x5f,0xb4,0x6e,0x4a,0x69,0xc3, + 0x63,0x8f,0x12,0x2f,0x4b,0xb6,0x4b,0x76,0xdf,0xb0,0xc5,0xc1,0x73,0xf1,0x6f,0x8c, + 0xbb,0xf9,0x88,0xeb,0xa5,0xaa,0x46,0xc3,0x85,0xd6,0xb3,0x5d,0x59,0x9f,0xb6,0xb6, + 0xfc,0x54,0x58,0x7a,0xaa,0x83,0x19,0x48,0xc1,0x6a,0xaa,0xac,0xf6,0x9,0x29,0x48, + 0xc7,0x2b,0xb8,0x68,0x66,0x39,0xbd,0x81,0x5b,0xb7,0xf3,0x83,0x98,0x39,0x69,0xf0, + 0x75,0x25,0x1f,0xc4,0xe9,0x7c,0x30,0x93,0x9b,0xf0,0xf7,0xcb,0xbf,0x13,0xc3,0x8a, + 0x55,0x83,0xdf,0x77,0x37,0xb,0xa3,0xe,0x1e,0x5f,0x2c,0xac,0x19,0x6f,0x6,0xc6, + 0xd,0x7d,0x83,0x89,0x7d,0xbb,0x6,0x6,0xb0,0x1b,0x51,0x88,0x98,0xbc,0xd7,0xc0, + 0x6d,0x2a,0xea,0x20,0xbc,0xd9,0xc2,0xa9,0x74,0xf3,0x9,0x87,0xf9,0xeb,0xe,0x5c, + 0x5e,0x45,0x7b,0x1b,0xfb,0x48,0xb7,0x0,0x55,0x5e,0x17,0xb,0x4d,0x76,0x7b,0xed, + 0xa9,0x59,0x33,0x91,0x60,0xbb,0x4b,0xac,0xc0,0x22,0x97,0x24,0xff,0x2d,0xa1,0xbf, + 0x13,0x1f,0x15,0xd4,0x66,0x89,0x2e,0x3d,0x83,0x85,0xa0,0xb0,0xdc,0xc2,0x6b,0x96, + 0x43,0x7,0xe4,0xd4,0xea,0xc8,0xcd,0x51,0xc6,0x12,0x38,0xc1,0x98,0x60,0x69,0x9b, + 0x33,0x2e,0xa1,0x47,0x8b,0xb2,0x96,0xcc,0x33,0x16,0x38,0x7e,0x9e,0x6,0x8e,0xbe, + 0x2d,0xce,0xb3,0xce,0x79,0x8f,0xc9,0x8,0x3d,0xf6,0xe1,0x2d,0xd1,0xb8,0xe6,0x3d, + 0xfb,0xb5,0x94,0xd2,0xd1,0x0,0x2c,0xb,0x73,0x82,0x30,0xc0,0x48,0xff,0xc8,0x8, + 0xe0,0xd9,0x68,0x35,0x8e,0xb8,0x7,0xf,0x7f,0x27,0xe3,0x80,0x98,0x3c,0x1a,0x1c, + 0x19,0x4e,0x64,0xf9,0x23,0xd,0xf6,0x6f,0xd4,0xfb,0xec,0xf6,0xcd,0x72,0x8e,0xd8, + 0x35,0x71,0x83,0xed,0x8b,0xfb,0x81,0x79,0xa8,0xc,0x52,0x64,0x2,0xa2,0x41,0xf9, + 0xd8,0xf5,0x88,0xee,0x6a,0xe4,0x70,0x2b,0xda,0x53,0x56,0x85,0xad,0xc1,0xf9,0x3a, + 0xf7,0x55,0x2f,0xff,0xab,0x68,0x1a,0x1b,0xef,0xd2,0x4a,0x3e,0xf8,0x7e,0xc6,0x7d, + 0x16,0xf2,0xb1,0x42,0xd0,0xc4,0xdd,0x26,0xb4,0x60,0x6d,0xe7,0x2a,0xf1,0x41,0x38, + 0xbf,0x0,0xfa,0xfa,0x58,0x26,0xbe,0xbf,0x4f,0xfa,0xce,0x53,0xb3,0x18,0x9a,0x5, + 0x45,0x8d,0xbb,0x23,0xb6,0x2,0x84,0x91,0x8d,0x71,0x51,0xfb,0x5a,0x17,0x8f,0x18, + 0x82,0xf9,0x23,0x8b,0xb8,0xf3,0xde,0x2,0xb7,0x9a,0xc5,0xa9,0xe0,0xba,0xe7,0x78, + 0xeb,0x86,0xec,0xf6,0x67,0x82,0x3c,0x73,0x7,0x7f,0xb,0x66,0x91,0x3,0x1d,0x3, + 0x2e,0xc2,0x77,0x1b,0x59,0x23,0xe6,0xf8,0xbc,0x12,0xa9,0x18,0x20,0x8f,0x4c,0x69, + 0x81,0xee,0xbb,0xc0,0x48,0x19,0xe0,0xaf,0x1,0x83,0x48,0x73,0xec,0x8b,0xc3,0x34, + 0x56,0xbf,0x1,0x92,0x82,0x8,0x79,0x27,0xa7,0x97,0x9e,0xf7,0x45,0x78,0x1a,0x2f, + 0x6f,0xe5,0xba,0x5b,0x74,0x75,0x6c,0xd8,0xb1,0xbd,0xd5,0x83,0x26,0xf2,0x92,0x27, + 0x99,0x49,0x61,0xc3,0x90,0xa3,0x3b,0x19,0xe2,0x9e,0xd4,0xab,0xe7,0x73,0x99,0x81, + 0xd3,0x2d,0xef,0x24,0x63,0xf0,0x13,0x81,0x2d,0xa,0x6f,0x41,0x29,0x22,0x12,0x84, + 0x24,0x39,0xaf,0x37,0xd2,0x44,0xc8,0x4f,0xef,0x50,0x6,0x1d,0x79,0x3e,0x3d,0xc8, + 0xdb,0xc6,0x3c,0x93,0x40,0xf7,0xc,0x4e,0xaa,0x69,0x42,0xc9,0x3,0x5f,0x8,0x93, + 0x41,0x9e,0xff,0x22,0xd0,0x96,0x4b,0xe,0x0,0x92,0xc7,0x16,0x32,0x2b,0x9,0x43, + 0x2e,0x15,0x76,0xfd,0x18,0x14,0xc4,0x8e,0xf4,0x4e,0xd7,0x7a,0x85,0xd5,0x9e,0xb5, + 0xf3,0xc6,0x18,0xde,0x63,0x77,0xbf,0x83,0x96,0x26,0xf5,0xc0,0xcb,0x9f,0xf,0x85, + 0x1b,0x7f,0xf8,0x30,0xc9,0x19,0x7a,0x72,0x34,0xfc,0xfe,0x39,0xe7,0x79,0x94,0xfb, + 0x2e,0x7d,0xc6,0x54,0x55,0x4b,0xb2,0xa9,0x43,0x7f,0x91,0x9b,0xcb,0xe4,0x73,0xc7, + 0x4e,0x82,0x1,0x10,0x91,0xe1,0xbd,0x8f,0xf0,0x25,0x5,0x18,0x54,0x17,0x16,0x16, + 0xe1,0x9a,0xb9,0x28,0x4c,0x35,0xb0,0xcf,0xce,0x65,0x2,0x3d,0x90,0xb,0x29,0x21, + 0x67,0x5e,0xa7,0x3,0x2a,0xc1,0x67,0x41,0xc7,0x59,0x9a,0x9,0xac,0xc7,0x4,0x99, + 0x4f,0x9a,0xdf,0x8,0x57,0x3f,0x8d,0x20,0x91,0xee,0xbe,0xa2,0x2d,0xae,0xbf,0x7f, + 0x37,0x2f,0x1c,0x6d,0x5d,0x2e,0xe1,0xca,0x6e,0x45,0x6,0xc1,0x36,0xc7,0xed,0x11, + 0x43,0x41,0x59,0xb8,0xe2,0x69,0x77,0x22,0x9e,0x7e,0x26,0xf4,0x9,0xfe,0x9,0x7f, + 0xa5,0x9d,0x83,0xf7,0x39,0xc1,0x1,0x75,0x2e,0xae,0x88,0xd8,0xb5,0x7a,0x83,0x3, + 0x13,0x48,0x49,0x16,0x13,0x25,0x31,0xcb,0x2f,0x1c,0x36,0x96,0xf7,0xfc,0xa9,0x8c, + 0xa2,0xfe,0x6d,0x64,0xf2,0xec,0x78,0x70,0xc8,0x67,0xc2,0x8c,0xd,0x35,0x8a,0x37, + 0xf2,0x89,0x15,0xa6,0x9,0x33,0xe,0xcb,0x55,0x70,0xab,0x58,0x26,0x99,0xdb,0x79, + 0xad,0x10,0xa9,0x7b,0x7e,0xb0,0xdf,0x83,0xbf,0xbf,0xc6,0xe3,0x80,0x78,0x0,0x2, + 0xe1,0x72,0x63,0x6f,0x1d,0x3a,0x6,0x52,0xb8,0x50,0x81,0x23,0x1d,0x31,0x83,0x14, + 0xcb,0xdf,0x4a,0x45,0x2c,0x4b,0xc4,0x4a,0xec,0x61,0x4a,0xa3,0xa1,0x35,0x4e,0x76, + 0x1b,0x2d,0x1e,0x95,0xe2,0xa3,0x7d,0x40,0x7d,0x95,0xed,0x87,0x49,0xfb,0x7a,0x47, + 0xe6,0xf3,0x52,0x32,0x8f,0x64,0x38,0x94,0xe7,0x6e,0xf0,0xaa,0x3e,0x93,0xb8,0x13, + 0x1e,0x6e,0x93,0x35,0x1e,0x62,0x2,0x3f,0xa0,0xb3,0x81,0x93,0x72,0xb7,0x5,0x37, + 0x4d,0x60,0x7c,0xb7,0x99,0x17,0x35,0x6,0x22,0x2c,0x85,0x7f,0xdf,0xf0,0x40,0x76, + 0x62,0xa,0xf2,0x33,0x53,0x7e,0x7d,0xff,0x21,0x72,0xa1,0x96,0xa2,0xa6,0xb4,0xcf, + 0xb5,0x26,0x9b,0x6e,0xf6,0xf6,0x7a,0x41,0x8d,0x52,0xd3,0x75,0x71,0xf1,0xe,0x28, + 0x1,0x8c,0x74,0x9c,0x61,0x7a,0x97,0x9c,0x83,0xba,0x73,0xcf,0xe4,0x16,0xba,0xee, + 0x57,0x45,0x5f,0xde,0xd6,0xe8,0xd5,0x3,0x43,0xa,0xea,0x13,0x56,0x3e,0x47,0x63, + 0xd0,0x5a,0x7f,0xa5,0x2d,0xd4,0x16,0x22,0xe6,0x33,0x96,0xa7,0x2a,0xea,0xbb,0x42, + 0xe0,0x87,0x81,0xa1,0xb2,0x9,0x1,0xec,0xb5,0x94,0xb8,0x10,0x2c,0xe4,0x5c,0xce, + 0xac,0x72,0xe8,0x1d,0xd2,0xfa,0x7,0x29,0x88,0x36,0xe5,0x9d,0xe9,0x4f,0x9e,0xfd, + 0xe8,0x8f,0xcc,0x48,0x8b,0x22,0x53,0x23,0xf2,0x6a,0x8e,0xc3,0x3a,0x0,0x70,0x65, + 0x87,0x15,0x25,0x6,0xf2,0x85,0xa8,0x64,0xee,0xa8,0xc9,0x8a,0x2f,0x8e,0xe6,0x10, + 0xc3,0x8c,0x67,0xf0,0xf9,0xb5,0x2e,0x8e,0xa7,0x1d,0x24,0x27,0xe1,0xf1,0x82,0x23, + 0xbb,0xe9,0xab,0xf5,0x51,0xb9,0xeb,0xb3,0xc4,0xd4,0x28,0x3,0xc6,0xe1,0x18,0xca, + 0x2,0x8a,0x6,0x73,0xb2,0xc0,0x85,0x18,0xca,0x53,0xd8,0x5b,0xa0,0x32,0xc,0x44, + 0x16,0x52,0xf4,0xf9,0x67,0x77,0x89,0x2a,0xbb,0x28,0xdd,0xbf,0xb2,0x9f,0x1c,0xc, + 0xa1,0x9e,0xbf,0xb3,0x6d,0x7b,0x94,0x45,0xa8,0xac,0xad,0x5,0x67,0x6c,0x13,0x30, + 0x7,0x56,0xfb,0xeb,0xde,0xa7,0xe2,0xbf,0x8c,0x86,0xa,0x19,0x28,0xd0,0xf6,0x24, + 0x9b,0xc4,0xeb,0xe9,0xf4,0x3d,0xaf,0xce,0x34,0xd3,0x65,0x95,0x8a,0x77,0x50,0x1a, + 0x3a,0xd,0xd0,0x4b,0x40,0xf4,0x9f,0xd7,0x3b,0x3,0x36,0x94,0x80,0xc5,0x6,0x66, + 0x85,0x35,0x78,0x35,0x9e,0x38,0x61,0xb1,0xde,0x3d,0xf3,0x12,0xd0,0x88,0xbf,0x56, + 0xea,0xa6,0x3a,0x78,0x33,0xb5,0x1c,0xfe,0xb7,0x41,0xe8,0xbb,0xf4,0x5b,0xab,0xc4, + 0xbd,0x5f,0x8d,0xa7,0x8f,0xd3,0x35,0xa5,0x55,0x9e,0x5a,0xf9,0x5a,0x6c,0xd0,0xfc, + 0xab,0xfa,0x76,0x32,0x52,0xa1,0x12,0x5a,0xe1,0xcf,0xbf,0x50,0x1a,0xf6,0xf3,0x99, + 0xcc,0x67,0xa,0xec,0x5f,0x3d,0x7c,0x51,0xda,0x2d,0x93,0x3c,0xf8,0x9b,0x24,0xb2, + 0xa7,0x47,0xd9,0xa0,0x68,0xa8,0xd2,0x16,0x52,0xd7,0x3a,0x54,0xda,0xa9,0x64,0x5, + 0x69,0x76,0xfd,0x63,0x45,0x7c,0xbd,0x34,0x2b,0x71,0x68,0xb,0x9a,0x8,0xcb,0x26, + 0x29,0xf9,0x4c,0x6a,0xfd,0xbc,0xf0,0x66,0x41,0xd9,0x31,0x68,0x1e,0xdc,0xb8,0xf9, + 0x21,0x77,0x64,0x30,0x82,0xd,0x99,0x87,0x12,0xc1,0x88,0xfd,0x8c,0x27,0x76,0xfa, + 0xaa,0xad,0xa2,0xe3,0xac,0x40,0xdc,0x36,0xbc,0x67,0x7e,0xc4,0x7d,0xee,0xb3,0x7b, + 0xb8,0x60,0xfb,0xe5,0x6c,0x74,0x19,0x2c,0x8,0xb,0x81,0xb4,0x5d,0xe9,0x5e,0x5f, + 0x4f,0xdc,0x67,0xd7,0x17,0xfd,0x6d,0x8d,0xc9,0x2b,0xc1,0xdc,0x22,0x97,0xec,0xb, + 0xcd,0xc0,0x3e,0x52,0x5a,0x0,0x3,0xc7,0x4,0x95,0x3a,0x2,0x6c,0x39,0xa0,0x96, + 0xe3,0xe5,0x43,0x64,0x7b,0x56,0x7b,0xab,0xba,0xd,0xb7,0xe8,0x6a,0x8,0xe7,0x44, + 0x2a,0xa2,0xbe,0x10,0x37,0x33,0xaf,0xbf,0xd1,0x7d,0x17,0x63,0x74,0xb9,0x6f,0x78, + 0x38,0x52,0xb4,0xb7,0x42,0x50,0x8f,0x4f,0x60,0xb0,0xf0,0x17,0xba,0xde,0xfb,0xbe, + 0xb2,0xb9,0xf4,0x56,0x38,0xc4,0x33,0x41,0xac,0xb2,0xcb,0xce,0xe1,0x55,0x66,0x65, + 0xfc,0x9f,0xae,0x9a,0x66,0xb3,0x33,0x5e,0xb1,0x37,0x49,0xe7,0x41,0x7f,0xbd,0x45, + 0xdc,0xc1,0x8b,0x5d,0x45,0x24,0x7e,0x96,0xa4,0x90,0xec,0x2f,0x61,0xe1,0x2d,0x9f, + 0x9c,0x6e,0x2d,0x2d,0xf4,0xbe,0xe,0x86,0x25,0x54,0xc,0x8,0xbb,0x95,0xca,0xb0, + 0xeb,0xcb,0xb8,0xb2,0xb7,0xce,0x6a,0x8f,0x7,0x17,0xaa,0x5,0xc1,0xdd,0x41,0x95, + 0xc6,0x3a,0x94,0x23,0x62,0x40,0xf5,0xe7,0xbd,0xbb,0x42,0xc5,0x81,0x2f,0x39,0xb5, + 0x60,0x2,0x44,0x84,0xd,0x84,0x75,0x67,0xe,0xbb,0x14,0xc9,0xe6,0xe5,0x8a,0x7c, + 0x35,0xdf,0x17,0xda,0xc3,0x61,0x66,0xf,0x8a,0x61,0x92,0xc3,0xea,0x39,0xd1,0x2d, + 0x4f,0xd,0xd0,0xcd,0x41,0xfc,0xed,0x65,0x7a,0x3a,0x2f,0x83,0x34,0x28,0xdc,0xce, + 0xa0,0x20,0x40,0xc2,0x8c,0xf8,0xbe,0x8e,0x1,0xdb,0xae,0xd8,0x2d,0x10,0x8f,0x9c, + 0x7b,0xc6,0x41,0xd9,0x9a,0xe2,0xd9,0x5b,0xa2,0x77,0xfb,0xb,0x2,0xf1,0x5a,0xed, + 0x2b,0xd8,0x5b,0x8,0xa3,0xba,0xf0,0xc1,0x37,0x96,0xe0,0x8d,0x65,0xbf,0xba,0xdb, + 0x95,0x83,0xe7,0xeb,0xd8,0x43,0xac,0x10,0xf3,0xeb,0xc5,0xfa,0x52,0x6a,0x82,0x88, + 0x76,0xea,0xd5,0xe3,0xd9,0xe2,0x16,0x21,0xf2,0x82,0x75,0x22,0xf2,0xad,0x34,0xda, + 0x4d,0x30,0x53,0x42,0x87,0x8a,0x11,0x3c,0x6b,0xe5,0xf5,0x4b,0xb6,0x97,0x89,0xef, + 0x37,0x32,0xfe,0xbe,0xd4,0x71,0x6d,0x58,0x80,0x73,0x1c,0x1b,0x75,0x28,0x8c,0x1b, + 0xc4,0xf3,0x1d,0x79,0x8e,0x82,0xf5,0xb,0x69,0x8b,0x45,0x83,0x6b,0xd1,0xa5,0x3d, + 0xe2,0x4c,0x32,0xe9,0xa6,0x91,0x1d,0x2,0x10,0x9a,0x64,0x61,0xa0,0xe8,0xe9,0x63, + 0xc7,0x21,0x4f,0xfb,0x81,0x82,0x2f,0x69,0x82,0xf9,0x6d,0x4,0xc4,0x25,0x77,0x36, + 0x42,0x9f,0xcd,0xd6,0xbf,0x8b,0x98,0xab,0x88,0x14,0x1a,0x58,0x6c,0x6a,0x73,0xd0, + 0x49,0xf,0x9,0xd6,0xf1,0x6d,0x7e,0x5e,0x4d,0xa6,0x94,0x7c,0x15,0xc4,0xf5,0xc7, + 0x67,0x4f,0xd7,0xd,0x4,0xcb,0x39,0x3f,0xfc,0x70,0xab,0x1d,0x99,0xc4,0x96,0xfb, + 0xcd,0xbf,0x35,0xb5,0xeb,0x97,0xae,0x1e,0xa0,0xe3,0xa2,0x45,0xc2,0x7f,0x68,0x53, + 0x8f,0x54,0xd8,0xa7,0xaf,0xdf,0x38,0x57,0x2f,0x7b,0x94,0xfe,0x34,0x90,0x5c,0xea, + 0x7a,0x7a,0xa3,0xbe,0xe7,0xe,0x17,0xac,0x20,0xa4,0x89,0x23,0x72,0xe8,0x46,0xf3, + 0xc9,0x8c,0x4b,0xd8,0xd0,0x8d,0x2c,0x7b,0x37,0x13,0xa9,0xe4,0xf5,0x54,0x5e,0x37, + 0x86,0xe,0x72,0x94,0x7d,0x42,0xef,0xcb,0xe4,0x5a,0xec,0xd9,0x79,0x67,0x61,0xb2, + 0xd8,0x1f,0x66,0x78,0x4b,0x1c,0xca,0x52,0x7,0x9d,0xba,0x5e,0xb2,0xe1,0xae,0x44, + 0x9a,0x54,0xe6,0x91,0xa7,0xd3,0x1,0x26,0x43,0x86,0xcf,0xff,0xc8,0x67,0x33,0xe5, + 0x91,0xe5,0xfa,0xce,0x61,0x65,0xd3,0x37,0x8f,0xa6,0x3b,0xb4,0xa0,0x34,0x33,0x8d, + 0x4f,0x19,0xe5,0x12,0x85,0xdf,0x4a,0x8e,0xca,0x2b,0x2a,0x79,0x53,0xd3,0xfc,0xf0, + 0xff,0xc0,0xdc,0xc4,0xca,0x70,0xdb,0x79,0xc,0xae,0x60,0x9b,0x89,0x13,0x5c,0x50, + 0xe0,0xbc,0xe6,0x18,0xb6,0x84,0x52,0xf3,0xc3,0xaf,0x9a,0x9,0xb5,0x8a,0xf4,0xad, + 0x4d,0xbe,0x30,0x6b,0x6,0xc3,0x45,0xad,0x1b,0x79,0x81,0x1f,0x15,0x81,0x96,0x13, + 0xa,0x4f,0x1e,0xbc,0x63,0x25,0x5a,0xfd,0xbb,0x53,0xc4,0xf6,0x60,0x66,0x50,0x54, + 0x93,0xad,0xd6,0xba,0x35,0xe4,0x71,0xf0,0x25,0x6f,0xd7,0x4f,0xb4,0x46,0x4c,0xb0, + 0xd5,0xd0,0x4f,0xf4,0x81,0x4f,0xb8,0x9a,0x43,0xbb,0xa7,0x68,0x5c,0xad,0xdc,0x4f, + 0x9e,0x46,0xc6,0xb2,0x68,0xcd,0xe8,0x7c,0x87,0x69,0xda,0xd2,0xe3,0x30,0xab,0xb6, + 0xc6,0xd0,0x0,0xed,0x72,0xc5,0x12,0x6d,0x29,0x33,0x99,0x83,0x77,0x9d,0xe8,0xfb, + 0xb8,0x74,0x67,0xcb,0x58,0xbc,0x6d,0x3a,0xec,0xb6,0xc4,0x9e,0x8e,0xb0,0x52,0xee, + 0x20,0x83,0x51,0xeb,0x34,0xfe,0xd2,0xc0,0x6f,0x93,0x93,0x4d,0x97,0x5a,0xeb,0x45, + 0xa7,0x4b,0xb4,0xef,0x5b,0x10,0xbb,0x1d,0xcc,0xc0,0xd1,0xb5,0x60,0x2a,0xa7,0x59, + 0xe9,0xc1,0xa4,0x81,0xcd,0x9c,0x89,0xd3,0xb6,0x96,0x90,0x3b,0x14,0xa4,0xe9,0xeb, + 0x56,0x57,0xc1,0x99,0x29,0x36,0x8a,0xc1,0xa8,0x6,0x28,0x7c,0xfd,0x40,0x83,0xba, + 0x49,0xe,0xc8,0x9d,0xaa,0xe4,0x7f,0xaf,0xd2,0xd9,0xde,0x5a,0x4d,0xb7,0xea,0xc0, + 0xc2,0x8c,0xae,0x95,0xb0,0xce,0x66,0x68,0x91,0xc9,0xd1,0xef,0xfa,0x61,0xdc,0xa2, + 0x24,0x89,0x87,0x16,0xfc,0x5c,0xd4,0x3b,0xd9,0xae,0x38,0xc2,0x16,0x4e,0xf0,0x69, + 0x1f,0x2f,0x52,0x1e,0x55,0xc1,0x0,0x6d,0x81,0x56,0x96,0x9b,0x68,0xd2,0xea,0x87, + 0x54,0xa5,0x97,0x55,0x9c,0x2d,0x65,0xf6,0x6,0xc7,0xdf,0xa4,0xe8,0x5a,0xb7,0x7f, + 0x1c,0x35,0x8b,0x1b,0x48,0x70,0x2f,0x2,0xfc,0xed,0xa1,0xa2,0xb,0x1d,0x5,0x45, + 0xe2,0x96,0xd,0xbc,0x8a,0xac,0x49,0x5f,0x6e,0x4a,0x68,0x16,0xe,0xe3,0xbc,0xbf, + 0xfe,0xd1,0xb1,0xb6,0x62,0xe0,0x5d,0x7b,0xde,0xa2,0x4d,0x16,0x46,0x8,0x71,0x0, + 0x55,0xc3,0x12,0x40,0xea,0x8a,0x36,0x4e,0x84,0x65,0x26,0xeb,0xf3,0x9,0xd7,0x4a, + 0xb5,0x72,0xa6,0x65,0x28,0xb4,0x4d,0x73,0xb3,0x92,0x55,0xe4,0x59,0x56,0x38,0x4c, + 0x66,0x68,0xe5,0x23,0x42,0x60,0x39,0xab,0x28,0x9e,0xa4,0xe0,0xd8,0x87,0xa7,0xca, + 0x96,0xb7,0x93,0x27,0xee,0xfc,0xce,0x6f,0xed,0x92,0x55,0xfa,0xf7,0x4f,0x91,0x7, + 0x81,0xf9,0x89,0xf6,0x75,0x58,0xc,0x50,0x7,0x45,0x7a,0x2b,0xde,0x7c,0x77,0x1c, + 0x65,0x0,0x1f,0x1d,0x9,0xd3,0x33,0x4f,0xdd,0xad,0x7b,0x80,0xa7,0x3b,0xd0,0x51, + 0x23,0x50,0xae,0x5,0x80,0x3a,0x70,0xc2,0x28,0xc6,0x75,0xba,0xba,0x6c,0x66,0xe1, + 0x97,0x7e,0x2a,0xe1,0x17,0x67,0xb2,0xd6,0xb8,0xf3,0x2c,0x12,0x64,0x8c,0xa2,0xb5, + 0xf7,0x2b,0x8b,0x96,0xd2,0xeb,0xc0,0xf1,0x90,0x1e,0x38,0x86,0x43,0xe7,0x55,0x60, + 0xda,0x5e,0x20,0x79,0xd1,0xfa,0x1f,0xa1,0xda,0x78,0x21,0x4e,0x7b,0x77,0x5b,0x8b, + 0xfb,0xee,0xd0,0x24,0xb5,0xdf,0xdb,0x12,0xcf,0x88,0xc4,0x7,0xc5,0x72,0x55,0xc7, + 0x21,0xa2,0x42,0x54,0x6f,0x9e,0x5d,0x6e,0x39,0xf8,0xfc,0xa6,0x33,0x6a,0x45,0xd, + 0x2b,0xb3,0xdd,0x20,0x5a,0xa2,0x74,0xab,0x14,0xd8,0xb5,0x89,0x68,0x53,0x76,0x76, + 0x19,0x2b,0x2,0x43,0x9e,0x5,0xda,0xcc,0x6a,0x89,0x75,0x90,0xa6,0x9c,0x49,0xef, + 0xa7,0x84,0xad,0xbf,0xf8,0xa0,0xd1,0xa1,0x28,0x57,0x25,0x82,0xe9,0x72,0x7b,0xc0, + 0x37,0xf1,0x79,0x24,0x6e,0x58,0xf8,0x5d,0x86,0x76,0x86,0x62,0x95,0x4e,0x2f,0x8a, + 0xd1,0x8,0xb4,0xcf,0xb,0xd7,0x7e,0xa,0xe5,0xf,0x86,0xaf,0x80,0x2b,0xc9,0xc9, + 0xb5,0x90,0x7b,0xcc,0xed,0x53,0xc6,0xf5,0x2f,0x71,0x51,0x89,0xc,0xe0,0xce,0xd6, + 0x67,0x4c,0x61,0xd6,0xce,0x81,0xcc,0x8f,0xcc,0xe9,0x20,0xdd,0x4c,0x10,0x95,0xab, + 0xa,0xc1,0x9b,0xd2,0x1a,0xcc,0xad,0x47,0x88,0xa9,0x1c,0x8e,0x4f,0x35,0x0,0x39, + 0xde,0x32,0xb,0x1b,0x92,0x9d,0xed,0x13,0xdf,0xce,0xc,0x6f,0x99,0x68,0x5a,0x26, + 0xd4,0x19,0x58,0x25,0x56,0x3e,0x68,0xd9,0xaa,0xe9,0x14,0x7f,0x40,0x35,0x73,0x61, + 0x5d,0xf5,0x1e,0xbb,0x1c,0xfe,0x59,0x5e,0x6b,0xfc,0x4c,0xb1,0xb6,0x73,0x64,0x15, + 0x8e,0xaa,0x78,0x45,0xa0,0x16,0x19,0x8,0x65,0xd5,0xf4,0x3a,0x31,0xeb,0x84,0x4, + 0x14,0x52,0xa9,0xad,0xd9,0xbc,0xb1,0xe4,0xb9,0x75,0x35,0x5e,0x1b,0xac,0x70,0x38, + 0xfa,0xc3,0x71,0xa6,0x4f,0x4,0x1b,0x5,0x61,0x63,0xb1,0xc7,0xb,0x2b,0xba,0xd2, + 0x21,0x76,0x4d,0x45,0x6a,0x70,0x7e,0x6b,0x7d,0xd1,0x7f,0x21,0x55,0x6b,0xa5,0x21, + 0x31,0x9a,0xaa,0x8f,0xc5,0xbb,0xce,0xaa,0x6,0xbb,0x5e,0xde,0x51,0xbf,0x1a,0x8e, + 0xd0,0xe9,0xa5,0x7f,0xb4,0x1a,0x71,0xf,0x1d,0x28,0x5c,0xba,0x17,0x4d,0x55,0x99, + 0x95,0xaf,0xc6,0x5b,0x33,0x11,0xf1,0x5a,0xb1,0x97,0xb4,0xcd,0xc1,0x43,0x2c,0x2c, + 0x1c,0xe,0x62,0x5f,0x5a,0x52,0xce,0x27,0xb,0x85,0xa8,0x5e,0x17,0x8a,0xd3,0xc2, + 0xba,0x1d,0x41,0x79,0x17,0x3c,0x83,0x38,0x9,0xce,0x1,0xa4,0xa7,0xb1,0xf1,0xb6, + 0x8a,0x45,0x6a,0xdf,0xed,0x24,0x5b,0xfc,0x33,0xa3,0xf9,0xfc,0x94,0xd2,0xc1,0xa2, + 0xd,0xa1,0xc8,0xfe,0x2e,0x92,0xd2,0x86,0x64,0x9e,0x11,0xf4,0x45,0x95,0x34,0x5f, + 0x3f,0xf9,0xee,0x9b,0xbe,0x3e,0x11,0xea,0xa8,0x95,0x29,0x9e,0x31,0xef,0x81,0x33, + 0xd6,0x93,0xab,0xe,0x12,0x49,0x7,0x75,0x69,0x73,0xaf,0x76,0xe,0x7e,0x5f,0xaf, + 0x34,0xba,0x4b,0x9d,0xcd,0x4c,0x40,0x9,0x7a,0x51,0x6,0xc0,0xf4,0xe7,0xff,0xa, + 0x2a,0x6e,0xa,0xa0,0x70,0xfb,0x27,0xf8,0x17,0x8d,0xc3,0x2e,0xea,0x4e,0x93,0x4c, + 0x90,0xbe,0x5,0x73,0xba,0xbf,0xb,0xf9,0x15,0x89,0x22,0x94,0x8c,0x9b,0x59,0xbe, + 0x1d,0x2f,0xf4,0x9f,0xf,0xd2,0xc0,0x3f,0xbf,0x32,0xbe,0x7a,0x64,0x6f,0x4e,0xf2, + 0xb6,0xa8,0x9a,0xd2,0x46,0x74,0xc5,0x9a,0x2,0x8d,0x1b,0xc5,0xd9,0x23,0x92,0xd9, + 0x66,0x10,0x55,0xe5,0x12,0x6b,0xc,0x70,0x7a,0xa6,0x17,0x80,0x20,0x5,0x97,0x51, + 0xbe,0x8e,0x9,0xc1,0x72,0xc0,0x2d,0xbd,0xf4,0xcf,0x6a,0x50,0xf,0x96,0x5d,0x75, + 0x8a,0x7a,0x41,0xee,0xc6,0xaa,0xef,0x3c,0xc8,0x25,0x6e,0xad,0xd4,0x8b,0xb8,0xe7, + 0x23,0x47,0x67,0x87,0x7c,0x89,0x6c,0xd0,0x1a,0x60,0x9,0x1b,0xfa,0x5b,0x6e,0x2e, + 0x8d,0xe8,0xf7,0x3b,0xe5,0xb5,0xf9,0xd8,0xd2,0x13,0x73,0x56,0x47,0xb3,0x6f,0xba, + 0x18,0xe2,0x4b,0xb1,0x31,0x22,0xef,0xd0,0xa5,0xd7,0xef,0x2e,0xa8,0xf8,0x77,0xe3, + 0x26,0xb3,0x42,0x86,0x7c,0xe7,0x45,0x82,0x96,0xce,0x7d,0x6a,0x86,0x5d,0x38,0xd5, + 0x47,0xb6,0x8b,0x79,0x4c,0xb9,0xeb,0x8e,0xc6,0x43,0xdc,0xbe,0xa9,0xab,0xe1,0x96, + 0x7a,0xb4,0x96,0xee,0xef,0xbf,0xeb,0x5b,0xb,0x1c,0x60,0x34,0x4b,0x39,0x49,0x55, + 0x46,0x2d,0x3f,0xe7,0xa5,0x3,0xc9,0xa,0x8b,0x3d,0xff,0xbc,0x2f,0xe6,0x2a,0x0, + 0xec,0xb2,0xcd,0x8c,0x2a,0x53,0xc,0x5d,0xc0,0x3f,0x3f,0x64,0xd7,0x7d,0xd8,0xd7, + 0x46,0xe6,0xdb,0x7b,0xee,0x7f,0xee,0xdf,0x97,0xb8,0x3f,0xf7,0xf1,0x5e,0x50,0x21, + 0x5c,0x3e,0xd2,0x32,0xe2,0xb3,0xe6,0xf2,0x8c,0x22,0xf9,0xcb,0x2,0x8b,0xe0,0xdb, + 0xaf,0xca,0x8c,0x1b,0x68,0x4f,0x77,0xd4,0x5e,0xc2,0x68,0xcc,0x2,0xf2,0x7e,0xa3, + 0x60,0x4f,0x93,0x3,0xf5,0x9,0x89,0xfb,0xd3,0x81,0xac,0x1b,0x67,0x4b,0xb2,0x25, + 0x61,0x17,0xfb,0x8f,0xbe,0xe5,0x57,0x1b,0x16,0xd0,0x1b,0xec,0x13,0x31,0x22,0x62, + 0x62,0xcf,0xdc,0x14,0x62,0xe4,0xaa,0x52,0xf7,0xb3,0xcd,0xcb,0xf1,0x10,0x24,0x19, + 0x80,0xd0,0x90,0xff,0xcd,0x98,0x62,0x67,0x63,0x44,0xc8,0xa1,0x8c,0xfd,0xf2,0xc4, + 0xc7,0xab,0xc6,0x3c,0xc1,0x32,0x89,0x5c,0x41,0x7e,0x81,0x4c,0x2,0xcb,0x6e,0xbd, + 0xb0,0xc2,0x8b,0x7d,0xb,0x97,0xaf,0x1b,0x94,0x8e,0x4f,0x70,0x2b,0x63,0x91,0x48, + 0x6d,0x94,0x76,0x2b,0x20,0x8,0xc,0x3c,0xba,0xd6,0x60,0x87,0xa0,0x3b,0x39,0x9b, + 0x84,0x20,0xc1,0x3b,0x59,0x23,0x25,0xcd,0xbf,0x64,0x9,0xa4,0x96,0x93,0x9b,0xf9, + 0x7b,0xb5,0x7d,0x1f,0xd8,0xc2,0x26,0x42,0xdc,0x8,0xbb,0xeb,0xb0,0xc4,0x61,0x15, + 0xcd,0xa1,0xe5,0x98,0x6b,0xef,0xc6,0xb3,0xed,0x2f,0xf2,0x93,0x0,0x8,0xa9,0x78, + 0x61,0x87,0xc0,0x1f,0x84,0xf9,0x8b,0x35,0x86,0x27,0x3d,0x68,0xc,0xbc,0x8d,0x8, + 0xde,0xc,0xf8,0x9d,0xec,0xc5,0xba,0x9c,0x59,0xca,0x2c,0x35,0xd4,0x1a,0x4c,0x50, + 0xe3,0x30,0x29,0x3c,0x53,0xeb,0x53,0x21,0xe7,0x3e,0xb7,0x39,0x2c,0xe9,0x37,0x27, + 0xc3,0xf,0xb9,0xe1,0x8,0xfb,0x9b,0x77,0x55,0xfe,0xb1,0xd8,0x8,0xe1,0xea,0xf8, + 0x92,0x9c,0x7a,0x9b,0x5,0xfc,0x1d,0x2e,0xfb,0x9,0x49,0x21,0x4f,0xc4,0x85,0xe8, + 0x9c,0x2d,0xf6,0x67,0x40,0x9f,0x73,0x7f,0xbc,0x49,0x95,0x46,0xa4,0x8b,0xf9,0x4b, + 0x2c,0x96,0xd,0xf0,0x15,0x4e,0x30,0x12,0x91,0xac,0xc3,0x6a,0x10,0xb8,0x80,0x8f, + 0xaf,0x43,0x97,0xcc,0x5e,0x69,0xdd,0x39,0xa8,0x68,0x2c,0x44,0x15,0xbd,0xc3,0x51, + 0x51,0x9e,0xc,0xff,0x5c,0x3e,0x9d,0x49,0xe9,0xf1,0xca,0x1d,0x72,0x14,0x81,0x2e, + 0xe3,0x91,0xb8,0x3c,0x54,0xbd,0x7f,0x7c,0xc0,0x57,0xcb,0x1f,0xa9,0x6a,0xfd,0xd9, + 0xba,0xf3,0xc4,0x67,0x6,0x65,0x81,0x82,0xb1,0xdb,0xe9,0x6a,0xc9,0x84,0x9a,0x93, + 0xde,0xbf,0x8b,0xee,0x2d,0xd7,0x7e,0xfe,0xfa,0xe1,0xc,0xca,0xe1,0xb1,0x30,0xc1, + 0x2a,0x3d,0xaf,0x92,0x46,0x92,0x54,0x90,0xb9,0x4f,0x6f,0xd3,0x37,0xfe,0x6e,0x97, + 0x54,0xb5,0x25,0xe2,0x1e,0xf,0x39,0x8,0x6,0x16,0xa3,0x1f,0x4c,0x68,0x0,0x87, + 0xb8,0x3a,0xb0,0x6d,0xe6,0x17,0x55,0xba,0xe,0xdc,0xa4,0xb1,0xd,0xa7,0x20,0xae, + 0x13,0x7f,0x61,0x6e,0x6e,0x8f,0xef,0x2f,0xaa,0xd7,0xa0,0x2a,0x78,0x61,0x79,0xc3, + 0x62,0x38,0xde,0x3d,0xd0,0x57,0x4b,0x11,0x8b,0xa1,0x8b,0x83,0x21,0x3d,0xda,0xf6, + 0xbf,0xdf,0xdf,0x7f,0x71,0xdc,0x2f,0x8c,0x1f,0xf9,0x6c,0x6c,0x51,0x9c,0x66,0x8c, + 0x51,0x7c,0xd0,0xd5,0xe9,0x94,0xf5,0x5d,0x81,0x3f,0xc7,0xa9,0xb2,0x36,0xdc,0x4f, + 0x7d,0x8c,0x4c,0x51,0xd1,0x6b,0xf9,0x57,0x6c,0xcd,0xaa,0x8,0x2a,0x71,0x71,0x5f, + 0xf5,0xcb,0xa2,0xf6,0xe5,0x45,0x3b,0x5e,0xfd,0x31,0xac,0xe0,0x46,0xf4,0x94,0x56, + 0x90,0x65,0x7b,0xac,0x9b,0xe4,0xe7,0xd5,0x8f,0x74,0x6,0x34,0x6e,0xbd,0xf3,0x94, + 0x40,0xa9,0xbb,0xa3,0xe5,0xb0,0xb6,0xd5,0xb5,0x87,0xf,0xfe,0x7b,0xe4,0x59,0xd9, + 0x9f,0x5d,0xe3,0xb1,0x44,0x7b,0x50,0x2b,0x6e,0xe3,0x3d,0x5a,0xb4,0x6e,0x30,0x73, + 0x61,0xee,0xa1,0xdd,0xc1,0xb5,0x3c,0x6,0xf5,0x81,0xb1,0x27,0x2,0x2f,0x18,0x17, + 0x8c,0xbb,0xb8,0x6c,0xb9,0xab,0x71,0xf5,0xd8,0x80,0xf3,0xeb,0x14,0xa,0x6d,0xcf, + 0xe2,0xcd,0xa4,0x73,0x7b,0xf3,0xe3,0xa4,0xb7,0xf7,0xc8,0x45,0xfd,0x60,0xca,0xb7, + 0x63,0x6,0xf3,0x40,0x7e,0xa1,0xea,0x7,0x2a,0xb,0xe2,0x7f,0xd4,0x47,0xbd,0xfe, + 0x28,0x79,0xd,0xe9,0xb2,0xcb,0x2c,0x3f,0xf0,0x19,0xf9,0xec,0x90,0x93,0x98,0x1b, + 0x8c,0x33,0x79,0x87,0x3b,0x66,0x3b,0x30,0xa2,0x0,0x8b,0xb1,0x93,0xf,0x4d,0x5e, + 0x14,0x4d,0x18,0x72,0xbe,0xb5,0xb2,0x12,0x80,0xd7,0x16,0x5b,0xf7,0x52,0x44,0xee, + 0xce,0xab,0x1f,0x13,0x96,0xe2,0x77,0xb3,0xbf,0x15,0x21,0x1d,0x69,0x2a,0x88,0xe, + 0x2f,0x8d,0xbe,0x13,0xda,0xfe,0x82,0x5,0xe3,0x56,0x9d,0x2,0x37,0x57,0x8f,0x7f, + 0xc5,0x7e,0x54,0xb0,0xbe,0xe7,0xfa,0xe6,0x58,0x67,0xb8,0x9e,0x68,0x46,0xf4,0x7b, + 0xf4,0x55,0x71,0x7d,0xf7,0x29,0x25,0x48,0xd0,0xfd,0x4e,0x18,0xef,0x8b,0x2b,0xee, + 0xfe,0xfc,0x97,0x5e,0xa5,0x17,0x37,0x7e,0x61,0xb5,0xc7,0xc6,0x22,0x4d,0x2a,0xe, + 0x39,0xb3,0xba,0xa8,0x68,0x4,0x89,0xd,0x64,0x7,0x33,0xb8,0x99,0xa7,0xd2,0xcc, + 0x51,0xff,0xb9,0x27,0xd2,0x1a,0x39,0x4b,0x9a,0xc0,0x80,0xbe,0x4d,0xa4,0xcd,0x41, + 0x79,0xd0,0xab,0xf5,0xb8,0x69,0x12,0x81,0xb7,0x59,0xba,0xfe,0xc2,0xfa,0xe8,0x73, + 0x5f,0x9a,0xc8,0x43,0xb1,0xdb,0x89,0x3c,0x80,0xd1,0x3b,0xb6,0x69,0xb9,0x7c,0xfa, + 0x3f,0x60,0x8f,0x5a,0xb6,0x5c,0x18,0x92,0x44,0xd4,0x73,0x93,0x44,0xb4,0x6,0x33, + 0x78,0xb2,0x7f,0x54,0xbd,0x24,0x79,0xc9,0xcc,0xbc,0x99,0x68,0xfe,0xc3,0xe9,0x8c, + 0xfa,0xb8,0xc4,0x73,0x2,0xe0,0x26,0xb6,0xf1,0xea,0xa1,0x6a,0x29,0xc9,0x6a,0xf0, + 0xb8,0xea,0xf1,0x5a,0xfc,0xc5,0x7b,0xea,0x8d,0xfc,0x4e,0x76,0x7a,0xe8,0xd7,0x78, + 0x9d,0x3a,0xbb,0xea,0x9f,0x77,0xfe,0x8b,0x7e,0x4c,0xce,0x99,0x8e,0x7b,0x40,0xde, + 0xb8,0xdc,0xea,0x64,0xaa,0x5f,0x5a,0x8b,0xdd,0x43,0x3f,0x60,0x22,0x66,0x39,0x3f, + 0x5b,0xca,0x65,0x60,0xb4,0x3e,0x3a,0x5e,0xdf,0x99,0xc5,0x82,0x81,0x78,0x77,0xe7, + 0x44,0x9e,0x2a,0x29,0x50,0x18,0xbf,0x65,0xee,0x75,0xcc,0x7b,0xb3,0xf0,0x5,0xcc, + 0x35,0xc0,0x22,0xf6,0x82,0xfc,0xd4,0xcb,0xbf,0xe7,0xfe,0x10,0x4e,0x5c,0x57,0xa4, + 0x7c,0xba,0xd9,0xed,0x41,0x73,0x83,0xd,0x21,0xf7,0xa7,0xd8,0x8f,0x17,0xd6,0xc9, + 0xa5,0x6f,0xac,0x64,0x3f,0xb8,0x27,0x28,0x8c,0x4a,0xcc,0x7b,0xf5,0xf9,0xac,0x61, + 0x13,0xb1,0x34,0x63,0x6f,0xba,0x92,0xc7,0x1e,0x2f,0xaa,0x64,0xa9,0x22,0x6e,0x74, + 0x2,0xce,0x51,0x2e,0xe,0x8c,0x36,0x7c,0x30,0xfe,0x5f,0xb4,0xbc,0x8e,0x59,0x3a, + 0xc4,0xe0,0x4b,0x3a,0x9,0x46,0x90,0xa2,0xaa,0x1d,0xa5,0xf7,0x7e,0xd2,0xb5,0xbb, + 0x2f,0x1e,0xbb,0x95,0xa8,0x87,0x9a,0xf1,0x7f,0xf1,0xf3,0x55,0xa4,0x4d,0xd4,0x97, + 0x92,0x2,0x43,0xe5,0x44,0x27,0xc,0xfa,0x72,0x22,0xbd,0x5a,0x18,0xf3,0x11,0x1e, + 0xe,0x26,0xfe,0x59,0xe7,0x3a,0x41,0x82,0x58,0x9f,0x6a,0x8c,0x39,0xfa,0x9,0x86, + 0x61,0xa9,0x48,0x76,0x7,0x33,0xf1,0xd4,0xd6,0xdb,0xf1,0x39,0xf7,0xdf,0x4b,0xb1, + 0x2a,0x9d,0x94,0xf,0x6,0x21,0x9d,0xd5,0x61,0xa1,0x96,0xe8,0x86,0xe6,0xef,0xbb, + 0x92,0x8b,0xfe,0x4d,0xbf,0x50,0x7f,0xe8,0x32,0x71,0xf9,0xb6,0x9b,0x79,0x30,0xae, + 0xf8,0xdd,0x59,0x75,0x87,0x80,0x9b,0xe3,0xab,0x16,0x13,0x37,0x8d,0xe2,0x73,0xd2, + 0xe4,0xa7,0xa9,0x64,0x11,0xb5,0x5,0x6f,0xc7,0x6a,0xa2,0xd1,0xe7,0x72,0x6e,0xb7, + 0x5c,0xd8,0x94,0x1c,0x5f,0x17,0xcd,0x1,0x19,0xb7,0x98,0x68,0x21,0x3b,0x5b,0xf9, + 0x32,0xb,0x5d,0x4d,0xa5,0x3f,0x57,0x6c,0xf9,0x51,0xb9,0x3d,0x54,0xc9,0xf8,0xce, + 0xae,0x3b,0x85,0xe6,0xc9,0xb7,0xf9,0x82,0x7e,0xaf,0xb2,0xcb,0x8f,0x66,0x78,0x32, + 0x8e,0x76,0x88,0x8,0x16,0x9f,0x7d,0x8b,0x2b,0x4c,0x33,0x2a,0x2f,0x7a,0xed,0x7e, + 0x78,0xce,0x34,0x1a,0xa5,0x28,0xde,0x5,0xe,0xcb,0x59,0x58,0x8f,0x5,0x6b,0xb3, + 0xec,0x3f,0x5,0xf1,0x64,0x88,0x39,0xb7,0x92,0x3c,0x96,0x2b,0x10,0xdd,0x87,0xee, + 0x27,0xc6,0xcb,0xcb,0x56,0xbf,0x40,0xa,0xc1,0xc9,0x2e,0xa3,0x6f,0xa,0x89,0x88, + 0x40,0xf7,0x1,0xa8,0x5b,0x6e,0xf1,0xf5,0x9a,0x9b,0xad,0xd3,0x5f,0x82,0xde,0xbc, + 0x99,0x6a,0xde,0x9a,0xb4,0xde,0x42,0xf0,0xe6,0x1f,0xad,0xd8,0xd3,0xc7,0xc7,0x7a, + 0xa,0x78,0xa6,0x99,0x79,0x54,0xc2,0xb,0xfc,0xc0,0x57,0x42,0x9f,0x93,0xf2,0xd3, + 0xf8,0x61,0xe2,0x7,0x3,0x7,0x92,0xfc,0xf2,0x9a,0x8c,0x81,0xd7,0xfb,0x9b,0xb, + 0x15,0x37,0x2,0x9d,0xeb,0xbf,0xf3,0xdf,0xb4,0x73,0x58,0xb1,0xc0,0x5e,0xb4,0x6b, + 0xd8,0x9e,0xb2,0x23,0xcf,0xe6,0xcb,0x79,0x23,0x5b,0x6a,0x75,0x8b,0xa9,0x43,0xa6, + 0x1e,0xfb,0x56,0x31,0xe7,0x5d,0xcd,0x8b,0xe4,0xbc,0xdc,0x93,0x18,0x1c,0x71,0x89, + 0x66,0xf0,0xcb,0x88,0xbc,0xa8,0x9e,0x28,0x15,0x44,0x1c,0x4e,0x3f,0xd,0xc1,0x7d, + 0xc9,0xf1,0x7b,0x67,0x3a,0x70,0x9c,0x4a,0x87,0x55,0x84,0xe,0x7a,0x59,0x63,0x3f, + 0x7a,0x2d,0xc6,0xef,0x15,0xe7,0x8a,0xc8,0x84,0xdc,0x3c,0x34,0x61,0xa9,0xfe,0x1e, + 0x99,0x8,0xe3,0xe2,0x25,0x28,0xe5,0xe2,0x13,0x82,0x18,0xa2,0x5c,0xbb,0x25,0xdd, + 0xfe,0x10,0x59,0x5d,0x3c,0x6a,0x4,0x7d,0x6a,0x51,0xfe,0xb0,0xd,0x51,0xbc,0xc7, + 0x4e,0x7b,0x99,0xd8,0xc9,0xa4,0xe6,0xfc,0x2a,0x93,0xd0,0xea,0x6d,0x6a,0xd,0x46, + 0x6f,0x2b,0x15,0x68,0x7d,0xe4,0xad,0x7b,0xa6,0x28,0x1e,0x1f,0x90,0xb8,0x71,0xae, + 0x8c,0xe5,0x9c,0xc1,0x2c,0x5b,0x89,0xdc,0xab,0xd3,0x2b,0x50,0x35,0xb6,0x80,0xf7, + 0x5f,0xe6,0x3,0x2a,0x20,0x6b,0x0,0xb6,0xee,0xf3,0xc3,0xb2,0x68,0xd2,0x89,0x56, + 0x8,0x75,0x73,0xd9,0xda,0xa9,0xdd,0x9f,0xf1,0xce,0xfe,0xbd,0xb5,0x1c,0x2d,0x82, + 0x91,0x98,0xe4,0x35,0x11,0x7b,0xb7,0x8,0x23,0x9b,0xce,0x8,0xee,0xeb,0xec,0xe6, + 0xd0,0x46,0x8e,0xd6,0x5f,0x75,0x25,0x68,0xcc,0x79,0x1c,0xab,0x72,0x85,0xfc,0xb5, + 0xc3,0x8c,0xd8,0xc4,0xf1,0xa1,0xb2,0x7f,0x71,0x95,0xfb,0x70,0x9b,0x1d,0xdb,0xf5, + 0x55,0x8e,0xe5,0xb0,0x6d,0xe0,0x75,0x29,0x2d,0x3b,0xb4,0x98,0xec,0xab,0x82,0x6a, + 0x7f,0x63,0xf6,0x44,0xaa,0x98,0xcc,0xdf,0xd0,0x87,0x34,0xe0,0x35,0xf7,0x9b,0x78, + 0xd4,0x39,0x4d,0x51,0x36,0x50,0x72,0xdb,0x8e,0x3,0x11,0x92,0x9c,0xde,0x5,0xaf, + 0x53,0xa5,0x5a,0xb9,0x80,0xb4,0x5a,0x78,0x2a,0xea,0x9b,0x0,0x4d,0xbd,0xe5,0xb7, + 0xcf,0x24,0xba,0x3e,0x70,0x3f,0xaa,0xf3,0x55,0x52,0xd4,0xeb,0xfe,0xd3,0x14,0x54, + 0x54,0x46,0x53,0x6a,0xdd,0xc2,0xe3,0x2c,0x6f,0x27,0xd5,0xc9,0x60,0x57,0xde,0xc2, + 0xc,0xe1,0xf9,0x25,0x6f,0xde,0x77,0x22,0x6,0x7b,0x8b,0x20,0xb0,0x8e,0x6b,0xbe, + 0x2,0x67,0x7a,0x5d,0x48,0x6e,0x91,0x1e,0xc,0x9a,0xa2,0x38,0x41,0x10,0x31,0x63, + 0xaa,0x54,0x2a,0xf7,0x9,0x8e,0xa5,0x1d,0x35,0x4e,0x10,0xbf,0x53,0x22,0x37,0x7b, + 0xc4,0x52,0xd2,0x98,0x82,0x1f,0xd7,0xa9,0x8e,0xe3,0x44,0x70,0x8b,0x68,0xae,0xd3, + 0x15,0xaf,0x5e,0x81,0xe6,0xa8,0xa9,0x53,0xbf,0x99,0xcb,0xe3,0xc1,0xd6,0x99,0xc5, + 0x18,0xa,0x3e,0xe3,0xd6,0xf3,0xec,0x33,0x89,0xe3,0x45,0x2d,0x16,0xcb,0x46,0x87, + 0xa,0xd9,0x4e,0x8a,0xeb,0x27,0x4,0xd5,0x89,0x8,0xed,0xa2,0xa7,0x80,0x2c,0x36, + 0x1e,0x37,0x33,0x52,0x3,0xd4,0x5c,0x56,0x40,0x47,0x22,0x5c,0x31,0x3,0xc2,0xa6, + 0x99,0x4c,0x9,0xc1,0x98,0x88,0x2b,0xff,0x53,0x13,0x44,0xd,0x3e,0xb5,0xbe,0xb3, + 0xd6,0x3d,0x9b,0x2,0xe,0x4a,0x2e,0x14,0xb3,0xd8,0x7f,0x40,0xe9,0x1,0x1f,0xc2, + 0xed,0xc,0x97,0x33,0x6e,0xd6,0xf7,0xa5,0xfd,0x65,0x93,0xda,0xf3,0xb7,0x9a,0x10, + 0x74,0xb7,0x4c,0x98,0xfe,0x74,0x4d,0x21,0x80,0x54,0xfe,0x48,0xcc,0x4b,0xcb,0xbf, + 0x3c,0x3b,0xd4,0x45,0x97,0x1f,0x74,0x9a,0x8c,0x2f,0x96,0xfd,0x73,0x9c,0xb6,0x9c, + 0xe1,0xa7,0x3e,0x39,0x9c,0xf9,0xd5,0xfc,0xa4,0xcf,0x7f,0x5f,0x87,0xc4,0xc,0xa, + 0x38,0xa2,0xa0,0xbc,0x6,0x58,0x62,0xea,0x5,0x22,0xbd,0xdb,0x34,0x22,0x26,0xa0, + 0x5,0xa7,0x1,0xd2,0x12,0xbb,0x55,0xad,0xa0,0x53,0xb,0x1d,0x33,0xd6,0xdb,0x1, + 0x60,0x78,0xcf,0xa,0x9e,0x74,0x4,0x3c,0xd5,0x34,0x5d,0x71,0x79,0x4b,0x5c,0xb3, + 0x24,0xce,0x2f,0xbc,0xd8,0x39,0x5b,0x5e,0xeb,0x6c,0x49,0xfe,0x9b,0x3d,0xf6,0xf3, + 0x34,0x47,0x8f,0x83,0x5d,0x97,0xe1,0x43,0x4a,0x2e,0x70,0x94,0x8d,0xb3,0x4a,0x53, + 0x1e,0x5,0x36,0xc,0xd6,0xa6,0x10,0xf2,0x7c,0x6a,0x59,0x3e,0xce,0x96,0xcd,0xed, + 0xc0,0x41,0x9b,0x25,0xa1,0xf2,0xf4,0x64,0xfa,0x44,0xf9,0x39,0xe1,0x41,0xd1,0x3, + 0x6,0xf0,0xfa,0x32,0xe7,0x55,0xc6,0xef,0x53,0xe8,0xef,0xae,0xea,0xbb,0xb8,0x5f, + 0x14,0x21,0xac,0x53,0x7b,0x1f,0x41,0xb9,0xe3,0xa3,0x5a,0xd7,0x6,0x66,0x7c,0x8f, + 0xda,0x1d,0x32,0x5f,0xae,0x39,0x49,0x3a,0x18,0xfd,0x90,0x26,0x9c,0xc6,0xb5,0xb8, + 0x99,0x18,0x1,0x6f,0xc1,0x3a,0xdd,0x3b,0x3d,0xac,0xf,0x9e,0xb3,0x58,0x2d,0xa5, + 0x17,0x1a,0x4a,0xc4,0xe1,0x7e,0x86,0xe7,0x3b,0xfe,0x5,0xf7,0xb8,0xdb,0x68,0x28, + 0xc1,0x3f,0x11,0x26,0xbc,0xdb,0xfe,0x8,0x46,0x55,0xf5,0x24,0x7,0x4e,0x76,0x3f, + 0x9e,0x75,0x66,0x58,0xc,0x15,0x1f,0x15,0xe1,0xf1,0xbc,0x32,0x66,0xd9,0xc9,0xf, + 0x3c,0x36,0x5,0x77,0xb5,0x67,0xb0,0xe0,0xa,0xbb,0x86,0xd2,0x59,0x18,0xbe,0xb0, + 0xe5,0x9f,0x57,0x75,0xfa,0xef,0x48,0xbc,0x49,0xe7,0x63,0xd2,0xb5,0x95,0xbb,0x5e, + 0x77,0x69,0xa9,0xeb,0xcf,0x95,0x99,0x3c,0x3b,0xef,0x4,0xc,0xa9,0xd,0x32,0x7e, + 0xe,0x6d,0x53,0xbc,0xb6,0x17,0x92,0xe5,0xa8,0x24,0x3e,0x66,0xeb,0xf0,0xa9,0xf2, + 0xc7,0x7a,0x3b,0xbf,0xf1,0x37,0xd3,0xcc,0x75,0xaa,0x64,0xd7,0xcd,0xaa,0x73,0x2f, + 0xcc,0x45,0xfc,0x5d,0x93,0xed,0x4e,0x5a,0xca,0x4e,0xe9,0x4,0x1b,0xd1,0x83,0xc4, + 0x18,0x9d,0xc6,0x3b,0xd5,0xe9,0x8a,0xc8,0x38,0x21,0x10,0x35,0xe1,0xdb,0x39,0xa8, + 0xe1,0x44,0x14,0x93,0xd8,0xef,0x55,0x7,0x3a,0xc1,0x7f,0xf5,0x2b,0x0,0x47,0x8, + 0xa2,0xd7,0x29,0x9c,0x71,0x16,0x97,0x78,0x72,0x98,0x65,0x16,0xde,0xd4,0xe0,0xd7, + 0xaa,0xaf,0x78,0x37,0x15,0x23,0xfc,0xc5,0x49,0xe1,0x13,0xc7,0x3f,0xfd,0x4,0x37, + 0x99,0x2e,0xb8,0x50,0x62,0xea,0xca,0x78,0xb7,0x66,0xeb,0xdb,0xb3,0x2b,0x6b,0x65, + 0xec,0xd3,0x31,0x52,0x3d,0x84,0x70,0x4d,0xa8,0x8c,0x9,0xdb,0xf9,0x2b,0xa6,0x4, + 0x3e,0xce,0x85,0xbf,0x3f,0xec,0xdf,0x11,0x96,0x7c,0xfc,0x2d,0xc3,0x1e,0x19,0x41, + 0x90,0xbc,0xae,0xc2,0xfb,0x10,0xaf,0x36,0x3b,0x3b,0x53,0xe2,0x69,0xe5,0xd6,0x93, + 0xeb,0x74,0xa7,0x76,0x44,0x62,0x56,0xf4,0x91,0x73,0x62,0x40,0xaa,0xf6,0x5f,0x8a, + 0x4c,0x55,0x95,0xd3,0x30,0xf8,0xe9,0xdc,0xc8,0x6d,0x9a,0x45,0x75,0xfc,0xef,0x8c, + 0xb1,0xca,0x20,0x79,0xf9,0xef,0xfe,0x54,0xac,0x58,0xec,0xe2,0x5f,0x97,0xf,0xc8, + 0x12,0x96,0x30,0xe4,0xd,0x7b,0x9b,0x3,0x48,0xe3,0x48,0x4b,0xe7,0x93,0xf3,0x8d, + 0xde,0xb1,0x5e,0xe,0xe8,0x52,0x7e,0xd7,0xbd,0xbf,0xd6,0xd8,0x7d,0xf0,0xab,0x7b, + 0xca,0xc,0x9b,0xc9,0xfd,0xea,0xc,0x1a,0xb1,0x8a,0xf,0xcf,0x82,0xaa,0x49,0x92, + 0xf9,0x70,0x39,0xe7,0x8a,0xe2,0xad,0x63,0x37,0x43,0x1d,0x62,0x8a,0x37,0x1f,0xe3, + 0xe5,0x38,0x7a,0xa8,0xec,0x38,0x51,0x52,0x9b,0x70,0x7b,0x98,0xca,0xec,0x3e,0xab, + 0x44,0xa6,0x94,0xeb,0x11,0xd4,0x68,0xdb,0x61,0xc6,0x60,0x51,0xab,0x7f,0xd6,0x7f, + 0xcd,0xbf,0xfc,0xd9,0xcf,0xe8,0x50,0x47,0x17,0xa4,0x9,0xc8,0xde,0x1a,0xf6,0x3, + 0xf3,0x86,0xd5,0x93,0xef,0x41,0xaf,0x6a,0x50,0x2b,0x2f,0xe0,0x55,0xcb,0x26,0x41, + 0x12,0x99,0x1c,0x44,0x77,0x99,0x5c,0xe2,0xed,0x82,0x8f,0x33,0x4,0x51,0x91,0x63, + 0x41,0xee,0x25,0xa7,0x67,0xb7,0xd7,0xe3,0xfa,0x1c,0xef,0x12,0x14,0xa7,0x4a,0x5a, + 0xb3,0x11,0x4f,0x9b,0xfc,0xc8,0xcc,0x55,0x36,0x50,0xf0,0xeb,0x1b,0x5c,0xbb,0xb9, + 0x38,0x5e,0x2f,0x8a,0x87,0x98,0xc,0xb5,0x60,0x9e,0xf6,0xe5,0x46,0xc7,0xfe,0xaa, + 0x9e,0x3c,0x23,0x8,0xe2,0x94,0xdc,0x9c,0xaa,0xb2,0x8d,0x58,0xcb,0xf0,0x7e,0x44, + 0xf5,0xda,0xc7,0x7d,0x74,0x83,0xb8,0xfc,0x51,0x65,0xa9,0x96,0x31,0xc9,0x88,0x7e, + 0x3b,0x78,0xab,0x55,0x73,0x80,0x56,0xb4,0x55,0x39,0x58,0x17,0x6b,0x4c,0xd4,0xab, + 0xf9,0x9f,0x61,0x3f,0x18,0x20,0x49,0xaa,0xeb,0x27,0x6,0xd0,0x9b,0x1b,0xaf,0xa3, + 0xc8,0xef,0xed,0x9,0x91,0xb4,0x3e,0x9,0xd8,0x79,0xbf,0x4b,0xd9,0x24,0x7f,0xfa, + 0xb3,0xa6,0x7f,0xce,0xd5,0x6a,0xb7,0xd7,0x34,0xd1,0xc0,0xe9,0xe5,0xd7,0xaf,0xfc, + 0xc9,0x9f,0x7f,0xe1,0x93,0x11,0x12,0xda,0x66,0xb5,0xf2,0x8e,0x31,0x44,0xdd,0x1b, + 0x24,0x25,0x16,0x3b,0xca,0xd9,0xc4,0x22,0xb1,0xe,0x12,0x67,0x83,0xcc,0xf,0xde, + 0xde,0xe6,0x91,0xa2,0xe8,0x93,0x60,0x2d,0x2,0xf9,0x1d,0x86,0xa7,0x9d,0x1e,0x46, + 0xa9,0x85,0x73,0x2d,0x4a,0xa4,0x93,0x28,0x5e,0xdd,0x6a,0xf2,0x5a,0x4a,0xef,0x25, + 0x0,0xe6,0x96,0x2c,0xd7,0xf2,0xe7,0x56,0x89,0x47,0x50,0xd,0xf6,0xcd,0x8,0xdb, + 0x5f,0xb9,0x8b,0xe0,0x83,0x57,0x2b,0xa2,0xe0,0x56,0xba,0xc4,0xad,0x1a,0xfb,0x97, + 0x54,0x92,0x37,0x53,0x44,0x1c,0x4f,0x22,0xc7,0x71,0x89,0x1b,0x4a,0xb0,0xaa,0x90, + 0x38,0x45,0x83,0x76,0x1c,0xb1,0xae,0x2c,0xde,0x90,0x95,0xa0,0xf5,0x5a,0xc7,0xda, + 0xae,0xdc,0xd2,0x8a,0x2c,0x38,0xa0,0xf2,0xf4,0x92,0xb1,0xc6,0xea,0xd9,0xf1,0x2f, + 0xd9,0x4c,0xe4,0xa7,0x14,0x5c,0x46,0x66,0x67,0xee,0x7a,0x64,0x72,0x5c,0x1,0xa2, + 0x64,0xa5,0xc9,0x94,0x9a,0x57,0xe0,0x63,0x30,0x2f,0x69,0xfe,0xcc,0xc1,0x5b,0x1d, + 0xb,0x59,0x51,0x1e,0xc8,0xad,0xf1,0xb0,0xaa,0x6c,0x93,0x94,0x3e,0x33,0x55,0xd0, + 0x4f,0xcd,0x20,0xb8,0xaf,0x94,0x6,0x3,0x59,0x6b,0x61,0xea,0x39,0x81,0xab,0xac, + 0x9d,0xf7,0x36,0xcd,0x4f,0x94,0xbd,0x9b,0xe7,0xd6,0x47,0x54,0x61,0x3c,0x61,0xc6, + 0x8f,0x4e,0xa0,0x58,0xdc,0x5,0xff,0x41,0xaf,0xe2,0xe3,0x16,0xb1,0xda,0x70,0x80, + 0xb7,0x71,0x99,0xe7,0x6e,0x19,0x32,0x70,0x2e,0xbb,0xb,0x76,0x5e,0x1e,0xc3,0xed, + 0xfa,0x80,0x27,0x9c,0x38,0x8c,0xc,0xe6,0x3f,0xeb,0x78,0xdd,0x92,0x32,0x38,0x86, + 0x5d,0x36,0xba,0xfd,0x3c,0x5,0xc2,0xfc,0xbb,0xce,0xf4,0xd5,0xdb,0x76,0x78,0x31, + 0x21,0xcc,0x87,0x7,0xd5,0x69,0xfb,0xbd,0x87,0xaa,0x88,0x4,0x90,0xa0,0x42,0x12, + 0xbc,0x59,0x63,0x1,0x3a,0x96,0x59,0xbf,0x26,0xe3,0xd8,0xa2,0xd9,0x84,0x4,0x81, + 0x55,0x10,0x17,0xff,0x13,0x65,0xab,0xe9,0x79,0xaa,0x1e,0x37,0x1e,0x4f,0x9f,0x92, + 0xa5,0x6e,0x54,0x93,0xd8,0x5a,0xbd,0xf4,0xf9,0x84,0x16,0x19,0x9a,0xed,0xf3,0xf3, + 0x5d,0x53,0x21,0x68,0x80,0x0,0xd3,0x1a,0x52,0xca,0xe0,0x72,0x96,0x37,0x57,0xbb, + 0xa7,0x50,0x2e,0xd6,0x74,0xdb,0xc1,0xd9,0xc9,0xb1,0x38,0x58,0x53,0x2c,0x13,0x1d, + 0xf5,0xa4,0x44,0xda,0x6a,0x60,0x4e,0xa2,0xbb,0x4c,0x0,0x62,0xb6,0x4,0x2e,0xe4, + 0xc9,0x66,0xd6,0x6f,0xf8,0xef,0xec,0x7e,0xd9,0x1b,0x80,0xa6,0xb7,0x46,0xfb,0x29, + 0x10,0xb2,0x3c,0x5b,0x97,0xc5,0x1b,0x69,0x20,0xb7,0x3b,0xd6,0xfa,0xc8,0xf9,0xb9, + 0x70,0xbd,0x3c,0x5e,0xee,0xc3,0xfd,0x35,0x99,0x87,0x5c,0x44,0x64,0x47,0x69,0x9e, + 0xc1,0x9c,0x78,0x98,0xdc,0xd0,0x8d,0x89,0xf5,0xa6,0xed,0xae,0x44,0xe0,0x3a,0xc2, + 0x9e,0x48,0x9,0x5a,0xd4,0x76,0xd7,0x72,0xef,0xb5,0x31,0xbd,0xc0,0xc7,0xf4,0xbb, + 0xc3,0xf4,0x65,0x42,0x69,0x18,0x8e,0x80,0x23,0x21,0xf9,0x9f,0x47,0xda,0xb6,0xc5, + 0xba,0x85,0x3a,0xe7,0xf2,0xfb,0x81,0x4c,0x45,0xd7,0xb1,0x29,0x3b,0xbe,0xc8,0xca, + 0xc1,0x72,0xb1,0xcd,0x6e,0xcb,0x6,0x3e,0xc6,0xcb,0x60,0x49,0xd0,0xd0,0x4f,0x6, + 0x24,0x91,0x34,0xf2,0x85,0x10,0x19,0x3c,0x6e,0xfb,0x7b,0xfb,0xef,0x16,0x3d,0x2f, + 0x5c,0x80,0xe0,0x37,0x6e,0xc9,0x3d,0x6b,0x62,0xca,0xde,0x5b,0xaf,0xa9,0x10,0x47, + 0x79,0x38,0x96,0x22,0x90,0xc9,0x28,0x3d,0xb8,0x85,0xc8,0xac,0xe9,0xe6,0xbc,0xce, + 0xb2,0x97,0xbf,0x31,0xc6,0xe7,0x3,0x5e,0xb7,0xc2,0x32,0xe5,0x2a,0xbf,0xbe,0x64, + 0xc6,0x7f,0xe8,0x26,0x78,0x18,0x45,0x4b,0xb4,0xf8,0x3c,0x4c,0x8e,0xc0,0x7c,0x9, + 0xdc,0xb4,0x21,0xbf,0x31,0x3c,0x6f,0x76,0xf3,0x6c,0xc4,0xc1,0xf9,0x9d,0xf4,0x50, + 0x14,0x9b,0x85,0x12,0x2,0x3b,0x33,0x69,0x37,0x1f,0xb2,0x57,0x4e,0x11,0x84,0xcf, + 0x9d,0xe4,0xad,0xe9,0xb,0x66,0xc6,0x56,0xf5,0xdf,0x4,0x10,0x45,0xf4,0xaa,0xdc, + 0xef,0xa1,0xba,0x30,0x8,0x96,0x88,0xcd,0x12,0x60,0x6c,0x9d,0xe5,0x5d,0x34,0x5c, + 0xe2,0x79,0x92,0xc3,0x6c,0x9c,0x33,0xbb,0xa0,0x58,0xa5,0x99,0xcc,0x27,0x25,0xa, + 0x8f,0xf6,0x5a,0x9a,0xea,0x46,0xec,0xd3,0x63,0x46,0xfd,0xae,0xe6,0x53,0x1d,0xd6, + 0xa8,0x58,0x33,0xe3,0x50,0x27,0x48,0xe1,0xa3,0xf4,0x49,0xa0,0x8c,0x1b,0xe4,0xd8, + 0xeb,0x6b,0x2b,0x1f,0x6b,0x2e,0xbd,0xd4,0x7,0x4a,0xc8,0x2d,0x90,0x89,0xb4,0x96, + 0xca,0x5a,0x47,0x54,0x98,0x40,0x34,0xf0,0x6c,0x69,0xaf,0xda,0x60,0x73,0xca,0xcf, + 0x25,0xb8,0xb4,0xd,0xcc,0x2,0xef,0xb9,0x18,0x57,0xe4,0x5f,0xe5,0x36,0x71,0xd5, + 0x6,0x95,0xe6,0x38,0x9d,0xed,0x34,0xd4,0x6c,0x2d,0x6c,0x38,0xc9,0x6d,0x33,0x47, + 0x6,0xe9,0x2c,0x51,0x3,0x27,0x54,0x81,0x4a,0xc,0x4b,0xc5,0x2c,0x90,0xfa,0x9b, + 0xd4,0x2a,0xb4,0x2d,0xe5,0x9a,0x6a,0xc3,0x3f,0xc7,0x20,0xad,0x9f,0x5,0x11,0x9, + 0x86,0x57,0xee,0x23,0xb3,0xd2,0xba,0x6b,0x34,0x4b,0x26,0x25,0xa1,0x7d,0x9e,0xd2, + 0xa5,0x31,0x8d,0xf1,0x3,0x3b,0x79,0xd,0x2,0x2b,0x27,0x27,0xb6,0x7d,0x5b,0xbf, + 0x98,0x31,0x85,0xa8,0x13,0x6d,0x20,0x19,0xaa,0x68,0x16,0x30,0x60,0x7b,0x7d,0x10, + 0x9f,0xcf,0x7d,0xb8,0x1d,0xd4,0xcb,0xfc,0xd2,0x77,0xf1,0xc1,0x60,0xfe,0x3e,0x5b, + 0x60,0xcd,0x9c,0x7a,0x89,0x5e,0xd6,0x75,0xb1,0x51,0xcd,0xdd,0xc5,0x29,0x1,0x7a, + 0x7,0x1d,0xe0,0x31,0x6c,0x59,0x25,0xe8,0x69,0x85,0xb0,0x99,0x56,0xb4,0x3d,0x9b, + 0x8e,0x8e,0x3f,0xf1,0xc3,0x23,0x6d,0xda,0xdb,0x66,0x9b,0x43,0x62,0xc9,0x45,0x67, + 0x1b,0xd,0x14,0x57,0x9a,0x7,0x2c,0xda,0x1,0xa3,0x27,0x83,0xa9,0x27,0xb6,0xdf, + 0x89,0x37,0xe2,0x58,0x93,0x8f,0xef,0xb3,0x3e,0xa4,0xfa,0xbd,0x56,0x1,0x39,0x22, + 0x50,0xc8,0xba,0x8,0xab,0x8,0xe0,0xae,0x3b,0xcf,0x5a,0xd4,0xce,0xec,0x41,0xa2, + 0x85,0x89,0x96,0xa3,0x9,0x13,0xc8,0xa1,0x60,0xbf,0xf,0x2d,0xd3,0x16,0xe4,0x4b, + 0x64,0x9f,0x72,0x15,0xa5,0x17,0x2,0xa5,0xe7,0x79,0xca,0xd0,0x83,0xb8,0x3,0xef, + 0xc6,0x9d,0xea,0xbe,0xad,0xc1,0x88,0x81,0xa4,0xdc,0xd8,0x7,0x2f,0x88,0x76,0xfd, + 0xbc,0x9,0xe4,0xbf,0xe1,0x34,0x4b,0x2f,0xef,0x34,0x9f,0x32,0x3e,0xad,0x17,0x8d, + 0x7d,0x44,0x22,0x6d,0x91,0xab,0x60,0x35,0xac,0xe0,0x49,0x64,0xae,0xa0,0xaa,0xa3, + 0x2a,0x15,0xd7,0x7,0xe4,0xb9,0xed,0x39,0x98,0x34,0x6a,0x93,0xa,0x5d,0x2a,0xb6, + 0x9b,0x35,0xa9,0xc8,0xfd,0x28,0xb3,0xe1,0x9a,0xcb,0xfe,0xc8,0x86,0xf7,0x5f,0xfe, + 0xf5,0xf2,0x3c,0xb8,0x4e,0x6a,0xdb,0xe9,0x3,0xd2,0x92,0xe5,0x5e,0xdc,0xb,0x5f, + 0x37,0x46,0x56,0x54,0xa3,0x34,0x8b,0xcc,0xcd,0x85,0xf7,0xcc,0x65,0xda,0xc0,0x72, + 0xe,0x9,0x3,0xfa,0xa2,0x77,0x31,0xa8,0x43,0x6c,0xcc,0xaf,0x33,0xff,0x31,0x96, + 0xe0,0x81,0xc,0x28,0x72,0x92,0xc3,0x6a,0x97,0x4d,0x94,0x65,0xd3,0x2c,0x2d,0xe1, + 0xf1,0x68,0xc6,0xf3,0x71,0x9b,0x86,0xb8,0xe0,0x6f,0x40,0x2f,0x61,0x42,0x8e,0xb5, + 0x88,0xa6,0xc5,0xc0,0x72,0x61,0xb8,0x6a,0xc5,0x98,0xeb,0x7d,0x21,0x8,0xb9,0x22, + 0x7b,0x74,0x30,0x29,0x7b,0x65,0x8d,0xa7,0xbc,0xb9,0xd7,0x61,0xe7,0x11,0x53,0x19, + 0x90,0xc0,0xb6,0x11,0xb8,0xd5,0xdf,0x73,0x52,0x7b,0x85,0x5d,0x3d,0x3c,0x8c,0x96, + 0xe5,0xbb,0x9f,0x9e,0x82,0xb8,0x7a,0xd9,0x55,0x3b,0xbc,0xc7,0x28,0xfd,0xb8,0xc0, + 0x5d,0xdf,0x59,0xf9,0x7e,0x1,0xba,0xf7,0xc7,0x4,0x43,0xc2,0xed,0xa3,0xb0,0xe9, + 0x31,0xa1,0xdf,0xab,0xa5,0xac,0x6,0x5b,0x61,0x51,0x9e,0x1f,0xb7,0xe2,0x73,0xef, + 0xb5,0x3c,0x2e,0xbd,0x6e,0x58,0x50,0x78,0xde,0x8d,0xe3,0x3c,0x12,0x61,0x78,0x47, + 0xd,0xfe,0x89,0x4b,0xcb,0x8d,0x36,0xe,0x55,0x4c,0x85,0x3c,0x4c,0xf8,0x59,0x90, + 0x81,0x41,0x1b,0x2d,0xcf,0xdd,0x1a,0xdd,0x9c,0x19,0xe0,0xba,0x5e,0xe9,0x9d,0xaf, + 0x79,0xe9,0x2a,0xcd,0x7d,0x76,0xae,0xc5,0x8e,0x76,0x50,0x42,0x75,0x31,0x1e,0x68, + 0x2f,0x50,0x24,0xd5,0x1c,0x5f,0xea,0xca,0x5e,0x4f,0xd1,0x6e,0xb5,0x8,0x94,0x17, + 0x55,0x45,0xeb,0xa6,0x80,0x79,0x75,0x56,0xdd,0x4c,0x44,0xa2,0x43,0xf3,0x18,0xf2, + 0xb2,0x9,0x1d,0xb9,0xdc,0xde,0xb0,0x1a,0xdf,0xe0,0x8b,0xc7,0x7a,0xfb,0xab,0xf9, + 0xa0,0xcb,0xec,0x1e,0x2b,0x1d,0x7d,0x6b,0x20,0x72,0x91,0xef,0x73,0xdf,0x75,0xfc, + 0xd4,0x1a,0x4,0xa8,0x88,0xd7,0x41,0x27,0x26,0xca,0xc1,0xd5,0x5c,0x4c,0xce,0xa0, + 0x90,0x67,0xeb,0x31,0xc8,0x5a,0xc9,0xfa,0xb9,0x77,0xc6,0x2b,0xbf,0xbd,0xe3,0x71, + 0xcb,0xd6,0x15,0x8d,0x27,0x8f,0x9f,0x56,0x33,0xab,0x3e,0xc8,0x8f,0x42,0x8e,0xa1, + 0x7c,0x5f,0x8b,0x37,0x6f,0x44,0xae,0xf0,0xdf,0x5f,0x8a,0xed,0x8b,0xb7,0x9c,0xd2, + 0x75,0x9,0xaa,0x51,0xd2,0xfd,0x3a,0x7f,0x9a,0x5d,0xef,0x41,0x44,0xfb,0x73,0xae, + 0xba,0x81,0x6a,0xc7,0xaf,0x3c,0x99,0x32,0xcb,0x13,0x3a,0xff,0xfa,0x97,0xe5,0x30, + 0x46,0xfb,0xe4,0x71,0x5c,0x6,0xe,0xfb,0x7e,0xe2,0x37,0xc4,0xbc,0x6d,0xca,0xe4, + 0x9b,0x7e,0x85,0x89,0x9d,0x23,0xfe,0x49,0xbb,0xdb,0xe5,0xfc,0x8f,0x5,0xd5,0x2c, + 0xe1,0x6b,0xe6,0x19,0xc9,0x37,0x8d,0xd9,0x6,0x8,0x51,0xe5,0xaf,0x63,0x12,0x4f, + 0xe4,0xce,0x2f,0xaa,0x54,0xd4,0xfb,0x3f,0xfd,0x5d,0xcf,0x51,0x89,0xb7,0x3c,0xcf, + 0xad,0x39,0x3f,0x15,0x92,0xdc,0x8b,0x94,0x1a,0x56,0x8b,0xe1,0x89,0x74,0x98,0x39, + 0xc5,0x11,0x69,0xbe,0xba,0x33,0x42,0xe6,0x57,0x6c,0xf8,0xa9,0xc9,0x7a,0x94,0x5b, + 0x5d,0xb8,0x8,0x2b,0x72,0x95,0xc7,0x85,0xd2,0xbe,0xb6,0xe,0xd8,0xc2,0xc,0x5d, + 0x95,0x90,0x73,0xd5,0x79,0xdf,0x17,0x95,0x27,0x4b,0x38,0x86,0xff,0xa6,0x6,0x6a, + 0x5f,0xc1,0xf6,0x5e,0xce,0x95,0x19,0x2e,0xbc,0x55,0xde,0x4a,0x74,0xfa,0xa,0x52, + 0xfb,0xb7,0x6e,0x8a,0xee,0xc7,0x8f,0x10,0xc2,0x96,0x46,0x96,0xd6,0x9b,0x80,0x2d, + 0x52,0xd7,0xe9,0xcc,0x5e,0x52,0x15,0x55,0x78,0x2,0x7f,0xc6,0xc1,0xe7,0x9d,0x87, + 0x7f,0x5b,0xb3,0x2c,0xa2,0xc7,0xfd,0x60,0x50,0x48,0xd2,0x44,0xbf,0xc5,0x2d,0xfa, + 0x42,0xcc,0xfc,0x59,0xd8,0xd0,0xef,0xd7,0x74,0xee,0xe5,0xc9,0x4a,0xe8,0x65,0x50, + 0x90,0x60,0x5e,0x88,0x2d,0xf4,0x2c,0x36,0x5d,0x3c,0x73,0xe1,0xde,0x1b,0x50,0xe0, + 0x59,0xf7,0x8a,0xd7,0x90,0x3b,0x4,0x8b,0x3,0x65,0x2e,0x3e,0xab,0x7b,0xe6,0x20, + 0x69,0xf3,0xde,0x8a,0xbd,0xac,0x32,0x84,0x7a,0x52,0x2c,0x25,0xd0,0x40,0x80,0x40, + 0x7e,0x4c,0x5f,0xbd,0x22,0xdb,0x17,0x1c,0xb8,0x52,0x9c,0x55,0xea,0x53,0x6,0xbf, + 0xe2,0x61,0x97,0x3c,0xdb,0x29,0xe6,0xd2,0xa8,0x5b,0xf2,0x18,0xff,0x14,0xa6,0xae, + 0x16,0x7e,0x6e,0xee,0x79,0xef,0x6b,0xec,0x7e,0x5e,0x54,0xae,0xa9,0x76,0x16,0x5b, + 0x60,0xd4,0xb2,0xd0,0x69,0xcd,0x71,0x86,0xf0,0xa5,0x76,0x55,0xde,0xc6,0xc3,0xa2, + 0x9a,0xb3,0x8e,0xe,0xa8,0xf3,0x82,0x7c,0x88,0x51,0xc0,0xb9,0x94,0xd3,0xd9,0xb7, + 0xf5,0xb4,0xd5,0x34,0x10,0xfa,0xfb,0xd5,0xb2,0x4d,0xf5,0x5d,0xfd,0x80,0x73,0xb, + 0xf7,0x45,0xe7,0x49,0x63,0x7a,0x93,0x58,0x80,0x6b,0x5c,0xbb,0x8d,0xe8,0xb0,0xbe, + 0xe9,0xac,0x9b,0x73,0x34,0xa4,0xe9,0x85,0x2,0xd2,0x9,0x7d,0xa,0x91,0x70,0xa, + 0x50,0x33,0x59,0x15,0xf1,0xae,0x5d,0xaa,0x49,0x3e,0x2f,0x79,0xde,0x16,0x2,0x41, + 0xdf,0x28,0xd2,0x5c,0x86,0xa1,0x2d,0x22,0x3d,0x5f,0x7d,0x8e,0xf9,0xee,0xfa,0x2c, + 0x90,0xc4,0xc4,0x86,0xdc,0xdf,0xbe,0x58,0x1e,0x1c,0xb7,0x78,0xd9,0xe6,0x56,0xb3, + 0xbd,0x42,0xb6,0x86,0x1d,0xf0,0xcf,0x79,0xaf,0xa9,0xd2,0xa3,0x30,0x28,0x1b,0xc9, + 0x2e,0xf3,0xf6,0xd5,0x9c,0x41,0x97,0x7e,0x53,0x69,0x1c,0x3,0xa2,0xfe,0x43,0xcb, + 0x45,0xe9,0xa0,0xc6,0x72,0xe8,0x49,0xf7,0xb1,0x3b,0x43,0xcb,0xee,0x4d,0x86,0x44, + 0xed,0x96,0x8,0xf6,0x7d,0x1b,0xae,0x3e,0x10,0xd5,0xac,0xed,0x3b,0x49,0x34,0xff, + 0xe9,0x63,0xe8,0xf5,0x49,0x2f,0x3f,0xef,0x28,0x3e,0x1b,0x6f,0xe1,0xb7,0x7e,0x9d, + 0xe6,0x4b,0x4c,0x4c,0xc4,0xd7,0x72,0x45,0x51,0x11,0xdb,0x10,0x71,0xd9,0xf2,0x65, + 0x22,0xce,0x7b,0x86,0xa7,0x9c,0x6d,0x51,0x2a,0xd4,0x1b,0x71,0xcd,0x2b,0xbb,0x41, + 0x2c,0x3d,0xba,0x3d,0xe5,0xbd,0x1d,0xb5,0x61,0xd1,0xb2,0xdd,0xfa,0x8d,0xd9,0x71, + 0xa2,0xac,0xe1,0xe4,0x44,0x1d,0xa1,0x6b,0x3b,0x20,0x1f,0xbf,0xcd,0xcc,0x5c,0x64, + 0xf5,0x27,0x8c,0x8d,0x1f,0xd8,0x5e,0xbe,0xc2,0xa6,0xa6,0x32,0xf4,0x86,0x58,0xdf, + 0xfe,0xd6,0x20,0xc9,0xf4,0x66,0x55,0xfa,0x13,0xb8,0xaf,0x7a,0xa9,0xc9,0x79,0xd8, + 0x53,0x44,0x83,0x6c,0x67,0x86,0x90,0x6c,0xe4,0x6a,0x9,0x82,0xfc,0x2e,0xa3,0x2c, + 0xc4,0x25,0xfb,0x6c,0x95,0xf8,0x1d,0x3d,0xe0,0x24,0x6,0xc8,0x27,0xaa,0x25,0x4c, + 0x64,0xb3,0xa6,0x9b,0x92,0xa,0xbe,0x67,0xb2,0x53,0x52,0x9f,0x38,0xe4,0x34,0xf2, + 0x84,0x5a,0x11,0x3e,0x13,0x2e,0x3,0xca,0x84,0x9b,0x2c,0x49,0x40,0x52,0xee,0x8a, + 0xab,0x28,0xfc,0xc9,0xfb,0x85,0xee,0x50,0x99,0x8b,0x66,0xf3,0x41,0xfd,0xf3,0x7, + 0x71,0x1f,0x7,0x7e,0x35,0xbf,0xd2,0x69,0x3a,0xeb,0x30,0xc9,0x14,0x95,0x79,0x7c, + 0xb1,0xfc,0xda,0xeb,0xf2,0x91,0xfa,0x70,0x53,0x67,0xa9,0xa4,0xa5,0x66,0xd0,0xc7, + 0x4b,0x75,0xd2,0xc5,0x39,0xf2,0x8b,0xcb,0xc8,0x8a,0x1b,0xd8,0x7a,0x92,0x15,0x9a, + 0x7,0xef,0xe7,0x2e,0xf,0xc0,0xac,0x91,0x27,0x85,0xa8,0x31,0xbe,0x6d,0x6a,0x95, + 0x37,0x87,0x3b,0x9e,0xcd,0x52,0x63,0xdf,0xfa,0xfc,0x70,0x1a,0xbc,0xb,0x5c,0x35, + 0x3b,0x31,0xde,0x83,0x8c,0xb9,0xe2,0xe6,0x49,0x74,0x6,0x5e,0x8a,0xe7,0x2f,0xc9, + 0xf4,0x8a,0x16,0x17,0x3c,0x4,0x86,0x53,0x63,0x4f,0x32,0xbe,0xea,0xe9,0xe3,0x6f, + 0x8,0x4e,0x76,0x8,0xf4,0xba,0x9f,0x6,0xc2,0xa0,0x70,0xdc,0xd4,0xfa,0x23,0x49, + 0x35,0x68,0x8f,0x3,0xfe,0x2a,0x54,0x5,0x5f,0x19,0x46,0xd4,0xe9,0xa9,0xad,0xbf, + 0x98,0x21,0x4d,0x73,0x4b,0xcf,0x29,0xc8,0xaa,0x50,0x1c,0x2b,0x5d,0x36,0x39,0x58, + 0xc4,0x48,0xd8,0xa3,0x62,0x31,0x8a,0x77,0x50,0x64,0xcf,0x59,0x39,0x19,0xd5,0x33, + 0xfe,0xc1,0x2f,0xd0,0x4a,0x82,0xf6,0x48,0x8c,0xbe,0x40,0x72,0xa7,0x5f,0xf3,0x80, + 0x51,0x20,0xf,0x82,0x3,0x9,0x27,0x29,0x86,0xdf,0x43,0xf7,0x40,0x5f,0x7b,0x14, + 0x5b,0xb8,0xbf,0x37,0x5c,0xc5,0xbd,0xa2,0xa7,0xf9,0x9a,0x5c,0xc4,0x23,0x3b,0x34, + 0x51,0x1c,0xb1,0x31,0xa5,0x57,0xcf,0xd0,0x38,0xc2,0xfa,0xd4,0x9,0x87,0xdc,0x9d, + 0xbb,0xb1,0x2f,0xa4,0x98,0xce,0xe1,0x8,0xb9,0xbf,0x20,0x32,0x6b,0x44,0x88,0xb0, + 0x4b,0x33,0xc4,0xff,0x3e,0x25,0x3,0x35,0xf8,0x3d,0x72,0xf8,0x24,0x3e,0x6c,0x7b, + 0x62,0x15,0x98,0x9d,0x63,0x59,0x93,0x70,0xa7,0xe1,0xc2,0xc6,0x6f,0x7b,0xee,0x1c, + 0x96,0xb6,0x58,0x7c,0xa3,0x50,0xc1,0xe4,0x10,0xa8,0xfc,0x59,0x17,0x73,0x4b,0x92, + 0xe,0xfb,0xd5,0x39,0x3b,0x8,0x49,0xdd,0x0,0x13,0x3d,0x1c,0x5e,0x90,0x82,0x72, + 0xd9,0x3d,0x69,0x57,0x45,0xe2,0xd9,0xbd,0xea,0x3e,0xb6,0xf8,0x8,0x52,0x72,0x60, + 0xf3,0x5f,0xb4,0x67,0xe6,0x9e,0xeb,0x30,0x22,0x75,0x9,0x19,0xf6,0x1f,0x41,0x57, + 0x77,0x86,0xb,0x37,0x8f,0xd9,0xae,0xd3,0xcf,0xcd,0x65,0x41,0xfa,0x52,0x29,0x21, + 0xb8,0x7c,0x33,0x0,0x8,0xe2,0xf2,0x1b,0x67,0x3a,0xd,0x3d,0xff,0x4a,0x4a,0x67, + 0x5,0x9a,0x5a,0xa,0x97,0x59,0x22,0xaa,0x29,0x3b,0xae,0x9e,0xb2,0x22,0xb4,0xa3, + 0x81,0xe0,0xbe,0xc9,0xe9,0x66,0xf7,0x8d,0xfa,0xea,0x80,0x86,0xcb,0x42,0x2,0xbe, + 0x2b,0x38,0xa6,0xf,0x9e,0x60,0x77,0x4b,0x30,0x5c,0x18,0x16,0xb5,0x2f,0xa3,0x64, + 0xe9,0xdd,0x79,0x6c,0x22,0xe6,0xa9,0x2c,0x45,0xa,0xd6,0xb,0x98,0x9b,0xb3,0xfa, + 0x51,0xcb,0xf5,0xfe,0x63,0x6,0xaa,0xb6,0x90,0xec,0xea,0x83,0xb7,0x32,0xa0,0x68, + 0xff,0x38,0xe6,0xdc,0x87,0x4c,0x1c,0xf,0x49,0x40,0x90,0x8d,0x25,0x52,0x68,0xbf, + 0xfc,0x4b,0xfb,0x1f,0x1e,0xfd,0x2b,0xd3,0xbc,0x7b,0xfa,0xdb,0x22,0x61,0xfb,0x4c, + 0xa6,0xb6,0x11,0xf0,0x9b,0xef,0xfc,0x6,0x8f,0xb9,0x31,0x1e,0xf8,0x5d,0x8b,0x99, + 0x5a,0x91,0x11,0x91,0xfd,0xf,0x63,0x42,0x1a,0xdf,0x72,0xa3,0xe2,0x1d,0xa6,0xed, + 0xbe,0xbb,0x9,0x96,0x74,0xa,0x44,0xe2,0x28,0x7f,0x46,0x3f,0x1c,0xc5,0xc5,0x20, + 0x9d,0xaa,0xd4,0xdf,0x13,0x13,0x2b,0xaa,0x59,0x41,0x7b,0x9e,0x71,0x75,0x98,0xb0, + 0x70,0x71,0xfa,0xde,0xbb,0x73,0xef,0x54,0xca,0xde,0x6e,0xed,0xd2,0x7e,0x96,0xff, + 0x4f,0x7b,0x88,0x35,0x86,0x34,0xe4,0xde,0xb7,0x78,0xf7,0x4,0x8b,0x17,0xe3,0x34, + 0xb3,0xe8,0xaf,0xa7,0xc1,0xda,0x3f,0x83,0xea,0xce,0xd2,0x94,0x90,0xd9,0x7d,0x60, + 0xab,0xad,0xef,0x62,0x27,0x7f,0x3d,0x7,0x8a,0x7f,0x8,0x37,0xa8,0xd0,0x20,0xa2, + 0xee,0x1,0x59,0x59,0xcd,0xf,0xd5,0x4d,0xa,0x7e,0x3c,0x4f,0xe1,0x85,0x49,0xb9, + 0x1f,0xfc,0xfa,0x33,0xee,0x91,0x5d,0x7,0x5,0xb7,0x8e,0xfb,0x13,0x11,0x94,0x81, + 0x19,0xca,0x73,0x1a,0xf6,0x9f,0xb3,0xf2,0x34,0x8,0x99,0xb0,0x60,0xcf,0xd,0x76, + 0x96,0x82,0x9c,0x48,0x3a,0xc2,0x54,0x13,0x5a,0x1f,0xf6,0x68,0xe0,0x1e,0x45,0x27, + 0x65,0x4a,0xe0,0x7f,0x3f,0x9,0x7e,0x3,0xd6,0xa7,0xd1,0x7a,0x1b,0xe5,0x29,0x7a, + 0x83,0x3a,0x4b,0x1f,0xbe,0x45,0x88,0xfe,0x6,0x3c,0xa4,0x62,0x38,0xfa,0x48,0x3, + 0xe4,0x13,0x83,0x6e,0xb1,0x90,0x77,0x50,0x39,0x85,0xf5,0x7e,0x39,0x1f,0x87,0x4a, + 0x6,0xc9,0xd5,0x31,0xe7,0x69,0x45,0x99,0x1d,0xef,0x67,0xe0,0xea,0xcc,0xac,0xc8, + 0x40,0x9e,0x7d,0xb9,0x2b,0xb7,0xd,0x12,0x44,0x4f,0xde,0x21,0x9a,0xe6,0x93,0x1e, + 0x1a,0xd4,0x11,0xa0,0xd0,0x77,0xb0,0xc6,0xd1,0x69,0x36,0x53,0x22,0xec,0xe5,0xd8, + 0x2c,0xb3,0x17,0xf9,0x2d,0xa9,0xa9,0x86,0x3f,0xbf,0x3b,0x78,0x26,0x3b,0x38,0xc1, + 0x61,0x11,0xcb,0xf9,0xdf,0x29,0x6f,0xe7,0x92,0xbd,0x6a,0x57,0xa9,0x7f,0x5,0x7d, + 0xb,0xa9,0x1,0xe5,0x4f,0xfb,0xf,0x49,0xe0,0xa9,0xa0,0x47,0xe7,0xa7,0x3d,0x9d, + 0x9a,0x87,0x49,0x4a,0x50,0xd4,0x67,0x3f,0xd4,0x38,0x87,0xbf,0x3c,0x72,0x8b,0xf2, + 0xcf,0x3e,0xc7,0x6f,0x54,0xfa,0x4d,0x1e,0xb6,0x30,0xf7,0x32,0x6,0x27,0xa7,0x81, + 0x7d,0x0,0xd2,0x37,0x4d,0xc9,0xc4,0x21,0xab,0xc0,0xf0,0xef,0x77,0xd0,0xad,0xe9, + 0x2e,0x15,0xb1,0xdc,0xfd,0x6b,0x6d,0x9d,0x46,0x46,0x63,0x4f,0xc8,0xde,0x66,0x22, + 0xfc,0x2c,0x9d,0x85,0x20,0xe1,0xf0,0x42,0x4d,0x6d,0xb5,0x11,0xa6,0xcf,0x2b,0x4b, + 0x1f,0x2,0xa2,0x6c,0x7d,0xe3,0x5d,0xf2,0xd7,0x5e,0xc6,0xf4,0x7,0x78,0xd3,0x8b, + 0x62,0xe0,0x1a,0x7f,0x67,0xcf,0x9f,0xdb,0x71,0x61,0xee,0x5a,0xf5,0xe,0xa2,0xdd, + 0xff,0x5a,0xc6,0xdd,0x57,0x4b,0x46,0xb4,0xf1,0x48,0x2a,0xcc,0xa2,0x12,0x6c,0x42, + 0x9d,0xbd,0xdb,0x8c,0xb8,0x71,0xc5,0xf5,0x9f,0x7e,0xbb,0x42,0x89,0x4f,0x48,0x66, + 0x6d,0x2c,0x0,0x8e,0x9b,0x7e,0x4e,0x79,0xad,0xc2,0xd2,0xc,0x1b,0xce,0xcc,0xf0, + 0x35,0xb1,0xcc,0xa4,0x42,0x75,0x2d,0x45,0xae,0x88,0x6b,0x57,0x45,0xdb,0x24,0xcb, + 0xbd,0xa2,0xb0,0x6f,0x9a,0x3e,0xe,0x57,0x69,0xc4,0x97,0x10,0xc2,0xbe,0x58,0xc1, + 0x98,0xa3,0x67,0x0,0xce,0x57,0x94,0x3,0x38,0x78,0xa8,0xe8,0x17,0x3c,0xa4,0x4d, + 0x55,0x52,0xfd,0xb7,0xe8,0x47,0x2b,0xd8,0xba,0xf0,0x73,0x5f,0x85,0xc6,0xed,0x95, + 0x5b,0x6f,0xd7,0x8d,0xa8,0xb5,0xf6,0xbe,0x74,0x64,0x33,0xdc,0x89,0x33,0xdc,0xbf, + 0x7c,0x36,0x3a,0x97,0x86,0x85,0x87,0xca,0x10,0x77,0x38,0xe4,0x2e,0xf2,0x60,0x7c, + 0xaa,0x3c,0x1c,0xc6,0x68,0xec,0xa9,0x78,0x89,0x36,0x63,0xa3,0x68,0x1d,0xa7,0x23, + 0x14,0xb8,0x10,0xf,0x4b,0xde,0xb5,0x67,0xce,0x4d,0xcd,0x37,0xab,0xeb,0xb4,0xe7, + 0xd3,0x7c,0x1a,0xf9,0x65,0xf8,0x18,0xd6,0xb3,0xd5,0xdf,0x11,0x18,0xc1,0xed,0x51, + 0x39,0x28,0xc3,0xcb,0x7e,0xf,0xe3,0x76,0xa6,0x15,0x4d,0xa8,0xa8,0xa4,0x72,0x33, + 0xbe,0x48,0x38,0xb3,0x98,0x88,0x69,0x2a,0x31,0x5c,0xcc,0x4d,0xbc,0x47,0xef,0x7b, + 0x92,0x86,0x61,0xf1,0xff,0xff,0x7,0xe,0x7e,0x52,0x91,0x32,0xa0,0x39,0x5a,0x32, + 0xe8,0xec,0x78,0xa6,0x1d,0x8d,0xd1,0xf7,0xb8,0xd2,0x18,0xd,0xb0,0x72,0x49,0x80, + 0x75,0x42,0xba,0x94,0xe,0x8d,0xb4,0x98,0x7c,0x6d,0x3f,0xf1,0xd5,0xb3,0x89,0x8b, + 0xb2,0x70,0xd0,0xa8,0xfc,0xa3,0xe9,0x20,0xbf,0x2,0x9a,0x77,0x41,0x9f,0xe3,0xa7, + 0xc1,0xc8,0x16,0xfc,0xb5,0x43,0x8e,0x66,0x73,0xa1,0x3a,0xd6,0x3d,0x84,0x50,0xda, + 0x34,0x93,0xbf,0xc5,0x21,0x77,0xc3,0xbf,0xf0,0x80,0xc7,0x99,0x9d,0x83,0xa8,0x55, + 0x13,0xc9,0x42,0x9c,0x40,0x95,0x33,0x34,0x99,0xe1,0xb6,0x1a,0xe6,0x34,0xdc,0x7a, + 0xbe,0x58,0xdb,0xe7,0x99,0xbc,0x64,0x7a,0x72,0xfa,0x2e,0xed,0x15,0x68,0x29,0x4, + 0xe,0x67,0x87,0x18,0xd9,0xf4,0xd5,0x79,0xf5,0xbb,0x2b,0x60,0xbe,0xbb,0x37,0xc3, + 0x32,0xe3,0x70,0x94,0x97,0x70,0x11,0x94,0xf5,0x62,0x7d,0xcb,0x7b,0xed,0x12,0x6d, + 0xc,0x75,0x36,0x73,0xeb,0xcf,0xd0,0xbb,0x7c,0xe9,0x73,0x75,0x3a,0xf1,0xe4,0x45, + 0xbd,0x11,0xe,0xc8,0x54,0xa7,0x2e,0xe4,0xdd,0xd,0xf4,0x88,0x1a,0xdb,0x63,0x79, + 0xbd,0xdd,0x4f,0x15,0x4f,0x96,0xda,0xbe,0x3c,0xd5,0xe0,0xf,0x1e,0x9b,0x5e,0x13, + 0x7a,0xaa,0x30,0x25,0x52,0xef,0x93,0xfd,0x9a,0x47,0xfe,0x68,0x4b,0xaf,0xcf,0xa0, + 0xe6,0x4c,0x1a,0x6b,0xb3,0x40,0x95,0x99,0xa6,0xe5,0x91,0x15,0xed,0x99,0x2e,0x6, + 0xf2,0xec,0x11,0x66,0x40,0x4f,0xdb,0x6f,0xff,0x31,0x5d,0xe8,0x6a,0x80,0x4a,0xed, + 0x4d,0x29,0x1e,0x86,0xca,0x97,0x8e,0x2c,0x46,0xfa,0x9f,0x9c,0x3d,0x7e,0x35,0xf9, + 0xe2,0x3d,0xfd,0xe6,0x7,0xf7,0x64,0xcb,0x85,0xa7,0x17,0x37,0xa7,0xed,0xe1,0xe0, + 0x4b,0x1,0xf3,0x63,0x43,0xce,0x96,0xab,0xf1,0x8a,0x91,0xa3,0xb5,0x3e,0xb2,0xc6, + 0xe2,0x31,0x54,0x44,0x52,0x27,0xa0,0x1d,0x43,0x93,0xa,0xd0,0x78,0x27,0xf5,0xd2, + 0xc0,0xef,0x7d,0xd3,0xfe,0x41,0xf0,0xfd,0x4b,0x26,0x7c,0x35,0xf1,0x51,0xec,0xa2, + 0xfb,0x7c,0x71,0xdd,0xcd,0xc7,0xe,0x76,0xc1,0x80,0x1e,0xc1,0xa6,0xa,0xb,0xb9, + 0x63,0xfd,0xfd,0xbe,0x1c,0x22,0x3a,0xc,0xfc,0xe8,0xfd,0x5d,0x5b,0x70,0xc8,0x85, + 0x6f,0x4f,0x66,0x78,0x75,0xc5,0x32,0x4a,0xf1,0xc6,0xd7,0x3f,0xeb,0xe6,0xed,0x9e, + 0xc,0x56,0x90,0xed,0x72,0xd4,0x8a,0xed,0xa7,0xc,0x6e,0x60,0xbe,0x54,0x85,0xc5, + 0xd3,0x59,0xb8,0x4e,0xdb,0x1e,0xdb,0x10,0x32,0x23,0xb9,0x71,0xa4,0xf7,0x21,0x5f, + 0xed,0x2c,0xc,0xa0,0x61,0xd0,0x69,0xaa,0x8f,0xa7,0xe1,0xcc,0x32,0x18,0x94,0xe0, + 0x83,0xb4,0xde,0x84,0xd2,0xa5,0x5,0x8f,0x17,0x69,0x9f,0xc,0xff,0xc,0x2c,0x6e, + 0x95,0xa8,0x26,0x60,0xbd,0xfc,0x49,0xdc,0xcd,0xa6,0xba,0x2a,0xcf,0xc,0x33,0x8, + 0xff,0xf8,0x0,0x9d,0xf1,0xb2,0xda,0x95,0x61,0x18,0x3a,0xe1,0xeb,0x64,0x17,0xf5, + 0xe6,0xfe,0x79,0x15,0xdd,0x74,0xbf,0xa6,0x4a,0x29,0xcd,0x4a,0x72,0x60,0x6a,0xa8, + 0x1e,0x33,0xd1,0xae,0xa7,0xcd,0x50,0x9d,0x5b,0xe9,0xf9,0xc8,0xf9,0xe9,0xde,0x38, + 0x76,0xc2,0xf4,0x49,0xc9,0x18,0xa7,0xda,0xfe,0xcc,0xeb,0xa4,0xb,0x15,0x7e,0x4d, + 0xe2,0x5d,0xaa,0x51,0x7c,0xa2,0x5e,0xe0,0xc3,0x16,0xbd,0x12,0xeb,0xef,0x4d,0x1d, + 0xc5,0x1c,0xd2,0x90,0x60,0x2f,0x5a,0xd7,0x68,0x74,0x94,0x9b,0x29,0x51,0x6,0xa9, + 0x4f,0x65,0xeb,0x14,0x87,0x6,0x66,0xb4,0x64,0x37,0x9e,0x25,0x86,0x80,0xf8,0xf5, + 0x9c,0xf2,0x8b,0x70,0xad,0x84,0x29,0xc1,0x96,0x8a,0xfe,0x5f,0x45,0x6c,0x37,0xc2, + 0x4b,0xe7,0x5f,0x7a,0x31,0xdd,0x97,0xfb,0xf8,0xf1,0x8a,0x4d,0xbf,0xc3,0x57,0x50, + 0xc6,0x47,0xf4,0xc0,0x9b,0xa7,0x0,0x39,0x14,0x64,0x2,0xae,0x88,0x64,0xe3,0xa, + 0xa,0x1a,0xac,0xad,0xef,0x93,0x1,0x78,0xaf,0x35,0xd2,0x3b,0x4e,0x29,0xf5,0xcb, + 0x6a,0x9f,0xbc,0xf8,0x8,0x87,0xad,0xae,0x65,0x86,0x54,0xc2,0x70,0xa9,0xa1,0xe3, + 0x6f,0xab,0x6,0x73,0x8f,0xef,0x15,0xff,0x22,0x36,0x59,0xe1,0xfc,0x49,0xa5,0xf7, + 0x7e,0x6e,0x68,0x2d,0x91,0x2d,0xec,0x89,0x9b,0x5c,0x8d,0x37,0xc5,0x75,0x71,0x20, + 0xd1,0xd7,0x3b,0xc3,0x2a,0x42,0xf3,0xf3,0xa6,0xc7,0xe,0x1c,0x98,0xe6,0x89,0x3b, + 0x88,0x34,0x2e,0x1,0x41,0x70,0xfe,0xeb,0x95,0xbb,0x2b,0x3,0x93,0xe,0xa3,0xe2, + 0x50,0xb0,0x19,0xed,0xb6,0xdf,0xfd,0x1f,0x54,0x4a,0xe1,0xb9,0x69,0xb3,0xca,0xb7, + 0xc5,0x3,0x82,0xe4,0x78,0xd3,0x2e,0xaa,0xf7,0xc3,0xcf,0xb,0x62,0xd5,0x54,0x83, + 0x88,0x23,0x94,0x44,0x8b,0x82,0xad,0x4c,0xc0,0x47,0x36,0x87,0xca,0xd9,0xf1,0xec, + 0x4d,0xe,0x39,0xef,0x95,0xe0,0x37,0xbd,0xf,0x59,0xe9,0xc6,0x78,0x7c,0x61,0x76, + 0x86,0xf3,0x5f,0x84,0x5d,0xff,0x5,0x7a,0x9e,0x7f,0x98,0xac,0xd0,0xdf,0x35,0xe4, + 0x42,0xdb,0xba,0xbd,0xa9,0xfd,0xa4,0xcf,0xba,0xe3,0xfd,0xdb,0xb7,0xeb,0x96,0xdc, + 0x7b,0x3e,0x56,0x7f,0x94,0x64,0xf,0xab,0xfb,0x4a,0xaa,0xaa,0x12,0x7,0xc,0x49, + 0xb4,0x6a,0xdc,0x11,0x89,0x7,0x55,0xcf,0x1f,0xc7,0x72,0x34,0xff,0xae,0x5e,0x51, + 0x61,0xe6,0x5c,0x33,0x52,0x22,0x1,0xd5,0x41,0x46,0xf2,0x8c,0x76,0xc7,0x57,0xdf, + 0xbe,0xc9,0xe1,0x7e,0xdb,0xe6,0xb6,0x29,0xd5,0xc3,0xb7,0x4f,0x41,0xd6,0x49,0x79, + 0x96,0x98,0x7f,0xa9,0x3a,0x3b,0x19,0xcf,0xfa,0x77,0xfd,0x32,0x8d,0x29,0xf4,0x73, + 0x4d,0x80,0xce,0x2f,0xc0,0xb5,0x95,0xe6,0xa2,0xf0,0xc2,0xba,0x80,0x67,0xef,0xae, + 0x62,0xb9,0x43,0xdc,0x3,0x23,0x53,0x70,0x9,0xb1,0x63,0x12,0x1b,0x4f,0xc3,0x46, + 0x7c,0xc5,0xfb,0xc9,0xad,0xbc,0x67,0x73,0x59,0xcb,0x77,0x75,0x7c,0xde,0xff,0xda, + 0xce,0x38,0x74,0x5d,0x76,0x9f,0x74,0x81,0x3d,0x54,0x84,0x71,0x62,0xd6,0x69,0xc3, + 0xe,0x6b,0xe9,0xff,0x5f,0x7b,0x57,0x1,0x57,0xc5,0xf2,0xfd,0xf7,0x12,0xa2,0x88, + 0x80,0xdd,0x82,0x81,0xf5,0xec,0xc4,0xe2,0xa2,0x62,0x8b,0xa2,0xa2,0x62,0x11,0xb6, + 0x58,0xd8,0x22,0x2d,0x65,0xeb,0xf3,0xd9,0xad,0xcf,0x6e,0x9f,0x9d,0x60,0x77,0xe7, + 0x33,0xb1,0x9e,0xfd,0xb3,0x9,0x1,0xcf,0x7f,0xce,0xec,0x9d,0xcb,0xb2,0xde,0xe6, + 0xc2,0x5,0xff,0x2c,0x9f,0xc3,0xee,0xce,0x9d,0x9d,0x38,0xdf,0x33,0xe7,0x9c,0x99, + 0x9d,0x99,0x75,0xfc,0xb9,0xc8,0xe2,0xad,0xef,0x8b,0x20,0xb7,0x3f,0x6d,0x96,0xd8, + 0xbc,0xb0,0xa9,0x3b,0xa9,0x4e,0xdd,0x7a,0x75,0xaf,0x3f,0x2f,0x92,0x8,0x8f,0x3e, + 0x4e,0x71,0xf,0x38,0x7d,0x73,0x5f,0x91,0x9e,0x5d,0x92,0xff,0x34,0xa9,0xd3,0xdb, + 0x6a,0x65,0xdd,0xe8,0xb2,0xc6,0x1b,0x73,0x47,0xf7,0xf0,0xbd,0x10,0x76,0xf7,0x4e, + 0x48,0x9b,0xc0,0x11,0x27,0xdd,0xce,0x5a,0xdd,0xbd,0xf0,0x2e,0x4f,0xf7,0x66,0x2b, + 0x2f,0x5e,0xcd,0xeb,0x18,0x68,0x2d,0xdd,0xf4,0xf8,0xae,0x34,0x6e,0x72,0xb9,0xa8, + 0xd0,0x93,0x2e,0x9d,0xc6,0x56,0x2e,0xb2,0x35,0xa4,0x91,0x47,0x60,0x8f,0x3b,0x2f, + 0x43,0xed,0x6c,0xff,0xb8,0xfa,0xfe,0x5e,0xd3,0x80,0xa1,0x77,0x26,0x9d,0x74,0x19, + 0xb2,0xa4,0x5a,0xb5,0xb0,0x93,0x97,0xde,0x17,0x6a,0x56,0xa8,0xff,0xed,0xf8,0xca, + 0x5f,0xae,0x38,0x4,0x6c,0x1d,0x1e,0x51,0x27,0xb1,0x7b,0xe5,0x2f,0x41,0xf1,0x51, + 0x81,0x9b,0xf,0x3d,0x5d,0x69,0xbd,0xfb,0xc5,0x63,0xbf,0xa3,0xf5,0x37,0xae,0xa8, + 0xbd,0xb7,0x6a,0xfc,0x99,0xff,0x2e,0x34,0xda,0xd7,0x62,0x8e,0xd5,0xb0,0x2d,0xa5, + 0x6d,0x3f,0xd,0x1e,0x14,0xbb,0x7a,0x67,0xe4,0xf6,0xff,0xd,0xfd,0x91,0xd4,0xf7, + 0xc9,0xac,0xd8,0x46,0xb9,0x57,0xed,0x99,0xb2,0xd9,0xd4,0x65,0x6c,0x53,0x3f,0x37, + 0x63,0x9b,0xc3,0xdf,0x6e,0x94,0xab,0x12,0xd2,0x68,0xc5,0x8f,0xb2,0x97,0xdf,0xbc, + 0x59,0x57,0xbd,0xe4,0xae,0xe0,0x62,0x83,0xae,0xae,0x71,0x58,0x97,0x30,0x60,0xd2, + 0xe6,0x17,0xc7,0x5a,0xdd,0x77,0x5f,0x77,0x7d,0x5d,0xd4,0x88,0x2a,0xe5,0x4e,0x18, + 0x95,0x6e,0x6d,0xbf,0xa8,0x58,0xd4,0x90,0x3b,0xed,0xdf,0xf6,0x38,0x36,0xb9,0xef, + 0x87,0xe1,0x2b,0xac,0x5d,0xca,0xe6,0x2f,0xf5,0x79,0xc0,0x19,0xcb,0x26,0x33,0xc2, + 0xdb,0x9a,0x26,0x7c,0xec,0xee,0xe4,0x5c,0xcd,0xa1,0xee,0x4e,0xb0,0xce,0x31,0xdb, + 0x63,0x6c,0xde,0x80,0x56,0x6e,0x46,0x56,0xc5,0x4c,0xeb,0x34,0xa8,0x99,0x6b,0xfa, + 0xb0,0x5a,0x45,0x25,0xfb,0xf2,0xdd,0x73,0x5a,0x58,0xcd,0xe8,0xb0,0xb9,0x77,0xf1, + 0x9c,0x96,0xa5,0x36,0x7,0x44,0x7c,0x2c,0xd6,0xae,0x62,0xeb,0xf,0x57,0x97,0x3c, + 0xd9,0xc8,0x7d,0x7b,0x61,0xe6,0xe0,0x18,0x10,0x10,0xf0,0x22,0xc6,0xa5,0xca,0xb4, + 0x7d,0x5c,0x91,0xfd,0x8f,0x7d,0x9a,0x7f,0x9,0x5f,0xe8,0xbe,0xe6,0xe2,0xac,0xc6, + 0x73,0xff,0x77,0xe4,0xab,0x65,0xc3,0x8e,0x83,0x77,0xe7,0x5e,0x50,0x65,0x75,0xa0, + 0xd3,0xb3,0xdb,0x26,0xfb,0xc2,0x36,0xed,0x6a,0xb0,0x65,0x76,0x9b,0x4b,0x25,0xbd, + 0x87,0x7e,0x7d,0x68,0xfc,0xce,0xed,0x9f,0x2d,0x17,0x83,0xb6,0x3b,0x17,0xfa,0x32, + 0x34,0x20,0xba,0x1c,0xb4,0x72,0xf8,0x9c,0xeb,0x60,0xf5,0xaf,0x45,0x6b,0xbd,0x88, + 0x7e,0x12,0x7f,0xae,0xec,0xb7,0x98,0x9f,0xc9,0x8f,0x8b,0xef,0xdd,0xba,0xc0,0xa1, + 0xcb,0xf7,0xbb,0xee,0x3e,0x65,0x87,0xc5,0xb7,0xf,0x74,0xeb,0xe2,0x93,0xfb,0x5a, + 0xe1,0x9c,0x9c,0xdd,0xd6,0xce,0x7d,0xda,0xde,0xb0,0xf9,0xf9,0xc9,0xec,0xe0,0xc7, + 0x2a,0xc1,0x37,0xca,0x6c,0x2e,0xe4,0x38,0xd8,0x88,0xb,0xb6,0xe6,0x6a,0x7a,0x1c, + 0x79,0x1e,0xf9,0xa5,0xc9,0xd6,0x90,0x84,0x13,0x2b,0xa5,0x7e,0xff,0x55,0xe9,0xe1, + 0x1b,0x59,0xcb,0xfa,0xc0,0x22,0xff,0xba,0xdb,0x9f,0xce,0xee,0x56,0x63,0x97,0x59, + 0xe2,0xa7,0xb8,0x27,0xd6,0xe5,0x83,0xbe,0xdc,0xba,0xf9,0xda,0xad,0xf4,0x9c,0xe0, + 0x92,0x4d,0x9a,0xcc,0xad,0xd1,0x7b,0xaf,0x5d,0x97,0x5,0x25,0xb6,0xc3,0xac,0xaa, + 0x39,0xfb,0xe,0xeb,0x5e,0xf1,0x62,0xf4,0x4e,0xcb,0xfe,0x63,0xdd,0x87,0x7f,0xee, + 0x51,0x2b,0xd4,0xa7,0xe6,0x3,0xab,0xcd,0xa1,0x73,0xca,0x81,0xcd,0xc9,0xf2,0x81, + 0xeb,0xdf,0x3b,0x54,0xe0,0x22,0xcc,0x48,0x33,0x3d,0xbd,0x63,0xc8,0x80,0x98,0xdd, + 0x77,0xdd,0xff,0x18,0x59,0xcd,0x34,0xe4,0x9a,0x67,0xf5,0x9f,0x9f,0xc6,0xf7,0xac, + 0xba,0xe7,0xd3,0x5,0xe3,0xc4,0xc1,0x3f,0x3d,0xa5,0x47,0xbb,0x2f,0xfa,0x5f,0xf2, + 0xb4,0x72,0xeb,0x6d,0x73,0xbe,0x1d,0x55,0x7e,0xf5,0xaa,0xbd,0xfb,0x8b,0xf9,0xd, + 0xf2,0x28,0xd1,0xd3,0x66,0xe5,0xe0,0x6d,0xd5,0xcf,0x5,0x25,0x4c,0x36,0xfd,0xd6, + 0xab,0xff,0xf5,0x4e,0xd3,0x3e,0x1d,0xbc,0xd1,0xef,0xf3,0x9b,0xc2,0x8f,0x93,0x47, + 0xfc,0x30,0xaa,0x34,0xdd,0x71,0xf1,0xe3,0x2f,0x9b,0xdb,0xe4,0x6f,0x3c,0x79,0x4b, + 0x82,0xf9,0xae,0xaa,0x95,0x6b,0x1c,0x68,0x90,0xb8,0x7b,0x6d,0x93,0x50,0x5f,0xe9, + 0xf5,0x40,0x8b,0xeb,0xfe,0x26,0x71,0x33,0xe6,0xfb,0xdb,0x9d,0xaa,0x59,0x3e,0xd0, + 0x21,0x60,0x82,0x4f,0xc5,0x2,0xab,0xcd,0xb9,0x88,0x4a,0x39,0xdd,0xb,0xfc,0x2f, + 0xba,0xf8,0x64,0x97,0x2d,0xb,0xab,0xff,0xdd,0xd5,0xad,0x57,0xc7,0x39,0x2f,0x7c, + 0x66,0xbc,0xec,0x32,0xed,0xc5,0xab,0x5e,0xdb,0x9b,0x75,0x5e,0xf7,0x3e,0xc7,0xfa, + 0xeb,0xde,0xcf,0xfc,0x8e,0x1f,0x5a,0x77,0xe1,0x61,0x50,0x5d,0xc7,0x77,0x52,0x6e, + 0xdb,0xd5,0xa9,0xe,0xd,0xea,0x8c,0xb1,0xf6,0x9f,0xec,0xe8,0x66,0x32,0xe5,0x90, + 0xd5,0xc6,0xa9,0x9d,0xda,0xc,0x1e,0x54,0x36,0x57,0x64,0x45,0xe9,0xf5,0xe9,0xb6, + 0xee,0x97,0x8e,0xe4,0x68,0x66,0xfa,0x61,0x4a,0x6c,0xff,0x64,0x87,0x71,0x49,0xcd, + 0x73,0x17,0xbe,0xd1,0xaa,0x63,0xc3,0xf3,0x87,0xcf,0xe4,0x7d,0xb2,0xda,0xa9,0xe2, + 0x54,0xce,0xd3,0xd1,0xba,0xf7,0x84,0x47,0xe3,0xce,0xe7,0x72,0x76,0xfe,0x76,0x24, + 0x3e,0x6f,0xd4,0x76,0x7f,0xa8,0xbf,0xc2,0xad,0xda,0x79,0xa3,0xc2,0x4f,0x67,0xfe, + 0x97,0xf7,0x5b,0x65,0x13,0xe3,0x51,0x3b,0x6b,0xb4,0xf9,0x1a,0xb6,0xd7,0xe7,0x58, + 0xa7,0xce,0x45,0xcb,0x9a,0xe7,0xac,0x6c,0x14,0x97,0xfb,0xaf,0xb6,0xe6,0x56,0x4d, + 0x93,0xba,0x57,0xd8,0x9f,0xaf,0xe8,0x29,0x69,0x4b,0x6b,0x9b,0x95,0xc7,0x1f,0xde, + 0xed,0xe1,0xb7,0x79,0x66,0xdf,0x8a,0x26,0x4d,0x7d,0x9c,0x9b,0x1b,0x7f,0x8f,0x8b, + 0xbb,0x79,0x38,0xa,0x2,0x7c,0xdb,0xf,0xb4,0x8e,0x29,0x55,0x62,0x59,0xbb,0xf2, + 0x7b,0xe7,0xdb,0x86,0x3c,0x6f,0x59,0xa2,0xe9,0x13,0x9b,0xb0,0xee,0x3,0x8f,0x1e, + 0x9,0x3c,0x61,0xdf,0x70,0xff,0xba,0xf0,0x52,0x5,0x12,0x93,0xcf,0x96,0xaa,0x1a, + 0x7e,0xe1,0x63,0xf5,0x23,0x2e,0x75,0xdf,0x4c,0xf9,0x48,0x5c,0x17,0x57,0xae,0xc6, + 0xa1,0xf0,0xa2,0x8f,0x6b,0x4e,0xd8,0xfe,0xb0,0xb0,0x51,0xc8,0x31,0xf8,0x30,0xf2, + 0xe6,0xd7,0xea,0x47,0x1c,0x77,0x3c,0xf,0xf6,0x29,0xe8,0xde,0xea,0xc7,0xbb,0xfc, + 0x2b,0x46,0x9a,0x96,0xfe,0x34,0xb0,0xd5,0xd2,0x2,0xe6,0xd6,0x96,0xd1,0xf,0x2c, + 0x63,0xaf,0xbd,0xdd,0xdf,0xed,0x66,0x89,0x61,0xa7,0x7,0xbd,0x9f,0xde,0xee,0xa6, + 0x83,0xf1,0xe7,0x90,0x1a,0xc6,0x25,0x6c,0xa5,0xc1,0x9,0xc6,0x97,0x2f,0x5f,0x1e, + 0xfb,0x29,0xa6,0x69,0x55,0x8b,0x78,0x87,0xe4,0x9d,0x96,0x6e,0xb6,0x9e,0xc3,0x3c, + 0xf2,0x36,0xa9,0x58,0xcd,0x67,0x8d,0x7d,0x6c,0x5,0x3b,0xdb,0x52,0x25,0xae,0xbf, + 0x2e,0x7b,0x2c,0xf4,0xa4,0x8f,0x97,0x9b,0x49,0x70,0xc9,0x98,0x1f,0xdf,0x16,0x1e, + 0x5b,0x1b,0x17,0x5,0x1d,0xa1,0x9c,0x34,0xe8,0x78,0x91,0xe2,0xb3,0x73,0x79,0x5, + 0x8f,0x4a,0x5c,0xd4,0x39,0x78,0x4b,0xab,0x19,0x73,0x9c,0x4e,0xec,0xa,0x2b,0x76, + 0xa5,0x51,0xcf,0x39,0x81,0x1b,0xbe,0x7c,0xdc,0xf5,0xbd,0x9a,0xc5,0xca,0xf8,0xa6, + 0x5c,0x82,0x64,0x45,0x7b,0x93,0x65,0x95,0xc2,0x9a,0x86,0x76,0xfa,0x67,0xc6,0xa5, + 0x0,0xe3,0x64,0xef,0xeb,0xf3,0xa5,0x4f,0x6d,0x1a,0xef,0xb6,0xce,0x37,0x2b,0xde, + 0xf2,0xe5,0x89,0x9d,0x39,0x83,0x87,0x85,0x35,0x6e,0x9b,0x70,0xb0,0xd5,0x96,0x6d, + 0xa7,0xce,0x4a,0x57,0x3c,0x8e,0x28,0x13,0xf7,0x31,0x8,0xfc,0xe,0xe,0xb8,0xb1, + 0xf4,0xbf,0x71,0x9b,0xa6,0xda,0xdc,0xb2,0x39,0x53,0xb6,0xb2,0xcb,0x42,0xab,0x65, + 0x43,0x3e,0xba,0x54,0x2a,0x52,0x48,0xe2,0x62,0xbe,0xa8,0xdb,0x69,0x9f,0x7c,0x1e, + 0x4f,0xa4,0x37,0x6b,0xac,0x69,0xd2,0xa7,0xc1,0xb3,0xfe,0xd2,0xb8,0x65,0x63,0x22, + 0xbe,0x7,0x5a,0x55,0xeb,0xd3,0x70,0x6b,0xdc,0xf4,0x86,0x6d,0xab,0x71,0xa3,0xf3, + 0xae,0xb9,0xf6,0x3a,0xc9,0x25,0x77,0x8f,0x2f,0xe3,0x4e,0xf6,0xc9,0x59,0xfb,0x42, + 0x78,0xfd,0xc8,0xa5,0x49,0xfe,0x1d,0x2b,0x98,0x9c,0x38,0x39,0xa7,0xbc,0x71,0x3, + 0xfb,0x79,0xa1,0x49,0xf3,0x7d,0x3e,0x6e,0x3c,0x9e,0x8b,0x8b,0x9c,0xfc,0x34,0x67, + 0x91,0x92,0xae,0xc3,0x2d,0xa2,0x57,0xd7,0xb0,0x30,0x1b,0xd2,0x6e,0xc0,0x12,0xb3, + 0xef,0x4d,0xde,0xbf,0xda,0xd4,0x75,0xff,0x89,0x1e,0x5c,0xdd,0x60,0xef,0xf2,0xe0, + 0xb3,0xba,0xdb,0xb6,0x62,0x15,0xb8,0x32,0xb3,0x2a,0xce,0x9,0x3a,0x10,0xd6,0xae, + 0xaa,0x79,0xc8,0xe6,0xfc,0x5c,0xbb,0x19,0x5,0x9e,0x3e,0x3d,0x72,0xa7,0x74,0x91, + 0x93,0x2d,0xae,0x78,0xef,0xaf,0x51,0xb9,0x60,0xd7,0xa2,0xc6,0x3e,0x4e,0x57,0x6c, + 0xa6,0x77,0xb0,0x5f,0xbd,0xf6,0x83,0x55,0x85,0x9a,0xa3,0x76,0x74,0xee,0xe0,0x77, + 0xc6,0xf5,0x73,0xcf,0xfc,0x75,0xba,0xe,0x92,0xd8,0xbb,0x16,0x8a,0xd8,0x6d,0x19, + 0xb2,0xc5,0xd7,0xda,0x61,0x19,0x37,0xc5,0x3e,0x22,0xb4,0x4e,0xa7,0x3,0x66,0x6f, + 0x7f,0xae,0x1c,0x7f,0x7f,0x88,0xdd,0xd1,0x56,0x76,0x6b,0x2a,0xf7,0xe1,0x22,0x4f, + 0x70,0x5f,0xaa,0xf4,0xda,0x57,0xe5,0x56,0x3d,0x1b,0xbf,0xf7,0xbb,0x5c,0x1e,0x5c, + 0x8c,0x68,0xff,0xe2,0xd5,0xdb,0xe,0x5e,0xab,0xb6,0x6f,0xaf,0x16,0xd7,0x26,0xaf, + 0x53,0x57,0x73,0xae,0x76,0xe,0xcf,0x9f,0xf6,0x5f,0x66,0xe6,0x71,0x4d,0xfc,0xde, + 0xbc,0xe9,0xa2,0xfb,0x55,0x5b,0x2f,0xb2,0xd8,0xef,0x6b,0x39,0xb3,0xcf,0x96,0xb5, + 0x79,0xf2,0x77,0x7d,0x65,0xd4,0xbf,0x6c,0x1b,0x87,0xef,0x77,0x37,0x27,0x4f,0x32, + 0x6b,0xf5,0xb3,0x46,0xa7,0x71,0x46,0xd1,0xab,0x93,0x82,0xeb,0x76,0xda,0xbe,0xf7, + 0x4b,0x89,0x84,0x93,0x2d,0xba,0x1e,0xe2,0x2c,0x5f,0x9a,0xb5,0x2e,0x32,0xbe,0x77, + 0xe9,0x27,0x89,0xd,0xc3,0xcc,0x2a,0x70,0xde,0x26,0x2b,0xdd,0xfc,0x96,0x3e,0xfc, + 0x39,0x38,0x6a,0xc3,0xc1,0xfc,0xad,0xde,0x57,0x3b,0x74,0xb9,0xe7,0x8c,0x25,0xad, + 0xf2,0x5c,0x31,0xdd,0x28,0xa9,0x91,0xe0,0x7c,0xca,0x63,0xd4,0x50,0xf3,0x86,0xf6, + 0x12,0x6b,0x5f,0x93,0x3f,0x57,0x3e,0xd,0xb,0x96,0x6d,0x2e,0x52,0xd8,0x78,0x8a, + 0xfd,0xbd,0x57,0x77,0xef,0xfd,0xeb,0xb6,0x62,0x96,0xbd,0x6b,0xb9,0x65,0xa6,0x31, + 0x31,0x2e,0x27,0x7d,0x8c,0x6c,0x9f,0x9d,0x2b,0xf4,0xa1,0x63,0x95,0xc7,0xf5,0x66, + 0x34,0x19,0xb5,0xd1,0xc9,0x5e,0xe2,0x62,0x9c,0x33,0x9f,0x11,0xf1,0xcf,0x82,0xa7, + 0x4b,0x6e,0xe5,0x3c,0x51,0x24,0x6e,0xc2,0x94,0x52,0x2c,0x6a,0xf4,0xf1,0xd5,0x11, + 0xa4,0x70,0xb6,0xf,0x66,0x1c,0xf4,0x5f,0x7f,0xb3,0x5b,0xe2,0x77,0x4b,0x4b,0xaf, + 0x35,0x95,0xfb,0x71,0xa7,0x3b,0x2c,0xdd,0x16,0xfb,0xae,0x64,0x89,0x13,0xcd,0x6e, + 0xf7,0xc0,0xed,0x4c,0x9e,0xae,0xae,0x5c,0x95,0x8b,0x1c,0x6b,0x61,0x69,0xb9,0xe0, + 0x70,0x6e,0xcb,0xae,0x39,0x7,0x49,0x9c,0xb8,0x97,0x95,0xaf,0x3c,0x75,0x71,0x37, + 0x99,0xe7,0xf5,0xc7,0xc4,0x4a,0xde,0x83,0x24,0xae,0xd,0xac,0xed,0x7b,0x1f,0xf3, + 0xf7,0x3d,0x78,0xf8,0xa9,0xcb,0x3a,0x9f,0x42,0xc1,0xa1,0xcd,0xb,0x96,0xb1,0xf8, + 0x60,0x35,0xaf,0x2b,0x67,0x7f,0xf9,0x65,0x8c,0x8b,0xfb,0xbc,0xcb,0xa6,0x35,0xce, + 0xdb,0xcc,0x4e,0x7c,0x79,0xad,0xd2,0x86,0x65,0xf9,0xee,0x7,0x74,0x8b,0x4a,0x18, + 0xf8,0xf8,0xd5,0x95,0x6,0xdf,0xae,0x79,0xd,0xdf,0x51,0xe8,0x7e,0xe5,0x16,0x7e, + 0x5e,0xfb,0x7b,0xb4,0xef,0xf5,0x47,0xb7,0xad,0xd7,0x12,0xa7,0x3a,0x95,0xf9,0x38, + 0x7e,0x5a,0x53,0xb7,0xfb,0x51,0x1b,0x73,0x7f,0xd,0x7f,0x3d,0xec,0x86,0xff,0xd5, + 0xf3,0xd5,0xea,0xbd,0x91,0xfc,0x15,0xef,0x95,0x14,0x92,0x7b,0x48,0xd9,0xee,0xbd, + 0xbc,0xf6,0x77,0xcf,0x3d,0x7c,0xfe,0x9a,0xa3,0x3b,0x1f,0x58,0xfc,0x5d,0xb5,0x90, + 0x51,0x53,0x23,0xdb,0xf7,0xcb,0x66,0x5b,0xbc,0xab,0x6e,0xb1,0xf8,0xac,0xdd,0x5e, + 0x6e,0xd8,0x97,0xda,0x27,0xca,0x49,0x57,0x8e,0xfc,0xd9,0xe9,0xd2,0xbb,0x27,0xbd, + 0x8f,0x36,0xfc,0xb4,0xa4,0xf9,0xab,0x4b,0xd7,0x13,0x57,0x1e,0xfe,0xd2,0xf6,0x60, + 0xf2,0xff,0xe2,0x8e,0x2d,0xdc,0x95,0xbc,0xf3,0xfe,0x96,0xf0,0x7d,0x6d,0xaf,0xbb, + 0xdf,0x1b,0x1e,0xf1,0x6f,0xa1,0x69,0x7f,0x5b,0xb6,0xa,0x7f,0xb1,0xf3,0xbc,0xd5, + 0xbc,0xf6,0x5c,0x81,0x66,0x81,0xdb,0xab,0x25,0xde,0x7f,0xb7,0xe3,0x5d,0xbf,0xe6, + 0xc9,0x7f,0xbf,0xf8,0x1a,0x79,0x39,0x62,0x75,0xce,0xbf,0xfc,0x1f,0xc8,0xa3,0xdf, + 0xbe,0xe3,0xb3,0xa0,0x62,0x75,0xd3,0x84,0x90,0xb9,0x39,0x83,0xdb,0xbf,0xb0,0xea, + 0x79,0x71,0x9b,0xf5,0x97,0x41,0xcd,0xe7,0xdc,0xf6,0x34,0x9f,0xde,0xde,0xb3,0xf4, + 0xdc,0x8e,0x4b,0x4f,0xef,0x91,0x97,0x6d,0xcb,0xb6,0x8a,0x73,0x6c,0x72,0x6,0x14, + 0x58,0xe5,0xf6,0xc5,0x38,0xfe,0xef,0xfe,0x93,0x6a,0x8e,0x4e,0x1e,0xfc,0x25,0xe4, + 0x51,0x8e,0x28,0xf8,0x71,0x37,0xaa,0x9a,0x87,0xd7,0x3e,0x3e,0x66,0xdb,0x0,0xf7, + 0xfc,0x9f,0xbe,0xb6,0x7b,0x9,0xb,0xe7,0x26,0x39,0x6e,0x2c,0x14,0xed,0x72,0x4e, + 0x5a,0xc0,0x24,0xb9,0x53,0xfb,0xfa,0x31,0x83,0x26,0x3c,0x9a,0xff,0xfd,0x47,0xd4, + 0xcf,0x18,0xb3,0xdd,0xe6,0xd6,0xfe,0x23,0xf6,0xe5,0x6d,0xe9,0xb7,0xf7,0x5a,0xb7, + 0x7b,0x4f,0x16,0x3f,0x6a,0x69,0xd7,0xa4,0x7a,0xd9,0xfc,0xe7,0xb7,0x84,0x24,0xad, + 0xae,0xd7,0xcd,0x22,0xe1,0x5f,0xa3,0x8a,0xff,0xcd,0x3e,0x61,0x64,0xdb,0xbd,0xf8, + 0x43,0x4b,0xeb,0x5b,0x77,0xd6,0xe4,0xef,0xf0,0x69,0x79,0x7e,0x8c,0xbc,0xc0,0xb7, + 0x83,0xdb,0x87,0xf0,0x47,0x3,0xdd,0x86,0x37,0x39,0x30,0x76,0xd3,0xc3,0x6e,0x8d, + 0x12,0x42,0x5c,0x7a,0x7,0x3f,0xb5,0x95,0x96,0xed,0x35,0xef,0xde,0xf1,0xd5,0xb7, + 0xa6,0xe4,0x4b,0x8,0x59,0xd3,0x27,0x78,0xf5,0xdc,0x27,0xb1,0x89,0xce,0x5f,0x2f, + 0xb5,0x2c,0xff,0xd4,0xba,0x9c,0x45,0xad,0xbd,0x7f,0xcd,0xe,0xae,0xb9,0xd7,0xa9, + 0x66,0x72,0xad,0x7,0x17,0xf7,0x6f,0xf3,0xff,0xd1,0x2d,0xf,0x96,0xb3,0xaf,0xcb, + 0xb9,0x91,0x26,0xe7,0x62,0xeb,0xcf,0x2c,0x96,0x30,0x7d,0x84,0x7d,0x95,0x2f,0xaf, + 0x8c,0x93,0xbc,0xda,0xef,0x1e,0x56,0x71,0x41,0x70,0xc2,0xd9,0xba,0xf,0xfe,0x71, + 0xbe,0xb7,0x7a,0x4f,0xd1,0x5b,0x8f,0x5d,0x1e,0xf4,0xbf,0x37,0xbc,0xe0,0x4d,0xf7, + 0x75,0xfb,0xe6,0x6f,0x3a,0xda,0xec,0x81,0xc5,0x8f,0x46,0x16,0xb7,0x7b,0x5a,0x78, + 0xff,0x31,0xed,0x85,0x59,0xc4,0x30,0xc9,0x3c,0xef,0x8d,0xd5,0x1f,0xd8,0x4b,0x73, + 0x4b,0x2,0x6d,0xba,0x4d,0x9e,0x9a,0xd0,0x7c,0xcb,0xad,0x7a,0x27,0x87,0xed,0xe8, + 0xfc,0xe0,0xc2,0xad,0x11,0xe,0x3b,0x43,0x23,0x6,0x26,0x9e,0x8e,0xfd,0x63,0x33, + 0x89,0x59,0x8e,0xbb,0x50,0xf3,0xca,0x48,0xb0,0x8d,0xb8,0x9f,0x3,0x5a,0x4f,0x5c, + 0x7a,0xd5,0xca,0x6e,0x65,0xbd,0x83,0x4d,0x1e,0xcc,0x2c,0xd2,0x76,0xe9,0xc3,0x28, + 0xdb,0x8b,0xfd,0x37,0x7e,0xe8,0xea,0xdd,0xeb,0xbf,0x31,0xff,0x3d,0x18,0x58,0xda, + 0x68,0xc0,0xc6,0xa0,0x9b,0x27,0xff,0xbb,0xf2,0xfd,0xcf,0x5a,0x24,0xf,0xf3,0x42, + 0x9c,0xd7,0xcc,0xaf,0xaf,0x9a,0x6d,0x2f,0xbd,0xa8,0xc6,0xfd,0x9d,0xe1,0x6d,0xed, + 0xf6,0x15,0x1d,0xe8,0x37,0xff,0x7e,0x37,0x97,0xa5,0x5e,0x15,0xa7,0xee,0xfc,0x51, + 0xb0,0xeb,0x17,0x63,0xd3,0x99,0x46,0xf3,0xc6,0x2c,0x8b,0x2a,0x31,0xdc,0xb5,0xdf, + 0x52,0xaf,0x7d,0xf5,0x97,0xd,0x37,0xcd,0x35,0x6f,0x74,0xf9,0xd0,0x9a,0x6b,0xda, + 0x7,0xda,0x8e,0xcc,0x6d,0x6b,0xf1,0x25,0xf2,0x4f,0xff,0x4e,0x9b,0x72,0x95,0x5f, + 0x37,0x62,0xf7,0xdc,0xb9,0x9e,0x6d,0x17,0x3b,0xce,0xab,0xde,0x76,0xb1,0x45,0x8e, + 0xaf,0x36,0xd1,0x26,0x2b,0xbd,0x2f,0x7f,0xba,0x58,0xd8,0xf7,0x91,0xcf,0x81,0x33, + 0x9,0xb5,0xed,0x3c,0xc2,0x96,0xbf,0xe8,0xb7,0xa2,0xfb,0xf9,0xe1,0xdd,0xfa,0xe6, + 0x6b,0x5f,0x29,0xdf,0x94,0x4b,0x5f,0x2f,0x2c,0xb7,0x38,0x23,0x89,0xea,0x69,0x2b, + 0x9d,0x73,0xd3,0x28,0xe7,0xc9,0x57,0x66,0x11,0xb5,0x1c,0x3e,0xce,0xd,0xf4,0x36, + 0xe,0xcf,0x59,0x80,0x8b,0x9a,0x5e,0xe3,0x52,0x50,0xf1,0xbd,0x2d,0x3,0x6d,0xb7, + 0x70,0x39,0xa7,0x27,0xfd,0x3b,0xe7,0xbc,0x49,0x95,0x16,0x73,0x3b,0xde,0xdb,0x18, + 0x81,0x2c,0xb8,0x95,0xcb,0xe9,0xa5,0x53,0xd5,0xb9,0xd2,0x77,0x97,0x73,0xdb,0x5, + 0xd5,0xec,0x97,0xd4,0x34,0x57,0xc3,0xf0,0x32,0xdd,0xe7,0x5e,0x75,0xb9,0x5f,0xbd, + 0xfb,0xd2,0xf9,0xd7,0xdc,0xdd,0xae,0xe,0x2d,0xf3,0x3e,0x50,0x12,0xee,0x36,0x75, + 0xdf,0x9a,0x98,0x7d,0xde,0xe7,0x5f,0xed,0xcf,0x3b,0x58,0x32,0x6f,0x72,0xd2,0xbf, + 0xd1,0xdd,0x1c,0x37,0xcd,0x6d,0x7b,0x29,0xd1,0x62,0x9d,0xc7,0xc9,0x7f,0x7,0xda, + 0xed,0xef,0xbe,0xd9,0x64,0x4d,0xb3,0x1f,0x3,0x2a,0x84,0xe6,0x59,0x97,0x27,0xff, + 0x5e,0x52,0x25,0x67,0xae,0x40,0xf3,0x40,0xcf,0x8d,0xcf,0xb7,0x7b,0xcd,0x94,0x3c, + 0x68,0xd3,0x20,0x61,0xdf,0xf2,0x77,0x91,0xbd,0xde,0xd6,0xfb,0x63,0xdb,0xd1,0xd5, + 0x8d,0x47,0x56,0xb,0xfb,0xbe,0xac,0xbc,0xf9,0xf0,0x93,0xe5,0xca,0x7e,0xbc,0x5b, + 0x39,0x41,0xe2,0x51,0x2a,0xda,0x67,0xc6,0xd7,0x57,0xb5,0xf7,0x95,0xf8,0xaf,0x88, + 0x4f,0xa5,0xb9,0xed,0x4e,0x8c,0xd8,0xbd,0xe4,0xbe,0x71,0xc4,0x8f,0xb8,0x5c,0x7f, + 0x7b,0x9c,0xde,0xe7,0xf5,0xc7,0xd6,0x9e,0xe5,0xa5,0xab,0xaa,0x6,0xf7,0x3d,0x6f, + 0xd3,0x2d,0x24,0xdc,0x7f,0xce,0x70,0x8b,0x7b,0x75,0xbe,0x7a,0x57,0xbd,0xb9,0xa3, + 0xc0,0x87,0x3c,0xa6,0x7,0xcf,0xbc,0x3e,0xf9,0xb6,0xfb,0xae,0xe1,0xb7,0x1a,0x26, + 0x48,0x2a,0x71,0xd3,0x96,0xdf,0x2e,0x7c,0xe7,0xd3,0x65,0x9f,0x72,0xe6,0x3,0x9a, + 0x3b,0x48,0x1f,0x8e,0xde,0xdf,0xe3,0x4a,0x6c,0xe5,0x16,0xe7,0xa,0xdf,0x6c,0xb9, + 0xad,0x65,0x62,0xed,0xd5,0x81,0x7,0x6e,0xf8,0xd5,0x5e,0x3d,0xe7,0x45,0x1e,0x7, + 0xe9,0xeb,0x56,0xb,0x86,0xb4,0x1d,0xe2,0x30,0xbc,0x95,0x1d,0xa6,0x13,0xde,0xa4, + 0xa5,0xc7,0x95,0x61,0x2e,0xe5,0xa5,0x5,0xee,0xae,0x9f,0x59,0xfc,0xa6,0xc3,0x8e, + 0xba,0x5f,0x8c,0x43,0xc6,0x48,0x22,0xa6,0x27,0x79,0x95,0xb9,0xe9,0xd2,0x75,0xd7, + 0xfc,0x88,0x4b,0xab,0xfa,0xde,0x1b,0xde,0x6d,0x92,0x9f,0x97,0x57,0xc5,0x66,0xe, + 0xef,0xeb,0xb5,0xbf,0xfc,0xf1,0xdc,0xca,0x66,0x4b,0xb8,0x8a,0x5,0x13,0x3e,0xbc, + 0xd9,0x6f,0x3b,0xcc,0xed,0xbc,0xed,0xfc,0x5,0xae,0xcf,0x5c,0x7a,0x78,0x7e,0x59, + 0xe9,0x77,0xa5,0xc1,0x95,0xf7,0xfb,0xe7,0xd4,0x2e,0x58,0xe4,0x8f,0x58,0xa2,0xbd, + 0xd6,0x97,0x7c,0xf5,0xe3,0x6d,0xf3,0xdb,0x5,0x8e,0xac,0xf,0x28,0xbd,0x85,0x5b, + 0xdc,0x2f,0x7a,0xd8,0xb3,0xe4,0xff,0x42,0xcc,0x8c,0xae,0x96,0xbc,0x30,0xb7,0x63, + 0xbd,0xf7,0xfb,0x4e,0x8e,0xd8,0x7d,0xe3,0xc1,0x1f,0x7b,0x9c,0x13,0x3f,0x9e,0x1c, + 0x1e,0x7e,0x7d,0xc7,0xea,0x13,0xe5,0xa0,0x70,0xd4,0xb7,0x75,0x7b,0xae,0xe,0x5d, + 0x9c,0xe4,0x78,0x69,0x96,0x64,0x51,0x21,0xc7,0x45,0xd3,0xc7,0x36,0xb4,0xb7,0xa8, + 0x3f,0xf1,0xb3,0xa5,0xfb,0xbe,0x8b,0x77,0x7e,0xee,0xed,0x10,0x68,0x7b,0xd9,0xb4, + 0xc8,0xf6,0x82,0x1d,0x4a,0x96,0x88,0x30,0xbe,0x96,0xd4,0xd4,0xe7,0x45,0x9c,0xf5, + 0x6b,0x23,0xfb,0xd2,0x31,0xd6,0xa6,0x8b,0x72,0x8f,0x8f,0x48,0x5e,0x3a,0xcb,0x28, + 0x21,0x64,0x6b,0xcd,0xe0,0x97,0x17,0x17,0xde,0xdc,0xb4,0x61,0x45,0xc3,0xde,0x1, + 0xa3,0x7c,0x2a,0x16,0x3b,0xe2,0x3a,0xa1,0x5e,0x81,0x2d,0xc9,0x7f,0x37,0xb,0xb4, + 0x1d,0x64,0x6d,0xdd,0x8c,0xe8,0xe1,0x9e,0xd1,0x5b,0x3a,0x36,0x7f,0xde,0xef,0xc9, + 0x90,0x9f,0xef,0x5b,0xe7,0x36,0xaa,0xd6,0xe3,0x9f,0xb5,0xed,0xfb,0x90,0x98,0x96, + 0x9,0xd6,0xc7,0x8a,0x7c,0xb0,0x21,0x3c,0xb0,0xeb,0x51,0xea,0xe1,0x71,0x2f,0x7b, + 0x2f,0xef,0xe4,0xce,0xa5,0x89,0x98,0x2f,0xe3,0x7c,0x36,0x7a,0xcf,0x3b,0x71,0x69, + 0x7f,0x5e,0x22,0xd0,0x57,0x4c,0x7d,0x36,0x56,0x2a,0xf0,0xd6,0xc8,0x89,0x14,0xb3, + 0xe2,0x16,0xe3,0x46,0xf6,0x4e,0x79,0x3b,0x55,0x90,0xc6,0x98,0x10,0x2d,0xcc,0x79, + 0x87,0x24,0x5,0xa3,0xbd,0x28,0xe4,0x1d,0xce,0x5f,0xe4,0xf0,0x9e,0xca,0x5f,0x98, + 0x13,0x51,0xa4,0x9b,0x35,0x6d,0x76,0xfe,0x62,0xdc,0x81,0xb3,0xbf,0xd5,0xd8,0x7b, + 0x7e,0x92,0x63,0x95,0x52,0xb3,0x13,0xbf,0x70,0xf,0xdb,0x3b,0x9a,0x45,0xde,0xb7, + 0xa5,0x1b,0x3b,0x99,0x49,0xbd,0x23,0xf8,0x27,0x2a,0xdd,0x2a,0x90,0x40,0xf7,0x74, + 0x6a,0x7c,0xab,0x44,0x42,0x8,0x58,0x15,0xbf,0x58,0xf0,0x4,0x17,0xe9,0x70,0xba, + 0x3c,0xee,0xcd,0xd6,0xa6,0x45,0x7,0xa7,0xed,0xcd,0x3c,0x27,0x57,0xc4,0xbd,0xd9, + 0x8,0xd9,0xca,0xf6,0x6b,0xc3,0xc3,0xd1,0x84,0x4b,0xc7,0xc3,0x5,0x7e,0x25,0xf2, + 0xdf,0x85,0x3,0x31,0x29,0x7e,0x16,0x7e,0x21,0x8c,0x1b,0x1c,0xfc,0x2b,0x9,0xd3, + 0x98,0x35,0xb,0x60,0xe8,0x50,0x80,0xd6,0xad,0x1,0xf0,0x9a,0x11,0xde,0x63,0x1a, + 0x7,0xf,0x92,0x7f,0x90,0x42,0x78,0x2f,0x4c,0x83,0x3d,0x8f,0x65,0xa8,0x45,0xc2, + 0x18,0xb1,0x34,0x5c,0x4,0x61,0x48,0x98,0x86,0xb2,0xe7,0xcf,0xc0,0x50,0x98,0x74, + 0xf0,0xd7,0xe7,0x85,0xe1,0xea,0x9e,0x67,0x24,0x7e,0x9e,0x91,0xf8,0x79,0x71,0x1a, + 0x8c,0xf0,0xd9,0x87,0xf,0xf9,0xfa,0xa,0x79,0x8f,0xf7,0x18,0x2e,0xc6,0x41,0xc8, + 0x47,0x9e,0x77,0x2e,0x34,0x2f,0x8c,0x2b,0x26,0xc,0x57,0xf4,0xec,0xaf,0xfc,0x77, + 0x49,0xc5,0x7b,0x46,0x8a,0x9e,0x55,0xc6,0x7f,0x26,0x47,0xca,0xe,0x75,0xfc,0x17, + 0x3f,0x2f,0x96,0x41,0x4d,0xf8,0x2f,0x7c,0x56,0x2c,0x83,0x42,0xbe,0x89,0xf9,0x8f, + 0xe1,0x42,0xfe,0xe3,0xb5,0x58,0xfe,0x84,0x69,0x88,0x9,0xc3,0xc5,0xbc,0x67,0xf2, + 0xac,0x88,0xf,0x62,0xc2,0x70,0x75,0xfc,0x27,0x1,0x70,0xdc,0xc,0x20,0xd8,0x98, + 0xfc,0x22,0x49,0x4d,0xc1,0x84,0xa2,0x49,0x78,0x30,0xf9,0x9d,0xb,0x22,0x34,0x86, + 0x90,0x97,0xec,0x37,0x63,0xfe,0x39,0xd4,0x33,0x5,0x8,0xe1,0x99,0xe9,0x99,0x39, + 0x39,0x54,0x21,0xa6,0xef,0x43,0x91,0xde,0x51,0xad,0x7f,0xb4,0xd5,0x43,0xea,0xf4, + 0x91,0x36,0x7a,0x49,0x9d,0x7e,0x52,0xa7,0xa7,0xd8,0xf3,0xe2,0xb6,0xc2,0xd2,0x64, + 0xcf,0x8b,0x75,0x96,0x2a,0xbd,0xc3,0xe2,0xf5,0x5d,0xa0,0x5a,0xff,0x9,0x7f,0x57, + 0xa7,0xc7,0x36,0x93,0xdf,0xe7,0x3e,0x4c,0x79,0x46,0xac,0xcf,0xc4,0xbf,0x6b,0xa2, + 0x17,0xf1,0x19,0x55,0xfa,0x51,0xf8,0xbb,0xaa,0xf4,0xc4,0x6d,0x5d,0xd8,0x66,0xd9, + 0x33,0xc2,0xdf,0x15,0xb5,0x7b,0x45,0x69,0x2a,0xd3,0xbf,0xec,0x39,0x46,0x78,0xaf, + 0xa9,0x1e,0xd6,0x44,0x1f,0x6b,0xa3,0x97,0x35,0xd1,0xcf,0xaa,0xf4,0xb4,0x3a,0xf9, + 0x53,0xa7,0xaf,0x15,0xf1,0x4e,0x95,0xfc,0xe9,0x92,0x9e,0x2a,0xf9,0x53,0x96,0x9e, + 0x26,0x76,0x41,0x91,0xfc,0xe1,0xef,0x62,0xc,0x55,0xd9,0x9,0x75,0xf2,0xa7,0x4a, + 0x5e,0x34,0xb1,0x3b,0x62,0xfb,0x23,0x94,0x41,0x46,0xda,0xda,0x21,0x55,0xf6,0x48, + 0x95,0xfc,0xb1,0x34,0x95,0x11,0xfe,0xae,0xa9,0xfc,0xa1,0x66,0x8b,0x76,0xc,0x82, + 0x60,0x4e,0x4a,0xc2,0x6d,0x14,0x52,0x30,0xa1,0x68,0xf2,0x7b,0x30,0x31,0x56,0xe4, + 0x52,0x46,0x24,0xbe,0xa5,0x30,0x8e,0x94,0xa6,0x83,0xf6,0xaa,0x8,0xa1,0x1a,0x5c, + 0x8a,0xdd,0xf2,0xcc,0xa5,0x89,0xa4,0xa5,0xf7,0xa1,0xd8,0x96,0x49,0x24,0x3,0xc0, + 0xc4,0xa4,0x8f,0x5a,0x9b,0xa6,0xd8,0xae,0xf1,0x7,0xff,0xbc,0x62,0xdb,0x66,0x6e, + 0xfe,0x40,0x23,0x1b,0x27,0x96,0x99,0xd4,0xe5,0x26,0xfe,0x40,0xc5,0x37,0x50,0xaf, + 0xde,0x5b,0x68,0xd5,0xea,0x13,0x34,0x6f,0xfe,0x91,0x9e,0xa5,0xd2,0xf,0x2,0x3d, + 0x6,0xb0,0x7e,0x7d,0x5e,0xb9,0xc,0xa,0x69,0xdd,0x3a,0x73,0xf0,0xf3,0x33,0x56, + 0x69,0x4b,0x31,0xad,0x25,0x4b,0xee,0xa7,0xa2,0x45,0x8b,0x9e,0xc0,0x80,0x1,0x5f, + 0xe4,0x79,0xac,0x5f,0x5f,0x52,0xa9,0x4d,0xc5,0x3c,0x54,0xa5,0x8f,0x69,0x21,0x9, + 0xf5,0x1b,0xb,0x63,0xe9,0xab,0xb2,0xb1,0xaa,0xda,0x15,0x6b,0xab,0xb7,0x60,0x16, + 0xd5,0x4b,0x8c,0xf0,0xf9,0x25,0x4b,0xee,0xc9,0xd3,0xc7,0x67,0x15,0xc5,0xd1,0x26, + 0xfd,0x3,0xd0,0x3a,0x95,0xfe,0x43,0x3e,0x89,0xd3,0x17,0xc7,0xd1,0x36,0x7d,0x46, + 0xca,0xca,0x2f,0x8e,0xa3,0x69,0xfa,0x2c,0xf,0x46,0x42,0x9d,0xb6,0x6a,0xd5,0x10, + 0xb9,0x9c,0xb,0xe3,0x8,0x7d,0x6c,0x45,0x32,0x9a,0xa2,0x7f,0x15,0xeb,0xcb,0x32, + 0x65,0x5e,0xc3,0xca,0x95,0x13,0x14,0xf6,0x99,0x84,0x69,0x3f,0x7f,0x6e,0xa2,0xd0, + 0x6e,0xb3,0x3c,0x78,0xbd,0xa6,0x88,0x52,0xdb,0x6f,0x45,0xf2,0x7f,0xf9,0xb2,0x89, + 0x52,0x3d,0x8a,0xc7,0x9f,0x7f,0xfe,0xf8,0xc5,0x2f,0x10,0xb6,0x2b,0x5d,0x7c,0x4, + 0x45,0x69,0xa3,0xac,0x2c,0x5e,0xfc,0x90,0x12,0x6b,0x63,0xe2,0x3c,0x34,0xd1,0xd9, + 0x8a,0xf0,0x65,0xe9,0x9,0xf9,0x8a,0xf7,0xb,0x16,0xbc,0x4e,0x95,0x87,0xa2,0x74, + 0x94,0x1d,0xc2,0xf4,0x51,0x4f,0x8a,0xdb,0x8e,0x8b,0x40,0x3e,0xd3,0x9e,0xfe,0xa0, + 0x5f,0xda,0xe,0xa6,0x8f,0xbc,0x52,0x97,0xbe,0x32,0x1d,0xad,0xa8,0xfc,0xc2,0xb6, + 0xe3,0x22,0x68,0xbf,0x4c,0x47,0xab,0xf2,0x39,0x54,0xb5,0x2f,0x4c,0x9f,0xe5,0xa1, + 0xa8,0x7d,0x61,0xfa,0xc2,0x34,0x84,0x3e,0x8,0xea,0x4e,0x75,0xfa,0x53,0x98,0x7, + 0xf2,0x8a,0x9d,0x1b,0x35,0x7a,0xad,0xd2,0x27,0xb9,0x70,0x21,0x7,0xd,0xdb,0xb8, + 0x31,0x97,0x56,0x7e,0xb1,0x90,0x84,0x3e,0xca,0xcd,0x9b,0x8a,0xdb,0x98,0xaa,0x36, + 0xa0,0x89,0xff,0x83,0xf1,0x54,0xb5,0x31,0x65,0x69,0xb,0xf3,0x40,0xc2,0xf6,0x26, + 0xbe,0x16,0xc6,0xd3,0xa6,0x7d,0xa5,0xe7,0x81,0xd6,0xee,0x53,0x4e,0x33,0x88,0xe1, + 0x8c,0x89,0x6f,0x25,0x21,0xfe,0x93,0x62,0xc2,0xdf,0x30,0x4e,0xc,0x67,0x46,0xae, + 0xad,0xe8,0xf8,0x0,0x4f,0xcf,0x21,0x58,0x72,0x5c,0x10,0x8f,0xc4,0x21,0xe9,0x7d, + 0x2a,0x61,0x85,0x49,0x53,0x3f,0xcc,0x96,0x90,0x23,0x97,0xe2,0x87,0x5,0x5b,0x2b, + 0x2f,0x4e,0x3a,0x93,0xd2,0x23,0x38,0x38,0x18,0xa2,0xa3,0xa3,0xf5,0x4e,0x98,0x2e, + 0x23,0x55,0x65,0xc0,0xdf,0xd3,0xe3,0xd0,0xa5,0xc,0x2c,0x9e,0xf0,0x19,0x7d,0x5c, + 0xeb,0x52,0x6,0x7d,0x5f,0xb,0xf2,0x57,0x59,0x6,0x61,0x5c,0x7d,0x96,0x41,0xcc, + 0x1b,0x55,0x3c,0xd0,0x54,0xc6,0xb4,0x91,0x5,0x4d,0xe4,0x41,0x98,0x3f,0xfe,0xae, + 0xea,0x2c,0xe2,0xa7,0x4a,0xd2,0x54,0x1e,0x75,0xc9,0x5f,0xdd,0xa1,0x6b,0xfe,0x2c, + 0x9e,0xaa,0xf6,0x2d,0xc4,0x54,0x19,0xa5,0x77,0xfe,0xfa,0xe3,0xff,0xaf,0xbe,0x33, + 0x3e,0xa3,0xc8,0x5f,0x56,0x24,0x4f,0xaa,0x48,0xbd,0xfc,0x69,0xff,0x9e,0x48,0x97, + 0x43,0x51,0xfe,0x69,0x79,0xcf,0xa4,0x69,0xfd,0x85,0x7c,0x50,0x96,0xbf,0x8e,0xef, + 0xa9,0xb4,0x26,0x91,0xec,0xa4,0xca,0x1f,0x7d,0x52,0x45,0xef,0xb9,0x84,0xe1,0xc2, + 0xfc,0xb5,0xad,0x3f,0xcb,0x97,0xb5,0x63,0x45,0xf9,0x33,0x12,0xe7,0xcf,0x48,0x98, + 0xbf,0xae,0x36,0x59,0x2c,0xfb,0xba,0xbe,0x67,0x53,0x75,0xb0,0x3c,0xc5,0x7c,0x57, + 0xd6,0xf6,0xb5,0x7d,0x4f,0xa7,0x8a,0xc7,0xc2,0xfc,0x99,0xe,0xd4,0xa4,0xfe,0x9a, + 0x8e,0x23,0xb,0xfb,0x60,0x62,0x52,0x65,0xc3,0x14,0xe5,0xaf,0xc9,0x7b,0x42,0x55, + 0xf9,0xa9,0xcb,0x5f,0x1d,0xff,0xd5,0xc9,0xbf,0x38,0x7f,0x26,0x7,0x9a,0xe6,0xaf, + 0x8e,0xff,0x9a,0xc8,0xbf,0x30,0x6f,0xa1,0xe,0xd4,0x27,0xff,0x75,0x79,0xcf,0xa9, + 0x8f,0xfc,0x85,0x65,0xd0,0xe6,0x3d,0xa9,0xbe,0xe4,0x4f,0x58,0x6,0x5,0xe3,0xd8, + 0x69,0x92,0x7f,0x45,0x7a,0x57,0x95,0xff,0x87,0x87,0xb2,0xe7,0x35,0x25,0xe1,0xf3, + 0xcc,0xe6,0xe9,0x9a,0xbf,0x2e,0xfa,0x5d,0x9c,0xbf,0x50,0x1f,0x6a,0x9b,0x7f,0x7a, + 0xf5,0xc9,0x54,0xe5,0x2f,0x2c,0x83,0xbe,0xf,0x4d,0xf3,0x67,0x65,0xd0,0x77,0xfd, + 0x85,0xf2,0xa0,0x2e,0x7f,0x56,0x86,0xf4,0xa0,0x54,0x79,0x70,0x5c,0x10,0x39,0x49, + 0x9,0xd9,0x90,0x6b,0xab,0x68,0x8e,0x33,0x8b,0xe1,0x38,0x63,0x42,0x12,0x31,0x91, + 0xdf,0x24,0xc1,0xec,0x43,0x90,0x29,0x64,0x4c,0xc2,0x8c,0xa3,0x65,0x67,0x4e,0x44, + 0xec,0xb7,0x4f,0x2,0x8a,0x27,0x94,0x44,0xe8,0x27,0xc9,0xb,0xc7,0x29,0xf0,0x5d, + 0x91,0x27,0x27,0x18,0xa7,0xb0,0x53,0xc9,0x16,0x9d,0xda,0x65,0x3a,0x91,0x56,0x47, + 0xd7,0xae,0x5d,0x21,0x33,0x90,0xb7,0xb7,0x37,0xa5,0x12,0x25,0x4a,0x68,0x5c,0x7, + 0x5f,0x5f,0x5f,0xb8,0x7e,0xfd,0x7a,0xa6,0x20,0x56,0x7e,0x24,0x4b,0x4b,0x4b,0x8d, + 0xea,0x30,0x6e,0xdc,0x38,0xfa,0x6c,0x4c,0x4c,0xc,0x24,0x26,0x26,0x42,0x52,0x52, + 0x52,0xba,0xe8,0x18,0x55,0x87,0xb2,0x3a,0x98,0x9a,0x9a,0x6a,0x54,0x87,0x69,0xd3, + 0xa6,0xd1,0x67,0xc7,0x8e,0x1d,0x2b,0x97,0x41,0x3c,0x32,0xfa,0x5e,0x51,0x1d,0xca, + 0x95,0x2b,0xa7,0x71,0x1d,0xf0,0xb8,0x70,0xe1,0x82,0x5c,0x17,0xb2,0x7b,0x96,0x4f, + 0x7a,0xdf,0x2b,0xc3,0x81,0xd3,0xb0,0x4d,0xb3,0x3a,0xb0,0x83,0xe5,0x91,0x91,0xf7, + 0xfa,0xaa,0x43,0x66,0xc4,0x41,0x53,0xbd,0x34,0x61,0xc2,0x84,0x4c,0x83,0x83,0xb0, + 0xfc,0x9a,0xe8,0xa5,0xc1,0x83,0x7,0x3,0x62,0x10,0x1f,0x1f,0x4f,0x79,0x62,0x48, + 0x52,0x54,0x7e,0x75,0x75,0xc0,0xf2,0xcf,0x9d,0x3b,0x57,0x5e,0xfe,0xb3,0x67,0x2f, + 0x69,0x4d,0xf8,0x1c,0x3e,0x9f,0x16,0xc2,0x34,0xae,0x5e,0xbd,0xfa,0x4b,0xd9,0x51, + 0xdf,0x5b,0x59,0x59,0x29,0x2d,0xff,0x90,0x21,0x43,0x60,0xf6,0xec,0xd9,0xa9,0xca, + 0x8f,0x78,0xba,0xbb,0xbb,0xcb,0xaf,0xd1,0x56,0xb2,0xeb,0xee,0xdd,0xbb,0xcb,0xaf, + 0x5b,0xb6,0x6c,0x49,0xaf,0x85,0x7a,0x51,0x57,0xc2,0xfc,0x15,0x95,0x7f,0xd8,0xb0, + 0x61,0x2a,0xf9,0xaf,0x49,0xf9,0x55,0x5d,0xb,0xdb,0x21,0x7,0xbf,0x96,0x49,0x11, + 0xe9,0xb3,0xfc,0x3,0x7,0xe,0x26,0x7d,0x3c,0xfd,0x94,0x5f,0x93,0x72,0x2a,0x8b, + 0xa7,0xac,0xfc,0xc3,0x87,0xf,0x57,0xcb,0xff,0xbf,0xfe,0xfa,0x53,0x61,0xfb,0x65, + 0xb2,0xad,0x8e,0x58,0xf9,0xf1,0x2c,0x24,0x65,0xe5,0x57,0x14,0x4f,0x55,0xf9,0xd5, + 0xc9,0xff,0xe2,0xc5,0xb,0x52,0x95,0x5f,0x98,0xb6,0xa2,0xf2,0x62,0xbd,0x2e,0x5e, + 0xbc,0xf6,0x4b,0xf9,0xd5,0x95,0x53,0x55,0xbd,0x32,0xb2,0xfc,0xca,0xf8,0x9f,0x16, + 0xd2,0x55,0x7e,0xd4,0xcd,0x47,0xc3,0xf2,0xa9,0x9b,0x8f,0x26,0xae,0xb3,0x2e,0x84, + 0x65,0xd7,0xb6,0xfd,0xea,0x73,0xbe,0x9b,0x2e,0x76,0x43,0x4c,0xda,0x95,0x5f,0xff, + 0xf3,0xe9,0x18,0xf,0xd3,0x42,0x27,0x4f,0x9e,0x4c,0x55,0xfe,0x11,0x23,0x46,0xfc, + 0x22,0xff,0xe9,0x35,0x5f,0xcf,0xcb,0xcb,0x4b,0x2f,0x24,0xc6,0x41,0xcc,0xff,0xf4, + 0x9a,0xf,0x88,0xfd,0x27,0x24,0x13,0x13,0x13,0xad,0x88,0x3d,0xc3,0xce,0xc2,0x3a, + 0x78,0x7a,0x7a,0x82,0x85,0x85,0x85,0xd2,0xf2,0xeb,0x73,0xbe,0x61,0xad,0x5a,0x75, + 0x8,0xd5,0x82,0x9a,0x35,0x6b,0xd2,0xb3,0xa2,0x6b,0x31,0x55,0xaf,0x5e,0x5d,0x4e, + 0x35,0x6a,0xd4,0xa0,0x67,0x71,0x1d,0xa,0x14,0x28,0xa0,0xb6,0xfc,0x9b,0xc1,0x4e, + 0xed,0x7c,0x46,0x71,0x1c,0x71,0xf9,0xf5,0xe1,0x83,0xfa,0xf8,0xf8,0xfc,0x52,0x87, + 0xe2,0xc5,0x8b,0x6b,0x54,0x7e,0x46,0xca,0xf8,0x2f,0x8e,0x23,0x2e,0xff,0x8f,0x1f, + 0x3f,0x34,0xa2,0xd4,0xb6,0xf0,0x2c,0x9c,0x3b,0x77,0x8e,0x9e,0xa3,0xa2,0xa2,0x68, + 0xf9,0x85,0x75,0x10,0x97,0x5d,0x51,0xf9,0xf5,0x35,0x1f,0x13,0x75,0x85,0x3a,0xc2, + 0xf2,0x9f,0x3e,0x7d,0x9a,0xd8,0xef,0x8b,0xb4,0xfc,0xcc,0x7e,0x9,0xf9,0x2f,0xac, + 0x3,0xa7,0xa4,0x1f,0x99,0x1e,0xf3,0x3d,0xdb,0x8e,0x51,0x4d,0xac,0xfc,0x67,0xce, + 0x9c,0xa1,0x65,0xc5,0xc3,0xdf,0xdf,0x9f,0x12,0xab,0x83,0xb0,0xfc,0x48,0x12,0x89, + 0x44,0xa9,0xed,0xd5,0xe7,0x7c,0x52,0x75,0x65,0x67,0xe5,0xff,0xf9,0xf3,0xa7,0x9c, + 0xd7,0x78,0xa0,0xec,0xa8,0x2a,0xbf,0x32,0xfe,0xe3,0xa1,0xaf,0xf9,0xaa,0x9a,0x94, + 0x9d,0x95,0x9f,0xf5,0xdd,0x91,0x2e,0x5d,0xba,0x24,0xef,0x3,0x2b,0x92,0x1f,0x55, + 0xe5,0xd7,0xd7,0x7c,0x58,0x4d,0xcb,0x2e,0xe4,0xff,0xf9,0xf3,0xe7,0x55,0xea,0x1f, + 0x75,0xe5,0x57,0x34,0xdf,0x56,0x68,0x9b,0x14,0xcd,0xb7,0xd5,0xa6,0x9c,0xea,0xca, + 0x8f,0x32,0xc3,0xca,0xab,0xaa,0xfd,0x6a,0x52,0x7e,0x45,0xf3,0x79,0x85,0xfa,0x33, + 0x3d,0xca,0x2f,0x94,0x7f,0x75,0xed,0x57,0x7d,0xf9,0x7,0x29,0xb4,0x4d,0xe2,0xf9, + 0xc2,0x8a,0xca,0x23,0xd4,0x45,0xda,0xc8,0x3f,0xd3,0x9d,0xba,0xb6,0x5f,0x45,0xfc, + 0xff,0xd5,0x7e,0xfd,0x3a,0x1f,0x59,0x5c,0x76,0xb1,0xf,0xad,0x6d,0xfb,0x65,0x75, + 0xd0,0xb6,0xfd,0xa6,0xd7,0x7c,0x67,0x6d,0xe4,0x47,0xd8,0x6,0xd2,0xd2,0x7e,0xf5, + 0x39,0x9f,0x5a,0x9b,0xf6,0xab,0x88,0xb4,0xd1,0x9f,0xfa,0x9e,0xaf,0xad,0xad,0xfe, + 0x49,0x6b,0xf9,0x85,0x75,0x50,0x35,0x1f,0x1c,0xf3,0x55,0x37,0x1f,0x5c,0x5b,0xfb, + 0x85,0x65,0x65,0x7a,0x53,0x48,0x18,0xae,0x4d,0xf9,0x59,0x1d,0x94,0xcd,0x37,0x17, + 0xe6,0xad,0x4f,0xfb,0x85,0xe5,0x14,0xea,0x4e,0x24,0x33,0x33,0x33,0x9d,0xca,0xcf, + 0xe,0x5f,0xdf,0x29,0x10,0x1b,0x1b,0xb,0x7b,0xf7,0xee,0xa5,0xcf,0xe8,0x43,0xdf, + 0x2b,0x2a,0x3f,0xbe,0x73,0x43,0x5f,0xf9,0xeb,0xd7,0xaf,0xf2,0x36,0xcb,0xf4,0x67, + 0x5a,0xca,0x3f,0x7a,0xf4,0xa0,0x54,0xe5,0x4f,0xf,0x62,0xf2,0x83,0xfe,0xb3,0xb0, + 0xfc,0xcc,0xe,0xa7,0xa5,0xfc,0xe3,0xc6,0x8d,0x97,0x97,0x5f,0x13,0x3f,0x5e,0x57, + 0xfa,0xf6,0xed,0x1b,0x1d,0x63,0xc0,0xf2,0x8b,0x29,0x6d,0xe5,0x1f,0x27,0x2f,0xbf, + 0x98,0xf6,0xed,0x53,0x4e,0x8a,0xe2,0x23,0xed,0xd9,0xb3,0x47,0xf6,0xec,0x3e,0x7a, + 0xbd,0x6b,0xd7,0x2e,0x38,0x7c,0xf8,0x30,0x9c,0x38,0x71,0x2,0xe,0x1d,0x3a,0x4, + 0x47,0x8f,0x1e,0x85,0xe3,0xc7,0x8f,0xc3,0xa9,0x53,0xa7,0xe4,0x7d,0xb0,0xb4,0x94, + 0x1f,0x8f,0xf0,0xf0,0x70,0x5a,0x7,0x43,0x93,0xae,0xe5,0x67,0x75,0x40,0xde,0x18, + 0x92,0x84,0x75,0xd0,0xb6,0xfc,0x78,0xe0,0xfb,0xb0,0x2d,0x5b,0xb6,0x64,0x8a,0x3a, + 0xe8,0x52,0x7e,0x3c,0x22,0x23,0x23,0xd,0x8e,0x43,0xfb,0xf6,0xed,0x75,0x2a,0x3b, + 0x3b,0xfc,0xfc,0xfc,0x20,0x23,0x9,0xed,0x0,0xbe,0xcb,0x45,0x5d,0x12,0x10,0x10, + 0xa0,0xb0,0xec,0xd1,0x84,0xcc,0x88,0xe,0xe,0x26,0x67,0x63,0xfe,0xdd,0x2b,0x6e, + 0x97,0xc2,0xc7,0x95,0x85,0xe3,0x5e,0x2a,0x18,0x8f,0x93,0x2,0xc4,0xe0,0xd9,0x6, + 0xe0,0x13,0x9e,0xad,0x0,0xe2,0x39,0x3e,0x1,0x7a,0x6f,0x9c,0xf6,0x73,0x8c,0xec, + 0x1c,0x2d,0x3b,0x7,0x6b,0x72,0x36,0x4b,0x39,0x47,0xcb,0xce,0x31,0xa2,0x73,0xb4, + 0x28,0x9e,0xa6,0x67,0x71,0x7a,0x9f,0x64,0xe7,0x24,0x35,0xe7,0x9f,0xb2,0x33,0xb0, + 0x73,0xb0,0xec,0x1c,0xcd,0xf3,0x8d,0x26,0x68,0xc3,0xaf,0x27,0x73,0xe4,0xe8,0x7c, + 0x31,0xf9,0x3c,0x2d,0xae,0x19,0xa7,0xec,0x48,0x37,0x5b,0x9c,0x41,0xa4,0xf3,0x91, + 0x1e,0xf3,0x6,0x33,0x8a,0x4,0x73,0x13,0x75,0xe6,0x41,0x56,0xaf,0x7f,0x5a,0x79, + 0x90,0x95,0xeb,0xaf,0xf,0x1e,0x8,0xeb,0x9f,0x95,0xe,0x71,0xfd,0x75,0xe5,0x81, + 0xb0,0xfe,0xa2,0x34,0x68,0x3e,0x99,0x35,0x4c,0x91,0xc,0xa4,0x95,0x7,0x2c,0xf, + 0x61,0x5a,0x99,0x39,0x4c,0xdf,0x3c,0x10,0xca,0x96,0x30,0xcf,0xcc,0x1c,0x96,0x5e, + 0x72,0xc0,0xe,0x4e,0x20,0x7f,0x99,0x35,0x2c,0xbb,0x2d,0x64,0xb7,0x85,0xf4,0x94, + 0x3,0x5d,0x64,0xd2,0x50,0x61,0x8a,0xea,0xaf,0xb,0xf,0x98,0xc,0x18,0xda,0xbf, + 0x49,0xab,0x5f,0xa4,0x2b,0xf,0xd2,0xb3,0xfe,0xe9,0x71,0x68,0x52,0x7f,0x1,0xf, + 0x74,0xaa,0x3f,0x3e,0x2b,0xd4,0x35,0xda,0xde,0x2b,0xf2,0xb1,0xf4,0x45,0xe2,0xb2, + 0x66,0xfa,0xfa,0xe3,0xdf,0xc1,0xff,0xbf,0xf5,0x1f,0x8a,0xfb,0x3d,0xc2,0xff,0xdf, + 0xfa,0xab,0xaa,0x87,0xb2,0xc3,0xd0,0xf5,0xd7,0x97,0x5e,0x56,0x55,0x4f,0x5d,0x78, + 0x93,0x51,0xf5,0x17,0xa7,0x95,0x96,0xfa,0xab,0x29,0x9f,0x42,0x52,0xf5,0x4c,0x56, + 0xab,0xbf,0xb6,0x75,0xd4,0xa4,0xdd,0xfc,0xe,0xf5,0xd7,0x95,0xf4,0x57,0x7f,0x55, + 0xfb,0x88,0xf3,0x24,0xac,0xbf,0xba,0x39,0xef,0x8a,0xf6,0xc0,0xc9,0xbc,0xf5,0x57, + 0xbd,0xef,0x79,0xa,0xa5,0xec,0xf5,0xa3,0x6e,0xce,0xbc,0x78,0x4e,0x4d,0xe6,0xad, + 0x3f,0x5f,0x77,0x55,0xf3,0x54,0x84,0x73,0x16,0x59,0xdd,0x15,0xcd,0x55,0x51,0x44, + 0x42,0x3e,0xa8,0x6a,0xe3,0xba,0x92,0xa2,0x76,0xa6,0x79,0xfd,0x35,0xaf,0xbb,0x90, + 0x7,0x9a,0xd6,0x5d,0xbc,0xf,0x88,0xbe,0x6d,0xaa,0x32,0x3d,0xa3,0x49,0xfd,0x55, + 0xcd,0x4f,0x12,0xcf,0xf3,0x51,0xc5,0x3,0x65,0xf3,0x7e,0x32,0x1b,0xf,0x34,0xa9, + 0x3f,0x6b,0xe3,0xe2,0xfd,0x4d,0x14,0xc5,0x63,0x75,0x52,0x36,0x6f,0x48,0xcc,0x83, + 0xf4,0x6c,0x3,0x8a,0xda,0x83,0xb6,0xf5,0x67,0x75,0x17,0xef,0x2f,0xc4,0xf6,0xf8, + 0x11,0xf3,0x40,0xa8,0xdb,0xc4,0xf1,0x15,0xf1,0x20,0x2d,0x7b,0x71,0xe9,0x42,0x62, + 0x1e,0x68,0x5a,0x7f,0x36,0x47,0x52,0x38,0xd7,0x56,0x11,0xf,0x58,0x7d,0x94,0xc5, + 0xcf,0xc,0xf5,0x17,0xf2,0x40,0x9b,0xfa,0xb3,0xbd,0x7d,0xc5,0xdf,0xf,0x50,0x56, + 0x7f,0x45,0xf1,0x95,0xd5,0x3f,0xbd,0xe5,0x5f,0x54,0x5f,0xb1,0xef,0x61,0xf0,0xfa, + 0x67,0xa4,0xee,0x13,0xca,0x81,0xb6,0xf2,0x2f,0xdc,0xb7,0x5c,0x13,0xf9,0x17,0xc7, + 0xcf,0xc,0xf5,0x17,0xf9,0x5c,0x9c,0x26,0xf5,0x17,0xaf,0xf5,0x41,0x52,0x64,0x7, + 0x84,0xfa,0x4f,0x1c,0x5f,0x95,0xfe,0xd3,0xf5,0xd0,0xa7,0xed,0xd3,0x84,0x7,0xbf, + 0x52,0x4a,0x3c,0x71,0x9d,0x14,0x91,0xd8,0x47,0xd4,0x74,0xe,0xb9,0x22,0x52,0x54, + 0x7f,0x45,0xba,0x2e,0xad,0xf5,0x4f,0xe1,0xc1,0xaf,0x24,0x8c,0xa3,0xc8,0xbf,0x15, + 0x93,0x32,0xff,0x47,0x1f,0xf5,0xc7,0x43,0x91,0x9e,0xd3,0xb6,0xfe,0xca,0x78,0xa0, + 0x8a,0x94,0xad,0xb5,0x52,0x45,0xda,0xce,0x3,0xd7,0xa4,0xfe,0xc2,0xfa,0xa6,0xa5, + 0xfe,0x8c,0x7,0x9a,0xfb,0xff,0x2e,0x5a,0xf1,0x40,0x97,0x79,0xf0,0x9a,0xd4,0x5f, + 0x18,0xa6,0x4f,0xfc,0x15,0xcd,0xf3,0x57,0xe4,0x23,0xab,0x5a,0xb3,0x26,0x9e,0xff, + 0x9f,0x96,0xba,0x2b,0x6b,0xff,0xca,0x74,0xa3,0x3e,0xf4,0x9f,0x26,0xfe,0xbf,0xba, + 0x75,0x6f,0xfa,0xa8,0xb7,0xaa,0xfa,0xeb,0x4b,0xff,0xeb,0xe2,0xff,0xb3,0xb8,0xe9, + 0xb1,0x6,0x21,0xa3,0xf4,0x7f,0x5a,0xfd,0xff,0x8c,0xe4,0x41,0x7a,0xe8,0xff,0xb4, + 0xfa,0xbf,0x9a,0xd6,0x5f,0x9b,0xf5,0x7b,0x19,0xa9,0xff,0x33,0xa2,0xfe,0xe2,0x7d, + 0x68,0x33,0x93,0xfe,0x4f,0xab,0xff,0xcf,0xf7,0x65,0x35,0xab,0x7f,0x7a,0xf8,0x7f, + 0x69,0xd5,0xff,0xba,0xf8,0xff,0x8a,0xc6,0x3f,0x54,0xc9,0xbc,0xa2,0x6f,0xcd,0xe9, + 0xab,0xfe,0x69,0xd5,0xff,0xaa,0xec,0x9a,0x3a,0xff,0x9f,0xed,0x77,0xac,0xcc,0xff, + 0x57,0xe4,0x3,0x67,0x85,0xfa,0x6b,0xea,0xff,0xb3,0xfa,0x2b,0xf3,0xff,0x55,0x8d, + 0x1,0x67,0x96,0xfa,0x33,0x1e,0x68,0x33,0xf6,0xcd,0xea,0x8e,0xcf,0x19,0xd2,0xff, + 0xd7,0x77,0xff,0x57,0x9b,0xfe,0x8f,0x70,0xcd,0xae,0xa1,0xfc,0x7f,0x7d,0xd5,0x9f, + 0xf1,0x40,0xdd,0x3a,0x5f,0xf1,0x9a,0x5f,0xe1,0xf8,0x46,0x46,0xfb,0xff,0x9c,0x86, + 0xe3,0x9d,0xda,0xf4,0xff,0x84,0x7c,0x50,0x47,0x98,0x56,0x4a,0xb9,0x32,0xde,0xff, + 0x17,0xfa,0x7e,0x8a,0xc6,0xf9,0x74,0xad,0xbf,0xf8,0xc0,0xe7,0x94,0xf9,0xdd,0xfa, + 0xa8,0x53,0x5a,0xea,0x2f,0x96,0xf7,0xec,0xfa,0x67,0x6c,0xfd,0x33,0x9a,0x54,0xd5, + 0x5f,0x57,0xff,0x57,0xd7,0xfa,0x2b,0x4a,0x3f,0xbd,0x49,0x5c,0x7f,0x45,0x47,0x46, + 0xd5,0x3f,0xb3,0x53,0x76,0xfd,0xf5,0x53,0x7f,0x21,0xf,0xb2,0xd2,0xa1,0xcf,0xfa, + 0x33,0x1e,0x18,0x1a,0x53,0x6d,0x48,0x11,0xf,0xd2,0x52,0xff,0xdf,0x81,0x7,0x69, + 0xad,0x7f,0x56,0xe7,0x81,0x3e,0xea,0x9f,0x95,0x79,0xa0,0xaf,0xfa,0x33,0x1e,0x64, + 0x35,0x52,0x58,0xf,0xfa,0x3f,0x48,0xf6,0x9b,0x54,0x76,0xb6,0x91,0x9d,0xd9,0x7e, + 0xb6,0x66,0xb2,0xb3,0x31,0xbf,0x7f,0x1,0xfd,0x7e,0x2d,0x3d,0xf8,0xfd,0xb,0x48, + 0x2,0x9f,0x64,0x9,0xc4,0xcb,0x12,0x48,0x92,0x25,0x20,0x3b,0x9b,0xe9,0xeb,0x2c, + 0xcb,0xc7,0x4c,0x96,0xaf,0x99,0xac,0x1c,0x66,0xc1,0xb2,0x33,0xa7,0xdb,0xd9,0x8a, + 0x9d,0x83,0x45,0x67,0x59,0xfa,0x56,0x31,0xa2,0x7b,0x71,0x3c,0x71,0x3a,0x9a,0x9e, + 0x95,0xe5,0x27,0xab,0xa7,0x15,0x68,0x7b,0xe,0x96,0x9d,0xa3,0x65,0xe7,0x18,0xd9, + 0xf9,0x93,0xec,0x1c,0x2f,0x3b,0xf3,0xc,0xb5,0xc1,0x7d,0x22,0x5a,0x13,0x9a,0xc3, + 0xa5,0xec,0x13,0xe1,0xe9,0xca,0xfd,0x72,0x18,0x19,0x19,0x19,0xc4,0xe7,0xcf,0x0, + 0xba,0x4a,0xa8,0xe0,0xaf,0x35,0xd6,0xee,0xc8,0x6a,0x3a,0x51,0x13,0xc2,0x3a,0x39, + 0x3a,0x3a,0x22,0x8f,0x9e,0xa5,0x95,0x47,0xbf,0x2b,0x7f,0x90,0xa4,0x52,0x69,0x9a, + 0xe5,0xe8,0x77,0xe6,0x8f,0x3e,0xe4,0x88,0xf1,0xe7,0xfe,0xfd,0xfb,0xf0,0xf8,0xf1, + 0xe3,0x2c,0x4b,0xff,0xfe,0xfb,0x2f,0xdd,0xff,0xc,0xeb,0x32,0x67,0xce,0x9c,0x54, + 0x3c,0x4a,0x8b,0x1c,0xe1,0xf3,0xb8,0xcf,0x1a,0x7e,0xdf,0x20,0x39,0x39,0x19,0x9e, + 0x3d,0x7b,0x6,0x37,0x6f,0xde,0xa4,0xf4,0xe8,0xd1,0x23,0x78,0xf7,0xee,0x5d,0xaa, + 0xb0,0x57,0xaf,0x5e,0xc1,0x93,0x27,0x4f,0x68,0xdc,0xf7,0xef,0xdf,0xa7,0x8a,0x8b, + 0xe9,0x60,0x38,0xc6,0x11,0x87,0xe3,0xbe,0xce,0x88,0x1,0x86,0xe1,0x19,0xbf,0x45, + 0x83,0xe9,0x7c,0xff,0xfe,0x5d,0x1e,0x17,0xf3,0x61,0x69,0x88,0xd3,0xc6,0x72,0x8, + 0xd3,0x7d,0xfa,0xf4,0x29,0x5c,0xbe,0x7c,0x99,0xfe,0xc6,0xc2,0xc2,0xc2,0xc2,0x60, + 0xc5,0x8a,0x15,0xb0,0x73,0xe7,0xce,0x5f,0x7c,0x18,0x5d,0xe5,0x88,0x3c,0xfb,0x71, + 0xf5,0xea,0xd5,0xb0,0x7c,0xf9,0x72,0xb0,0xb6,0xb6,0x86,0x99,0x33,0x67,0xc8,0xd3, + 0xdc,0xb3,0x67,0x37,0xb8,0xb9,0xf5,0x80,0x4d,0x9b,0x36,0xca,0xc3,0x30,0x5e,0xfb, + 0xf6,0xce,0xf4,0x9b,0x3f,0xdb,0xb6,0x6d,0x85,0x5,0xb,0x16,0x50,0x5a,0xba,0x74, + 0x29,0xb4,0x69,0xd3,0x16,0x26,0x4f,0x9e,0xc,0x47,0x8e,0x1c,0xfe,0x25,0x7c,0xe6, + 0xcc,0x99,0xb0,0x75,0x2b,0x1f,0x7f,0xc3,0x86,0xf5,0xf4,0xbb,0x12,0x5e,0x5e,0x7d, + 0x69,0x1e,0xcb,0x96,0x2d,0xa5,0xe1,0x3b,0x76,0x6c,0xa7,0x71,0x43,0x43,0xc3,0x68, + 0xda,0x2c,0xcf,0x1d,0x3b,0x76,0xd0,0xf0,0x7f,0xfe,0xf9,0x47,0x9e,0x2e,0x96,0xa3, + 0x57,0xaf,0x5e,0xf4,0x79,0x16,0x36,0x65,0xca,0x14,0xa8,0x5c,0xb9,0x32,0xfd,0x6d, + 0xe3,0xc6,0x8d,0xbf,0xf0,0x48,0x17,0x39,0x22,0xcf,0x49,0xf1,0xd9,0x55,0xab,0x56, + 0xd1,0xf2,0x7,0x4,0xf8,0xd3,0xfa,0x21,0xe1,0x7e,0xe9,0xf8,0x6d,0x1d,0xc4,0xf4, + 0xc6,0x8d,0xeb,0x70,0xe5,0xca,0x65,0xba,0xb7,0x22,0xd6,0xed,0xcc,0x99,0xd3,0xb4, + 0x4c,0x77,0xee,0xdc,0x86,0x13,0x27,0x8e,0xd3,0xdf,0xf0,0x5b,0x1f,0xeb,0xd6,0xad, + 0x25,0x18,0x2e,0x27,0xf2,0x71,0xed,0x97,0xf0,0x93,0x27,0x4f,0xd0,0xe7,0x30,0x1c, + 0xf7,0x78,0x9e,0x3a,0x75,0x2a,0xe1,0xf3,0x54,0xb8,0x7a,0xf5,0xa,0xd,0x3b,0x77, + 0xee,0x2c,0xe0,0xfe,0x78,0xff,0xfc,0xb3,0x8b,0xc6,0xc7,0xb4,0xf1,0x79,0xcc,0x1b, + 0xf3,0xc4,0xf2,0xb0,0x74,0x31,0xc,0xe3,0x62,0x7a,0x17,0x2f,0x5e,0xa0,0x61,0xb8, + 0xcf,0x20,0x7e,0xff,0xae,0x4e,0x9d,0x3a,0x54,0x86,0x36,0x6f,0xde,0xac,0x17,0x39, + 0x92,0xf1,0x88,0xca,0x11,0xee,0x7b,0x37,0x63,0xc6,0x74,0x5a,0x56,0x2c,0x1b,0xee, + 0x81,0x88,0x78,0x23,0x76,0x58,0xb6,0xe8,0xe8,0x28,0x1a,0x67,0xf6,0xec,0x59,0x10, + 0x11,0x11,0x41,0xcb,0x83,0xf5,0x46,0xbc,0x91,0x30,0x2e,0xee,0xf9,0x8f,0xbf,0x61, + 0xb9,0x85,0xe1,0x83,0x7,0xf,0xa1,0x38,0xb0,0xf8,0x28,0x37,0x98,0xee,0xc0,0x81, + 0x3,0x53,0xc5,0x45,0x99,0xc0,0xb8,0x1b,0x37,0x6e,0xa0,0xf9,0x1d,0x3d,0x7a,0x84, + 0xee,0xc3,0xf8,0xe7,0x9f,0x7f,0x42,0x50,0x50,0x90,0xfc,0x79,0x4c,0x13,0xe3,0x62, + 0x18,0x62,0x88,0x61,0xeb,0xd6,0xad,0x3,0xac,0x47,0xeb,0xd6,0xad,0x29,0x8f,0xd4, + 0xc8,0x91,0x95,0x3a,0xde,0x8,0x78,0x54,0x9d,0xd0,0x9b,0x45,0x8b,0x16,0xd1,0xbd, + 0x20,0xf1,0xdb,0x7,0xac,0x1c,0x7,0xe,0xec,0xa7,0x7c,0xc0,0x72,0x60,0x79,0x30, + 0xc,0xe5,0xb,0x31,0xc5,0x7d,0xe4,0xb0,0x3c,0x58,0x4f,0xc,0x3f,0x74,0xe8,0x20, + 0x95,0x39,0x6c,0x23,0x28,0x3,0xc2,0xf0,0xce,0x9d,0x3b,0xc3,0xc2,0x85,0xb,0x69, + 0x7a,0x8c,0x17,0x9b,0x36,0x6d,0xa2,0xe1,0x98,0x17,0x8b,0x7b,0xec,0xd8,0x31,0x1a, + 0x86,0xba,0x4,0xf7,0xd9,0x13,0x96,0x1,0xf7,0xc,0x44,0x39,0x47,0xbe,0xe1,0x3e, + 0x95,0x78,0xee,0xdf,0xbf,0x3f,0xe5,0x8f,0x38,0x2f,0xa4,0x65,0xcb,0x96,0xd1,0xf6, + 0x89,0xba,0x49,0xc8,0x23,0x17,0x17,0x17,0x5d,0xda,0x5a,0x9,0xe4,0x11,0xb6,0x1b, + 0xe4,0x51,0x9f,0x3e,0x7d,0x68,0xb9,0x50,0x76,0xef,0xdf,0xff,0x17,0x96,0x2c,0x59, + 0x42,0x65,0xfc,0xf4,0xe9,0x53,0x34,0xc,0xcb,0x84,0x78,0x61,0x7b,0xc2,0x32,0xb0, + 0x36,0x72,0xf0,0xe0,0x41,0x2a,0x1b,0xa8,0x7b,0xe,0x1c,0x38,0x20,0xf,0x47,0x5e, + 0x5c,0xbb,0x76,0x95,0xea,0xb8,0x53,0xa7,0x4e,0xca,0xdb,0x9,0x86,0xa3,0x6c,0xb0, + 0xb8,0x17,0x2e,0x9c,0xa7,0x61,0x98,0x26,0xf2,0x98,0xb5,0x49,0x2c,0x3,0x86,0x63, + 0xbb,0x42,0xd9,0x62,0x6d,0x8f,0xe7,0xcd,0x2e,0xba,0x8f,0xaa,0x30,0xaf,0xc5,0x8b, + 0x17,0xd1,0x6f,0x3c,0x61,0x3b,0xd3,0x97,0xce,0x16,0xcb,0x11,0xca,0x22,0xc3,0x9a, + 0xe9,0x71,0xc4,0xb,0xdb,0x3,0xf2,0x11,0xf7,0x71,0xc4,0x33,0xea,0x6c,0x94,0x2d, + 0xa6,0x83,0x91,0x37,0x28,0x5f,0x1e,0x1e,0x9e,0xf2,0xb8,0x4c,0xaf,0x62,0x5c,0x94, + 0x97,0x5f,0xf5,0x72,0xe8,0x2f,0x3a,0x1c,0x9f,0x47,0x59,0x15,0xc7,0xd,0xe,0xe, + 0xf9,0x45,0x87,0xa3,0xbc,0xac,0x5f,0xbf,0x5e,0x9e,0x6,0xe2,0x86,0x65,0x45,0x3e, + 0x28,0x93,0x23,0x1d,0x75,0x76,0x2a,0x39,0x42,0x9d,0x8d,0x58,0x9,0xf5,0x22,0xda, + 0xd7,0x5b,0xb7,0x6e,0xd2,0x70,0xd4,0x8b,0x58,0x97,0xdb,0xb7,0x6f,0xc3,0xc3,0x87, + 0xf,0x69,0x18,0x12,0xc3,0xfa,0xc1,0x83,0x7,0xf2,0xb8,0x4c,0xbf,0x63,0xd8,0xdd, + 0xbb,0x77,0x68,0x18,0xea,0x35,0x6c,0x3b,0x1b,0x36,0x6c,0x50,0xf8,0x3c,0xfa,0x36, + 0xc2,0xb8,0xf8,0x3c,0xe6,0x89,0xe1,0x62,0x1d,0x8e,0xe1,0xc2,0x34,0x50,0x2e,0x17, + 0x2f,0x5e,0xc,0x76,0x76,0x76,0xd4,0x37,0xd2,0xa3,0xce,0xee,0x88,0xcf,0xa2,0x5f, + 0x81,0xdf,0x41,0x40,0x5f,0xe5,0xe1,0xc3,0x7,0x94,0xd0,0x1f,0xfb,0xf0,0xe1,0x3, + 0xbd,0xe6,0xbf,0x4b,0x77,0x85,0xee,0xb9,0x8b,0x61,0x6f,0xde,0xbc,0xa1,0x6d,0x8, + 0xc3,0x6f,0xde,0xbc,0x41,0xed,0x94,0x30,0x2e,0xfe,0xc6,0xe2,0xbe,0x78,0xf1,0x42, + 0xfe,0x9d,0x85,0xb3,0x67,0xcf,0xd0,0xfa,0x2a,0x7b,0x5e,0x18,0xf7,0xf8,0xf1,0x68, + 0xea,0xb,0x61,0xf8,0xb3,0x67,0x4f,0x69,0xf8,0xe5,0xcb,0x29,0xe1,0x98,0xc6,0x95, + 0x2b,0x57,0x64,0x7b,0x17,0x9f,0x27,0xbc,0xbb,0x41,0x9,0xf9,0xa3,0xa8,0x9d,0x9, + 0xe4,0x28,0x4a,0xb,0xfe,0x50,0xbb,0x8f,0xbe,0x5a,0x7a,0xf5,0x3,0x50,0x97,0xdd, + 0xba,0x75,0x2b,0xdd,0x9,0xbf,0x37,0xc2,0xf2,0x54,0xc6,0x1f,0xa4,0x82,0x5,0xb, + 0x22,0x8f,0xec,0xd3,0xc2,0x1f,0x4c,0x1f,0x6d,0x34,0x6f,0x3b,0xf8,0x30,0x6c,0xdb, + 0xb8,0x7,0xb2,0x36,0x71,0x90,0x30,0xe,0xe2,0x96,0x9e,0x84,0x7b,0x4a,0x23,0x8f, + 0x34,0xe1,0x8f,0xac,0x9d,0x6d,0x4e,0xb,0x7f,0x30,0xd,0xa4,0xf9,0xf3,0xe7,0xcb, + 0xc3,0x48,0x74,0x10,0xf6,0x73,0x35,0x89,0xc3,0xf8,0xc3,0xa5,0xf3,0x38,0x10,0xf2, + 0x28,0xab,0xf3,0x47,0x52,0x8c,0x83,0x3c,0x27,0x25,0x60,0xbd,0x52,0x92,0xcd,0x1f, + 0x5,0xfc,0xc9,0x57,0xc2,0x2,0xc2,0x2f,0xbb,0x83,0xc5,0xd6,0x6c,0xfe,0x68,0xd3, + 0xbe,0x50,0x5f,0xe2,0x58,0x5,0xf3,0x9d,0x14,0xd1,0xc4,0x89,0x13,0x33,0x15,0x7f, + 0xf4,0xad,0x9f,0xb1,0xe,0x39,0x73,0xe6,0xa4,0xdf,0x99,0x13,0xef,0x5d,0x8f,0xf9, + 0x63,0xfd,0x6d,0x6d,0x6d,0x15,0x92,0xbd,0xbd,0x3d,0x8d,0x83,0xfb,0x66,0x8b,0x9f, + 0xed,0xdd,0xbb,0xb7,0x41,0xf8,0x83,0xfe,0x15,0xca,0x5,0x23,0xac,0xb7,0xae,0xf6, + 0x9d,0xf1,0xa7,0x50,0xa1,0x42,0xd0,0xab,0x57,0x6f,0x85,0x54,0xbb,0x76,0x1d,0xa5, + 0xb2,0x91,0x23,0x47,0xe,0x70,0x76,0x76,0x56,0xf8,0x9c,0xa7,0xa7,0x97,0x41,0xf8, + 0x83,0x3c,0x11,0xa7,0x9b,0x56,0xfe,0x20,0x95,0x2a,0x55,0xa,0xca,0x95,0xb3,0x4b, + 0x45,0x95,0x2b,0xff,0x41,0xfb,0x12,0x78,0x16,0xff,0x86,0x54,0xaf,0x5e,0x7d,0xfa, + 0xbb,0xa2,0xdf,0xa,0x15,0x2a,0x9c,0xae,0xfc,0x21,0x7d,0x75,0x29,0xf6,0xd7,0x91, + 0x3f,0xe8,0xc7,0x31,0x9a,0x37,0x6f,0x1e,0x49,0x2b,0x48,0x46,0xc1,0xb4,0x4f,0x2f, + 0xfc,0x5d,0x1b,0x5a,0xb9,0x72,0xa5,0x5a,0xfd,0x8a,0x7c,0xab,0x51,0xa3,0xa6,0x52, + 0x2a,0x52,0xa4,0x88,0x41,0xf4,0xcf,0xb0,0x61,0xfe,0x1d,0x7,0xc,0x98,0x40,0xfc, + 0xab,0x8d,0xa4,0x9d,0xcf,0x86,0x92,0x25,0x57,0x41,0xc9,0x12,0x3b,0x48,0x79,0xff, + 0x86,0x86,0xd,0xe7,0x82,0xb7,0xb7,0x3f,0xed,0x23,0x8a,0xf9,0xb3,0x77,0xef,0x56, + 0x58,0xb8,0x70,0x14,0x44,0x44,0x34,0x86,0xa1,0xc3,0x24,0xe0,0x33,0x4a,0x2,0xa3, + 0x46,0x4b,0x60,0xdc,0x78,0x63,0x98,0x3a,0xad,0xe,0xe9,0xe3,0x46,0x6a,0xc5,0x9f, + 0xb4,0x52,0x7a,0xf0,0xc7,0xdf,0xff,0xcf,0x99,0x55,0xfe,0x98,0xb,0x45,0x8b,0x3c, + 0x3,0x73,0xb3,0xef,0x90,0x2b,0xc7,0x77,0xb0,0x30,0xe7,0xcf,0x48,0xb9,0x73,0x92, + 0xb3,0xd9,0x19,0x68,0xd4,0x28,0x4,0xa6,0x4e,0x9d,0x4e,0xc7,0x6b,0xe,0x1e,0xdc, + 0x4b,0xda,0x5e,0x1f,0xf0,0x9d,0x94,0x3,0x22,0x22,0x71,0xbd,0x9,0x47,0x7e,0x23, + 0x34,0x2d,0x85,0x30,0xdc,0x3f,0x80,0x90,0xbf,0x2d,0xec,0xdb,0xb7,0x39,0xcb,0xf1, + 0x27,0x2c,0xec,0x7c,0xc1,0x89,0x13,0xf7,0xec,0xe8,0xd8,0xe1,0x29,0x54,0xab,0x92, + 0x0,0x7f,0x54,0x8a,0x87,0x3a,0xb5,0x7e,0x40,0xa3,0x86,0x89,0xd0,0x54,0x9a,0x4, + 0x52,0x87,0x24,0xa8,0x5b,0xe7,0x7,0x94,0x28,0x16,0xb,0xb9,0x4c,0xbf,0x43,0xce, + 0x1c,0x4f,0xa0,0x4e,0xed,0xbf,0x88,0xcc,0x6c,0x23,0xbc,0xa9,0x8,0xb,0xe6,0x73, + 0xb0,0x6c,0x29,0x7,0x9b,0x37,0x49,0x48,0xbf,0x5f,0x2,0x7b,0xf6,0x4a,0x60,0xff, + 0x7e,0x9,0xec,0x43,0xda,0xc7,0x87,0xad,0x5c,0xc1,0x41,0x78,0x4,0x7,0x41,0xc1, + 0xd6,0x10,0x1a,0xda,0x3b,0xcb,0xf0,0x27,0x3c,0xfc,0x65,0x75,0x3f,0xbf,0xb7,0x6f, + 0x6,0xd,0x8c,0x83,0x56,0x2d,0x93,0xa1,0x65,0x8b,0x64,0x68,0xdb,0x3a,0x19,0xda, + 0xb7,0x4b,0x6,0x97,0x8e,0xc9,0xd0,0xad,0x6b,0x32,0xb8,0x76,0xe1,0xaf,0xf1,0x77, + 0xfb,0x7a,0x89,0x60,0x5b,0x32,0x16,0xac,0x2d,0x3f,0x41,0x8b,0x16,0x43,0x88,0xed, + 0x26,0xfc,0xd8,0x63,0x4,0xbb,0xff,0x91,0xc0,0xa1,0xc3,0x12,0x38,0x71,0x92,0x83, + 0xcb,0x57,0x38,0xd2,0x6f,0xe6,0xe0,0xea,0x35,0xe,0xce,0x9d,0xe7,0x20,0x2a,0x9a, + 0x23,0xbc,0x94,0xc0,0xda,0xb5,0x1c,0x4c,0x21,0xb2,0x15,0x10,0xc8,0x41,0xbb,0x76, + 0x12,0x70,0x72,0x72,0x92,0xfb,0x4c,0xfa,0xa6,0x41,0x83,0x6,0xe9,0x85,0x3f,0x7e, + 0x7e,0x9f,0xdf,0x78,0x7a,0x24,0x51,0x3e,0x74,0xee,0xc4,0xf3,0xa2,0x4f,0xef,0x24, + 0xe8,0xeb,0x95,0x44,0xf2,0x48,0x84,0x21,0x43,0x12,0x61,0xd8,0xb0,0x44,0x7a,0xdd, + 0xb3,0x47,0x12,0x74,0x70,0x4e,0x86,0x26,0x4d,0x12,0x89,0x9c,0xc5,0x43,0x5e,0xab, + 0x57,0x44,0xdf,0x94,0xa7,0x32,0x72,0xf0,0x10,0x7,0x77,0xef,0x70,0xf0,0xe0,0x3e, + 0x7,0x8f,0x70,0x8e,0xfe,0x83,0x14,0xba,0x77,0xf,0xbf,0x91,0xc4,0x51,0x99,0xda, + 0xb2,0x59,0x2,0xb3,0x67,0x73,0x30,0x71,0x12,0x7,0x33,0x67,0x7a,0xca,0x75,0x92, + 0xae,0xb6,0x50,0x53,0xc2,0xf1,0x74,0x6d,0xf9,0x13,0x1e,0xfe,0x65,0xde,0xb0,0x61, + 0x9,0xd0,0xd5,0x35,0x19,0x3a,0x74,0x48,0x86,0x2e,0x9d,0x7f,0x42,0xff,0x7e,0x89, + 0x30,0x7c,0x78,0x2,0x8c,0x1b,0x17,0x7,0x1,0x1,0xdf,0x21,0x30,0xf0,0x2d,0xf8, + 0xfa,0xc6,0xd2,0xb0,0xc1,0x83,0x13,0xc1,0xbd,0xf,0xcf,0x23,0x47,0xd2,0xee,0x4a, + 0x14,0x8d,0x85,0x6,0xf6,0x7f,0xc2,0x89,0x13,0xa6,0x54,0x5e,0x6e,0xdf,0xc2,0xb5, + 0xb,0x46,0xf0,0xdf,0x4b,0x33,0xf8,0xdf,0x7,0xb,0xf8,0xf8,0x31,0xf,0x39,0xe7, + 0x81,0xa7,0x4f,0x73,0xc0,0xc5,0x4b,0x1c,0x1c,0x3d,0xc6,0xc1,0xee,0xdd,0x46,0xb0, + 0x61,0x3d,0x7,0xd3,0xa7,0x73,0x30,0x6c,0x78,0x3e,0xc2,0xb3,0xbd,0x19,0xc2,0x1f, + 0x65,0x3e,0x8a,0x2a,0xfe,0x4,0x5,0x7d,0x83,0x81,0x3,0x13,0xa9,0xcc,0xb4,0x91, + 0xb5,0xa9,0x3e,0x7d,0xfe,0x23,0xfa,0xe1,0x2b,0x8c,0xd,0x38,0x6,0x8d,0x3b,0x3b, + 0x82,0x5d,0xc3,0x62,0x60,0xef,0xd4,0x2,0xc6,0x8c,0x3f,0xe,0xa3,0x47,0xc7,0x53, + 0x39,0x42,0x59,0x6b,0xd3,0x26,0x19,0xaa,0x12,0x5d,0x95,0xc3,0xe4,0x35,0x4c,0x9d, + 0xe2,0x4,0x67,0xce,0xe0,0x77,0x55,0x39,0xb8,0x7f,0xdf,0x2,0xa6,0xaf,0xb6,0x85, + 0x96,0x43,0xab,0x43,0xad,0x4e,0xa5,0xa0,0xf7,0xa8,0xe2,0x70,0xed,0x46,0x1,0x78, + 0xf5,0x2a,0x17,0xdc,0xbe,0xcd,0x51,0x39,0xdb,0xb9,0x43,0x2,0xcb,0x97,0x71,0x30, + 0x76,0x1c,0x47,0xf8,0xdf,0x9f,0xfa,0xe,0x42,0xdf,0x53,0xdf,0xb4,0x76,0xed,0x5a, + 0x39,0x8f,0xc4,0xef,0x58,0x95,0xf1,0x27,0x34,0xf4,0xbc,0x15,0xca,0x48,0x3f,0x22, + 0x2f,0x28,0xf,0xa8,0x83,0x6b,0xd7,0xfa,0x6,0x2d,0x5b,0x1e,0x83,0x29,0xcb,0x57, + 0x83,0x73,0x60,0x75,0x90,0xf6,0xb7,0x83,0x16,0xc3,0x2b,0x41,0x43,0xf7,0xd2,0x50, + 0xb5,0x4d,0x31,0xf0,0x18,0xb0,0x10,0x26,0x4c,0x88,0x85,0x1,0x3,0x7e,0xd0,0xb6, + 0xd8,0xa4,0x71,0x22,0xb5,0x69,0x56,0x96,0x7b,0x88,0x2d,0xb7,0x24,0xed,0x26,0x3f, + 0x84,0xac,0x6e,0x7,0xce,0x41,0x55,0xa0,0xf9,0xd0,0xa,0xf4,0xd9,0xc6,0x7d,0xcb, + 0x40,0xa3,0x6e,0x36,0x70,0xf0,0x78,0x19,0x78,0xf6,0xd4,0x14,0xae,0x5c,0xe1,0x75, + 0xd1,0x3a,0xa2,0x8b,0x26,0x87,0x72,0xa4,0x3f,0x60,0x9b,0x6e,0x3a,0x48,0x48,0xf8, + 0xcd,0x21,0xe4,0x5,0xea,0xa1,0x19,0x33,0x66,0xa8,0xe5,0xf,0x69,0x5b,0x52,0x1f, + 0x9f,0x4,0xe2,0x93,0x27,0x51,0x9d,0x5c,0x8f,0xd8,0xa7,0xf2,0xe5,0x5e,0x43,0x93, + 0xe6,0x93,0x61,0x4a,0xb4,0x17,0x4c,0xd8,0xee,0x2,0xe1,0xc7,0x7b,0xc3,0xcc,0x8b, + 0x7d,0xe9,0x75,0x97,0xa0,0x3a,0x50,0xbd,0x55,0x69,0xa2,0x6f,0xde,0xc2,0x98,0x31, + 0x71,0x44,0x17,0x11,0x7d,0xdd,0x2a,0x19,0x8a,0x14,0x8a,0x5,0x53,0xa3,0xc7,0xd0, + 0xa9,0xb3,0x2d,0x8c,0x9a,0xd1,0x16,0x26,0x1f,0xec,0xd,0xbe,0xbb,0x3a,0xa7,0x7a, + 0xb6,0xdd,0xf8,0xea,0xd0,0xc8,0xb9,0x1a,0xc4,0xc4,0xe4,0x85,0x7f,0xef,0xa1,0xbe, + 0x96,0xc0,0xd6,0x2d,0x12,0x6a,0xfb,0xfb,0xf4,0x31,0x4e,0x77,0x5b,0x26,0x24,0x7c, + 0x57,0x8c,0x7d,0x25,0x7c,0xbf,0xa0,0x8a,0x3f,0x11,0x11,0x5f,0xa5,0xc3,0x86,0xfd, + 0xa0,0xba,0x7,0xf9,0x53,0xbd,0x6a,0x3c,0xf1,0x6d,0x2e,0x41,0x8b,0x5e,0x3,0x61, + 0xd3,0xdd,0xa9,0x30,0xe3,0x82,0x17,0xad,0xdf,0x9f,0x97,0x7,0xc3,0x9c,0x4b,0x3, + 0x49,0x7d,0x7b,0x41,0xb3,0xc1,0x15,0x61,0x8c,0xef,0x6e,0xa2,0x97,0xf8,0x76,0xd9, + 0xc9,0x25,0x89,0xf0,0x34,0x1e,0x4c,0x8,0x7f,0x5c,0xbb,0x96,0x86,0xc1,0x11,0xed, + 0x60,0xf5,0xad,0xa0,0x5f,0x9e,0xf5,0xdf,0xeb,0xa,0x8d,0x7a,0xdb,0xc1,0xd5,0x9b, + 0x65,0xe1,0xd1,0x23,0x9,0x9c,0x26,0x6d,0x71,0xfb,0x36,0x9,0xf5,0x93,0x90,0x3f, + 0xca,0xfa,0xa1,0xe9,0x41,0xe8,0x77,0x97,0x2b,0x57,0x8e,0xf2,0x88,0xc9,0x91,0x22, + 0xfe,0x10,0x5d,0x22,0x1d,0x3e,0xfc,0x7,0xd5,0x3d,0xc8,0x9f,0x6a,0x54,0x97,0x5c, + 0x81,0xca,0xf5,0xdd,0x21,0xfa,0xd9,0x26,0x98,0x77,0x65,0x38,0xad,0xe3,0xdc,0xcb, + 0x43,0x60,0xfe,0x95,0x11,0xa4,0xae,0x43,0xc0,0xeb,0x4f,0x29,0x4c,0xf0,0x3f,0x48, + 0xdb,0x18,0xea,0xea,0x1e,0x6e,0xc9,0xc4,0x57,0x4a,0xa0,0xfc,0xe9,0xed,0x6e,0x7, + 0x9d,0x3c,0x6a,0xc3,0x3f,0xf,0x16,0xc0,0xa2,0x6b,0xa3,0x53,0x3d,0x3b,0xe7,0xd2, + 0x20,0xe8,0x16,0xd8,0x18,0xae,0x5c,0xb5,0x23,0xba,0xda,0x84,0xea,0x2a,0x94,0x9f, + 0x29,0x53,0xb0,0x7d,0x19,0x53,0x5f,0x5c,0x99,0x6d,0x49,0xf,0x42,0x3e,0xe1,0x18, + 0xa,0x93,0x23,0x65,0xed,0x6b,0xc4,0x88,0x4,0x5a,0xc7,0x8e,0xc4,0x76,0xd5,0x27, + 0x7e,0x4d,0x9e,0xdc,0x6f,0xc1,0x2a,0x6f,0x8,0x44,0x6e,0x1d,0x1,0xc7,0x9e,0x6e, + 0x80,0xad,0xf7,0x66,0xc2,0xf2,0x1b,0x93,0x60,0xed,0xed,0xc9,0xb0,0xf1,0xee,0x14, + 0x8,0xd8,0xd0,0x17,0xc2,0xc2,0x9e,0x82,0x8f,0x4f,0x3c,0xf4,0xef,0x8f,0xfc,0x49, + 0x82,0x2a,0x95,0x79,0xfe,0xf4,0x1b,0x50,0x9,0x5a,0xb4,0x2d,0x6,0xb,0xe,0x6, + 0xc0,0x91,0x98,0xbf,0x53,0x3f,0x7b,0x67,0xa,0x4c,0x5c,0xd8,0xf,0xee,0xde,0xcd, + 0xd,0xff,0xfe,0xcb,0xc1,0xb1,0x28,0x8e,0xea,0x9f,0xf0,0x70,0x8e,0xe8,0x32,0xbb, + 0xc,0xb1,0x5f,0xa8,0xa3,0x19,0x7f,0x70,0xec,0xc4,0xc6,0xc6,0x46,0x2e,0x47,0xdd, + 0xba,0x75,0x7b,0x42,0x58,0x22,0x15,0xdb,0xaf,0x9,0x13,0xbe,0x82,0xa7,0x7,0x2f, + 0x7,0xcd,0x9a,0x26,0x41,0xe9,0x52,0xb1,0xc4,0x37,0x7e,0x4,0x65,0xfe,0x70,0x1, + 0xff,0x25,0x83,0x69,0x3d,0x8f,0xc6,0xac,0x85,0xfd,0x8f,0x97,0xc3,0x92,0xe8,0x10, + 0x18,0x35,0x71,0x1,0xa0,0xcd,0x43,0xdf,0xa8,0x37,0xf1,0x91,0x3a,0xb9,0x24,0x43, + 0xd1,0x42,0x71,0x60,0x9e,0xf3,0xa,0x4c,0xf0,0x2d,0x5,0x3d,0x7b,0xe6,0x84,0xa6, + 0xce,0x95,0x61,0xfa,0xf6,0x31,0xa9,0x9e,0x9d,0xbf,0x3b,0x4,0x16,0x2d,0x6e,0x4b, + 0xfd,0xc6,0xb3,0xc4,0xf,0x42,0xbf,0x7a,0xf5,0x4a,0xbe,0xcf,0xb1,0x60,0xc1,0x78, + 0xda,0x4f,0x49,0x6f,0xfe,0x28,0xf2,0xf,0x6b,0xd4,0xa8,0x41,0xf5,0x91,0xa7,0xa7, + 0xa7,0x87,0x98,0x37,0x78,0xf8,0xfa,0x7e,0x3f,0x83,0x7a,0x4,0xdb,0x8a,0xb3,0x73, + 0x12,0x34,0x6e,0x94,0x4,0xf9,0xac,0xbf,0x83,0xa9,0xf1,0x79,0x28,0x5a,0x74,0x0, + 0x54,0xa8,0x53,0x15,0x9a,0x74,0xa9,0x1,0xe,0xed,0x5b,0x42,0x8d,0x9a,0xbd,0x88, + 0xcf,0x7b,0x98,0xf2,0xb2,0xb,0x69,0x93,0x9d,0x88,0xfd,0x6a,0xde,0x2c,0x89,0xf6, + 0xd3,0x1c,0x9b,0x46,0xc0,0xcc,0x59,0xb9,0x60,0x92,0x1f,0x69,0x2f,0x7d,0x2c,0x41, + 0xda,0xb4,0x38,0xfc,0xd1,0xa0,0x34,0x34,0x76,0xad,0x1,0xed,0x7b,0xd5,0x85,0x9, + 0x13,0x2b,0x91,0xf2,0x71,0x70,0xe4,0x28,0xdf,0xef,0x40,0x7f,0x1b,0xf9,0x13,0x14, + 0x5c,0x90,0x7e,0xf7,0x14,0xc7,0xa,0x74,0xa1,0xab,0x57,0xaf,0x2a,0x1c,0x3b,0x61, + 0x76,0x4a,0x1d,0x7f,0x90,0x4a,0x94,0x28,0x81,0x6d,0x2b,0x48,0x11,0x7f,0xc2,0xc2, + 0x5e,0x77,0x1d,0x3b,0x36,0xe,0x50,0x4f,0xa3,0xcf,0x8c,0x3e,0x5f,0x8d,0x6a,0x9, + 0xb4,0x9f,0x65,0x69,0xf1,0x1a,0xf2,0xe7,0x3b,0x4d,0x68,0x2d,0x14,0x29,0xbc,0x95, + 0xf4,0xe1,0xf,0x43,0xb5,0xaa,0xf,0xa0,0xa9,0x23,0xb1,0x77,0x2d,0x93,0xa8,0xbf, + 0x64,0x57,0x36,0x9e,0xc4,0xfb,0xf,0xd6,0xae,0x2f,0xe,0xdb,0xb7,0x73,0x10,0x49, + 0xf4,0x89,0x9f,0x3f,0x7,0x43,0x87,0x4a,0xa0,0x5f,0x7f,0x9,0xf1,0xff,0x88,0x9f, + 0xec,0xcb,0xf7,0x51,0x57,0x11,0x7e,0x6c,0xdb,0x2a,0xa1,0xb6,0x1d,0xfd,0xed,0xe5, + 0xa4,0xbf,0x36,0x78,0x3c,0x7,0x6d,0x46,0xeb,0x46,0x33,0xd7,0xc,0xa1,0xef,0x2b, + 0x85,0x3c,0xe8,0xd7,0xaf,0x1f,0x54,0xa9,0x52,0x85,0xea,0x13,0x94,0xd,0x1c,0x9b, + 0x54,0xc7,0x1f,0x9c,0x37,0xa4,0x8c,0x3f,0x78,0x84,0x84,0x7c,0xdd,0x34,0x7e,0x7c, + 0x1c,0xf5,0x9b,0xd1,0x87,0x6e,0x4a,0xda,0x99,0x43,0x13,0x9e,0x4f,0x36,0x25,0xe3, + 0x48,0x1f,0x22,0x96,0xd8,0xf0,0x38,0xa8,0x58,0x3e,0x1e,0xea,0xd6,0xfe,0x41,0xf2, + 0x4e,0x22,0xfd,0x26,0x8c,0x93,0x8,0x79,0x2d,0xbf,0x13,0xb9,0x9b,0xa,0xc7,0x49, + 0x9f,0x2b,0xea,0x38,0xbf,0xee,0xf9,0x1f,0xd2,0xf,0x5b,0xbf,0x4e,0x2,0xf3,0xfe, + 0xe2,0xfb,0xf2,0x48,0xa8,0x6b,0xb0,0x7f,0xb6,0x97,0xf0,0xe5,0xf0,0x11,0x8e,0xf6, + 0xd1,0xce,0x9e,0x35,0x1,0xd7,0x34,0xf0,0x27,0x7c,0x95,0x6b,0x2a,0xfe,0xe0,0x9c, + 0x32,0x94,0x27,0x9c,0x83,0xc3,0xc6,0xa8,0x2d,0x2d,0x2d,0xa9,0x3c,0xa5,0x85,0x3f, + 0x61,0x61,0x2f,0xab,0xa3,0xbf,0x8c,0x6d,0xac,0x23,0xe9,0x83,0xa2,0x6c,0x20,0xf, + 0x5a,0xb4,0xe0,0xf9,0x80,0x7a,0xa9,0x69,0x53,0xe2,0x3f,0x12,0xd9,0x6a,0xde,0x1c, + 0xc3,0x78,0x5d,0x65,0x5f,0xff,0x7,0x14,0x2f,0xfa,0x1d,0x16,0x2d,0x72,0x21,0xfd, + 0x2d,0x53,0xea,0xd7,0x60,0x1f,0x2,0xf5,0xb,0xea,0xdf,0x43,0x87,0x39,0x79,0xff, + 0x1d,0xdb,0x14,0xfa,0xcd,0xd8,0x57,0xbd,0x77,0x57,0x2,0xaf,0x5f,0xe5,0x84,0x43, + 0xe7,0xcc,0x75,0xe6,0x8d,0x22,0xfe,0xbc,0x7e,0xfd,0x9a,0x7e,0x93,0xf5,0xc8,0x91, + 0x23,0x74,0x9e,0x2,0x8e,0xff,0xa2,0xfc,0x30,0x19,0xd2,0x9d,0x3f,0x8f,0x5c,0xb1, + 0x7f,0x85,0xf6,0x8,0x7d,0x62,0xe4,0x49,0xab,0x56,0x7c,0x1f,0xb,0xf9,0x85,0x3a, + 0xd8,0xb5,0xcb,0x4f,0x7a,0x76,0x71,0xc1,0x3e,0x3c,0xe1,0x59,0x33,0x5e,0x57,0xd9, + 0x95,0xfd,0xc,0x5d,0xc7,0x96,0x86,0x17,0x6f,0xac,0xe0,0xdd,0xbb,0xdc,0x84,0x4f, + 0x46,0xa4,0xfe,0x1c,0xed,0x47,0x20,0xaf,0xce,0x5f,0xe0,0xcf,0xd7,0xae,0x71,0x34, + 0xfc,0xc5,0xf3,0x1c,0xf0,0xed,0x5b,0x5e,0xb8,0x78,0x27,0x4f,0x9a,0x78,0xa3,0x88, + 0x3f,0x38,0x6f,0x2,0xe5,0x7,0xe7,0xbc,0xe0,0x3d,0xca,0x11,0x8e,0xd5,0xe3,0x98, + 0x7d,0x5a,0xf8,0x43,0xec,0xfc,0x4a,0xb4,0xf3,0x6e,0x6e,0xfc,0x18,0x6,0xf2,0xa5, + 0x7,0xf1,0x8d,0xfb,0xf6,0xe5,0xfb,0xec,0xa8,0xbf,0x7,0xc,0x48,0x4,0xec,0xe3, + 0xbb,0x75,0xe7,0xfb,0xf8,0xed,0xda,0xf1,0x32,0x54,0x9d,0xb4,0x41,0x69,0xaf,0x26, + 0xb4,0xbc,0xd3,0xd6,0xe6,0x80,0x4b,0x77,0xf2,0xd0,0x7e,0x29,0xf6,0x4f,0x9f,0x3f, + 0x33,0xa5,0xbe,0xce,0xcb,0x17,0x66,0xf0,0x9e,0xf0,0xee,0xcb,0x17,0x2b,0xb8,0x78, + 0x3b,0xf,0x84,0xae,0x30,0x4d,0x33,0x6f,0x14,0xf1,0x7,0xe7,0x87,0x7c,0xfe,0xfc, + 0x59,0xce,0x1f,0x9c,0xcf,0xe0,0xe1,0xe1,0x21,0x7f,0x77,0xa2,0xb,0x7f,0xc2,0xc3, + 0x3f,0x97,0x20,0xfa,0x87,0xd6,0x1d,0xeb,0x8d,0x6d,0xb,0x6d,0x93,0xbb,0x7b,0x12, + 0xd1,0xb1,0x9,0x30,0x69,0x52,0x2c,0xed,0xc3,0xe3,0x79,0xe4,0xc8,0x4,0x18,0x48, + 0xf8,0x84,0x7a,0xbc,0x6d,0x1b,0x59,0x7f,0xad,0x66,0x2,0x34,0xe9,0x10,0xfa,0x4b, + 0xd9,0x43,0x57,0xe4,0x10,0x91,0x7e,0x78,0xa2,0x8a,0x3f,0x48,0x38,0x6f,0xe3,0xcb, + 0x97,0x2f,0xd4,0xb6,0x61,0x7b,0xd3,0x64,0x7e,0x82,0x6a,0xfe,0xbc,0xde,0x8c,0xba, + 0x19,0xfb,0xe3,0x54,0xd7,0x34,0x4b,0xa2,0x7d,0x6,0xc,0x9b,0x1c,0xf6,0x18,0xbc, + 0x6,0xcf,0x1,0xc7,0x56,0xee,0xd0,0xb9,0x5b,0x8,0x8c,0x1b,0x77,0x1a,0xfc,0xfc, + 0xbe,0x53,0x99,0x72,0xeb,0x9e,0x62,0xeb,0x1a,0x35,0x3b,0xa2,0xf7,0xba,0xeb,0xca, + 0x1f,0x24,0x9c,0x77,0x88,0x7d,0x74,0xf1,0x3b,0x37,0x6d,0xf9,0x13,0x16,0x76,0xb7, + 0x3a,0xca,0x4e,0xff,0xfe,0x3f,0x68,0xbb,0x92,0x3a,0x24,0x43,0xe3,0xc6,0x49,0x30, + 0x68,0xe0,0xb,0x98,0xb9,0x60,0x23,0x74,0xf4,0xb5,0x7,0x7,0x41,0xff,0xbd,0x56, + 0xbb,0x32,0x30,0x74,0xf8,0x16,0x8,0xc,0x44,0xff,0x30,0x11,0x5a,0x93,0xbe,0x69, + 0xad,0x1a,0x9,0x50,0xb5,0x4a,0xc,0x34,0xed,0x67,0x9d,0x29,0xf8,0x23,0xb4,0xef, + 0xe8,0x1b,0xa7,0xc5,0xbe,0x13,0xbd,0x43,0xf5,0xb2,0x97,0x67,0x22,0xed,0x5f,0x34, + 0x6c,0x90,0x8,0x75,0x88,0xfd,0xe,0x9c,0xbc,0x13,0x22,0x8f,0xf4,0x57,0xd8,0x7f, + 0x6f,0xd4,0xb1,0xe,0xed,0xbf,0x63,0xff,0x2,0x65,0xae,0x81,0x7d,0x22,0x91,0xa1, + 0x78,0x68,0xd9,0xd1,0xd7,0xe0,0xfc,0x41,0xfb,0x8e,0x73,0xa3,0x70,0x5e,0x24,0xda, + 0x76,0x9c,0xa7,0x9d,0x16,0xfb,0x4e,0xfa,0xef,0x41,0xa3,0x46,0xc5,0xd3,0xf1,0x40, + 0xb4,0x4d,0x55,0xfe,0x48,0x20,0xf6,0xe8,0x3d,0xc,0x9,0x8,0x52,0xd2,0x7f,0xef, + 0x4d,0xfb,0xef,0x93,0x2,0xa3,0x49,0xfb,0x8b,0x95,0xfb,0x93,0x55,0xab,0xc4,0x83, + 0x83,0xc3,0x5,0x70,0xf4,0xca,0x67,0x50,0xfe,0xa0,0xbe,0x61,0xf6,0xb,0x79,0x82, + 0xf6,0x1d,0xe7,0xd3,0xea,0x6a,0xdf,0x23,0x23,0xbf,0x5,0x8d,0x18,0xf1,0x3,0xbc, + 0x48,0x5b,0xc1,0xf6,0x65,0x6b,0x93,0x40,0xfa,0xa7,0xf,0xa0,0x56,0x33,0x67,0xda, + 0x7f,0xc7,0x7e,0x37,0xdf,0x7,0xf7,0xa6,0xd7,0x78,0xf6,0xfa,0xcb,0x11,0x7c,0xfc, + 0xd7,0x91,0xfe,0x5d,0x1c,0xe5,0x2b,0xea,0xab,0x1a,0xd5,0x7f,0x40,0x9d,0x3a,0xfb, + 0xc1,0xa1,0x4f,0x51,0xcd,0xeb,0x37,0x92,0x83,0xf6,0x83,0x8d,0xa0,0x9d,0xb7,0x44, + 0x6f,0xfc,0xe1,0xe7,0x45,0xde,0x92,0xdb,0x2f,0x9c,0xaf,0xd9,0xa1,0x43,0x7,0x9d, + 0xed,0x7b,0x44,0xc4,0x37,0xf,0x1c,0xdf,0x40,0x3b,0x8e,0x36,0xbd,0x82,0x5d,0x2, + 0xe4,0x30,0xfe,0xc,0xf9,0xa,0x8e,0x83,0x88,0xad,0x43,0x21,0xa,0xfb,0xef,0xff, + 0xce,0x82,0x95,0x37,0xfc,0x60,0xdd,0xed,0x50,0xd2,0x7f,0x9f,0xa,0x93,0x36,0xf7, + 0x80,0xb0,0x88,0xeb,0x80,0x7d,0x12,0xb4,0xf5,0x2d,0x5b,0x26,0x43,0xed,0x5a,0x3f, + 0x88,0xec,0x45,0x6b,0xce,0x1f,0xc2,0x9b,0x2e,0xbd,0x4c,0x88,0x3f,0x6a,0x44,0xfc, + 0x6,0x23,0xca,0x27,0x7d,0xf0,0x87,0xd9,0xf7,0x8b,0x17,0x2f,0xd2,0x7b,0x9c,0x77, + 0xd8,0xb1,0x63,0x47,0x9d,0xed,0x7b,0x64,0xe4,0x57,0x29,0xda,0x6d,0xf4,0x6d,0xd0, + 0xb6,0x63,0x5b,0xc9,0x6f,0x1d,0x7,0xb9,0x73,0x9d,0x84,0xb2,0x35,0xeb,0xc0,0x82, + 0x43,0x81,0x70,0xf6,0xe5,0x3f,0x94,0x8e,0x3f,0xdb,0x42,0xc7,0x2b,0xbc,0xc6,0x8e, + 0x2,0x7f,0xff,0xcf,0xd4,0xce,0xa3,0xce,0x42,0xf9,0xc1,0xf1,0xb1,0x32,0xa5,0x4f, + 0x43,0x73,0x8f,0xbc,0x6a,0xeb,0x84,0xf2,0xd2,0xb9,0xbb,0x9,0xd1,0xa3,0x46,0xe0, + 0x47,0xfa,0xee,0xd8,0x9f,0x75,0xed,0x63,0xa2,0x37,0xfd,0x8c,0xed,0x4b,0x9f,0xf6, + 0x3d,0x2c,0xec,0xdb,0x9b,0xa1,0x43,0x13,0xe9,0x58,0x29,0xb5,0x47,0x35,0x13,0xa1, + 0x40,0xbe,0x38,0xd2,0x27,0xdd,0xd,0xc5,0xca,0x34,0x5,0x69,0xf7,0x5a,0xe0,0xe2, + 0xd3,0x8,0x9c,0xbd,0x1d,0xa1,0x41,0xbb,0x8e,0xe0,0xd4,0x62,0x23,0xf4,0xee,0x95, + 0x24,0x1b,0x53,0x4b,0xa2,0x63,0x46,0xa5,0x4a,0xc4,0x11,0x3d,0x3d,0x19,0xba,0x93, + 0x7a,0x77,0x71,0x37,0x86,0x8e,0x5e,0x28,0x13,0x12,0xca,0xb,0x46,0xce,0x83,0x24, + 0xe0,0xe2,0x6e,0x4,0xbd,0x7a,0x19,0x13,0x7b,0x69,0x44,0xc7,0x35,0xfe,0x22,0xfd, + 0xb3,0x25,0x8b,0x39,0xf0,0xec,0x67,0xac,0x37,0xfe,0x68,0x3b,0xbe,0xa1,0x8e,0x3f, + 0x44,0x7,0x8d,0x42,0x5f,0x7,0x65,0x8,0xeb,0x8c,0xfd,0x2b,0xd4,0x27,0x28,0x47, + 0xd6,0x79,0xbe,0x40,0xa1,0x2,0x87,0xa1,0x78,0xb1,0x15,0x44,0x3e,0xf6,0x43,0x79, + 0xbb,0x33,0x94,0x27,0x6d,0xdb,0xf2,0x7d,0x32,0x47,0x69,0x32,0x94,0xb1,0x89,0x87, + 0x42,0x5,0x9f,0x91,0x7c,0xca,0x43,0x70,0x8,0x47,0x7c,0x48,0x9,0xad,0x3f,0x8e, + 0x99,0x76,0xeb,0x66,0x42,0x79,0xe6,0xea,0x6a,0x42,0xaf,0x51,0x66,0xc6,0x91,0xfe, + 0xe8,0x8c,0x99,0x1c,0xfc,0xfd,0x37,0x8e,0xd1,0x1b,0x91,0x32,0x4b,0x60,0xf2,0x34, + 0xfd,0xe8,0x9f,0xf4,0xe0,0xf,0x1e,0x93,0x27,0x7f,0x7b,0x82,0x7a,0xc8,0xc3,0x9d, + 0xf7,0xa1,0xb1,0x5f,0x6a,0x5f,0x3f,0x11,0xca,0xd8,0xc6,0x53,0x59,0x2a,0x57,0x26, + 0x9e,0xf8,0xc9,0x3f,0x28,0x3f,0xb0,0xdf,0xda,0xd4,0x31,0x99,0xf6,0xef,0xff,0xa8, + 0x9c,0x0,0x5,0xf2,0xc6,0x11,0x1b,0x31,0x92,0xf6,0x3f,0x37,0xac,0xe7,0xdf,0x21, + 0x63,0xbf,0x3d,0x32,0x12,0xc7,0x76,0x78,0xf2,0xf,0x30,0x85,0xb0,0x50,0xe,0x66, + 0x93,0x7e,0xfc,0xca,0x95,0x1c,0x7d,0xd7,0xbc,0xff,0x80,0x4,0x4e,0x9d,0xe6,0xe0, + 0xe1,0x23,0x53,0x18,0x35,0x23,0x73,0xf3,0x87,0xc8,0x10,0xf1,0x13,0xbf,0xbf,0xc1, + 0x31,0x20,0x2f,0xcf,0x24,0x3a,0x5e,0xef,0xdc,0x9e,0xf0,0xc9,0x89,0xef,0x83,0x36, + 0x6b,0x8a,0xe3,0x60,0xbc,0x2e,0xc6,0x36,0x88,0x32,0xd4,0xb8,0x61,0x22,0x54,0xaa, + 0x10,0xf,0x8e,0xe,0xdb,0x89,0x3e,0xcc,0x43,0xec,0x6,0xdf,0x6f,0x3f,0x74,0x48, + 0x42,0xdf,0x37,0xa3,0x5c,0xe0,0xf8,0xf2,0xb6,0xad,0xfc,0xbb,0x2e,0xc,0x43,0x1e, + 0x1e,0x38,0xc8,0xf3,0xe5,0xfa,0x75,0x9,0x7c,0x20,0xfd,0xb4,0xcb,0x77,0xad,0xf4, + 0x66,0xbf,0xd2,0x8b,0x3f,0x32,0x1e,0x95,0x40,0x5d,0x84,0xf6,0x1e,0xfb,0xf,0xbd, + 0x7b,0x25,0x53,0xfb,0x84,0xbc,0x42,0x99,0xea,0xea,0xfa,0x13,0xba,0x77,0x4b,0xa6, + 0xba,0x87,0x9d,0x7b,0xb8,0x7d,0x81,0xd,0xbb,0x1c,0x49,0xbf,0xdd,0x1c,0x1e,0x3f, + 0xe2,0x28,0x61,0xbf,0xfd,0xcc,0x59,0xfe,0x7d,0x3b,0x8e,0x6f,0x1c,0x3e,0x22,0xa1, + 0xef,0x4c,0x71,0xbc,0x7,0xc7,0x36,0x6e,0xde,0xc4,0x3e,0xbc,0x9,0xc4,0xc6,0xe6, + 0x87,0x97,0x6f,0xf3,0x41,0xf7,0x0,0xfd,0xd9,0xf7,0xf4,0xe4,0xf,0x93,0x23,0x42, + 0x9b,0x7d,0x7d,0xe3,0x0,0xdb,0x1b,0x8e,0x7,0x21,0xa1,0x6e,0xf2,0x1e,0xf2,0x3, + 0x46,0x8f,0x4e,0x80,0x9,0x13,0xe2,0x0,0x7f,0xf,0xc,0xfc,0x4,0xbd,0x7d,0xdc, + 0x69,0x39,0xe7,0x6d,0x31,0x83,0x97,0x6f,0xac,0xe0,0xc3,0xfb,0xdc,0xf0,0xea,0x3f, + 0x33,0x78,0x1a,0x63,0x4,0x31,0x4f,0x24,0x94,0x5f,0xf,0x1e,0xf0,0x7c,0x7b,0xfe, + 0xcc,0x98,0xf2,0x11,0xfb,0xf0,0xaf,0xdf,0xe5,0x85,0x95,0xbb,0x73,0xe9,0xcc,0x17, + 0x45,0xfc,0x39,0x7c,0xf8,0x30,0xf4,0xec,0xd9,0x93,0xe8,0x3a,0x57,0x4a,0xb8,0x86, + 0x89,0x11,0x8e,0xc5,0xeb,0x83,0x3f,0xec,0x88,0x88,0x78,0xe3,0x8a,0x7d,0x88,0xc9, + 0x93,0xbf,0x53,0xa,0xd,0xfd,0x46,0xfa,0x14,0x9f,0x8,0x7d,0x24,0xfd,0xbe,0x17, + 0x44,0x87,0xdc,0x84,0xe9,0xd3,0xe7,0x40,0x8d,0xf6,0xa9,0xcb,0x3b,0x73,0x9d,0x29, + 0x5c,0xb9,0x6b,0x9,0x9,0x9,0x5,0x29,0xa1,0x8c,0xc4,0x7e,0xcf,0x27,0xbf,0x3f, + 0x7c,0x2e,0x37,0x8d,0x93,0x56,0xbe,0x28,0xe2,0xf,0xda,0x75,0xf4,0xd,0xd1,0x6f, + 0xc6,0xf5,0x43,0xb8,0x56,0x88,0xd5,0x3f,0xad,0xe3,0x63,0xca,0xe5,0xe9,0x6b,0xf5, + 0x45,0x8b,0x76,0xc1,0xb5,0x6b,0xef,0x88,0x4e,0x3d,0x4d,0x30,0x3a,0x25,0x97,0x55, + 0xec,0x1f,0x8b,0xf9,0x23,0xa4,0xfe,0x11,0x12,0x18,0xf7,0x97,0x29,0xa5,0xc1,0x53, + 0x75,0xf3,0xff,0x74,0xe1,0xf,0xae,0x3f,0x63,0xeb,0x8,0xd9,0x7b,0xf6,0xf4,0xe2, + 0xf,0x1e,0x38,0xcf,0xb,0xd7,0xc4,0x88,0xdb,0xb2,0x3a,0xfe,0x64,0x4,0x89,0xf9, + 0x83,0x6b,0xac,0x4e,0x9c,0x38,0x41,0xec,0xc0,0x7e,0xfa,0xae,0xb,0x79,0x84,0xef, + 0xfe,0xb2,0xf9,0x93,0x9a,0x3f,0x48,0x38,0x6,0x8d,0x72,0x84,0xe5,0x34,0x14,0x7f, + 0x2a,0x4a,0x33,0x2f,0x7f,0x90,0x70,0x5d,0x2f,0xca,0x91,0x21,0xf8,0x83,0xeb,0x45, + 0xb1,0xef,0x97,0x11,0xf3,0x52,0x94,0x11,0x8e,0x13,0xb2,0xb5,0x6f,0xc8,0x1f,0x2c, + 0x27,0xae,0xe5,0x13,0x12,0x86,0x8f,0x1c,0x39,0x32,0xc3,0xf9,0x93,0x15,0x29,0x9b, + 0x3f,0x19,0xcf,0x9f,0x85,0xb,0x17,0x7e,0xfc,0xfa,0xf5,0xeb,0x2f,0x72,0xab,0x6f, + 0xca,0x88,0x7d,0x4c,0x70,0xec,0x55,0xdf,0xfc,0xc1,0xb5,0x6,0xe8,0x6f,0x31,0xff, + 0x22,0x2b,0xd3,0xf3,0xe7,0xcf,0xe9,0x9a,0x63,0x7d,0xf2,0x7,0x8f,0xc0,0xc0,0x40, + 0xe9,0xf4,0xe9,0xd3,0x3f,0xa,0xd7,0x2c,0x65,0x55,0x42,0x39,0xc2,0x71,0x7c,0x7d, + 0xf2,0x87,0xc9,0x11,0xee,0xab,0xf1,0xbb,0xf0,0x8,0xe7,0x1b,0xe9,0x93,0x3f,0xbf, + 0x9b,0x1c,0xbd,0x7c,0xf9,0x52,0xce,0x23,0x7d,0xf1,0x7,0x8f,0xdf,0x49,0x8e,0x70, + 0x7c,0x1a,0x79,0x24,0xe3,0xcf,0x2f,0x73,0xeb,0x74,0x3d,0x50,0x8e,0x48,0xbf,0xe6, + 0x23,0xfa,0xd0,0x59,0x9d,0x36,0x6d,0xda,0xf4,0x91,0xc8,0x50,0x65,0x15,0xd5,0xa5, + 0x7b,0x89,0x32,0xf1,0x10,0x5c,0x4b,0x5,0xd7,0x36,0x82,0x6b,0x2b,0xc1,0xb5,0x99, + 0xe0,0xda,0x58,0x70,0x2d,0xa1,0xfb,0x93,0xa,0x32,0x88,0x16,0x64,0x10,0x23,0xc8, + 0xe0,0x93,0x20,0x83,0x78,0x41,0x6,0x49,0xa,0xae,0xcd,0xc,0x78,0x1d,0x2f,0xb8, + 0x8e,0x11,0x5c,0x47,0x2b,0xb9,0xe,0x56,0x72,0xcd,0xa5,0xe1,0x9a,0xa5,0x63,0xa5, + 0xe2,0x3a,0x5a,0xcb,0x6b,0x65,0xe9,0x70,0x7a,0xba,0xd6,0xb6,0x9c,0x31,0x82,0xeb, + 0x4f,0x82,0x6b,0xa1,0x3c,0xa4,0x12,0xc4,0xe0,0x74,0xbe,0x8e,0x16,0x5c,0xc7,0x8, + 0xae,0x3f,0x9,0xae,0xe3,0x5,0xd7,0xb2,0x82,0xa2,0x3c,0xe3,0x3e,0xa4,0x34,0x29, + 0x49,0xca,0x3e,0xa4,0x5c,0x4e,0x9,0x27,0x3e,0x70,0x1f,0xd2,0xdf,0x78,0x2f,0xd2, + 0xac,0x42,0x7a,0xb3,0x1f,0xda,0x1e,0xd9,0xf8,0x67,0x1a,0x32,0x88,0xc,0x30,0x3f, + 0xd8,0xd0,0xfe,0xd4,0xff,0x37,0x12,0xbe,0xff,0x30,0xa4,0xc,0x64,0xe3,0x6f,0x58, + 0xfc,0xd,0x2d,0x3,0xd9,0xf8,0x1b,0x1e,0x7f,0x43,0xca,0x40,0x36,0xfe,0x99,0x3, + 0x7f,0x43,0xc9,0x40,0x36,0xfe,0xe9,0x4b,0x6c,0x3e,0xac,0x26,0xf8,0x1b,0x42,0x6, + 0xb2,0xf1,0x37,0x8c,0x1c,0x28,0xda,0x47,0xc1,0x10,0x32,0x20,0xc4,0x1f,0xdf,0x13, + 0xe9,0xba,0xd6,0x34,0x9b,0x54,0x13,0xbe,0x47,0xbc,0x76,0xed,0x1a,0x9d,0x7b,0x80, + 0xbc,0x56,0xb5,0x5f,0x4d,0x46,0xca,0x0,0xcb,0xf,0xe5,0x93,0x7d,0xbf,0x20,0x9b, + 0xd2,0x87,0x2,0x3,0x3,0x61,0xcc,0x98,0x31,0x72,0x5d,0xa0,0x4a,0x7,0x64,0x94, + 0xc,0xb0,0xbc,0xd8,0xbc,0x18,0xdc,0x4b,0x1b,0xcb,0x89,0xf4,0xf7,0xdf,0x6b,0xe8, + 0x5a,0x20,0x71,0xb9,0x70,0x7f,0x6e,0xdc,0x5f,0x1a,0xdf,0x7f,0xe0,0xde,0xe6,0xe2, + 0xdf,0xf1,0x19,0xdc,0x6f,0x8,0xf7,0xd8,0xdb,0xb9,0x73,0x17,0x8d,0xa7,0x2c,0x2e, + 0x4b,0xb,0xe3,0x8e,0x1f,0xcf,0xef,0x5,0x70,0xe9,0xd2,0xc5,0x54,0x7b,0x80,0x33, + 0xc2,0xe7,0x31,0x1e,0x4b,0x57,0xdf,0xf1,0xd4,0xd5,0x87,0x95,0x4f,0x5d,0x5a,0xaa, + 0xea,0x99,0x2f,0x5f,0x3e,0x70,0x75,0xed,0xaa,0x91,0x1d,0xc8,0x8,0x19,0x60,0xf9, + 0x60,0x39,0x98,0xc,0xe0,0xda,0x77,0xcc,0x6f,0xf8,0xf0,0x61,0x69,0xaa,0x2b,0x8b, + 0x33,0x7a,0xf4,0x68,0x1a,0x8e,0x7b,0xc3,0x8b,0xe5,0x9,0xe3,0xe2,0xfe,0xe5,0x2c, + 0x2e,0xfb,0x36,0x8,0xc6,0x15,0xa7,0xcb,0x64,0xa,0x69,0xd2,0x24,0x3f,0x1a,0x57, + 0x9f,0xf1,0x30,0x5f,0x75,0xf5,0xc1,0xb2,0xaa,0x4b,0xb,0xaf,0x55,0xd5,0x13,0x65, + 0x60,0xe1,0xc2,0x5,0x99,0x42,0x6,0x82,0x65,0xfb,0x75,0x2a,0x92,0x81,0x7a,0xf5, + 0xea,0xa9,0xad,0x2b,0xf2,0x45,0xf8,0x1d,0xe,0xc6,0x6b,0x21,0xa6,0xc8,0x53,0xe4, + 0x7,0xfe,0x86,0xd7,0x62,0x62,0xe9,0xe1,0x33,0x4c,0xde,0x14,0xc5,0x43,0x62,0xe9, + 0xb2,0xfd,0xcc,0xf4,0x1d,0x8f,0x95,0x5f,0x5d,0x7d,0xd4,0xa5,0xa5,0xae,0x9e,0xc8, + 0x5b,0xe4,0x5d,0x66,0x97,0x1,0x4d,0xeb,0x8a,0xdf,0x27,0xc0,0xef,0x57,0x30,0x62, + 0x71,0xb0,0x8e,0xc2,0x36,0x85,0xbc,0xc4,0xb8,0x38,0xff,0x92,0x11,0xfe,0x8e,0xf1, + 0x90,0x58,0xbb,0x61,0x6d,0x31,0x2a,0xea,0x98,0x3c,0x1e,0x4b,0x17,0xf3,0x65,0x72, + 0x99,0x5e,0xf1,0x54,0xd5,0x7,0xe3,0xaa,0x4b,0x4b,0x5d,0x3d,0x11,0x7f,0xc4,0x32, + 0xb3,0xcb,0xc0,0xa0,0x41,0x3,0xd5,0xd6,0x95,0xf1,0x4c,0xcc,0x2f,0x94,0xd,0x61, + 0xbb,0xc2,0xba,0xa,0x79,0x2c,0x26,0x86,0x1,0x5e,0xf7,0xef,0x3f,0x40,0x2e,0x2f, + 0x8a,0xe2,0x32,0x7d,0xc2,0xd2,0xd4,0x47,0x3c,0x96,0x2f,0xb3,0x3f,0xca,0xea,0xa3, + 0x49,0x5a,0xf8,0x1b,0x93,0x7d,0x65,0xf5,0xc4,0x72,0x65,0x15,0x3d,0x80,0xbe,0xa0, + 0x3a,0xfe,0x32,0x5d,0x20,0xd4,0x9f,0xac,0x3d,0xb,0x7d,0x6,0xe6,0xf,0xa8,0xb3, + 0xb5,0xdd,0xba,0x75,0x97,0x87,0xa9,0xf3,0x43,0x30,0x4d,0x4d,0xe3,0x69,0x92,0xaf, + 0x22,0x3b,0xc0,0xec,0x97,0xb6,0x79,0x62,0xba,0xaa,0xe2,0xa0,0x3f,0x90,0x15,0x64, + 0x0,0xf3,0x53,0xd4,0x27,0x10,0xfa,0x36,0x9a,0xf8,0x47,0xcc,0xd7,0x32,0x94,0x3f, + 0xc8,0xe4,0x56,0x55,0xbe,0x4c,0x87,0x6b,0x52,0xf,0x4c,0x4f,0x2c,0x27,0x8a,0x7c, + 0x24,0x55,0x69,0x65,0x15,0x19,0xc0,0x3e,0x81,0x3a,0xdf,0x46,0x1b,0x5f,0xcb,0x10, + 0xfe,0xa0,0xa6,0xf9,0x6a,0x9a,0x27,0xb3,0x3,0x42,0x7b,0x81,0xb6,0x9f,0xa5,0xa7, + 0x2c,0x1d,0x71,0x5a,0x88,0x25,0xf2,0x3b,0xb3,0xcb,0x0,0xea,0x0,0x55,0xbe,0xd, + 0xe3,0x9d,0x3a,0x5f,0x8b,0xb5,0x13,0x75,0xfe,0x20,0xc6,0xc3,0x6f,0x34,0xaa,0x4a, + 0x13,0xcf,0x18,0x47,0x9d,0x9f,0x87,0x67,0xd4,0xdb,0xea,0xfc,0xb3,0x95,0x2b,0x57, + 0x68,0x94,0x16,0xe6,0xc9,0xea,0x22,0xf4,0x19,0xf1,0x9a,0xa5,0x27,0x94,0x25,0x55, + 0x3c,0xe9,0xd6,0xad,0x1b,0xf5,0x7,0xb2,0x82,0xc,0x60,0x39,0x95,0xf9,0x36,0x62, + 0x7f,0x40,0x91,0xcf,0xc0,0xc6,0x54,0xd0,0xd6,0x32,0x6c,0x15,0xa5,0x25,0x8c,0xc7, + 0x70,0x53,0xd5,0x96,0x98,0xdf,0xa8,0x2c,0x8e,0x30,0x2d,0x75,0x6d,0x5c,0x9d,0xf, + 0x2a,0x8e,0xa7,0xcc,0x16,0xb0,0x3a,0xa8,0xd2,0x8d,0xcc,0xc6,0x61,0x1c,0xb4,0x5, + 0x59,0x41,0x6,0x38,0xd,0xfc,0x1,0x4d,0xc7,0x88,0x34,0xf1,0x7,0x99,0x3f,0xa0, + 0xce,0xdf,0x42,0x3c,0xf4,0x99,0x96,0xa6,0xf1,0xf4,0x59,0x87,0xac,0x22,0x3,0x9a, + 0xfa,0x3,0xea,0xc6,0x54,0xd8,0xef,0x9a,0xc4,0xd3,0xd4,0xdf,0xd2,0x57,0x5a,0x9a, + 0xfa,0x78,0xcc,0x56,0xe9,0x2b,0x5f,0xee,0x37,0xf1,0x7,0xf0,0x1b,0xd5,0x78,0xaf, + 0x6a,0x4c,0x5,0xe3,0x7c,0xfb,0xf6,0x4d,0xa3,0x78,0xf8,0x3d,0x6c,0x75,0xfe,0x96, + 0x3e,0xd3,0xc2,0x77,0x37,0x9a,0xc6,0xd3,0x67,0xbe,0xb2,0x6f,0x4f,0xa6,0x7a,0x77, + 0xac,0xa,0xff,0x8c,0x94,0x1,0x2c,0xb,0x93,0x81,0xff,0xfd,0xef,0x7f,0xf2,0x7a, + 0x8b,0x9,0xeb,0xc9,0xf8,0x82,0xd7,0xca,0xc6,0x54,0xd8,0x3b,0x32,0x4d,0xe3,0x21, + 0xf,0x95,0xf9,0x5b,0xf8,0x9b,0xbe,0xd3,0xd2,0x26,0x9e,0x3e,0xf3,0xdd,0xbe,0x7d, + 0xbb,0x56,0xf8,0x67,0x80,0xc,0xd0,0x3c,0xb0,0x6c,0x6c,0x7f,0x69,0x2c,0x1f,0x5e, + 0x6b,0xb2,0xce,0x15,0xbf,0xc7,0x2a,0x26,0x5c,0x9b,0xaf,0x4b,0x3c,0xbc,0x57,0x14, + 0x2f,0x3d,0xd3,0xd2,0x34,0x9e,0xbe,0xf2,0x15,0xcf,0x1b,0xd1,0x4,0x7f,0x91,0xc, + 0x44,0xa5,0x17,0xfe,0x48,0x86,0x9e,0x57,0xf3,0xff,0x8d,0x34,0xc5,0x1f,0x9,0xbf, + 0x93,0xc0,0xe9,0x59,0x7,0x64,0x35,0xfc,0x71,0xf,0x5,0x43,0xcf,0xfb,0xd0,0x85, + 0xf4,0x81,0x7f,0x7a,0xe8,0x80,0xac,0x86,0x3f,0x96,0x95,0x33,0xfc,0xda,0x1e,0xad, + 0x48,0x5f,0xf8,0x8b,0xea,0x9e,0xa1,0xf8,0xb3,0xf1,0x1,0xd6,0x5f,0xc8,0xe8,0xdf, + 0xb3,0xf1,0x37,0x2c,0xfe,0x2c,0x5f,0x61,0x7f,0x21,0x23,0x7f,0xcf,0xc6,0x3f,0x1b, + 0x7f,0x45,0xf8,0x1b,0xd7,0xe5,0xc0,0xea,0xb6,0x11,0x14,0x3c,0x65,0x4,0xa6,0x35, + 0xd,0x8f,0x75,0x36,0xfe,0x19,0x8b,0x3f,0x62,0xcf,0xf0,0x47,0x32,0x34,0xd6,0xd9, + 0xf8,0x67,0x2c,0xfe,0x73,0x63,0x6,0x51,0x62,0x72,0x60,0x68,0xac,0xb3,0xf1,0xcf, + 0x58,0xfc,0xcb,0xd9,0x17,0x95,0xe3,0x8f,0xb6,0xc0,0xd0,0x58,0x67,0xe3,0x9f,0x79, + 0xfd,0xbf,0xd9,0xb3,0x67,0xd3,0x7d,0x66,0x75,0x21,0x36,0x76,0xff,0xff,0x15,0xff, + 0xac,0xde,0xff,0xf3,0xf2,0xf2,0xd2,0x9a,0xd7,0x42,0xc2,0x71,0x27,0x5d,0x65,0xe0, + 0x77,0xc0,0x3f,0xb3,0x90,0x18,0x7f,0x1c,0x13,0xd5,0xb4,0xd,0x2b,0xe0,0xa1,0x5a, + 0xc2,0xf4,0xd9,0x73,0x28,0x97,0xba,0xe8,0x8a,0x6c,0xfc,0xd3,0xf,0x7f,0x6d,0xf9, + 0x27,0x18,0x43,0xd7,0x49,0x6,0x34,0x21,0x94,0x81,0xdf,0xd,0x7f,0x55,0x73,0x15, + 0x54,0xe9,0xeb,0xf4,0xc6,0x9f,0xcd,0xaf,0xd0,0x94,0x70,0x1e,0x8e,0xb6,0xf8,0xd7, + 0xab,0x57,0x5f,0xeb,0x7c,0x7e,0x37,0xfc,0xd5,0x95,0xcb,0x50,0xf8,0x23,0x9e,0xe9, + 0x29,0x3,0xe5,0xca,0xd9,0xa5,0x39,0xfd,0x6c,0xfc,0xd3,0xf,0x7f,0x4d,0x49,0x17, + 0x39,0x51,0xd5,0xa6,0xb5,0xa1,0xcc,0x8c,0x7f,0x50,0x50,0x10,0x20,0x31,0xfc,0xa3, + 0xa2,0xa2,0x7e,0x21,0x2c,0x27,0xc6,0x9,0xe,0xe,0x52,0x58,0x26,0xfc,0x4d,0xd1, + 0x73,0xaa,0x88,0xd5,0x5f,0xdb,0xe7,0x74,0xc5,0x3f,0xad,0x32,0xa0,0x8b,0xdd,0xc8, + 0x1a,0xf8,0x7,0x52,0xfc,0xf0,0xbb,0xf4,0x48,0x6b,0xd6,0x6c,0xa0,0xdf,0x1b,0xf2, + 0xf,0x98,0x3,0xc3,0x47,0xfc,0x9,0x23,0x64,0x34,0x6c,0x98,0xf,0x84,0x84,0x84, + 0xc9,0x64,0x20,0xb5,0x2c,0x68,0x8b,0xff,0xd4,0xa9,0x7d,0x7f,0xa1,0x85,0xb,0x3d, + 0x60,0xe9,0x52,0xf,0xd8,0xb2,0x65,0x76,0xba,0xe1,0x6f,0x28,0xca,0xcc,0xf8,0x7, + 0x7,0x87,0x52,0x6c,0x3,0x3,0xe7,0x81,0xbd,0xfd,0x50,0x68,0xd0,0xc0,0x1b,0x8a, + 0x14,0x1d,0xb,0x5,0xa,0x4,0x42,0xd5,0x2a,0x7,0xc0,0xae,0xdc,0x7e,0x72,0x3e, + 0x8,0x56,0x56,0x53,0x20,0x3f,0x9,0x73,0x72,0x1a,0xf,0xbe,0xbe,0xc1,0x44,0x16, + 0x42,0xe5,0x32,0xa0,0xe,0x7f,0xac,0xe7,0xb4,0x69,0xfd,0xc0,0xdf,0xbf,0x6,0xe9, + 0x87,0x1b,0xc1,0xe0,0xc1,0x12,0x98,0xe8,0xcb,0xa5,0xa2,0xb1,0x63,0x39,0x18,0x33, + 0xd6,0x12,0x2,0x83,0xf3,0xc1,0x8c,0x99,0xd5,0x95,0xca,0x41,0x36,0xfe,0xfa,0xc1, + 0x3f,0x3c,0x7c,0x8e,0xb4,0x6f,0xdf,0xe0,0xa8,0x4a,0x95,0xbd,0xa1,0x44,0x89,0x75, + 0x50,0xa8,0xe0,0x79,0x30,0x96,0xdc,0x80,0x2,0xf9,0xfe,0x83,0x2,0x79,0x63,0x21, + 0x8f,0x79,0x2c,0xe4,0x30,0xfe,0xe,0x66,0x26,0x8c,0x62,0xe9,0xf7,0xf,0xf3,0x5a, + 0xdf,0x4,0xb,0x8b,0xb9,0xd0,0xb2,0xe5,0x70,0x22,0x7,0xb3,0x49,0x99,0xf8,0xbd, + 0x45,0x14,0x61,0xb5,0x6d,0xdb,0x6a,0x8,0xf,0x6f,0x46,0xe4,0x8b,0xc7,0x1b,0xbf, + 0xa3,0x19,0x3c,0x99,0x91,0x24,0x15,0xf1,0xbf,0xf1,0xf1,0x7c,0x46,0x49,0x60,0x88, + 0xb7,0x11,0xd1,0xb,0xad,0x61,0xed,0xda,0x39,0xd9,0xf8,0xeb,0x19,0xff,0x71,0xe3, + 0x82,0xa2,0x5c,0x3a,0x45,0x12,0xdc,0xd7,0x42,0xd1,0xc2,0x2f,0x29,0xde,0x88,0x35, + 0x52,0x1e,0x73,0xfe,0x5c,0x20,0x6f,0xca,0x3d,0xb,0x63,0xb2,0x60,0x6a,0xfc,0x2, + 0x2c,0xf3,0xec,0x27,0xbe,0xf1,0x38,0xf0,0xf4,0xf2,0xa5,0x63,0x63,0x8a,0x70,0x9f, + 0x30,0x31,0x5,0xef,0x99,0x33,0x39,0x98,0x3f,0x8f,0x27,0xbc,0x9e,0x35,0x4b,0x35, + 0x5,0x85,0xf0,0x32,0x31,0x86,0xe8,0x5,0x7f,0xff,0x9a,0xd9,0xf8,0xeb,0x9,0xff, + 0x81,0x3,0x43,0xa3,0x3c,0x3c,0xce,0x42,0xc3,0x6,0x4f,0xa0,0x62,0xf9,0x78,0x28, + 0x6d,0x13,0xb,0xa5,0x4b,0xc5,0x42,0x19,0xdb,0x38,0xa8,0x54,0x21,0xe,0x6a,0x54, + 0x4f,0xa0,0xdf,0x43,0x45,0xc2,0x6f,0x9f,0x22,0x61,0x58,0x45,0xf2,0x1b,0x93,0x9, + 0xa6,0xf,0xcc,0x73,0xdd,0x84,0xfc,0xf9,0x3,0x21,0x20,0x20,0xa5,0x8d,0xa2,0xde, + 0x1e,0x37,0x3e,0x1f,0xc5,0x10,0x71,0xc6,0xef,0xa3,0x2e,0x5d,0xcc,0xc1,0xea,0x55, + 0x1c,0x6c,0xdc,0x20,0x81,0xed,0xdb,0x79,0xc2,0xef,0xc5,0x32,0xc2,0xef,0x80,0xee, + 0xd9,0xc3,0x5f,0xe3,0x6f,0xf8,0x6d,0xd5,0x65,0x4b,0x38,0x88,0x88,0x4c,0xd1,0x9, + 0xe1,0xe1,0x35,0x89,0x2e,0xf8,0x33,0x1b,0x7f,0x1d,0xf1,0xf,0xb,0x3b,0x2f,0xd, + 0xb,0xdb,0x4a,0x74,0xf6,0x33,0xfa,0x9d,0x52,0xc4,0x17,0x71,0x65,0x78,0xe3,0xf7, + 0x6e,0x5b,0x3a,0x25,0xd3,0x73,0xb,0x72,0x6e,0xd1,0x3c,0x19,0x9c,0x64,0x44,0xbf, + 0x85,0x2b,0xe5,0x9f,0x41,0x79,0x11,0xea,0x3,0x53,0xa3,0x97,0x90,0x37,0x6f,0x24, + 0xf1,0xdd,0x36,0xc1,0xe1,0xc3,0xb3,0xe8,0x77,0x92,0xd7,0xac,0x4a,0xc1,0x1c,0xb1, + 0xdc,0xbe,0x8d,0xc7,0xf7,0xc8,0x51,0xfe,0x7c,0xe0,0x0,0xff,0x4d,0x5c,0xfc,0xde, + 0x29,0xbb,0x66,0xbf,0xe3,0x3d,0x12,0xca,0x2,0xa6,0xc1,0x64,0xc0,0x3f,0x90,0x83, + 0x61,0xc3,0xc9,0xd9,0xdf,0xd3,0xe0,0x78,0x66,0x35,0xfc,0x11,0xfb,0xf0,0xf0,0xc7, + 0xc4,0x4f,0x7b,0x7,0x9e,0x1e,0x49,0xd0,0xb6,0x4d,0xa,0xa6,0x88,0xb5,0xd4,0x21, + 0x99,0x86,0x21,0xd6,0x78,0xc6,0x6f,0x89,0xbb,0x76,0xf9,0x49,0xbf,0x63,0x8b,0x67, + 0xbc,0xc7,0x70,0x8c,0xc7,0xf4,0x41,0x25,0x81,0x3e,0xc8,0x9d,0xeb,0x25,0xd5,0x3, + 0x3b,0x76,0x98,0x10,0xdc,0x38,0x79,0xbb,0x46,0xdc,0xe5,0x6d,0x5c,0x86,0x33,0x7e, + 0xeb,0xf6,0xc4,0x29,0xe,0xce,0x5f,0xe0,0x9,0xaf,0x19,0x1d,0x3a,0xcc,0xcb,0x4, + 0x93,0x87,0xdd,0xbb,0x8d,0x60,0xd5,0xca,0x14,0x19,0x8,0x9,0x95,0x50,0x3f,0xb1, + 0x65,0xcb,0xcc,0xf9,0x9e,0x3f,0x33,0xe2,0x1f,0x19,0xf9,0x8d,0x60,0xff,0xa,0x86, + 0xc,0x49,0x84,0xfe,0xfd,0x13,0xa1,0x47,0x8f,0x14,0xac,0x11,0x57,0x24,0xc4,0x99, + 0x61,0x8e,0xd4,0xa5,0xf3,0x4f,0xe8,0xe1,0x96,0xcc,0x9f,0x7b,0xf0,0x67,0x26,0xf, + 0x4c,0x76,0x98,0xfe,0xb0,0x2d,0x15,0x4b,0xfd,0x7,0x63,0xc9,0x4d,0xe8,0xe4,0xd2, + 0x91,0x7e,0xdb,0x79,0xef,0x5e,0x1e,0x77,0xa6,0xd3,0x19,0xee,0xc,0xf3,0x3b,0x77, + 0x38,0x78,0xf8,0x80,0xa7,0x47,0xf,0x79,0xc2,0xb0,0x6b,0xd7,0xf8,0xdf,0x8f,0x9f, + 0xe0,0xe8,0x33,0xbb,0x76,0x19,0x51,0x9b,0x81,0xdf,0xd9,0x46,0x5b,0x82,0x3e,0x1, + 0x93,0x1,0x5f,0xdf,0xce,0x5a,0xf3,0xce,0x50,0xf4,0xe8,0xd1,0x23,0x83,0xe0,0x1f, + 0x19,0xf9,0x95,0x62,0xdf,0xaf,0x5f,0x22,0xfd,0xde,0x39,0x62,0x8a,0x38,0x76,0x90, + 0x61,0x8d,0xb8,0x22,0xb9,0x91,0x70,0xfc,0x4e,0x75,0xbf,0x7e,0x49,0x94,0xbc,0xbd, + 0x7f,0x25,0xc,0xc7,0x6f,0x5c,0x33,0x59,0x68,0xdc,0x38,0x49,0x2e,0x7,0xb6,0x25, + 0xbf,0x43,0xb1,0x22,0xb1,0x60,0x95,0xe7,0x3c,0x8c,0x1e,0x5d,0x47,0x26,0x3,0x32, + 0xbb,0x4e,0x64,0x81,0x61,0x8e,0x84,0x58,0x33,0xec,0x95,0xd1,0xcd,0x1b,0x1c,0x9c, + 0x3b,0xc7,0x11,0x7f,0x42,0x2,0xbb,0xff,0x91,0xc0,0x3f,0xff,0xf0,0x7a,0x0,0x7d, + 0x9,0x94,0x1,0xf4,0x7,0xb0,0xf,0x29,0xee,0x1b,0xb0,0xbe,0x66,0x56,0xa2,0xf4, + 0xc4,0x3f,0x3c,0xfc,0x73,0x14,0x7e,0x63,0x9b,0xb5,0x7b,0x86,0x3d,0xb6,0x63,0x94, + 0x5,0xf7,0x3e,0x49,0xf4,0x37,0x6f,0x6f,0x9e,0x46,0x8d,0x8a,0xa7,0x7a,0xc2,0xc7, + 0x27,0x5e,0x40,0x9,0x34,0x6c,0xe8,0x50,0x9e,0xf0,0x19,0xfe,0x5b,0xe7,0x3f,0xa1, + 0x59,0xb3,0x24,0x90,0x4a,0x93,0xa8,0xc,0x14,0x2d,0x8c,0xbe,0x40,0x2c,0x14,0x2b, + 0x3a,0x8f,0xb4,0x5b,0x63,0x2a,0x3,0xfb,0xf6,0x4b,0x68,0x5b,0xc6,0xef,0x9c,0xb, + 0xdb,0xbc,0x3a,0xc2,0xb8,0x17,0x2f,0xf1,0xdf,0x45,0xc7,0xef,0xc4,0xa3,0x1d,0x40, + 0x79,0x42,0x5f,0x42,0x28,0x3,0x9d,0x3b,0x9b,0x64,0x79,0xfc,0xf1,0x1b,0xda,0xe9, + 0x81,0x7f,0x78,0xf8,0x97,0xa0,0xa0,0xa0,0x6f,0x14,0x3b,0x6c,0xfb,0x4c,0x7f,0xb3, + 0xb6,0x8f,0xf8,0x23,0xf6,0xf8,0x3b,0xe2,0x3e,0x78,0x70,0x12,0x4c,0x98,0x10,0xb, + 0xf8,0xc,0x12,0xca,0x4d,0x50,0xd0,0x77,0xd9,0x75,0x2c,0xfd,0x9d,0xc9,0x0,0xea, + 0xa,0x7c,0x5e,0x2e,0x3,0xc4,0x2f,0xa8,0x60,0x17,0x47,0xfd,0xc2,0x5c,0x66,0x37, + 0x48,0x9c,0x6e,0x70,0xea,0xa4,0x4,0x6e,0xdf,0xe2,0xe0,0x3a,0xd1,0xe9,0xb7,0xef, + 0xf0,0x32,0x80,0xd8,0x3e,0x78,0x60,0xa,0x4f,0x63,0x4c,0xe0,0xcd,0xeb,0x5c,0x10, + 0x1f,0x9f,0x1f,0xe2,0xe2,0xf2,0xc9,0x28,0x3f,0x7c,0xfa,0x64,0x5,0xcf,0x9e,0x9a, + 0xc2,0x93,0xc7,0x26,0x70,0xf5,0x2a,0x7,0x47,0xa3,0x78,0x3a,0x78,0x88,0xf7,0x7, + 0xb0,0x6f,0x80,0x3e,0x25,0xda,0x2,0x3f,0xd2,0x37,0x1c,0x32,0x44,0x2,0x33,0x66, + 0x8c,0xcd,0xd2,0xf8,0x6b,0xab,0x3,0xb4,0xc0,0x3f,0xa,0x71,0xc3,0x76,0xcd,0xf4, + 0x3e,0xda,0xf8,0xd6,0xad,0x53,0xf0,0x6f,0xd3,0x3a,0x6,0x26,0x4e,0x8c,0xa5,0xf8, + 0x46,0x46,0x7e,0x21,0xf4,0x15,0x22,0x22,0x9e,0x40,0x6f,0xaf,0xbf,0xc1,0x6b,0xb4, + 0x1f,0xc,0xf5,0x59,0xc,0x7e,0x7e,0xa7,0xe4,0x72,0x30,0x68,0x50,0x12,0x4d,0x8f, + 0xc9,0x0,0xa6,0x83,0xe9,0xa1,0xc,0xa0,0xe,0xc8,0x6f,0x4d,0xfc,0x41,0xd2,0x2f, + 0x2c,0x54,0x70,0x27,0x6c,0xde,0x5c,0x95,0xea,0xfa,0x5b,0x44,0x6,0x10,0x4b,0x94, + 0x85,0xfb,0xff,0x72,0xf0,0xf9,0xb3,0x25,0xa5,0x2b,0xff,0x96,0x83,0x2d,0x87,0x6b, + 0xc2,0xc2,0x8d,0xc5,0x60,0xc6,0xdc,0xc2,0xb0,0x6b,0x6f,0x41,0x82,0x7f,0x1e,0x2a, + 0x13,0x28,0x7,0xf7,0xee,0xf1,0x76,0xe0,0xec,0x39,0x5e,0x6,0xf6,0xec,0xe6,0xfd, + 0x49,0x24,0x94,0x1,0xf4,0x9,0xc7,0x8e,0xe3,0xa0,0x6b,0xd7,0x42,0x94,0x87,0x59, + 0x19,0x7f,0x75,0x7b,0x47,0xeb,0x88,0xbf,0x5c,0x6f,0x23,0xd6,0x88,0x7d,0x9b,0xd6, + 0xbc,0xdf,0x87,0x78,0xf5,0x24,0xf6,0xa0,0x57,0xaf,0x87,0x14,0x5b,0x8a,0xfd,0xb4, + 0x37,0xd0,0x61,0xb0,0x3b,0x38,0xe,0x2b,0x7,0x45,0x2b,0xe7,0x81,0xc2,0x15,0xf2, + 0xd0,0xb3,0x6d,0xbd,0x7c,0x60,0xdf,0xbc,0x13,0x8c,0x1e,0x73,0x9a,0xc6,0x1d,0x39, + 0x32,0x41,0xee,0x4b,0xa,0x65,0x0,0x7d,0x81,0x8a,0xe5,0xe3,0x68,0x7f,0xc0,0xd4, + 0xf8,0x39,0x34,0x77,0xf2,0x85,0x7f,0xef,0x11,0xfd,0x7f,0x9c,0x23,0xfd,0x42,0xe, + 0xae,0x10,0x19,0x78,0xf1,0xdc,0x94,0xd8,0x83,0x22,0x30,0x7a,0x56,0xd,0x70,0xf2, + 0xa9,0x8,0xf5,0x7a,0x96,0x82,0xfa,0xbd,0x6d,0x78,0xea,0x65,0x3,0xb5,0xdb,0x96, + 0x81,0x29,0xb3,0x4b,0x51,0x39,0x48,0x48,0x28,0x40,0xe5,0x5,0x65,0x8,0x9f,0x65, + 0x7d,0x2,0x86,0x3f,0xea,0x0,0xec,0x13,0xf6,0xe8,0x61,0xc,0xec,0x1d,0x16,0xff, + 0x8e,0xca,0xf0,0xfe,0x9e,0x3a,0xc2,0xf9,0x12,0xbb,0x76,0xed,0xd2,0x49,0x6,0x34, + 0xc5,0x3f,0x30,0xf0,0x3b,0x6d,0xab,0x3,0xfa,0xa7,0xe0,0xcf,0xfa,0xf2,0xf5,0xea, + 0xfe,0x20,0x3a,0xfb,0xd,0xb1,0xdd,0x27,0x88,0x5e,0x3f,0x4,0xc1,0xb3,0xf7,0x42, + 0x9f,0x79,0x52,0x68,0x17,0x54,0x19,0xea,0xf6,0x28,0x9,0xd5,0x9c,0x8b,0x11,0x4c, + 0x4a,0x51,0xaa,0xde,0xa1,0x18,0x54,0x68,0x5a,0x8,0x2a,0x49,0x8b,0x43,0x9f,0x7e, + 0x7f,0x51,0x59,0x61,0x7a,0x5,0x7d,0x1,0xf4,0x7,0xd1,0xa6,0x38,0x34,0x49,0x82, + 0x1a,0xd5,0x12,0xe4,0x63,0x3,0xe6,0x39,0xf7,0x13,0x99,0x69,0x8,0x93,0x43,0x73, + 0x40,0x80,0x3f,0xfa,0xf2,0x1c,0x6c,0xd9,0x65,0xb,0x1e,0x93,0xdb,0x40,0x8f,0x5, + 0xb5,0xc0,0x69,0x8c,0x1d,0xd4,0xeb,0x55,0x4a,0x9e,0xf,0x92,0x7d,0x1f,0x1b,0x12, + 0x66,0x3,0x6e,0x9e,0x95,0xe1,0xdd,0xbb,0x3c,0x44,0x4f,0x58,0x51,0x19,0xb8,0x72, + 0x85,0x83,0xd3,0x67,0x38,0xda,0x87,0xdc,0x46,0xf0,0xc7,0x3e,0x1,0xfa,0x1,0x38, + 0xae,0x38,0x60,0xa0,0x11,0x78,0x79,0xd5,0x35,0x38,0xa6,0xba,0xca,0x81,0xb6,0x32, + 0xa0,0x9,0xfe,0xd8,0xdf,0x47,0xfb,0xcd,0xf0,0xc7,0x36,0x2a,0xec,0xb7,0x55,0x27, + 0x38,0xd9,0xdb,0xc7,0x90,0x76,0xbb,0xf,0x46,0x8c,0x5e,0x5,0xb3,0x8f,0x8e,0x85, + 0x46,0xfd,0x4a,0x43,0x97,0xc9,0xb5,0xa0,0xfd,0xf8,0x6a,0xa9,0x69,0x42,0x75,0xd2, + 0x36,0x79,0x6c,0x4a,0x56,0x2d,0x0,0x1,0xc1,0xa7,0xa8,0xc,0xa0,0x1e,0xc0,0xf4, + 0x99,0x6f,0x81,0x3a,0x0,0xc7,0x6,0xf2,0x59,0x7d,0x97,0xe9,0x80,0x17,0x50,0xb5, + 0xea,0x30,0xf0,0x1e,0x9a,0x87,0xb4,0x51,0x23,0x8,0xc,0x69,0x0,0xfe,0x9b,0x3d, + 0x21,0x64,0xd3,0x40,0xe8,0x1c,0xa2,0x20,0x1f,0x42,0xf5,0x7a,0x96,0xa4,0xf9,0xa0, + 0xbc,0xb9,0xc,0x74,0x26,0xf8,0xe7,0x81,0x37,0x6f,0x72,0x51,0xbf,0x1,0xfb,0x86, + 0x38,0x36,0xc0,0x74,0x0,0x8e,0xf,0x22,0xfe,0xd8,0xf,0xe8,0xd9,0xb3,0x92,0xc1, + 0xfb,0xf8,0x69,0x21,0x9c,0x9b,0xca,0xf6,0xa,0x54,0x27,0x3,0x9a,0xe0,0x8f,0xbe, + 0xdf,0xc4,0x89,0x71,0x72,0x7c,0x58,0xdb,0x47,0x7c,0x6a,0x92,0x3e,0x7b,0xe1,0x82, + 0xcf,0x49,0xdf,0xfd,0x4,0xd4,0xa9,0x3b,0x7,0x2,0x37,0xf4,0x87,0xd0,0xdd,0x7d, + 0xc1,0xeb,0x4f,0x29,0x4c,0xd8,0xee,0x42,0x69,0xe6,0xc5,0xbe,0x72,0xc2,0xf0,0x76, + 0x63,0xab,0x51,0x5d,0x8d,0xba,0xa0,0x41,0xeb,0xda,0xc4,0x47,0x78,0x43,0x64,0xe0, + 0x33,0xb5,0x3,0xa8,0x3,0x50,0xbf,0xa0,0xe,0xc0,0xbe,0x0,0xb3,0x1,0x38,0x3e, + 0x6c,0x69,0x39,0x15,0xbc,0x87,0xe5,0x81,0x2e,0x5d,0x8c,0xc0,0x6f,0xad,0x3b,0x2c, + 0xb9,0x3e,0x96,0xa6,0xc7,0xf2,0x12,0xe6,0x83,0xf7,0x18,0x5e,0xd7,0xad,0x24,0xd5, + 0x5,0x95,0x1b,0x97,0x84,0xad,0x7b,0xea,0x53,0x19,0x40,0x1d,0x80,0x7d,0x82,0xb, + 0x17,0x39,0xf9,0x98,0x2,0xe2,0x8f,0xfd,0x0,0xdf,0x49,0x1c,0x49,0xdf,0xd4,0xe0, + 0x18,0xea,0x83,0x70,0xe,0xb4,0x3a,0x19,0xd0,0x4,0xff,0x88,0x88,0xaf,0x41,0xd8, + 0x77,0x43,0xdb,0xcf,0xda,0x3e,0x8e,0xf3,0x21,0xfe,0xd8,0x57,0xaf,0x54,0x31,0x1e, + 0xcc,0x73,0x2d,0x87,0xa,0x15,0xdd,0x61,0xd1,0xb5,0x31,0xb0,0xf4,0xfa,0x78,0x98, + 0x71,0xc1,0x2b,0x15,0x1e,0x62,0x42,0x7c,0x50,0x6,0x6c,0x6a,0xe7,0x85,0xc0,0xc0, + 0x23,0xd4,0x57,0x44,0x3b,0xc0,0x64,0x0,0xf3,0x71,0x72,0x4a,0x6d,0x3,0x18,0xfe, + 0x3,0x6,0xd4,0x7,0xdf,0x2d,0x3d,0x8,0xfe,0xe3,0xd4,0xe6,0x83,0xd4,0x6e,0x5c, + 0x35,0x22,0x6b,0x45,0xc1,0xd5,0xbd,0x3d,0xf1,0x7,0xf3,0x11,0x1d,0x60,0x4e,0xfd, + 0x80,0xab,0xd7,0xf8,0xfe,0xa0,0x70,0x6c,0x18,0xf1,0x77,0x75,0xfd,0x3d,0xf0,0xd7, + 0x44,0x6,0x34,0xc5,0x1f,0x71,0x49,0xa5,0xfb,0x1d,0x52,0xc6,0xef,0xcd,0x73,0x5e, + 0x87,0xdc,0xe6,0xcb,0xa1,0x69,0x3b,0x4f,0xd8,0x7c,0x6f,0x1a,0x2c,0xbe,0x36,0x56, + 0x33,0x5c,0x88,0x1e,0xa8,0xee,0x5c,0x14,0x46,0x5,0x2c,0x96,0xf5,0x17,0x3e,0x13, + 0xfd,0x2b,0x1b,0x57,0xc4,0xfe,0x44,0x1b,0x3e,0xf,0x1c,0x17,0x36,0x15,0xe0,0xdf, + 0xad,0x7b,0x41,0xe8,0x37,0xbd,0x35,0x6c,0xba,0x3b,0x55,0x23,0x19,0xa0,0xb2,0x46, + 0xfc,0x10,0xd7,0xfe,0x6d,0x9,0xf6,0x39,0xe1,0xf5,0x6b,0xde,0x6,0x5c,0x15,0xd8, + 0x0,0xf4,0x1,0xa7,0x4e,0xe5,0x7e,0xab,0xf6,0xaf,0x89,0xc,0x68,0x82,0x3f,0xb1, + 0xfd,0x41,0x62,0xdb,0xdf,0x42,0xa6,0xff,0x8b,0x15,0x46,0xfc,0x6f,0x50,0xfc,0xeb, + 0xb4,0x69,0x4b,0xf1,0x3f,0xf0,0x78,0x5,0x4c,0x3b,0xef,0x91,0xa,0x3,0xa6,0x13, + 0xf0,0xcc,0x30,0x63,0xb8,0x78,0x8e,0x9c,0x4d,0xf1,0xc7,0x3e,0x21,0xc3,0x1f,0xdf, + 0x2b,0xa0,0xd,0xc0,0x3c,0xf8,0x7e,0x20,0x8f,0xff,0xe4,0xb0,0x22,0x14,0xff,0xe1, + 0xb3,0xbb,0xd3,0x7c,0x50,0x6,0xa6,0x5f,0xf0,0x54,0x98,0x17,0x96,0x85,0xfd,0x86, + 0xb2,0xd6,0xb2,0x7b,0x63,0x8a,0x3f,0xf6,0x7,0x85,0xf8,0xb3,0xf6,0x3f,0x79,0x32, + 0xc3,0xdf,0xc4,0xe0,0xbe,0x9c,0x3e,0x48,0xb8,0xcf,0x93,0x32,0x19,0xd0,0xc,0xff, + 0xd8,0x20,0x1c,0xd3,0x61,0xf8,0xb,0xed,0x3f,0xbe,0xeb,0x35,0x31,0x7a,0xe,0x12, + 0x6e,0x7,0x94,0x2f,0xdf,0x15,0x46,0x2e,0xec,0x2,0x67,0x5f,0xfe,0x3,0x1b,0xef, + 0x4e,0x49,0x85,0xb,0xc3,0x1c,0xcf,0x68,0x23,0x58,0x9b,0x45,0xdd,0xec,0x33,0x6a, + 0xb9,0xac,0x1f,0x10,0x27,0xef,0x63,0xa2,0xd,0xc0,0xf1,0x20,0x29,0xf1,0x31,0x8b, + 0x16,0xfa,0x15,0x7f,0x87,0x8e,0xb5,0x29,0xfe,0x98,0x8f,0x10,0x67,0xc4,0x1e,0xaf, + 0xf1,0x8c,0x32,0x28,0x94,0xb5,0x7e,0x3e,0xbd,0x29,0xfe,0xd8,0xf,0x60,0xe3,0x82, + 0x4c,0xff,0xb,0xed,0x3f,0x8e,0x3,0x66,0xa5,0xfe,0x5f,0x5a,0x64,0x40,0x13,0xfc, + 0x23,0x22,0xbe,0x50,0xfb,0x2f,0xc4,0xbf,0xa3,0xac,0x6d,0x56,0x20,0xfe,0x59,0xfe, + 0xbc,0xb1,0x60,0xc4,0x45,0x43,0xde,0xbc,0xc3,0xa1,0xcd,0xd0,0x9a,0x14,0x7f,0xa4, + 0xd,0x77,0x22,0xa8,0x2d,0x40,0xc,0xa6,0x9d,0x77,0xa7,0xe7,0xc5,0x4,0x7b,0xc4, + 0xc,0xdb,0x2d,0xe2,0x32,0x74,0xa9,0x33,0x29,0xc7,0x31,0x39,0xfe,0xa8,0x67,0xb0, + 0xfd,0xbb,0x13,0x3f,0xb3,0x83,0x33,0xef,0x67,0x14,0x2b,0x12,0x97,0xa,0xff,0x9e, + 0xbd,0x4c,0xa1,0x5e,0xb3,0xaa,0x30,0xef,0xf0,0x44,0x9a,0xcf,0xfe,0xc7,0xcb,0x49, + 0x9a,0x91,0x14,0x6f,0x4c,0x9f,0xe5,0x87,0x79,0x60,0x5e,0x54,0x6,0xce,0xf7,0x85, + 0xd9,0x73,0x7a,0xc2,0xb3,0x67,0xa6,0xd4,0xff,0x43,0xfc,0xf1,0x3d,0x2,0xbe,0x23, + 0x16,0xfa,0xff,0xf8,0x4e,0xb8,0xff,0x80,0xa,0xf2,0x31,0x20,0x43,0x8f,0xe5,0x68, + 0x43,0xca,0xd6,0x54,0xa8,0x92,0x1,0x59,0x78,0x94,0x2a,0xfc,0xc3,0xc3,0xbf,0xca, + 0xf1,0x47,0xbb,0x8c,0x63,0x3d,0x88,0xbf,0x3,0xf1,0x1,0x1a,0x10,0xfb,0x9c,0x3b, + 0xe7,0x73,0xb0,0x30,0x7f,0x9,0xa6,0xa6,0xeb,0xa1,0x7c,0x8d,0xda,0x10,0xbe,0xa7, + 0xbf,0x5c,0x6,0x90,0xf6,0x3d,0x5a,0x4a,0x31,0x42,0x79,0x58,0x78,0x75,0x14,0x6d, + 0xb7,0x78,0x8d,0xed,0xd6,0xd5,0xb3,0x13,0xf1,0xff,0xbf,0xca,0x75,0x3f,0x7b,0x87, + 0x80,0x79,0x61,0xfb,0xc7,0x3e,0x26,0xea,0x7f,0xb4,0xff,0x38,0x67,0x10,0xf1,0xf7, + 0x1e,0x66,0x9,0xad,0xdb,0x94,0x81,0x96,0xde,0xd5,0x68,0x5a,0xc2,0xbc,0x30,0x5d, + 0x24,0xc4,0x1d,0xf3,0x65,0x79,0x8d,0xf9,0xcb,0x13,0x36,0x6d,0x6c,0x0,0xf,0xee, + 0xf3,0x63,0x88,0xd8,0xf6,0x4f,0x9c,0xe2,0xfd,0x7f,0x36,0x3f,0x84,0xf5,0xff,0x47, + 0x8d,0x6a,0x91,0x65,0xc7,0xff,0xb4,0xd5,0x3,0xe4,0x3e,0x48,0x15,0xf6,0x2,0x1b, + 0x40,0x71,0x11,0xbe,0xf7,0x43,0x1b,0x80,0xfe,0x19,0xce,0xf5,0xb1,0xc8,0x85,0x76, + 0xe0,0x6,0xd5,0x1,0xe,0x6e,0x35,0x60,0xcd,0xf1,0x19,0xa9,0x70,0x11,0xd2,0xfa, + 0x3b,0xe1,0x14,0x97,0x9,0xf3,0xfa,0xc3,0xd8,0xb1,0xeb,0x52,0xb5,0x7d,0x86,0x3f, + 0xe6,0x83,0xf6,0x1f,0xd3,0x37,0x35,0xe2,0xfb,0x7f,0x36,0xb6,0xe3,0x9,0xfe,0x45, + 0xc1,0x7b,0xa8,0x15,0x74,0xeb,0x56,0x10,0xca,0x55,0xb4,0x93,0xdb,0x1b,0x45,0x84, + 0xf8,0x23,0xad,0xbd,0x1c,0x9,0x83,0xbd,0x87,0xc0,0xd5,0xab,0xd5,0xe9,0x7b,0x3, + 0x1c,0xff,0xc1,0xb6,0xcf,0x7c,0x3f,0x1c,0xff,0x41,0xfc,0xf1,0x1d,0x0,0xce,0x27, + 0xdd,0xb0,0x61,0xcd,0x6f,0x87,0xbf,0x12,0x19,0x50,0xd9,0xee,0x53,0xeb,0x0,0xfe, + 0x9d,0xff,0x0,0x81,0xc,0x74,0x94,0xf5,0xd1,0xf1,0x5d,0x4d,0xb1,0xc2,0xdf,0xe9, + 0x1c,0xcf,0x9c,0x39,0xf6,0x43,0xe1,0x22,0xae,0x50,0xb1,0x76,0x59,0xf0,0x9a,0x2b, + 0x95,0xfb,0x83,0xcc,0x57,0xc3,0x33,0x86,0x8d,0x9a,0xe9,0x1,0x23,0x47,0x4e,0x26, + 0x69,0x5e,0x1,0xf6,0x5e,0x9,0x75,0xbe,0x70,0xae,0x40,0xf3,0xe6,0x49,0xa4,0x7f, + 0x11,0x27,0x1f,0xff,0x69,0xef,0xdc,0x9,0x42,0x42,0x8b,0xc2,0xc4,0x49,0x39,0xe9, + 0x38,0x6d,0xe7,0xce,0x79,0xc1,0xb6,0x6c,0x29,0x68,0x35,0xb4,0x1a,0xd5,0x39,0x8a, + 0xf2,0x9a,0xb1,0x6b,0xc,0x8c,0x18,0x33,0x12,0x56,0xad,0x6a,0x9,0xc7,0x4f,0xf2, + 0xef,0xe,0x4e,0x9d,0x92,0xbd,0xb,0x94,0xcd,0xb,0x42,0xdf,0x1f,0xc7,0xff,0x42, + 0xc3,0x38,0xe8,0xe3,0x6e,0x4c,0x71,0xc7,0xef,0xb8,0xfd,0x6e,0xf8,0x8b,0x65,0x40, + 0x9d,0xde,0x17,0x1e,0x7e,0x7e,0xdf,0xa3,0xbc,0xbd,0x13,0xe4,0xba,0x99,0x8d,0x5, + 0xe0,0xd8,0x3f,0xfa,0x1,0x38,0x4e,0x63,0x61,0x8e,0xef,0x6c,0x5f,0x40,0xe,0xd3, + 0x75,0x50,0xb4,0x98,0x1b,0x54,0xa8,0xd8,0x10,0x8a,0x95,0x2f,0x8,0x52,0xb7,0xea, + 0xd0,0x61,0x54,0x7d,0xf0,0x8,0x6e,0x3,0x1d,0x6,0x36,0x1,0xc7,0x66,0xed,0xa1, + 0x41,0x43,0x37,0xe8,0xd8,0x71,0x2f,0x38,0x3b,0x1f,0xa3,0xf2,0x84,0x36,0xc5,0xb9, + 0x7d,0xb2,0x7c,0x8e,0x10,0xb6,0x7d,0xb9,0xee,0x27,0xed,0xbf,0x50,0xc1,0xb3,0x30, + 0x6e,0x82,0x1d,0xe9,0xa3,0xe7,0xa5,0xe3,0xf4,0xf8,0xae,0x6,0x65,0xa0,0x6b,0xd7, + 0xa,0xe0,0x20,0xad,0x4,0xc5,0x4a,0x17,0x85,0x52,0xd5,0xb,0x90,0x7c,0xea,0x41, + 0x77,0x7f,0x29,0x78,0x4,0xb5,0x1,0x87,0x36,0xd,0xc1,0xd3,0xcb,0x1,0x42,0x43, + 0x9b,0xc0,0xe6,0xcd,0xbc,0xbe,0x3f,0x7d,0x9a,0x4b,0x35,0x27,0x88,0xe1,0x8f,0xf3, + 0x48,0x71,0x6e,0xe8,0x9e,0xbd,0xc1,0xf2,0xb5,0xb,0xe9,0xbd,0x87,0x1f,0xdb,0x1f, + 0x35,0x23,0xf1,0x57,0x20,0x3,0x1a,0xb6,0xff,0x2f,0x41,0x6c,0x9c,0x1e,0xb1,0xc7, + 0x33,0xbe,0xb7,0xe7,0xc7,0xea,0x93,0xe9,0x38,0xd,0xea,0x80,0xfc,0x79,0x51,0xf, + 0xc4,0x11,0x7f,0xf0,0x38,0x98,0x93,0x3e,0x61,0x91,0x22,0x63,0xa1,0x94,0x4d,0xb, + 0x28,0x54,0xa8,0x31,0x14,0x2d,0xda,0x14,0x4a,0x94,0xf4,0x20,0x61,0x13,0x88,0x8e, + 0x18,0xf,0x2d,0x5b,0x46,0xd3,0x77,0x6,0xf4,0x3d,0xb2,0x33,0xaf,0x4f,0x3a,0xc8, + 0xc8,0xc9,0x89,0x97,0x29,0xc4,0xde,0xdc,0xec,0x3b,0x74,0xea,0x3c,0x11,0xa2,0x8e, + 0x73,0xb0,0x69,0x13,0x7,0xe1,0x91,0x44,0x57,0xfb,0xf3,0x73,0xfc,0xf1,0x9d,0x2d, + 0xfa,0xeb,0x5d,0xba,0xe4,0x22,0xb2,0x58,0x2,0x6a,0xd7,0xb1,0x86,0x46,0x8d,0xac, + 0xa1,0x4d,0x9b,0xe2,0x30,0x7c,0x4,0xff,0x4e,0x7,0xdf,0xed,0xe0,0xbb,0xde,0xdd, + 0xff,0xf0,0x73,0xc0,0x90,0x18,0xf6,0xc,0x7f,0x9c,0x5f,0xea,0xe9,0x69,0x4,0x7f, + 0x1f,0x8,0x4a,0xa1,0xfd,0x81,0xe9,0x46,0x9a,0xae,0x8f,0x16,0x61,0x45,0xef,0xd3, + 0x8a,0xbf,0xa6,0x7e,0xbf,0xf8,0x8,0xc,0x7c,0x43,0xe7,0x6f,0x20,0xf6,0xa3,0x47, + 0xf3,0xe3,0x81,0xa8,0xa7,0xf9,0x79,0x1b,0xbc,0xc,0xd8,0x96,0xe2,0x65,0xc0,0x22, + 0xd7,0x77,0xea,0xb7,0xe7,0xb5,0xba,0x9,0x45,0x8b,0xdc,0x86,0xdc,0xe6,0xcb,0xa8, + 0x3c,0x14,0x2b,0xb6,0x53,0x46,0x3b,0xc0,0xae,0xdc,0x25,0xa8,0x5a,0xe5,0x15,0xf5, + 0x23,0x31,0xd,0x24,0x94,0x85,0xe6,0xe4,0x5c,0xbf,0x5e,0x22,0xe4,0xb3,0xe6,0xc7, + 0xfd,0x72,0xe5,0x78,0x1,0xf3,0x16,0x54,0x84,0x63,0x44,0x67,0x6f,0xdf,0x21,0x21, + 0x7e,0x3c,0xf6,0xd5,0x88,0xbf,0x46,0xfa,0x6b,0x38,0x27,0xdc,0xc7,0x87,0x97,0x83, + 0xbe,0x7d,0x8d,0xa8,0xfd,0x1e,0x37,0x8e,0x97,0xd,0xb4,0xe7,0x38,0xa6,0x87,0xba, + 0x7d,0xf1,0x42,0x8e,0xfa,0xf9,0xeb,0xd7,0x49,0x52,0xcd,0x11,0xc6,0x77,0x40,0x88, + 0xff,0xe4,0x50,0xe,0x2,0x88,0xac,0xb4,0x19,0x9d,0x31,0x34,0x67,0x49,0xa0,0xda, + 0xf5,0xd1,0xc,0x23,0x47,0x47,0x47,0x39,0xb1,0x7d,0x2d,0x94,0xad,0x91,0x4e,0x4f, + 0xfc,0x51,0x7,0x90,0xbe,0x20,0x9d,0xc7,0xc3,0xfa,0xe9,0x54,0x7,0x38,0xf3,0xf8, + 0xa1,0xbe,0xa6,0x7d,0x42,0xe2,0xf,0x94,0xb6,0xf9,0x4e,0x75,0x37,0xca,0x1,0xb6, + 0x61,0xb,0xe2,0x1b,0x60,0x3f,0x91,0x11,0x8e,0x1b,0xe2,0x5c,0x3f,0x94,0x19,0xc4, + 0xda,0xc1,0x21,0x89,0xbe,0xf3,0x41,0x12,0x8e,0xfb,0xe3,0xb3,0x9d,0x3b,0xfb,0x53, + 0xdd,0x8d,0xed,0xff,0xd0,0x61,0x8e,0xf8,0xad,0x1c,0x6c,0xdd,0x4a,0x30,0x5d,0x22, + 0x81,0x79,0xf3,0x24,0xb4,0xed,0x4e,0xf2,0xe3,0xa8,0x2c,0x20,0xe6,0xa8,0x1b,0xb0, + 0x2f,0x1f,0x1e,0xc1,0xb7,0xfd,0xbf,0xe6,0x92,0xb8,0x8b,0xf8,0xb9,0xc3,0x5b,0xb7, + 0xf2,0xba,0x1f,0xfb,0xfd,0x98,0x1e,0xe2,0x8f,0xe1,0x18,0xaf,0xfb,0xf8,0x8c,0xc3, + 0x9f,0xe9,0x0,0x65,0xf8,0x1f,0x3d,0x7a,0x94,0x62,0xed,0xe3,0xe3,0x43,0xdf,0xed, + 0xa,0x75,0x37,0xdb,0x73,0x20,0xa3,0xf1,0xe7,0x65,0xe0,0xab,0x5c,0x6,0x58,0x5f, + 0x5d,0x38,0x6f,0xa3,0x79,0x73,0x9c,0xd7,0x9b,0x24,0x9f,0xf3,0x4f,0xe7,0xf6,0x12, + 0x2c,0x51,0x17,0x20,0xa1,0x3f,0x57,0xb9,0x62,0x2,0xc5,0x1d,0x7f,0xc7,0xb9,0x3e, + 0xe8,0xe7,0xe1,0xb3,0x98,0x46,0x93,0x26,0xfc,0xb3,0x68,0x4b,0xe8,0x5c,0xe0,0x9c, + 0x2f,0x61,0xf3,0xd6,0x7c,0xd4,0x77,0x43,0x3a,0x7d,0x96,0xa3,0x7a,0x60,0xef,0x3e, + 0x7e,0x3e,0x18,0xd3,0xe3,0xe8,0xc3,0xaf,0x5a,0x25,0xa1,0xe3,0x78,0xd8,0xde,0x69, + 0x9b,0x5f,0x2c,0x5b,0x23,0x20,0x9b,0x2f,0x8e,0x6d,0x1e,0xe7,0xfe,0xe1,0xbc,0x60, + 0x4c,0x83,0xf9,0x3,0x37,0x6e,0x9a,0xc0,0xf6,0xfd,0x26,0x19,0x86,0xbd,0x3a,0xfc, + 0x71,0x5f,0x6f,0xfc,0xd,0xf7,0xf6,0xc6,0x3e,0x9a,0x78,0x3f,0x10,0x94,0x9,0x4e, + 0x89,0x2d,0x48,0x6f,0xfc,0x65,0x32,0x20,0xf7,0xd9,0xfb,0xcb,0xfa,0xe9,0x14,0x7b, + 0x99,0xe,0x67,0x58,0x32,0x79,0xa0,0x73,0xc2,0xa5,0x49,0xf2,0xf5,0x1f,0xa8,0x27, + 0x10,0x67,0x86,0x37,0x9e,0x9b,0x37,0x4b,0xa6,0x71,0xe5,0xeb,0x2,0x88,0x6e,0x40, + 0xdd,0xd1,0xac,0xe9,0x5c,0xb8,0x7e,0xc3,0x94,0xfa,0xed,0xff,0xde,0xe3,0xe4,0xfd, + 0xb7,0xe8,0x13,0xbc,0x3c,0xe0,0x5c,0x1e,0x94,0x5,0xf4,0xe9,0x10,0x5b,0xa6,0xd3, + 0x11,0x6b,0x6c,0xe7,0x68,0xeb,0xf1,0xbc,0x6f,0x3f,0x3f,0x8f,0x18,0x31,0xc7,0x39, + 0x40,0xf8,0xfe,0x17,0xc7,0x80,0x9e,0x3f,0x33,0xa5,0xf3,0xc5,0x46,0xcc,0xc8,0x38, + 0xec,0xd5,0xe1,0xcf,0x7c,0x43,0xb6,0xb7,0x3b,0xca,0x0,0x9b,0xe3,0xc1,0xc6,0x78, + 0x5c,0x5c,0x5c,0x14,0xea,0x80,0x8c,0xc1,0xff,0x45,0x14,0xea,0x0,0x66,0x3,0xd0, + 0x7,0x40,0x19,0xc0,0x39,0xbc,0x6d,0x64,0xb8,0x33,0xfc,0xc5,0xb2,0xc0,0x48,0x18, + 0xce,0xe3,0x9f,0x44,0x65,0x81,0xae,0x7,0x40,0x3f,0xa2,0xe4,0x77,0xaa,0x2b,0xc6, + 0x8e,0x9d,0x1,0xf,0x1f,0x96,0xa4,0x73,0xbc,0x70,0xdc,0xe,0x9,0xc7,0x70,0x98, + 0x1c,0xa0,0x5c,0x9c,0x3b,0xcf,0xcb,0xc3,0xb1,0xa8,0x14,0xdd,0x80,0xb2,0x40,0xc7, + 0x76,0xc9,0x35,0xca,0xc8,0x91,0xa3,0x7c,0x3c,0x9c,0xfb,0xc3,0x70,0x7f,0xfb,0xc6, + 0x9c,0x62,0x7f,0xe9,0x4e,0x9e,0xc,0xc5,0x5e,0x13,0xfc,0x19,0xf6,0xec,0x8c,0xd8, + 0x23,0x61,0xfb,0xc7,0x33,0xfa,0x2,0x86,0xc3,0xff,0x35,0x9d,0xe7,0xc7,0xc6,0x6b, + 0x10,0x7b,0x66,0xbb,0x51,0x6,0x10,0x5f,0xbc,0x66,0xbe,0x3c,0xfa,0x7,0x6c,0x9e, + 0x30,0xa3,0xe,0x2,0x5f,0xbf,0x99,0x40,0x6f,0x38,0xc8,0x6c,0x7,0xda,0x7f,0x5b, + 0x9b,0xff,0xa0,0x51,0xcf,0x32,0x30,0xee,0x2f,0x13,0x88,0x8f,0xcf,0x4b,0xa8,0x0, + 0x3c,0x7d,0x6a,0x4a,0x89,0xc9,0xc1,0xad,0x9b,0xbc,0x2c,0xa0,0x1c,0xa0,0xc,0x8, + 0x9,0xdb,0x39,0x12,0x62,0x8e,0x71,0x30,0x3e,0x3e,0x87,0xef,0x7f,0x31,0x2d,0x43, + 0x61,0xaf,0x9,0xfe,0xec,0xdb,0xe,0xc2,0xef,0x3b,0xa0,0x1e,0x60,0x32,0x80,0x73, + 0x3c,0xc,0x81,0x7f,0x58,0xd8,0xa3,0x20,0xd6,0xf6,0x71,0x1c,0x80,0xbd,0xab,0x67, + 0xf8,0x23,0xd6,0xf2,0xb5,0x1e,0x6e,0xfc,0x35,0xf6,0xef,0x3d,0x3c,0xf8,0x79,0xde, + 0x48,0x9d,0x3b,0xfd,0x94,0x8f,0x21,0xa,0xe7,0x11,0x53,0x3d,0xd0,0x3c,0x49,0xee, + 0x43,0xe2,0x7a,0x42,0x27,0x37,0x4f,0xca,0x2f,0x94,0x81,0x4b,0x77,0x2c,0xe8,0xfb, + 0xfb,0x8f,0x1f,0x2d,0x29,0x86,0x4c,0x1f,0x30,0x59,0x10,0xcf,0xfb,0x66,0x78,0x33, + 0xe2,0x71,0xc7,0x39,0xc2,0x79,0x29,0xf6,0xab,0xf6,0xe6,0x32,0x8,0xf6,0x9a,0xd8, + 0x7f,0xfc,0x66,0xce,0xb5,0x6b,0xd7,0xe8,0xf7,0x73,0xc4,0x72,0x60,0x48,0xfb,0x8f, + 0xf3,0x80,0xd1,0xf6,0xb3,0xb9,0x40,0x6c,0xbe,0x1e,0x62,0x87,0x38,0xe2,0x3d,0xce, + 0xe3,0x44,0xbf,0x80,0x11,0xda,0x8,0xe1,0xb9,0xbf,0x4c,0x6e,0x3a,0xb9,0xfc,0x4c, + 0xb5,0x86,0x84,0xe9,0x2,0xe6,0x3,0xa0,0xe,0xb0,0x6b,0xd0,0x3d,0x15,0xdf,0x98, + 0x1c,0xf0,0x18,0xe2,0xdc,0x5e,0x22,0xb,0xaf,0xcd,0xe5,0x3a,0x41,0x8c,0x37,0xce, + 0xfd,0xfc,0xf8,0x31,0x8f,0x60,0x5e,0x78,0x5e,0x82,0x7b,0x4e,0x83,0xe1,0xae,0x9, + 0xfe,0x4c,0x7,0x7c,0xf8,0xf0,0x21,0x15,0xf6,0xec,0xfa,0xc9,0x93,0x27,0x6,0xf1, + 0xff,0x9,0xf6,0x52,0x9c,0x7,0x8c,0x73,0xc1,0xb0,0xed,0x33,0xbb,0x2f,0x9c,0x7, + 0x8e,0xb8,0x8a,0xd7,0x81,0xc,0x19,0x92,0x44,0xf5,0x5,0x3b,0xb3,0x70,0x26,0xb, + 0xa8,0xf,0x98,0xc,0xb1,0xf1,0x24,0xa6,0x3,0x5a,0x38,0xbd,0x51,0xca,0x43,0xc4, + 0x71,0xd5,0x9e,0x5c,0x2,0x6c,0x95,0x51,0x5e,0x1a,0x2f,0x33,0xe0,0xae,0x29,0xfe, + 0xe8,0xff,0xe1,0xef,0x88,0x35,0xea,0x3,0x3c,0x23,0xa1,0x5e,0x50,0x35,0x76,0x98, + 0xbe,0xf8,0x7f,0x8e,0xc2,0x77,0x75,0xc2,0x35,0x0,0xc,0x37,0x86,0x3f,0xea,0xf7, + 0xfe,0xfd,0x12,0xe9,0xbb,0x3c,0xb6,0xfe,0x83,0x9f,0xdb,0x93,0x42,0xf8,0xae,0x87, + 0xad,0x3,0x62,0x7a,0x1,0x65,0x80,0xf5,0x7,0x58,0x3f,0x1,0xdb,0x3f,0x8e,0x3, + 0xa2,0xf,0x60,0x68,0xbc,0x32,0x1a,0x7f,0x71,0x5f,0x90,0x11,0xca,0x80,0x21,0xc6, + 0xff,0xf8,0x35,0xbf,0x7c,0xdb,0x47,0xbc,0xd0,0xce,0xb,0x7d,0xfd,0x8e,0x32,0x3f, + 0xf,0x75,0x3f,0xce,0x15,0xe1,0x71,0xff,0xa,0x81,0x81,0x31,0x74,0xd,0x88,0xa7, + 0xe7,0x66,0xba,0xf6,0x63,0xd8,0xb0,0x53,0xb2,0xf9,0x9e,0x38,0xdf,0xe7,0xab,0x7c, + 0xbe,0xf,0x9b,0x5b,0x80,0xfe,0x23,0xc3,0xbf,0x12,0xb1,0xff,0x76,0xe5,0x1e,0x41, + 0xcf,0x11,0x1,0x6,0xc7,0xcb,0x50,0xf8,0x6b,0x4b,0xe9,0x85,0x3f,0xeb,0xf3,0x8d, + 0x1a,0x95,0x20,0x9f,0xa3,0x8d,0x7e,0x3e,0xb6,0x4f,0x1c,0xbf,0x45,0xdc,0xd0,0x1e, + 0x8c,0x1e,0x9d,0x40,0xb1,0x45,0x8c,0xfd,0xc3,0x36,0x41,0x9f,0x51,0x3,0xa0,0x4c, + 0xd5,0x12,0x50,0xa4,0xa2,0x15,0x94,0xad,0x56,0x2,0x6a,0x36,0xa8,0xa,0xad,0xda, + 0xc,0x21,0xf2,0xb0,0x8a,0xca,0x7,0x93,0x1,0x94,0x29,0xf6,0xce,0x57,0xea,0x90, + 0xb2,0xe,0x14,0xd7,0x16,0x34,0x6c,0xbe,0xc2,0xe0,0x78,0x19,0x12,0x7f,0xf4,0xf3, + 0x18,0x19,0x2,0xff,0x94,0xb6,0xcf,0xf7,0xf9,0x10,0xe7,0x8e,0x32,0x9c,0xd8,0xba, + 0x7f,0x9c,0x13,0x88,0xf8,0x45,0x44,0x3c,0x86,0xd0,0xb0,0xdd,0x30,0x60,0xf2,0x40, + 0x68,0x1b,0x58,0x49,0xe9,0xfa,0xf,0x7b,0xa7,0x9a,0xc4,0xe,0xec,0x95,0xcb,0x0, + 0x9b,0xf7,0x8b,0xef,0x1,0xd9,0x18,0x20,0xea,0x7f,0xa4,0x12,0xc5,0xf7,0x19,0x1c, + 0x2f,0x43,0xe0,0x2f,0x7e,0xf7,0xc3,0x48,0x95,0x1c,0xa4,0x7,0xfe,0xe1,0xe1,0x8f, + 0x83,0xf8,0xb6,0x9f,0x7a,0xe,0x18,0x1b,0xef,0xc7,0xf1,0x7b,0xc4,0xbf,0x6f,0xdf, + 0x6b,0x30,0xf7,0xaf,0x8d,0x30,0x77,0x5b,0x98,0x46,0xeb,0x3f,0x2a,0xd5,0xb2,0xa3, + 0xb6,0x81,0xad,0x1,0xea,0x2f,0x5b,0x13,0x2e,0x5c,0xff,0x85,0xef,0x9,0x3a,0x76, + 0x7c,0x2,0xb5,0x5a,0xd5,0x34,0x38,0x66,0x19,0x89,0xff,0xc8,0x91,0x23,0x29,0x3e, + 0x38,0xd6,0x2f,0x9c,0xd7,0xc5,0xc6,0xfe,0xd9,0x1c,0x9e,0x8c,0xc0,0x1f,0xe7,0x7f, + 0x7,0x6,0x7e,0x4b,0xb5,0x3e,0x87,0xe1,0xcf,0xd6,0xff,0x38,0x38,0x3c,0x21,0x58, + 0x1e,0x80,0xc5,0xfb,0xc3,0x60,0xf2,0x6e,0x2f,0x8d,0xd7,0x7f,0x74,0xed,0x35,0x48, + 0xbe,0xfe,0x83,0xf9,0x2,0xe8,0x47,0x60,0x1f,0x0,0xd3,0xb6,0x29,0x19,0x4b,0xf2, + 0x49,0x80,0x7a,0xf5,0x23,0xc,0x8e,0x59,0x46,0xe1,0xcf,0x7c,0x7f,0x5c,0xc3,0xc3, + 0xc6,0x7b,0xd8,0x5e,0xe1,0x78,0x66,0x63,0x7f,0x8a,0xde,0x1,0xa6,0x4f,0xfb,0xe7, + 0xe7,0x66,0x2b,0xc2,0x1f,0xc7,0x6a,0x91,0xea,0xd5,0x3d,0xf,0x41,0xc1,0xb3,0x60, + 0xc1,0x85,0xd1,0x5a,0xad,0xff,0x28,0x57,0xaf,0x88,0x5c,0x7,0xe0,0x1a,0x30,0xd4, + 0x1,0x68,0x3,0x18,0xfe,0xa8,0x3,0xf0,0x1d,0x92,0x73,0xfb,0xf,0xd0,0xde,0xab, + 0x9d,0xc1,0x71,0xcb,0x8,0xfc,0xb1,0xdf,0x8f,0xc4,0xee,0x71,0x4d,0x3f,0xc3,0x5f, + 0xa8,0x7,0x14,0xe9,0x80,0x74,0x6a,0xff,0xf2,0xf7,0xfe,0x42,0xfc,0xf9,0x7d,0x1a, + 0xf0,0x3d,0x6e,0x1c,0xd4,0xa9,0x73,0x9,0x26,0x6,0xe0,0x9c,0xce,0xa9,0x9a,0xaf, + 0xff,0x18,0xc7,0xaf,0xff,0x98,0x14,0xba,0x86,0xfa,0x1,0xe8,0x5f,0x60,0xfb,0x67, + 0x3e,0x40,0xca,0xde,0x40,0xf1,0x60,0x6b,0x73,0x9d,0xe8,0x80,0xdf,0xa7,0x1f,0xa0, + 0xe9,0xf8,0x2f,0x1b,0xff,0x63,0xf8,0xe3,0x3d,0xe2,0x97,0x91,0xe3,0xff,0x91,0x91, + 0xdf,0xa8,0x5f,0x3f,0x60,0x0,0xbf,0x2e,0x3,0xf1,0x69,0xd7,0x36,0x19,0x1a,0xd8, + 0x27,0x42,0x81,0x7c,0x71,0x50,0xbc,0x68,0x1c,0x94,0x29,0xb3,0x1c,0x3a,0xd,0x48, + 0x59,0xff,0x31,0x5d,0x84,0xbf,0x70,0xfd,0xc7,0x52,0x36,0x27,0x7f,0x47,0x27,0xea, + 0x13,0x7a,0x8d,0xf6,0x5,0xcc,0x83,0xad,0x31,0xc4,0xf4,0x9d,0x9a,0xf3,0xe3,0x80, + 0x35,0xab,0xff,0xa0,0x7d,0x80,0xaa,0x55,0x4f,0x80,0xbd,0xfd,0xff,0x2f,0xfc,0x85, + 0x63,0x7e,0x78,0xcd,0x6c,0x81,0xa1,0xf0,0xc7,0x3e,0x1a,0xca,0x0,0x8e,0xf9,0xb9, + 0x74,0x4c,0x86,0x5a,0x35,0x13,0x21,0x4f,0xee,0x38,0x4a,0x16,0xe6,0xcb,0xa1,0x4c, + 0xc5,0x66,0xe0,0xb3,0xd8,0x95,0xce,0xbd,0x65,0xf3,0xfb,0x53,0xf0,0x1f,0x27,0xc3, + 0x7f,0x1c,0x2c,0xb9,0x96,0xb2,0x66,0xb,0xfd,0xc1,0xbe,0x23,0x82,0xe4,0xf8,0xb3, + 0x79,0x85,0x88,0x3f,0xae,0xff,0x43,0x1d,0x83,0xeb,0xb,0x1b,0x36,0x3c,0x9,0x75, + 0xeb,0xcd,0xd5,0x3b,0xe,0xed,0xbc,0x25,0xd0,0xa1,0x9f,0xb1,0x9c,0x32,0x3,0xfe, + 0x4c,0xff,0x33,0xec,0x85,0x63,0xff,0x68,0xb,0x50,0x6,0x32,0x52,0xff,0x23,0x36, + 0x6c,0xaf,0x16,0x86,0x3f,0x6b,0xff,0x96,0x4,0x7b,0x33,0x93,0x38,0x30,0x91,0x1c, + 0x87,0xe2,0x25,0x7a,0x40,0x8b,0xa1,0x7f,0xc8,0xe7,0x5f,0xd3,0xb5,0x17,0x4,0x6b, + 0xc4,0x9c,0x5f,0x93,0x33,0x8e,0xae,0xc5,0x40,0xd9,0x60,0xf2,0x31,0x64,0x95,0x13, + 0x84,0x44,0xfe,0x2d,0xc7,0x9f,0xf5,0x2f,0x70,0xed,0x9f,0x93,0x6c,0xff,0xc0,0x7a, + 0x75,0x88,0xe,0x20,0xf6,0xa5,0x68,0xb1,0x9,0x7a,0xc7,0xde,0xd5,0x35,0x7,0xf4, + 0xea,0x65,0x42,0xfa,0x2e,0xc6,0xf4,0xdc,0xa9,0x57,0xc6,0xcc,0x3,0xd1,0xc4,0xff, + 0x13,0x7e,0xdf,0x5d,0x28,0x3,0xac,0x5f,0x98,0x51,0xfe,0x1f,0xc1,0x26,0x48,0xdc, + 0xfe,0x11,0x7f,0xb4,0xcf,0x5,0xf3,0xc7,0x53,0xfc,0x73,0x9a,0xc6,0x81,0xa5,0xc5, + 0x5f,0x50,0xf2,0x8f,0xc2,0x10,0xb1,0x77,0x40,0xaa,0x79,0xf8,0xb8,0xf6,0xe3,0x0, + 0x5d,0xa3,0x33,0x85,0xfa,0x6,0xc2,0x75,0x5b,0x6d,0x6,0xd7,0x97,0xf9,0x7f,0xbc, + 0x8f,0x81,0xf8,0xd3,0xbd,0x45,0x64,0xf8,0xa3,0xfe,0xc7,0xf6,0xdf,0xa8,0xe1,0x5b, + 0x82,0xff,0xc4,0x74,0xc1,0x7e,0xd4,0x28,0x8e,0xce,0x19,0x44,0xc2,0x7b,0xfc,0xcd, + 0x90,0xf8,0x33,0x1d,0xc0,0xde,0x1,0x9,0xf1,0x67,0xe1,0xd8,0x3f,0xcc,0xa8,0xfe, + 0x1f,0xe2,0x1f,0x1c,0xfc,0xfd,0x17,0xfd,0x8f,0x6d,0x13,0xd7,0xff,0xe4,0x91,0xe9, + 0x80,0x5c,0x39,0xf6,0x43,0x91,0x22,0x5d,0xc0,0xbe,0x6b,0x39,0xf8,0xfb,0xc4,0x4c, + 0xa5,0xeb,0x32,0x10,0x7b,0x94,0x81,0x91,0x8b,0xbb,0xc0,0xf0,0x51,0xb3,0x69,0xff, + 0xcf,0xc7,0xe7,0x7,0xf1,0xfd,0xf8,0xf7,0xc4,0xc,0x7f,0x9c,0x53,0x8a,0xbe,0x5f, + 0x19,0xdb,0x78,0xa8,0x60,0x77,0x47,0x6f,0xf8,0x77,0xe8,0x67,0x44,0xb1,0x47,0xc2, + 0x79,0xa3,0xb8,0xe6,0xf,0x9,0xe7,0x7f,0xe2,0x7d,0x46,0xd8,0x1,0x4d,0xc6,0x7f, + 0x18,0xd6,0x62,0x62,0xbe,0x41,0x6,0xe2,0x2f,0x15,0xda,0x0,0xf4,0x1,0x85,0x7b, + 0x37,0x56,0xae,0xf4,0x83,0xe2,0x8f,0x64,0x6b,0xbb,0x1e,0xa,0x15,0x69,0x6,0xc5, + 0xab,0x5a,0x41,0xdf,0xbf,0x1c,0x95,0xae,0xff,0xe8,0x3f,0xbf,0x39,0x74,0xed,0xdb, + 0x99,0xc8,0xd3,0x59,0x18,0x33,0x3a,0x3e,0x55,0xdf,0x2,0xb1,0x67,0xf3,0x0,0x70, + 0xe,0x50,0xa5,0x8a,0x9,0xa4,0x9f,0x71,0xb,0xea,0xd5,0x73,0x20,0xfa,0xd9,0x58, + 0xe7,0xf6,0x89,0xcf,0x75,0xea,0x6d,0x4c,0x70,0x37,0x49,0x85,0x3d,0xe2,0x1e,0x39, + 0x85,0x27,0xc,0xc3,0xdf,0x32,0x3,0xfe,0x8c,0x10,0x6f,0x46,0xea,0xe2,0xa6,0xd7, + 0xf8,0x3f,0xe2,0xef,0xeb,0x1b,0x27,0xc7,0x9f,0xad,0x1,0x6c,0x2e,0xf3,0xd3,0x11, + 0x27,0xc4,0x3f,0x87,0xf1,0x4b,0x28,0x59,0x72,0x3d,0x94,0x28,0xd9,0x1e,0xa,0x97, + 0x2e,0x5,0x5,0xcb,0x58,0x50,0x7d,0xe0,0x3c,0xaa,0x2e,0x74,0x99,0x64,0xf,0x4d, + 0xdc,0x2b,0x40,0xfd,0xe,0x95,0xc1,0xde,0xd1,0x15,0xa4,0x8e,0x53,0xa1,0x69,0xd3, + 0xe3,0x34,0x2d,0xb6,0xf,0x24,0xd5,0xfb,0xb2,0x34,0x59,0xdb,0xc7,0xb4,0x6d,0x4a, + 0xdc,0x6,0x77,0xf,0x13,0x19,0x76,0x84,0xba,0x9a,0x50,0x2c,0xb1,0x2d,0xab,0x93, + 0x7,0x8c,0x93,0x82,0xbb,0x29,0x9d,0x27,0x8e,0x38,0x23,0xee,0x48,0x38,0x7f,0x18, + 0xd7,0x7f,0xd1,0x35,0xc0,0x41,0xbc,0xd,0xc8,0x4c,0xf8,0x6b,0x43,0xe9,0x88,0xbf, + 0xdc,0x6,0x8,0x75,0x80,0xb8,0xad,0x32,0x3d,0x50,0xa4,0xd0,0x45,0x22,0x7,0x1b, + 0xa0,0x68,0xd1,0xbe,0x90,0xbf,0x40,0xb,0xc8,0x63,0xd5,0x84,0x9e,0xf1,0x1e,0xf5, + 0x78,0xe1,0xc2,0x21,0x50,0xb9,0xf2,0x29,0x82,0xf3,0xdb,0x54,0x6b,0x8a,0x79,0x9f, + 0x2f,0x89,0xda,0x15,0x4c,0xf,0xfb,0x97,0xf9,0xf3,0xbe,0x24,0x78,0xf7,0xa5,0xf3, + 0xba,0x11,0x37,0xd6,0x46,0xe5,0xb2,0x20,0x93,0x7,0xa5,0x24,0x8b,0x83,0xb8,0xe2, + 0x5a,0x1,0x5c,0x3b,0x84,0xed,0x1e,0xd7,0x7b,0xe1,0xba,0x1f,0xb6,0x7f,0x38,0x9e, + 0xf1,0xde,0x23,0x13,0xd8,0xff,0xcc,0x86,0xbf,0x50,0x7,0xa0,0xf,0x80,0x32,0xd0, + 0x53,0xb6,0x7,0x28,0xca,0x0,0xce,0xdb,0xa3,0xef,0x6c,0x2b,0x24,0xc8,0xfd,0x1, + 0x24,0xc4,0xe,0x65,0xa1,0x6c,0xd9,0xe3,0x50,0xa2,0xd8,0x21,0x28,0x5f,0xee,0x32, + 0x94,0xb7,0xbb,0x4c,0xfa,0xf4,0x6f,0x69,0xff,0xe,0x65,0x87,0xc9,0x10,0xce,0x1b, + 0x67,0xef,0x14,0xb0,0xed,0xb3,0xb1,0x85,0x42,0x5,0x2f,0x10,0x5c,0x6a,0xc9,0xf7, + 0xec,0xd,0xd,0xe5,0xbf,0xf1,0x21,0x5c,0xf7,0x81,0xd8,0x22,0x61,0xfb,0xe6,0xcf, + 0xfc,0x35,0xbb,0xc7,0x78,0x18,0x1f,0xbf,0x1,0x80,0xcf,0x23,0xce,0xb8,0xaf,0xb8, + 0x70,0xdf,0x78,0x26,0x3,0xa3,0x23,0xd2,0x17,0xfb,0x2c,0x8c,0x3f,0xd5,0x1,0xac, + 0x2f,0x80,0x3a,0x80,0xcd,0x1,0x62,0xfe,0x3a,0xf6,0xd7,0xd1,0x67,0xc7,0xb9,0xfe, + 0x4c,0xe,0xf0,0x8c,0x38,0x22,0xa6,0xd8,0xae,0x1b,0xc8,0xf6,0x87,0x67,0xf3,0xc2, + 0xf9,0x33,0x8f,0x3b,0xfe,0x86,0xf1,0xf0,0x79,0xec,0x5b,0x16,0x2b,0xf2,0x1f,0x91, + 0xb3,0x46,0xf2,0x7d,0xfe,0x71,0x2d,0x7,0xce,0xed,0x67,0xdf,0x7d,0x40,0x9b,0x8d, + 0x3a,0x9b,0x7d,0xf3,0x5,0xdb,0x35,0xb6,0x6f,0x9f,0x51,0x5,0xa8,0x3f,0x8f,0x98, + 0xe3,0x6f,0xb8,0x36,0x84,0x7d,0x43,0x0,0x71,0xc7,0xb4,0x70,0x8e,0x38,0x62,0x8e, + 0x7b,0x0,0x20,0x5d,0xbf,0xce,0xc1,0xe5,0xcb,0x1c,0xf4,0x9f,0x9c,0x8d,0xbf,0x2a, + 0x1d,0x20,0xb4,0x3,0xcc,0x67,0xeb,0x20,0xf7,0xd9,0x93,0xe4,0xfd,0x2,0xc4,0x91, + 0x8e,0xd,0xda,0xf2,0x78,0xa2,0x5c,0x34,0x90,0x7d,0x7,0x82,0xbd,0x37,0x96,0x4a, + 0x53,0xde,0x23,0x32,0xfc,0x51,0xef,0x33,0x99,0x29,0x5d,0x66,0x39,0xe9,0xfb,0xf0, + 0xeb,0x35,0xf6,0xef,0x4f,0xd9,0xb7,0x95,0xee,0xdd,0xba,0x92,0x93,0xaf,0xf7,0x40, + 0x5c,0x91,0x70,0xbd,0x17,0xf3,0xe5,0xf0,0x1a,0xe5,0x64,0x9e,0xec,0x1b,0x2,0x18, + 0x1f,0x9f,0x63,0x6b,0x41,0x18,0xe1,0x3e,0x60,0x77,0xef,0x72,0xf0,0xe5,0x8b,0x15, + 0x44,0x9d,0x37,0x4d,0x77,0xec,0xb3,0x38,0xfe,0x52,0x66,0x7,0xd8,0x3c,0x3e,0x36, + 0xcf,0x57,0xe8,0xf,0xb4,0x70,0x4a,0xe9,0x1f,0x32,0xcc,0x85,0xeb,0x3f,0x5a,0x38, + 0xf1,0x36,0x83,0xd9,0xe,0x26,0x3,0x88,0x3d,0x2f,0x2f,0x2f,0xa1,0x66,0xcd,0x43, + 0xb0,0x61,0x43,0x1d,0x8a,0xd,0xd2,0x89,0x53,0xfc,0xba,0x6d,0x5c,0xeb,0xc1,0xf6, + 0x70,0xa6,0x7b,0xb8,0xca,0xf6,0xf1,0x45,0x5a,0x23,0x23,0x5c,0xf7,0xc3,0xd6,0xfe, + 0xb0,0xbd,0xe3,0x53,0x7d,0x27,0x82,0xe0,0x1e,0x7d,0x9c,0xdf,0x3,0xee,0xf1,0x23, + 0x1e,0xfb,0x84,0x84,0x82,0x30,0xee,0xaf,0x6c,0xfc,0x35,0x95,0x1,0x9c,0xb,0xc4, + 0xd6,0x3,0xb3,0x35,0xdc,0x6c,0x7e,0x3f,0xe2,0xda,0xb2,0x45,0x6a,0xbc,0xe9,0x37, + 0x41,0x5a,0xf0,0xef,0xe,0xda,0xc8,0xbe,0xb,0x81,0xe7,0xb6,0x32,0xc2,0x38,0x38, + 0xa6,0x88,0xe3,0x3d,0x36,0x25,0x1f,0xc0,0xfc,0xf9,0x8e,0x74,0xcf,0x5e,0xdc,0xab, + 0xed,0xee,0x1d,0x1e,0x27,0xc4,0xeb,0xe4,0x69,0x4e,0xbe,0x76,0x4f,0xf8,0xad,0x17, + 0x61,0x9b,0xc6,0x7b,0xf6,0x3d,0x90,0x3,0x7,0x52,0xda,0x3c,0x3e,0x87,0x84,0xba, + 0x1e,0x65,0xea,0xc5,0xb,0x53,0x8a,0x3b,0xd2,0xe5,0xbb,0x56,0x19,0x82,0x7d,0x56, + 0xc7,0x5f,0x28,0x3,0xe2,0x3e,0x1,0xeb,0x1b,0xa,0xd7,0x7a,0xe0,0x58,0x11,0x92, + 0x30,0x8c,0x11,0x8b,0xcb,0xce,0xad,0x5b,0x25,0x81,0x73,0xfb,0x38,0x98,0x3a,0x75, + 0x23,0xc5,0x4,0xdb,0x25,0xe2,0x2e,0x24,0xc4,0xd,0xf1,0x43,0x59,0xc0,0x36,0x8c, + 0xb8,0xd2,0x6f,0xbd,0x8,0xf0,0x67,0xf7,0x78,0xc6,0x38,0xa7,0xce,0x70,0x70,0xe6, + 0x2c,0x27,0xd7,0xf5,0xc2,0x36,0x9f,0xd1,0xd8,0xff,0xe,0xf8,0x8b,0x65,0x80,0xf9, + 0x84,0x6c,0x8c,0x50,0x28,0xb,0x42,0x99,0x60,0xf7,0xac,0xf,0x81,0x67,0x21,0x61, + 0x3a,0x38,0x1e,0x8c,0x3c,0x42,0x5d,0xcc,0x64,0x0,0xdb,0xa9,0x32,0x39,0x60,0x84, + 0xbe,0x1b,0x93,0xb,0x61,0x38,0xb3,0x1f,0xec,0xb9,0x77,0xef,0xcc,0xe5,0xb8,0x23, + 0xad,0xde,0x6b,0x9e,0xa1,0xd8,0xff,0x2e,0xf8,0xa7,0xc8,0xc0,0xd7,0x28,0xe1,0xf8, + 0x90,0x22,0x62,0x78,0xb,0x9,0xb1,0xc6,0x67,0x18,0x61,0x1a,0x38,0x16,0x2c,0xe6, + 0xd5,0x99,0x6b,0x29,0x78,0x21,0x76,0x48,0x62,0x59,0x50,0x47,0xec,0x39,0x21,0xee, + 0x98,0x6e,0x46,0xd9,0x7b,0x4d,0xf1,0x97,0x4a,0xa5,0xa,0xe7,0xfc,0x29,0x23,0x43, + 0xe3,0x2f,0x94,0x3,0x7e,0x1e,0x17,0x2f,0x7,0x88,0xad,0x98,0x84,0x38,0xb,0x9, + 0x9f,0x43,0xfa,0xfb,0xef,0xab,0x50,0xba,0x74,0x2d,0x85,0xfc,0x42,0x9c,0x84,0x72, + 0xc0,0xf4,0x2,0x23,0x86,0x2f,0xea,0x9,0x24,0x76,0x2f,0xd4,0xf1,0xec,0x19,0xd4, + 0xf5,0x19,0xbd,0xde,0x57,0x53,0xfc,0x31,0x8c,0x7d,0xc3,0x83,0xad,0xf7,0xc6,0x6b, + 0x45,0x7b,0xbb,0x65,0x26,0xfc,0xd9,0x11,0x11,0xf1,0x5f,0x14,0x93,0x3,0x45,0xc4, + 0x7e,0x13,0x62,0x8e,0xc4,0xca,0x8f,0x65,0x52,0xc7,0xbb,0x25,0xdb,0x7f,0x95,0x5, + 0x75,0x84,0xcf,0x20,0x19,0x12,0x73,0x4d,0xf1,0xc7,0x33,0x5b,0xe7,0x2b,0x5c,0xf7, + 0x2f,0x96,0x81,0xcc,0x88,0x3f,0x3b,0x64,0xbe,0x41,0x50,0x68,0xe8,0xe,0x82,0xef, + 0xbf,0x70,0xe2,0x44,0x82,0xc,0xeb,0xd3,0x84,0xee,0x2b,0xb5,0x5f,0x9a,0xe0,0x2f, + 0x26,0x6c,0xcb,0x68,0xc3,0xc5,0x64,0xe8,0x36,0x9e,0x16,0xfc,0xf1,0x7d,0xaf,0x70, + 0xde,0x27,0xce,0xfb,0x12,0xcb,0x40,0x66,0xc6,0x9f,0x1d,0x98,0x17,0xee,0xa3,0x86, + 0xfb,0x69,0x69,0xe2,0xbf,0xe8,0x82,0x7f,0x56,0x24,0x55,0xf8,0x23,0xd6,0x8c,0xd8, + 0xba,0x7f,0x86,0x3b,0x9e,0xd9,0x75,0x36,0xfe,0x59,0x97,0x34,0xc5,0x9f,0xb5,0x7b, + 0xa1,0x2e,0x60,0x3e,0x41,0x36,0xfe,0x59,0x97,0xb4,0xc1,0x9f,0xe9,0x1,0xb6,0x7, + 0x4c,0x36,0xfe,0x59,0x9f,0xb4,0xc5,0x5f,0x6c,0xb,0xd8,0xfe,0x70,0xd9,0xf8,0x67, + 0x4d,0xd2,0x5,0x7f,0xa1,0xf,0x88,0xd7,0xbf,0x2b,0xfe,0xf5,0xba,0x1a,0x1e,0x9f, + 0xcc,0x8a,0xbf,0xd0,0x1f,0xf8,0x1d,0xf1,0x57,0xb6,0xe6,0xf5,0x77,0x23,0xdc,0xdf, + 0x51,0x57,0xfc,0x91,0x7e,0x57,0xfd,0xaf,0xcd,0xb7,0x2b,0xb3,0x32,0x29,0xdb,0xc3, + 0x45,0x9b,0xfd,0xa3,0x71,0xac,0xf8,0x77,0xc3,0x3f,0x9b,0xd2,0x46,0xd9,0xf8,0xff, + 0xff,0xa6,0x6c,0xfc,0xff,0x7f,0x53,0x66,0xc3,0x1f,0xbf,0xa1,0x85,0xdf,0xd2,0xc8, + 0xc6,0x3f,0x1b,0x7f,0xb6,0x87,0x5d,0x56,0x21,0xe1,0xba,0x9b,0xac,0x42,0x99,0x10, + 0x7f,0x29,0xca,0x0,0x96,0x8d,0x7d,0x57,0x25,0xab,0x50,0x7a,0x7f,0xff,0x25,0x3d, + 0xe8,0xd1,0xa3,0x47,0x99,0xa,0x7f,0xa1,0xc,0xcc,0x9e,0x3d,0xdb,0xe0,0xfa,0xf1, + 0x77,0x26,0xb6,0x6e,0x5c,0x13,0x19,0xc8,0x48,0xfc,0xb3,0x65,0x20,0xf3,0xc9,0x40, + 0x46,0xe3,0x9f,0x2d,0x3,0x99,0x4b,0x6,0xc,0x81,0x7f,0xb6,0xc,0x64,0x1e,0x19, + 0x30,0x14,0xfe,0xd9,0x32,0x90,0x39,0x64,0xc0,0x90,0xf8,0x67,0xcb,0x80,0xe1,0x65, + 0xc0,0xd0,0xf8,0x67,0xcb,0x80,0x61,0x65,0x20,0x33,0xe0,0x9f,0x2d,0x3,0x86,0x93, + 0x1,0x19,0xf6,0x52,0x43,0xe3,0x8f,0x87,0x50,0x6,0x70,0xed,0x43,0x36,0xa5,0xf, + 0xed,0xd8,0xb1,0x83,0xe2,0xbf,0x72,0xe5,0x4a,0x83,0xb7,0x7b,0xf1,0xc1,0x64,0x40, + 0x1f,0xef,0xd6,0xb3,0x49,0x2d,0xe9,0xd4,0xee,0xa5,0x0,0xa9,0xe4,0xc6,0x46,0x74, + 0x6f,0x25,0xba,0x37,0x13,0xdd,0x1b,0x8b,0xee,0x25,0xa2,0x7b,0x4e,0x7c,0x1f,0x24, + 0xba,0x97,0x8a,0xee,0x6d,0x44,0xf7,0x56,0xa2,0x7b,0x33,0xd1,0x3d,0x29,0x40,0xb0, + 0xa8,0x0,0xd1,0xa2,0x2,0xc4,0x88,0xa,0xf0,0x49,0x54,0x80,0x78,0x51,0x1,0x92, + 0x44,0x5,0xf8,0x99,0xbe,0x5,0xf8,0xb5,0x40,0xd9,0xf7,0xaa,0xef,0xa3,0x45,0xf7, + 0xc1,0xa2,0x7b,0x2e,0xf5,0x7d,0x92,0xe8,0x3e,0x5e,0x74,0xff,0x49,0x74,0x1f,0xa3, + 0xe6,0x3e,0x3a,0x8d,0xf7,0xc1,0x86,0xbd,0xf,0x12,0x95,0x7,0xb4,0xbd,0x8f,0x51, + 0x73,0x2f,0xe2,0xa7,0xa8,0x7d,0xa9,0xbf,0x17,0x3f,0x2f,0xbe,0x57,0x97,0x7f,0xb4, + 0x9a,0xfb,0xe0,0x2c,0x76,0x1f,0xad,0xe6,0x3e,0x46,0xcd,0xbd,0x3a,0x7e,0x8a,0xf9, + 0x2f,0x6a,0x2f,0x22,0xfd,0xc7,0x89,0xf4,0x1f,0xf7,0xab,0xbe,0xfb,0x24,0xba,0x4f, + 0x12,0xdd,0xab,0xb6,0x10,0xbf,0xc1,0x7d,0xb0,0xe8,0x3e,0x5a,0x74,0x1f,0x23,0xba, + 0xff,0x24,0xba,0x8f,0x17,0xdd,0x27,0x89,0xee,0x7f,0x8a,0xee,0x41,0x7c,0x2f,0x28, + 0x0,0x5a,0x68,0x61,0x1,0x8c,0xe1,0xff,0x0,0x9f,0xe0,0x96,0x7d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/network.ico + 0x0,0x0,0x4,0xea, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xb5,0x59,0xbd,0x6e,0x1b,0x49,0xc,0xa6,0x20,0x23,0x46, + 0x9c,0x42,0x86,0x94,0x22,0x9d,0xdc,0x4,0x48,0x99,0x37,0xb0,0xab,0x7b,0x8e,0xab, + 0x82,0x7b,0x86,0x2b,0xb4,0x3,0xa4,0x49,0x15,0xe4,0x31,0x82,0x14,0xa9,0x93,0xc6, + 0x56,0x95,0x5c,0x77,0xcd,0x3d,0x80,0x9e,0xe0,0xe0,0x32,0xdd,0x84,0xdc,0x1d,0x7a, + 0x39,0x1c,0xce,0xcf,0x4a,0xab,0x1,0x3e,0xac,0xf6,0x87,0x1f,0xc9,0x19,0xe,0xc9, + 0x5d,0x1,0x2c,0xe0,0x2,0xae,0xaf,0x1,0x8f,0x37,0xf0,0xd7,0x5,0xc0,0x1f,0x0, + 0xf0,0xf2,0xe5,0x70,0xfe,0xed,0x19,0xc0,0x57,0xbc,0xf6,0xea,0xd5,0x70,0xfe,0xe1, + 0x39,0xc0,0xbb,0x17,0x0,0x37,0x37,0xc3,0xf9,0x67,0x94,0xfb,0x1f,0x9f,0x7d,0x83, + 0x32,0xf8,0x13,0xaf,0xc,0xd7,0x69,0xdc,0x5d,0x40,0x76,0x6c,0xae,0xd6,0x9e,0x60, + 0xdc,0xf2,0x6,0x52,0x39,0xef,0x3d,0x38,0xe7,0xd7,0xf8,0x7b,0x3d,0xf0,0xf4,0x70, + 0x78,0xcd,0x39,0xfc,0x2d,0x21,0x38,0xba,0xdd,0xce,0x77,0xdd,0x2e,0x92,0xa7,0x6b, + 0x24,0xb7,0xdf,0xef,0x53,0x59,0x7,0xc3,0x35,0x65,0x7,0xc9,0xb0,0xfd,0x24,0x4b, + 0xcf,0x21,0x63,0x22,0xcb,0xf2,0xfd,0x33,0xca,0x8e,0x75,0x22,0xef,0x23,0xe,0xb2, + 0xc7,0x92,0x67,0x9f,0x37,0x57,0x9b,0x1e,0x74,0x8f,0x65,0x5d,0x78,0x9e,0x7f,0x4b, + 0xe,0x92,0xef,0xba,0x2e,0x82,0xeb,0x5c,0x90,0x1f,0xf4,0x47,0x3e,0x1b,0xf6,0xef, + 0xd0,0x6e,0x1a,0x3d,0x2f,0x40,0x98,0xb3,0x51,0xbf,0xe4,0x90,0xbe,0x48,0xfd,0xd6, + 0x90,0x73,0xe8,0x9c,0x31,0x97,0xc1,0x77,0x92,0xd7,0xfe,0x13,0xe8,0x5c,0xae,0xbd, + 0x9c,0x8b,0x60,0x3b,0xb0,0xfc,0xfd,0xfd,0x7d,0x6f,0xf7,0xc3,0xc3,0xc3,0x13,0xe8, + 0x9c,0xae,0xf,0x1c,0x31,0xe4,0xba,0xb3,0xaf,0xdf,0xff,0x86,0x4,0xc4,0xb1,0xb6, + 0x63,0x7a,0x8c,0x9b,0xe0,0x3f,0x3d,0xe7,0xff,0xfb,0xe8,0xfd,0x17,0xe8,0x41,0xf2, + 0x64,0xc7,0xe6,0xc5,0xa6,0x28,0xcf,0xfa,0x79,0xe,0x18,0x53,0xf5,0xe7,0x46,0x4d, + 0x9e,0xf4,0xf7,0x71,0x13,0x8e,0x12,0x14,0x1b,0x84,0x92,0xfc,0xbf,0x97,0xb8,0x32, + 0x4b,0xc4,0xc2,0xfb,0x7f,0x60,0x0,0x2d,0x17,0x30,0x16,0xe1,0x3e,0x3d,0xd7,0xa5, + 0xa0,0x3c,0x83,0xe9,0xa6,0xcf,0x37,0x9c,0x67,0x3e,0x3d,0x2b,0x69,0x6c,0x1a,0xc5, + 0x9c,0x33,0xe1,0xb9,0x90,0x83,0xe2,0x3d,0x24,0xf2,0x87,0x8f,0x9e,0xd,0x6b,0xc9, + 0xb9,0x48,0xf2,0xc6,0x31,0x68,0x73,0xca,0x9c,0x30,0xec,0xf3,0x94,0x8f,0xae,0x8f, + 0x7b,0x34,0xde,0xd7,0xf1,0xfe,0x8e,0xf9,0x86,0xfd,0xa8,0x20,0xec,0x92,0xf9,0x29, + 0x97,0xef,0x5c,0xec,0xfb,0x93,0xdf,0x6c,0xf,0x5f,0x88,0xf3,0x47,0x21,0x7f,0x1a, + 0x79,0x34,0xcf,0x7,0x11,0xa7,0x84,0xb6,0x51,0xf0,0x59,0xeb,0x5b,0xcc,0xaf,0xe9, + 0x9a,0x58,0xeb,0x97,0x22,0x97,0x6f,0x73,0xf6,0xb1,0xd,0x32,0xef,0x4a,0xdf,0x65, + 0xd,0xb1,0xd6,0x44,0xd7,0xb1,0xd1,0x27,0x7b,0xf0,0x7d,0x10,0xfe,0x26,0x5c,0x6a, + 0x6d,0x6b,0x3e,0xcb,0x78,0x8e,0xfd,0x14,0x71,0x25,0x86,0x58,0xeb,0x2c,0xa4,0xff, + 0xb9,0x9c,0x3d,0xc5,0x3e,0x39,0xb7,0x16,0x87,0xe6,0xe3,0xb9,0xb2,0xea,0x81,0xe4, + 0xac,0x71,0x69,0x3e,0x92,0xd1,0xf5,0xe1,0x54,0x3e,0x89,0x53,0xf9,0x6a,0x73,0xd8, + 0xc2,0x27,0x39,0x73,0x31,0x38,0x95,0x8f,0x39,0x2b,0xf6,0x55,0x87,0x3f,0x78,0xff, + 0xde,0xdd,0xe2,0xb3,0xdb,0x80,0x95,0xff,0x11,0xe0,0x10,0xd0,0x63,0xb8,0xe7,0xe0, + 0xb6,0xaf,0x61,0xe,0x6b,0x96,0x5b,0xc5,0xd8,0x23,0xe,0xdb,0xa1,0x6e,0x61,0xb, + 0xd,0x6f,0x61,0xac,0x5b,0x7f,0x3e,0x9f,0xe2,0x55,0xd9,0x5c,0x3,0x73,0x3c,0x1f, + 0xf5,0xd4,0x95,0x7a,0x36,0xca,0x14,0xea,0xda,0xc8,0x37,0xa9,0xbe,0x3d,0xe9,0xa9, + 0xd5,0x39,0x59,0xeb,0x72,0xf5,0x2e,0xce,0xaf,0x71,0x7c,0xd5,0xea,0x5e,0xb,0x77, + 0x52,0x53,0x55,0x9e,0x64,0x3d,0x56,0x9e,0x19,0xf3,0x78,0x9e,0xbb,0x94,0xd7,0x4b, + 0xfc,0x92,0x3b,0x57,0x6b,0x4d,0xee,0x54,0x47,0xb5,0x4e,0xe6,0x74,0xd0,0xb9,0xee, + 0x1b,0xe4,0x3a,0x1c,0x53,0x37,0x2d,0x5d,0xf1,0xbb,0x53,0x5c,0x97,0xb9,0x8e,0x6a, + 0x48,0xfb,0xb3,0x73,0x10,0xb8,0x93,0x77,0x1b,0x83,0x9f,0xe3,0x92,0x8f,0x96,0xfd, + 0xb9,0xf9,0xce,0xcd,0x7f,0x5b,0xdd,0x2e,0xeb,0xa8,0xc5,0x4f,0x7d,0xd,0xc6,0x39, + 0x6a,0xf6,0x47,0xc7,0x61,0x26,0x86,0xd8,0x47,0xe6,0x76,0xd,0x3a,0xac,0xd8,0x6f, + 0x1,0x73,0xea,0x7e,0xc4,0xe0,0x4e,0xf8,0x6b,0x43,0xf7,0x65,0x5a,0x47,0xad,0x4f, + 0xe1,0xb5,0xb4,0xfa,0xa,0x19,0x5f,0xb9,0x3d,0x63,0xf1,0x5a,0xfc,0x24,0xcf,0x3d, + 0x6,0xf7,0x19,0xcc,0xdf,0xcf,0xf,0x44,0xb6,0xce,0xd2,0xc7,0xe8,0xfd,0x37,0x77, + 0x5f,0xc3,0x76,0xeb,0xf9,0x39,0x86,0x3f,0x1f,0xff,0xa3,0xfe,0xb9,0xfb,0x1e,0x3d, + 0x4e,0xe9,0x83,0xac,0x3c,0xa7,0xa1,0xe6,0x72,0xd2,0x68,0xdd,0x6b,0xb5,0x98,0xe4, + 0xe1,0x7f,0xdd,0xfa,0xf7,0x7,0xea,0xad,0x96,0x1,0xb,0xff,0x13,0xf1,0x83,0xe6, + 0x39,0xc9,0x15,0xb,0xbc,0x46,0x58,0x6,0xac,0xc6,0x5e,0x4c,0x60,0x8f,0x38,0x20, + 0x1e,0x17,0x43,0x1f,0x76,0x83,0xb8,0x83,0xb1,0xf,0x73,0xd7,0x53,0xbd,0x9e,0x34, + 0x4a,0xb9,0xee,0xec,0x7a,0x65,0xe,0xca,0xe4,0xfc,0x56,0x3b,0x9a,0xed,0xe7,0xb8, + 0x93,0x47,0xab,0xae,0x55,0xe2,0x3a,0xee,0x35,0x2a,0x3d,0xa5,0xf4,0x97,0xbf,0xe3, + 0x6a,0x68,0xfd,0xa5,0xdc,0x13,0xf2,0x2b,0xf0,0x1e,0xb1,0xf4,0x5b,0xfd,0x43,0xee, + 0x9b,0x88,0x35,0xff,0xf1,0xfc,0xc4,0x36,0xf0,0x7e,0x19,0xd7,0x4f,0xc1,0xc8,0xfb, + 0xad,0x3d,0x5d,0xab,0xd,0xb9,0x75,0xb5,0x9e,0x91,0x35,0xbb,0x55,0xbf,0x65,0xc3, + 0x31,0xfa,0x65,0x7c,0x9f,0xea,0x7f,0xc9,0x86,0x9a,0xfe,0xa9,0x7d,0xf5,0x18,0x5b, + 0x4d,0xfb,0xa1,0xa8,0xdf,0xfa,0xde,0x25,0xf5,0x71,0xdf,0x5d,0xb2,0x8d,0x6d,0x38, + 0x4e,0xff,0xa8,0xdb,0xa9,0xb9,0x90,0xbd,0xa2,0xb5,0x46,0xd1,0x7f,0x14,0x63,0x5e, + 0x2,0xc8,0xec,0x71,0xd,0xed,0xbf,0xf4,0x27,0xa7,0x53,0xea,0xb5,0xf2,0xe2,0x94, + 0xba,0x16,0xfb,0xef,0x13,0x5d,0x4e,0xe9,0xcf,0xd9,0x24,0xfd,0x67,0xce,0x96,0xfa, + 0x9d,0xf3,0xdf,0xe4,0x2e,0xac,0xbd,0xf6,0x9f,0xf5,0xd3,0x79,0xe9,0x28,0xf3,0xcf, + 0xb1,0x39,0x40,0xea,0x96,0x31,0x35,0x4d,0xbf,0xf,0xfa,0xfd,0x64,0x5b,0x74,0xec, + 0x49,0xfd,0xcc,0x5f,0x5b,0x3,0x2b,0xe,0xf4,0xda,0xb7,0xe8,0x8e,0xf7,0xd4,0xb4, + 0x21,0x6d,0x18,0x63,0xaf,0xe1,0x5d,0xd0,0xd8,0xf3,0x53,0xf7,0x80,0xde,0xf,0x3a, + 0xde,0x73,0xfb,0xa1,0x94,0x6f,0x5a,0x73,0x80,0x95,0x13,0x64,0x5d,0xd0,0x39,0x49, + 0xe5,0x5b,0x73,0x9c,0xe2,0x7f,0xb,0x72,0x7a,0x75,0xc,0xb4,0xe4,0x80,0xa7,0x5a, + 0x12,0xfc,0x3f,0xe6,0xbd,0x2a,0xa7,0xbf,0x65,0xc8,0x77,0x89,0xb9,0xf5,0xd3,0xd1, + 0x7a,0xf,0xd6,0xef,0xc3,0xb9,0x3d,0x39,0x87,0x7e,0xe2,0xf0,0x5f,0x5e,0x27,0xd0, + 0xfa,0xe1,0xc,0xf3,0x1f,0xe9,0xef,0xdf,0xa5,0xf3,0xfa,0xcf,0x35,0xff,0xad,0xfe, + 0x9f,0x73,0xfe,0x2d,0x58,0xdf,0x43,0xce,0xe1,0x7f,0x2d,0xd7,0xe9,0xf7,0xe8,0x39, + 0xf4,0x4b,0x1b,0x8e,0x19,0x73,0xe8,0x67,0x1b,0xa6,0xe4,0xa0,0x39,0xbe,0x2b,0x58, + 0x36,0x9c,0x2b,0xcf,0x5a,0x3,0x57,0xb4,0xc3,0x9d,0xb4,0x7d,0xdc,0xc1,0xea,0xe, + 0xe0,0x12,0xb1,0x44,0x2c,0x7e,0x3d,0x22,0xe,0x0,0x12,0x2e,0x16,0x5d,0x4,0x2c, + 0x11,0x97,0x78,0x6f,0x85,0xd8,0x22,0x3a,0x17,0xfe,0x3b,0xca,0x61,0x8f,0x38,0x20, + 0x1e,0x61,0xeb,0x7f,0x3,0x55,0x35,0x55,0xcc, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty_active.ico + 0x0,0x0,0x3,0x63, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0x3b,0x6e,0x1b,0x31,0x10,0x1d,0x19,0x8a,0x1, + 0xc3,0x85,0x55,0x38,0x80,0xbb,0xa8,0x4c,0xe9,0x23,0x28,0x4d,0xea,0x14,0xde,0x3a, + 0xa9,0x82,0x9c,0x42,0xa2,0x54,0xa5,0xcc,0x11,0x54,0xa4,0x30,0x28,0x20,0x69,0x53, + 0x69,0x75,0x9,0x5f,0x23,0x57,0x60,0xb8,0xd4,0x8e,0x97,0x9c,0xe5,0x67,0xc8,0xdd, + 0x58,0x40,0x22,0x1a,0xc4,0xdb,0xe5,0x67,0x3e,0xc2,0x72,0xe6,0xd,0xd,0x30,0x81, + 0x29,0xcc,0x66,0xa0,0x71,0xe,0x5f,0xa6,0x0,0xef,0x1,0xe0,0xf6,0xf6,0xf8,0xfe, + 0xeb,0x12,0xe0,0x87,0x1e,0xbb,0xbb,0x3b,0xbe,0x7f,0xbd,0x2,0xf8,0x7c,0xd,0x30, + 0x9f,0x1f,0xdf,0x1f,0xf5,0xbe,0xdf,0x7a,0xed,0x5b,0xbd,0x47,0x3f,0xea,0x91,0xe3, + 0x78,0xd3,0x16,0x53,0x88,0x35,0xc5,0x40,0xda,0x4d,0x13,0x42,0x98,0xe7,0xe5,0x6a, + 0x65,0x70,0xe5,0x47,0x5,0xc2,0xea,0xad,0xc,0xdc,0xfb,0x7d,0xbb,0x35,0xa8,0x74, + 0xeb,0xa1,0x30,0xa0,0xc0,0xfe,0xeb,0x64,0xc0,0xe1,0x70,0x30,0x58,0x23,0xd6,0xb5, + 0x83,0xb1,0xfd,0x63,0xea,0xdf,0xef,0xeb,0x16,0xf7,0x7d,0x6c,0x65,0x60,0xcb,0xd2, + 0x6f,0xd9,0x81,0x1d,0xf7,0xb9,0xfa,0xa9,0x1d,0x14,0xf,0x8e,0xae,0x6c,0xfd,0xd6, + 0x3a,0x9f,0x7e,0x9c,0xe3,0xa2,0x4f,0x3f,0xca,0xa,0x61,0x4c,0xbf,0x35,0xe6,0x45, + 0x2a,0xc3,0xa7,0xbf,0x93,0xbf,0x6e,0xbf,0x5d,0x57,0x26,0x47,0xff,0x66,0xb3,0x71, + 0xf6,0xe0,0x78,0x8e,0xfe,0xf5,0x7a,0xd3,0x5b,0x1b,0xd2,0x8f,0xcf,0x88,0xeb,0x56, + 0x3f,0xda,0xb1,0x22,0xf3,0xf6,0xde,0xa7,0x77,0x4a,0x49,0xa1,0x54,0x5,0x4,0x9b, + 0x71,0xa9,0xb1,0x8a,0xe0,0x4e,0xa9,0x26,0xce,0xe8,0x70,0x63,0xe2,0xd,0xc6,0x99, + 0x6f,0x97,0x10,0x6b,0x9c,0x38,0x83,0x18,0xea,0x8e,0xdf,0x89,0xb8,0xe3,0x8f,0x3f, + 0x89,0x38,0x54,0xd7,0xfe,0x58,0x62,0xd0,0x17,0xf,0x22,0x71,0x21,0x75,0xa6,0x38, + 0xf2,0xa8,0x7d,0x9c,0x58,0xf3,0xbf,0xd8,0x67,0xc7,0x68,0xda,0x8a,0xec,0xb3,0xec, + 0xa4,0xdd,0x77,0xee,0x59,0xf6,0x79,0x30,0x16,0x7,0xd2,0xb1,0x9c,0x60,0xed,0xc6, + 0x20,0xdb,0x3e,0x6e,0x6c,0xcf,0xb1,0xaf,0x14,0x63,0xf6,0xa5,0x62,0x7f,0x28,0xcf, + 0xc4,0xec,0x3,0x66,0xbc,0xe1,0xc4,0x75,0x5c,0xb3,0x5c,0xd2,0xf8,0xd2,0xc6,0xa1, + 0xe5,0xd2,0x6b,0x67,0xcc,0x3e,0xdc,0x4b,0x73,0x17,0x27,0xee,0x87,0xec,0x43,0x99, + 0x88,0x74,0x7c,0xc,0xfb,0x38,0xbf,0x1f,0xcd,0x37,0x88,0x34,0x1f,0x3d,0xdb,0x1b, + 0xcb,0x53,0x1f,0xde,0x28,0xb9,0xbd,0x51,0xd5,0xe2,0xc6,0x8f,0xcd,0xbc,0xfc,0xa9, + 0xf3,0xd2,0x47,0x6,0xd6,0x26,0x6f,0x69,0xa,0xd,0xf7,0xd0,0xe5,0xad,0x4f,0x57, + 0x10,0x6b,0x59,0xdf,0x13,0x41,0xda,0xed,0xf9,0x9e,0xbf,0xcc,0x7c,0x76,0x94,0x11, + 0xce,0x69,0x66,0x3e,0x97,0xdf,0xd9,0x31,0xdf,0xf4,0x44,0x8c,0x6e,0x1a,0xfd,0x9e, + 0xa2,0xb9,0xb3,0x95,0x1d,0x8c,0xff,0x25,0xfc,0x9c,0x62,0x86,0x7c,0x9f,0xfd,0xa9, + 0xdc,0x70,0xb6,0x7f,0x18,0x67,0x68,0xd7,0x4,0xbf,0x1f,0x56,0x6e,0xb6,0x74,0x4, + 0x72,0x3e,0xc,0xb1,0xbf,0x77,0xe,0xdc,0xf3,0x15,0xcd,0x63,0xd9,0xb9,0x3b,0xa3, + 0x3e,0x2b,0xf5,0x83,0xe6,0xf4,0x31,0xea,0xb7,0x92,0xfa,0x6e,0x2c,0x1c,0x83,0x47, + 0x94,0xf0,0xa,0xfa,0xe,0xcc,0x3c,0xc0,0xa9,0x5f,0xa9,0xfe,0x3e,0xcf,0x70,0xf9, + 0x86,0x93,0x7,0xa,0xed,0x4f,0xf1,0x8f,0x10,0x67,0xe0,0xd8,0x4f,0x65,0xf7,0xf8, + 0x48,0x40,0xe7,0xd9,0xfe,0xe,0x43,0x77,0x7,0x25,0x3c,0x8b,0xfa,0x91,0x5a,0xd7, + 0xb4,0xa7,0xea,0x95,0xe6,0x4b,0x17,0xaa,0x7a,0x98,0x28,0xf9,0x8,0x9a,0x67,0x81, + 0x8b,0xcd,0x78,0x33,0x6f,0xd6,0x49,0x8d,0x55,0x6,0xee,0xc,0xf,0x9b,0xeb,0xbe, + 0x80,0x8e,0x87,0x89,0x19,0xc4,0x5a,0xd6,0xb9,0x63,0x22,0xed,0xbe,0x75,0xc5,0x3c, + 0x2d,0x78,0x1f,0x11,0xe7,0x6f,0x76,0xad,0x19,0x8c,0xa3,0x29,0xae,0x15,0x40,0x95, + 0xe4,0x77,0xa2,0x67,0x43,0xaf,0xde,0x28,0xca,0x41,0x1c,0xee,0xd1,0xe7,0x38,0x8a, + 0x9e,0x8f,0x5c,0xae,0x90,0xc5,0x7d,0x98,0x3c,0xb7,0x84,0x4b,0xb0,0x75,0x27,0x78, + 0x58,0x91,0xff,0x3,0xf4,0x9f,0xfd,0xff,0x7,0xfc,0x3f,0xf1,0xf7,0x3f,0xc6,0xf9, + 0x1f,0xea,0x3f,0xfd,0x5f,0x8c,0x4f,0xef,0xf3,0x9c,0xf0,0xc7,0xbf,0xa1,0x1c,0x1c, + 0x65,0x47,0xeb,0x17,0xdd,0x39,0x3c,0xba,0xc8,0x7f,0xf2,0x3d,0xf8,0xea,0x1b,0xe, + 0x4f,0x1a,0xe4,0x7f,0x4,0x73,0xea,0x88,0xf2,0x5a,0x8b,0x57,0x83,0x71,0x78,0xe2, + 0x29,0xfd,0xff,0xdb,0xf8,0x12,0x75,0xe2,0x29,0xeb,0xc8,0x31,0xfc,0x2f,0xad,0x37, + 0x53,0xf5,0x67,0x89,0xff,0x10,0xe6,0xaf,0x51,0xc,0xd9,0x10,0xf3,0x3f,0x7d,0x2f, + 0x1e,0xaa,0x5b,0x85,0x33,0x8e,0x36,0x8c,0xe1,0x3f,0xad,0x6d,0x52,0x75,0x21,0xda, + 0x30,0x86,0xff,0x21,0xdd,0xb4,0x6e,0xf4,0xc8,0x3e,0xfb,0x7f,0xf6,0xff,0x45,0xfc, + 0x47,0xec,0x6c,0xe3,0xfb,0x1f,0xba,0x67,0x48,0xdd,0x23,0xd0,0xdf,0x81,0x7b,0xff, + 0xe0,0xde,0x43,0x3c,0xbc,0x96,0x72,0x7b,0x51,0x55,0x8b,0x89,0x94,0x2,0x3a,0x4, + 0x70,0xd1,0x9e,0x6f,0xd6,0x37,0xfb,0xa4,0xac,0x74,0x1b,0x80,0xbb,0x3f,0x7c,0xbb, + 0xea,0x7e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-red.ico + 0x0,0x2,0x42,0x9a, + 0x0, + 0x0,0x1,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x34,0x58,0x0, + 0x0,0x96,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0, + 0x0,0xca,0x58,0x0,0x0,0x14,0x14,0x0,0x0,0x1,0x0,0x20,0x0,0xb8,0x6,0x0, + 0x0,0x32,0x5d,0x0,0x0,0x18,0x18,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x9,0x0, + 0x0,0xea,0x63,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0, + 0x0,0x72,0x6d,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x25,0x0, + 0x0,0x1a,0x7e,0x0,0x0,0x40,0x40,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x42,0x0, + 0x0,0xc2,0xa3,0x0,0x0,0x48,0x48,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x54,0x0, + 0x0,0xea,0xe5,0x0,0x0,0x80,0x80,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x8,0x1, + 0x0,0x72,0x3a,0x1,0x0,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0, + 0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x6,0x0, + 0x0,0x0,0x5c,0x72,0xa8,0x66,0x0,0x0,0x57,0xfb,0x49,0x44,0x41,0x54,0x78,0x9c, + 0xed,0x7d,0x9,0x9c,0x1c,0x55,0xb9,0xef,0x57,0xdd,0xb3,0x66,0x21,0xeb,0x64,0x4f, + 0x26,0x21,0x6c,0x21,0x1,0x44,0x20,0x8,0x2,0x86,0x7d,0x57,0x2,0xe2,0x45,0xde, + 0x95,0xab,0xf2,0x7c,0x8a,0xe0,0x72,0x65,0xbb,0x57,0x5,0x11,0x17,0x40,0x89,0x17, + 0x65,0xd3,0xab,0xe2,0xbb,0x5e,0x2f,0xfa,0x54,0x94,0x2d,0x21,0x28,0x6b,0x12,0x90, + 0x45,0x45,0x20,0x61,0xcf,0x3a,0x59,0x26,0xfb,0x9e,0xd9,0xbb,0xde,0xf9,0x7f,0xe7, + 0x7c,0x55,0xa7,0xaa,0xab,0x67,0x7a,0x66,0xba,0x67,0xe9,0x39,0xff,0xfc,0x3a,0x55, + 0x5d,0x5d,0x75,0x6a,0x99,0xfa,0x7f,0xdb,0xf9,0xce,0x77,0x3c,0x2a,0x51,0xdc,0x78, + 0xe3,0x8d,0x3e,0x96,0xa9,0x54,0xaa,0xb7,0x2f,0xc5,0xc1,0xa1,0xdb,0xb8,0xe9,0xa6, + 0x9b,0xbc,0x62,0xb4,0x5b,0x94,0x46,0x7b,0x1b,0x37,0xdc,0x70,0x83,0xef,0x79,0x1e, + 0xe1,0xe3,0x90,0x1b,0xee,0xf9,0xf4,0x2f,0x14,0x43,0x8,0x94,0x9c,0x7a,0x4,0xf9, + 0x7b,0xfb,0x1a,0x1c,0x1c,0xa,0x9,0x65,0xcd,0xf2,0x52,0x9,0x80,0x82,0xbf,0xdb, + 0x25,0xa5,0x2,0xe2,0xe4,0x3f,0xf5,0xd4,0x53,0x79,0xe9,0xfb,0x4e,0x26,0x24,0xc1, + 0x59,0x0,0x7d,0x1b,0x27,0x9d,0x74,0x52,0xe4,0xfb,0xcd,0x37,0xdf,0x5c,0x70,0x2b, + 0xa0,0xac,0x90,0x8d,0xf5,0x26,0x1c,0xf9,0x1d,0x4a,0x9,0x49,0xe4,0x37,0x90,0x17, + 0xba,0x20,0x82,0xa0,0x24,0x5c,0x0,0x47,0x7e,0x87,0x52,0x42,0x3b,0xe4,0xb7,0x51, + 0x90,0x97,0xbb,0xdf,0xb,0x0,0x47,0x7e,0x87,0x52,0x42,0x9e,0xe4,0x17,0x74,0xfb, + 0x25,0xef,0xd7,0x2,0xc0,0x91,0xdf,0xa1,0x94,0xd0,0x49,0xf2,0x17,0x4,0xfd,0x56, + 0x0,0x38,0xf2,0x3b,0x94,0x12,0x7a,0x83,0xfc,0x40,0xbf,0x14,0x0,0x8e,0xfc,0xe, + 0xa5,0x84,0xde,0x22,0x3f,0xd0,0xef,0x4,0x80,0x23,0xbf,0x43,0x29,0xa1,0x37,0xc9, + 0xf,0xf4,0x2b,0x1,0xe0,0xc8,0xef,0x50,0x4a,0xe8,0x6d,0xf2,0x3,0xfd,0x46,0x0, + 0x38,0xf2,0x3b,0x94,0x12,0xfa,0x2,0xf9,0x81,0x7e,0x21,0x0,0x1c,0xf9,0x1d,0x4a, + 0x9,0x7d,0x85,0xfc,0x40,0x9f,0x17,0x0,0x8e,0xfc,0xe,0xa5,0x84,0xbe,0x44,0x7e, + 0xa0,0x4f,0xb,0x0,0x47,0x7e,0x87,0x52,0x42,0x5f,0x23,0x3f,0xd0,0x67,0x5,0x80, + 0x23,0xbf,0x43,0x29,0xa1,0x2f,0x92,0x1f,0xe8,0x93,0x2,0xc0,0x91,0xdf,0xa1,0x94, + 0xd0,0x57,0xc9,0xf,0xf4,0xb9,0xd1,0x80,0xb9,0xc8,0x9f,0xc9,0x64,0x7a,0xe5,0x7a, + 0x4a,0x19,0x6e,0x38,0x70,0xf1,0xd1,0x97,0xc9,0xf,0xf4,0x29,0xb,0x20,0x89,0xfc, + 0xd0,0xfa,0x8e,0xfc,0xe,0xfd,0x11,0x7d,0x9d,0xfc,0x40,0x9f,0xb1,0x0,0x6c,0xf2, + 0x7f,0xf3,0x9b,0xdf,0xec,0xcd,0x4b,0x71,0x70,0x28,0x38,0xfa,0x22,0xf9,0x81,0x3e, + 0x61,0x1,0x38,0xf2,0x3b,0x94,0x32,0xfa,0x2a,0xf9,0x81,0x5e,0xb7,0x0,0x84,0xfc, + 0xf0,0x47,0x6f,0xba,0xe9,0xa6,0x5e,0xbe,0x1a,0x7,0x87,0xc2,0xa2,0x2f,0x93,0x1f, + 0xe8,0x75,0x1,0x0,0x24,0x5,0xa3,0x9e,0x79,0xe6,0x99,0x9e,0xbf,0x90,0x1,0x6, + 0x57,0x32,0xdd,0xa1,0xd7,0xdf,0x0,0x17,0x89,0x76,0x70,0xe8,0x3d,0xf4,0x59,0x1, + 0x20,0x75,0xfd,0xdd,0xa7,0x78,0x1f,0x7,0x87,0x3e,0xeb,0x2,0x38,0x38,0x38,0x14, + 0x1f,0xbd,0x6e,0x1,0x38,0x38,0x38,0xf4,0x1e,0x9c,0x0,0x70,0x70,0x18,0xc0,0x70, + 0x2,0xc0,0xc1,0x61,0x0,0xc3,0x9,0x0,0x7,0x87,0x3c,0xe0,0x95,0x68,0x97,0x69, + 0x69,0xde,0x95,0x83,0x43,0x81,0xe1,0x5b,0xe3,0x51,0x4a,0x49,0x18,0xf4,0x89,0x5e, + 0x80,0x62,0x42,0x7a,0x18,0x9e,0x7e,0xfa,0xe9,0xc8,0x77,0x87,0xfe,0x9,0x99,0x29, + 0x77,0xd1,0xa2,0x45,0x79,0xed,0x1f,0x1f,0x90,0x53,0x48,0x20,0x91,0xaa,0xbf,0x27, + 0xac,0x95,0x8e,0x28,0x4b,0x80,0x23,0x7f,0xe9,0xa2,0x98,0xc4,0xce,0x7,0x92,0x45, + 0xd9,0xdf,0xad,0x81,0x92,0xb5,0x0,0x40,0x76,0xc,0x25,0x7e,0xf6,0xd9,0x67,0xdd, + 0x38,0x83,0x12,0x82,0x58,0x0,0x0,0x84,0x40,0xbe,0x96,0xc0,0xe2,0x25,0x4b,0xa, + 0x76,0xd,0x4f,0x3f,0xf5,0x54,0xb0,0xee,0xf7,0xf3,0xa1,0xea,0xfd,0x5b,0x7c,0xb5, + 0x3,0xbb,0x7a,0x90,0x23,0x7f,0xe9,0xa0,0xb7,0xc7,0x2f,0xd8,0xe4,0x2f,0x5,0x94, + 0xac,0x5,0x20,0xb0,0xc9,0x7f,0x77,0xef,0x5d,0x86,0x43,0x9,0x40,0xc8,0x7f,0xf2, + 0x29,0xa7,0x94,0x8c,0x52,0x29,0x79,0x1,0x20,0x70,0xe4,0x77,0xe8,0xe,0x40,0x7e, + 0x10,0x5f,0xd6,0x4b,0x5,0x25,0xeb,0x2,0x38,0x38,0x14,0xa,0x42,0x7e,0xdb,0x2, + 0xb0,0xd1,0x9f,0x3,0x81,0xfd,0xf7,0xca,0x1d,0x1c,0x7a,0x10,0xed,0x69,0xfd,0xfe, + 0x1c,0x8,0x74,0x2,0xc0,0xc1,0xa1,0x3,0x40,0xe3,0xdb,0x5a,0xbf,0x94,0x5c,0x80, + 0x1,0x13,0x3,0x70,0x70,0xe8,0x2c,0x6c,0x93,0x5f,0xd6,0x4b,0x89,0xfc,0x80,0xb3, + 0x0,0x1c,0x1c,0x12,0x10,0x27,0x7f,0xdc,0xef,0x2f,0x15,0x38,0x1,0xe0,0xe0,0x60, + 0x21,0x29,0xd0,0x57,0xca,0x42,0xc0,0x9,0x0,0x7,0x7,0xb,0xb6,0xb9,0xf,0x24, + 0xb9,0x1,0xa5,0x4,0x17,0x3,0x70,0x70,0xa0,0xa8,0x6f,0x5f,0xaa,0x64,0x4f,0x82, + 0x13,0x0,0xe,0xe,0x44,0x39,0xa3,0xfc,0xa5,0x6c,0xfe,0x3,0xbd,0x2e,0x0,0x72, + 0xcd,0xf7,0x8b,0xed,0x5e,0xc2,0x7e,0x6e,0x3c,0x9f,0x43,0x21,0xd1,0x51,0x86,0x5f, + 0xa9,0x46,0xff,0x5,0xbd,0x2e,0x0,0xa8,0x9d,0x29,0xbf,0x93,0x48,0x2f,0x82,0xc1, + 0x9,0x4,0x87,0xce,0x0,0xc9,0x3a,0xc8,0xd8,0x93,0x25,0x10,0x27,0x77,0x5c,0xcb, + 0xc7,0x33,0x0,0x4b,0x11,0xbd,0x22,0x0,0x76,0x7f,0xe7,0x3b,0x3e,0x93,0xd8,0xf3, + 0xe8,0x4d,0xb5,0x3c,0xd4,0x8c,0xd3,0xdf,0x7b,0xeb,0xad,0xbc,0xc4,0xb7,0xd9,0xea, + 0xb3,0x4c,0x9,0x7,0x21,0xf8,0xa1,0x66,0xf9,0xd2,0x7,0x3f,0xa8,0xc9,0x6f,0x7e, + 0xb3,0x5,0x42,0x6f,0xb,0x83,0x2b,0x97,0xaf,0xa0,0x51,0x93,0x26,0xea,0xeb,0xc8, + 0x25,0xd8,0x30,0x4c,0x59,0x2d,0xb6,0xae,0x5d,0x47,0x77,0x4f,0xdf,0xbf,0x7,0xaf, + 0xce,0x21,0x49,0x8,0x0,0x49,0x24,0x1f,0x8,0xe4,0x7,0x7a,0x44,0x0,0xbc,0xf8, + 0xed,0x6f,0x33,0x1b,0x66,0x9a,0x87,0x2e,0x89,0x93,0xd8,0x38,0xc3,0x10,0x82,0xac, + 0x6d,0x82,0x99,0xe6,0xb7,0x37,0x40,0x26,0x23,0x24,0x8e,0x79,0xfe,0x79,0xfe,0x3e, + 0xd3,0xec,0x63,0xb,0x4,0x39,0xbe,0xd8,0x82,0x20,0x17,0xd1,0x47,0xc7,0xbe,0x27, + 0xc2,0x8,0xae,0xd1,0x13,0x27,0xd0,0x37,0x1a,0x1b,0xc3,0xcd,0xe6,0xfe,0x6e,0xae, + 0xac,0x2c,0xf4,0xe5,0x3a,0x10,0x5,0xc4,0x7,0x50,0xc5,0x27,0x97,0xcf,0x9f,0x6b, + 0xbd,0x54,0x51,0x74,0x1,0xb0,0xcb,0xd2,0xf6,0x41,0xc6,0x74,0x2e,0xd2,0x1b,0x12, + 0xc4,0x29,0x74,0xa8,0xbd,0x3f,0xc8,0x6f,0x9,0x86,0xd9,0x46,0x20,0xc0,0x42,0x78, + 0x53,0x2d,0x77,0x9f,0x70,0x42,0x51,0x84,0x80,0x4d,0xfa,0xd1,0x20,0x79,0x2,0xd1, + 0x3b,0x7b,0x4e,0xbb,0x5,0xcf,0x8,0x39,0x8,0x85,0x2d,0xca,0x3a,0x18,0x35,0x79, + 0x92,0xb3,0x12,0xa,0x8,0x21,0xbf,0xed,0xf3,0xe7,0x32,0xf9,0xed,0xef,0xa5,0x8e, + 0xa2,0x9,0x0,0x68,0x7d,0x36,0xed,0xcd,0xc7,0xf6,0xdb,0xab,0xd7,0xac,0xa1,0x86, + 0x29,0x53,0x22,0x4b,0xc0,0xde,0x46,0x14,0xf5,0xf3,0xe3,0x42,0x2,0x98,0x61,0xaa, + 0xfe,0x88,0x80,0xc0,0x9f,0x78,0xf6,0x73,0xcf,0xb1,0x40,0xd8,0xab,0x4,0x41,0x77, + 0x91,0x8b,0xf4,0x79,0x11,0x1d,0xd7,0xa9,0xf6,0xdf,0x5c,0xb7,0x96,0x6a,0x14,0x99, + 0x65,0x29,0xdb,0x13,0xdb,0x51,0xdb,0xf1,0xcb,0x68,0x75,0x4e,0xac,0x63,0xc9,0x2, + 0x61,0xdd,0x7a,0xbe,0xe,0x67,0x1d,0x74,0xf,0x71,0xdf,0x3f,0x29,0xf8,0x37,0x50, + 0x4c,0x7f,0x41,0x51,0xac,0x65,0xf8,0xf8,0x66,0xce,0xef,0x80,0xb0,0x42,0x72,0xca, + 0xa7,0x2e,0x9f,0x45,0x12,0x59,0x8a,0x50,0x88,0xec,0x46,0xc9,0x31,0x0,0x31,0xcd, + 0x21,0x8,0x50,0xe,0xec,0x98,0xaf,0x7e,0xb5,0x53,0xf5,0x0,0x6e,0x6c,0x6a,0xd2, + 0xed,0x58,0x5a,0x3e,0x72,0xd5,0x49,0xe4,0x9e,0x32,0x99,0x36,0xaf,0xa9,0xeb,0xc4, + 0x59,0x34,0xe4,0xb8,0xb8,0x70,0x10,0xd8,0x82,0xcf,0xc5,0xe,0x34,0xae,0xb0,0x46, + 0xdf,0x75,0x54,0x12,0x4c,0x6a,0x7,0x26,0x4d,0xd3,0xdd,0x9d,0xf1,0xfd,0x52,0x10, + 0xa4,0xa3,0xa2,0xa0,0x85,0x2e,0x1a,0x9a,0x50,0x88,0xa4,0x5b,0x1c,0x2e,0xa8,0x5, + 0x0,0xe2,0x63,0xe9,0x9b,0xc9,0x27,0xf1,0x25,0x91,0xf8,0xf2,0xa2,0xdb,0x4b,0x1b, + 0xf1,0x6d,0x6a,0xbd,0xba,0xae,0x2e,0xf2,0x5b,0xc3,0xe4,0xc9,0x54,0x65,0xac,0x85, + 0x5c,0xee,0x84,0x4,0x17,0x5f,0xfe,0xee,0x77,0xe9,0x5,0x25,0x4,0x80,0xf6,0x52, + 0x1f,0xe3,0xbe,0x7d,0x16,0xe9,0x15,0xe2,0x24,0x7,0xf9,0x93,0xb6,0x67,0x21,0x81, + 0xdc,0xf6,0x71,0xd2,0xe,0x4,0x42,0x70,0x9f,0x64,0xfd,0x75,0xf1,0xd2,0xab,0x36, + 0x60,0x15,0x40,0x40,0x39,0x41,0x90,0x3f,0x72,0x95,0x11,0x2b,0x95,0xaa,0x3e,0xdd, + 0x41,0x41,0x4,0x80,0x4d,0x7c,0x86,0x5a,0x56,0xc5,0x89,0x1f,0x27,0x79,0xae,0xed, + 0xa,0xe9,0xfa,0x8d,0xd4,0x36,0x7e,0x5c,0xee,0xfd,0x44,0x20,0x60,0xb9,0x76,0x6d, + 0x54,0x98,0xf0,0x85,0xf8,0x81,0xc5,0x80,0xa3,0xe0,0x2a,0xbc,0xd0,0xc1,0x3d,0x80, + 0x54,0xa3,0x48,0x6b,0x7d,0xcf,0x3a,0x5f,0x5e,0x5a,0x3d,0x97,0x20,0x4b,0xda,0x2f, + 0x8e,0xd8,0xb5,0xc7,0xcf,0x17,0x8,0x4,0xa2,0x48,0xd0,0x11,0x41,0x44,0xb1,0x54, + 0x9c,0x6b,0x90,0x1b,0xbd,0x5d,0x43,0xb0,0xaf,0xa3,0xdb,0x2e,0x40,0x84,0xfc,0x71, + 0x73,0x3f,0xc7,0xc3,0x4f,0x6f,0xa8,0x67,0x82,0x27,0x2d,0x81,0xa4,0xf5,0x40,0x20, + 0xc4,0xd1,0x9e,0x5,0x61,0xc8,0xd2,0x34,0x59,0x93,0x8,0x41,0x42,0x58,0x2,0xd8, + 0x5b,0x8e,0xb0,0xcd,0x7d,0x2f,0x5f,0xd2,0x77,0xa6,0xbc,0xb8,0x5c,0x47,0xfd,0x3a, + 0xa2,0xf1,0x93,0xc2,0xeb,0xcb,0x85,0x1c,0xbf,0xc5,0x2d,0x3,0x5e,0xa5,0x81,0xd9, + 0x7b,0xd0,0x19,0x17,0xa0,0xb7,0x51,0xd2,0x2e,0x40,0x40,0x7e,0x43,0xf4,0x88,0xb9, + 0x1f,0x23,0x49,0x22,0x89,0xd5,0x3e,0x42,0xf4,0xe0,0x38,0xf5,0x82,0xa7,0x37,0x6e, + 0xa,0x8e,0x87,0x35,0x60,0xef,0x17,0x17,0x8,0x62,0x2d,0xe4,0x12,0x2a,0x40,0xa5, + 0xb2,0x16,0x20,0x4,0xe2,0xc9,0x43,0x1,0xf9,0x49,0x97,0x11,0xef,0x14,0xf1,0x85, + 0xd0,0x1b,0xd6,0xe6,0xdc,0x37,0xb5,0x6d,0x7,0x65,0x46,0xc,0xb,0x8f,0xcb,0xb5, + 0xaf,0x0,0xed,0xc5,0x5,0x45,0xcc,0x32,0xb0,0x5,0x81,0x67,0x3e,0x10,0x2,0xce, + 0x1a,0x70,0xe8,0xa,0xba,0x6c,0x1f,0x49,0xa0,0xaf,0x3d,0xf2,0xb,0x69,0x3,0x52, + 0x2a,0xb2,0xf2,0x36,0x75,0x8c,0x10,0x9b,0xad,0x84,0xf8,0x77,0xbb,0x9d,0xd8,0xc7, + 0x16,0x8,0x76,0xbb,0xf6,0xf9,0xf4,0x9d,0xe9,0x36,0xf1,0x69,0x7e,0x74,0x1,0x55, + 0x2a,0x57,0x1,0x31,0x81,0xf,0x7c,0xe7,0x3b,0x4c,0x16,0x7c,0x40,0x1e,0x9c,0xd, + 0x57,0x9b,0x93,0xfc,0xb6,0xb,0x22,0xeb,0x49,0xe4,0x7,0xe1,0xb7,0xef,0xd4,0xcb, + 0x1d,0xbb,0x34,0xf9,0x47,0x8d,0x8,0xd6,0x83,0xdf,0xec,0xa5,0xdd,0x3e,0x20,0xed, + 0x61,0x89,0xf,0x7e,0xdb,0xb8,0x5e,0x3f,0x13,0xcb,0x3a,0xe1,0x6b,0x95,0x67,0x85, + 0x78,0x8b,0x11,0x4,0x80,0x8,0x2,0x7,0x87,0x7c,0xd0,0x25,0x1,0x10,0x44,0xf9, + 0xe3,0xe4,0xb7,0x5e,0xd4,0x8,0x6c,0x4d,0x6f,0x13,0xdc,0x82,0xbf,0x79,0x73,0xb8, + 0xbe,0x69,0x53,0x62,0x1b,0x59,0x1f,0x90,0x5c,0xac,0x5,0x23,0x48,0x2,0x61,0x62, + 0x1d,0x53,0x3d,0xfb,0x18,0x6a,0x7e,0x64,0x3e,0xa5,0xef,0xfd,0x9,0xcd,0xfa,0xcf, + 0x9f,0xd1,0xc2,0xdb,0x6f,0xf,0x7e,0x97,0xe0,0x5b,0xd6,0xb9,0x6c,0xc8,0x35,0xb, + 0x29,0x1,0x8,0x1,0x21,0xb2,0xfa,0x5d,0x88,0x6d,0x7f,0x52,0x5b,0xb7,0x53,0x66, + 0xe4,0xf0,0xe0,0xb9,0x44,0xf6,0x31,0xc7,0xc8,0x27,0xde,0x6,0xaf,0xcb,0xf9,0xb0, + 0xc4,0xf9,0x62,0x82,0xc0,0xbe,0x47,0x16,0x66,0xc6,0x34,0x76,0x42,0xc0,0x21,0x5f, + 0x74,0xda,0x5,0x10,0xb3,0x1f,0x2f,0x63,0x2e,0x93,0x3f,0x30,0xbf,0x41,0x46,0xa3, + 0xf1,0x83,0xfd,0x2c,0x4,0x44,0x37,0xc7,0x7,0x42,0x40,0xd6,0x25,0x12,0x3e,0x66, + 0x4c,0xf6,0x85,0x48,0x5b,0x56,0xc,0x0,0xed,0x61,0x5f,0x3e,0x16,0xa4,0xa8,0xa9, + 0xa1,0x86,0x97,0x5e,0xa6,0xaa,0xfd,0xa7,0xe1,0x0,0x42,0x2f,0x3b,0x88,0xf2,0xe4, + 0x1d,0x77,0xd0,0xd6,0xc3,0xe,0xd3,0xc7,0xcf,0x9c,0x45,0x9b,0xd7,0xae,0xcb,0x6e, + 0x1f,0xd7,0x6c,0xfb,0xee,0xf5,0x66,0x1f,0x90,0x11,0x64,0x5,0xb9,0x95,0x86,0x97, + 0x75,0xb9,0x47,0x68,0x7b,0x0,0xc4,0x67,0x72,0x9b,0xfd,0xd8,0x22,0xb0,0xb6,0xe1, + 0xfa,0x78,0xbb,0xb1,0x4,0xf8,0x38,0x11,0x2,0xea,0xbc,0xfc,0x9b,0x8,0x10,0x89, + 0x23,0xe0,0xdc,0xe3,0x4d,0x77,0xa1,0x22,0x7b,0xc4,0x2d,0x30,0xfb,0x40,0x8,0x64, + 0x54,0x3b,0x10,0x2,0xce,0x1d,0x70,0xe8,0x8,0x9d,0xa,0x20,0xd8,0x9a,0x1f,0xe4, + 0x97,0xec,0x35,0x71,0x3,0x4,0xe9,0x75,0xeb,0xf5,0x4a,0x59,0xb6,0x7c,0xf1,0x37, + 0xd6,0x73,0xf2,0x8e,0x97,0xb6,0x7e,0x13,0x32,0x67,0xda,0xb4,0x6f,0x3b,0x76,0x9c, + 0x22,0x73,0xbd,0x8e,0x72,0xa5,0xd2,0xd1,0xe3,0xdb,0x5a,0xd9,0x5f,0xb7,0xf7,0x41, + 0x7b,0xa9,0x71,0xe3,0xb9,0xed,0xac,0x63,0x4d,0xdb,0x4d,0x2b,0x56,0x51,0xe5,0xfe, + 0x53,0xa9,0x51,0x2d,0x53,0xea,0xc7,0x8a,0xa9,0xb5,0x94,0xbe,0xe6,0x6a,0x4d,0xac, + 0x59,0x87,0xe9,0x6e,0x36,0xdc,0x47,0x5b,0x9b,0x36,0xbb,0x27,0x18,0x5f,0x7b,0xbd, + 0xe5,0x1a,0xa4,0xd3,0x94,0xda,0xbc,0x95,0x32,0x35,0xa3,0x34,0x51,0x5b,0x5b,0xc3, + 0x75,0x1c,0x97,0x8e,0x5e,0x6b,0xbb,0x50,0xfb,0x67,0x46,0x8f,0xa4,0xd4,0x96,0x6d, + 0xd1,0xa5,0xb4,0x25,0xda,0xbe,0xa5,0x85,0x32,0x63,0x46,0xeb,0xf3,0x42,0xe0,0xd8, + 0xbd,0x1d,0xe3,0x26,0x6,0xeb,0x91,0x20,0x21,0x4,0x88,0xf9,0x9b,0x94,0xa2,0x10, + 0x70,0x41,0xc0,0x8,0xba,0x15,0x4,0xcc,0xdb,0x5,0xb0,0x35,0xbf,0xd,0x21,0x3f, + 0x48,0x9f,0x5e,0xbf,0x81,0x3f,0x6d,0x13,0x27,0x44,0xc8,0x90,0xa9,0xdf,0x10,0x59, + 0x82,0xac,0x9c,0xb7,0xe7,0x67,0xa2,0x56,0x1,0x8,0xab,0x4,0x83,0xbf,0x65,0x8b, + 0x5a,0x2f,0xe3,0xf5,0x88,0x70,0x50,0x1f,0x3e,0xd6,0x33,0x6d,0x41,0xfe,0x8c,0x1d, + 0x17,0xb6,0x8d,0x63,0x37,0x6d,0xc,0x8f,0x55,0x68,0x5c,0xbe,0x42,0x91,0x7e,0xa5, + 0xda,0xe6,0x51,0xf3,0xca,0xd5,0x58,0xd0,0x82,0x35,0xab,0xd9,0x3a,0xb8,0xfc,0xca, + 0xcf,0xeb,0xf6,0x97,0x2d,0xd,0xef,0xb,0xd7,0xd,0xf2,0xaf,0x5b,0xa3,0xc9,0x2f, + 0xe7,0x7,0xf9,0x37,0x6d,0xd1,0xe6,0xb9,0x22,0x2b,0x43,0x9,0xb8,0xc0,0x97,0xb7, + 0xef,0x77,0x8d,0x76,0x2b,0x32,0xeb,0xcc,0x7d,0xaf,0x5d,0x1f,0xd9,0x1e,0xb4,0x87, + 0x63,0xe3,0x4b,0x69,0x3,0x9a,0xdf,0x3c,0x6f,0x3e,0x9f,0xb8,0xd,0xc6,0xc2,0xe0, + 0xef,0xb0,0x4a,0x20,0xac,0x4c,0x0,0x33,0x12,0x1b,0xe8,0x68,0x4c,0x82,0x83,0x3, + 0xe5,0x29,0x3d,0xec,0x68,0xbf,0xed,0xef,0x4b,0xe0,0x49,0xba,0xa2,0x92,0x34,0x3f, + 0x88,0x9,0xd2,0xa,0xf9,0xbd,0xb2,0xf2,0xac,0xf6,0x41,0xd2,0xaa,0xe9,0xfb,0x7, + 0xcb,0x76,0x1,0x41,0x0,0x41,0x61,0xac,0x5,0xd1,0xfe,0x68,0xdf,0xb,0xfc,0xeb, + 0x90,0x8c,0x68,0x93,0xdd,0x1,0x8b,0x14,0x29,0xf5,0xbd,0x7c,0xca,0x24,0x9a,0xb7, + 0x6c,0x19,0x9d,0x7c,0xf5,0xd5,0x74,0xcc,0xac,0x59,0xec,0xa,0x4,0x26,0x36,0x96, + 0xa2,0x65,0x40,0x72,0x45,0x7c,0xd6,0xc2,0x39,0x34,0x7d,0x66,0x75,0x1d,0xa5,0x6a, + 0x27,0x53,0xa6,0x6e,0x5d,0xf0,0x6c,0x2,0x8b,0x22,0xe7,0x7d,0xe8,0xdf,0x53,0x13, + 0xc7,0x7,0xc7,0x67,0x41,0xac,0x4,0x73,0xde,0x60,0xdd,0x5c,0x1b,0xb,0x89,0x76, + 0xac,0x1,0xdf,0xf4,0x10,0x94,0x9a,0x15,0xe0,0x2c,0x80,0x8,0xba,0x65,0x1,0x74, + 0x78,0xb0,0xad,0xf9,0x23,0x99,0x7d,0x96,0xe6,0x87,0xc6,0x8f,0x4,0xf9,0xac,0x97, + 0x3f,0x20,0x3e,0x7,0xe8,0x62,0xc4,0x94,0xed,0x81,0x59,0xab,0xdc,0x9,0x10,0x5b, + 0x21,0xa7,0x40,0x10,0x1,0x60,0x7f,0xe7,0xf3,0xa6,0xb3,0x7f,0xb3,0xce,0xe5,0xb1, + 0x3b,0xa0,0x4e,0xa3,0xb4,0x24,0xdf,0xf4,0xe4,0x49,0x2c,0x8,0x7e,0xb4,0x7b,0x27, + 0xbd,0x3d,0xa8,0x9a,0x7e,0x7e,0xf7,0x3d,0xa1,0x10,0xc0,0xf5,0x1b,0xe2,0xf3,0x7d, + 0x24,0x98,0xf6,0x20,0x6d,0x40,0xf0,0x1c,0x84,0xf7,0xd6,0xad,0xd6,0x5d,0x8f,0x13, + 0x6b,0xc9,0xdb,0x50,0x47,0xfe,0xf8,0xc9,0xe1,0x12,0xbf,0xa9,0xed,0xd1,0x46,0x3b, + 0x10,0xa,0xc6,0x35,0xe0,0x58,0x82,0xe9,0x62,0xc,0xba,0x1a,0x1,0x8,0x2f,0x43, + 0xe,0x8,0x1,0xee,0xa5,0xa1,0xd2,0x73,0x3,0x9c,0x0,0x88,0xa0,0xf8,0x2e,0x0, + 0xb4,0x48,0x40,0x7e,0xbb,0xab,0x4e,0x81,0xc9,0xf,0xcd,0x6f,0x93,0x5e,0x99,0xe1, + 0x20,0x3e,0xcc,0x71,0x68,0x7c,0xd6,0xfa,0x31,0xf2,0x83,0xd8,0x9e,0x21,0x96,0x2f, + 0xa6,0xab,0xdc,0x8a,0xb1,0x24,0x64,0xf0,0x86,0x8,0xb,0x7d,0xc5,0x31,0xf2,0xdb, + 0xdf,0x73,0x3c,0xa,0x9c,0x8b,0x5,0xb,0x5c,0x6,0x21,0x86,0x89,0xfe,0x5f,0x7d, + 0xe8,0xa1,0x74,0xc8,0xbe,0x6,0xbd,0xa3,0xe9,0x72,0xe3,0x6e,0x3b,0x90,0xbf,0xbc, + 0x3c,0x6a,0xda,0x1b,0xd,0xf,0xd3,0x9e,0xc9,0x29,0x3d,0xf,0x38,0xf5,0x6,0x1d, + 0x2b,0xf0,0xd6,0xaf,0x66,0x72,0xeb,0x6b,0x4d,0xe9,0x1c,0x83,0xd,0x5a,0x58,0x30, + 0xf9,0xcd,0x12,0x2,0x6,0xfb,0x5,0xc7,0xe1,0x18,0x79,0x7e,0x70,0x1d,0xd4,0xef, + 0x38,0x5f,0x60,0x55,0x0,0xe9,0x74,0x90,0x5f,0x90,0xd8,0x3,0x1,0xe1,0x25,0x2e, + 0x81,0xba,0x3f,0x9c,0x7b,0xab,0x5a,0x5e,0x69,0x3f,0x3f,0x7,0x7,0xb,0xed,0x4a, + 0xf,0xd6,0xfe,0x20,0xbf,0x9d,0xe1,0x27,0x9a,0xdf,0xce,0xde,0x33,0x1a,0xd3,0x86, + 0x98,0xfe,0xfe,0x66,0x74,0xd3,0x45,0x89,0xc,0xe2,0xfb,0x41,0x37,0x96,0x39,0xc0, + 0x58,0xb2,0x9e,0xc,0x8a,0x51,0xda,0xe,0x9b,0xc4,0x2,0x48,0xb4,0x6,0x38,0x86, + 0xa0,0x2c,0x93,0xd6,0x96,0x30,0x30,0xb8,0xb9,0x5e,0xf,0xb,0xb4,0x62,0x0,0x62, + 0x4d,0x44,0xce,0xd,0x2,0xa9,0x73,0xe1,0xf4,0xb,0x57,0xad,0xa4,0x87,0x27,0x4f, + 0xa4,0xfb,0xbe,0xfe,0xd,0xf2,0x26,0x4d,0x88,0x3c,0x14,0xf6,0xdb,0x25,0xe,0x10, + 0xd7,0xf0,0x8a,0xec,0xfe,0x4,0x4b,0xbb,0x6f,0x5c,0x87,0x28,0xa5,0x7a,0x5e,0x8a, + 0xa8,0x9b,0xb7,0x2a,0x35,0x3c,0x2a,0xdc,0x59,0xf9,0xf1,0x9e,0x32,0xe1,0x7d,0x90, + 0x17,0xa6,0xbb,0x2c,0xb1,0x1f,0xa0,0xf6,0xe5,0xb3,0x70,0xac,0xc3,0x8f,0x5a,0x7, + 0x66,0x1c,0x40,0x4a,0x5d,0x5b,0x78,0xef,0x7e,0xd0,0xab,0x10,0xac,0xa3,0xd7,0xc0, + 0xb6,0x6,0x4,0x4a,0x28,0xdc,0x7d,0x7c,0xf7,0x47,0x47,0xf6,0x15,0x38,0xb,0x20, + 0x82,0xe2,0x67,0x2,0x76,0x94,0xda,0x6b,0x6f,0xb7,0x7d,0x7d,0x1d,0x90,0x4b,0x47, + 0x35,0x3e,0xfc,0x52,0x98,0xe1,0xd0,0xc4,0x20,0xa2,0x1f,0xde,0x81,0x6c,0xc3,0xb2, + 0x42,0xed,0xdf,0xbc,0x72,0x15,0x35,0xa9,0x63,0x2b,0xd5,0x7a,0x40,0x7e,0x31,0xf9, + 0xa5,0xb7,0x40,0x11,0x9e,0x7d,0x7f,0x3b,0x0,0xe8,0xb5,0x5,0xd7,0x23,0xc7,0x89, + 0x10,0xf0,0x95,0x60,0x91,0xf3,0x64,0xd4,0x27,0xa5,0xd6,0xcf,0xaa,0x9d,0x4a,0xef, + 0xee,0xd9,0xa5,0x9b,0x5d,0xbb,0x9e,0x85,0x0,0x9f,0xa,0xda,0xb7,0x7e,0x2d,0x9b, + 0xf0,0x7c,0xbe,0x18,0xe1,0x71,0x4e,0xaf,0x7e,0x8d,0xd2,0xea,0xea,0xbe,0x96,0xbd, + 0xce,0x3e,0x77,0xc4,0x5d,0x90,0x80,0x9d,0x79,0x46,0x20,0xff,0xdc,0x6d,0x5b,0xe9, + 0x8f,0xf6,0xef,0xd8,0x1f,0xa6,0xbd,0x5a,0xc7,0xb5,0x9,0xbc,0x32,0xa3,0xf9,0xdb, + 0x5a,0xb5,0x77,0xa4,0xae,0x81,0x2d,0x3,0xc4,0x3c,0x70,0x7d,0x76,0x32,0x91,0x75, + 0xe,0xd9,0xc6,0x14,0xc1,0x73,0x19,0x37,0x91,0x3c,0xd5,0xf6,0x95,0xf3,0xe7,0xd3, + 0xdd,0xe7,0x9e,0x9b,0xfc,0xf7,0x73,0x18,0xb0,0xc8,0x29,0x0,0xe2,0xda,0x3f,0xb, + 0xb6,0x56,0x44,0xdf,0xb3,0xd1,0xf8,0x11,0x58,0xe4,0x6f,0x5c,0xb4,0xc4,0x1c,0xa7, + 0x17,0x7e,0x5d,0x9d,0x36,0xf1,0x51,0x9e,0xc9,0x10,0x12,0x5d,0x73,0xa4,0x3e,0x2d, + 0x8a,0xf8,0xf,0x2b,0xc9,0xf9,0x91,0x8f,0x7e,0x54,0xf7,0x8,0xd8,0xa6,0xbe,0x65, + 0xf2,0xdb,0xbd,0xa,0x76,0xb0,0x91,0x5,0x42,0x42,0x3c,0x20,0xb0,0x4,0x24,0xbf, + 0xc0,0xb8,0x3,0xd8,0xff,0xb,0x43,0xf6,0x23,0xfa,0xea,0xbf,0xd1,0xb5,0xdf,0xbd, + 0x55,0x47,0xed,0x8d,0xab,0xc3,0xb7,0x69,0x88,0xcf,0x56,0x45,0xbd,0x36,0xe3,0x69, + 0xe9,0x6b,0xfa,0xd9,0x8,0xe9,0x2d,0xf2,0x57,0xac,0x5e,0x4d,0xcd,0xb5,0xb5,0x54, + 0x1,0xc1,0x69,0x45,0xe3,0xb1,0xed,0xe1,0x3d,0x7b,0xa9,0x62,0xf7,0x9e,0xc0,0xad, + 0xe2,0xeb,0x37,0xfb,0xe0,0x77,0x81,0x6f,0x2c,0x3,0xf,0x96,0x81,0x12,0x2,0x7c, + 0xde,0x71,0xba,0xbf,0x5f,0x7a,0x15,0x2,0x8b,0xc0,0x72,0xb,0x82,0x7c,0x84,0x1d, + 0x5a,0xa0,0x91,0x12,0x8,0x7c,0x9d,0xa6,0x47,0xc2,0xc1,0xc1,0x46,0xbb,0x16,0x40, + 0xbc,0x8,0x47,0x3c,0x9f,0x1f,0x5d,0x7e,0xfc,0xd2,0x5b,0x16,0x0,0x6b,0x79,0xcb, + 0x44,0x3,0xc9,0x9b,0x56,0xae,0xe,0xb5,0xbb,0x35,0x80,0xdf,0xf3,0x35,0xf9,0x1f, + 0x53,0x26,0x38,0x36,0xbd,0xad,0xb4,0x68,0x9b,0x22,0x6d,0x5a,0x1d,0x9f,0x1e,0x3d, + 0x8a,0x1e,0xfe,0xfd,0xef,0xe9,0x5d,0xb5,0x3c,0x70,0xcb,0x56,0x7a,0x7b,0xd4,0x48, + 0x3a,0x78,0xeb,0x36,0xfa,0xb0,0x12,0xa,0xf,0xa9,0xed,0x1f,0x3e,0xe9,0x44,0xe3, + 0x62,0x6c,0xc,0x4,0x41,0x70,0x4e,0x65,0x19,0xf0,0x36,0xa9,0xfd,0x66,0x9,0x2, + 0x11,0x2,0x81,0x5,0x82,0x4b,0x51,0xeb,0x38,0xff,0x1,0xaa,0xfd,0x97,0xb7,0x6e, + 0xa6,0x63,0x46,0xd5,0x30,0xe9,0x3d,0x7d,0x3,0x9a,0xf0,0xca,0xbc,0x17,0x52,0x6, + 0x5a,0xde,0xdc,0x37,0x8,0xf,0x64,0x24,0x21,0x9,0xbd,0xc,0x8a,0xfc,0x41,0x4d, + 0x4,0x3,0x6c,0x6b,0xa3,0xb0,0xd7,0x24,0xf0,0x7e,0xcc,0xf7,0x72,0xd3,0x4e,0xb, + 0x4,0x81,0x58,0x4b,0xea,0x9c,0x10,0x2,0xbc,0xcc,0xf8,0xfa,0x7a,0x8c,0x79,0xf, + 0x41,0x60,0xb,0x81,0xe8,0x43,0x8,0xbf,0xfb,0x8e,0xfc,0xe,0x39,0x90,0xa8,0xde, + 0x6d,0xed,0x1f,0x4,0xfe,0x62,0x99,0x7e,0xf6,0xb6,0xa4,0x48,0xbf,0x8e,0xbc,0xa7, + 0x82,0x60,0x1b,0xf1,0xee,0x5a,0xe3,0x57,0x9e,0xa4,0xfd,0x51,0x68,0x79,0x10,0x1c, + 0x1a,0xf8,0xcd,0x41,0xd5,0x34,0x43,0x69,0xc7,0xb7,0x86,0xc,0xa6,0x43,0xf6,0xee, + 0xa3,0x37,0x7,0xf,0xa2,0x19,0x6a,0x19,0x1f,0xed,0x97,0x31,0xda,0xf2,0x9a,0xc3, + 0xe,0x67,0x2d,0xef,0x8d,0x19,0x9b,0x75,0xfd,0x59,0xd6,0x40,0x42,0xd7,0x60,0xd0, + 0xfb,0x0,0x18,0xb7,0x3,0x82,0x68,0xb9,0x12,0x34,0xd7,0x7e,0xf1,0xaa,0xf0,0xbc, + 0x31,0x33,0x3e,0x4e,0x76,0xfb,0x1,0xb6,0xa5,0xb2,0xb7,0xe5,0x3,0x11,0xb4,0xe9, + 0x4c,0x38,0x9c,0x19,0x6d,0x4,0x16,0x1,0x4,0x2a,0xb6,0x49,0x4c,0x1,0xb1,0xf, + 0xe4,0xfb,0x8c,0xf,0x93,0x7f,0x22,0xf1,0x1,0x79,0xe,0x75,0xeb,0xc2,0xbf,0xd3, + 0x1b,0x4b,0x79,0x79,0xf7,0x7f,0xfc,0x47,0x27,0xaf,0xae,0xef,0xc1,0xc5,0x0,0x22, + 0x28,0x5e,0xc,0x20,0xa9,0x98,0x47,0x10,0xfc,0xdb,0x18,0xcd,0xd7,0xf,0x8,0x67, + 0x88,0x66,0x13,0x8c,0x23,0xe1,0x86,0xfc,0xb,0x33,0xad,0xf4,0xce,0xb2,0xa5,0xdc, + 0xfd,0xf0,0x66,0xed,0x64,0x2a,0x53,0xdb,0x96,0x6d,0xdf,0x41,0xad,0xdb,0x95,0xf6, + 0x6d,0x6d,0xa3,0xd4,0xd6,0xad,0xf4,0x37,0xf5,0x5b,0x9b,0xb2,0xfc,0x97,0x29,0x2d, + 0x58,0x56,0x55,0x45,0x33,0x47,0x8e,0x50,0xe4,0xd2,0xda,0xf6,0x10,0x25,0x24,0x20, + 0x1c,0xe6,0x2d,0xd5,0x3e,0xf7,0x1,0x8b,0x16,0xd3,0x5c,0x65,0x15,0x30,0xc,0x69, + 0xc5,0x15,0x91,0x25,0x67,0x1f,0x22,0x50,0x68,0x72,0x10,0x2,0x2b,0xc0,0x8,0x28, + 0x90,0x1f,0xf1,0x80,0x73,0x6a,0xa7,0x72,0x7e,0xc0,0xb5,0x72,0xcf,0x26,0xca,0x2e, + 0xa4,0x67,0x42,0x5a,0x99,0x78,0x99,0x18,0xe1,0xbb,0xfa,0x97,0x90,0xe3,0xd0,0x1e, + 0x1b,0x48,0xea,0xfd,0x4e,0xab,0x73,0x88,0x2b,0x21,0x96,0x6,0x7,0x10,0x4d,0x40, + 0xd0,0x43,0x0,0x51,0x59,0x4c,0x58,0x42,0x10,0x70,0xcf,0xc4,0xc4,0xa8,0xb,0x96, + 0x9a,0x3c,0x51,0xc7,0xd,0x94,0xf5,0x52,0xae,0x5c,0xae,0x3b,0x1e,0x78,0xa0,0x8b, + 0x57,0xe8,0x50,0xaa,0xc8,0x12,0x0,0x59,0xbe,0x7f,0x12,0xf9,0xcd,0x88,0x3c,0xdb, + 0x7,0x97,0x2e,0xbf,0x2c,0xcd,0x4f,0xfa,0x5,0xaf,0x38,0xe1,0x78,0x7a,0x44,0x49, + 0xc3,0x47,0x14,0xc1,0xf0,0x3a,0x57,0x34,0x36,0xd0,0xdf,0x56,0xaf,0x9,0xb,0x85, + 0x2a,0xa0,0x78,0xd3,0x22,0xb3,0x4,0x5a,0x11,0x14,0xdb,0xbb,0x97,0x3f,0x65,0xfb, + 0x55,0xd3,0x8e,0xf,0xce,0x50,0xc2,0x43,0xf7,0x6e,0xbf,0x55,0x5d,0x45,0x3f,0xf9, + 0xf0,0x47,0xe8,0x7,0xbf,0xf9,0x8d,0xde,0x59,0xba,0x21,0x63,0xfd,0xf1,0x41,0x6f, + 0x4,0xae,0x15,0xbe,0xb4,0x65,0xd,0xf8,0x26,0xfe,0xc0,0xf7,0x60,0x96,0x8f,0x2c, + 0x5e,0x42,0xf,0xaa,0xcf,0x5,0xdf,0xbc,0x91,0xca,0x10,0xa7,0x30,0xc9,0x34,0xbc, + 0x8f,0xfa,0xde,0x9a,0x42,0x7d,0xc3,0x98,0x9,0x6f,0x96,0x77,0xfe,0xee,0xf7,0xf9, + 0x3e,0xf7,0x2c,0x7c,0xe1,0xe2,0x8f,0x6,0x6d,0xfa,0xea,0x1c,0xad,0x6a,0xd,0x16, + 0x41,0x44,0xf8,0xf0,0xe,0xe1,0xdf,0xc5,0x33,0xa9,0xc1,0xd2,0x95,0x18,0x3c,0xcb, + 0x78,0x8d,0x84,0x2d,0xdb,0xa8,0x65,0xca,0x14,0xfa,0xd2,0x45,0x17,0xd1,0xf,0x9d, + 0x10,0x70,0xb0,0xd0,0x7e,0x2f,0x40,0x42,0x0,0x30,0x5d,0x8f,0x84,0x1f,0x43,0x8, + 0xa3,0xf5,0xb5,0xe6,0x37,0xfd,0xe1,0x71,0xcd,0xaf,0x3e,0xa2,0xf5,0xdf,0x56,0x1a, + 0xbf,0x5c,0x91,0xee,0x6f,0xeb,0xd7,0xd3,0xb1,0x6d,0x19,0xfa,0xa0,0xfa,0x4d,0x51, + 0x92,0x3e,0x41,0x23,0x78,0xff,0x13,0xae,0xfe,0xb7,0xc4,0xcb,0x58,0x3c,0xef,0x56, + 0xa2,0x5d,0x4a,0x68,0x3c,0x56,0x47,0xdb,0xcf,0x1c,0x43,0x3f,0xac,0x99,0x48,0xe3, + 0x32,0xa3,0xe8,0xb3,0xf,0x3f,0x44,0x3f,0xba,0xe6,0x1a,0xfa,0xfe,0xed,0xb7,0xd3, + 0x57,0x2e,0xb9,0x44,0xb,0x26,0x63,0x2e,0xcb,0x35,0xd8,0x1,0x42,0xee,0x92,0x34, + 0xe6,0x63,0x24,0x20,0x68,0x2,0x72,0x19,0x25,0x70,0xce,0x9c,0x3c,0x85,0x2a,0x8f, + 0x9d,0x4d,0xe9,0xd7,0x97,0x5,0xcf,0xa0,0xcd,0xe4,0x28,0x14,0x92,0xf0,0x71,0xd8, + 0x6d,0x89,0x30,0xd0,0x2e,0x85,0x16,0x4,0x76,0x7c,0x80,0x2d,0x3,0x5c,0x13,0xac, + 0x0,0x74,0x2f,0x4a,0xda,0xb0,0xc0,0xfe,0xbb,0x6d,0xd4,0xa3,0x8,0x39,0x26,0x91, + 0x2b,0xa0,0xeb,0x30,0x60,0x91,0x2d,0x0,0xec,0x3e,0xff,0x98,0xef,0x6f,0x6b,0x1f, + 0x1e,0xc9,0x87,0x20,0x9e,0x95,0xda,0x1b,0x44,0xfa,0x1,0x93,0x4,0x3,0xcd,0xff, + 0x8e,0x32,0x55,0x91,0x6d,0x57,0xd5,0xd4,0x48,0x4b,0xea,0x37,0x11,0x22,0x0,0x9f, + 0xa0,0x1a,0x6a,0x51,0xf4,0xf,0x48,0xf,0x56,0xcd,0x3d,0x97,0xe8,0xf,0x8f,0x12, + 0x5d,0x78,0x9e,0x5a,0xce,0xf,0xfa,0xf9,0x4f,0x5c,0xb2,0x98,0xe8,0x8f,0xf3,0x79, + 0x9f,0xc5,0x3f,0xb8,0x95,0xbe,0x3d,0x62,0x17,0x2d,0xb9,0x71,0xe,0xbd,0xaa,0x6c, + 0x5,0x54,0xf9,0x1,0xf9,0x1b,0x27,0x4d,0xa2,0xc1,0xb0,0x50,0x26,0x6a,0x5f,0x38, + 0x48,0x4b,0x46,0xd7,0x98,0xb8,0x2,0x6d,0x6d,0xa1,0xab,0xa2,0xae,0x3b,0x70,0x5, + 0xd4,0x39,0x3c,0x68,0x76,0x65,0x19,0x2c,0x5c,0xbd,0x92,0xa8,0x6e,0xd,0x7d,0x4a, + 0x99,0xcf,0xbf,0x38,0xf6,0x3,0xca,0xd7,0xa7,0x80,0xf1,0x3f,0x2a,0x20,0xe1,0xdb, + 0x83,0x8,0x3,0x5b,0x10,0xa4,0x8d,0x7a,0x17,0x8b,0x80,0x61,0x45,0xfe,0x7d,0x8, + 0x2,0x6c,0xc3,0xdf,0x66,0xdc,0x24,0xf2,0xea,0xd7,0xf2,0x92,0xcc,0xc8,0x43,0x7, + 0x87,0x24,0x44,0x4,0x40,0x56,0x6d,0xbf,0x76,0x20,0x43,0x74,0xe1,0x5f,0x4b,0xd2, + 0x8d,0x87,0xaa,0x3b,0xa6,0x78,0x27,0xdb,0x3,0x4a,0xdb,0xde,0xae,0xc8,0x9f,0x51, + 0xc4,0x1a,0xb1,0x7b,0xf,0x3d,0xb1,0x6d,0x1b,0x7d,0x40,0x6d,0xbe,0x4c,0x91,0xff, + 0xd8,0xab,0xaf,0xd1,0xd,0xcd,0x35,0x7d,0xd3,0x92,0xb7,0x3a,0xf7,0xbc,0x50,0x18, + 0x8,0xac,0xef,0x27,0x9a,0xef,0x8d,0xd7,0x7d,0x8f,0x16,0x9f,0x36,0x95,0xee,0xbd, + 0x77,0x11,0xfd,0xe8,0xf3,0x57,0xf2,0xcb,0x9f,0xa9,0x19,0x4d,0x1e,0x12,0x88,0xd2, + 0xe9,0xa8,0x20,0x30,0x49,0x4a,0x9e,0x71,0x5b,0xbc,0x84,0xd4,0x5e,0xc8,0x9a,0xca, + 0xfd,0x6b,0xe9,0x6c,0x3c,0x94,0xc9,0x13,0x68,0xf9,0x9b,0x6f,0x6,0xbf,0xdd,0xf9, + 0xfb,0x9e,0x21,0x7e,0x1c,0xb6,0x20,0x90,0x0,0x63,0x99,0x25,0x8,0x82,0x98,0x84, + 0x2,0x92,0x8c,0x82,0xee,0xcd,0x7a,0xe3,0x7e,0x99,0x25,0xf6,0x8d,0x8f,0xd8,0x74, + 0x88,0x42,0xaa,0x7,0xc7,0xd1,0xd7,0x83,0x8c,0xdd,0x45,0xee,0xb7,0xc2,0xea,0xfa, + 0xe3,0xa5,0x54,0xec,0x31,0xda,0x5f,0x7f,0x36,0x32,0xf9,0x79,0xc4,0x9d,0xd2,0xfe, + 0x42,0x7e,0x21,0x18,0x4c,0x7f,0x74,0xfb,0xad,0x29,0x2f,0xa3,0x3f,0x2b,0xf2,0xff, + 0x44,0x11,0x1f,0xe6,0xfe,0xb1,0x4b,0x9e,0xd6,0x84,0xbe,0xe0,0xdc,0x90,0xf8,0x94, + 0xb0,0xe4,0xc6,0xcc,0xf2,0x7e,0x93,0x3e,0x73,0xe1,0xb9,0xbc,0xed,0x83,0xf3,0x17, + 0xd2,0x55,0xcf,0xd4,0xd1,0x8c,0x2f,0x9d,0xc7,0x53,0x88,0x1,0xd,0x53,0xa7,0xea, + 0x68,0x79,0x6b,0x6b,0x70,0x38,0xb,0x2,0x63,0xf6,0xcb,0xc8,0x41,0xaf,0x66,0x8c, + 0x66,0x7c,0xa6,0x4d,0x27,0xa,0x79,0xfa,0xa4,0x48,0x3c,0x2a,0x9f,0x56,0x4b,0x8f, + 0x2e,0x79,0x8e,0x2f,0xe1,0x93,0x2f,0xbd,0x58,0x50,0x33,0xbf,0xab,0xb0,0xaf,0xc1, + 0xae,0xbd,0x28,0xd6,0x80,0x6f,0x7a,0x2a,0x7c,0x63,0x11,0xf8,0x46,0xeb,0x8b,0x45, + 0x20,0xf1,0x83,0x1f,0xf6,0x92,0x20,0xeb,0xab,0x0,0xe9,0xe5,0xd3,0xd1,0x3e,0xa5, + 0x8a,0x58,0x6e,0x6b,0x76,0x29,0xef,0xa0,0xdf,0xdf,0x9e,0x18,0x43,0xa,0x74,0x98, + 0xef,0x9c,0xe5,0x67,0xa,0x6f,0xf2,0x4b,0xa7,0xb4,0xf0,0xc2,0xd6,0x66,0x7a,0x73, + 0xec,0x18,0x7a,0xa7,0xaa,0x92,0x9e,0x5f,0xbb,0x8e,0x35,0x3f,0xb4,0xfe,0x9,0x30, + 0xe7,0xf9,0x58,0xa,0x97,0xf2,0x89,0x1b,0x1e,0xf6,0xf6,0x4b,0xe7,0x46,0x85,0xc0, + 0xe3,0x4f,0x51,0xba,0xa1,0x85,0xde,0xfd,0xf6,0x7f,0x53,0x55,0x5b,0x46,0x4f,0x1f, + 0x46,0x46,0x8,0xe0,0x10,0x25,0x4,0x2,0x37,0x0,0xb0,0x92,0x95,0x38,0x78,0x89, + 0x5e,0x9,0xcf,0x1e,0x94,0xa4,0xa3,0xfb,0xf,0x3e,0xf3,0xc,0xe7,0x1a,0xf4,0xb5, + 0x21,0xb5,0x10,0x2,0xf8,0x70,0xac,0x2,0x9f,0x58,0xe,0x2,0x48,0x8f,0xa0,0xa0, + 0x6f,0x52,0x8e,0x79,0x9b,0x11,0xc,0x41,0x4e,0x82,0x43,0x80,0xce,0x92,0xba,0x54, + 0x5,0x41,0xee,0x20,0x60,0x3c,0xf9,0xc7,0x32,0x21,0xd9,0xff,0xe7,0xef,0xa9,0xa8, + 0xdf,0xcf,0x7,0xa4,0xf5,0x30,0x61,0xf5,0x96,0x22,0xe0,0xf7,0xee,0x9e,0x3d,0x1c, + 0xec,0xfb,0xb8,0x9,0xf4,0xe9,0x6,0x28,0x4a,0x78,0x9b,0xf8,0x12,0x39,0x4,0xd9, + 0x41,0xfa,0xdf,0x3f,0x4c,0xf4,0xd1,0xf,0xeb,0xdf,0xf0,0x9d,0xc2,0xdf,0x4e,0x54, + 0x6d,0x9c,0xf8,0x83,0x3f,0xd0,0x7f,0x55,0x2f,0xa5,0x19,0xcd,0x87,0x7,0x13,0x84, + 0xec,0x35,0x42,0x60,0xb0,0x5c,0xb3,0x8c,0xee,0xb3,0x3,0x82,0xa6,0x78,0x48,0x95, + 0xa7,0xb3,0x15,0x71,0x3f,0x95,0xfb,0x4f,0xa3,0xb,0xd4,0x7,0x9,0x48,0x34,0x7a, + 0x94,0xd2,0xb6,0x7d,0xcf,0x6c,0x86,0x16,0xff,0x92,0x74,0x7b,0x42,0xbb,0x4f,0x99, + 0x12,0xb8,0x3,0x20,0x3c,0x8f,0x37,0x90,0x7a,0x5,0x10,0x4,0x76,0x1e,0x83,0x3, + 0x23,0x89,0xc8,0x62,0xea,0x4b,0x30,0x5b,0xa6,0x12,0x8b,0xef,0x8b,0xef,0xa5,0xe4, + 0x16,0x64,0xbd,0xe1,0x52,0x6f,0x5f,0x10,0xb1,0x0,0x6c,0x88,0xf6,0x3f,0x29,0x3a, + 0xc8,0xc4,0xe6,0xf4,0xbb,0xd5,0x55,0xb4,0x63,0xc7,0x4e,0xf6,0xf9,0x39,0xd8,0x37, + 0xf7,0xdc,0x64,0xf2,0xcb,0xe7,0xd7,0x7f,0xd4,0x84,0x7,0x2a,0x2c,0x3f,0x5d,0x34, + 0xff,0x3,0x8f,0x44,0x7f,0x53,0xc7,0x2c,0xa6,0x77,0xe8,0x85,0x7f,0xff,0xad,0x12, + 0x36,0xd1,0xeb,0x1b,0xbc,0x6a,0x55,0x78,0xf,0xc6,0xd,0x88,0xd7,0x26,0x60,0x17, + 0xc6,0x2,0xa,0x87,0x78,0xa3,0x47,0x6b,0xb,0x40,0xef,0x41,0x7d,0x11,0x62,0xca, + 0x23,0x19,0x29,0x12,0x14,0x24,0xa3,0xf5,0x65,0x94,0xa2,0x5a,0x97,0xe8,0xbf,0x33, + 0xff,0x35,0x3a,0x43,0x7e,0xfb,0x37,0x1,0xe6,0x19,0x98,0x33,0x67,0x4e,0xf1,0x2e, + 0xb0,0x87,0x11,0x8,0x80,0x60,0xdc,0x7f,0x2,0x22,0xd5,0x76,0x1,0xe3,0x87,0xa2, + 0xcc,0x16,0x5b,0x0,0xd2,0x5,0x68,0xd2,0x57,0x61,0xfe,0xbf,0x5b,0x33,0x9a,0x2a, + 0x94,0x2b,0x0,0xed,0x8f,0x68,0x7f,0x24,0xa8,0x67,0x13,0x1e,0x4b,0x90,0x1e,0x1f, + 0x68,0xf8,0xe6,0xb6,0x50,0xeb,0x63,0x89,0xef,0x62,0x9,0x5c,0x74,0x7e,0xf8,0xdb, + 0x3,0x8f,0x72,0x53,0x27,0x2a,0xc1,0x72,0x6f,0xcb,0x6c,0x7a,0x33,0xb3,0x3e,0x88, + 0x5,0xe0,0x6a,0xf6,0x99,0x78,0x40,0xa4,0x37,0x60,0xcc,0xd8,0xd0,0x2,0x40,0xac, + 0xc0,0x64,0x11,0x56,0x29,0xbf,0x1f,0x2,0x2,0xb5,0x3,0xff,0xa8,0x88,0xf2,0xfd, + 0xa7,0x9f,0x32,0x42,0xb0,0xef,0x46,0xcf,0x3,0x21,0x60,0xba,0x5d,0xe3,0x82,0x0, + 0xe0,0xe0,0x9f,0xeb,0x1,0xc8,0x89,0xc5,0x4b,0x96,0xf0,0x7,0x90,0xd9,0x83,0x65, + 0xea,0x70,0xbb,0x5b,0x1b,0x42,0x0,0x9f,0x52,0x9c,0x64,0x24,0xaf,0x3b,0xca,0x9e, + 0x94,0x43,0x13,0xd,0x35,0xf6,0xbc,0x49,0x3a,0x2f,0x5d,0x2a,0xee,0x80,0xfc,0x78, + 0xe5,0x90,0xda,0xfb,0xc6,0xf6,0xed,0x4a,0xfb,0x8f,0x89,0x76,0xf5,0xc9,0xfb,0x28, + 0x84,0x37,0x44,0x66,0x21,0x82,0xae,0xbf,0xaa,0x8a,0x70,0x1d,0xcb,0xca,0x72,0xb5, + 0xcf,0xfc,0x50,0x20,0x30,0xf9,0x4d,0x17,0xa1,0xc1,0xb,0xb4,0x82,0x26,0x56,0x24, + 0x54,0x12,0x26,0xa,0x7a,0x3,0x82,0x62,0x1b,0x56,0x8a,0xb0,0x6d,0x1,0xf0,0xa5, + 0x29,0xed,0x8f,0xac,0x42,0x74,0x2b,0x66,0x58,0xb,0xf4,0x4d,0xb,0x40,0x60,0x5b, + 0x2,0x10,0x4,0x48,0x5c,0xb2,0x3f,0x12,0x27,0x70,0xda,0x5f,0x23,0xae,0xfd,0x6d, + 0xc2,0xdb,0x5a,0x5f,0x7e,0xb3,0x97,0x5e,0x8c,0xfc,0xa5,0x62,0x5,0x58,0xa3,0x78, + 0x34,0x33,0xe3,0x93,0x70,0x46,0xb4,0xbf,0x4,0x1,0x6b,0x74,0x10,0x90,0x23,0xff, + 0x3c,0x35,0x97,0xa9,0xed,0x67,0x1e,0x16,0xb4,0x3f,0xf6,0x3d,0xa8,0xb2,0x4c,0x69, + 0xff,0x16,0x73,0xac,0x69,0x3,0x24,0x66,0xe5,0xaa,0x4e,0xfd,0xfb,0x47,0xf4,0xba, + 0x74,0xcb,0xa1,0x7d,0x4,0xf8,0xb8,0xe8,0x5f,0x9b,0x5e,0x5e,0x74,0x9e,0x6e,0x9f, + 0xf7,0xf5,0xb4,0x60,0xf0,0xc2,0x91,0x77,0x8b,0xe6,0xdd,0x4a,0xcd,0xea,0x1c,0x53, + 0x5e,0x59,0x9b,0x97,0xbe,0xe,0xc6,0x2d,0x98,0x1e,0x1,0x64,0x7,0x36,0xae,0x5c, + 0xad,0x73,0x2,0x5e,0x7a,0x99,0x37,0x21,0xbb,0xd0,0xc8,0xff,0x3c,0x5a,0xec,0x5d, + 0x74,0x44,0x6e,0x47,0xfe,0x64,0x40,0xf3,0xc7,0x4d,0xfe,0x24,0x17,0x0,0x90,0x7c, + 0xfe,0x52,0x9c,0x4b,0x30,0x3b,0x6,0x20,0x3d,0x0,0x6,0x11,0xed,0x2f,0xa3,0xdd, + 0x4c,0x39,0x6f,0xf8,0xff,0x1c,0xfd,0x7,0xb9,0xcd,0x38,0x7b,0x40,0x1e,0x9f,0xbf, + 0x73,0xb7,0xe6,0xfd,0xdc,0x73,0xb3,0xb9,0xe4,0x99,0x90,0x9d,0x9d,0x72,0x9c,0xf2, + 0xc2,0x4,0xa0,0xb4,0x2e,0xe1,0xa5,0x9,0x6f,0xf6,0x81,0xb,0x60,0xf5,0x46,0x0, + 0x27,0x29,0xeb,0xa2,0x82,0xca,0xe9,0xb6,0xdf,0xfd,0x25,0xbf,0x1b,0x56,0x16,0x80, + 0xe4,0x3,0x48,0x11,0xd2,0x2a,0x65,0xc9,0x34,0xa3,0x70,0xa8,0x2,0xcc,0x7f,0x58, + 0x0,0x57,0x5c,0x73,0xd,0xc9,0x74,0xdd,0x7d,0x1d,0x20,0x79,0xae,0x8f,0x83,0x86, + 0xad,0xfd,0x61,0xce,0x27,0x99,0xfb,0x40,0x7c,0xdd,0x9e,0x52,0x1c,0xb3,0x9,0xdb, + 0x42,0xa0,0x14,0xac,0x80,0x64,0x17,0x20,0x9e,0x3,0x80,0x9e,0x80,0x71,0xda,0x5f, + 0x96,0xda,0xfb,0x40,0xd3,0xca,0x55,0x7a,0x5c,0xbf,0x35,0x81,0xe5,0x3b,0xa3,0x47, + 0xd1,0xdb,0xd5,0x95,0x44,0x27,0x9c,0x48,0x9f,0xcc,0x8c,0xa1,0x13,0xbf,0x72,0x7d, + 0x76,0xdb,0x62,0x5,0x24,0x96,0xd1,0xd6,0x43,0x5e,0xf5,0xaa,0x21,0x3b,0xac,0x0, + 0xb1,0x18,0x52,0x5e,0x10,0x73,0x80,0xf6,0xc7,0x7,0x4d,0xfd,0xd8,0x3f,0x4e,0x8e, + 0x8e,0x9e,0xce,0x48,0x73,0x11,0x64,0x91,0x91,0x8b,0x6,0x28,0x15,0x8e,0xbd,0xd0, + 0xb,0xf0,0xc5,0xc1,0xfb,0xd1,0x1d,0xca,0x2,0xf8,0xe2,0xbd,0xf7,0xf0,0xb9,0xfa, + 0xbe,0xd,0xe0,0x50,0x8,0xd8,0xda,0x3f,0x89,0xf8,0xb2,0x5e,0x6a,0xc8,0x12,0x0, + 0xec,0x2,0x18,0xd,0x1b,0x99,0x6b,0xcf,0xcc,0xb6,0xc3,0x13,0x6f,0x18,0xb,0xa0, + 0x72,0xda,0x54,0x2e,0xe1,0xc5,0xe3,0xea,0x27,0xeb,0x58,0xc0,0x35,0xb3,0xe,0xa3, + 0x19,0x7b,0x1b,0x14,0xa1,0x7c,0x3a,0xea,0xfd,0x7,0x68,0xc2,0xa3,0xb9,0x7,0x1e, + 0x9,0x4d,0xff,0x5c,0x30,0x85,0x41,0xd9,0xd,0xf0,0xcd,0x77,0x1c,0x3,0x9f,0xff, + 0xa2,0x73,0x23,0x6e,0x6,0x0,0xed,0x2f,0x4,0xbd,0xc2,0x7b,0x21,0x8,0x31,0xd8, + 0xa4,0xb5,0xcb,0x96,0xf3,0xd,0x4b,0xd1,0x92,0x84,0x3e,0x7e,0xc4,0x0,0xca,0xce, + 0x3f,0x87,0x85,0xc1,0x15,0x9f,0xbb,0x42,0xef,0x96,0xfb,0x6a,0x1d,0xfa,0x39,0xe2, + 0x26,0xbf,0xbd,0x14,0xb2,0x83,0xfc,0xa5,0x48,0x7c,0x41,0x90,0x7,0xa0,0x73,0x80, + 0x7d,0xaa,0x46,0x34,0x99,0x4b,0x6c,0x19,0xed,0x9c,0x41,0x24,0x1d,0x85,0x3f,0x2c, + 0xd3,0x8,0x42,0x60,0xcb,0x16,0x6a,0x7c,0x6f,0xb9,0xce,0x43,0x57,0xf,0xc,0x15, + 0x76,0xfd,0x96,0x16,0x7a,0xe8,0x99,0xa7,0xe9,0xcb,0x9f,0xff,0x3c,0x5d,0xbe,0x6d, + 0x2b,0x3d,0x54,0xb9,0x9d,0xb8,0x43,0xd,0x8c,0x6c,0xa,0xb3,0xf3,0xa8,0x59,0x3d, + 0xe8,0xea,0x4,0xed,0x2f,0xa6,0x3e,0x9b,0xfd,0x64,0x9,0xb,0xdf,0x4,0x5,0xa3, + 0xf4,0x7e,0x76,0xde,0x2d,0x3c,0x32,0xaf,0x99,0x5a,0xe9,0x33,0x1f,0x3b,0x9e,0xa3, + 0xd,0x91,0x1,0x3b,0xe8,0x5,0xa8,0x5b,0x4b,0x6d,0x4a,0x38,0x71,0xf1,0xd2,0x8d, + 0x9b,0x28,0xb3,0x61,0xbd,0xfe,0xc3,0x9b,0xf4,0xe5,0x86,0x77,0xdf,0xa3,0xea,0x3, + 0xf,0x60,0x2b,0x80,0x63,0x0,0xa8,0x4d,0x50,0x5d,0x45,0x6f,0xde,0x73,0x37,0xdf, + 0x93,0xb3,0x0,0x4a,0x13,0x12,0xf8,0x8b,0x47,0xfc,0x1,0x5b,0xeb,0x3,0xa5,0x2c, + 0x4,0xc2,0x44,0x20,0xa3,0x11,0x1b,0xa7,0x4e,0xa5,0x2a,0xf4,0xa1,0x9b,0xfa,0xf7, + 0x6d,0x66,0x8c,0x39,0x8f,0xff,0x87,0xdf,0x4,0x17,0x60,0x9c,0x36,0xa7,0xab,0xe, + 0x98,0xce,0x42,0x80,0xc7,0xd3,0x43,0x8,0x28,0x9f,0xfa,0x82,0x8f,0x5e,0x4c,0xb7, + 0xfd,0xfa,0xd7,0x74,0xd5,0xb5,0xd7,0xd2,0xe4,0x2b,0x66,0x13,0xfd,0xb1,0x59,0xb7, + 0x5f,0x59,0xa1,0xfb,0xf3,0xab,0xd5,0xb2,0x3a,0x7b,0x6e,0x80,0x28,0x62,0x69,0x81, + 0xc1,0x18,0xfc,0x70,0xdb,0x93,0x8a,0xfc,0x68,0x5,0x43,0x8e,0xee,0xa3,0x6d,0x34, + 0x77,0xe6,0x78,0x3a,0x19,0xbe,0xbd,0xd5,0x2,0xd0,0x66,0x2c,0x93,0xa0,0x7a,0x51, + 0x2c,0x86,0xa0,0xc9,0xbf,0x92,0xaa,0xa6,0x4e,0xa1,0xc6,0x55,0x7a,0xf8,0xef,0xbd, + 0xa9,0x72,0x5a,0xfa,0xb9,0xff,0x43,0xf7,0x28,0x37,0x20,0x29,0x41,0xd1,0xa1,0x7f, + 0xc3,0x26,0xbf,0x40,0xb4,0xbf,0x4,0xfc,0x6c,0xb,0xa0,0x94,0x11,0x3c,0x81,0x4c, + 0x2c,0xf2,0x29,0x16,0x0,0xcf,0xf8,0x63,0xf5,0xa5,0xb,0xf9,0xcd,0x41,0x5c,0xa1, + 0x7,0xfd,0xe7,0x78,0x98,0x15,0x53,0x27,0xd3,0x3,0xbf,0xff,0x1d,0x7d,0xe1,0xba, + 0xeb,0xe8,0xae,0xd7,0x5e,0xa5,0x8f,0xfd,0x6e,0x99,0x26,0x2f,0xba,0xfa,0x60,0xc2, + 0xa3,0x4b,0xaf,0xb1,0xa5,0xe3,0xab,0x4a,0xea,0xbb,0xf6,0xa2,0xe4,0x7,0x2a,0xd5, + 0x3f,0xa1,0xf2,0x11,0x8d,0x33,0xb3,0x86,0xeb,0xf2,0x61,0x4a,0x90,0xb1,0x15,0x30, + 0x41,0xb,0x32,0x7b,0x82,0x10,0x60,0x9f,0xb2,0x0,0x32,0x6d,0x61,0xfd,0x40,0xc9, + 0x9f,0x7,0x8e,0x4a,0x9a,0x38,0xd4,0xa1,0xdf,0xc3,0x36,0xf5,0xed,0x88,0xbf,0x8, + 0x4,0x90,0xde,0xf6,0xfb,0x4b,0x55,0xfb,0x3,0x89,0xe,0x39,0x27,0xd1,0x80,0x14, + 0xea,0x3,0xd3,0xd9,0xee,0x4b,0xf7,0xeb,0x4d,0xb7,0x20,0x38,0xa4,0x1e,0xd8,0x20, + 0xa5,0x41,0x41,0xa2,0x36,0x65,0xfe,0xc3,0xac,0xbe,0xf0,0x83,0x1f,0xa4,0x3b,0xbf, + 0xf7,0x3d,0xba,0xea,0xf0,0x23,0xe8,0xc6,0x7f,0xba,0x94,0x5a,0xce,0x9a,0xa9,0xec, + 0xec,0x46,0x1d,0x3,0x80,0x9,0x5f,0xd5,0x91,0xf6,0xef,0x18,0xa7,0x5e,0xfd,0xef, + 0x8a,0xfa,0x1e,0x77,0x31,0xfe,0x42,0x69,0xff,0xf2,0x8a,0x32,0xda,0xaa,0x2c,0x8b, + 0x8c,0x75,0x43,0x43,0x56,0xe8,0x1c,0x7f,0x1e,0x19,0xa8,0xac,0x0,0xb6,0x0,0x4, + 0xe5,0x15,0xfa,0x3e,0xd5,0x75,0xe3,0xfa,0xb9,0x54,0x78,0x4b,0x33,0x4f,0x1f,0x5a, + 0x76,0xfe,0xb9,0xb4,0xf4,0xb3,0x9f,0xa1,0xbb,0xef,0xbe,0x8b,0xf7,0x71,0xda,0xbf, + 0x34,0x60,0x67,0xf4,0x25,0xe5,0x3,0x40,0xf3,0xb,0xd1,0xdb,0x23,0xbc,0xdd,0xb, + 0x50,0xe8,0x72,0x5f,0xbd,0x81,0x40,0x0,0xc,0xbf,0xe1,0x6,0x3d,0x26,0x4e,0x3d, + 0x8c,0x41,0x92,0x46,0x2b,0x56,0xc0,0x86,0xd,0x41,0x22,0xd,0x2c,0x0,0x16,0x2, + 0x96,0xe4,0x4,0x89,0x18,0xa8,0xb8,0xa3,0xf6,0xb9,0xe6,0xd2,0x4b,0xf9,0xeb,0xb2, + 0x25,0x2f,0xd3,0xa2,0x1d,0xf,0x6b,0xed,0x7a,0xf6,0x69,0x2c,0x34,0x44,0x7b,0x77, + 0x6,0x72,0xcc,0x53,0x6a,0x89,0xf5,0x17,0xe7,0xcd,0x53,0xe6,0x7f,0x45,0xf0,0xfb, + 0xe5,0xdf,0xb8,0x8a,0x5a,0x94,0x70,0x91,0x9b,0x9,0xdc,0x0,0x33,0xc,0x38,0x6d, + 0x6b,0x72,0x68,0xff,0x96,0xe6,0xe0,0xba,0xe1,0xc2,0xe0,0xb8,0xe6,0xba,0x75,0x54, + 0x35,0xfb,0x18,0xfa,0xcc,0x43,0xf,0xd2,0x3d,0x8a,0xfc,0x47,0x2b,0xab,0xc7,0x91, + 0xbf,0x74,0x61,0xfb,0xfe,0x42,0xe4,0xb8,0xb9,0x1f,0xff,0x3e,0x20,0xf2,0x0,0x0, + 0x19,0x56,0x1b,0x20,0x96,0x67,0x1f,0x71,0x3,0x28,0xd4,0xa4,0x4d,0x2b,0xeb,0x74, + 0xd,0x80,0xfb,0xef,0xa7,0x43,0xe1,0x8f,0x2b,0xb,0xa2,0x75,0xf2,0xc7,0x68,0xe7, + 0xcc,0x26,0xa2,0x7,0x1f,0xa7,0x27,0x7f,0x70,0xb,0x6b,0xef,0x27,0xd,0x91,0x81, + 0x8e,0x4,0x2,0x7e,0xc7,0x31,0x20,0x3f,0xae,0xa2,0xc2,0x4,0xfd,0x0,0xf8,0xfe, + 0xa9,0xf1,0xc3,0xa9,0x3a,0x33,0x9a,0x66,0x1a,0xb3,0x3d,0xa8,0xac,0x8f,0x41,0x49, + 0x66,0x58,0x30,0xc7,0x1,0xd4,0xf7,0xcc,0x7a,0x53,0x6b,0xdf,0xb2,0x0,0xe0,0xc2, + 0x64,0xcc,0x24,0x24,0x6d,0x63,0xc7,0xd0,0x5d,0x57,0x5e,0xe5,0x22,0xff,0x25,0xa, + 0xdb,0xa,0xf8,0x90,0xb1,0x2,0x20,0x4,0xc4,0xe4,0x8f,0x77,0xf9,0xc5,0x83,0x81, + 0x36,0x4a,0x41,0xfb,0x3,0x89,0x2,0xa0,0x23,0x2,0x4,0x6e,0x80,0x81,0x58,0x0, + 0x95,0xd3,0x26,0x33,0xb9,0xae,0x3f,0xe5,0x54,0x76,0x3,0x4e,0x54,0xf,0xf7,0xcd, + 0x67,0xfe,0x4a,0xaf,0x1d,0x75,0x8,0xb5,0x3d,0xff,0x30,0x9d,0xfa,0xa7,0x3f,0x7, + 0x84,0x17,0x41,0x20,0x4b,0x20,0x69,0x89,0xdf,0x17,0x19,0xf2,0xf,0x51,0x86,0x7f, + 0x5,0xff,0x2b,0xa7,0x9f,0xd0,0x46,0x2a,0x53,0x9c,0xff,0xfa,0xe5,0x5f,0xa6,0xfd, + 0xcb,0xb4,0xa5,0x2,0xf2,0x43,0xfb,0xf,0x35,0xe6,0x7f,0x4a,0xf2,0x18,0x72,0x98, + 0xff,0xc8,0xed,0x4e,0x61,0x56,0xde,0xf2,0x72,0xaa,0x56,0xda,0x7f,0x9e,0x12,0x5c, + 0x5f,0x50,0xda,0xff,0x18,0xa7,0xfd,0x4b,0x1a,0x92,0xd3,0xf,0x21,0x80,0x8f,0x6d, + 0xf2,0xc7,0xcd,0x7f,0x7c,0x87,0xe6,0x2f,0x45,0xed,0xf,0x44,0x4,0xc0,0x32,0x33, + 0x33,0x4d,0x30,0x98,0x46,0x34,0xa8,0x9d,0x4f,0x4f,0x96,0x5,0xd0,0x16,0xd,0x1c, + 0xee,0x5b,0xb1,0x4a,0x1d,0xd3,0xcc,0x41,0x34,0xb8,0x1,0x33,0xd4,0xf2,0x84,0x4c, + 0x1b,0xfd,0xf5,0xc9,0x35,0xf4,0xc0,0x59,0x33,0x95,0x7b,0xb1,0x8b,0x4e,0xa5,0xe9, + 0x9a,0x5c,0xf3,0x1e,0x54,0x34,0xf6,0xb8,0xde,0x5f,0xb9,0x3a,0xe3,0xe2,0x79,0xb7, + 0xf1,0x72,0x51,0xb0,0xd4,0xdb,0x61,0xee,0xa3,0x33,0xe,0xe4,0xf,0x91,0xd1,0x66, + 0xfb,0xe9,0x47,0xd3,0x96,0x41,0x15,0xd6,0xd6,0x10,0x81,0xef,0x6f,0x17,0x27,0xc5, + 0x1f,0xde,0x32,0xff,0x7d,0xd2,0xf5,0xf,0xe0,0xf6,0x40,0xfb,0x5f,0xad,0xae,0xd9, + 0xef,0x27,0xd9,0x7f,0xe,0x5d,0x43,0xd2,0x50,0x5e,0x90,0x3b,0x97,0xdf,0x9f,0x44, + 0xfc,0x52,0xd1,0xfe,0x40,0x62,0x3d,0x0,0xab,0xc,0x5e,0x16,0xa0,0xfd,0x59,0x0, + 0x48,0x5,0x5e,0xb,0x83,0xe,0x98,0x1e,0xac,0x23,0x71,0x8,0x94,0xf5,0x27,0x4e, + 0x54,0x42,0x20,0x43,0x4b,0x86,0x1d,0x44,0xbf,0x7d,0xe6,0x37,0x74,0xc1,0xb1,0x15, + 0x74,0xca,0x8b,0x7,0x13,0xf4,0x75,0x8b,0x3a,0xcb,0xa9,0x74,0x10,0xbd,0x48,0xab, + 0x68,0xaf,0x32,0xec,0x7,0xab,0x23,0x90,0xd7,0xf,0xd,0x1f,0x2e,0x9b,0x59,0xe7, + 0x3,0xd0,0xfa,0x9f,0xa5,0x1a,0xfa,0x59,0x7a,0xb,0xb5,0x9e,0x7a,0x34,0x5d,0x35, + 0xe7,0x42,0x16,0x32,0x80,0xf4,0x2d,0x40,0xfb,0xfb,0x15,0x7a,0x7f,0x68,0x7e,0x16, + 0x2,0xe8,0xff,0x57,0xe6,0xbf,0x57,0xa1,0x85,0x8,0xb4,0x3f,0x0,0xcd,0x8f,0xdc, + 0x5,0xd4,0x7,0x6c,0x79,0x74,0x1,0xcf,0x14,0x7c,0xf4,0xb6,0x6d,0x4e,0xfb,0x97, + 0x38,0x40,0xe0,0x78,0x1a,0x6f,0xbe,0x1a,0xbe,0x94,0xc8,0xf,0x44,0x4,0xc0,0x71, + 0x37,0xde,0xe8,0xed,0xf8,0xd6,0xb7,0x98,0xfb,0x83,0xd7,0xac,0xe1,0x58,0x40,0x30, + 0x21,0xa8,0x15,0x4,0x64,0x98,0x80,0x1f,0xb5,0x2a,0xea,0x49,0x61,0x50,0x9e,0x81, + 0xd7,0x88,0x8e,0x16,0x4d,0xc9,0x43,0x50,0xa7,0x5f,0x69,0xe3,0x43,0xd5,0xfa,0xb2, + 0x21,0xb5,0x54,0x77,0xc6,0x24,0x5a,0x7b,0xc0,0x9f,0x69,0xce,0xff,0x34,0x2a,0xf2, + 0x1f,0x42,0x9f,0xa6,0x17,0xe8,0x9f,0x69,0x38,0xfd,0x8a,0x76,0x28,0x72,0x8f,0x65, + 0xd2,0x3,0xf6,0x52,0x13,0x5f,0xa7,0x1f,0xdf,0x37,0x5e,0x69,0xff,0xf7,0xcd,0xa1, + 0xab,0x4e,0x3c,0x3d,0x91,0xfc,0x11,0xa0,0xb,0x50,0xfa,0xff,0x79,0xc7,0x66,0x76, + 0x1,0xc4,0x65,0x69,0x58,0xbe,0x92,0x5,0x5d,0xe5,0xb4,0x5a,0x2e,0x7,0xf6,0xd6, + 0xa0,0x2a,0x25,0x0,0xba,0xfd,0x4c,0x1d,0xfa,0x1,0x84,0xc8,0xf9,0xe6,0xf3,0x97, + 0x1a,0xf1,0x5,0x59,0x16,0x0,0xaa,0xec,0xce,0x54,0xcb,0x26,0x45,0x7e,0xd6,0xef, + 0x86,0xf8,0xc1,0x34,0xe0,0xb9,0xc6,0x44,0xb7,0x86,0xfd,0xfb,0xd0,0xb6,0xa9,0x9, + 0x13,0xd9,0xfc,0xae,0x56,0xdf,0x1b,0xcc,0x90,0xe1,0x99,0x20,0xe2,0xa0,0x34,0xed, + 0x3c,0xf4,0x6c,0x7a,0xfe,0xe6,0x5d,0x34,0xea,0xd5,0xe7,0xe8,0xbe,0x7,0x66,0x2b, + 0x21,0xf0,0x12,0xff,0x7e,0x1f,0x6d,0xcc,0x6a,0x56,0xb2,0xfb,0x7e,0x35,0xac,0x99, + 0xd6,0x9f,0x7c,0xc,0x4d,0xa9,0x9a,0x4e,0x2d,0x8b,0x17,0xd1,0x8c,0x93,0xce,0x8, + 0x7e,0x7,0x98,0xfc,0xc8,0x46,0x2c,0xb7,0xba,0x19,0x71,0xbe,0xb4,0x35,0x51,0x89, + 0x11,0x54,0x81,0x5,0xa0,0xbe,0x57,0x4f,0x9f,0xc6,0x89,0x40,0xb8,0xab,0x9f,0x7e, + 0x64,0x2e,0xfd,0xe4,0xee,0xbb,0x5d,0xf2,0xcf,0x0,0x42,0x47,0x82,0xa0,0x54,0x89, + 0x2f,0xc8,0x12,0x0,0xb6,0x15,0x80,0x60,0x9,0x67,0x6,0x22,0x3d,0x38,0x48,0xd, + 0xe,0x2d,0x1,0x21,0x3a,0xd7,0xdb,0x87,0xe6,0x2f,0x2b,0x63,0x93,0x3a,0x8e,0xea, + 0xb5,0x6b,0x69,0x8f,0xd4,0xd,0x50,0x9f,0x43,0xb8,0x62,0xcd,0x70,0x5a,0x7a,0xd4, + 0x39,0xb4,0xfc,0xd0,0x16,0xfa,0xdc,0xb0,0xa3,0xe9,0xce,0x3b,0x7f,0x4b,0xe5,0xf5, + 0x3b,0xc8,0x37,0x29,0xc3,0xa9,0xca,0x32,0xda,0x3b,0x6e,0x38,0x8d,0xaa,0x9d,0x48, + 0xf5,0x23,0x47,0x50,0xe6,0xe5,0x77,0xe8,0xdb,0xb3,0x75,0x49,0xb0,0x19,0x47,0x1c, + 0xc1,0xcb,0xb8,0xe6,0x8f,0x90,0x1f,0x30,0xd7,0xcc,0xe6,0xbf,0x25,0xb8,0x24,0x77, + 0x1,0xbe,0x3f,0xe6,0x2d,0x44,0x0,0xf0,0xb6,0x27,0x9f,0xa0,0xa1,0x8a,0xfc,0x8e, + 0xf8,0x3,0x13,0xa5,0x4e,0xf4,0x5c,0x48,0x8c,0x1,0x88,0x15,0x0,0xca,0xb0,0x15, + 0x20,0x83,0x83,0x8c,0x15,0x60,0xa7,0x3,0xeb,0x1f,0xda,0xc8,0x1b,0x6f,0x2,0x85, + 0xc8,0xb5,0x57,0xeb,0x2c,0x1c,0xc6,0x8e,0xb,0x72,0xf1,0x87,0xae,0x5a,0x45,0xbb, + 0x4d,0xad,0x3e,0xa1,0xe9,0x2c,0xa5,0xb1,0x97,0x56,0x97,0x93,0xd7,0x3c,0x89,0xbe, + 0xf4,0xd9,0xaf,0xf0,0xb6,0xbb,0x5e,0x7d,0x95,0xbc,0x25,0x8b,0x29,0x73,0xd2,0x49, + 0xf4,0xa5,0xc3,0xe,0xe7,0x84,0x9c,0xaf,0x9c,0xf5,0x4f,0x94,0x9a,0x7d,0x46,0x60, + 0xf2,0xe3,0x9a,0x4c,0xb5,0x0,0x9d,0xf0,0x83,0xd4,0x4e,0x25,0x7c,0xe4,0x5c,0x41, + 0xd4,0xdf,0xee,0xfa,0x2b,0x8b,0xa,0x87,0x94,0x97,0xe6,0x40,0x87,0xef,0x67,0x78, + 0x5c,0x3,0x82,0x96,0x3f,0x56,0x2,0x80,0xc8,0x69,0x7f,0x87,0x81,0x83,0x44,0x1, + 0x60,0x5b,0x1,0xf1,0x4a,0x28,0xd0,0xf2,0x3c,0x18,0xa8,0xbe,0x9e,0xb5,0xbf,0x10, + 0xcc,0x37,0x4b,0x6c,0xb3,0x97,0x24,0xa9,0xb8,0x10,0x2,0xca,0x92,0xd8,0x5d,0x5b, + 0x4b,0x55,0x8a,0xb4,0xbb,0xf7,0xdf,0x9f,0xa0,0x9f,0x8f,0x5e,0xb9,0x92,0xf6,0xa9, + 0x75,0x3e,0x97,0xfa,0xdc,0xf5,0xbe,0xf7,0x11,0xe1,0x63,0x70,0xe7,0x55,0x5f,0x8, + 0xd6,0x25,0x30,0x99,0x21,0x8b,0xfc,0x14,0x26,0xfc,0x48,0xde,0x3f,0xd2,0x7e,0xed, + 0xb9,0xb,0xb3,0xee,0x81,0x30,0x8e,0x61,0x1a,0x35,0x2d,0xd7,0x35,0x0,0xbe,0xf7, + 0xea,0x3f,0xe8,0x9a,0x99,0x87,0xb2,0xc0,0x73,0x3d,0x0,0xe,0x3,0x9,0x79,0x95, + 0x4,0x6b,0xb4,0xbb,0x4,0xc7,0xea,0x60,0x9c,0xd4,0x4,0x88,0x13,0x3e,0xd0,0xb8, + 0xbc,0x73,0x5b,0x40,0x4a,0xc1,0xd0,0x95,0x2b,0xc3,0x9f,0xd1,0xb6,0x22,0x7f,0xbe, + 0x1a,0xb7,0xcd,0x7c,0x40,0xfc,0x21,0x26,0xda,0x2f,0x11,0x7f,0x1,0x84,0x8d,0x58, + 0x0,0xb9,0xb4,0x3f,0xc0,0x49,0x40,0xa4,0x6b,0x0,0x5c,0x37,0x6b,0x16,0x27,0x2f, + 0x39,0xdf,0x7f,0xe0,0xc2,0x9e,0x23,0xc0,0xfe,0x24,0x29,0x8f,0x52,0x42,0xce,0xb2, + 0xe0,0x48,0xd,0x86,0x15,0x80,0xdb,0xb7,0x1f,0x42,0x30,0x30,0xa8,0x2c,0x3c,0x34, + 0xd0,0xf6,0x66,0x5d,0x62,0x3,0x30,0xc1,0x45,0x13,0x8b,0x15,0xc0,0x5d,0x8c,0x6a, + 0x3b,0x5c,0x2,0x8e,0x27,0xa8,0xf5,0xdd,0x66,0xe2,0x8a,0xf6,0x1e,0xf5,0x60,0x89, + 0xf0,0x4b,0xc5,0x5b,0xb,0xd2,0xb6,0xfe,0x12,0xfa,0xfd,0x72,0x2d,0x7e,0x73,0x53, + 0xd0,0x5,0x28,0x40,0x1c,0xa0,0x1,0x55,0x80,0xfc,0x36,0x2e,0xf,0x36,0x64,0xf1, + 0xe2,0x76,0xce,0xee,0x50,0xaa,0xe8,0xa8,0xd6,0xff,0x89,0x27,0xe8,0xaa,0xd7,0x28, + 0x21,0x16,0x2f,0x15,0x56,0xa,0x68,0x7f,0x72,0x50,0xb,0x12,0xc,0xc,0x7a,0x3, + 0x62,0xb3,0xf0,0x2,0x10,0x14,0x1,0xf9,0x1,0x19,0x50,0x64,0x25,0xe4,0xa4,0x4c, + 0xdf,0xbc,0xcc,0x69,0x87,0xf8,0xc2,0x50,0xab,0x84,0x77,0x12,0xd8,0xc4,0x37,0x7e, + 0x3e,0xd2,0x7b,0xed,0x1c,0x7f,0x1e,0xeb,0x6f,0x27,0xfc,0x18,0x8b,0xc0,0x16,0x44, + 0x6c,0x9,0x98,0x2e,0xc0,0xe0,0x7e,0x90,0x9,0xa8,0x84,0xc5,0x83,0xcf,0x2e,0xa2, + 0xb9,0x1f,0xbd,0xb8,0xdb,0x9a,0xff,0x6b,0xd,0xd,0xe6,0x62,0x3b,0xef,0x44,0xb0, + 0x50,0x34,0x33,0x32,0x7f,0xb7,0xaa,0xaa,0x9b,0x57,0xe2,0x90,0xf,0x3a,0x3b,0xc9, + 0x87,0x8,0x82,0x52,0x9a,0x13,0x0,0x68,0x57,0x0,0x64,0x59,0x1,0xb1,0x60,0x20, + 0x13,0xdc,0x8a,0xbc,0x7b,0xa8,0xb7,0x47,0x14,0xb1,0x0,0x2,0x98,0x75,0xd1,0xd4, + 0x7e,0xac,0x1c,0x98,0x3d,0x9d,0x97,0x10,0xdd,0xfe,0x4d,0x48,0xef,0x5b,0x96,0x87, + 0x10,0x5f,0x72,0xfd,0x5,0x11,0x21,0x44,0x5a,0x18,0xf8,0x1b,0xd6,0x47,0x84,0x0, + 0xea,0x0,0x22,0x73,0x11,0xe4,0x17,0xb7,0xa6,0x33,0xf8,0x6a,0x53,0x13,0x97,0x1b, + 0xf3,0x24,0x73,0xb0,0x1b,0xb3,0x8,0xc9,0xf1,0x68,0xeb,0x6b,0xfb,0xf6,0x85,0x2, + 0x41,0x3d,0xf3,0xef,0x56,0x56,0x76,0x70,0xb4,0x43,0x67,0x61,0x93,0x5f,0xca,0x82, + 0x27,0x55,0xff,0x95,0x9a,0x1,0x42,0x7e,0x39,0xb6,0x94,0x84,0x40,0xde,0x16,0x40, + 0x16,0xf0,0xa0,0x8c,0x86,0x8f,0x9b,0xdd,0x36,0xf9,0x80,0x20,0x3a,0x1f,0x5b,0xda, + 0xb0,0x89,0x1d,0xff,0x9e,0x75,0x3c,0x7c,0x7c,0x3e,0xaf,0x97,0x15,0xf5,0xe7,0x4b, + 0xb3,0xe2,0x12,0x81,0x30,0x40,0x7b,0xa6,0xc2,0x10,0xfc,0xff,0x74,0xaa,0x9c,0x2b, + 0xfe,0x3c,0xf4,0xfb,0xdf,0x11,0x6c,0x87,0x7c,0x66,0x1,0x0,0xe9,0xb9,0x5d,0xcc, + 0x32,0x6c,0x6,0x10,0xc9,0x71,0x69,0xf4,0x38,0xa8,0x6d,0x5b,0x57,0xaf,0xa1,0x9a, + 0xfd,0xa7,0xd1,0x66,0x53,0x64,0x34,0x71,0xba,0x33,0x5,0xec,0x3,0xb4,0xa0,0x7, + 0x85,0xc2,0xec,0xcb,0x60,0xaa,0x44,0x25,0xc,0x70,0xe,0x58,0x16,0x4e,0x10,0x14, + 0xe,0xed,0x69,0xfe,0x78,0x79,0x70,0xf9,0xe,0x21,0x21,0x42,0x40,0xc6,0x11,0x94, + 0x4a,0xb7,0x61,0x5e,0x96,0xef,0x2e,0x99,0x35,0x18,0xe3,0xff,0x65,0x2,0x8a,0x60, + 0xa8,0x70,0xbd,0xe,0x10,0x1a,0xd3,0x3b,0x13,0xeb,0xd,0x60,0x88,0xa0,0x20,0xab, + 0x42,0x8f,0x25,0x4,0xe2,0x2,0x21,0x49,0x40,0xc4,0x7f,0xb,0x85,0x40,0x3a,0x72, + 0x3d,0xb6,0xd9,0x6f,0xf7,0x52,0xc4,0x63,0x0,0x70,0x1,0xaa,0xe,0x3c,0x80,0x1e, + 0x7c,0xe6,0x69,0x5a,0x4f,0xed,0xb,0x0,0x9b,0xf8,0x64,0xed,0x9b,0x32,0xe7,0xcc, + 0x49,0xf6,0x8e,0x60,0x24,0x48,0xcd,0x34,0x2d,0x30,0x46,0x4d,0xab,0x55,0x42,0x29, + 0x45,0xad,0x6d,0x6d,0xf1,0x5d,0x9c,0x45,0x60,0xe1,0x8a,0x76,0x66,0xee,0xe9,0x8, + 0xf1,0xea,0xc0,0xb9,0xaa,0x3,0xc5,0x8b,0x84,0xca,0x52,0x46,0x11,0xe6,0x2b,0x0, + 0xa,0x2d,0x28,0x12,0x52,0x96,0xbb,0xe5,0xbd,0xe6,0x75,0x30,0xbb,0x1,0x26,0xf8, + 0x56,0xd,0x7f,0x5d,0xbd,0x8c,0xc8,0xf5,0xf,0xa6,0xe0,0x86,0xff,0x6d,0x65,0xdd, + 0x65,0x9,0x81,0x84,0x58,0x40,0x47,0x16,0x41,0x92,0xd5,0x10,0x1c,0x67,0x6b,0x7c, + 0x5b,0x8,0xc4,0x60,0xb,0x81,0xf8,0x38,0x80,0xb4,0x72,0x5d,0x2a,0xa7,0xd6,0xd2, + 0xf7,0x96,0xbe,0x46,0x43,0xb7,0x6c,0x4d,0x7c,0x10,0x71,0xe2,0xa7,0xa0,0x95,0x8d, + 0x65,0x92,0x93,0xf4,0x72,0x4d,0xa9,0x74,0xfb,0x83,0x2a,0x84,0xe4,0x1d,0x58,0x8, + 0x22,0xc,0x82,0x66,0x50,0xa7,0x50,0xfd,0x1d,0xbe,0x3d,0x80,0x5,0x41,0x57,0x5, + 0x40,0x5c,0xfb,0x8b,0x0,0x88,0x23,0x29,0xd8,0x67,0x93,0x5f,0x90,0xf,0xb9,0x4b, + 0x42,0x0,0xfc,0xe5,0xe6,0x9b,0x7d,0xa4,0xf1,0x42,0x8,0x54,0x1a,0x1,0x10,0x58, + 0x0,0x42,0x50,0xab,0xdf,0x3d,0xae,0x7d,0xe3,0x2e,0x1,0x43,0x88,0x6b,0x2f,0x5, + 0xf1,0xef,0x71,0xe4,0x20,0x7c,0xae,0xf3,0xc7,0xb5,0x3f,0x84,0x80,0xa7,0x8,0x9a, + 0xf6,0x33,0x54,0xf6,0x91,0xf3,0x39,0xfd,0x97,0xf7,0x33,0xbf,0xc7,0x89,0x5f,0xd6, + 0x91,0xa6,0xcf,0x97,0xf4,0xb9,0x20,0xcf,0x80,0xc7,0x52,0x50,0xa4,0x8d,0xc0,0x55, + 0x80,0x6,0xc2,0x8a,0xc4,0x1c,0x6,0xb0,0x20,0xe8,0xae,0x0,0x10,0xbf,0x3f,0x8e, + 0x5c,0x13,0x84,0xe0,0xbb,0x8c,0x16,0xec,0x6c,0x45,0xa0,0x92,0x10,0x0,0x40,0xc4, + 0xd,0x80,0x10,0x88,0x45,0xe2,0xe3,0x2,0x0,0x88,0xb,0x81,0x78,0x70,0x2e,0xb, + 0xed,0x68,0xf3,0x8e,0x10,0x90,0x1d,0xe5,0xbd,0x44,0x63,0x8b,0xf6,0x8f,0x8d,0x3, + 0x48,0x9b,0xc0,0xe5,0x63,0xab,0x56,0xd0,0x7b,0x23,0x47,0xd2,0x60,0x6b,0x4,0xa0, + 0x4d,0xfe,0x38,0xf1,0xb3,0x7c,0x7b,0x9b,0xf8,0xb2,0x71,0xfd,0x1a,0xa2,0xc9,0x53, + 0x89,0xea,0x56,0x75,0x7c,0xd1,0xb2,0x1f,0x96,0x72,0xff,0x82,0x98,0x0,0x14,0x41, + 0x80,0x97,0xb2,0x35,0x63,0x66,0x62,0x1a,0xa0,0x42,0xa0,0x2b,0x2,0x20,0x6e,0xfa, + 0x3,0x49,0x44,0x8f,0x6b,0x7f,0x21,0xbf,0x5d,0x30,0xc4,0xb6,0x4,0x3a,0x22,0x78, + 0x5f,0x17,0x0,0x79,0x67,0x39,0xd8,0xb5,0x2,0x18,0x96,0x4f,0x6f,0x8f,0xb9,0xcf, + 0x45,0x72,0x9e,0x8e,0xdb,0xa4,0xe6,0xa,0x59,0xed,0x25,0xaf,0xc7,0x5c,0x88,0x5c, + 0x48,0x3a,0x5e,0xce,0x9,0xf2,0xdb,0x49,0x49,0xac,0xfd,0x2d,0xf2,0xa3,0xff,0x3f, + 0xd3,0x96,0x21,0xbf,0xb5,0x8d,0x2e,0xf8,0xd0,0x1c,0x1a,0x94,0x40,0xfe,0xb2,0x4, + 0xf2,0x63,0xa7,0xcd,0x48,0x62,0xc2,0xce,0xa6,0x0,0x9,0x13,0xdf,0x7,0xe9,0xeb, + 0xf4,0xb5,0x67,0x91,0xdf,0xb3,0x96,0xf1,0xf,0x99,0xfd,0x3c,0xbd,0xc4,0x7,0xed, + 0x48,0x5b,0x88,0xa9,0x58,0xc2,0x10,0xd7,0xb1,0x79,0xe5,0x2a,0x7e,0x21,0xcb,0x95, + 0xf0,0x2d,0x3,0xf9,0x61,0xd,0xa8,0x17,0xf6,0xeb,0xe6,0xba,0x1d,0xf2,0x87,0x4d, + 0xf6,0x5c,0x53,0x84,0xd9,0xa5,0xc2,0xda,0xab,0xe,0xd4,0x9f,0xd1,0xe9,0x34,0x27, + 0xbc,0xba,0x7b,0x4d,0x4e,0xbf,0x67,0x6,0xfe,0xb0,0xff,0x6e,0xfc,0x7c,0x21,0x9f, + 0x9d,0x13,0xc0,0xf5,0xd7,0x30,0x17,0x1f,0x7c,0xe8,0x58,0xc6,0x60,0x5c,0x60,0x4, + 0xa9,0xc5,0x4a,0x60,0xf0,0xa7,0x7e,0x43,0xe4,0x13,0x17,0xe,0xf1,0xa0,0x9f,0xa7, + 0xb4,0xbb,0x10,0x3f,0xc9,0xbf,0xe3,0x18,0x0,0xe6,0x38,0x50,0x9f,0x16,0x45,0xa8, + 0xcf,0x5d,0x79,0x25,0xdd,0x79,0xcd,0x35,0xf4,0xe7,0xf9,0xf3,0x83,0x7,0x82,0xe0, + 0x1e,0x13,0x6e,0xc5,0xca,0xec,0xe8,0x20,0x48,0x9,0xe2,0xa7,0xca,0x34,0x69,0x2b, + 0xec,0x2c,0x43,0x2f,0x24,0x35,0xc7,0x44,0x52,0x4c,0xe4,0xd4,0xb6,0x1d,0xea,0xb3, + 0x9d,0xf7,0x4d,0xed,0xdc,0xa5,0xbf,0xef,0xdc,0xa3,0x3e,0xbb,0x79,0x9d,0xe7,0x28, + 0xe0,0x79,0xa,0x3c,0x8a,0x8,0x84,0x24,0x41,0xb0,0x6a,0x75,0xf0,0x7c,0x9d,0x10, + 0xe8,0x3c,0xec,0x6e,0xbf,0xa4,0xa8,0xbf,0x3d,0x47,0x80,0x5d,0x1e,0xac,0x54,0x67, + 0x7,0xca,0x5b,0x0,0x60,0x7c,0x0,0x96,0x19,0xf1,0x45,0x3b,0x40,0xc4,0x94,0xb2, + 0x6,0xe5,0xd8,0x84,0xb7,0x85,0x41,0x84,0xc4,0x46,0x60,0x40,0x9b,0x23,0xb7,0x80, + 0xff,0x58,0x66,0x29,0xbf,0xdb,0xed,0x44,0x7c,0x7e,0x23,0x84,0x90,0xfd,0x67,0x43, + 0xb4,0x3f,0xa3,0x35,0xa3,0xe7,0x7,0x54,0xed,0x3d,0xa2,0xfc,0xff,0x63,0xbe,0xfe, + 0x75,0x7a,0xfc,0xfd,0xef,0xa7,0x6,0xcc,0xaa,0x4b,0x9,0xbe,0xbe,0x10,0x10,0x39, + 0x4,0xbe,0x21,0x68,0xda,0x7e,0x74,0xf6,0x36,0x2f,0x38,0x26,0xb5,0x79,0x2b,0x5f, + 0x4f,0x66,0x5c,0x8d,0xfe,0x5e,0xbf,0x49,0xbb,0x4e,0x6a,0xbf,0x4c,0xcd,0x48,0xbd, + 0xae,0xac,0x9,0x8,0x87,0xd4,0x96,0xad,0x5a,0x40,0x6c,0xdb,0xa9,0xdb,0x48,0x97, + 0x45,0x2d,0x3,0x8,0x2,0xe3,0xba,0x40,0x8,0xf0,0x67,0x4d,0x1d,0x5b,0x2a,0x29, + 0xf3,0xbc,0x9d,0x10,0xe8,0x1c,0xe2,0x42,0x40,0x96,0xb9,0xaa,0x3,0x97,0x1a,0xf9, + 0x81,0xbc,0x5,0xc0,0x2e,0x33,0x38,0x28,0x88,0x1,0x50,0x38,0xfc,0xd6,0xee,0x5, + 0x8,0x7c,0x71,0xab,0x8e,0x3f,0x86,0x8,0x33,0x59,0x63,0xc9,0x32,0x71,0xed,0x2f, + 0xda,0x1b,0x26,0x3b,0x46,0xe8,0x41,0x8b,0x7,0x4b,0x4c,0xe9,0xad,0x96,0xf1,0x98, + 0x42,0x62,0x14,0x17,0xee,0x46,0x6c,0x68,0xb0,0x90,0xdf,0x63,0x7f,0x5d,0x69,0x4d, + 0x68,0x52,0x73,0xec,0x42,0x45,0x7c,0xa0,0x79,0x5d,0x1d,0x9b,0xd9,0x41,0xba,0x31, + 0xef,0xeb,0xe9,0x25,0xdc,0x8,0x26,0xe3,0x1a,0xa,0x9,0x9f,0xe,0x89,0xaf,0x8, + 0xcb,0x84,0x67,0x2d,0xbf,0x5b,0x93,0x5d,0xf9,0xe6,0xa9,0x5d,0x7b,0x78,0x7b,0xa6, + 0x66,0x94,0x7e,0x3e,0x23,0x86,0x31,0xf1,0xf1,0x3b,0xaf,0x8b,0x70,0x81,0xa5,0x80, + 0xe3,0xcb,0x52,0xba,0xd,0xac,0x8b,0x20,0x8,0x2c,0xb,0xd2,0x42,0x63,0x63,0x58, + 0x97,0x1,0x82,0x20,0xd,0x81,0xd9,0xf1,0x9f,0xd0,0x21,0x86,0x24,0x9f,0x3f,0x6e, + 0xea,0xc7,0x85,0x41,0xa9,0xb9,0x1,0x5d,0x1a,0xe9,0xb0,0x4f,0x5c,0x0,0xbb,0xea, + 0xae,0x5,0x26,0xe6,0xf8,0x9,0xa1,0x39,0x5e,0x9e,0x8a,0x10,0x17,0x59,0x79,0xda, + 0x5c,0x4f,0x6b,0xb2,0x1a,0xa2,0x23,0x51,0x27,0x1e,0xb1,0xf,0x60,0xfc,0x78,0xfe, + 0x1d,0xda,0xdb,0xca,0x36,0x8c,0x5b,0x4,0xb0,0x1e,0x30,0x85,0x39,0xff,0x71,0x4d, + 0xd,0x40,0xbe,0x6e,0x98,0xff,0xc8,0x6b,0x54,0x5a,0x17,0x7f,0x76,0xcc,0x69,0x78, + 0xce,0x94,0xa9,0x74,0xed,0x49,0x27,0x51,0xdb,0xbe,0x7d,0x94,0x86,0x80,0x2,0xb9, + 0x36,0x6f,0x54,0x3b,0xef,0x9,0xcd,0x78,0x68,0x60,0xdf,0x4a,0xfb,0x11,0x4d,0xf, + 0xed,0xcb,0x26,0xbc,0xd6,0xe2,0xa2,0xf5,0x59,0xbb,0x23,0x30,0x27,0xd9,0x8c,0x20, + 0xfc,0xf6,0x9d,0xe1,0x12,0x80,0x70,0x90,0x75,0x3c,0x33,0x23,0x18,0xd8,0x4d,0x2, + 0xf9,0x2b,0x2b,0x4c,0xdb,0x29,0xe3,0x66,0xa8,0xf3,0xad,0x55,0x42,0x6b,0x9d,0x12, + 0x40,0x13,0xa7,0x58,0x42,0x2a,0xc5,0x42,0xc0,0x98,0x67,0x74,0xe5,0xf2,0x58,0x55, + 0x24,0x87,0x8,0xec,0xac,0x3e,0x81,0x98,0xfe,0xb9,0x66,0x5,0x4a,0x12,0x8,0xa5, + 0x82,0xfc,0x12,0x81,0x94,0xf6,0xcf,0xa8,0x7,0x4,0x4d,0x83,0x69,0xc3,0x10,0x3, + 0x18,0x6c,0x15,0x9,0x69,0x2f,0xf,0x20,0xd2,0x17,0x9f,0x4e,0x7,0x73,0xf2,0x25, + 0x41,0xcc,0x74,0xe9,0xab,0x97,0xf5,0xc0,0x74,0x4f,0x2,0x4a,0x93,0x21,0x8d,0x56, + 0xb9,0x8,0x7c,0xe,0x24,0xcc,0x18,0x4b,0x43,0x8a,0x95,0x70,0xdd,0x3f,0x23,0x58, + 0x50,0x6,0xc,0xa4,0xf2,0xd5,0x35,0x73,0x46,0x9f,0xda,0xf6,0x38,0xb5,0xd1,0x5, + 0x4b,0x9e,0xd5,0xe6,0x7d,0x46,0xfa,0xe7,0xd,0xd9,0x11,0xbb,0xa8,0x5f,0xaf,0x5, + 0x80,0x99,0x5a,0x2c,0xb5,0x65,0x1b,0xba,0x1b,0xb4,0xf8,0x2c,0xcb,0x7d,0x3f,0xfc, + 0x2c,0xd6,0x98,0x0,0xa9,0x68,0x7a,0xd3,0xd3,0x91,0x9a,0x38,0x9e,0x7f,0x4b,0x4d, + 0x49,0x48,0x78,0x52,0x82,0x3,0x16,0x3,0xb,0x8,0x63,0xd6,0x67,0x6a,0x46,0xeb, + 0xdf,0xfc,0x4c,0x76,0x3d,0xc6,0x9,0x7a,0x76,0xe6,0x11,0x13,0x27,0x70,0x17,0xe1, + 0x77,0xaa,0xab,0xdb,0xbd,0xa6,0xfe,0x8e,0x42,0xe4,0x1,0x24,0x25,0x1,0xc5,0xa3, + 0xfd,0x2,0x9b,0xf4,0xa5,0xd6,0xd,0xd8,0xa9,0x54,0x60,0x79,0xec,0x83,0x4d,0x37, + 0x20,0x7,0xa0,0x3c,0x2f,0xec,0x6,0x84,0xbf,0xbb,0x31,0xac,0x13,0x20,0xc1,0x38, + 0x31,0xdf,0x5,0x71,0xa2,0xb3,0x60,0xc0,0x2c,0x7f,0xca,0x62,0xd8,0xf7,0x4c,0xf8, + 0x7,0xdd,0x87,0xf2,0xdc,0x53,0x26,0x7,0xdb,0xb0,0x2e,0x5d,0x7c,0x71,0xe1,0xc0, + 0x16,0x84,0x81,0xdd,0xfd,0x18,0xb6,0x6f,0xfa,0xff,0xd1,0x4d,0xb8,0x4a,0xb,0xaf, + 0x8c,0xe9,0xc6,0x3b,0x4b,0x59,0x1,0x67,0xfc,0xd7,0x7f,0xd3,0x9f,0x3e,0xf9,0x2f, + 0x5a,0x8,0x4,0xf3,0x7,0xfa,0x4c,0x7e,0xf,0xd5,0x8f,0x9b,0x9b,0xc9,0xaf,0xaa, + 0x62,0xf3,0x1e,0x1a,0x39,0x33,0x62,0x38,0xa5,0x76,0xec,0xd2,0x5a,0xde,0x12,0x2, + 0x4c,0x78,0x21,0x7b,0x9d,0x12,0x36,0x93,0xa7,0x45,0xd7,0x37,0xaa,0xeb,0x9a,0x30, + 0x85,0x32,0x2f,0x3c,0x4f,0x34,0x69,0x2a,0x65,0xd6,0x99,0x8c,0x46,0x8,0x96,0x5a, + 0x33,0xcd,0x7a,0xcc,0x52,0xe0,0x7b,0x82,0x85,0x21,0xe7,0x18,0x35,0x22,0x70,0x1, + 0x52,0x5b,0xb7,0x13,0x47,0x65,0x52,0x1e,0x6d,0x5f,0xb6,0x94,0x68,0xd6,0x61,0x74, + 0xe5,0x7f,0xfe,0x8c,0xee,0xfe,0x3f,0xff,0xbb,0x13,0x7f,0xd9,0x81,0x7,0xdb,0xfc, + 0x8f,0x7,0xf9,0xec,0xc9,0x40,0x6d,0x2b,0x20,0x9e,0x8,0x54,0xa,0x68,0x57,0x7a, + 0x40,0xf3,0xb3,0x2e,0x55,0x2f,0xe4,0x20,0xd1,0xfc,0x28,0x12,0x8a,0x7,0x27,0x79, + 0x0,0x6b,0xd7,0x69,0xb2,0xc4,0x52,0x81,0x93,0x4c,0xf9,0x90,0xf0,0x30,0x69,0xb5, + 0x26,0xf3,0x4d,0x54,0x5b,0xcf,0xfc,0x8b,0x6c,0xbb,0xec,0x2b,0xe4,0x29,0xbf,0x32, + 0x3e,0x2f,0xd3,0x53,0x6b,0x83,0x79,0xc,0x6d,0x61,0xc0,0x96,0x80,0xb1,0x2e,0x24, + 0x0,0x68,0x5b,0x20,0x22,0x20,0x58,0x8,0xa0,0x1a,0xb0,0x11,0x2,0x3c,0x37,0x80, + 0xb2,0x10,0xd8,0xa,0x78,0xce,0xc,0x9,0xe,0x6,0x22,0x69,0x61,0x0,0x57,0xc7, + 0x6b,0x6c,0xd2,0x2,0xa3,0x5a,0x99,0xee,0xfb,0x1a,0xf5,0x3e,0x62,0xf1,0x58,0xa4, + 0xf7,0xea,0x74,0xa1,0xd1,0x40,0x8,0x28,0x6b,0xc1,0x83,0x4b,0xe0,0x51,0x58,0xc9, + 0xc4,0xd7,0xd7,0xce,0xab,0x10,0xa,0x3c,0xd,0xba,0xa7,0xdb,0x44,0xa0,0x73,0x5a, + 0x6d,0xf4,0x19,0x88,0x45,0x0,0xb2,0x2b,0xf2,0xb3,0x9b,0x11,0x13,0x2,0x7c,0x1d, + 0x6b,0xd7,0xeb,0x76,0x36,0x6f,0xa0,0xbb,0x6f,0xf8,0x46,0xd2,0x9f,0xb4,0x24,0x50, + 0x88,0x54,0x60,0xfc,0xdd,0x9f,0x55,0xc7,0xb6,0xa7,0xed,0xe3,0xe8,0xca,0xb4,0x60, + 0xfd,0xda,0x2,0x90,0xc7,0x2c,0x67,0x18,0x6c,0x25,0x0,0x9,0xda,0x26,0x4d,0xc, + 0xf2,0xf2,0x6d,0xed,0x6f,0x13,0x12,0x8,0xc8,0x6f,0x82,0x73,0xfe,0x2a,0x1d,0x78, + 0x63,0x6f,0x5a,0x91,0x5a,0x4,0x81,0xac,0x63,0x29,0x48,0xc7,0x96,0x9c,0x96,0xcc, + 0x4,0x2c,0xa7,0xca,0xfd,0x6b,0x23,0x2e,0x83,0x20,0x1e,0x1c,0x94,0x9a,0x0,0xb6, + 0xe5,0xc1,0xf7,0x68,0xba,0x32,0xcf,0x9a,0x34,0x85,0xce,0xf8,0xa5,0xb2,0x2,0x2e, + 0xfb,0x84,0x31,0xb1,0x7d,0x36,0xb7,0xbd,0xe6,0x16,0x45,0x56,0x58,0x0,0x6a,0xbf, + 0xa6,0x3d,0x44,0x9b,0x9a,0x29,0x83,0x91,0x80,0x1b,0xd6,0x6a,0x12,0xc3,0x12,0xb2, + 0xcf,0x3,0xcd,0x3d,0xb6,0x46,0xed,0xb7,0x45,0x93,0x51,0xad,0xb3,0x40,0xd8,0xb8, + 0x99,0xbc,0x31,0xa3,0x3,0xa2,0x7b,0x28,0x66,0x32,0x76,0x22,0x79,0xeb,0xf4,0x7d, + 0xfb,0x13,0x6b,0x55,0x9b,0xfa,0x99,0x64,0xf0,0x8c,0xf0,0x92,0x43,0x30,0x18,0x81, + 0xa0,0x3,0x84,0x65,0x1,0xd9,0x71,0x8d,0xbc,0x6e,0x9,0xe3,0x60,0x2,0x55,0xc4, + 0x2,0xbe,0xf5,0xcd,0x92,0x16,0x2,0xdd,0x81,0x3d,0x31,0x88,0xa0,0xbd,0x29,0xc0, + 0x4b,0x75,0x52,0x10,0x20,0x67,0x10,0x10,0xe9,0xbf,0xfc,0x92,0x19,0xed,0x6f,0x8f, + 0xfd,0xdf,0x3b,0x65,0x4a,0xb0,0xce,0x16,0x80,0xe5,0xff,0x4b,0x50,0xf,0xe4,0x7, + 0xd1,0xf0,0x41,0xe1,0xd,0x10,0x5f,0x34,0xaf,0x87,0xc8,0xb5,0x22,0xb8,0x90,0x1f, + 0x92,0x6,0xdf,0xab,0xe6,0x9c,0x44,0xb,0x57,0xad,0x60,0x6d,0xfc,0x27,0xb5,0xc4, + 0x3a,0x96,0xc8,0xd9,0x7f,0xcc,0x2c,0xe7,0x9b,0x65,0xe5,0x1,0xd3,0x99,0xfc,0x8d, + 0xc6,0xd,0x18,0xb4,0xff,0x54,0xae,0x4c,0xcc,0x44,0xe7,0xa2,0xa5,0xe3,0xb3,0x93, + 0x92,0xda,0xac,0x21,0xc6,0x38,0xaf,0x64,0xdb,0xa1,0xd7,0x41,0xdd,0xc7,0x15,0xbf, + 0xfc,0x15,0x8d,0x5d,0xba,0x54,0xdf,0x2b,0x6b,0x6c,0x5f,0x97,0x37,0xdf,0xb5,0x5b, + 0x11,0x7b,0x87,0x22,0x71,0x3d,0xd1,0x9a,0x55,0x4a,0xcb,0xaf,0xe2,0x38,0x83,0xa7, + 0xee,0xd1,0xdf,0xa4,0x2d,0xb,0x7f,0xdb,0xe,0xf2,0x41,0x52,0x90,0x17,0xc1,0x3b, + 0xee,0xee,0x4b,0xeb,0x75,0xd9,0x8e,0xf8,0x84,0x21,0x32,0x5f,0x3,0x7a,0x14,0xe0, + 0x92,0x80,0xfc,0x4a,0x10,0xc0,0x1a,0xf0,0x95,0x7b,0x20,0x25,0xd5,0x3,0x97,0x80, + 0xaf,0xd1,0x90,0x9c,0xb3,0x1a,0x43,0x41,0xc0,0xbd,0xb,0x58,0xae,0xae,0xd3,0xbf, + 0xd5,0xaf,0x65,0xab,0x3,0x80,0x10,0x70,0x88,0xa2,0xb3,0x13,0x83,0x24,0x45,0xfd, + 0x4b,0x65,0x24,0x20,0x90,0xd3,0x2,0x40,0x1,0x4e,0x36,0xf7,0x1,0x2b,0xe2,0xc, + 0xc,0x5e,0x6b,0x4d,0xb6,0x69,0xb6,0xc5,0xbb,0xe4,0xc4,0x3f,0xe7,0xaa,0x3b,0x14, + 0x9a,0xfa,0x42,0x7a,0xde,0x53,0x2d,0x17,0xac,0x5a,0x11,0x6c,0x27,0xa4,0xe6,0x8e, + 0x1a,0x45,0xad,0xea,0x5,0xaf,0x68,0xd5,0xc1,0xbd,0x8c,0xba,0x8e,0x79,0xaf,0xbf, + 0x46,0xa4,0xb6,0x63,0x99,0x31,0xcb,0x3,0xb6,0x6e,0xa5,0xb7,0x47,0x8c,0xa0,0x3, + 0xb6,0x6f,0xa7,0x8b,0x8e,0xfb,0x80,0x22,0xe2,0xc6,0xa0,0x9b,0x51,0xc8,0x6f,0x23, + 0xa8,0x9,0x40,0xad,0x51,0x2b,0x0,0xb1,0x0,0x53,0xd2,0xfc,0xcc,0x54,0x9a,0xfe, + 0xf5,0x67,0x3f,0xa7,0x7f,0xfb,0xc1,0x3c,0x9d,0x66,0xb,0xdd,0xd,0x21,0x98,0x51, + 0xd6,0xcd,0x6e,0x45,0xe4,0xad,0x5b,0xb4,0xb6,0x47,0xcf,0x43,0x3a,0x1d,0xe4,0xeb, + 0xfb,0x26,0x2d,0x57,0x48,0x5a,0xc6,0x19,0x83,0x1e,0xb5,0xa1,0x22,0x92,0x31,0x57, + 0x5b,0x6b,0x6b,0x59,0x48,0x30,0xe1,0xb9,0x8b,0x4f,0xed,0x32,0x72,0xb8,0xb6,0x32, + 0x94,0x20,0x80,0x10,0x88,0x5c,0xaf,0x9,0xe,0x42,0xfb,0x67,0x56,0xae,0xe,0xdd, + 0x2,0x4c,0xc9,0xe,0x37,0x0,0x96,0x6,0xac,0x3,0x8,0x2,0x5c,0xa3,0x12,0x16, + 0x1c,0x4f,0x98,0x60,0x7a,0x8,0xb0,0x5d,0xed,0xd7,0xde,0xb0,0x84,0xfe,0xd8,0x75, + 0x78,0xa5,0xfa,0x5c,0xd1,0xcd,0x36,0x3a,0x33,0x31,0x48,0x7c,0x7b,0x29,0x91,0x1f, + 0x48,0xb4,0x0,0x76,0x99,0xd1,0x7f,0xd2,0xdd,0x97,0x5,0xf5,0xe2,0xa1,0x20,0x48, + 0xa0,0xfd,0xc9,0xa,0xb4,0x61,0x7a,0x30,0xf3,0x1d,0xe4,0x47,0x57,0x1b,0xce,0x82, + 0x13,0x95,0x1b,0xe2,0x2f,0x34,0xda,0x1d,0x9f,0x15,0xa3,0x47,0xf3,0xe7,0xc1,0xda, + 0x29,0xf4,0xa0,0x7a,0xe9,0xdf,0x19,0x34,0x98,0xde,0xad,0xac,0xa4,0x65,0x83,0x7, + 0xd3,0xb2,0x21,0x43,0xe8,0x8d,0x21,0x83,0xe9,0x8d,0x41,0xd5,0x8a,0x84,0x19,0xfd, + 0xc2,0x93,0x4e,0xd8,0x38,0xff,0xca,0x2b,0xf9,0x3c,0x17,0xa8,0x25,0x4a,0x7a,0x7b, + 0x63,0xc6,0x32,0xf1,0xe3,0x9,0x45,0x7c,0xb9,0x12,0x97,0x90,0xca,0xc5,0x6,0x51, + 0x2b,0x40,0x93,0x77,0x7a,0x63,0x23,0xa5,0x95,0xc6,0xe7,0xf8,0x4,0x34,0x3c,0xdf, + 0x6e,0x9b,0x16,0x6,0x4c,0x74,0x75,0xfe,0x5d,0x7b,0xb4,0x1f,0xf,0xab,0xc0,0x68, + 0xfc,0xa,0x45,0xfa,0x32,0xa4,0xea,0xd6,0xd5,0xb1,0x0,0x6b,0x2d,0x4b,0x73,0x3c, + 0xb1,0x15,0x3d,0xe,0xaa,0x8d,0xb4,0x19,0x46,0x9d,0x96,0xde,0x13,0x8,0x2,0x93, + 0x55,0xc8,0x24,0x5d,0xaf,0x85,0x2d,0x88,0x1f,0x90,0xdd,0x4c,0xbd,0x16,0x89,0x9, + 0x88,0xe9,0x6f,0xd6,0x3,0x1,0x5c,0x67,0x9,0x3c,0x5c,0x27,0xfe,0x46,0x7f,0xff, + 0x47,0xbf,0x24,0x79,0x7b,0xc8,0xc4,0xfa,0xed,0xbb,0xa,0x10,0xb9,0x33,0x64,0xee, + 0xec,0xfe,0xfd,0x5,0x89,0x16,0x0,0x1e,0xf1,0x60,0x99,0x11,0x28,0xa9,0x9b,0x4b, + 0x26,0xa,0xb1,0x8a,0x6f,0xca,0x80,0x1b,0xd1,0xae,0x1c,0x6d,0x57,0xe4,0x7,0xc9, + 0x60,0xf2,0x23,0xbd,0x16,0x5d,0x6f,0x8f,0x91,0xee,0x7a,0x7b,0x77,0x94,0x36,0x5d, + 0x5f,0xa9,0xaa,0xe4,0xae,0xbb,0x65,0xfb,0xd,0xa3,0x6d,0xeb,0xd6,0xd1,0xbe,0x66, + 0x33,0x77,0x1f,0x4a,0x63,0x29,0x8d,0x7e,0x62,0x75,0x15,0xbf,0xd0,0x10,0x4,0x7c, + 0x2e,0xf3,0x2,0x34,0x4d,0x9a,0x14,0xc4,0x4,0xb2,0x2e,0x6f,0xac,0x2e,0x59,0xe, + 0x81,0xc0,0xdf,0x63,0x19,0x83,0x70,0x53,0xe2,0x56,0x0,0xff,0xae,0xfc,0x7c,0x6f, + 0xcb,0x56,0xba,0xf9,0xce,0x3b,0xe9,0x6b,0xd7,0x5d,0xa7,0xb7,0xb7,0x28,0x4b,0x64, + 0xf7,0x5e,0xf2,0x5b,0xda,0x8c,0x8f,0xad,0xdc,0x8b,0x61,0x43,0xc9,0x47,0xe6,0x9e, + 0x39,0xe,0x1a,0xbf,0xd,0xcf,0xc4,0x3c,0x83,0xd1,0xad,0x75,0xf4,0xd1,0x25,0xeb, + 0xa8,0x75,0xe7,0x46,0xda,0xb6,0x6f,0x1f,0x61,0x8a,0x52,0x90,0xbc,0x46,0xed,0x3f, + 0x6c,0xf8,0x68,0x6a,0x1d,0xf1,0x6,0xfd,0xfa,0x28,0x5d,0xf9,0x98,0xc9,0xf,0x4b, + 0xc0,0x4,0x1e,0xa1,0xc5,0xd1,0x45,0x18,0x4,0x22,0x9b,0x4d,0xad,0x5,0xfe,0x6e, + 0x24,0x69,0x42,0xf2,0x53,0x6a,0xf2,0x44,0x6d,0x1,0xe8,0x87,0x14,0xf4,0x64,0x7c, + 0x1e,0x3d,0x35,0xdd,0xa8,0x56,0x54,0xea,0x18,0xe8,0x13,0x83,0x24,0x2a,0x88,0x9d, + 0xdf,0xf9,0xe,0xbf,0x32,0x81,0x10,0x48,0x78,0xe1,0xb8,0x24,0x98,0x11,0xe,0x49, + 0xe3,0xed,0xc5,0xdf,0x97,0xdc,0xfa,0x47,0xdb,0x9a,0x79,0x3e,0x80,0xb7,0xc6,0x8e, + 0xa5,0x37,0x14,0xe9,0xdb,0x50,0x69,0xa5,0xa1,0x89,0x2a,0xf6,0xec,0xa6,0x41,0xea, + 0xe5,0x2e,0x57,0x9a,0xf8,0x58,0xa5,0xf9,0x9f,0x53,0x1a,0xf8,0x38,0x1c,0x83,0x44, + 0x99,0x61,0x13,0xa8,0x79,0xd8,0x10,0x7a,0x6d,0xf4,0x10,0x6e,0x73,0x52,0xfd,0x6, + 0x1a,0xa4,0x4,0x4,0xda,0x3c,0x74,0x5f,0x3,0x7d,0x5e,0x91,0x14,0xb3,0x10,0x7f, + 0x41,0x2d,0x2b,0x95,0x5b,0xc2,0xc5,0x49,0xac,0xa0,0x58,0xae,0x81,0x49,0xf6,0xf5, + 0x36,0xac,0x50,0xbe,0xf7,0xba,0xb5,0x3a,0x85,0x18,0x1b,0x86,0xed,0x47,0x3f,0x50, + 0xe6,0xf4,0x92,0x19,0x33,0xe8,0x95,0x23,0x8f,0xa0,0x66,0x65,0x5,0xec,0x56,0x5a, + 0xba,0x6d,0xcf,0xe,0x9d,0xff,0x8f,0xf6,0xd1,0xfd,0xa7,0x0,0xad,0xdf,0x26,0xa6, + 0xbe,0x3a,0xe7,0x37,0x96,0xbf,0x45,0xf5,0x2f,0xff,0x83,0xfe,0x4e,0xc4,0x13,0x98, + 0xe3,0x73,0xbc,0xfa,0xa0,0x6f,0xe1,0x44,0xd2,0x41,0xcc,0x72,0x1a,0xa6,0xce,0x53, + 0x49,0x55,0x4a,0xf6,0x36,0xd6,0xe,0xa3,0xdb,0x2f,0xb9,0x80,0xe6,0x6e,0x58,0x4b, + 0x7f,0x3c,0x70,0x3a,0xd1,0xd8,0x49,0xdc,0xdd,0x48,0xef,0x3f,0x5c,0x5f,0x28,0xac, + 0x13,0x58,0x3d,0x30,0xf7,0x61,0x69,0xb4,0xb6,0x86,0x7f,0x8f,0x58,0x4d,0x46,0xb6, + 0x0,0x24,0x8f,0xbd,0xbe,0x8e,0x27,0x3e,0xd,0xdc,0x80,0x1b,0xbe,0x51,0x92,0x42, + 0xa0,0x3f,0x94,0xe6,0xea,0x77,0xbd,0x0,0x30,0xff,0x65,0x3e,0x40,0xf4,0xed,0x4b, + 0xfd,0x3f,0x7b,0xc9,0xc8,0xe1,0xfb,0x6b,0xbf,0x7f,0xb5,0x26,0xbf,0xc9,0x53,0xb7, + 0xc9,0xff,0x6a,0x65,0x5,0xbd,0xb0,0x7b,0xf,0x8d,0x39,0xf8,0x60,0xba,0xf0,0xad, + 0x3a,0xda,0xd9,0xb8,0x99,0x3e,0x45,0xc3,0x99,0x2c,0x27,0x5f,0xf9,0xef,0x89,0x17, + 0xf9,0xf4,0xbc,0x5b,0xe8,0xed,0x63,0x6b,0xe8,0xa5,0x63,0x6b,0x69,0xd3,0xe0,0xe9, + 0x54,0xb6,0x65,0xb,0xbd,0xf1,0xd7,0xbf,0xf2,0x6f,0x5f,0x30,0x42,0xe0,0xda,0x7f, + 0xfa,0x27,0x92,0x42,0xa3,0xa8,0xf1,0x7,0xeb,0x24,0x35,0xba,0x26,0x6c,0xc4,0x1a, + 0x6a,0x2c,0x56,0x40,0xd0,0x4b,0x61,0xb9,0x1,0x9e,0xba,0xb6,0x99,0xca,0x4c,0xff, + 0xd9,0xb9,0x67,0xf3,0x60,0xa7,0x2a,0xf5,0xa9,0x50,0x64,0xdb,0xb4,0x43,0xb9,0x5, + 0xc3,0x87,0x7,0xe4,0x87,0xd6,0x6f,0xf1,0x52,0x74,0xe6,0x98,0xd1,0x34,0x6d,0xd5, + 0x8b,0xd4,0xf6,0xf8,0xab,0xb4,0x83,0x46,0x12,0x3a,0x20,0x67,0xa8,0xcf,0x27,0xd4, + 0x3d,0x1,0x27,0x5f,0x9d,0x7c,0x4f,0x4f,0xce,0xbb,0x95,0x76,0x96,0xd,0xa1,0xdf, + 0xff,0xe9,0x45,0xaa,0x53,0xa,0x7f,0xdc,0xf6,0x5d,0x74,0xf4,0xdc,0x29,0x74,0x39, + 0x26,0x42,0x45,0x8c,0x60,0xa4,0x3e,0x9e,0x26,0xd5,0x52,0xa6,0xcc,0x98,0xf7,0xbe, + 0x89,0x49,0xe0,0xf7,0x98,0x50,0x66,0xb,0xc0,0x8,0x1,0x7f,0xdc,0x64,0xa2,0xd7, + 0x5f,0xd5,0x6,0xc3,0x2b,0xaf,0x26,0x9e,0xbf,0xbf,0xa3,0x3f,0x90,0xbf,0xd0,0x28, + 0x46,0x6f,0x44,0x96,0x0,0x58,0xa6,0x5e,0xb2,0x19,0x53,0xa6,0xb0,0xf6,0x6f,0x1b, + 0xaf,0x4d,0xe9,0x88,0x10,0x88,0x69,0x59,0xdd,0x4a,0x38,0xdc,0xd6,0x36,0xfd,0x89, + 0xfd,0x52,0x3f,0x24,0x7f,0x45,0x39,0xfd,0x75,0xd3,0x66,0x3a,0x71,0xe2,0x50,0xfa, + 0xcc,0x5f,0xde,0xe2,0xd9,0x81,0x4f,0xbe,0xfa,0x36,0xdd,0x6,0x14,0xd4,0xdc,0x73, + 0x89,0xfe,0xf0,0x28,0xd1,0x85,0xe7,0xa9,0xe5,0x7c,0xa2,0xc6,0x16,0xa2,0xca,0x72, + 0x3a,0x79,0xc9,0x12,0x3a,0xf9,0x8f,0xf3,0xe9,0x73,0x3e,0x26,0xf1,0xb8,0x8f,0x9e, + 0x99,0x7a,0x20,0x65,0xce,0x3b,0x8f,0x67,0x30,0x7a,0xe2,0xfb,0xdf,0x67,0x21,0x80, + 0x9a,0xbc,0xd5,0xa8,0xd3,0x27,0xf3,0x4,0xd8,0xb5,0x5,0xe2,0xc5,0x47,0x28,0xec, + 0x87,0xaf,0x46,0x37,0xe2,0x1a,0xe3,0x97,0x7b,0x7a,0xba,0x70,0x44,0xfd,0xaf,0xfa, + 0xe5,0xaf,0xe8,0xfb,0x57,0x7c,0x96,0x93,0x9d,0xd2,0x8a,0xe8,0x15,0x8a,0x90,0xcd, + 0xdb,0x74,0x72,0xe,0x34,0x7f,0x33,0x8,0x58,0x59,0x45,0xa7,0x3c,0xff,0x17,0x5a, + 0xf8,0xfa,0xeb,0x84,0x79,0x91,0xe7,0xaa,0xa3,0x5b,0x14,0xf1,0x3,0xd2,0x27,0xdd, + 0x53,0x93,0xbe,0xa7,0x53,0x97,0x28,0xbb,0x40,0xdd,0x13,0xf9,0x8d,0xf4,0xeb,0x5, + 0xbf,0xa5,0x9a,0x91,0x4a,0xd8,0xbc,0xbb,0x92,0x7e,0x7e,0xe0,0x34,0xba,0x3c,0xee, + 0x76,0x65,0x90,0x1e,0xbc,0x85,0x3,0xa0,0xd2,0x39,0x1b,0x4,0x2,0x65,0x17,0xf4, + 0x2,0x48,0xef,0x2,0x7a,0x14,0xd0,0xe5,0x88,0x51,0x87,0xb8,0xfe,0xb9,0x73,0xe9, + 0x89,0x2f,0x7e,0x51,0x5f,0x92,0x65,0x9,0xa4,0xbb,0x58,0x7b,0xc1,0xa1,0xe7,0x51, + 0xac,0xae,0xc8,0x2c,0xdb,0x7e,0x66,0xac,0xc6,0x5e,0x30,0xf,0x80,0x1,0xb,0x5, + 0x19,0x3f,0x8d,0x69,0xc0,0x62,0xa6,0x3f,0x0,0xf2,0xa7,0xd9,0xfc,0xf7,0xe9,0x31, + 0xa5,0xfd,0x45,0xf3,0xbf,0xaa,0x2c,0x8a,0x13,0x9b,0x9b,0xe8,0x33,0xcb,0x5b,0xe9, + 0x84,0xaf,0xfc,0x9b,0x26,0xa,0x8,0x22,0x1f,0x26,0xcc,0x79,0x21,0x71,0x3e,0x7e, + 0x81,0x22,0xce,0xb9,0xe1,0x77,0xb5,0x7e,0xdd,0xe1,0x9f,0xa6,0x87,0x26,0xcc,0x24, + 0x6f,0xc7,0x5b,0xf4,0xc4,0x9e,0x3d,0x74,0xda,0xb5,0xd7,0x6,0xe7,0xdd,0x83,0x49, + 0x46,0xd0,0xc7,0xae,0xb4,0x36,0x97,0xb,0x9f,0x30,0x5e,0x9b,0xd4,0x14,0x4e,0x68, + 0xc2,0xdf,0x65,0xd8,0x32,0x2,0x9d,0x10,0x5a,0x26,0xe7,0x80,0x73,0x2,0x94,0x70, + 0x3b,0x1b,0x69,0xbe,0xca,0x15,0xe1,0xc2,0x9f,0x5c,0x74,0xc3,0xa3,0x51,0xa6,0xa0, + 0x28,0x34,0x7f,0xb3,0xa7,0xc9,0x7f,0xc7,0x3f,0x96,0xd2,0x3,0x8a,0xfc,0x38,0xfa, + 0x32,0x1a,0x41,0x27,0x5c,0x9d,0xc7,0x3d,0x29,0x93,0x3f,0xdc,0x8e,0x7b,0xba,0x88, + 0x3e,0x7e,0xf6,0x65,0xf4,0xbf,0x8e,0x3b,0x9a,0x76,0x3f,0xfd,0x17,0xaa,0x7e,0xe3, + 0xed,0xf0,0x4f,0x3,0x41,0xcb,0xc3,0xac,0x75,0x22,0x10,0x4d,0x9a,0xac,0x7b,0x1, + 0x90,0x14,0x4,0x2b,0xc0,0xa,0x88,0x71,0x97,0xa1,0x24,0x48,0x49,0x8f,0xc2,0x8c, + 0x99,0xfa,0xbe,0x94,0x2b,0x93,0x4a,0x70,0xe3,0x1c,0xfa,0x7,0xda,0x21,0x7f,0xb7, + 0x63,0xbc,0x89,0x41,0x40,0xf1,0xfd,0xa1,0xed,0xb3,0xb4,0x3f,0x0,0x33,0xb3,0xbe, + 0x3e,0x72,0xc,0x7,0xd5,0x9e,0x59,0x14,0x76,0x3b,0x89,0xb9,0xad,0x3e,0xaf,0x56, + 0x94,0x29,0xf2,0x6f,0xa4,0x7b,0xfc,0x11,0xea,0x1d,0x6d,0xa2,0x13,0x96,0x98,0x8c, + 0xbb,0xa0,0x4,0x2e,0x85,0xdf,0x3d,0x6b,0x49,0xd6,0xf7,0x5f,0xfe,0x5a,0xb1,0xec, + 0xe3,0x44,0x17,0x9d,0x4b,0xe5,0x4a,0x93,0xfe,0xe2,0xf2,0x9b,0xe8,0x53,0x3f,0xbb, + 0x89,0xbc,0x3,0x4e,0xa0,0x19,0x43,0x87,0x6,0xcd,0xa0,0xe7,0x62,0x90,0x35,0xfb, + 0x10,0xc0,0x53,0x85,0xd5,0xc5,0xe6,0xd,0x44,0xd3,0x35,0x63,0x68,0x90,0xa7,0x85, + 0x40,0xe0,0x6,0x98,0xeb,0x6e,0x52,0xf7,0x78,0xf0,0xdf,0xfe,0x4e,0x6f,0xcd,0x3e, + 0x86,0x67,0x23,0xc2,0xd6,0xf4,0x4a,0x93,0xe5,0x57,0x5e,0x49,0x3f,0x5c,0xba,0x9a, + 0x16,0xbe,0xf9,0x1a,0xdd,0x62,0x4c,0xfd,0xee,0xde,0x13,0xac,0x83,0x4f,0x7e,0xe9, + 0x44,0xfa,0xc5,0xf,0xef,0xa5,0x27,0x66,0x1f,0x48,0xa7,0xd,0xdf,0x8f,0x68,0x82, + 0xd5,0x4b,0x1,0x72,0x63,0x30,0x90,0x49,0x24,0xa,0x84,0x80,0xf9,0x7b,0xc4,0xe1, + 0x61,0xce,0x43,0xe5,0x6,0xa0,0xfb,0x31,0xf5,0xea,0xeb,0x44,0x1f,0x3a,0x99,0x83, + 0xad,0xf6,0x28,0x4d,0x87,0xbe,0x8f,0x5c,0xe4,0x47,0x16,0x63,0x21,0x52,0x93,0xb3, + 0xde,0x9c,0x40,0xa7,0x28,0x53,0x31,0xf0,0xf7,0x29,0xdb,0x12,0x0,0xa4,0x5b,0x4d, + 0x92,0x7d,0x90,0xcc,0x83,0xf,0xa4,0xa,0xfc,0x7e,0x68,0xff,0x77,0x47,0x8f,0xa6, + 0xb7,0x94,0xa9,0x7a,0x9c,0xd2,0xbc,0x1f,0xfa,0xe2,0x57,0xd8,0x9c,0xd7,0xed,0x53, + 0xb8,0x94,0x4f,0x52,0x81,0x4c,0xd9,0xe,0xa2,0x80,0x30,0x80,0xb2,0x4,0xbc,0xc7, + 0x5e,0xa6,0xb,0x1f,0x7e,0x9b,0xd6,0x2d,0x7e,0x81,0x5d,0x1,0xbe,0x46,0xeb,0xda, + 0xed,0x62,0x25,0x76,0xd1,0x51,0x8,0x3,0xb6,0xc,0x28,0xec,0x1e,0xc,0x32,0x8, + 0xb9,0x5b,0x2e,0xa5,0x2c,0xee,0xc,0xcd,0xda,0xbc,0x99,0xa6,0xff,0xed,0x6f,0xfa, + 0x3e,0xad,0x4b,0x6a,0x4b,0x97,0xd1,0x3d,0xcd,0xf5,0xf4,0xc4,0xeb,0xcf,0x11,0x1c, + 0x24,0x68,0xfc,0x42,0xdd,0x13,0xbd,0xf4,0x2e,0x55,0xed,0x58,0x4f,0x6f,0xde,0xf1, + 0x1b,0x7a,0xaa,0xd9,0x9a,0x65,0x79,0x52,0xad,0x1e,0x1,0x38,0xd6,0x4,0x34,0xb1, + 0x9e,0x89,0xe7,0x69,0x26,0x60,0xf4,0x48,0x16,0x18,0x70,0x3,0xbe,0x7f,0xdf,0xcf, + 0x9d,0x0,0xe8,0x67,0xc8,0x45,0x7e,0x4,0x16,0xd1,0x15,0xae,0x96,0xdd,0x8e,0xec, + 0x46,0x4,0x0,0x2,0x80,0x92,0xe8,0xc2,0xd3,0x7a,0xa1,0xaf,0x1f,0xc4,0x57,0xeb, + 0x2c,0xc,0xec,0x1e,0x1,0xa5,0x39,0x75,0x62,0x4d,0x48,0xa0,0x20,0xaf,0xbf,0xbc, + 0x9c,0xd2,0xa6,0xf1,0x37,0x94,0xbf,0x7b,0x7c,0xc5,0x8,0xfa,0x5f,0xfe,0xf0,0xf0, + 0x44,0x71,0x2d,0x69,0x57,0xdd,0xf1,0xcc,0x81,0xff,0xfd,0x6b,0xbd,0xfc,0xf5,0x1f, + 0xc3,0xfd,0x40,0x18,0x0,0xa4,0x51,0x5a,0xf3,0xc3,0x57,0x7e,0x85,0x2e,0x56,0x96, + 0xfd,0xcb,0xa8,0xb2,0x63,0x9a,0xb4,0x5,0x58,0x1c,0x52,0xba,0x4c,0xac,0x80,0x48, + 0x2d,0x82,0x29,0xc6,0x6c,0x36,0x82,0x83,0x2f,0x31,0x46,0x96,0x36,0xc,0xcd,0xad, + 0x4c,0xd3,0x31,0xa9,0x4a,0x26,0xff,0x3f,0x53,0xe1,0xef,0xe9,0xe3,0x67,0x5e,0x4c, + 0xc7,0x8c,0xf6,0x68,0x57,0xfd,0x5f,0x42,0x92,0x23,0x23,0x11,0xda,0xbf,0xdc,0x32, + 0xd8,0x8c,0x2b,0x10,0x8c,0x5e,0x34,0xdb,0x22,0xd7,0xc3,0x19,0x8d,0x7a,0x3c,0xc3, + 0x63,0xc8,0x6d,0x20,0x2a,0xc9,0xde,0x80,0x52,0x44,0x7b,0xe4,0x2f,0x24,0xb2,0x2c, + 0x80,0x41,0x30,0xff,0xad,0x19,0x80,0x98,0xf8,0x8,0x24,0x59,0x16,0x40,0x60,0xfe, + 0x1b,0x61,0x80,0x59,0x76,0xbd,0x35,0x75,0xb4,0x40,0x19,0xcb,0x1e,0xfa,0xfa,0x5b, + 0x1a,0xb9,0xe1,0x77,0x94,0xf6,0x7f,0x73,0xdb,0xe,0xba,0x64,0xdb,0x9e,0xd0,0x37, + 0x8e,0x6b,0x46,0xbb,0x4c,0x1e,0x8,0x72,0xbf,0x21,0x47,0x99,0x35,0x45,0x96,0x68, + 0xc9,0x7,0x1e,0xc9,0xfa,0xad,0xe5,0x81,0xbf,0xd3,0x3f,0x1e,0x7a,0x2c,0x1c,0x2, + 0xac,0x3e,0xc1,0x6c,0xc3,0x8a,0xcc,0x11,0xed,0x6f,0x59,0x1,0x1,0x4c,0x7a,0xb0, + 0xdf,0x16,0x12,0x5f,0x2e,0x4e,0x4,0x40,0xc0,0x6d,0x75,0xbf,0xf7,0xfc,0xf5,0x4d, + 0xba,0xfa,0xf,0xb,0xe9,0x5f,0x68,0x34,0x9d,0x52,0x8c,0x7b,0x2a,0xab,0xa6,0xb5, + 0xcb,0x56,0xd3,0x4b,0x3f,0xfc,0x79,0x28,0x6c,0x71,0x8d,0xe3,0x26,0xea,0xa5,0xad, + 0xfd,0xe3,0x49,0x31,0x49,0x7e,0x3e,0x7a,0x13,0x8c,0x20,0x80,0x15,0xc0,0x97,0xe7, + 0xac,0x80,0x3e,0x8d,0x7c,0xc9,0x6f,0xbe,0xc7,0x55,0x4f,0xa7,0x10,0x79,0x63,0x30, + 0xe6,0x7f,0x1f,0xf2,0xfc,0xcd,0xb,0xc2,0x16,0xc0,0x86,0xd,0xc9,0xb9,0x0,0xa6, + 0xa,0x4e,0xc3,0x7b,0xcb,0xa9,0x72,0xfa,0x34,0xd6,0xbc,0xe7,0x4f,0xdd,0x3f,0x52, + 0xcd,0x76,0x69,0x55,0x25,0x1d,0xa9,0x5e,0x5a,0x44,0xfb,0x99,0x28,0x2,0x9b,0x1c, + 0x58,0x82,0x20,0xf8,0x40,0x1b,0xb6,0x36,0xea,0xf5,0x4b,0xe7,0xea,0x25,0xbe,0x63, + 0x3b,0xd6,0x2f,0x3a,0x3f,0xfc,0xed,0x81,0x47,0xf9,0xb6,0x41,0xc2,0x6f,0x4d,0xd9, + 0x8f,0xee,0xdb,0xa5,0xad,0x0,0x34,0x87,0x2b,0x10,0x21,0x60,0x4f,0x3e,0xc2,0x4b, + 0xa5,0xfd,0xed,0x22,0xa6,0x91,0x27,0x10,0xab,0x4a,0x8c,0x11,0x88,0x42,0x95,0x7d, + 0x48,0xfc,0x51,0x1a,0xb8,0x6c,0x4f,0x9a,0xe,0x54,0xdf,0x9b,0xd0,0x71,0x59,0xa4, + 0x7b,0xba,0xe8,0xc3,0x97,0xd1,0xd9,0x13,0x27,0x72,0x51,0x90,0xb0,0xfd,0x4,0xd2, + 0x6,0x56,0x80,0xc9,0x18,0x9c,0x6c,0xe5,0x3c,0x20,0x69,0x11,0xdb,0x37,0x6f,0xe5, + 0x38,0x0,0x2,0x81,0xba,0x19,0x23,0xd4,0x9c,0x25,0x50,0x74,0x74,0x45,0x5b,0x77, + 0x92,0xfc,0x36,0xba,0xf4,0x7,0x8d,0xb0,0x1a,0xaf,0xc6,0x20,0x19,0xee,0x4b,0xda, + 0x2,0x60,0xf3,0x93,0xf7,0xc,0x3,0x7f,0xde,0xb8,0x71,0x91,0x46,0xb8,0xd4,0xb6, + 0x19,0xc5,0xf7,0x28,0x67,0xfa,0x79,0xec,0xfb,0x2f,0xdd,0xb1,0x93,0x2e,0x6d,0x1e, + 0x1a,0xed,0x16,0x93,0xf7,0x58,0xc8,0x81,0x97,0x1e,0xa8,0x2a,0xd7,0xdd,0x62,0x43, + 0xf6,0xd3,0xeb,0xe8,0x32,0xc3,0x72,0xf0,0x50,0xbd,0x2e,0xe4,0xc1,0x52,0xba,0xd3, + 0x4c,0x5b,0x6f,0xff,0x69,0x29,0x1d,0xd0,0x18,0xd6,0xc3,0xb,0x6e,0xa,0x3e,0x6f, + 0x6c,0x46,0x22,0x8e,0x1,0x98,0x22,0xa6,0x9c,0xc3,0x50,0xa3,0xef,0xa5,0xdd,0xa2, + 0x23,0xa,0x3b,0xeb,0xea,0xe8,0x5f,0x95,0xe0,0x58,0xb5,0x7e,0x13,0x7d,0x8a,0x6a, + 0xb4,0xf6,0x2f,0xd6,0x3d,0x79,0xe5,0xb4,0x7e,0xf9,0xe,0x5a,0xbe,0xe4,0x37,0xdc, + 0xcc,0x68,0x94,0x4,0xe7,0x1e,0x81,0x4c,0x38,0xa0,0x69,0xa2,0x19,0x90,0x95,0xf1, + 0xc3,0x9c,0x8c,0xd5,0x75,0xe1,0x5,0xfb,0xba,0x7c,0x1b,0x29,0x1,0x81,0x9e,0x8b, + 0xb2,0x7f,0xbc,0xe6,0x7a,0x2,0x7a,0x10,0x3d,0x4c,0x7e,0x41,0xa7,0x85,0x40,0xa4, + 0x17,0x0,0xe4,0xc7,0x48,0xbf,0xc1,0xeb,0xb5,0xb9,0xcf,0x66,0xbf,0xf5,0xd2,0x80, + 0xf8,0x81,0xf9,0x1f,0xc,0x41,0xd5,0x95,0x82,0x40,0xfe,0xf9,0x8a,0xfc,0x69,0xeb, + 0x3a,0xe,0x1f,0x3e,0x96,0x5a,0xf6,0x6c,0x8d,0x5e,0x9a,0xbc,0xf0,0x95,0xe5,0x7a, + 0x1d,0x84,0xa8,0xae,0x30,0x43,0x5f,0xa1,0xfe,0x24,0x7,0xa0,0x59,0xfd,0x56,0xa1, + 0x23,0xe4,0xa2,0x4d,0xa1,0xbd,0xf0,0x1b,0x1a,0xab,0xd6,0xda,0xf1,0xc9,0x79,0xb7, + 0xf0,0xb2,0xba,0x7c,0x7,0x2d,0xf5,0x6b,0x68,0x26,0x66,0x2d,0x22,0x6d,0x5,0x30, + 0xcc,0x14,0xe4,0x36,0xd8,0x2,0x40,0xd,0x3e,0x2b,0x21,0x28,0xe8,0xe,0xe4,0x1, + 0x50,0xa1,0xb6,0xd,0x9e,0xa8,0xba,0xbe,0xfd,0x37,0xee,0xa3,0x9a,0x59,0xd3,0xa9, + 0x69,0xe9,0x6b,0xc5,0xbd,0xa7,0x1f,0xdc,0x42,0x65,0xe3,0xc7,0x50,0xea,0xed,0xd7, + 0x89,0xde,0xff,0x11,0xb6,0xae,0x82,0x39,0x9,0x62,0x81,0xc5,0xd4,0xd6,0x6d,0x7a, + 0x3,0x8a,0x8b,0xca,0x80,0x20,0x73,0xdf,0xdc,0xd9,0xa0,0xfe,0x36,0xad,0xd3,0xa6, + 0x51,0xd9,0xaa,0x55,0x34,0x7f,0xc7,0x2e,0x3a,0xd2,0x1a,0xf5,0xe6,0x4,0x42,0xdf, + 0x41,0x1,0xc8,0xdf,0x25,0x44,0xde,0x0,0x26,0xff,0xda,0xb5,0x61,0xcd,0xff,0x89, + 0xd1,0xc1,0x33,0x20,0xbf,0xd6,0xfe,0x51,0x73,0x34,0x63,0x5a,0x39,0x2f,0x5d,0x41, + 0x52,0x9e,0x72,0xd9,0xa0,0x6a,0x6a,0xa6,0x2d,0x9a,0x23,0x30,0x95,0xe3,0x16,0xac, + 0x98,0xb4,0xf6,0x32,0xe5,0x85,0x9,0x40,0x20,0x3,0x7e,0xc2,0xf7,0x4a,0x53,0xe0, + 0x13,0x79,0x1,0x20,0x55,0x63,0x38,0xac,0xf7,0x54,0xa5,0x89,0x2b,0xd4,0x8e,0xbf, + 0xfc,0xdd,0x83,0x74,0xa8,0x69,0x4b,0xea,0x6e,0x90,0x4c,0xa0,0x91,0x27,0x82,0x20, + 0x66,0x2,0x50,0x4c,0x74,0x6a,0x4d,0x5,0xfd,0x74,0xd0,0xa2,0x1e,0xb9,0xa7,0xe1, + 0x1b,0x9a,0xc9,0x5f,0xaf,0xcb,0x80,0xb5,0x99,0xbf,0x87,0x4c,0xe,0x42,0x66,0x60, + 0x14,0xac,0x0,0x5d,0x18,0x24,0xe1,0x1e,0xe3,0xe4,0x96,0x6b,0x71,0xe8,0x73,0xe8, + 0x2d,0xf2,0x3,0x11,0xb,0x20,0x18,0xfe,0x2b,0xd5,0x7e,0xac,0x7c,0x7f,0x21,0xbf, + 0x5f,0xbf,0x25,0x8b,0x54,0x9e,0x29,0xe0,0x81,0x31,0xfb,0x10,0x0,0x6f,0x2b,0xf3, + 0x1f,0x2f,0xf5,0x3f,0x37,0xc,0x57,0xa6,0xf2,0xe7,0x63,0xa7,0xf4,0xb4,0xe6,0x3, + 0x19,0xaa,0x2b,0x28,0x1b,0xbe,0xd6,0xa0,0xbc,0xea,0x6b,0x8d,0x7,0xd,0xfa,0xc0, + 0x7c,0xeb,0x38,0xfd,0x3b,0xb4,0xbf,0xae,0x99,0x9b,0xa2,0xff,0x1c,0x33,0x83,0x90, + 0xf2,0x93,0x31,0x9f,0x24,0xdd,0x16,0x4,0x4,0x2b,0xac,0xf3,0x9a,0x74,0x60,0x2f, + 0x55,0x9e,0x68,0x3f,0x85,0xa,0xd7,0xa7,0xd6,0xe7,0xdf,0xa1,0x8a,0x73,0xce,0x53, + 0x4,0x3d,0xb1,0xe8,0xf7,0x54,0xae,0xfe,0x6d,0x5a,0x13,0xe6,0x2c,0x40,0xfb,0x7, + 0x2,0x40,0x1e,0xff,0xba,0x35,0x9c,0xd,0x18,0xd4,0xf,0x4,0x4c,0x89,0x32,0x7f, + 0xbc,0x49,0x7,0x1e,0x33,0x3a,0x72,0x25,0x4e,0xeb,0xf7,0x2d,0xf4,0x26,0xf9,0x81, + 0xc8,0xdb,0xd0,0x20,0x1,0x40,0xdb,0x2,0x90,0xd9,0x52,0x8c,0xf9,0xef,0x8d,0x1b, + 0x9d,0xa5,0x5d,0xa4,0x8a,0x4f,0x74,0x4e,0x5b,0x9f,0xce,0xde,0x3a,0x2e,0xfc,0x8a, + 0x68,0x37,0x5e,0x5c,0x21,0x42,0x12,0xa4,0xf2,0xae,0x64,0xff,0x41,0x2b,0xe2,0x18, + 0x10,0x5,0x66,0x33,0xb4,0x66,0x43,0xd8,0x3f,0xe,0x4d,0xd9,0xa6,0x8f,0xa0,0xab, + 0x5f,0x7a,0x4e,0x5f,0xb,0x85,0xfc,0x68,0xb0,0x7a,0x3,0xf8,0x7e,0x12,0xaa,0x17, + 0x47,0x2e,0x99,0xd3,0x81,0x63,0x39,0xf6,0xd6,0xfa,0xd0,0x23,0xa7,0xd3,0x97,0x57, + 0xaf,0x2d,0xfa,0x3d,0x99,0x71,0x7f,0xb4,0xf0,0xa9,0xf0,0x9e,0x46,0xd5,0x4e,0xc9, + 0x6e,0x9b,0x28,0x9a,0x10,0x4,0x58,0xe9,0xc0,0x1e,0xf2,0x0,0x64,0xbf,0xdc,0x57, + 0xe8,0xd0,0x4b,0xe8,0x6d,0xf2,0x3,0xd9,0x99,0x80,0x78,0x61,0x3b,0xb2,0x0,0x52, + 0x19,0x26,0xa,0x7a,0x0,0x84,0x30,0xec,0x3f,0x7,0xc5,0x3d,0x34,0x5,0x7f,0x5e, + 0xb5,0x9c,0x2e,0xe7,0x1f,0xd5,0xa7,0xa9,0xd5,0x3a,0x49,0xe,0x53,0x54,0x2c,0xb, + 0x98,0xc8,0x9c,0xa8,0x2f,0xc4,0xf2,0xf5,0x36,0x98,0xb0,0xd5,0x21,0xd9,0x9e,0x55, + 0xda,0xb2,0xdc,0x50,0xf4,0xc6,0x23,0x8f,0xa1,0xa5,0xea,0xda,0x67,0x72,0x21,0x8f, + 0xa8,0x15,0x60,0xcf,0x5f,0x90,0x6b,0xda,0xf1,0x5c,0x0,0x67,0x37,0xbe,0xf2,0xf, + 0x1e,0xf0,0xb4,0xa7,0xd2,0xa3,0x17,0xff,0xfe,0x36,0x9d,0x71,0x66,0x71,0xef,0x9, + 0x8e,0x14,0x3c,0xf8,0xb,0xcf,0x3f,0x82,0x6e,0x32,0xdb,0x65,0xb6,0x22,0xdd,0xa5, + 0x97,0xa0,0xc5,0xcd,0xe8,0x40,0xae,0x36,0xbc,0x6e,0x83,0x4e,0x7,0xb6,0x2c,0x0, + 0x44,0xff,0xd3,0xea,0x53,0xca,0xe5,0xad,0x4a,0x1,0x3d,0x49,0x7e,0x20,0xd9,0x1e, + 0x6c,0xc7,0x2,0xe0,0x41,0xae,0xe6,0x5,0xac,0x3e,0x60,0x7a,0x70,0x88,0xed,0x3f, + 0xfb,0x46,0xeb,0x5d,0x7c,0xdb,0xa7,0xc3,0x84,0x1c,0x74,0x69,0x71,0xd0,0x8b,0x22, + 0x2f,0x7c,0x32,0x62,0xc6,0xb8,0xe7,0x65,0x6d,0x83,0xa9,0x2c,0xda,0xff,0x17,0xb4, + 0x8d,0x5e,0x3f,0x70,0x30,0xcd,0x32,0x83,0x79,0xec,0xec,0x5b,0x3e,0xdc,0x9a,0xbf, + 0xc0,0xee,0x2,0x8c,0x8c,0x63,0x80,0x9c,0x43,0x75,0x1e,0xbe,0xf7,0xe4,0x60,0xea, + 0x8a,0xad,0xd,0x74,0xe,0x8d,0xee,0x91,0x7b,0xfa,0x15,0x6d,0xa2,0xfd,0x8e,0x18, + 0x15,0x1c,0xd9,0x6a,0x75,0xaf,0x66,0x21,0x47,0x61,0x10,0xdb,0x2,0x48,0xbb,0xbe, + 0xff,0x3e,0x8f,0x9e,0x26,0x3f,0x90,0x25,0x0,0xec,0x7a,0x7f,0x1,0x94,0x10,0x8, + 0x2,0x80,0x5e,0x19,0x79,0x35,0x51,0xbf,0x32,0x83,0xa9,0xb6,0x94,0x5,0x80,0x3c, + 0x80,0xc,0x5e,0x57,0x23,0x34,0xae,0x7b,0x74,0xbe,0x89,0x72,0x3f,0x1a,0x9a,0xbb, + 0x8d,0x2d,0xd9,0xed,0xc7,0x91,0xf4,0xb2,0x5a,0xdb,0x24,0xf2,0x3f,0x98,0xc2,0xca, + 0xc3,0x2b,0x7,0x55,0xf0,0x48,0x46,0x0,0x31,0xff,0xc1,0x2b,0x56,0x4,0x66,0xaf, + 0x2f,0x16,0x8d,0xdd,0xff,0x9f,0x3,0x76,0x22,0x50,0x70,0x6a,0xf3,0xcb,0xd0,0x7f, + 0xbd,0x8c,0x4e,0x20,0xe3,0xd6,0x14,0xf9,0x9e,0x10,0x49,0x58,0x3e,0x3d,0x45,0x23, + 0x94,0xe9,0xf,0xed,0x5f,0x66,0xf7,0x64,0x58,0x2e,0x58,0x50,0x21,0x38,0xde,0xf4, + 0xba,0xec,0x80,0xa6,0x73,0x3,0xfa,0x2e,0x7a,0x83,0xfc,0x40,0x96,0x0,0x8,0x2, + 0x81,0x2,0x63,0x5a,0x86,0x16,0x40,0x26,0x28,0x84,0xc9,0xc0,0xa0,0x13,0x5f,0x6b, + 0xa7,0x72,0xa9,0xe4,0x6b,0xa,0x56,0x4c,0xfa,0x9b,0x72,0x21,0xce,0x3c,0x85,0x8, + 0xd5,0x74,0xe0,0x2f,0xc3,0xdc,0x6d,0xcf,0x5f,0xce,0x13,0xf0,0x93,0x2b,0x15,0x2d, + 0x5b,0xd4,0xbf,0xfb,0x94,0xf6,0x47,0x8b,0xa7,0x4d,0x38,0x8e,0xeb,0x18,0xe2,0x86, + 0x70,0x35,0xbb,0x95,0xff,0x3f,0x74,0x45,0xc2,0x2c,0x39,0xb1,0xf2,0xe5,0x80,0xe7, + 0x99,0x32,0xe1,0x9e,0xae,0x80,0x14,0xa6,0xff,0xf8,0xb2,0x3,0xaf,0xdd,0xff,0xea, + 0x3b,0xb4,0x87,0x76,0x13,0x9d,0x75,0x6a,0xd1,0xef,0x69,0xe6,0xa0,0xc9,0xf4,0xf8, + 0xaf,0x8d,0x6f,0x2f,0x19,0x7f,0xb6,0x10,0x11,0x21,0xc0,0xf5,0x1,0xb6,0x65,0xb5, + 0x17,0xaf,0x31,0xe8,0xc8,0xdf,0x77,0xd1,0x5b,0xe4,0x7,0xb2,0x4,0x40,0x83,0x58, + 0x0,0x39,0xdc,0x0,0x5e,0xc6,0x22,0xcb,0x69,0x44,0xd0,0x5b,0x5a,0xe8,0xf,0xcf, + 0x3c,0x4d,0x1f,0x99,0x73,0x32,0x65,0x14,0x89,0xe,0xde,0xd7,0x40,0x6b,0xab,0xaa, + 0xa8,0xf1,0xb7,0xb7,0xeb,0x1c,0xf6,0xb3,0x4f,0x63,0x3e,0x89,0xa6,0xeb,0xc,0xe4, + 0x98,0xa7,0xd4,0x12,0xeb,0x2f,0xce,0x9b,0xa7,0x48,0x5f,0x11,0x18,0xd0,0xd7,0x9e, + 0xfa,0x1,0xda,0x3a,0xa8,0x82,0x6f,0x46,0x5e,0xf4,0xa1,0xa8,0xbd,0x87,0xfc,0x4, + 0x75,0x2d,0x81,0xe6,0xaf,0x48,0x8a,0xd0,0x47,0x9f,0x2,0xf,0x98,0x49,0xa2,0x8b, + 0x3a,0xd9,0xd3,0xf5,0x9b,0xa9,0xe1,0x57,0x17,0x13,0xfd,0x6e,0x61,0x51,0xef,0x9, + 0x97,0x73,0xe1,0xb7,0xcf,0xa1,0xef,0xdd,0x7e,0x1b,0x65,0xd4,0xdf,0x61,0xfb,0x9a, + 0x3a,0xed,0xff,0x9b,0x59,0x8d,0x79,0x7a,0x30,0x20,0xa8,0x14,0x9c,0x2d,0x18,0xa4, + 0xc4,0xb8,0x43,0xdf,0x46,0x6f,0x92,0x1f,0x88,0xa6,0x2,0xe7,0x2a,0xb8,0x68,0x5c, + 0x0,0x6,0x6a,0xcc,0x59,0x43,0x81,0x11,0x7,0xa8,0x9c,0x5e,0xcb,0x94,0x39,0x6f, + 0xe2,0x64,0xe5,0x77,0x8e,0x26,0xbf,0xb9,0x99,0x8b,0x74,0x34,0x29,0x32,0xfd,0xbf, + 0x9d,0x66,0x56,0xdb,0xc7,0x9f,0xe2,0x4,0x17,0x68,0xba,0x27,0xcd,0x4b,0xf,0x74, + 0x44,0x1e,0xfc,0x8e,0x63,0x40,0x14,0x90,0x3,0x7d,0xfe,0xcd,0xa4,0x7d,0x7a,0xf8, + 0xfe,0xa8,0x14,0xb8,0x30,0x55,0x43,0x7,0x99,0xd9,0x7a,0x21,0xb6,0xf8,0x2e,0x30, + 0x96,0xdf,0x2a,0xac,0x61,0x9b,0xff,0x59,0x25,0xcc,0x70,0xa8,0x14,0xc,0xc1,0x43, + 0xf1,0x74,0x18,0xd3,0x1e,0xc,0x94,0xe6,0xc0,0x82,0x47,0xb7,0xd0,0x6a,0x7a,0xf5, + 0x95,0x5,0xda,0xf4,0x2f,0xd2,0x3d,0x1d,0x55,0x5e,0x43,0xf7,0xfe,0x79,0x3,0xd, + 0x9b,0x3a,0x95,0xcd,0xff,0x91,0x62,0x59,0xb5,0xb6,0x69,0x2b,0x5,0x59,0x80,0xeb, + 0xd6,0xe4,0x3e,0x1,0xdf,0x64,0xf4,0x6f,0x99,0x4a,0xd8,0xe6,0xd0,0xbb,0xe8,0x6d, + 0xf2,0x3,0x11,0x1,0xf0,0x66,0x3b,0xf9,0xe1,0x61,0xfa,0xaf,0xaf,0xd7,0xad,0x5d, + 0xa5,0x4,0x38,0x66,0xfc,0xe1,0xcc,0x3a,0x85,0x4a,0x53,0x3a,0xfc,0xc8,0xc3,0xf, + 0xa6,0x9d,0xe3,0x37,0x11,0xcd,0xfb,0x2d,0x9d,0xfa,0xa7,0x3f,0x7,0xe4,0x10,0xd2, + 0xc8,0x12,0x48,0x5a,0xe2,0xf7,0x45,0x86,0x28,0x43,0x94,0x91,0x5c,0xc1,0xff,0xca, + 0xe9,0x27,0xb4,0x91,0xf7,0x99,0x7b,0xd1,0xe9,0xf4,0xe9,0x93,0x8e,0xe3,0x75,0x78, + 0xe2,0x81,0xd9,0x6f,0x77,0x55,0xc6,0x32,0x1,0xe3,0x75,0x2,0xdb,0x4b,0x0,0xd2, + 0x3b,0xf8,0x4a,0xb0,0xf8,0x2c,0x4,0x9e,0x5e,0xb8,0x97,0xb6,0x7c,0xe2,0x60,0xa2, + 0xe6,0xbd,0x45,0xb9,0x27,0x88,0xa5,0x35,0xe7,0x4e,0xa0,0x9b,0xee,0xf8,0xbe,0xae, + 0xa7,0x48,0x56,0x44,0x2,0xf7,0x21,0xc4,0x97,0xd2,0x60,0x3c,0x2d,0x58,0x42,0x2c, + 0x57,0xa6,0x2f,0x37,0x73,0x4,0xe0,0x5c,0xe7,0xe,0x1f,0xd6,0xfe,0x7d,0x3a,0xf4, + 0x8,0x30,0x96,0xbf,0x2f,0x90,0x1f,0x88,0x74,0x3,0x1e,0x77,0xe3,0x8d,0xde,0xae, + 0xef,0x7c,0xc7,0xf,0xa6,0xaa,0x32,0x8,0x8a,0x81,0x44,0x62,0x1,0x14,0x98,0xa0, + 0xc1,0x3c,0x7d,0x98,0x9c,0x43,0xe1,0xfa,0x53,0x4f,0xa3,0xdb,0xee,0xbf,0x9f,0xee, + 0x52,0x56,0xc0,0x55,0x77,0xdd,0x49,0x37,0xfc,0xcb,0xff,0xa6,0x21,0x17,0x1f,0xc4, + 0xc1,0xb9,0x53,0x69,0x3a,0x3d,0x49,0xcb,0x15,0x79,0x1e,0x54,0xaf,0xbc,0x47,0x8b, + 0xe7,0xdd,0xca,0x5d,0x79,0x8b,0xe7,0xdd,0xc6,0xcb,0x45,0xc1,0x52,0x6f,0x87,0x69, + 0xc,0xa3,0x7c,0x8,0x65,0x9b,0xef,0x47,0x94,0xd,0xa6,0xfd,0xf,0xf9,0xa0,0xd2, + 0xf4,0x5e,0x98,0xfd,0x47,0x5a,0x8,0xf8,0x71,0x73,0x3f,0xc7,0xd4,0x65,0x2c,0xb4, + 0xf8,0x26,0xdb,0x28,0xa5,0x2c,0x15,0x94,0x1f,0x47,0x1d,0x83,0xb7,0x47,0x8d,0xa2, + 0x5,0x9f,0xd3,0x25,0xc1,0x90,0xce,0xcb,0xe9,0xc5,0x93,0x26,0x52,0xe3,0x98,0x51, + 0x74,0xda,0xf0,0x83,0x69,0xdb,0xde,0x25,0x34,0xe2,0x5f,0x2f,0xe6,0x36,0x4e,0xa5, + 0x3,0xd5,0x3d,0xbd,0x1b,0xdc,0x93,0x5c,0xfb,0xa2,0x76,0xee,0x89,0x62,0xf7,0xd4, + 0xaa,0x44,0xc,0x9e,0xe6,0x51,0xc7,0x1e,0x4d,0x4b,0xbf,0xfa,0x1,0xd6,0xfe,0xc0, + 0x56,0x9e,0x57,0x81,0x38,0xd5,0x97,0xa7,0x29,0x17,0xed,0x8f,0x67,0x9f,0x92,0x41, + 0xd0,0x26,0x3,0xd2,0x2a,0xb,0x6,0xf8,0xa9,0xb0,0x8a,0x51,0x5b,0x59,0x99,0xb3, + 0x0,0x7a,0x11,0xcf,0x5a,0x35,0xc,0xe3,0x53,0x92,0xf7,0x66,0xe5,0xe1,0x4e,0x4d, + 0xe,0x2a,0x59,0x66,0x81,0x10,0xb0,0x2a,0xd3,0x42,0x8,0x60,0x96,0x9e,0x5,0xeb, + 0xea,0xe8,0xa2,0x8f,0x6a,0x62,0xc0,0xa,0xf8,0xfc,0x95,0x57,0xd1,0x16,0x45,0xa2, + 0xca,0xfd,0xf,0xa4,0xf1,0x3f,0xbe,0x9d,0x35,0xda,0xa9,0x74,0x8,0x11,0xeb,0x54, + 0x9f,0x4e,0xa2,0x83,0xe8,0x45,0x5a,0x45,0x7b,0x95,0x11,0x8c,0x8,0x78,0xb3,0xd2, + 0xe3,0xd0,0x86,0xe1,0xb2,0x99,0xf5,0x23,0x0,0xd,0xf9,0x59,0x1a,0x43,0x3f,0xa7, + 0x4d,0xf4,0xfe,0x94,0xda,0xf7,0xb4,0xd3,0xa8,0x66,0x48,0x25,0x93,0x1f,0xc6,0x3b, + 0x6b,0x7f,0xa9,0xb7,0x4f,0x94,0xd3,0xf7,0x8f,0x4c,0x16,0xa,0xf7,0xc4,0x32,0xff, + 0x79,0x92,0x4e,0xb5,0x28,0xf,0x26,0x8,0x55,0x8b,0x49,0x93,0x88,0x60,0xd1,0xcc, + 0x3a,0x9c,0xde,0xc2,0xfd,0x8e,0x1e,0x46,0x23,0x53,0x27,0xd3,0x8e,0xd4,0x12,0x1a, + 0xc6,0x2,0xa5,0x49,0xdd,0xd3,0x41,0xe6,0x9e,0x88,0x3e,0xa4,0x4,0x2,0xee,0x69, + 0x8f,0xba,0x76,0x68,0xf8,0x26,0x75,0x2f,0x95,0xea,0x5e,0xc2,0x65,0x33,0xeb,0x7d, + 0x73,0x42,0x45,0xfe,0xc,0xdd,0x4f,0x5b,0x68,0xf6,0x71,0x87,0xd0,0x67,0x7e,0xfc, + 0x53,0x1a,0x76,0xc8,0xa1,0xfc,0x87,0xb1,0x7,0x35,0x31,0xc9,0xeb,0x56,0x11,0x4d, + 0x9e,0x1a,0x64,0xff,0x65,0xcd,0x12,0x2c,0xfe,0xff,0xba,0xd5,0x14,0xcc,0x6e,0x84, + 0xae,0x40,0xc4,0x43,0x30,0xf8,0x49,0xed,0xeb,0xf2,0x0,0x7a,0x16,0x52,0x6e,0x3c, + 0x4e,0x7a,0x41,0x6f,0x97,0x1d,0x4f,0xcc,0x3,0x68,0x88,0x75,0x5,0x72,0x49,0x30, + 0xd4,0x2,0x44,0x84,0xdc,0x1e,0x11,0xd8,0xa6,0x27,0xb3,0xc4,0x94,0x5c,0x58,0xaf, + 0xac,0x9d,0xac,0xc9,0xaf,0x5e,0xb6,0x6b,0x2e,0xbd,0x94,0x6e,0x57,0x56,0xc0,0x93, + 0xdf,0xff,0x3e,0xbf,0xc0,0xc3,0x87,0x57,0xd3,0x86,0xe9,0x7,0x52,0xcb,0xd7,0x91, + 0x45,0x3,0x63,0xdd,0x57,0x44,0x99,0x41,0x9f,0xa6,0x97,0xa8,0x51,0x7d,0xff,0x15, + 0xed,0xe0,0x76,0x2b,0xa8,0x3c,0xb6,0xac,0x8,0xcc,0x7d,0x0,0xfd,0xe3,0xc7,0xc, + 0xaa,0xa1,0xb,0xaf,0xbd,0x9e,0xbe,0x38,0xdd,0x8c,0xf0,0x23,0x4d,0xfe,0xdd,0x26, + 0xf3,0x2f,0x17,0x82,0xa,0xc6,0xd6,0x9c,0x85,0xc1,0x8c,0x45,0xa2,0xfd,0x33,0x2d, + 0xf4,0xe6,0xe4,0xc9,0xf4,0xf8,0xe9,0xa7,0xd3,0xc6,0x8f,0xff,0x33,0xd5,0x8f,0x99, + 0xc0,0x63,0xea,0xdb,0x26,0x4e,0x34,0xf7,0x3d,0x86,0x68,0x84,0x32,0xa5,0xa7,0x8f, + 0xa7,0xe1,0xe7,0x5d,0x4e,0xf7,0xfe,0xf4,0xab,0xb4,0x84,0x94,0x70,0x38,0x5,0x42, + 0x2d,0xad,0xee,0xe9,0x10,0x5a,0xa4,0xac,0x1,0x90,0x7d,0x88,0xe9,0xd2,0xab,0x34, + 0xf7,0x12,0x2e,0xa3,0xe4,0xc7,0xb4,0xa7,0xb3,0x3e,0x78,0x28,0x7d,0xe6,0xeb,0xf3, + 0x98,0xfc,0x62,0xfa,0x73,0xe0,0x4f,0x2c,0x31,0x68,0x7d,0x45,0x7e,0x2c,0xe3,0xe5, + 0xc0,0x82,0x51,0x80,0x52,0xab,0xd1,0xee,0x1,0xc0,0x6c,0x44,0xd8,0xae,0x84,0xd9, + 0x51,0xfb,0x87,0x79,0x1b,0xe,0xc5,0x47,0xae,0xb9,0x6,0x4,0xbd,0x4d,0x7e,0x20, + 0xab,0x73,0x9a,0x5d,0x0,0x5,0x2e,0xd,0x8e,0x97,0xcf,0x2a,0xe,0xca,0xae,0xc0, + 0xc6,0x4d,0x61,0x56,0x20,0x2a,0x2,0x81,0x4c,0x99,0x36,0x3d,0xcf,0x3a,0xa6,0xcc, + 0x32,0x93,0x72,0x60,0xb6,0x1e,0x4,0x2,0x1,0x91,0x7d,0x1c,0x6b,0xdb,0xd3,0x42, + 0xad,0x65,0xd,0x34,0xe4,0x9b,0x28,0x84,0x81,0xb6,0x2b,0x59,0x8,0x94,0x25,0x5d, + 0xc,0x69,0x51,0x1,0x20,0xd8,0xc7,0x25,0x2e,0x4f,0x3f,0x9c,0xce,0x38,0xf6,0x22, + 0x1a,0x3b,0x58,0x93,0xa8,0xca,0xf2,0xf9,0xe3,0xfd,0xfd,0xf6,0xb4,0xe5,0x41,0x35, + 0x60,0xcc,0x12,0xac,0x84,0x15,0x66,0x30,0x92,0x3a,0x86,0x7c,0x38,0xe6,0x2e,0x54, + 0xfb,0x2d,0x2c,0x4f,0xd3,0xb2,0xf,0x1c,0x4b,0x37,0xff,0xe0,0x3f,0xa8,0x65,0x98, + 0x22,0xfa,0x86,0xd,0xe4,0xed,0xdc,0x41,0x3e,0x12,0x6c,0xe,0x9b,0xa1,0xcf,0x5, + 0x4b,0x8,0x64,0x4,0x94,0x75,0xf1,0xb5,0xcf,0x9e,0x4f,0x73,0x16,0x6c,0xa4,0xd3, + 0x2e,0xbe,0x84,0xe8,0x77,0x4f,0xf0,0x3d,0x3d,0xab,0x84,0x0,0x42,0x89,0x15,0x59, + 0xae,0x8b,0xaf,0xeb,0x23,0x98,0xce,0xc6,0x6,0xf5,0xfb,0x43,0xc7,0xe,0xa3,0xbb, + 0xfe,0xdf,0x63,0x34,0x6c,0xfc,0xf8,0x40,0xf3,0x6b,0xf2,0x93,0x95,0xe4,0xe3,0x71, + 0x55,0x20,0x9e,0x9e,0xdc,0x4b,0x85,0x3e,0xbe,0x41,0xa4,0x2a,0x70,0xbd,0x16,0x8, + 0xfe,0x56,0x2d,0x54,0xcb,0xea,0xea,0xe8,0xeb,0x87,0x1f,0x9e,0x15,0xe4,0x75,0xe3, + 0x2,0x8a,0x3,0xcc,0x27,0x98,0x4b,0xe3,0xb,0xa,0x45,0xfe,0xee,0xce,0x13,0x90, + 0x5d,0x13,0xb0,0x9d,0xb,0xe7,0xe2,0x20,0x64,0x8d,0xb,0x40,0x4d,0x40,0x4c,0x9b, + 0x65,0x66,0xe0,0xf1,0x50,0x87,0x5f,0x91,0x8,0x15,0x78,0x61,0x1,0x54,0x29,0xd3, + 0xb3,0xca,0x4c,0x89,0x25,0xf9,0x75,0x6d,0x43,0x94,0xa6,0xad,0x18,0x4a,0x6b,0xaf, + 0xbf,0x90,0x6e,0x49,0x2f,0x25,0x50,0xe0,0x3e,0x3a,0x9c,0x75,0x25,0x3e,0x2d,0xe6, + 0x83,0x75,0x50,0xe7,0x78,0xa5,0x35,0xcf,0x54,0xdf,0x26,0x28,0x2,0x7f,0xf8,0xfa, + 0x1b,0xe9,0xb2,0x39,0x97,0x50,0xed,0xa6,0x75,0x2c,0x54,0xaa,0x94,0x6f,0x1b,0x68, + 0x7d,0x74,0xdf,0x59,0x19,0x7f,0x7c,0xbd,0xe2,0x2,0x60,0xfe,0x3f,0xa5,0xfd,0x83, + 0xbe,0x7f,0x63,0x1,0x34,0xc8,0x14,0xe1,0x10,0x5c,0xea,0xba,0x17,0x28,0xed,0xbf, + 0xf4,0xa8,0xf7,0xd3,0x1f,0xce,0x3d,0x87,0x5a,0x86,0x9b,0x72,0x5f,0x63,0xc6,0x68, + 0x1e,0xa2,0xd8,0xc6,0xd8,0x9,0xfa,0x33,0x61,0x32,0xdf,0x67,0xcd,0x24,0xb5,0xad, + 0xa9,0x99,0xee,0xfa,0xe3,0xb,0x74,0xfa,0x6b,0xf3,0xe9,0x7b,0xdb,0x1e,0xa7,0x67, + 0x94,0xb5,0xf2,0x1c,0xad,0x54,0xa2,0xd,0xd1,0x80,0x32,0x75,0x2f,0x99,0xc8,0xa7, + 0x95,0x89,0xef,0xd3,0x2f,0x95,0xc9,0xff,0x87,0xf7,0xd,0xa1,0xd3,0xe7,0xff,0x94, + 0xfe,0xef,0x13,0x2f,0xd3,0x8,0x45,0xfe,0xb4,0x4c,0x4e,0x12,0x3c,0xf0,0x74,0x6c, + 0x7c,0x82,0xa7,0x4d,0x7f,0xce,0x75,0xe,0xff,0x4e,0x20,0x7f,0x64,0x22,0xd1,0x36, + 0x65,0x55,0xe0,0x18,0x65,0xfe,0x97,0xa9,0xe7,0x8f,0x3d,0x3b,0x7a,0x21,0x1d,0xba, + 0xf,0x10,0xbf,0x27,0xc9,0x5f,0x8,0x64,0xc5,0x0,0x82,0x81,0x34,0x53,0xa7,0x52, + 0xb5,0xf1,0x1d,0xa5,0x26,0xa0,0x2e,0xb,0x16,0x26,0x6,0xd9,0x8,0x22,0xeb,0x98, + 0x93,0x6e,0xbd,0xae,0x22,0x74,0xdb,0x53,0x4f,0xd2,0x95,0xca,0xa,0x18,0xa4,0xda, + 0xd9,0x5d,0x5b,0x1b,0xa4,0xb9,0xa6,0x52,0x1e,0x8d,0x50,0x2e,0xc1,0x17,0xbf,0xfd, + 0x6d,0x7a,0x6f,0x6f,0x33,0xd,0x53,0x24,0xaa,0xfd,0xd1,0x5b,0xb4,0xff,0xf4,0xe9, + 0x34,0xe5,0xed,0xdd,0xd4,0xa2,0xcc,0xd5,0xfa,0x59,0x83,0x69,0xfb,0xc8,0x91,0xd4, + 0x98,0x1a,0x45,0x47,0x1f,0x3f,0x9b,0xce,0x33,0x1a,0x9f,0xab,0xfd,0x4c,0x9b,0x46, + 0x83,0x8c,0xe6,0x1f,0xa2,0x7c,0x73,0x3b,0xe0,0x17,0xf1,0xfb,0x8d,0x5f,0x6f,0x4f, + 0x9,0x6,0x88,0xef,0xef,0x8b,0x0,0x50,0xc2,0xa3,0x55,0x9d,0xb3,0x75,0xf0,0x10, + 0x6a,0x3c,0xec,0x30,0x7a,0xed,0xac,0x73,0x74,0x1b,0x26,0x18,0x9a,0x19,0x35,0x52, + 0xb7,0xb5,0x4e,0x69,0xd6,0xc9,0xb5,0xda,0x17,0x57,0x82,0x60,0xf3,0xca,0x55,0x54, + 0x33,0x6d,0x2a,0x77,0xe0,0x8d,0x38,0xf8,0x50,0xba,0xfe,0x27,0xca,0xaa,0xd9,0xb3, + 0x8b,0xfe,0x67,0xfd,0x8f,0xe9,0xb8,0xf7,0x76,0xd2,0xf3,0xf7,0x2c,0xa1,0x31,0x75, + 0x8d,0x34,0x68,0x2f,0xd1,0x7d,0xde,0x66,0x2a,0x1b,0x52,0x45,0x83,0xa6,0x8d,0xa5, + 0xa6,0x7f,0xbf,0x84,0x7e,0x7a,0xdc,0x15,0x34,0x5c,0x91,0x1e,0x39,0x7c,0xbe,0x21, + 0x7e,0x98,0xef,0x6f,0x22,0xfb,0x7c,0xbe,0xa9,0xfa,0x7c,0xe6,0x9e,0x82,0x49,0x41, + 0x72,0x69,0x6f,0xf1,0xff,0x81,0x6d,0x3b,0x82,0xbf,0x89,0xcc,0x72,0x6b,0x57,0x2, + 0x72,0xa5,0xc1,0xa,0x8b,0x7c,0x84,0x6c,0x5f,0x22,0x3f,0x90,0xf8,0x6,0xec,0x32, + 0x53,0x83,0x71,0x75,0x20,0x7b,0x60,0x10,0x10,0x1b,0x1c,0x14,0x99,0x7e,0x4b,0x92, + 0x87,0x50,0x86,0x7b,0x43,0x3d,0x65,0xc6,0xd4,0x70,0x40,0x6e,0xcf,0xa4,0x49,0x41, + 0xf7,0x9c,0x68,0x6c,0x78,0xc3,0x52,0xc4,0xd3,0xee,0xea,0x5a,0x66,0xbd,0xa0,0x33, + 0xad,0xf1,0xfd,0xc0,0x20,0xab,0xd,0x6e,0x4f,0x7c,0xde,0xd8,0x44,0x1a,0x52,0xf0, + 0x83,0x8f,0x35,0xd7,0x67,0xcf,0x5f,0x8,0xf0,0xec,0x45,0x6b,0x56,0xb3,0x30,0xc2, + 0xbf,0xf9,0x65,0x29,0x7a,0x75,0xf6,0x31,0xf4,0xf8,0xc7,0x3e,0x46,0x2f,0x9f,0x73, + 0x6e,0x38,0x2a,0xb2,0xa5,0x59,0x6b,0xe1,0x72,0x23,0x50,0xc4,0x9d,0x40,0x31,0x4e, + 0x33,0x82,0xb0,0xc6,0x8c,0xd4,0x6b,0x36,0x93,0x8d,0x64,0x67,0xf9,0xe7,0x6,0x17, + 0x4f,0xe5,0xf6,0x32,0xb4,0x19,0x2,0xc9,0xcf,0xe8,0x83,0x11,0x9c,0xc4,0xb9,0x36, + 0xae,0xd7,0x2d,0xa6,0x4d,0xb7,0x5f,0x79,0x65,0x60,0xb7,0xd9,0x9a,0x3f,0xe2,0x2, + 0x6c,0xa8,0x53,0xae,0xce,0x36,0xfe,0x8e,0xc9,0x48,0xcf,0x1a,0x32,0x98,0xae,0xfd, + 0xf4,0xe5,0xfa,0x59,0x39,0x1,0xd0,0x6b,0x28,0x6,0xf9,0xbb,0xeb,0x2,0x24,0x4f, + 0xe,0xa,0x2d,0x2e,0x7d,0xe7,0x26,0xf2,0x1f,0x99,0x15,0x28,0xc1,0x2,0x88,0x43, + 0x66,0x15,0x82,0x59,0x3e,0x14,0x75,0xfa,0x55,0x7b,0xb0,0x2,0x44,0x10,0x60,0x12, + 0xf,0x7e,0xcf,0x29,0x14,0x4,0xb8,0xf2,0xa3,0x56,0xad,0x62,0xd,0x4f,0x64,0xd, + 0xe6,0x51,0x9f,0x6a,0x13,0xe4,0xc3,0xf1,0x49,0xdd,0x7c,0xb6,0xdf,0x1f,0x8f,0xfa, + 0x33,0xf9,0xd9,0x9c,0x2e,0x8b,0xcc,0x5d,0x28,0x53,0x97,0xcd,0xcf,0xb4,0x52,0xcb, + 0x41,0x7,0xd3,0x3b,0xc7,0x1c,0x43,0x7f,0x9d,0x31,0x43,0xdf,0x73,0xb9,0x8c,0xdf, + 0x57,0x9f,0xdd,0xca,0xef,0x1e,0x31,0xd2,0x64,0xdc,0x99,0xe7,0x92,0xd2,0xa4,0xa5, + 0xf5,0x8a,0x78,0x4a,0x0,0x40,0x73,0x8f,0x9a,0x56,0xcb,0x49,0x44,0x2d,0xed,0xd, + 0xdc,0xa1,0x50,0xe0,0xe1,0xfc,0xc8,0xf4,0x3,0xf1,0x47,0x2a,0x6b,0x20,0x18,0x64, + 0x84,0xa0,0xea,0xe6,0x8d,0x66,0x6c,0xb3,0xe9,0xea,0xb,0xe2,0x31,0x61,0xb7,0x1f, + 0x57,0x0,0x12,0xe2,0xa3,0x77,0x46,0xb4,0xbf,0x4c,0xea,0x6a,0x26,0x6,0x4d,0x22, + 0xbf,0x43,0xcf,0xa2,0xaf,0x69,0x7e,0x41,0xce,0x28,0x10,0xaa,0xd0,0x34,0x9a,0xbe, + 0x68,0x68,0xa2,0xa0,0x27,0x0,0xb0,0x67,0xa4,0xb1,0x93,0x6a,0xa4,0x9c,0xb8,0x22, + 0xa3,0x10,0x92,0xb5,0x33,0x72,0xe9,0xd5,0x76,0x98,0xeb,0xfc,0x72,0x62,0x5d,0x11, + 0x1d,0x44,0x46,0x8c,0x0,0x26,0x34,0xb4,0x3b,0x96,0xb6,0x79,0xf,0xd2,0xb7,0x91, + 0x45,0x7e,0x99,0x5a,0x3b,0xc1,0xfc,0xcd,0xf2,0xfb,0xe3,0xd7,0x67,0x5e,0xfe,0xac, + 0x12,0xe6,0xd8,0x67,0xc4,0x8,0x9a,0x7f,0xe4,0xfb,0xe8,0xb7,0x27,0x9f,0x4c,0x3e, + 0xc8,0xbf,0x65,0x33,0x7,0xfe,0x60,0xce,0xd3,0xbe,0x7d,0xca,0xcf,0x18,0xaa,0x77, + 0x5c,0xbf,0x56,0x9f,0x1f,0xa4,0x17,0xa2,0x8d,0x9d,0x18,0x4,0xec,0xb6,0xaa,0x36, + 0xb1,0xbe,0x63,0xf5,0x1a,0x2a,0x57,0xfb,0xe1,0x23,0x22,0x23,0xf2,0x31,0x71,0x7, + 0xec,0xbb,0x15,0xd3,0xa7,0x2b,0x52,0x6f,0x33,0x89,0x53,0x3c,0x73,0xd1,0x9e,0x3d, + 0x4a,0x70,0xb6,0x90,0xa7,0x5c,0xa3,0x54,0x53,0xa3,0xf5,0xcc,0xbd,0x88,0x7c,0xc7, + 0xc8,0xbf,0x88,0xef,0x6f,0x62,0x3,0xbe,0x49,0xfe,0x41,0x19,0xb0,0xb3,0x87,0xe, + 0xc9,0x7a,0x56,0xe,0x3d,0x7,0xaf,0x8f,0x7,0x5a,0x73,0x9a,0xb,0x3b,0xbe,0xf5, + 0x2d,0x1f,0x51,0x62,0xdc,0x40,0x95,0x7a,0x91,0xd8,0x9c,0xb4,0x6b,0x4,0xda,0x33, + 0xd3,0xc6,0xdc,0x0,0x29,0xbb,0x1d,0x1f,0x7f,0xcf,0x41,0x3a,0x23,0xc,0x6c,0xb7, + 0xc0,0xb6,0xe,0x44,0xcb,0x47,0x6,0xf3,0x98,0x8,0x3f,0x8e,0x4f,0x32,0xf7,0xed, + 0xc9,0x3f,0x38,0xea,0x6f,0x5d,0x17,0x9f,0xb7,0x22,0x1c,0x35,0x28,0xfe,0xbf,0x4c, + 0x59,0x8e,0xa4,0x1f,0x5f,0x69,0xdf,0x8f,0xdf,0x71,0x7,0x35,0xf,0xd6,0x53,0x90, + 0xa7,0xcc,0x24,0x9c,0x7e,0x75,0xa5,0xce,0x29,0xc0,0x54,0x61,0x63,0xcd,0x94,0x68, + 0x20,0xff,0x4,0x98,0xfc,0xbe,0xb6,0x14,0x6c,0x77,0xa0,0xab,0x16,0x35,0xac,0x9, + 0xb4,0xd5,0xb8,0x4f,0xb7,0xb3,0x6f,0x2f,0xcf,0x4f,0xe0,0x35,0x35,0xe9,0xe1,0xc9, + 0xad,0x86,0xfc,0xe5,0xd1,0x8c,0xc6,0xf8,0x7c,0x80,0x70,0x13,0x38,0xf8,0xa7,0x4, + 0x80,0x4,0xff,0x9e,0xfa,0xf2,0x97,0xf9,0xf7,0x24,0xed,0xef,0x5c,0x80,0xe2,0x2, + 0xdc,0x31,0x13,0x78,0x14,0xed,0x1c,0x5,0xef,0x5,0x10,0xc,0xbf,0xe1,0x6,0xf, + 0xae,0x40,0x10,0xd8,0x50,0x4b,0x9e,0x27,0x40,0xac,0x80,0xd6,0xb0,0x18,0x46,0xdc, + 0xa,0x10,0xb,0x20,0x3e,0xfe,0x1e,0xe4,0x95,0x24,0x1d,0x9,0xde,0xf1,0xc7,0xb2, + 0xe,0xa0,0xe5,0xb1,0x4d,0xcc,0x7c,0x8e,0x19,0x20,0xc2,0xaf,0x34,0x63,0x9c,0xfc, + 0x11,0x98,0xf3,0xa,0x72,0x92,0x1f,0x89,0x42,0xa2,0xfd,0x4d,0xf0,0xed,0xc7,0xef, + 0x7b,0x1f,0x93,0x9f,0x9f,0x9c,0x99,0x61,0x18,0xd9,0x7f,0xde,0xbe,0x46,0xf2,0x98, + 0x37,0xea,0x19,0xd4,0x1b,0xe1,0x87,0x59,0x7a,0x3c,0xb3,0x9f,0xb1,0x6e,0xb8,0x57, + 0xa1,0x2c,0xf6,0x49,0x77,0xe2,0x3,0x72,0xa2,0x5b,0x6f,0xf0,0x10,0x7d,0x6c,0xd5, + 0x20,0xf2,0x2a,0xab,0xb8,0x9a,0x70,0x66,0xe8,0x50,0xca,0xc,0xaa,0xc0,0x80,0xfe, + 0xec,0x4c,0x3e,0x9b,0xfc,0xbc,0x12,0xa,0x67,0x7b,0x4f,0x67,0xfa,0xf7,0xe,0xfa, + 0x43,0xcf,0x4b,0xbb,0xf6,0x9,0x24,0x18,0x84,0x40,0x83,0x71,0x5,0x64,0xa6,0xa0, + 0x60,0x82,0x50,0x4b,0x8,0x44,0x60,0xb2,0xeb,0x38,0x66,0x20,0x2,0x61,0x9d,0x26, + 0xa4,0x90,0xd4,0x33,0x2f,0x65,0x64,0x69,0xcc,0x7b,0x5e,0x87,0x96,0x56,0xcb,0xa1, + 0x75,0xc6,0xdc,0x36,0xdf,0x65,0x5f,0x3b,0xda,0xcf,0xeb,0x1c,0xa8,0x2b,0xf,0xba, + 0xfb,0x38,0x27,0x21,0x46,0x7e,0x7d,0xc7,0x29,0x1e,0xb6,0x8c,0x32,0xe6,0x8f,0x2b, + 0x7,0xe3,0x5d,0x65,0xfe,0x2f,0xba,0xec,0x32,0xfe,0xc9,0x37,0xc3,0x89,0x99,0xd4, + 0x66,0x16,0x1e,0xf,0xd3,0x81,0x73,0x6f,0x0,0x85,0x3e,0x7a,0xe4,0x21,0x59,0x2, + 0xd7,0xb7,0x3e,0xfc,0x5b,0x7b,0x4f,0xd7,0x1c,0x2b,0x1f,0xec,0x9c,0xd1,0xbe,0xbe, + 0x7,0x61,0x50,0x5e,0xa1,0x7,0x23,0x29,0xc1,0x97,0xda,0xd7,0x1c,0x36,0x88,0xb9, + 0x0,0x94,0xe6,0x97,0xea,0xbf,0x4c,0x7e,0x1c,0xe,0xe1,0x8a,0x61,0xda,0x88,0xfc, + 0x9b,0xbf,0xb,0xb4,0xbf,0x23,0x7f,0xef,0xa2,0xaf,0xfa,0xfe,0x82,0x76,0x53,0x81, + 0x87,0x7d,0xed,0x6b,0xde,0x5f,0x6e,0xbe,0xd9,0x9f,0xd1,0xaa,0x33,0xfe,0x84,0xf8, + 0x76,0x52,0x90,0x4,0x9,0x81,0xc0,0x15,0x90,0x80,0x95,0x31,0xa5,0x25,0x65,0x55, + 0xa6,0xe4,0x82,0x30,0xc8,0x4c,0x98,0xc0,0xc4,0xcd,0x4c,0x9a,0x18,0x2c,0xf3,0x41, + 0xb0,0xaf,0x68,0x7c,0x4,0xfc,0x24,0x60,0x29,0x64,0xb4,0xb2,0xfd,0x82,0x81,0x4a, + 0x5e,0x79,0x20,0xee,0xc4,0x2,0x78,0x6b,0xd4,0x28,0x7a,0xf0,0xac,0x33,0xa9,0x49, + 0x69,0xd9,0x48,0xe4,0x1e,0x24,0x1b,0x3a,0x98,0x52,0xbb,0xf6,0x70,0x9b,0xa9,0xad, + 0x3b,0x28,0x33,0xae,0x46,0xc7,0x0,0x60,0xee,0x4b,0xd7,0x9c,0x24,0x3,0x25,0xcd, + 0xd4,0x23,0xc4,0x4b,0x12,0x2,0x66,0xba,0xae,0xc8,0x75,0xa3,0xb7,0x61,0xdb,0x36, + 0x3d,0x99,0x7,0x82,0x77,0xcd,0x8d,0x3c,0x4f,0x40,0xaa,0xd5,0x54,0x60,0xe2,0x48, + 0x69,0x2b,0x65,0xea,0x37,0x65,0x6b,0x7e,0xc9,0x6c,0x34,0xcf,0x39,0xa5,0x84,0xa6, + 0x23,0xbf,0x43,0x3e,0xc8,0xcb,0x5f,0x40,0xb7,0x20,0x2c,0x81,0x94,0x7a,0xf1,0x38, + 0x37,0xc0,0xae,0x1b,0x68,0x66,0xc,0xf6,0x37,0x6d,0xa,0x7a,0x6,0xc2,0xf2,0xe1, + 0x39,0xd0,0xce,0xb0,0x63,0x5c,0x51,0xdb,0x84,0x9,0x41,0xb7,0x63,0xbc,0xf7,0x21, + 0x80,0xb5,0x9e,0x35,0x57,0x81,0x1,0xd7,0x2c,0x94,0x7d,0x61,0x59,0xac,0x5e,0xc3, + 0x32,0xe0,0x31,0xbf,0x95,0x97,0x77,0x9f,0x7e,0x3a,0xfd,0xf9,0x4b,0x5f,0xd2,0xfb, + 0x88,0xf6,0xb7,0xaf,0xc5,0x3e,0x1f,0x66,0xe4,0x45,0xe5,0x1d,0x90,0x91,0x27,0xe7, + 0x50,0x17,0x3a,0x71,0xb2,0x4e,0xd1,0xd,0x26,0xe9,0xc8,0x44,0x8f,0x8d,0xb7,0x11, + 0xbf,0xf6,0x75,0x6b,0x42,0xa1,0x85,0x67,0x3a,0x74,0x3f,0xe5,0xbf,0x6f,0xa1,0x54, + 0x43,0x63,0xb8,0xd,0x6e,0x58,0x53,0x13,0xf9,0xdb,0xb6,0x6b,0xa2,0x9b,0xfd,0x3, + 0xf2,0x4b,0xb7,0x2c,0xfe,0x53,0xbe,0x7f,0x7a,0xcd,0x1a,0x7a,0x52,0xdd,0x13,0x4f, + 0x20,0x89,0x49,0x52,0x9d,0x9f,0x5f,0x30,0xdc,0x78,0xe3,0x8d,0xb4,0xc8,0x1a,0xd4, + 0x93,0xf,0x8a,0x6d,0x1,0x14,0x2d,0x6,0x60,0x63,0x3f,0x65,0x9,0x60,0xa8,0x70, + 0x6,0xda,0x48,0xc8,0xf,0x8d,0x6e,0xf5,0xc,0x48,0x76,0xa0,0x26,0xa3,0x29,0xa2, + 0x55,0xbf,0xd1,0x2c,0xa3,0x53,0x89,0x43,0x58,0x44,0x92,0x59,0x64,0xdd,0x14,0xbc, + 0x94,0x91,0x87,0x32,0x45,0x39,0xa3,0xcc,0xd2,0x72,0x76,0x5b,0x22,0x6c,0xd2,0xe1, + 0x68,0x37,0x10,0x1f,0x1f,0xae,0x59,0xc8,0xd7,0xaa,0xf6,0x53,0xe4,0x4f,0x9b,0xfe, + 0x7a,0x26,0xff,0x19,0x67,0x44,0xc8,0x9f,0xfd,0x64,0x62,0x8f,0x46,0xb5,0x83,0x41, + 0x38,0xa9,0x2d,0x26,0x11,0xa7,0xcc,0x1a,0x9a,0x8b,0x25,0x3e,0xf6,0x7d,0x24,0xb5, + 0x61,0x13,0x5f,0x80,0xac,0x42,0x5f,0xff,0x96,0x52,0x16,0x4d,0xaa,0xa9,0x99,0x32, + 0x83,0x7,0x19,0xad,0xef,0x73,0x0,0xd0,0xdf,0xb3,0x97,0x52,0x3c,0x47,0x83,0xcf, + 0x89,0x3e,0x41,0x77,0x9f,0x2d,0xf0,0x24,0xe9,0x47,0xdd,0x8b,0xbc,0x74,0x8e,0xfc, + 0x85,0x3,0xc8,0x5f,0x8a,0xe8,0xd4,0x1b,0xc2,0xee,0x80,0x7a,0xa9,0xca,0xb8,0x6c, + 0x16,0x85,0xbd,0x3,0x26,0xf2,0x9e,0xa5,0x89,0x6d,0x4d,0x1f,0xab,0x2a,0x14,0x56, + 0x19,0x4e,0xb0,0x16,0x6c,0xcd,0x99,0xa0,0x45,0x23,0x93,0x93,0x5a,0xbf,0x9,0xe9, + 0x1b,0xde,0x13,0xed,0xa8,0x89,0x6f,0x56,0xc9,0x53,0x2,0x60,0xc1,0xaa,0x15,0x6c, + 0xfa,0x7f,0xf5,0xbf,0xfe,0xcb,0x3c,0x1,0xd3,0xa7,0xde,0x99,0x7,0x61,0x26,0xe6, + 0xd0,0x93,0x72,0x24,0xc4,0x42,0x64,0xc8,0x6e,0x47,0x85,0x3b,0xcc,0xf5,0x73,0x5d, + 0xbf,0xd1,0x23,0x29,0x25,0x24,0x96,0xeb,0x32,0x16,0x40,0x66,0xe3,0x66,0x5e,0xf7, + 0xd6,0xaf,0xc9,0xba,0x6f,0xf6,0xfb,0x51,0xa1,0x49,0x1d,0x5b,0xae,0xb4,0x7f,0xcb, + 0x3,0xf,0x74,0xe6,0x4e,0x1c,0xf2,0x84,0xa4,0xc8,0xf,0x48,0xb,0x40,0x80,0x7a, + 0x1,0xb0,0x4,0x5e,0x47,0x17,0x95,0xfa,0xfe,0xf7,0xda,0x5a,0xd6,0xd0,0xc8,0xfd, + 0xf,0x4f,0x6f,0x11,0xd7,0x9c,0xc2,0x1b,0x33,0x86,0xa4,0x70,0x5,0xb4,0xbf,0xd4, + 0x14,0x84,0x85,0x10,0xb5,0x1c,0xe4,0x90,0x6c,0x53,0x5f,0x7e,0x97,0x63,0x6c,0x8d, + 0xf,0x4,0xe4,0x5f,0xb1,0x5a,0x13,0x5f,0x11,0x8f,0xc9,0xaf,0x8e,0x2f,0x33,0x6d, + 0x2c,0x54,0xe4,0x7f,0x58,0x69,0xd2,0xf7,0xaa,0x2a,0x69,0xb0,0xf2,0xb7,0x3b,0x22, + 0x7f,0x64,0xae,0xbd,0x60,0xa3,0x21,0x3e,0x2c,0x82,0xad,0xdb,0x75,0x76,0x5e,0x30, + 0x36,0xdf,0xc0,0xb6,0xc,0x92,0x20,0xd6,0x84,0x39,0x9e,0x47,0xf7,0x9,0xf9,0x3, + 0x4b,0x48,0x7,0x7,0x85,0xfc,0x24,0xe4,0xb7,0xce,0xc5,0x66,0x3f,0xe2,0x8,0xca, + 0xf4,0xaf,0x50,0x7e,0xbf,0x23,0xbf,0x43,0x67,0xd1,0xb9,0x7a,0x0,0xa4,0x85,0x0, + 0x2c,0x1,0x16,0x2,0xea,0x45,0xdc,0x77,0xcc,0xd1,0x34,0xe8,0xe5,0xbf,0xb2,0x2b, + 0x90,0x82,0x69,0x9f,0xd1,0xc9,0xbd,0xd,0x2b,0x56,0x6,0x65,0xc3,0x79,0x4,0x5e, + 0x99,0xd5,0x87,0xd,0x8d,0x99,0x2a,0xe3,0xda,0x82,0xf6,0xf0,0xe2,0xdc,0xeb,0xc6, + 0x95,0x40,0xfb,0xaa,0x1d,0x6e,0xcf,0x44,0xbe,0xb5,0x9f,0xaf,0xbb,0xe4,0xf6,0x3d, + 0xbb,0x58,0xb7,0xcf,0x24,0xd2,0x91,0xf5,0x32,0xa3,0xa1,0xe1,0xf7,0xbf,0xa1,0x34, + 0xff,0x84,0xc3,0xe,0xa7,0xe3,0xaf,0xbc,0x92,0x2e,0xa9,0xa8,0xa0,0x33,0x8c,0xe6, + 0xce,0xec,0xde,0x43,0xb4,0x63,0x27,0xf,0xf8,0x11,0xd2,0x73,0x82,0x8d,0x21,0x5a, + 0x64,0xb0,0xd,0x34,0xb6,0x22,0x2e,0x84,0x0,0xcf,0xc6,0x83,0xd8,0x88,0xfa,0x1e, + 0x81,0x99,0xb5,0x37,0x20,0x37,0x7e,0x8f,0x5b,0x32,0x96,0xf9,0x2e,0xc7,0x7,0x6d, + 0x92,0x55,0xde,0x1b,0xb1,0xb,0x9b,0xfc,0x6,0x3e,0x4,0x8f,0x29,0xfb,0x7d,0xd3, + 0x88,0x11,0x74,0xd3,0xf,0x7f,0x98,0xc7,0x5f,0xcf,0xc1,0x21,0x8a,0x2e,0xa5,0x29, + 0xb1,0x10,0x50,0xda,0xe9,0x79,0xa5,0x99,0xde,0x68,0x6b,0xa3,0xbf,0x1d,0x7d,0x14, + 0x5b,0x2,0xac,0xe9,0x95,0x46,0xa,0x4d,0xf1,0x15,0xc6,0x1f,0xd7,0x9,0x3d,0x41, + 0x50,0x8e,0xb5,0x98,0x8,0x6,0xdd,0x6f,0xce,0xeb,0xa2,0xd9,0x36,0x6e,0x9,0xe6, + 0x20,0x64,0x41,0x90,0xf2,0xa2,0x5a,0x16,0x5d,0x93,0x76,0x5b,0x10,0xa,0xab,0xc5, + 0x3c,0xd6,0xf1,0xfc,0x54,0x2a,0xad,0xa4,0x9b,0x26,0xff,0xe3,0x86,0xfc,0xd0,0xfc, + 0x20,0xff,0x90,0xa1,0x43,0xa9,0xa2,0xb2,0x92,0x9e,0x41,0xe2,0xcf,0xc2,0x85,0x44, + 0x6f,0x2e,0xd5,0x7d,0xe7,0xe8,0x5a,0x33,0xd7,0xc3,0x4,0xb4,0x7c,0xf9,0x88,0x35, + 0x20,0x42,0x0,0x75,0x1,0x44,0x48,0x98,0xd2,0xdc,0x81,0x75,0x60,0x93,0x5f,0xda, + 0x10,0x97,0x1,0xfb,0xa9,0x63,0xf9,0x78,0xcb,0x95,0x88,0x8,0x12,0x9,0x5c,0xc6, + 0x83,0x7d,0xca,0x7a,0xf2,0x4d,0xef,0x4a,0xea,0xef,0xff,0xa0,0x9b,0x64,0xd4,0xa2, + 0x83,0x43,0x17,0xd0,0xed,0x28,0x11,0xac,0x81,0x1f,0x2f,0x5d,0x4a,0x77,0x1f,0x79, + 0x24,0xd,0xfa,0xdb,0xdf,0x75,0xd4,0x5a,0x99,0xd7,0x4d,0xca,0x2,0x60,0xbf,0x9, + 0x2e,0x81,0xf4,0xb1,0x61,0xa0,0x8b,0xa2,0x65,0xf5,0x1,0xb5,0x61,0x90,0xae,0x93, + 0x8,0x35,0x7e,0x9c,0xf4,0x92,0xc0,0xa3,0xa7,0x27,0xe7,0x7c,0xfb,0xc9,0x93,0xd8, + 0xec,0x5f,0x6a,0xc8,0xff,0xc9,0xff,0xb9,0x9f,0x77,0x8f,0xf,0x88,0x99,0x23,0xa6, + 0xf3,0x68,0x45,0xc4,0xf1,0xc9,0x53,0x70,0x45,0x66,0xde,0x89,0xf,0xbf,0xcd,0x7, + 0x86,0xe8,0x62,0x35,0x24,0xf5,0xe,0xc4,0x33,0xfb,0x50,0xd8,0x83,0xc7,0xf6,0x9b, + 0x20,0x21,0x5f,0xbb,0x29,0x4,0x92,0x52,0xfe,0x3e,0xba,0xfa,0xc4,0xc7,0x74,0x95, + 0x7e,0x8a,0x8b,0x52,0x8d,0x1,0x74,0xda,0x5,0x88,0x3,0xd6,0xc0,0xbf,0x7c,0xec, + 0x63,0x3e,0x2c,0x81,0x7b,0xfe,0xf2,0x1c,0x1d,0xd0,0xd8,0x44,0xff,0xae,0xcc,0xec, + 0xca,0xfd,0xa7,0x51,0xd3,0x72,0x9d,0x23,0x9f,0x61,0x62,0x92,0x4e,0x55,0x55,0xa4, + 0x6d,0xc0,0xbb,0xc,0xf3,0x7d,0x39,0xb4,0x5b,0xc6,0x8,0x86,0x70,0xa6,0xa1,0x24, + 0xe1,0x60,0x6b,0xfc,0xea,0xa9,0xb5,0x6c,0xee,0x23,0xa8,0xc7,0x42,0x0,0x9,0x34, + 0x65,0x69,0x53,0x49,0x27,0xcd,0x6d,0x3e,0xde,0xd6,0xcc,0x53,0x95,0x3d,0x68,0x66, + 0x38,0xf6,0x4f,0x3c,0x29,0xf1,0xfa,0x21,0xc,0x9e,0xb9,0xe8,0x22,0xba,0x55,0x59, + 0x2,0xb,0xb7,0x40,0x3,0x9b,0x6e,0x36,0x5f,0x93,0xd4,0x1f,0x37,0x39,0x20,0x23, + 0x20,0x56,0x82,0x98,0xe8,0xec,0x36,0x20,0x27,0xdf,0x5a,0x26,0x2,0xc2,0x43,0x26, + 0xf0,0xb4,0xd3,0xa8,0xed,0x63,0x62,0x42,0x81,0xb5,0x3f,0x67,0x1b,0x92,0xce,0xef, + 0x37,0x82,0xeb,0xf9,0x4b,0x2e,0xa1,0xe6,0xe6,0x66,0x72,0x70,0xe8,0x2e,0xa,0xd6, + 0x4f,0xf4,0x83,0x6f,0x7d,0xcb,0x7f,0xf5,0xf5,0xd7,0xe9,0xf3,0x87,0x1f,0x4e,0xf7, + 0xde,0x7b,0xf,0x9d,0xb7,0x6e,0x3d,0xcd,0x9d,0x73,0x32,0xb5,0xac,0x5a,0x2d,0x61, + 0x1,0x6a,0xb,0x34,0x76,0x2a,0xec,0x15,0x10,0x12,0xcb,0x5,0x4d,0x9e,0xa2,0xdd, + 0x83,0xd8,0x36,0xbf,0x6e,0x4d,0x74,0xdf,0x80,0x2c,0x9a,0x14,0x71,0xad,0xf,0xd8, + 0xe4,0xff,0xd4,0xe7,0x3e,0xc7,0xeb,0x90,0xe4,0xb9,0xba,0xc7,0x6e,0x7b,0xfc,0x71, + 0x5a,0xb8,0x77,0xaf,0xfe,0x62,0xfc,0xeb,0x60,0xd7,0x8c,0x1e,0xa6,0x1b,0x9f,0x70, + 0xa3,0xd0,0x88,0x98,0xfc,0x98,0x74,0x5,0x55,0x7d,0xe0,0x22,0x18,0x1,0x0,0x61, + 0x25,0x80,0xf0,0x7a,0xf6,0xd9,0x67,0x79,0xdd,0x59,0x0,0xc5,0x45,0xa9,0x5a,0x0, + 0x5,0xed,0x28,0x86,0x10,0x0,0x31,0x5f,0xbb,0xe7,0x6e,0xfe,0xe,0x6b,0x60,0xd6, + 0xd6,0xad,0x74,0xd6,0x94,0xa9,0x8a,0xc0,0x6b,0xc9,0xcf,0x41,0xe0,0xee,0x64,0x4c, + 0x43,0xe3,0x1b,0xaf,0x9a,0x7,0xf6,0x60,0x1d,0xfe,0xfe,0x3b,0xca,0xe4,0xf7,0x3f, + 0x34,0x87,0x8e,0x3a,0xec,0x30,0xfe,0x75,0x4b,0x43,0x3,0xff,0x11,0x4f,0x3b,0xed, + 0x34,0x7d,0xd6,0x1c,0x59,0x72,0x78,0x20,0xb7,0xc6,0x5,0x41,0x2a,0x15,0x78,0x31, + 0x6c,0x19,0xb4,0x19,0xeb,0x0,0x53,0x70,0x63,0x2,0xe,0xb3,0x44,0x16,0x9f,0x9f, + 0x60,0xda,0xc7,0xdb,0xf7,0x63,0xdf,0x49,0xb6,0xd9,0x82,0x9,0x84,0xc7,0xb9,0x4d, + 0x0,0x31,0x57,0x76,0x9f,0x13,0x0,0x3d,0x83,0x52,0x15,0x0,0xdd,0x76,0x1,0x6c, + 0x7c,0xe5,0x86,0x1b,0xf8,0xe4,0x2c,0x8,0x94,0x6,0x7b,0xed,0xae,0x3b,0xe9,0x3d, + 0xa5,0x85,0x97,0xee,0xdd,0x4d,0xb3,0xfc,0x56,0x3a,0x5f,0x99,0xee,0x2d,0xf0,0x85, + 0x53,0xa9,0x88,0x20,0xb0,0x3a,0xb5,0x2,0x64,0x9,0x5,0xf3,0x73,0xca,0xae,0x53, + 0xa0,0x90,0xae,0xd5,0x5a,0x1e,0x5a,0x1f,0xed,0x4,0x5a,0x5f,0x91,0xff,0xaa,0x59, + 0xb3,0x68,0x7e,0x53,0x13,0xb7,0x25,0x7f,0xc0,0x8e,0xd2,0x63,0xf1,0xeb,0xf5,0x67, + 0x9e,0x49,0xd7,0x93,0xb1,0x8,0xac,0xba,0xfa,0x54,0x33,0x4a,0x8f,0xb6,0x2b,0x4b, + 0x31,0xd9,0xbd,0x8d,0xeb,0xf4,0xe3,0x86,0x9f,0xce,0xe3,0x7e,0x53,0x66,0xf0,0x10, + 0x65,0x33,0xdd,0x42,0x64,0xf8,0x0,0xa6,0xf5,0x42,0x99,0x2f,0xf8,0xf6,0x5c,0xee, + 0xcb,0xb,0x2a,0x11,0x61,0x9b,0x10,0x3f,0x9f,0x6b,0x77,0x70,0xe8,0x2c,0xa,0x2a, + 0x0,0x4,0xb6,0x20,0x78,0xed,0xc7,0xf7,0xd2,0xbb,0x8a,0x50,0xef,0x3d,0xfb,0xc, + 0xbd,0xf1,0xfa,0x6b,0x4c,0xf8,0x43,0x36,0x6f,0xe,0xa7,0xf1,0x6a,0x23,0x9e,0x4e, + 0xcc,0x76,0x15,0x7c,0x93,0xb2,0x1b,0x31,0xf3,0x85,0x35,0x1,0xf1,0x75,0xb0,0x6e, + 0x81,0x31,0xf7,0xdf,0x4a,0xd0,0xfa,0x8f,0x40,0xeb,0x1b,0x1,0xd3,0x95,0x2,0x98, + 0x11,0x41,0xa0,0x2c,0x2,0x44,0xdd,0x33,0xa8,0x98,0x8c,0x21,0xcd,0x30,0xcb,0x25, + 0x9,0xc7,0xc0,0xb,0xfe,0xb3,0x37,0x44,0x81,0x28,0x3e,0x77,0x7f,0x9a,0x9f,0x79, + 0xdd,0x90,0xbf,0xc,0xed,0x9b,0xfd,0x2e,0x3b,0xf6,0x58,0xfa,0xe4,0x71,0x7a,0xc2, + 0x13,0x47,0x7c,0x87,0x62,0xa1,0x28,0x2,0x40,0x0,0x41,0x70,0xe3,0x8d,0x37,0xfa, + 0x23,0x2b,0x2b,0xe9,0x15,0xc5,0xee,0xb7,0x8d,0xef,0xff,0xce,0xe2,0x45,0xfc,0xf2, + 0x1f,0xa8,0x5c,0x84,0x77,0x6,0x55,0xd3,0x5b,0x10,0xc,0x24,0xc1,0xc2,0xc,0x1d, + 0xaa,0xac,0x5,0x8,0x5,0x1,0x7a,0x14,0x10,0x54,0x4,0x1e,0x7a,0xe6,0x69,0x2d, + 0x3c,0x90,0xd1,0x57,0x53,0xa3,0xfc,0xe3,0x90,0xf8,0x47,0x2a,0xe2,0xe3,0x37,0x98, + 0xfb,0xd2,0x8d,0x26,0x37,0xd8,0x1d,0x37,0x3,0x82,0xe0,0xeb,0xe5,0xe5,0xd4,0xd2, + 0xd2,0x42,0xa7,0x9a,0xfe,0x76,0x6e,0xf,0xe7,0x90,0xf2,0xdc,0x14,0x5a,0x9,0xc, + 0x31,0xe1,0xe3,0x10,0xc2,0x63,0xc0,0xf,0x84,0x9a,0xda,0xe7,0x9c,0xc1,0x83,0x69, + 0x81,0xfa,0xa9,0xf5,0xc8,0x23,0xf8,0xb8,0xa7,0x2f,0xbc,0x50,0xb7,0xe7,0x88,0xef, + 0x50,0x64,0x14,0x55,0x0,0x8,0xb6,0x29,0x33,0xbc,0xf6,0xa0,0x83,0x78,0x1d,0x3e, + 0xcb,0x8f,0x6e,0xbb,0x8d,0x5e,0x79,0xe5,0x15,0x7a,0x9b,0xaf,0xa0,0x8c,0xde,0x86, + 0x8f,0xbb,0x58,0xfb,0x56,0xf0,0xa1,0x97,0xf,0x9a,0xc4,0x42,0x1,0xc2,0x1,0x38, + 0x68,0x5f,0x3,0xbd,0xbb,0xfc,0x5d,0x3a,0x10,0xcb,0xc9,0x93,0xb4,0xf6,0xcc,0x64, + 0x74,0xcf,0xa2,0x22,0xfe,0xfb,0x15,0xf1,0x21,0x50,0x6c,0xe2,0x3,0x5d,0x4a,0x72, + 0xc8,0x1,0x90,0x1f,0xc0,0x40,0x9b,0xea,0xea,0x6a,0x6a,0x50,0xe7,0x12,0x61,0x20, + 0xe7,0x69,0xad,0xad,0xd,0x82,0x75,0x1c,0xb8,0x33,0x44,0x4f,0x1a,0x6b,0x70,0xac, + 0xda,0xf6,0xa2,0x11,0x10,0xb,0x30,0xcf,0xa0,0xda,0x57,0x88,0xef,0xe0,0xd0,0x53, + 0xe8,0x11,0x1,0x20,0x85,0x3f,0x5,0x5f,0xbc,0xfe,0xfa,0x60,0xfd,0x47,0xb7,0xdc, + 0xc2,0xbf,0xbf,0x6a,0xf5,0x8d,0x7b,0x4a,0x18,0xbc,0xab,0xb4,0xba,0xf8,0xd3,0xef, + 0x2a,0xc2,0xc1,0x32,0xc0,0xb6,0x8c,0xe9,0xce,0x83,0xb6,0xdf,0x6e,0xfc,0x7b,0x2c, + 0x19,0x45,0x20,0x7e,0x12,0x40,0x7e,0xe0,0x49,0x19,0x4c,0xa4,0x70,0x9a,0x12,0x6, + 0x28,0xc0,0x19,0xf4,0x30,0xd4,0xc5,0xd2,0x88,0x8d,0x36,0x6f,0x35,0x93,0xae,0xbc, + 0x68,0xf2,0xfc,0x11,0xe4,0x73,0xc4,0x77,0xe8,0x2d,0xf4,0x88,0x0,0x68,0x8f,0x90, + 0x87,0x1b,0x3f,0xf7,0xc8,0xe3,0x8f,0xf,0x37,0x7e,0xf6,0xb3,0x59,0xfb,0x9,0xb1, + 0x9e,0x7a,0xea,0x29,0x5e,0xa,0xe9,0x83,0x58,0x42,0x7,0xe7,0x29,0x34,0xe4,0x7a, + 0xc4,0x4c,0x7f,0xc2,0x12,0x6,0x1d,0x1d,0xe7,0x4c,0x7b,0x87,0xbe,0x82,0x1e,0x11, + 0x0,0xc5,0x80,0x6d,0x55,0xf4,0x24,0xf1,0x83,0xf3,0x4b,0x1e,0x43,0xcc,0xbc,0xb7, + 0x5,0x43,0x12,0xd9,0x4b,0x8d,0xfc,0xe7,0x9c,0x73,0x4e,0x8f,0x9e,0x6f,0xc1,0x82, + 0x5,0x3d,0x7a,0xbe,0x52,0x47,0xd1,0xb9,0x83,0xe8,0xbb,0xfd,0xc9,0xf5,0x3b,0xc8, + 0xd2,0xde,0x27,0xab,0xbd,0x2e,0x5e,0x47,0x47,0xe7,0xc9,0xf7,0x93,0xab,0x3d,0x81, + 0xac,0x17,0xea,0x7c,0x1d,0x3d,0x97,0xde,0x40,0x4f,0x93,0xbf,0xb7,0xce,0x59,0xca, + 0xe8,0xd,0xe5,0xe9,0x50,0x2,0xe8,0x4d,0x22,0x3a,0x21,0x50,0x38,0x38,0x1,0xe0, + 0xd0,0x69,0x38,0x2,0x96,0xe,0xfa,0x6d,0xc,0xc0,0xa1,0x73,0xe8,0x9,0xd2,0x16, + 0xcb,0x3f,0x4f,0xba,0xf6,0x42,0xdf,0xcf,0x40,0x8d,0x2d,0x38,0xb,0x60,0x0,0xa0, + 0x3f,0x93,0xbf,0xa7,0x30,0x50,0xad,0x1a,0x27,0x0,0x4a,0x1c,0xa5,0x40,0xfe,0x9e, + 0x12,0x2e,0x3,0x51,0x8,0xf4,0x3b,0x1,0x30,0x67,0xce,0x9c,0x5e,0x39,0xd6,0x21, + 0x19,0x3d,0x45,0xce,0xfe,0x6e,0x61,0xf4,0x55,0xf4,0xcb,0x18,0x80,0x23,0x72,0xfe, + 0x98,0x3d,0x7b,0x76,0x51,0xdb,0xef,0x49,0x62,0xe2,0x5c,0xc5,0x1c,0xf6,0x7c,0xf2, + 0x29,0xa7,0xc,0x38,0x41,0xd3,0xef,0x2c,0x0,0x87,0xbe,0x85,0x9e,0xac,0x43,0xe0, + 0x6a,0x1e,0x14,0x1e,0x4e,0x0,0x94,0x38,0x7a,0x82,0x34,0xa5,0x70,0xe,0x4c,0xfc, + 0xf1,0xa1,0x93,0x92,0xcb,0xc6,0x95,0x32,0xfa,0xa5,0xb,0xe0,0xd0,0x39,0x80,0x3c, + 0xcf,0x76,0xb2,0x92,0x4d,0x47,0x78,0xda,0x8c,0xc9,0xe8,0x9,0xe4,0x22,0x3f,0x4c, + 0xf6,0x42,0xa1,0x2b,0xf5,0x22,0x4a,0x1,0xfd,0x52,0x0,0xd8,0x31,0x0,0xfb,0xe5, + 0xc8,0x37,0x36,0xd0,0xdf,0x8f,0xef,0xa,0xa,0xa9,0xdd,0x92,0x84,0x49,0x4f,0x9b, + 0xe7,0xd0,0xd8,0x3,0x95,0xb4,0x85,0x44,0xbf,0x7b,0x82,0xed,0x91,0x24,0x9f,0xfa, + 0x6b,0xfd,0xfd,0x78,0x7,0x47,0xfe,0x42,0xc2,0x3d,0x45,0x87,0x4e,0x3,0xd6,0x44, + 0x6f,0x4d,0x96,0xe9,0xc8,0x5f,0x58,0xf4,0x4b,0x17,0xc0,0xa1,0xf7,0x1,0x12,0x16, + 0x3a,0xae,0x90,0xef,0x79,0x1d,0xa,0x7,0x27,0x0,0x6,0x8,0xae,0x7b,0xfe,0x97, + 0xbc,0xfc,0xde,0xe0,0x4f,0xe9,0xd,0x47,0xb4,0x75,0xbb,0xcd,0x81,0x18,0x35,0x2f, + 0x35,0x38,0x71,0x3a,0x0,0x20,0xe4,0x8f,0xe0,0xd5,0x74,0xf6,0x36,0x87,0x1,0x7, + 0x27,0x0,0x4a,0x1c,0x89,0xe4,0x17,0x38,0x21,0x30,0xe0,0xe1,0x4,0x80,0x83,0xc3, + 0x0,0x86,0x8b,0x1,0x94,0x38,0x2,0x9f,0x5f,0xb0,0xb1,0x22,0xb6,0x47,0x43,0x8f, + 0x5d,0x8b,0x43,0xdf,0x83,0xb3,0x0,0x1c,0x1c,0x6,0x30,0x9c,0x0,0x28,0x75,0xb4, + 0x17,0xed,0x3f,0xc3,0x69,0xff,0x81,0xe,0x27,0x0,0x6,0x2,0x92,0x84,0x80,0x23, + 0xbf,0x3,0xb9,0x18,0xc0,0xc0,0x41,0x20,0x4,0x1c,0xf1,0x1d,0x42,0x38,0xb,0xc0, + 0xc1,0x61,0x0,0xc3,0x9,0x0,0x7,0x87,0x1,0x8c,0x7e,0x27,0x0,0xda,0x1b,0x31, + 0x97,0xcf,0x70,0xda,0xfe,0x7e,0xbc,0x83,0x43,0x21,0xd1,0x2f,0x63,0x0,0xdd,0x1d, + 0x36,0xdb,0xdf,0x8f,0x77,0x70,0x28,0x14,0xfa,0x9d,0x5,0xe0,0xe0,0xe0,0x50,0x38, + 0xf4,0x4b,0xb,0xc0,0x21,0x1b,0x32,0x5b,0xb1,0x83,0x43,0x67,0xe0,0x2c,0x80,0x12, + 0x40,0x6f,0x15,0xe7,0x70,0xe8,0x5d,0x24,0x94,0x61,0xeb,0xf4,0x74,0xd1,0xce,0x2, + 0xe8,0xe7,0x40,0xe0,0x70,0x51,0x2f,0x14,0xe6,0x70,0x28,0xd,0x38,0xb,0xc0,0xc1, + 0xa1,0x1f,0xa2,0x10,0xda,0x1f,0xe8,0x55,0x1,0xe0,0x34,0x97,0x83,0x43,0xef,0xa2, + 0xd7,0x5c,0x0,0x9b,0xfc,0x5e,0xac,0xce,0xdb,0x89,0x27,0x9c,0x50,0xb0,0xf3,0xbc, + 0xf7,0xde,0x7b,0x79,0xef,0x7b,0xc0,0x1,0x7,0xf4,0x68,0x7b,0x3,0xa1,0xad,0x62, + 0xb4,0x57,0xe8,0x36,0xbb,0xd3,0xd6,0xe2,0x25,0x4b,0x82,0x75,0xbf,0x87,0x2,0xb1, + 0x85,0xd2,0xfe,0xdd,0x3a,0x30,0x5f,0xa8,0x8b,0xf5,0xed,0xef,0x92,0xec,0x12,0x27, + 0x3d,0x60,0x13,0xbf,0x10,0x7f,0xe0,0xce,0xb4,0xd1,0x51,0x5b,0x85,0x6e,0x6f,0x20, + 0xb4,0x55,0x8c,0xf6,0xa,0xdd,0x66,0x21,0xda,0x12,0x21,0x90,0x24,0x0,0xa,0x9d, + 0xf3,0x91,0x63,0xfe,0x85,0x2e,0xf3,0xb8,0xa8,0x16,0x40,0x9c,0xfc,0x82,0x42,0x92, + 0x5f,0xf6,0xb7,0xff,0x28,0xf6,0xf1,0xb9,0xda,0xb2,0xf7,0xff,0xf2,0x97,0xbf,0xcc, + 0xcb,0x3b,0xee,0xb8,0x23,0x67,0xfb,0x85,0x6a,0x6f,0x20,0xb4,0x55,0x8c,0xf6,0xa, + 0xdd,0x66,0x21,0xdb,0x42,0x71,0xd4,0x9e,0xa8,0x90,0x5c,0x68,0xf2,0x3,0x45,0x13, + 0x0,0x9d,0x21,0xbf,0x54,0x97,0x7d,0xe7,0x9d,0x77,0x82,0x6d,0x5d,0xfd,0xa3,0xe4, + 0xf3,0x87,0x6d,0xf,0x5d,0x11,0x26,0xf9,0xb6,0x37,0x10,0xda,0x2a,0x46,0x7b,0x85, + 0x6e,0xb3,0x50,0x6d,0xf5,0x64,0x89,0xf2,0x62,0x90,0x1f,0x28,0x8a,0x0,0xc8,0x45, + 0xfe,0xa4,0xb9,0xdc,0x3a,0x43,0xfe,0xf6,0x90,0x74,0x4c,0x3e,0xfe,0xa4,0x8,0x91, + 0x7c,0xda,0xec,0x4e,0x7b,0x3,0xa1,0xad,0x62,0xb4,0x57,0xe8,0x36,0xb,0xd5,0x56, + 0x29,0x90,0x1f,0x28,0xf8,0x5d,0x74,0x97,0xfc,0x0,0xfe,0x28,0xb9,0x3e,0x82,0x8e, + 0x5e,0x9a,0x7c,0x10,0x6f,0x43,0xbe,0xdf,0x7c,0xf3,0xcd,0xfc,0x29,0x64,0x7b,0x3, + 0xa1,0xad,0x62,0xb4,0xd7,0x57,0xef,0xd7,0x6,0xfc,0xfc,0x62,0xf9,0xff,0xc5,0x24, + 0x3f,0x50,0x50,0xb,0xa0,0x2b,0xe4,0xef,0xa,0x92,0xfe,0x28,0xb6,0x1b,0x70,0xff, + 0xfd,0xf7,0xb7,0x7b,0xfc,0xa5,0x97,0x5e,0xda,0xae,0x0,0xc1,0xef,0x76,0x1b,0x85, + 0x68,0x6f,0x20,0xb4,0x55,0xe8,0x67,0x16,0x6f,0xa3,0x2f,0xdd,0xaf,0x20,0x17,0xc9, + 0xfb,0x3,0xf9,0xb,0xda,0x58,0x77,0xc8,0x2f,0x16,0x40,0x77,0xfe,0x28,0x22,0x0, + 0x3a,0x6a,0x43,0xda,0x1,0x92,0xda,0x9a,0x3d,0x7b,0x76,0x64,0x9f,0x42,0xb4,0x37, + 0x10,0xda,0xb2,0xf7,0x29,0x54,0x7b,0x85,0x6e,0xb3,0x50,0x6d,0x2d,0x58,0xb0,0x80, + 0x97,0xfd,0x9d,0xfc,0x40,0x41,0x5c,0x80,0x9e,0x20,0xbf,0xa0,0xbd,0x28,0xb1,0x83, + 0x43,0xb1,0x51,0x4a,0xe4,0x7,0xba,0xed,0x2,0x74,0x95,0xfc,0x71,0xbf,0xdf,0x36, + 0xcf,0xe2,0xc8,0x25,0x1c,0x92,0x84,0x41,0xae,0x76,0xf2,0x11,0x30,0xb6,0x96,0xe8, + 0xce,0x75,0xd9,0xed,0xe5,0xdb,0x56,0x3e,0xd7,0xd6,0x1f,0xda,0x2a,0x46,0x7b,0xdd, + 0x41,0x67,0xde,0x11,0xa0,0xbd,0xbf,0x69,0xa9,0x91,0xbf,0xdb,0xd,0x17,0x8a,0xfc, + 0xf9,0x0,0x7f,0x18,0xdb,0x2c,0xeb,0x8a,0x25,0x60,0xff,0x71,0xed,0xb6,0xe2,0x26, + 0x6c,0x57,0xda,0x4c,0x6a,0xaf,0xab,0x6d,0xa,0xe2,0x6d,0x75,0xa7,0xbd,0xbe,0xda, + 0x56,0xae,0xf6,0x3a,0xdb,0x66,0xd2,0xdf,0xa1,0xab,0xd6,0x62,0x52,0x5b,0xa5,0x48, + 0x7e,0xa0,0xcb,0x16,0x40,0xb1,0xba,0xfa,0xda,0xeb,0xe7,0x17,0x21,0x20,0xdf,0xb, + 0x95,0x60,0x62,0xbf,0x68,0x7d,0xb5,0xcd,0x42,0xb6,0xd7,0x57,0xdb,0xca,0xd5,0x6e, + 0x3e,0x88,0x7,0xd,0x73,0xe5,0x86,0x74,0xe5,0xba,0x4a,0x95,0xfc,0x40,0x97,0x4, + 0x40,0x6f,0xf4,0xf3,0xc7,0x5f,0x88,0xae,0xb6,0x21,0x2f,0x89,0x2c,0xf3,0x79,0x51, + 0xf2,0x69,0x53,0xda,0x8b,0xbb,0x11,0x5d,0x69,0x53,0xae,0x2f,0xc9,0x32,0xe9,0x6a, + 0x7b,0x7d,0xb5,0x2d,0xfb,0x3e,0xf3,0x6d,0xb3,0xab,0x19,0x89,0xf9,0x2,0xd7,0x70, + 0xd0,0x41,0x7,0x45,0x48,0x59,0x8a,0xe4,0x7,0x3a,0x2d,0x0,0xa,0xd5,0xcf,0xdf, + 0x11,0x3a,0xea,0x82,0x29,0x44,0x1b,0x71,0xa1,0xd2,0x17,0xdb,0x2c,0x64,0x7b,0x7d, + 0xb5,0xad,0xa4,0x36,0xb,0xa1,0x24,0xa,0x75,0x5d,0xa5,0x4a,0x7e,0xa0,0x53,0xbd, + 0x0,0xbd,0xd9,0xcf,0xdf,0x1b,0x6d,0xf4,0xc7,0x36,0xb,0xd9,0x5e,0x4f,0xb6,0x95, + 0x24,0x50,0x7a,0x33,0x19,0x4c,0x50,0xca,0xe4,0x7,0xf2,0xb6,0x0,0xa,0x41,0xfe, + 0x42,0x24,0x5f,0xf4,0xd5,0x4,0x93,0x62,0xb7,0xd9,0x97,0x92,0x60,0x8a,0x99,0x40, + 0x94,0x2f,0x8a,0x99,0xc,0x6,0xf3,0x1f,0xc0,0x0,0x9f,0xfe,0x9a,0xe1,0x97,0x2f, + 0xf2,0x3a,0x61,0x4f,0xf5,0xf3,0xe7,0x4a,0xbe,0x28,0x74,0x92,0x8f,0xbd,0x5f,0x5f, + 0x6e,0xb3,0x2f,0x26,0xc1,0x14,0x23,0x81,0xc8,0xde,0xaf,0xb7,0x93,0xc1,0x24,0xe0, + 0x37,0x10,0xc8,0xf,0x74,0x68,0x1,0x14,0xc2,0xe7,0x7,0xba,0xd2,0x3f,0xef,0x92, + 0x7e,0x6,0x6,0x3a,0x23,0x50,0x0,0xbc,0x17,0x85,0x30,0xff,0xe3,0x18,0x68,0xe4, + 0x7,0xda,0x15,0x0,0x85,0x22,0x7f,0x7b,0xc8,0x65,0x2,0x16,0x23,0xc9,0xa7,0xd0, + 0xe8,0xf,0x6d,0x16,0xb2,0xbd,0x62,0x27,0x10,0xf5,0x26,0x6,0x22,0xf9,0xdb,0x3d, + 0x79,0x67,0xc9,0xdf,0x9d,0x3e,0xfe,0xa4,0x4,0x9d,0xce,0xa2,0xa3,0x24,0x9f,0xae, + 0xb4,0xdf,0x5b,0x6d,0xf6,0x85,0xf6,0xa,0x75,0xbf,0x36,0xa,0x7d,0x5d,0x40,0x67, + 0xac,0xc4,0xb8,0xa2,0x90,0xb6,0x6,0x92,0xcf,0x1f,0x47,0xa2,0x5,0x50,0xc,0xf2, + 0xb7,0x7,0xb1,0x2,0x8a,0x95,0x54,0x62,0x9f,0xa7,0x2b,0xd7,0xd5,0x93,0x6d,0xf6, + 0xe5,0xf6,0x8a,0x95,0x40,0xd4,0x99,0xeb,0x8a,0x27,0x83,0x75,0xa5,0xd,0x1b,0x3, + 0x99,0xfc,0x40,0x96,0x0,0xe8,0xe,0xf9,0x81,0xae,0xf6,0xbb,0x16,0xaa,0xf,0x38, + 0x9e,0x94,0x93,0x6f,0xdb,0x1d,0xbd,0xb8,0xc5,0x6e,0xb3,0xaf,0xb5,0xd7,0x95,0xfb, + 0xed,0x8,0x85,0xba,0x4f,0x1b,0x9d,0x6d,0xc3,0x26,0xa3,0xac,0xf,0x54,0xf2,0x3, + 0x91,0x3c,0x80,0x9e,0xe8,0xe7,0xcf,0xa7,0x6f,0xb9,0x90,0x7d,0xc0,0xc5,0x48,0x2e, + 0x29,0x74,0x9b,0xfd,0xa9,0x3d,0xa0,0xab,0x7f,0x9f,0x42,0x5c,0x57,0x77,0xdb,0x88, + 0x2b,0xac,0x81,0x4c,0x7e,0x20,0xb0,0x0,0xba,0x4b,0xfe,0x42,0x15,0x58,0xc8,0x7, + 0xed,0xf5,0x1,0xdb,0x66,0xde,0x40,0xcb,0xf4,0x2b,0x46,0x7b,0x5d,0x41,0x47,0x7d, + 0xf4,0x85,0xba,0xae,0xee,0xb6,0x31,0xd0,0xc9,0xf,0xb0,0x0,0xe8,0xee,0xa8,0xbe, + 0x42,0x75,0xdf,0xf4,0x44,0xa2,0x50,0x7b,0xc8,0xe7,0xc5,0xed,0xed,0x36,0x7b,0xb3, + 0xbd,0xbe,0x22,0xe4,0xbb,0xd3,0xc6,0x40,0x8d,0xf6,0xe7,0x42,0x59,0x4f,0xa5,0xf7, + 0xe6,0x42,0x67,0x92,0x37,0x64,0xff,0xa4,0x97,0x2c,0xd7,0x90,0xd2,0x7c,0xda,0x2e, + 0x95,0x4c,0xbf,0x62,0xb4,0x57,0xe8,0x3e,0xfa,0xde,0xcc,0x6,0x15,0xf2,0x43,0x71, + 0xad,0x5f,0xbf,0x3e,0xeb,0xf7,0x81,0x46,0x7e,0x20,0x71,0x2c,0x40,0x4f,0x91,0xbf, + 0x90,0xc8,0xd5,0x55,0xd5,0xdd,0x4a,0x43,0x76,0x50,0xb1,0xd0,0x6d,0xf6,0xf5,0xf6, + 0xa,0x85,0xae,0x8,0xf9,0x42,0xb7,0x61,0x6b,0x7e,0x47,0xfe,0x10,0x59,0x2,0xa0, + 0x58,0xe4,0x8f,0xf,0xbf,0x5,0x61,0xb,0x95,0xc,0xd2,0xd7,0x92,0x4a,0x1c,0xfa, + 0x16,0x84,0xfc,0xe7,0x9c,0x73,0x8e,0x33,0xfb,0x63,0xe8,0x30,0x15,0x18,0x33,0xf6, + 0x64,0x12,0x1e,0x9a,0x44,0x60,0xbb,0xaa,0x29,0x64,0x4e,0xfb,0xce,0x44,0x72,0xed, + 0x3e,0x60,0x31,0xf1,0x1e,0x7d,0xf4,0xd1,0xc4,0x7d,0xbb,0xda,0x55,0x65,0x23,0xde, + 0x76,0xa1,0xdb,0xec,0xeb,0xed,0x75,0xb6,0xcd,0xf8,0xdf,0x47,0xda,0x2a,0xc4,0x75, + 0x75,0x15,0x36,0xf9,0xaf,0xbb,0xee,0xba,0xac,0xdf,0x7,0x32,0xf9,0x1,0x2f,0x1e, + 0x3,0xb0,0x2d,0x80,0x42,0x4e,0xd2,0xe9,0xe0,0xd0,0xd3,0x90,0xc9,0x3b,0x64,0xda, + 0xae,0xb8,0xf6,0x1f,0xe8,0xe4,0x7,0xb2,0x5c,0x80,0x9e,0x9a,0xe1,0xd4,0xc1,0xa1, + 0x27,0x0,0xcd,0x9f,0x4,0x47,0x7e,0x8d,0x44,0x17,0xc0,0x9,0x1,0x87,0x52,0x80, + 0x3d,0x61,0x67,0xa1,0xdf,0xe9,0x52,0x20,0x3f,0xd0,0x6e,0xc,0x60,0x91,0x7a,0x80, + 0x27,0xf5,0xf1,0xe8,0xbf,0x83,0x83,0xd,0x99,0xaa,0xbb,0x3d,0x74,0x57,0xfb,0x97, + 0xa,0xf9,0x81,0xe,0x83,0x80,0x8b,0x7a,0x60,0xda,0x63,0x7,0x87,0x42,0x41,0x66, + 0x9f,0x86,0xc6,0xc7,0xba,0xd3,0xfc,0xed,0x23,0x2b,0x8,0x38,0x67,0xce,0x9c,0x5e, + 0xba,0x14,0x7,0x87,0xee,0x21,0x1f,0xc2,0x77,0x47,0xfb,0x97,0x1a,0xf9,0x81,0xa2, + 0x4c,0xf,0xee,0xe0,0xd0,0x93,0xb0,0xb5,0x7e,0xb1,0x50,0x8a,0xe4,0x7,0x9c,0x0, + 0x70,0xe8,0xd7,0x28,0x86,0x99,0x1f,0x47,0xa9,0x92,0x1f,0x70,0x2e,0x80,0xc3,0x80, + 0x42,0x67,0x5d,0x80,0x52,0x26,0x3f,0x50,0x90,0xd9,0x81,0x1d,0x1c,0x4a,0x11,0xa5, + 0x4e,0x7e,0xc0,0x9,0x0,0x7,0x87,0x4,0xc,0x4,0xf2,0x3,0x4e,0x0,0x38,0x38, + 0xc4,0x30,0x50,0xc8,0xf,0x38,0x1,0xe0,0xe0,0x60,0x61,0x20,0x91,0x1f,0x70,0x2, + 0xc0,0xc1,0xc1,0x60,0xa0,0x91,0x1f,0x70,0x2,0xc0,0xc1,0x81,0x6,0x26,0xf9,0x1, + 0x27,0x0,0x1c,0x6,0x3c,0x6,0x2a,0xf9,0x1,0xdc,0x64,0x62,0x4d,0x40,0x7,0x87, + 0x1,0x8c,0x1,0x41,0x7e,0xc0,0x9,0x0,0x7,0x87,0x28,0x6,0xc,0xf9,0x1,0x27, + 0x0,0x1c,0x1c,0x42,0xc,0x28,0xf2,0x3,0x4e,0x0,0x38,0x38,0x68,0xc,0x38,0xf2, + 0x3,0xff,0x1f,0x61,0xd9,0x53,0x2b,0x0,0x0,0x52,0xa0,0x14,0x15,0x0,0x0,0x0, + 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,0x28,0x0,0x0,0x0,0x10,0x0,0x0, + 0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x40,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xc1,0x7,0xff,0xff,0x80,0x3,0xff,0xff,0x0,0x1,0xff, + 0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x80,0x1,0xff, + 0xff,0xc0,0x3,0xff,0xff,0x80,0x7,0xff,0xff,0x0,0x7f,0xff,0xff,0x0,0x73,0xff, + 0xff,0x0,0x61,0xff,0xff,0x0,0x1,0xff,0xff,0x80,0x3,0xff,0xff,0xc1,0x7,0xff, + 0xff,0x28,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x90,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xc0,0x40,0x7f, + 0xff,0x80,0x0,0x3f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f, + 0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f,0xff,0x80,0x0,0x1f, + 0xff,0xc0,0x0,0x3f,0xff,0x80,0x0,0x7f,0xff,0x0,0x1f,0xff,0xff,0x0,0x1f,0xff, + 0xff,0x0,0x1f,0x3f,0xff,0x0,0xe,0x1f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f, + 0xff,0x80,0x0,0x3f,0xff,0xc0,0x40,0x7f,0xff,0x28,0x0,0x0,0x0,0x18,0x0,0x0, + 0x0,0x30,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x60,0x9,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d, + 0xff,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x28,0x28,0xe9,0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef, + 0xff,0x47,0x47,0xf0,0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x7b,0x7b,0x3,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x3f,0x3f,0xed,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xa0,0xa0,0x69,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xe3,0xe3,0x4,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x67,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0, + 0xff,0xa8,0xa8,0x9,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xf0,0x8,0x7,0xff,0xe0,0x0,0x3,0xff,0xc0,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0xc0,0x0,0x1,0xff,0xe0,0x0,0x3, + 0xff,0xe0,0x0,0x7,0xff,0xc0,0x0,0xf,0xff,0x80,0x3,0xff,0xff,0x80,0x3,0xff, + 0xff,0x80,0x3,0xe3,0xff,0x80,0x1,0xc1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0xc0,0x0,0x3,0xff,0xe0,0x8,0x7,0xff,0xf0,0x1c,0xf,0xff,0xff,0xff,0xff, + 0xff,0x28,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x80,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x48,0x48,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0x50,0x50,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x7f,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0xf,0xc0,0x0,0x0,0x7,0xe0,0x0,0x0, + 0x3,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0, + 0x1,0xe0,0x0,0x0,0x1,0xc0,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x80,0x0,0x0, + 0x3,0xc0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0xc0,0x0,0x0, + 0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf8,0x0,0x0, + 0x3,0xfc,0x0,0x0,0x3,0xfe,0x0,0x0,0x7,0x28,0x0,0x0,0x0,0x30,0x0,0x0, + 0x0,0x60,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x80,0x25,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x79,0x79,0x79,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x75,0x75,0x75,0xff,0xd1,0xd1,0xd1,0xff,0xe0,0xe0,0xe0,0xff,0xfb,0xfb,0xfb, + 0xff,0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x5,0x5,0x5, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xd1,0xd1,0xd1,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x24,0x24,0x24,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x1c,0x1c,0x1c, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x77,0x77,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x68,0x68,0x68,0xff,0x8a,0x8a,0x8a,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x68,0x68,0x68,0xff,0x92,0x92,0x92,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xca,0xca,0xca,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x75,0x75,0x75,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x55,0x55,0x55,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x57,0x57,0x57,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x46,0x46,0x46, + 0xff,0xc7,0xc7,0xcc,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0xff,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x66,0x66,0x68,0xff,0x8e,0x8e,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x93,0x93,0x91,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc,0xff,0xcb,0xcb,0xd0,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d, + 0xff,0xca,0xca,0xca,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x28,0x28,0xe9,0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef, + 0xff,0x47,0x47,0xf0,0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x7b,0x7b,0x3,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xc3,0xc3,0xc3,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6e,0x6e,0x6e,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x3f,0x3f,0xed,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x5,0x5,0x5, + 0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4,0xff,0x5,0x5,0x5, + 0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x60,0x60,0x60,0xff,0xc,0xc,0xc,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x32,0x32,0x34, + 0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32, + 0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31, + 0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30, + 0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x14,0x14,0x14,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61, + 0xff,0xcf,0xcf,0xcf,0xff,0x1b,0x1b,0x1b,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4, + 0xff,0x1b,0x1b,0x1b,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xa0,0xa0,0x69,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0xfa,0xfa,0xfa,0xff,0xc5,0xc5,0xc5,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xe3,0xe3,0x4,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfa,0xfa,0xfa,0xff,0xc6,0xc6,0xc6,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0xc8,0xc8,0xc8,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xcc,0xcc,0xcc, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc9,0xc9,0xc9,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x67,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0xc8,0xc8,0xc8,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xca,0xca,0xca,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0, + 0xff,0xa8,0xa8,0x9,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xc8,0xc8,0xc8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c,0xff,0x7,0x7,0x7,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0x88,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfb,0xfb,0xfb,0xff,0xc7,0xc7,0xc7,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x72,0x67,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xc5,0xc5,0xc5,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x76,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0xf4,0xf4,0xf4,0xff,0xc3,0xc3,0xc3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3, + 0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x75,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5, + 0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5, + 0xff,0xb6,0xb6,0xb6,0xff,0xb4,0xb4,0xb4,0xff,0xb1,0xb1,0xb1,0xff,0xbb,0xbb,0xbb, + 0xff,0xc2,0xc2,0xc2,0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xc1,0xc1,0xc1, + 0xff,0xc4,0xc4,0xc4,0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x85, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0x85,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0x87,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0x4c,0x4c,0x4c, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7c,0x7c,0x7c, + 0xff,0x77,0x77,0x77,0xff,0x75,0x75,0x75,0xff,0x7d,0x7d,0x7d,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xc0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x3,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3f,0xff, + 0xff,0xe0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff, + 0xff,0xf8,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xe0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xff,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x7,0xff, + 0xff,0xff,0xc0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x1f,0xff, + 0xff,0x28,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0xff,0x0,0xff,0x0,0xb9,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x6b,0xff,0x6b,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff, + 0xff,0xb1,0xc7,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff, + 0xff,0xb1,0xc7,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff, + 0xff,0xb1,0xc7,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x7f, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x7, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x1, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xe0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x1f,0x28,0x0,0x0,0x0,0x48,0x0,0x0, + 0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x60,0x54,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xdb,0xdb,0xdb,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xda,0xda,0xd9,0xff,0xc8,0xc8,0xc8, + 0xff,0xc0,0xc0,0xc0,0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc1,0xc1,0xc0,0xff,0xf9,0xf9,0xf8,0xff,0xfe,0xfe,0xfe, + 0xff,0xe3,0xe3,0xe3,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde, + 0xff,0xec,0xec,0xec,0xff,0xe3,0xe3,0xe3,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xe8,0xe8,0xe8,0xff,0xe0,0xe0,0xe0,0xff,0xfe,0xfe,0xfe,0xff,0xed,0xed,0xed, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xc2,0xc2,0xc2, + 0xff,0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xde,0xde,0xde,0xff,0xc2,0xc2,0xc2,0xff,0xfb,0xfb,0xfb,0xff,0xdb,0xdb,0xdb, + 0xff,0xd4,0xd4,0xd4,0xff,0xdb,0xdb,0xdb,0xff,0xd2,0xd2,0xd2,0xff,0xe0,0xe0,0xe0, + 0xff,0xf6,0xf6,0xf6,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xe3,0xe3,0xe3, + 0xff,0xc2,0xc2,0xc2,0xff,0xfe,0xfe,0xfe,0xff,0xed,0xed,0xed,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xec,0xec,0xec,0xff,0xe8,0xe8,0xe8, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xe2,0xe2,0xe2,0xff,0xce,0xce,0xce, + 0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0x85,0x85,0x85, + 0xff,0x9e,0x9e,0x9d,0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xef,0xa1,0xa1,0xa0,0xff,0x9d,0x9d,0x9c,0xff,0x10,0x10,0x10, + 0xff,0x8d,0x8d,0x8d,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xb4,0xb4,0xb4, + 0xff,0x59,0x59,0x59,0xff,0xa9,0xa9,0xa9,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x9e,0x9e,0x9e,0xff,0x4d,0x4d,0x4d,0xff,0x8a,0x8a,0x8a,0xff,0xad,0xad,0xad, + 0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96,0xff,0x9b,0x9b,0x9b,0xff,0x4a,0x4a,0x4a, + 0xff,0x83,0x83,0x83,0xff,0xbc,0xbc,0xbc,0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96, + 0xff,0x9b,0x9b,0x9b,0xff,0x4a,0x4a,0x4a,0xff,0x8e,0x8e,0x8e,0xff,0xac,0xac,0xac, + 0xff,0x96,0x96,0x96,0xff,0xa7,0xa7,0xa7,0xff,0x6e,0x6e,0x6e,0xff,0x62,0x62,0x62, + 0xff,0xb4,0xb4,0xb4,0xff,0x9c,0x9c,0x9c,0xff,0x96,0x96,0x96,0xff,0xaf,0xaf,0xaf, + 0xff,0x4a,0x4a,0x4a,0xff,0x84,0x84,0x84,0xff,0xad,0xad,0xad,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xb0,0xb0,0xb0,0xff,0x4a,0x4a,0x4a,0xff,0xb3,0xb3,0xb3, + 0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96,0xff,0x9e,0x9e,0x9e,0xff,0x5c,0x5c,0x5c, + 0xff,0xb4,0xb4,0xb4,0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96,0xff,0x89,0x89,0x89, + 0xff,0x2a,0x2a,0x2a,0xff,0x9d,0x9d,0x9d,0xff,0xa8,0xa8,0xa8,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80,0xff,0xa0,0xa0,0xa0,0xff,0xac,0xac,0xab, + 0xff,0x7d,0x7d,0x7d,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xc0,0xc0,0xc0, + 0xff,0x56,0x56,0x56,0xff,0xc2,0xc2,0xc2,0xff,0xd2,0xd2,0xd2,0xff,0xce,0xce,0xce, + 0xff,0xc6,0xc6,0xc6,0xff,0x6e,0x6e,0x6e,0xff,0xc6,0xc6,0xc6,0xff,0x96,0x96,0x96, + 0xff,0xd6,0xd6,0xd6,0xff,0xc2,0xc2,0xc2,0xff,0xce,0xce,0xce,0xff,0x6a,0x6a,0x6a, + 0xff,0xa5,0xa5,0xa5,0xff,0x9e,0x9e,0x9e,0xff,0xd1,0xd1,0xd1,0xff,0xc2,0xc2,0xc2, + 0xff,0xce,0xce,0xce,0xff,0x6a,0x6a,0x6a,0xff,0xa5,0xa5,0xa5,0xff,0xc3,0xc3,0xc3, + 0xff,0xc6,0xc6,0xc6,0xff,0xc2,0xc2,0xc2,0xff,0xca,0xca,0xca,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0xcf,0xcf,0xcf,0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8, + 0xff,0x86,0x86,0x86,0xff,0xb2,0xb2,0xb2,0xff,0xa5,0xa5,0xa5,0xff,0xd6,0xd6,0xd6, + 0xff,0xce,0xce,0xce,0xff,0xd2,0xd2,0xd2,0xff,0x6e,0x6e,0x6e,0xff,0xc0,0xc0,0xc0, + 0xff,0xd1,0xd1,0xd1,0xff,0xc2,0xc2,0xc2,0xff,0xd2,0xd2,0xd2,0xff,0x86,0x86,0x86, + 0xff,0xc6,0xc6,0xc6,0xff,0xcb,0xcb,0xcb,0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8, + 0xff,0x7a,0x7a,0x7a,0xff,0x34,0x34,0x34,0xff,0xb0,0xb0,0xb0,0xff,0xaa,0xaa,0xaa, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80,0xef,0xa1,0xa1,0xa0, + 0xff,0xab,0xab,0xaa,0xff,0x8c,0x8c,0x8c,0xff,0xc8,0xc8,0xc8,0xff,0xce,0xce,0xce, + 0xff,0xb6,0xb6,0xb6,0xff,0xa7,0xa7,0xa7,0xff,0xb3,0xb3,0xb3,0xff,0xd1,0xd1,0xd1, + 0xff,0xc0,0xc0,0xc0,0xff,0xab,0xab,0xab,0xff,0x8f,0x8f,0x8f,0xff,0x86,0x86,0x86, + 0xff,0x7a,0x7a,0x7a,0xff,0xc3,0xc3,0xc3,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad, + 0xff,0xa7,0xa7,0xa7,0xff,0x6b,0x6b,0x6b,0xff,0x86,0x86,0x86,0xff,0xcb,0xcb,0xcb, + 0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xa7,0xa7,0xa7,0xff,0x69,0x69,0x69, + 0xff,0xa1,0xa1,0xa1,0xff,0xc3,0xc3,0xc3,0xff,0xad,0xad,0xad,0xff,0x9c,0x9c,0x9c, + 0xff,0xb3,0xb3,0xb3,0xff,0x67,0x67,0x67,0xff,0xcb,0xcb,0xcb,0xff,0xad,0xad,0xad, + 0xff,0xad,0xad,0xad,0xff,0xb4,0xb4,0xb4,0xff,0x69,0x69,0x69,0xff,0xa8,0xa8,0xa8, + 0xff,0xc0,0xc0,0xc0,0xff,0xbd,0xbd,0xbd,0xff,0xb7,0xb7,0xb7,0xff,0x92,0x92,0x92, + 0xff,0x7f,0x7f,0x7f,0xff,0xc3,0xc3,0xc3,0xff,0xad,0xad,0xad,0xff,0xa7,0xa7,0xa7, + 0xff,0xb4,0xb4,0xb4,0xff,0x80,0x80,0x80,0xff,0xc2,0xc2,0xc2,0xff,0xad,0xad,0xad, + 0xff,0xa5,0xa5,0xa5,0xff,0xa1,0xa1,0xa1,0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0, + 0xff,0xa8,0xa8,0xa8,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x2f,0x80,0x80,0x80, + 0xe9,0x98,0x98,0x98,0xff,0xb1,0xb1,0xb0,0xff,0x31,0x31,0x31,0xff,0xc3,0xc3,0xc3, + 0xff,0xad,0xad,0xad,0xff,0xb8,0xb8,0xb8,0xff,0x7a,0x7a,0x7a,0xff,0x80,0x80,0x80, + 0xff,0xb4,0xb4,0xb4,0xff,0xad,0xad,0xad,0xff,0xbc,0xbc,0xbc,0xff,0x6e,0x6e,0x6e, + 0xff,0x7e,0x7e,0x7e,0xff,0xa1,0xa1,0xa1,0xff,0xb2,0xb2,0xb2,0xff,0xad,0xad,0xad, + 0xff,0xba,0xba,0xba,0xff,0x56,0x56,0x56,0xff,0x84,0x84,0x84,0xff,0xa5,0xa5,0xa5, + 0xff,0xb2,0xb2,0xb2,0xff,0xad,0xad,0xad,0xff,0xba,0xba,0xba,0xff,0x53,0x53,0x53, + 0xff,0x98,0x98,0x98,0xff,0xb8,0xb8,0xb8,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad, + 0xff,0xaa,0xaa,0xaa,0xff,0x53,0x53,0x53,0xff,0xc3,0xc3,0xc3,0xff,0xb2,0xb2,0xb2, + 0xff,0xad,0xad,0xad,0xff,0xbf,0xbf,0xbf,0xff,0x53,0x53,0x53,0xff,0x9f,0x9f,0x9f, + 0xff,0xbd,0xbd,0xbd,0xff,0xad,0xad,0xad,0xff,0xb8,0xb8,0xb8,0xff,0x7a,0x7a,0x7a, + 0xff,0x71,0x71,0x71,0xff,0xac,0xac,0xac,0xff,0xc0,0xc0,0xc0,0xff,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0x65,0x65,0x65,0xff,0xc2,0xc2,0xc2,0xff,0xb2,0xb2,0xb2, + 0xff,0xad,0xad,0xad,0xff,0xba,0xba,0xba,0xff,0x53,0x53,0x53,0xff,0x52,0x52,0x52, + 0xff,0x9c,0x9c,0x9c,0xff,0xaf,0xaf,0xaf,0xff,0x84,0x84,0x84,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x50,0x50,0x50,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x1c,0x80,0x80,0x80,0xe9,0x96,0x96,0x95,0xff,0xb1,0xb1,0xb0,0xff,0x5d,0x5d,0x5d, + 0xff,0xb8,0xb8,0xb8,0xff,0xc2,0xc2,0xc2,0xff,0xda,0xda,0xda,0xff,0x9a,0x9a,0x9a, + 0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xc2,0xc2,0xc2,0xff,0xc2,0xc2,0xc2, + 0xff,0xa6,0xa6,0xa6,0xff,0x9e,0x9e,0x9e,0xff,0xb0,0xb0,0xb0,0xff,0xc2,0xc2,0xc2, + 0xff,0xc8,0xc8,0xc8,0xff,0xba,0xba,0xba,0xff,0x9c,0x9c,0x9c,0xff,0x9c,0x9c,0x9c, + 0xff,0xb8,0xb8,0xb8,0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8,0xff,0xaa,0xaa,0xaa, + 0xff,0xd0,0xd0,0xd0,0xff,0x8d,0x8d,0x8d,0xff,0xc4,0xc4,0xc4,0xff,0xc2,0xc2,0xc2, + 0xff,0xd2,0xd2,0xd2,0xff,0xaa,0xaa,0xaa,0xff,0x92,0x92,0x92,0xff,0xb8,0xb8,0xb8, + 0xff,0xc2,0xc2,0xc2,0xff,0xca,0xca,0xca,0xff,0xaa,0xaa,0xaa,0xff,0xb0,0xb0,0xb0, + 0xff,0xa5,0xa5,0xa5,0xff,0xc6,0xc6,0xc6,0xff,0xc2,0xc2,0xc2,0xff,0xda,0xda,0xda, + 0xff,0xaa,0xaa,0xaa,0xff,0x86,0x86,0x86,0xff,0xa8,0xa8,0xa8,0xff,0xce,0xce,0xce, + 0xff,0xd2,0xd2,0xd2,0xff,0xc2,0xc2,0xc2,0xff,0xb2,0xb2,0xb2,0xff,0xcb,0xcb,0xcb, + 0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8,0xff,0xaa,0xaa,0xaa,0xff,0x99,0x99,0x99, + 0xff,0x5e,0x5e,0x5e,0xff,0xaa,0xaa,0xaa,0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x2f,0x80,0x80,0x80,0xe9,0x98,0x98,0x98,0xff,0xb1,0xb1,0xb0, + 0xff,0x3f,0x3f,0x3f,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xa1,0xa1,0xa1, + 0xff,0x9e,0x9e,0x9e,0xff,0x65,0x65,0x65,0xff,0xcb,0xcb,0xcb,0xff,0x96,0x96,0x96, + 0xff,0x87,0x87,0x87,0xff,0x96,0x96,0x96,0xff,0x4d,0x4d,0x4d,0xff,0xb4,0xb4,0xb4, + 0xff,0xac,0xac,0xac,0xff,0x96,0x96,0x96,0xff,0x9b,0x9b,0x9b,0xff,0x6e,0x6e,0x6e, + 0xff,0x60,0x60,0x60,0xff,0xcb,0xcb,0xcb,0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96, + 0xff,0x9e,0x9e,0x9e,0xff,0x4d,0x4d,0x4d,0xff,0xc3,0xc3,0xc3,0xff,0x9c,0x9c,0x9c, + 0xff,0x96,0x96,0x96,0xff,0xaf,0xaf,0xaf,0xff,0x4a,0x4a,0x4a,0xff,0x84,0x84,0x84, + 0xff,0xac,0xac,0xac,0xff,0x96,0x96,0x96,0xff,0xa7,0xa7,0xa7,0xff,0x6e,0x6e,0x6e, + 0xff,0x60,0x60,0x60,0xff,0xbc,0xbc,0xbc,0xff,0x9c,0x9c,0x9c,0xff,0x96,0x96,0x96, + 0xff,0xaf,0xaf,0xaf,0xff,0x4a,0x4a,0x4a,0xff,0x81,0x81,0x81,0xff,0xad,0xad,0xad, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xb0,0xb0,0xb0,0xff,0x53,0x53,0x53, + 0xff,0xa7,0xa7,0xa7,0xff,0xac,0xac,0xac,0xff,0x96,0x96,0x96,0xff,0x9e,0x9e,0x9e, + 0xff,0x65,0x65,0x65,0xff,0x40,0x40,0x40,0xff,0x9c,0x9c,0x9c,0xff,0xaf,0xaf,0xaf, + 0xff,0x84,0x84,0x84,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x1c,0x80,0x80,0x80,0xe9,0x96,0x96,0x95, + 0xff,0xb1,0xb1,0xb0,0xff,0x7d,0x7d,0x7c,0xff,0xce,0xce,0xce,0xff,0xc2,0xc2,0xc2, + 0xff,0xd2,0xd2,0xd2,0xff,0x86,0x86,0x86,0xff,0xe2,0xe2,0xe2,0xff,0xd4,0xd4,0xd4, + 0xff,0xce,0xce,0xce,0xff,0xc8,0xc8,0xc8,0xff,0x6e,0x6e,0x6e,0xff,0xd6,0xd6,0xd6, + 0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce,0xff,0xce,0xce,0xce,0xff,0xaa,0xaa,0xaa, + 0xff,0x86,0x86,0x86,0xff,0xdc,0xdc,0xdc,0xff,0xd4,0xd4,0xd4,0xff,0xce,0xce,0xce, + 0xff,0xc6,0xc6,0xc6,0xff,0x6e,0x6e,0x6e,0xff,0xdc,0xdc,0xdc,0xff,0xd7,0xd7,0xd7, + 0xff,0xce,0xce,0xce,0xff,0xd1,0xd1,0xd1,0xff,0x7a,0x7a,0x7a,0xff,0xa8,0xa8,0xa8, + 0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce,0xff,0xce,0xce,0xce,0xff,0xaa,0xaa,0xaa, + 0xff,0x86,0x86,0x86,0xff,0xda,0xda,0xda,0xff,0xd7,0xd7,0xd7,0xff,0xce,0xce,0xce, + 0xff,0xd1,0xd1,0xd1,0xff,0x6e,0x6e,0x6e,0xff,0xc8,0xc8,0xc8,0xff,0xda,0xda,0xda, + 0xff,0xd6,0xd6,0xd6,0xff,0xce,0xce,0xce,0xff,0xd2,0xd2,0xd2,0xff,0x6e,0x6e,0x6e, + 0xff,0xc8,0xc8,0xc8,0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce,0xff,0xce,0xce,0xce, + 0xff,0x92,0x92,0x92,0xff,0x9a,0x9a,0x9a,0xff,0x25,0x25,0x25,0xff,0xc0,0xc0,0xc0, + 0xff,0xaa,0xaa,0xaa,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x4f,0x80,0x80,0x80, + 0xff,0xd3,0xd3,0xd3,0xff,0xcc,0xcc,0xcb,0xff,0xe0,0xe0,0xe0,0xff,0xdc,0xdc,0xdc, + 0xff,0xdc,0xdc,0xdc,0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee,0xff,0xdc,0xdc,0xdc, + 0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf,0xff,0xc3,0xc3,0xc3,0xff,0xee,0xee,0xee, + 0xff,0xea,0xea,0xea,0xff,0xd0,0xd0,0xd0,0xff,0xca,0xca,0xca,0xff,0xd3,0xd3,0xd3, + 0xff,0xca,0xca,0xca,0xff,0xee,0xee,0xee,0xff,0xdc,0xdc,0xdc,0xff,0xca,0xca,0xca, + 0xff,0xd0,0xd0,0xd0,0xff,0xc3,0xc3,0xc3,0xff,0xee,0xee,0xee,0xff,0xe5,0xe5,0xe5, + 0xff,0xca,0xca,0xca,0xff,0xcc,0xcc,0xcc,0xff,0xc7,0xc7,0xc7,0xff,0xda,0xda,0xda, + 0xff,0xea,0xea,0xea,0xff,0xd0,0xd0,0xd0,0xff,0xca,0xca,0xca,0xff,0xd3,0xd3,0xd3, + 0xff,0xca,0xca,0xca,0xff,0xee,0xee,0xee,0xff,0xe5,0xe5,0xe5,0xff,0xca,0xca,0xca, + 0xff,0xcc,0xcc,0xcc,0xff,0xc1,0xc1,0xc1,0xff,0xe8,0xe8,0xe8,0xff,0xee,0xee,0xee, + 0xff,0xe2,0xe2,0xe2,0xff,0xca,0xca,0xca,0xff,0xcd,0xcd,0xcd,0xff,0xc1,0xc1,0xc1, + 0xff,0xe8,0xe8,0xe8,0xff,0xea,0xea,0xea,0xff,0xcf,0xcf,0xcf,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd2,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x15,0x15,0x15, + 0xff,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x6e,0x6e,0x6e,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x1a,0x0,0xff,0x2,0xbf,0x0,0xff,0x7,0x97,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x14,0x18,0xe,0xff,0x94,0xb5,0x6c,0xff,0x2,0xa9,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x15,0x15,0x15, + 0xff,0x90,0x90,0x8f,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95, + 0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95, + 0xff,0x78,0x78,0x78,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x8,0x8,0x8,0xff,0x60,0x60,0x60,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x80,0x80,0x80, + 0xff,0x78,0x78,0x78,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x38,0x38,0x38, + 0xff,0x80,0x80,0x80,0xff,0x7c,0x7c,0x7b,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x5c,0x5c,0x5b,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xaa,0xaa,0xaa,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x9c,0x9c,0x9c,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x16,0x16,0x16,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c, + 0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c, + 0xff,0x34,0x34,0x34,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x6,0x6,0x6, + 0xff,0x4d,0x4d,0x4d,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c, + 0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x61,0x61,0x61,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1e,0x1e,0x1e,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x2b,0x2b,0x2b, + 0xff,0x4a,0x4a,0x4a,0xff,0x2b,0x2b,0x2b,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x37,0x37,0x37, + 0xff,0x4a,0x4a,0x4a,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x17,0x17,0x17,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e,0x3f,0x7e,0x7e,0x7e, + 0xff,0xfe,0xfe,0xfe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x94,0x94,0x94,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x1e,0x1e,0x1e,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x18,0x18,0x18,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x6b,0x7b,0x4f,0x64,0x64,0x75, + 0xff,0x6d,0x6d,0xa7,0xff,0x37,0x37,0x8e,0xff,0x1c,0x1b,0x9f,0xff,0x1c,0x1b,0xae, + 0xff,0x1d,0x1d,0xa2,0xff,0x39,0x39,0x92,0xff,0x69,0x69,0x7b,0xff,0x80,0x80,0x81, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb5,0xb5,0xab,0xff,0x96,0x96,0x70,0xff,0x84,0x85,0x3c,0xff,0x6a,0x6b,0x1, + 0xff,0x70,0x71,0x1,0xff,0x70,0x71,0x1,0xff,0x74,0x75,0x3,0xff,0x88,0x89,0x34, + 0xff,0xa0,0xa0,0x87,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7a,0x7a,0x90,0x8d,0x2a,0x2a,0x91,0xff,0x19,0x17,0xe2, + 0xff,0x9,0x6,0xf4,0xff,0x7,0x4,0xf3,0xff,0xb,0x9,0xf3,0xff,0x7,0x4,0xf3, + 0xff,0x8,0x6,0xf3,0xff,0xa,0x7,0xf4,0xff,0x8,0x7,0xc6,0xff,0x3a,0x3a,0x7f, + 0xff,0x88,0x88,0x8a,0xff,0xbe,0xbe,0xbe,0xff,0xb9,0xb9,0xb5,0xff,0x94,0x94,0x5d, + 0xff,0x78,0x79,0x6,0xff,0x85,0x86,0x0,0xff,0x8d,0x8d,0x0,0xff,0x88,0x89,0x0, + 0xff,0x88,0x89,0x0,0xff,0x88,0x89,0x0,0xff,0x88,0x89,0x0,0xff,0x85,0x86,0x0, + 0xff,0x7b,0x7d,0x0,0xff,0x7b,0x7b,0x20,0xff,0xb6,0xb6,0xaa,0xff,0x9f,0x9f,0x9f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xc7, + 0x15,0x77,0x76,0xb3,0xaf,0x4e,0x4d,0xe0,0xff,0x2d,0x2b,0xf7,0xff,0x2b,0x29,0xf7, + 0xff,0x34,0x32,0xf9,0xff,0x3a,0x39,0xfb,0xff,0x40,0x3f,0xfc,0xff,0x3e,0x3d,0xfc, + 0xff,0x35,0x33,0xfa,0xff,0x1b,0x19,0xf5,0xff,0x8,0x4,0xf3,0xff,0x7,0x5,0xde, + 0xff,0x32,0x32,0x92,0xff,0xb5,0xb5,0xad,0xff,0x94,0x94,0x28,0xff,0x95,0x94,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0xaa,0xa9,0x1,0xff,0xb0,0xb1,0x1,0xff,0xb4,0xb4,0x1, + 0xff,0xb6,0xb7,0x1,0xff,0xb6,0xb6,0x1,0xff,0xb6,0xb6,0x1,0xff,0xb0,0xb0,0x1, + 0xff,0x9e,0x9e,0x0,0xff,0x84,0x85,0x0,0xff,0x7e,0x7f,0x10,0xff,0x82,0x83,0x5c, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xe3,0x2f,0x79,0x79,0xe9, + 0xe9,0x66,0x66,0xf7,0xff,0x47,0x46,0xfd,0xff,0x46,0x44,0xfd,0xff,0x49,0x48,0xfd, + 0xff,0x4b,0x4a,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x55,0x54,0xfd,0xff,0x53,0x52,0xfd, + 0xff,0x50,0x4f,0xfd,0xff,0x47,0x46,0xfd,0xff,0x37,0x36,0xfa,0xff,0x1f,0x1c,0xf5, + 0xff,0xf,0xd,0xef,0xff,0x44,0x44,0x68,0xff,0xb4,0xb4,0x0,0xff,0xb4,0xb4,0x2, + 0xff,0xb2,0xb2,0x1,0xff,0xb9,0xba,0x1,0xff,0xc0,0xc2,0x0,0xff,0xcc,0xcc,0x0, + 0xff,0xd1,0xd1,0x0,0xff,0xce,0xce,0x0,0xff,0xc7,0xc8,0x0,0xff,0xbe,0xbf,0x0, + 0xff,0xb4,0xb4,0x1,0xff,0xa4,0xa3,0x0,0xff,0x87,0x88,0x0,0xff,0x7c,0x7e,0x0, + 0xff,0x4b,0x4b,0x1,0xff,0x43,0x43,0x43,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x67,0x67,0x67,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0xf0,0xe9,0x5f,0x5e,0xfc, + 0xff,0x55,0x54,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfd,0xff,0x5c,0x5c,0xfc, + 0xff,0x61,0x61,0xfc,0xff,0x67,0x67,0xfb,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfa, + 0xff,0x67,0x67,0xfb,0xff,0x59,0x58,0xfc,0xff,0x4d,0x4d,0xfd,0xff,0x3c,0x3c,0xfb, + 0xff,0x2e,0x2b,0xf7,0xff,0x10,0xe,0xe6,0xff,0x85,0x86,0x25,0xff,0xb6,0xb6,0x1, + 0xff,0xb9,0xb9,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd9,0xd9,0x0,0xff,0xdb,0xda,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xda,0x0,0xff,0xdb,0xda,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xc7,0xc7,0x0,0xff,0xb6,0xb7,0x0,0xff,0xaa,0xa9,0x1,0xff,0x8e,0x8e,0x0, + 0xff,0x78,0x79,0x0,0xff,0x8c,0x8c,0x60,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb5,0xb5,0xb5,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x94,0x6b,0x6b,0xf9,0xff,0x54,0x53,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x53,0x52,0xfe,0xff,0x63,0x63,0xfb,0xff,0x6c,0x6c,0xf9, + 0xff,0x74,0x74,0xf6,0xff,0x7c,0x7c,0xf4,0xff,0x7e,0x7e,0xe9,0xff,0x78,0x78,0xf6, + 0xff,0x6c,0x6c,0xf9,0xff,0x68,0x68,0xfb,0xff,0x5d,0x5c,0xfc,0xff,0x4d,0x4d,0xfd, + 0xff,0x3f,0x3f,0xfc,0xff,0x1b,0x18,0xf5,0xff,0x38,0x37,0x90,0xff,0xc2,0xc2,0x4, + 0xff,0xd1,0xd1,0x0,0xff,0xd4,0xd3,0x0,0xff,0xdb,0xdb,0x2,0xff,0xe5,0xe4,0x7, + 0xff,0xed,0xec,0xb,0xff,0xee,0xee,0xc,0xff,0xed,0xec,0xc,0xff,0xe0,0xe0,0x6, + 0xff,0xcb,0xcb,0x0,0xff,0xbd,0xbd,0x0,0xff,0xb3,0xb3,0x2,0xff,0xa7,0xa6,0x0, + 0xff,0x8a,0x8a,0x0,0xff,0x6b,0x6b,0x11,0xff,0xb7,0xb7,0xb5,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xf3,0xff,0x65,0x65,0xfb,0xff,0x53,0x52,0xfd, + 0xff,0x48,0x48,0xfd,0xff,0x4b,0x4a,0xfd,0xff,0x5c,0x5c,0xe6,0xff,0x83,0x83,0xf2, + 0xff,0x6a,0x62,0xeb,0xff,0x24,0x18,0xaa,0xff,0xa,0x5,0x83,0xff,0x21,0x20,0x90, + 0xff,0x68,0x69,0xdb,0xff,0x71,0x71,0xf8,0xff,0x66,0x66,0xfb,0xff,0x55,0x54,0xfd, + 0xff,0x49,0x48,0xfd,0xff,0x2d,0x2b,0xf7,0xff,0x5,0x2,0xe7,0xff,0x88,0x88,0x43, + 0xff,0xc6,0xc5,0x0,0xff,0xcc,0xcc,0x0,0xff,0xd7,0xd9,0x10,0xff,0x7e,0x73,0x73, + 0xff,0x23,0x1f,0xc4,0xff,0x11,0x1,0xaf,0xff,0x40,0x3d,0x87,0xff,0xcc,0xcb,0x23, + 0xff,0xe7,0xe6,0x9,0xff,0xd4,0xd4,0x0,0xff,0xb8,0xb9,0x0,0xff,0xaf,0xaf,0x1, + 0xff,0x9d,0x9c,0x0,0xff,0x73,0x74,0x0,0xff,0x7d,0x7d,0x63,0xff,0x93,0x93,0x93, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0xa4,0xa4,0xa3, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x82,0x82,0xc7,0xf,0x73,0x73,0xf7,0xff,0x63,0x62,0xfb,0xff,0x4e,0x4d,0xfd, + 0xff,0x3e,0x3d,0xfc,0xff,0x32,0x31,0xf4,0xff,0x44,0x44,0xbd,0xff,0x7f,0x78,0xeb, + 0xff,0x30,0xe,0xe5,0xff,0x20,0xe,0xc0,0xff,0x26,0x13,0xcd,0xff,0x1a,0x7,0xc1, + 0xff,0xf,0x0,0xa2,0xff,0x53,0x52,0xbf,0xff,0x76,0x76,0xf5,0xff,0x65,0x64,0xfa, + 0xff,0x51,0x50,0xfd,0xff,0x3c,0x3c,0xfb,0xff,0x9,0x6,0xf3,0xff,0xe,0xd,0xb4, + 0xff,0x70,0x71,0xd,0xff,0x8b,0x90,0x17,0xff,0x74,0x67,0xbe,0xff,0x31,0xf,0xe3, + 0xff,0x23,0xe,0xcd,0xff,0x26,0x13,0xcd,0xff,0x1b,0x7,0xc8,0xff,0x1d,0x12,0xa1, + 0xff,0xb1,0xbb,0x30,0xff,0xe1,0xe0,0x5,0xff,0xcd,0xcd,0x0,0xff,0xb4,0xb4,0x1, + 0xff,0xa5,0xa4,0x0,0xff,0x81,0x82,0x0,0xff,0x5b,0x5b,0x1f,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x4c,0x4c,0x4c,0xff,0x80,0x80,0x80,0xff,0xb0,0xb0,0xb0,0xff,0x8c,0x8c,0x8c, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xf1,0x3f,0x6e,0x6e,0xf9,0xff,0x5b,0x5a,0xfc,0xff,0x45,0x44,0xfd, + 0xff,0x35,0x33,0xfa,0xff,0x25,0x24,0xe7,0xff,0x39,0x38,0x9c,0xff,0x82,0x6d,0xf7, + 0xff,0x6a,0x56,0xee,0xff,0x7e,0x69,0xf9,0xff,0x89,0x73,0xff,0xff,0x6a,0x56,0xee, + 0xff,0x39,0x26,0xd5,0xff,0x13,0xb,0x9a,0xff,0x85,0x85,0xec,0xff,0x72,0x72,0xf7, + 0xff,0x59,0x58,0xfd,0xff,0x47,0x46,0xfd,0xff,0x18,0x14,0xf4,0xff,0x4,0x2,0xdd, + 0xff,0x50,0x51,0x1e,0xff,0x65,0x67,0x98,0xff,0x7a,0x65,0xf3,0xff,0x6e,0x59,0xf0, + 0xff,0x7e,0x69,0xf9,0xff,0x89,0x73,0xff,0xff,0x6a,0x56,0xee,0xff,0x30,0x1c,0xd1, + 0xff,0x1d,0x19,0x95,0xff,0xdf,0xde,0x13,0xff,0xd8,0xd8,0x0,0xff,0xbe,0xbf,0x1, + 0xff,0xac,0xab,0x1,0xff,0x88,0x89,0x0,0xff,0x5d,0x5d,0x2,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x10,0x10,0x10,0xff,0xaa,0xaa,0xaa, + 0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x3f,0x6b,0x6b,0xfa,0xff,0x55,0x54,0xfd,0xff,0x46,0x44,0xfd, + 0xff,0x2e,0x2c,0xf8,0xff,0x8,0x7,0xcb,0xff,0x3c,0x36,0xa9,0xff,0xad,0x99,0xff, + 0xff,0x87,0x71,0xff,0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x8c,0x76,0xff, + 0xff,0x7e,0x68,0xf9,0xff,0x25,0x15,0xc0,0xff,0x69,0x6c,0xd4,0xff,0x7c,0x7c,0xf4, + 0xff,0x65,0x65,0xfb,0xff,0x50,0x50,0xfc,0xff,0x25,0x23,0xf6,0xff,0x2,0x0,0xdd, + 0xff,0x53,0x54,0x1f,0xff,0x51,0x42,0xca,0xff,0xa3,0x8e,0xff,0xff,0x88,0x71,0xff, + 0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x8c,0x76,0xff,0xff,0x71,0x5c,0xf2, + 0xff,0x19,0x9,0xb7,0xff,0xc7,0xcc,0x38,0xff,0xdc,0xdb,0x1,0xff,0xc4,0xc5,0x0, + 0xff,0xae,0xad,0x1,0xff,0x88,0x89,0x0,0xff,0x5c,0x5c,0x2,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x18,0x18,0x18,0xff,0x24,0x24,0x24, + 0xff,0xaa,0xaa,0xaa,0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x71,0x71,0xf7,0x3f,0x6c,0x6c,0xf9,0xff,0x53,0x52,0xfd,0xff,0x45,0x44,0xfd, + 0xff,0x2e,0x2c,0xf8,0xff,0x5,0x3,0xcd,0xff,0x1c,0x17,0x97,0xff,0xcb,0xba,0xff, + 0xff,0x92,0x7b,0xff,0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x93,0x7d,0xff, + 0xff,0x8f,0x78,0xff,0xff,0x4c,0x39,0xde,0xff,0x6c,0x70,0xd8,0xff,0x76,0x76,0xf6, + 0xff,0x67,0x67,0xfb,0xff,0x59,0x58,0xfd,0xff,0x2a,0x29,0xf8,0xff,0x3,0x1,0xdd, + 0xff,0x5c,0x5d,0x24,0xff,0x2f,0x2a,0x9f,0xff,0xb9,0xa6,0xff,0xff,0x97,0x81,0xff, + 0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x93,0x7d,0xff,0xff,0x8d,0x76,0xff, + 0xff,0x3c,0x28,0xd1,0xff,0xc8,0xc9,0x3c,0xff,0xe0,0xe0,0x4,0xff,0xc5,0xc5,0x0, + 0xff,0xab,0xab,0x1,0xff,0x87,0x87,0x0,0xff,0x5b,0x5b,0x2,0xff,0x7e,0x7e,0x7e, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x20,0x20,0x20, + 0xff,0x15,0x15,0x15,0xff,0xaa,0xaa,0xaa,0xff,0x87,0x87,0x87,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xf1,0x3f,0x6d,0x6d,0xf9,0xff,0x58,0x57,0xfd,0xff,0x4f,0x4e,0xfd, + 0xff,0x37,0x35,0xfa,0xff,0xc,0xa,0xe9,0xff,0x8,0x7,0x92,0xff,0x80,0x6f,0xe2, + 0xff,0xc9,0xb7,0xff,0xff,0xb0,0x9d,0xff,0xff,0x9d,0x89,0xff,0xff,0xa6,0x92,0xff, + 0xff,0xab,0x97,0xff,0xff,0x72,0x64,0xe1,0xff,0x83,0x83,0xe5,0xff,0x6f,0x6f,0xf8, + 0xff,0x63,0x63,0xfb,0xff,0x58,0x58,0xfc,0xff,0x2b,0x2a,0xf8,0xff,0x2,0x0,0xdd, + 0xff,0x63,0x65,0x27,0xff,0x33,0x2e,0x5b,0xff,0x94,0x83,0xe9,0xff,0xc5,0xb3,0xff, + 0xff,0xb0,0x9d,0xff,0xff,0x9d,0x89,0xff,0xff,0xa6,0x92,0xff,0xff,0xab,0x97,0xff, + 0xff,0x62,0x5f,0xd5,0xff,0xd6,0xd6,0xf,0xff,0xd9,0xd8,0x0,0xff,0xbd,0xbe,0x0, + 0xff,0xa5,0xa4,0x0,0xff,0x84,0x85,0x0,0xff,0x63,0x64,0x24,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xa4,0xa4,0xa4,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x78,0x78,0x78, + 0xff,0x1f,0x1f,0x1f,0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa,0xff,0x56,0x56,0x56, + 0xdf,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x76,0x76,0xf2,0xff,0x5f,0x5e,0xfb,0xff,0x58,0x57,0xfd, + 0xff,0x41,0x40,0xfc,0xff,0x20,0x1e,0xf5,0xff,0x7,0x5,0xdc,0xff,0x19,0x16,0x73, + 0xff,0x73,0x66,0xcd,0xff,0xc5,0xb3,0xff,0xff,0xc7,0xb5,0xff,0xff,0xbf,0xad,0xff, + 0xff,0x98,0x8e,0xe5,0xff,0x6a,0x6a,0xb0,0xff,0x7f,0x7f,0xf4,0xff,0x61,0x60,0xfc, + 0xff,0x5b,0x5b,0xfc,0xff,0x50,0x4f,0xfd,0xff,0x18,0x15,0xf5,0xff,0x8,0x7,0xce, + 0xff,0x77,0x79,0x1d,0xff,0x58,0x59,0xe,0xff,0x31,0x2b,0x6f,0xff,0x85,0x74,0xe2, + 0xff,0xc5,0xb3,0xff,0xff,0xc7,0xb5,0xff,0xff,0xbf,0xad,0xff,0xff,0x8f,0x82,0xe8, + 0xff,0x91,0x90,0x61,0xff,0xcc,0xcd,0x0,0xff,0xc6,0xc6,0x0,0xff,0xb6,0xb6,0x1, + 0xff,0xa0,0x9f,0x0,0xff,0x7c,0x7c,0x0,0xff,0x95,0x96,0x76,0xff,0xbe,0xbe,0xbe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x30,0x30,0x30,0xff,0x10,0x10,0x10,0xff,0x60,0x60,0x60, + 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf4,0xc6,0x65,0x65,0xfb,0xff,0x68,0x68,0xfb, + 0xff,0x4d,0x4c,0xfc,0xff,0x3c,0x3b,0xfb,0xff,0x11,0xf,0xf3,0xff,0x4,0x3,0xc9, + 0xff,0x16,0x15,0x69,0xff,0x19,0x15,0x66,0xff,0x33,0x2b,0x79,0xff,0x33,0x2e,0x7b, + 0xff,0x2c,0x30,0x5a,0xff,0x4a,0x4a,0xbb,0xff,0x58,0x57,0xfd,0xff,0x53,0x52,0xfd, + 0xff,0x51,0x50,0xfd,0xff,0x43,0x42,0xfc,0xff,0x9,0x6,0xf3,0xff,0x3f,0x3f,0x85, + 0xff,0x8d,0x8e,0x9,0xff,0x7a,0x7b,0x0,0xff,0x5a,0x5c,0x10,0xff,0x2d,0x2b,0x3d, + 0xff,0x16,0x13,0x6c,0xff,0x2e,0x26,0x87,0xff,0x3a,0x2d,0x7e,0xff,0x73,0x72,0x36, + 0xff,0xaf,0xaf,0x0,0xff,0xbb,0xbc,0x1,0xff,0xb6,0xb6,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xa0,0x9f,0x0,0xff,0x7e,0x7f,0x15,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xcf,0xcf,0xcf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0,0xff,0x80,0x80,0x80, + 0xff,0xb0,0xb0,0xb0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xe6,0x55,0x73,0x73,0xf7,0xff,0x6c,0x6c,0xfa, + 0xff,0x5c,0x5c,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x2f,0x2d,0xf8,0xff,0x1b,0x19,0xf4, + 0xff,0xd,0xc,0xe7,0xff,0x12,0x12,0xc4,0xff,0x12,0x11,0xa3,0xff,0x17,0x17,0xab, + 0xff,0x1c,0x1b,0xba,0xff,0x2d,0x2c,0xda,0xff,0x40,0x3f,0xfb,0xff,0x46,0x45,0xfc, + 0xff,0x48,0x47,0xfd,0xff,0x23,0x22,0xf6,0xff,0xd,0xa,0xe5,0xff,0xa4,0xa6,0x1b, + 0xff,0xae,0xae,0x0,0xff,0x86,0x87,0x0,0xff,0x7a,0x7b,0x0,0xff,0x6a,0x6a,0x0, + 0xff,0x63,0x63,0x0,0xff,0x6c,0x6c,0x0,0xff,0x78,0x79,0x0,0xff,0x89,0x89,0x0, + 0xff,0x9f,0x9e,0x0,0xff,0xac,0xac,0x1,0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb6,0x1, + 0xff,0x9c,0x9b,0x0,0xff,0x51,0x52,0x2e,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x69,0x69,0xb4,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x63,0x63,0x63,0xff,0x2c,0x2c,0x2c,0xff,0x40,0x40,0x40, + 0xff,0x30,0x30,0x30,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0xf2,0xa9,0x75,0x75,0xf6, + 0xff,0x63,0x63,0xfb,0xff,0x4e,0x4d,0xfd,0xff,0x40,0x40,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x30,0x2e,0xf8,0xff,0x1e,0x1c,0xf5,0xff,0x10,0xd,0xf4,0xff,0x17,0x14,0xf5, + 0xff,0x27,0x25,0xf6,0xff,0x34,0x33,0xf9,0xff,0x3f,0x3f,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0xf,0xd,0xf3,0xff,0x4c,0x4c,0x89,0xff,0xbf,0xc1,0x0, + 0xff,0xbe,0xc0,0x0,0xff,0xb8,0xb9,0x0,0xff,0xb2,0xb2,0x1,0xff,0xa5,0xa5,0x1, + 0xff,0x93,0x93,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8d,0x8d,0x0,0xff,0xa5,0xa4,0x0, + 0xff,0xb2,0xb2,0x1,0xff,0xb5,0xb5,0x1,0xff,0xba,0xbb,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xc7,0xc6,0x3,0xff,0x17,0x17,0x7b,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xcd,0xcd,0xcd,0xff,0xcf,0xcf,0xcf,0xff,0xab,0xab,0xaa,0xff,0x96,0x96,0x95, + 0xff,0x96,0x96,0x95,0xff,0xe,0xe,0xe,0xff,0xa0,0xa0,0xa0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xe3,0x2f,0x83,0x83,0xf2, + 0xff,0x67,0x67,0xfb,0xff,0x4f,0x4e,0xfd,0xff,0x46,0x45,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x43,0x43,0xfc,0xff,0x43,0x43,0xfc,0xff,0x41,0x41,0xfc,0xff,0x40,0x40,0xfd, + 0xff,0x3e,0x3e,0xfc,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd,0xff,0x41,0x41,0xfc, + 0xff,0x38,0x36,0xfa,0xff,0x1a,0x17,0xf4,0xff,0x98,0x98,0x4e,0xff,0xdb,0xdb,0x4, + 0xff,0xd8,0xd7,0x0,0xff,0xca,0xcb,0x0,0xff,0xc5,0xc6,0x0,0xff,0xbd,0xbe,0x0, + 0xff,0xb9,0xba,0x0,0xff,0xb5,0xb6,0x1,0xff,0xb5,0xb6,0x1,0xff,0xb6,0xb7,0x1, + 0xff,0xb8,0xb9,0x0,0xff,0xc7,0xc7,0x0,0xff,0xd7,0xd6,0x1,0xff,0xe7,0xe6,0x8, + 0xff,0xa2,0xa2,0x3b,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe9,0xe9,0xe9,0xff,0xc4,0xc4,0xc3,0xff,0xbc,0xbc,0xbc,0xff,0xac,0xac,0xab, + 0xff,0x9c,0x9c,0x9c,0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xdc,0x54,0x78,0x78,0xf5, + 0xff,0x63,0x63,0xfb,0xff,0x52,0x51,0xfd,0xff,0x42,0x42,0xfc,0xff,0x46,0x46,0xfc, + 0xff,0x4d,0x4d,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x51,0x50,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x51,0x50,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x46,0x45,0xfc,0xff,0x40,0x40,0xfc, + 0xff,0x3c,0x3b,0xfb,0xff,0x25,0x23,0xf0,0xff,0x1e,0x1e,0x90,0xff,0xdc,0xdc,0x1e, + 0xff,0xea,0xea,0xb,0xff,0xdc,0xdb,0x2,0xff,0xd6,0xd6,0x0,0xff,0xd4,0xd4,0x0, + 0xff,0xca,0xcb,0x0,0xff,0xc8,0xc8,0x0,0xff,0xca,0xcb,0x0,0xff,0xce,0xcf,0x0, + 0xff,0xd7,0xd6,0x0,0xff,0xe2,0xe2,0x6,0xff,0xf3,0xf3,0x10,0xff,0xb9,0xb9,0x31, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe2,0xe2,0xe2,0xff,0xd0,0xd0,0xcf,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xab,0xab,0xaa,0xff,0x5c,0x5c,0x5c,0xff,0x70,0x70,0x70,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf1,0x9f,0x6d,0x6d,0xf9, + 0xff,0x57,0x57,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x4d,0x4c,0xfd,0xff,0x58,0x58,0xfd, + 0xff,0x62,0x61,0xfb,0xff,0x67,0x66,0xfb,0xff,0x65,0x65,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x5f,0x5f,0xfc,0xff,0x57,0x56,0xfd,0xff,0x52,0x51,0xfd,0xff,0x4a,0x4a,0xfd, + 0xff,0x41,0x41,0xfc,0xff,0x2f,0x2d,0xf8,0xff,0xd,0xd,0xa3,0xff,0x0,0x0,0x95, + 0xff,0x5c,0x5c,0x63,0xff,0xb9,0xb9,0x32,0xff,0xed,0xec,0xc,0xff,0xe5,0xe4,0x7, + 0xff,0xe2,0xe1,0x5,0xff,0xe0,0xe0,0x4,0xff,0xe3,0xe3,0x6,0xff,0xeb,0xeb,0xa, + 0xff,0xf1,0xf1,0xe,0xff,0xb8,0xb8,0x31,0xff,0x52,0x52,0x68,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc5,0xc5,0xc5,0xff,0xf2,0xf2,0xf2,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xcc,0xcc,0xcb,0xff,0x5f,0x5f,0x5f,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x1c,0x80,0x80,0xf3,0xff,0x5f,0x5e,0xfc, + 0xff,0x52,0x51,0xfd,0xff,0x46,0x45,0xfc,0xff,0x53,0x52,0xfd,0xff,0x5d,0x5d,0xfc, + 0xff,0x6a,0x6a,0xf9,0xff,0x79,0x79,0xf5,0xff,0x7c,0x7c,0xf5,0xff,0x79,0x79,0xf5, + 0xff,0x6e,0x6e,0xf9,0xff,0x65,0x64,0xfb,0xff,0x5c,0x5b,0xfc,0xff,0x48,0x48,0xfd, + 0xff,0x3e,0x3e,0xfc,0xff,0x32,0x31,0xf9,0xff,0x1e,0x1e,0xc0,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x52,0x52,0x68, + 0xff,0x52,0x52,0x68,0xff,0x52,0x52,0x68,0xff,0x52,0x52,0x68,0xff,0x52,0x52,0x68, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xca,0xca,0xca,0xff,0xf3,0xf3,0xf3,0xff,0xfe,0xfe,0xfe, + 0xff,0xe9,0xe9,0xe9,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xe6,0xaa,0x76,0x76,0xf6,0xff,0x55,0x54,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x41,0x41,0xfc,0xff,0x50,0x4f,0xfc,0xff,0x75,0x75,0xf6, + 0xff,0x7e,0x80,0xe9,0xff,0x54,0x53,0xb7,0xff,0x32,0x33,0x87,0xff,0x47,0x49,0x99, + 0xff,0x72,0x75,0xc5,0xff,0x7a,0x7a,0xf4,0xff,0x67,0x67,0xfb,0xff,0x57,0x57,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x2f,0x2e,0xf8,0xff,0x2d,0x2c,0xd7,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa8,0xa8,0xa8,0xff,0x90,0x90,0x90, + 0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x83,0x83,0xd5,0x2f,0x80,0x80,0xf3,0xff,0x64,0x63,0xfa,0xff,0x50,0x4f,0xfd, + 0xff,0x3f,0x3e,0xfd,0xff,0x3c,0x3b,0xfc,0xff,0x66,0x66,0xe3,0xff,0x86,0x8a,0xcd, + 0xff,0x32,0x17,0xdf,0xff,0x20,0xe,0xc0,0xff,0x26,0x13,0xcd,0xff,0x19,0x7,0xc1, + 0xff,0x14,0x8,0x9e,0xff,0x62,0x64,0xbc,0xff,0x7e,0x7e,0xf2,0xff,0x61,0x61,0xfb, + 0xff,0x47,0x47,0xfd,0xff,0x31,0x30,0xf8,0xff,0x2c,0x2a,0xdf,0xff,0x4,0x4,0x8b, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x63,0x63,0x63,0xff,0x2c,0x2c,0x2c,0xff,0x40,0x40,0x40, + 0xff,0x24,0x24,0x24,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xf1,0x54,0x78,0x78,0xf6,0xff,0x60,0x60,0xfb,0xff,0x4f,0x4e,0xfd, + 0xff,0x3a,0x39,0xfb,0xff,0x33,0x31,0xf9,0xff,0x79,0x81,0xbc,0xff,0x7e,0x6e,0xf5, + 0xff,0x6a,0x56,0xee,0xff,0x7e,0x69,0xf9,0xff,0x89,0x73,0xff,0xff,0x6a,0x56,0xee, + 0xff,0x39,0x26,0xd5,0xff,0x1d,0x18,0x9d,0xff,0x86,0x86,0xea,0xff,0x6f,0x6f,0xf8, + 0xff,0x55,0x54,0xfd,0xff,0x38,0x37,0xfb,0xff,0x2e,0x2d,0xf6,0xff,0x35,0x35,0x98, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xcd,0xcd,0xcd,0xff,0xcf,0xcf,0xcf,0xff,0xa5,0xa5,0xa5,0xff,0x96,0x96,0x95, + 0xff,0x8a,0x8a,0x8a,0xff,0xe,0xe,0xe,0xff,0xa0,0xa0,0xa0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x7f,0x70,0x70,0xf8,0xff,0x5d,0x5c,0xfc,0xff,0x50,0x4f,0xfd, + 0xff,0x2c,0x2a,0xf8,0xff,0x24,0x22,0xeb,0xff,0x60,0x60,0xba,0xff,0xad,0x99,0xff, + 0xff,0x87,0x71,0xff,0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x8d,0x77,0xff, + 0xff,0x7e,0x68,0xf9,0xff,0x25,0x15,0xc0,0xff,0x70,0x76,0xd6,0xff,0x76,0x75,0xf6, + 0xff,0x5c,0x5c,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x2c,0x2a,0xf7,0xff,0x3d,0x3d,0xc9, + 0xff,0x5,0x5,0x8a,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe9,0xe9,0xe9,0xff,0xcf,0xcf,0xcf,0xff,0xc1,0xc1,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x9c,0x9c,0x9c,0xff,0x55,0x55,0x55,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x7f,0x6d,0x6d,0xfa,0xff,0x61,0x60,0xfb,0xff,0x4f,0x4e,0xfd, + 0xff,0x20,0x1d,0xf7,0xff,0xc,0xa,0xda,0xff,0x23,0x1d,0x8f,0xff,0xcb,0xba,0xff, + 0xff,0x93,0x7e,0xff,0xff,0x88,0x72,0xff,0xff,0x90,0x7a,0xff,0xff,0x94,0x7e,0xff, + 0xff,0x90,0x7a,0xff,0xff,0x4d,0x39,0xe1,0xff,0x65,0x63,0xd4,0xff,0x77,0x77,0xf7, + 0xff,0x5d,0x5d,0xfc,0xff,0x41,0x40,0xfc,0xff,0x2f,0x2e,0xf9,0xff,0x33,0x33,0xb6, + 0xff,0x7,0x7,0x88,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x7,0x7,0x88, + 0xff,0x1c,0x1c,0x64,0xff,0x15,0x15,0x70,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe2,0xe2,0xe2,0xff,0xd4,0xd4,0xd4,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xa6,0xa6,0xa5,0xff,0x4e,0x4e,0x4e,0xff,0x70,0x70,0x70,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x5f,0x6c,0x6c,0xfa,0xff,0x62,0x61,0xfb,0xff,0x4d,0x4c,0xfd, + 0xff,0x26,0x24,0xf9,0xff,0x5,0x2,0xef,0xff,0xb,0xa,0x8d,0xff,0x7f,0x6d,0xe3, + 0xff,0xc9,0xb8,0xff,0xff,0xb1,0x9e,0xff,0xff,0xa0,0x8b,0xff,0xff,0xa7,0x94,0xff, + 0xff,0xad,0x99,0xff,0xff,0x6d,0x5a,0xe8,0xff,0x7f,0x86,0xda,0xff,0x74,0x74,0xf7, + 0xff,0x57,0x56,0xfd,0xff,0x45,0x45,0xfd,0xff,0x32,0x31,0xf9,0xff,0x2b,0x2b,0xbf, + 0xff,0x7,0x7,0x88,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x7,0x7,0x88,0xff,0x45,0x45,0x1f, + 0xff,0x68,0x68,0x1,0xff,0x64,0x64,0x1,0xff,0x1b,0x1b,0x64,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc5,0xc5,0xc5,0xff,0xf2,0xf2,0xf2,0xff,0xcc,0xcc,0xcb,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xff,0x4f,0x4f,0x4f,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x3f,0x79,0x79,0xf6,0xff,0x64,0x64,0xfb,0xff,0x51,0x50,0xfd, + 0xff,0x40,0x3f,0xfc,0xff,0x11,0xf,0xf6,0xff,0xa,0x9,0xc2,0xff,0x18,0x14,0x74, + 0xff,0x95,0x84,0xe8,0xff,0xd4,0xc2,0xff,0xff,0xd4,0xc2,0xff,0xff,0xcd,0xbb,0xff, + 0xff,0xb2,0x9e,0xff,0xff,0x52,0x50,0xb4,0xff,0x7c,0x7c,0xf1,0xff,0x65,0x65,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x42,0x41,0xfc,0xff,0x25,0x23,0xf7,0xff,0x21,0x20,0xc4, + 0xff,0x12,0x12,0x73,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x15,0x15,0x70,0xff,0x4a,0x4a,0x14,0xff,0x62,0x62,0x2, + 0xff,0x7a,0x7c,0x0,0xff,0x79,0x7a,0x0,0xff,0x43,0x43,0x24,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf,0xff,0xf3,0xf3,0xf3,0xff,0xfe,0xfe,0xfe, + 0xff,0xe9,0xe9,0xe9,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf3,0xe9,0x6a,0x6a,0xfb,0xff,0x59,0x58,0xfd, + 0xff,0x47,0x47,0xfd,0xff,0x32,0x30,0xfa,0xff,0x13,0x11,0xf6,0xff,0x11,0x10,0xb4, + 0xff,0xd,0xb,0x71,0xff,0x33,0x2b,0x8d,0xff,0x4a,0x40,0xa0,0xff,0x3f,0x35,0xa5, + 0xff,0x29,0x29,0x8f,0xff,0x41,0x44,0xa9,0xff,0x5b,0x5a,0xfc,0xff,0x53,0x52,0xfd, + 0xff,0x44,0x44,0xfc,0xff,0x36,0x35,0xfa,0xff,0x1d,0x1b,0xf5,0xff,0x38,0x37,0x81, + 0xff,0x56,0x56,0x3,0xff,0x41,0x41,0x27,0xff,0x2f,0x2f,0x42,0xff,0x1c,0x1c,0x64, + 0xff,0x15,0x15,0x70,0xff,0x15,0x15,0x70,0xff,0x15,0x15,0x70,0xff,0x1f,0x1f,0x5e, + 0xff,0x37,0x38,0x33,0xff,0x5a,0x5a,0x2,0xff,0x63,0x63,0x2,0xff,0x7b,0x7c,0x0, + 0xff,0x92,0x92,0x0,0xff,0x9a,0x99,0x0,0xff,0x59,0x59,0xe,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x71,0x75,0x75,0xf6,0xff,0x65,0x65,0xfb, + 0xff,0x53,0x53,0xfd,0xff,0x42,0x42,0xfc,0xff,0x30,0x2e,0xf9,0xff,0x12,0xf,0xf5, + 0xff,0xe,0xc,0xf0,0xff,0x15,0x14,0xba,0xff,0x1a,0x1a,0x9e,0xff,0x20,0x20,0xb7, + 0xff,0x25,0x25,0xc5,0xff,0x45,0x45,0xfc,0xff,0x49,0x49,0xfc,0xff,0x41,0x40,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x20,0x1f,0xf6,0xff,0x16,0x14,0xe1,0xff,0x7f,0x7f,0x25, + 0xff,0x7f,0x80,0x0,0xff,0x6e,0x6f,0x1,0xff,0x63,0x63,0x1,0xff,0x5c,0x5c,0x2, + 0xff,0x55,0x56,0x4,0xff,0x56,0x56,0x4,0xff,0x53,0x53,0x3,0xff,0x55,0x55,0x4, + 0xff,0x62,0x62,0x2,0xff,0x74,0x74,0x0,0xff,0x8b,0x8c,0x0,0xff,0xa3,0xa2,0x0, + 0xff,0xb4,0xb4,0x2,0xff,0xb0,0xaf,0x1,0xff,0x72,0x71,0x21,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf3,0xdf,0x6c,0x6c,0xfa, + 0xff,0x5e,0x5d,0xfc,0xff,0x51,0x51,0xfd,0xff,0x44,0x44,0xfc,0xff,0x37,0x36,0xfa, + 0xff,0x21,0x1f,0xf7,0xff,0x13,0x10,0xf5,0xff,0x23,0x21,0xf7,0xff,0x32,0x30,0xf9, + 0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x41,0x40,0xfd,0xff,0x3e,0x3d,0xfc, + 0xff,0x2a,0x28,0xf7,0xff,0x12,0x10,0xf5,0xff,0x54,0x54,0x6f,0xff,0xb6,0xb6,0x0, + 0xff,0xa6,0xa6,0x1,0xff,0x9f,0x9e,0x0,0xff,0x94,0x93,0x0,0xff,0x86,0x86,0x0, + 0xff,0x7f,0x7f,0x0,0xff,0x7f,0x7f,0x0,0xff,0x7c,0x7d,0x5,0xff,0x83,0x83,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x9f,0x9e,0x0,0xff,0xb1,0xb1,0x1,0xff,0xb6,0xb7,0x1, + 0xff,0xc3,0xc4,0x0,0xff,0xdc,0xdc,0x5,0xff,0x40,0x40,0x63,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x2f,0x80,0x80,0xf3, + 0xe9,0x6b,0x6b,0xfa,0xff,0x60,0x5f,0xfc,0xff,0x55,0x54,0xfd,0xff,0x4c,0x4b,0xfd, + 0xff,0x44,0x43,0xfc,0xff,0x3c,0x3a,0xfc,0xff,0x41,0x41,0xfd,0xff,0x42,0x41,0xfd, + 0xff,0x45,0x45,0xfd,0xff,0x46,0x46,0xfd,0xff,0x45,0x44,0xfc,0xff,0x3a,0x39,0xfb, + 0xff,0x28,0x26,0xf7,0xff,0x3e,0x3d,0xad,0xff,0xcb,0xca,0xc,0xff,0xd3,0xd3,0x0, + 0xff,0xc5,0xc7,0x0,0xff,0xb9,0xba,0x1,0xff,0xb4,0xb4,0x1,0xff,0xb0,0xaf,0x1, + 0xff,0xab,0xab,0x1,0xff,0xac,0xac,0x0,0xff,0xb0,0xaf,0x1,0xff,0xb4,0xb4,0x1, + 0xff,0xb6,0xb6,0x1,0xff,0xb7,0xb8,0x1,0xff,0xc3,0xc4,0x0,0xff,0xcf,0xd0,0x1, + 0xff,0xec,0xec,0xc,0xff,0xba,0xba,0x34,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x1c,0x83,0x83,0xf2,0xe9,0x6c,0x6c,0xfa,0xff,0x66,0x66,0xfb,0xff,0x5b,0x5a,0xfd, + 0xff,0x58,0x57,0xfd,0xff,0x54,0x53,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x56,0x55,0xfd,0xff,0x5b,0x5a,0xfc,0xff,0x56,0x55,0xfd,0xff,0x5b,0x5a,0xfc, + 0xff,0x58,0x57,0xf2,0xff,0x95,0x94,0x65,0xff,0xea,0xe9,0xa,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xd4,0xd4,0x0,0xff,0xc5,0xc6,0x0,0xff,0xbd,0xbf,0x0, + 0xff,0xb9,0xba,0x0,0xff,0xba,0xbb,0x1,0xff,0xbc,0xbd,0x0,0xff,0xc0,0xc2,0x0, + 0xff,0xc6,0xc7,0x0,0xff,0xd1,0xd1,0x0,0xff,0xe2,0xe2,0x4,0xff,0xf5,0xf5,0x12, + 0xff,0xdc,0xdc,0x21,0xff,0x14,0x14,0x8a,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x2f,0x85,0x85,0xf2,0xaa,0x77,0x77,0xf6,0xff,0x6c,0x6c,0xfa, + 0xff,0x67,0x67,0xfb,0xff,0x67,0x67,0xfb,0xff,0x64,0x64,0xfb,0xff,0x69,0x68,0xfa, + 0xff,0x71,0x71,0xf8,0xff,0x76,0x76,0xf7,0xff,0x78,0x78,0xf6,0xff,0x7d,0x7d,0xf0, + 0xff,0x37,0x37,0xa8,0xff,0x0,0x0,0x94,0xff,0x6a,0x6a,0x5a,0xff,0xde,0xde,0x1b, + 0xff,0xeb,0xeb,0xb,0xff,0xe5,0xe4,0x7,0xff,0xdf,0xde,0x2,0xff,0xde,0xdd,0x1, + 0xff,0xdc,0xdb,0x0,0xff,0xda,0xd9,0x0,0xff,0xdc,0xdb,0x0,0xff,0xe1,0xe0,0x3, + 0xff,0xea,0xe9,0xa,0xff,0xf0,0xf0,0xf,0xff,0xe1,0xe1,0x1d,0xff,0x7a,0x7a,0x52, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xbb,0xbb,0xbb, + 0xff,0x5a,0x5a,0x5a,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x50,0x50,0x50, + 0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x78,0x78,0x78,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe8,0x54,0x85,0x85,0xe9, + 0xff,0x81,0x81,0xf3,0xff,0x81,0x81,0xf3,0xff,0x83,0x83,0xf3,0xff,0x86,0x86,0xef, + 0xff,0x86,0x86,0xee,0xff,0x8f,0x8f,0xe3,0xff,0x9e,0x9e,0xd2,0xff,0x8a,0x8a,0x90, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x63,0x62,0x5b,0xff,0xbe,0xbd,0x2e,0xff,0xf8,0xf8,0x14,0xff,0xf8,0xf8,0x14, + 0xff,0xf5,0xf5,0x12,0xff,0xf4,0xf4,0x12,0xff,0xf8,0xf8,0x14,0xff,0xf8,0xf8,0x14, + 0xff,0xa2,0xa2,0x3c,0xff,0x63,0x62,0x5b,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd4,0xd4,0xd4,0xff,0xa0,0xa0,0xa0,0xff,0x9b,0x9b,0x9a,0xff,0x9d,0x9d,0x9c, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x2f,0x98,0x98,0xb0,0xff,0xd0,0xd0,0xeb,0xff,0xb0,0xb0,0xc3, + 0xff,0xba,0xba,0xc2,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x27,0x27,0x7d, + 0xff,0x3e,0x3e,0x74,0xff,0x3e,0x3e,0x74,0xff,0x2d,0x2c,0x7b,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd5,0xd5,0xd4,0xff,0xb9,0xb9,0xb8,0xff,0xa5,0xa5,0xa4,0xff,0xa1,0xa1,0xa0, + 0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd6,0xd6,0xd5,0xff,0xc2,0xc2,0xc1,0xff,0xb7,0xb7,0xb6,0xff,0xa4,0xa4,0xa3, + 0xff,0xa1,0xa1,0xa0,0xff,0x87,0x87,0x87,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd6,0xd6,0xd5,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xbc,0xbc,0xbb, + 0xff,0xa5,0xa5,0xa4,0xff,0x90,0x90,0x90,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x52,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd6,0xd6,0xd5,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1, + 0xff,0xb6,0xb6,0xb5,0xff,0xa4,0xa4,0xa3,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7, + 0xff,0x4f,0x4f,0x4f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0xa9,0xa9,0xa9,0xff,0xd3,0xd3,0xd3,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xea,0xea,0xe9,0xff,0xe0,0xe0,0xdf,0xff,0xe0,0xe0,0xdf,0xff,0xe0,0xe0,0xdf, + 0xff,0xe0,0xe0,0xdf,0xff,0xcf,0xcf,0xcf,0xff,0x6f,0x6f,0x6f,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x96,0x96,0x96,0xef,0xf3,0xf3,0xf3,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xcf,0xcf,0xcf,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x99,0x99,0x99,0xff,0xce,0xce,0xce, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xe4,0xe4,0xe4,0xff,0xd4,0xd4,0xd4,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x8a,0x8a,0x8a, + 0xef,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xde,0xde,0xde,0xff,0xce,0xce,0xce,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d, + 0x3f,0x84,0x84,0x84,0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xde,0xde,0xde,0xff,0xbe,0xbe,0xbe, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x3f,0x8a,0x8a,0x8a,0xef,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xe6,0xe6,0xe6, + 0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x84,0x84,0x84,0xff,0xb9,0xb9,0xb9, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe9,0xe9,0xe9,0xff,0xbe,0xbe,0xbe,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x86,0x86,0x86, + 0xef,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0xa9,0xa9,0xa9,0xef,0x80,0x80,0x80,0x2a,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3f,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff, + 0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff, + 0xff,0x28,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xfe,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0xf0,0x0,0x0,0x0, + 0x61,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15, + 0xff,0xf,0xf,0xf,0xff,0xe,0xe,0xe,0xfe,0x7,0x7,0x7,0xfd,0x0,0x0,0x0, + 0xe4,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x71,0x71,0xff,0x77,0x77,0x77, + 0xff,0xa2,0xa2,0xa2,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa2,0xa2,0xa2, + 0xff,0x77,0x77,0x77,0xfe,0x70,0x70,0x70,0xfe,0x52,0x52,0x52,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0x86,0x86,0x86, + 0xff,0xb6,0xb6,0xb6,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xb6,0xb6,0xb6, + 0xff,0x86,0x86,0x86,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0x86,0x86,0x86, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7, + 0xff,0x86,0x86,0x86,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8, + 0xff,0x87,0x87,0x87,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb8,0xb8,0xb8, + 0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc1,0xc1,0xc1,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbb,0xbb,0xbb, + 0xff,0x93,0x93,0x93,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xd1,0xd1,0xd1,0xff,0xf2,0xf2,0xf2,0xff,0xf4,0xf4,0xf4, + 0xff,0xf4,0xf4,0xf4,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf2,0xf2,0xf2, + 0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc5,0xff,0xb8,0xb8,0xb8,0xff,0xbe,0xbe,0xbe, + 0xff,0xab,0xab,0xab,0xff,0x83,0x83,0x83,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xfe,0x87,0x87,0x87, + 0xff,0xb9,0xb9,0xb8,0xfe,0xdb,0xdb,0xdb,0xff,0xfb,0xfb,0xfb,0xff,0xfb,0xfb,0xfb, + 0xff,0xfb,0xfb,0xfb,0xff,0xf7,0xf7,0xf7,0xff,0xf0,0xf0,0xf0,0xff,0xee,0xee,0xee, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xf4,0xf4,0xf4, + 0xff,0xf2,0xf2,0xf2,0xff,0xf9,0xf9,0xf9,0xff,0xf8,0xf8,0xf8,0xff,0xf0,0xf0,0xf0, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xf0,0xf0,0xf0, + 0xff,0xf5,0xf5,0xf5,0xff,0xec,0xec,0xec,0xff,0xfa,0xfa,0xfa,0xff,0xfc,0xfc,0xfc, + 0xff,0xfc,0xfc,0xfc,0xff,0xf8,0xf8,0xf8,0xff,0xf0,0xf0,0xf0,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xef,0xff,0xee,0xee,0xee,0xff,0xf4,0xf4,0xf4,0xff,0xf0,0xf0,0xf0, + 0xff,0xe8,0xe8,0xe8,0xff,0xf2,0xf2,0xf2,0xff,0xfc,0xfc,0xfc,0xff,0xfa,0xfa,0xfa, + 0xff,0xf4,0xf4,0xf4,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef, + 0xff,0xf0,0xf0,0xf0,0xff,0xf5,0xf5,0xf5,0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xf4,0xf4,0xf4,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xf0,0xf0,0xf0,0xff,0xf5,0xf5,0xf5, + 0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xf4,0xf4,0xf4,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef, + 0xff,0xf0,0xf0,0xf0,0xff,0xf5,0xf5,0xf5,0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea, + 0xff,0xfa,0xfa,0xfa,0xff,0xfc,0xfc,0xfc,0xff,0xf8,0xf8,0xf8,0xff,0xf0,0xf0,0xf0, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xf0,0xf0,0xf0, + 0xff,0xf5,0xf5,0xf5,0xff,0xf4,0xf4,0xf4,0xff,0xfa,0xfa,0xfa,0xff,0xf4,0xf4,0xf4, + 0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xf0,0xf0,0xf0, + 0xff,0xf5,0xf5,0xf5,0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea,0xff,0xf5,0xf5,0xf5, + 0xff,0xf0,0xf0,0xf0,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xed,0xed,0xed, + 0xff,0xf3,0xf3,0xf3,0xff,0x8e,0x8e,0x8e,0xff,0x6f,0x6f,0x6e,0xff,0xb7,0xb7,0xb7, + 0xff,0xb9,0xb9,0xb9,0xff,0x96,0x96,0x96,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xfd,0x86,0x86,0x86, + 0xfe,0xb6,0xb6,0xb5,0xfe,0xc6,0xc6,0xc5,0xfe,0xb4,0xb4,0xb4,0xff,0x83,0x83,0x82, + 0xff,0x7e,0x7e,0x7e,0xff,0xa3,0xa3,0xa3,0xff,0xa8,0xa8,0xa8,0xff,0x8e,0x8e,0x8e, + 0xff,0x8e,0x8e,0x8e,0xff,0x8e,0x8e,0x8e,0xff,0x8e,0x8e,0x8e,0xff,0xb7,0xb7,0xb7, + 0xff,0xa1,0xa1,0xa1,0xff,0xb1,0xb1,0xb1,0xff,0xcf,0xcf,0xcf,0xff,0x97,0x97,0x97, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8e,0x8e,0x8e,0xff,0xa8,0xa8,0xa8, + 0xff,0xaf,0xaf,0xaf,0xff,0x6d,0x6d,0x6d,0xff,0xa7,0xa7,0xa7,0xff,0xbd,0xbd,0xbd, + 0xff,0xc1,0xc1,0xc1,0xff,0xd0,0xd0,0xd0,0xff,0x97,0x97,0x97,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8e,0x8e,0x8e,0xff,0xb5,0xb5,0xb5,0xff,0x9e,0x9e,0x9e, + 0xff,0x5f,0x5f,0x5f,0xff,0x85,0x85,0x85,0xff,0xba,0xba,0xba,0xff,0xcc,0xcc,0xcc, + 0xff,0xb6,0xb6,0xb6,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x97,0x97,0x97,0xff,0xc5,0xc5,0xc5,0xff,0x6d,0x6d,0x6d,0xff,0x67,0x67,0x67, + 0xff,0xa9,0xa9,0xa9,0xff,0xcd,0xcd,0xcd,0xff,0xb5,0xb5,0xb5,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x97,0x97,0x97,0xff,0xc5,0xc5,0xc5, + 0xff,0x6d,0x6d,0x6d,0xff,0x67,0x67,0x67,0xff,0xa9,0xa9,0xa9,0xff,0xcd,0xcd,0xcd, + 0xff,0xb5,0xb5,0xb5,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x97,0x97,0x97,0xff,0xc5,0xc5,0xc5,0xff,0x6d,0x6d,0x6d,0xff,0x67,0x67,0x67, + 0xff,0xa9,0xa9,0xa9,0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0,0xff,0x97,0x97,0x97, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8e,0x8e,0x8e,0xff,0xa8,0xa8,0xa8, + 0xff,0xaf,0xaf,0xaf,0xff,0x87,0x87,0x87,0xff,0xbf,0xbf,0xbf,0xff,0xb5,0xb5,0xb5, + 0xff,0x8e,0x8e,0x8e,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x97,0x97,0x97, + 0xff,0xc6,0xc6,0xc6,0xff,0x6d,0x6d,0x6d,0xff,0x6d,0x6d,0x6d,0xff,0xc6,0xc6,0xc6, + 0xff,0x97,0x97,0x97,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8d,0x8d,0x8d, + 0xff,0xb4,0xb4,0xb4,0xff,0x8d,0x8d,0x8d,0xff,0x29,0x29,0x29,0xff,0x5e,0x5e,0x5e, + 0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xf1,0x80,0x80,0x80, + 0xfd,0x95,0x95,0x95,0xfe,0xb9,0xb9,0xb8,0xfe,0xad,0xad,0xac,0xfe,0x44,0x44,0x43, + 0xff,0x7,0x7,0x7,0xff,0x6d,0x6d,0x6d,0xff,0xab,0xab,0xab,0xff,0x80,0x80,0x80, + 0xff,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0xff,0x89,0x89,0x89,0xff,0xbd,0xbd,0xbd, + 0xff,0x62,0x62,0x62,0xff,0x5e,0x5e,0x5e,0xff,0xbb,0xbb,0xbb,0xff,0x8e,0x8e,0x8e, + 0xff,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0xaa,0xaa,0xaa, + 0xff,0x8c,0x8c,0x8c,0xff,0x4b,0x4b,0x4b,0xff,0x53,0x53,0x53,0xff,0x7b,0x7b,0x7b, + 0xff,0x86,0x86,0x86,0xff,0xb8,0xb8,0xb8,0xff,0xa0,0xa0,0xa0,0xff,0x8b,0x8b,0x8b, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab,0xff,0x7d,0x7d,0x7d, + 0xff,0x4c,0x4c,0x4c,0xff,0x57,0x57,0x57,0xff,0x98,0x98,0x98,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a, + 0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa,0xff,0x56,0x56,0x56,0xff,0x4c,0x4c,0x4c, + 0xff,0x7b,0x7b,0x7b,0xff,0xad,0xad,0xad,0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa, + 0xff,0x56,0x56,0x56,0xff,0x4c,0x4c,0x4c,0xff,0x7b,0x7b,0x7b,0xff,0xad,0xad,0xad, + 0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a, + 0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa,0xff,0x56,0x56,0x56,0xff,0x4c,0x4c,0x4c, + 0xff,0x7b,0x7b,0x7b,0xff,0x9a,0x9a,0x9a,0xff,0xc1,0xc1,0xc1,0xff,0x8e,0x8e,0x8e, + 0xff,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0xaa,0xaa,0xaa, + 0xff,0x8c,0x8c,0x8c,0xff,0x4c,0x4c,0x4c,0xff,0x77,0x77,0x77,0xff,0xb6,0xb6,0xb6, + 0xff,0x8d,0x8d,0x8d,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92, + 0xff,0xab,0xab,0xab,0xff,0x56,0x56,0x56,0xff,0x54,0x54,0x54,0xff,0xa8,0xa8,0xa8, + 0xff,0xa0,0xa0,0xa0,0xff,0x8a,0x8a,0x8a,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a, + 0xff,0xab,0xab,0xab,0xff,0x7c,0x7c,0x7c,0xff,0x44,0x44,0x44,0xff,0x2a,0x2a,0x2a, + 0xff,0x82,0x82,0x82,0xff,0xbb,0xbb,0xbb,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x61,0x80,0x80,0x80, + 0xe4,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb9,0xb9,0xb8,0xfe,0xae,0xae,0xad, + 0xfe,0x44,0x44,0x43,0xff,0x47,0x47,0x47,0xff,0xb1,0xb1,0xb1,0xff,0x8c,0x8c,0x8c, + 0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa, + 0xff,0x56,0x56,0x56,0xff,0x4e,0x4e,0x4e,0xff,0x97,0x97,0x97,0xff,0xbe,0xbe,0xbe, + 0xff,0xac,0xac,0xac,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc, + 0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x60,0x60,0x60,0xff,0xba,0xba,0xba, + 0xff,0x96,0x96,0x96,0xff,0xa9,0xa9,0xa9,0xff,0xd2,0xd2,0xd2,0xff,0xcc,0xcc,0xcc, + 0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xce,0xce,0xce,0xff,0xa9,0xa9,0xa9, + 0xff,0x5a,0x5a,0x5a,0xff,0x77,0x77,0x77,0xff,0xa8,0xa8,0xa8,0xff,0x8a,0x8a,0x8a, + 0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55, + 0xff,0xa5,0xa5,0xa5,0xff,0x96,0x96,0x96,0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce, + 0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xa5,0xa5,0xa5,0xff,0x96,0x96,0x96, + 0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55, + 0xff,0xa5,0xa5,0xa5,0xff,0x8f,0x8f,0x8f,0xff,0xaf,0xaf,0xaf,0xff,0xbe,0xbe,0xbe, + 0xff,0xac,0xac,0xac,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc, + 0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x62,0x62,0x62,0xff,0xc9,0xc9,0xc9, + 0xff,0xce,0xce,0xce,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb, + 0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xad,0xad,0xad, + 0xff,0xd3,0xd3,0xd3,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca, + 0xff,0xce,0xce,0xce,0xff,0xa8,0xa8,0xa8,0xff,0x58,0x58,0x58,0xff,0x67,0x67,0x67, + 0xff,0x4f,0x4f,0x4f,0xff,0x80,0x80,0x80,0xff,0xbb,0xbb,0xbb,0xff,0xb7,0xb7,0xb7, + 0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x6,0x80,0x80,0x80, + 0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7, + 0xfe,0xac,0xac,0xab,0xfe,0x58,0x58,0x57,0xff,0xb8,0xb8,0xb8,0xff,0xcd,0xcd,0xcd, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xac,0xac,0xac,0xff,0xd3,0xd3,0xd3, + 0xff,0xd0,0xd0,0xd0,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74,0xff,0x8a,0x8a,0x8a,0xff,0xc5,0xc5,0xc5, + 0xff,0x91,0x91,0x91,0xff,0x8b,0x8b,0x8b,0xff,0xb8,0xb8,0xb8,0xff,0xca,0xca,0xca, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3, + 0xff,0x93,0x93,0x93,0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9c,0xff,0x88,0x88,0x88, + 0xff,0x9c,0x9c,0x9c,0xff,0xc9,0xc9,0xc9,0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xaf,0xaf,0xaf,0xff,0x8b,0x8b,0x8b,0xff,0xa0,0xa0,0xa0,0xff,0xc8,0xc8,0xc8, + 0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca, + 0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74,0xff,0xaf,0xaf,0xaf,0xff,0x8b,0x8b,0x8b, + 0xff,0xa0,0xa0,0xa0,0xff,0xc8,0xc8,0xc8,0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xb0,0xb0,0xb0,0xff,0x8c,0x8c,0x8c,0xff,0x99,0x99,0x99,0xff,0xce,0xce,0xce, + 0xff,0xd0,0xd0,0xd0,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74,0xff,0x8c,0x8c,0x8c,0xff,0xc1,0xc1,0xc1, + 0xff,0xc7,0xc7,0xc7,0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x75,0x75,0x75,0xff,0xb4,0xb4,0xb4, + 0xff,0xc2,0xc2,0xc2,0xff,0xcf,0xcf,0xcf,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3,0xff,0x92,0x92,0x92,0xff,0x8d,0x8d,0x8d, + 0xff,0x51,0x51,0x51,0xff,0x26,0x26,0x26,0xff,0x82,0x82,0x82,0xff,0xba,0xba,0xba, + 0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80, + 0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95, + 0xfe,0xb8,0xb8,0xb7,0xfe,0xb0,0xb0,0xaf,0xfe,0x8b,0x8b,0x8a,0xff,0xba,0xba,0xba, + 0xff,0xc1,0xc1,0xc1,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xca,0xca,0xca, + 0xff,0xc3,0xc3,0xc3,0xff,0x75,0x75,0x75,0xff,0xb0,0xb0,0xb0,0xff,0xa7,0xa7,0xa7, + 0xff,0xca,0xca,0xca,0xff,0xc5,0xc5,0xc5,0xff,0xc6,0xc6,0xc6,0xff,0xc9,0xc9,0xc9, + 0xff,0xd5,0xd5,0xd5,0xff,0xb4,0xb4,0xb4,0xff,0xa8,0xa8,0xa8,0xff,0x91,0x91,0x91, + 0xff,0xaa,0xaa,0xaa,0xff,0x8d,0x8d,0x8d,0xff,0x7b,0x7b,0x7b,0xff,0x9e,0x9e,0x9e, + 0xff,0xc8,0xc8,0xc8,0xff,0xd2,0xd2,0xd2,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd, + 0xff,0xc6,0xc6,0xc6,0xff,0xb0,0xb0,0xb0,0xff,0x91,0x91,0x91,0xff,0xb2,0xb2,0xb2, + 0xff,0x72,0x72,0x72,0xff,0x8a,0x8a,0x8a,0xff,0xb7,0xb7,0xb7,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe, + 0xff,0x99,0x99,0x99,0xff,0xa9,0xa9,0xa9,0xff,0x8f,0x8f,0x8f,0xff,0x82,0x82,0x82, + 0xff,0xb7,0xb7,0xb7,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcd,0xcd,0xcd, + 0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x99,0x99,0x99,0xff,0xa9,0xa9,0xa9, + 0xff,0x8f,0x8f,0x8f,0xff,0x82,0x82,0x82,0xff,0xb8,0xb8,0xb8,0xff,0xd2,0xd2,0xd2, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xbd,0xbd,0xbd, + 0xff,0xa4,0xa4,0xa4,0xff,0xb2,0xb2,0xb2,0xff,0x73,0x73,0x73,0xff,0x97,0x97,0x97, + 0xff,0xbe,0xbe,0xbe,0xff,0xc8,0xc8,0xc8,0xff,0xc6,0xc6,0xc6,0xff,0xc8,0xc8,0xc8, + 0xff,0xd6,0xd6,0xd6,0xff,0xb4,0xb4,0xb4,0xff,0xb2,0xb2,0xb2,0xff,0x94,0x94,0x94, + 0xff,0x83,0x83,0x83,0xff,0xb7,0xb7,0xb7,0xff,0xcf,0xcf,0xcf,0xff,0xd0,0xd0,0xd0, + 0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x9d,0x9d,0x9d, + 0xff,0xb6,0xb6,0xb6,0xff,0xa0,0xa0,0xa0,0xff,0xbf,0xbf,0xbf,0xff,0xcd,0xcd,0xcd, + 0xff,0xd0,0xd0,0xd0,0xff,0xcd,0xcd,0xcd,0xff,0xc5,0xc5,0xc5,0xff,0xae,0xae,0xae, + 0xff,0x78,0x78,0x78,0xff,0x92,0x92,0x92,0xff,0x51,0x51,0x51,0xff,0x80,0x80,0x80, + 0xff,0xbb,0xbb,0xba,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81, + 0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7,0xfe,0xb0,0xb0,0xaf,0xfe,0x62,0x62,0x61, + 0xff,0x8f,0x8f,0x8f,0xff,0xbf,0xbf,0xbe,0xff,0xcf,0xcf,0xcf,0xff,0xce,0xce,0xce, + 0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x98,0x98,0x98,0xff,0xa9,0xa9,0xa9, + 0xff,0x9f,0x9f,0x9f,0xff,0xa6,0xa6,0xa6,0xff,0xd1,0xd1,0xd1,0xff,0xc2,0xc2,0xc2, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0x9a,0x9a,0x9a,0xff,0x8a,0x8a,0x8a, + 0xff,0xbc,0xbc,0xbc,0xff,0x61,0x61,0x61,0xff,0x53,0x53,0x53,0xff,0x72,0x72,0x72, + 0xff,0x91,0x91,0x91,0xff,0xc6,0xc6,0xc6,0xff,0x92,0x92,0x92,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x84,0x84,0x84,0xff,0xa8,0xa8,0xa8,0xff,0x96,0x96,0x96, + 0xff,0x4f,0x4f,0x4f,0xff,0x5f,0x5f,0x5f,0xff,0x81,0x81,0x81,0xff,0xb0,0xb0,0xb0, + 0xff,0xb1,0xb1,0xb1,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89, + 0xff,0x89,0x89,0x89,0xff,0xbb,0xbb,0xbb,0xff,0x61,0x61,0x61,0xff,0x53,0x53,0x53, + 0xff,0x75,0x75,0x75,0xff,0xb0,0xb0,0xb0,0xff,0xb1,0xb1,0xb1,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0xbb,0xbb,0xbb, + 0xff,0x61,0x61,0x61,0xff,0x53,0x53,0x53,0xff,0x7e,0x7e,0x7e,0xff,0xc6,0xc6,0xc6, + 0xff,0x92,0x92,0x92,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88, + 0xff,0xa9,0xa9,0xa9,0xff,0x96,0x96,0x96,0xff,0x50,0x50,0x50,0xff,0x5f,0x5f,0x5f, + 0xff,0xa9,0xa9,0xa9,0xff,0xc2,0xc2,0xc2,0xff,0xac,0xac,0xac,0xff,0xad,0xad,0xad, + 0xff,0xac,0xac,0xac,0xff,0xb0,0xb0,0xb0,0xff,0xc4,0xc4,0xc4,0xff,0x62,0x62,0x62, + 0xff,0x53,0x53,0x53,0xff,0x75,0x75,0x75,0xff,0xac,0xac,0xac,0xff,0xb3,0xb3,0xb3, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88,0xff,0x8a,0x8a,0x8a, + 0xff,0xb8,0xb8,0xb8,0xff,0x5c,0x5c,0x5c,0xff,0x59,0x59,0x59,0xff,0x99,0x99,0x99, + 0xff,0xb1,0xb1,0xb1,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x85,0x85,0x85, + 0xff,0x88,0x88,0x88,0xff,0xbb,0xbb,0xbb,0xff,0x59,0x59,0x59,0xff,0x2f,0x2f,0x2e, + 0xff,0x81,0x81,0x81,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80, + 0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb8,0xfe,0xad,0xad,0xac, + 0xfe,0x4f,0x4f,0x4f,0xff,0x27,0x27,0x27,0xff,0x95,0x95,0x95,0xff,0xa7,0xa7,0xa7, + 0xff,0x93,0x93,0x93,0xff,0x92,0x92,0x92,0xff,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab, + 0xff,0x7d,0x7d,0x7d,0xff,0x53,0x53,0x53,0xff,0x7e,0x7e,0x7e,0xff,0xb6,0xb6,0xb6, + 0xff,0x8d,0x8d,0x8d,0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89,0xff,0x92,0x92,0x92, + 0xff,0xaa,0xaa,0xaa,0xff,0x55,0x55,0x55,0xff,0x4b,0x4b,0x4b,0xff,0x7b,0x7b,0x7b, + 0xff,0x97,0x97,0x97,0xff,0xb8,0xb8,0xb8,0xff,0xa0,0xa0,0xa0,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89,0xff,0xaa,0xaa,0xaa,0xff,0x7c,0x7c,0x7c, + 0xff,0x4b,0x4b,0x4b,0xff,0x56,0x56,0x56,0xff,0x98,0x98,0x98,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa,0xff,0x55,0x55,0x55,0xff,0x4b,0x4b,0x4b, + 0xff,0x7b,0x7b,0x7b,0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e, + 0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa, + 0xff,0x55,0x55,0x55,0xff,0x4b,0x4b,0x4b,0xff,0x7f,0x7f,0x7f,0xff,0xc9,0xc9,0xc9, + 0xff,0x9f,0x9f,0x9f,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89, + 0xff,0xaa,0xaa,0xaa,0xff,0x7c,0x7c,0x7c,0xff,0x4b,0x4b,0x4b,0xff,0x56,0x56,0x56, + 0xff,0xb3,0xb3,0xb3,0xff,0xbc,0xbc,0xbc,0xff,0x8d,0x8d,0x8d,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xa9,0xa9,0xa9,0xff,0x55,0x55,0x55, + 0xff,0x4b,0x4b,0x4b,0xff,0x7b,0x7b,0x7b,0xff,0x9f,0x9f,0x9f,0xff,0xc6,0xc6,0xc6, + 0xff,0xb0,0xb0,0xb0,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xb1,0xb1,0xb1, + 0xff,0xb0,0xb0,0xb0,0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e,0xff,0x97,0x97,0x97, + 0xff,0xbe,0xbe,0xbe,0xff,0x8d,0x8d,0x8d,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x91,0x91,0x91,0xff,0xa9,0xa9,0xa9,0xff,0x53,0x53,0x53,0xff,0x44,0x44,0x44, + 0xff,0x34,0x34,0x34,0xff,0x82,0x82,0x82,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7, + 0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80, + 0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7, + 0xfe,0xae,0xae,0xad,0xfe,0x44,0x44,0x43,0xff,0x68,0x68,0x68,0xff,0xd0,0xd0,0xd0, + 0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xce,0xce,0xce, + 0xff,0xa9,0xa9,0xa9,0xff,0x5a,0x5a,0x5a,0xff,0x77,0x77,0x77,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb, + 0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xa4,0xa4,0xa4, + 0xff,0x8e,0x8e,0x8e,0xff,0xa8,0xa8,0xa8,0xff,0xd1,0xd1,0xd1,0xff,0xcc,0xcc,0xcc, + 0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xce,0xce,0xce,0xff,0xa9,0xa9,0xa9, + 0xff,0x59,0x59,0x59,0xff,0x76,0x76,0x76,0xff,0xa7,0xa7,0xa7,0xff,0x8a,0x8a,0x8a, + 0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55, + 0xff,0xa5,0xa5,0xa5,0xff,0x95,0x95,0x95,0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce, + 0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xa4,0xa4,0xa4,0xff,0xb5,0xb5,0xb5, + 0xff,0xd1,0xd1,0xd1,0xff,0xcc,0xcc,0xcc,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca, + 0xff,0xce,0xce,0xce,0xff,0xa9,0xa9,0xa9,0xff,0x59,0x59,0x59,0xff,0x76,0x76,0x76, + 0xff,0xb0,0xb0,0xb0,0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xcc,0xcc,0xcc,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b, + 0xff,0x55,0x55,0x55,0xff,0xa5,0xa5,0xa5,0xff,0x92,0x92,0x92,0xff,0xb9,0xb9,0xb9, + 0xff,0xd5,0xd5,0xd5,0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xcd,0xcd,0xcd,0xff,0xa6,0xa6,0xa6,0xff,0x61,0x61,0x61,0xff,0xbf,0xbf,0xbf, + 0xff,0xd5,0xd5,0xd5,0xff,0xce,0xce,0xce,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7a,0x7a,0x7a,0xff,0x54,0x54,0x54, + 0xff,0x8c,0x8c,0x8c,0xff,0x2b,0x2b,0x2b,0xff,0x7f,0x7f,0x7f,0xff,0xba,0xba,0xba, + 0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80, + 0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95, + 0xfe,0xb8,0xb8,0xb7,0xfe,0xad,0xad,0xac,0xfe,0x59,0x59,0x58,0xff,0x91,0x91,0x90, + 0xff,0xc3,0xc3,0xc3,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xff,0x93,0x93,0x93,0xff,0x95,0x95,0x95,0xff,0xba,0xba,0xba, + 0xff,0xcb,0xcb,0xcb,0xff,0xc2,0xc2,0xc2,0xff,0xbc,0xbc,0xbc,0xff,0xbd,0xbd,0xbd, + 0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74,0xff,0xaf,0xaf,0xaf, + 0xff,0x8a,0x8a,0x8a,0xff,0xa8,0xa8,0xa8,0xff,0xb3,0xb3,0xb3,0xff,0xca,0xca,0xca, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3, + 0xff,0x93,0x93,0x93,0xff,0x94,0x94,0x94,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0x98,0x98,0x98,0xff,0xc9,0xc9,0xc9,0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xc5,0xc5,0xc5,0xff,0x91,0x91,0x91,0xff,0x9a,0x9a,0x9a,0xff,0xc9,0xc9,0xc9, + 0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc,0xff,0xca,0xca,0xca, + 0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74,0xff,0xbd,0xbd,0xbd,0xff,0x87,0x87,0x87, + 0xff,0xb9,0xb9,0xb9,0xff,0xca,0xca,0xca,0xff,0xbe,0xbe,0xbe,0xff,0xbc,0xbc,0xbc, + 0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3,0xff,0x92,0x92,0x92,0xff,0x99,0x99,0x99, + 0xff,0xa2,0xa2,0xa2,0xff,0x9a,0x9a,0x9a,0xff,0xc9,0xc9,0xc9,0xff,0xc3,0xc3,0xc3, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3, + 0xff,0x74,0x74,0x74,0xff,0xc5,0xc5,0xc5,0xff,0x90,0x90,0x90,0xff,0x86,0x86,0x86, + 0xff,0xab,0xab,0xab,0xff,0xc4,0xc4,0xc4,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xa0,0xa0,0xa0,0xff,0xae,0xae,0xae, + 0xff,0xcd,0xcd,0xcd,0xff,0xcf,0xcf,0xcf,0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xa7,0xa7,0xa7,0xff,0x63,0x63,0x63,0xff,0x4e,0x4e,0x4e,0xff,0x7f,0x7f,0x7f, + 0xff,0xbb,0xbb,0xbb,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81, + 0xfb,0x95,0x95,0x95,0xfe,0xb7,0xb7,0xb7,0xfe,0xad,0xad,0xac,0xfe,0x50,0x50,0x4f, + 0xff,0x50,0x50,0x50,0xff,0xb6,0xb6,0xb6,0xff,0xcf,0xcf,0xcf,0xff,0xcc,0xcc,0xcc, + 0xff,0xce,0xce,0xce,0xff,0xc7,0xc7,0xc7,0xff,0xb0,0xb0,0xb0,0xff,0xae,0xae,0xae, + 0xff,0x9f,0x9f,0x9f,0xff,0xa5,0xa5,0xa5,0xff,0xc7,0xc7,0xc7,0xff,0xd2,0xd2,0xd2, + 0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x98,0x98,0x98, + 0xff,0x9b,0x9b,0x9b,0xff,0xa8,0xa8,0xa8,0xff,0x65,0x65,0x65,0xff,0x8f,0x8f,0x8f, + 0xff,0xc7,0xc7,0xc7,0xff,0xd2,0xd2,0xd2,0xff,0xcd,0xcd,0xcd,0xff,0xce,0xce,0xce, + 0xff,0xc6,0xc6,0xc6,0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xa8,0xa8,0xa8, + 0xff,0x61,0x61,0x61,0xff,0x7d,0x7d,0x7d,0xff,0xbb,0xbb,0xbb,0xff,0xd0,0xd0,0xd0, + 0xff,0xcb,0xcb,0xcb,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xc3,0xc3,0xc3, + 0xff,0xcd,0xcd,0xcd,0xff,0x79,0x79,0x79,0xff,0x66,0x66,0x66,0xff,0x8d,0x8d,0x8d, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcb,0xcb,0xcb,0xff,0xcd,0xcd,0xcd, + 0xff,0xcc,0xcc,0xcc,0xff,0xc6,0xc6,0xc6,0xff,0xab,0xab,0xab,0xff,0x60,0x60,0x60, + 0xff,0x76,0x76,0x76,0xff,0xb0,0xb0,0xb0,0xff,0xd0,0xd0,0xd0,0xff,0xcb,0xcb,0xcb, + 0xff,0xcc,0xcc,0xcc,0xff,0xce,0xce,0xce,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0x79,0x79,0x79,0xff,0x66,0x66,0x66,0xff,0x88,0x88,0x88,0xff,0xbc,0xbc,0xbc, + 0xff,0xd0,0xd0,0xd0,0xff,0xcb,0xcb,0xcb,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc, + 0xff,0xc3,0xc3,0xc3,0xff,0xcd,0xcd,0xcd,0xff,0x79,0x79,0x79,0xff,0x65,0x65,0x65, + 0xff,0x7d,0x7d,0x7d,0xff,0x9e,0x9e,0x9e,0xff,0xce,0xce,0xce,0xff,0xb1,0xb1,0xb1, + 0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xa7,0xa7,0xa7,0xff,0xa4,0xa4,0xa4, + 0xff,0xaa,0xaa,0xaa,0xff,0x82,0x82,0x82,0xff,0xc1,0xc1,0xc1,0xff,0xcf,0xcf,0xcf, + 0xff,0xd0,0xd0,0xd0,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe, + 0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4,0xff,0x6f,0x6f,0x6f,0xff,0x2e,0x2e,0x2e, + 0xff,0x80,0x80,0x80,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80, + 0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7,0xfe,0xad,0xad,0xac, + 0xfe,0x46,0x46,0x46,0xff,0x25,0x25,0x25,0xff,0x95,0x95,0x95,0xff,0xa7,0xa7,0xa7, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x8e,0x8e,0x8e,0xff,0xab,0xab,0xab, + 0xff,0x7d,0x7d,0x7d,0xff,0x54,0x54,0x54,0xff,0x69,0x69,0x69,0xff,0xc2,0xc2,0xc2, + 0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88,0xff,0x81,0x81,0x81, + 0xff,0xaa,0xaa,0xaa,0xff,0x8b,0x8b,0x8b,0xff,0x4b,0x4b,0x4b,0xff,0x56,0x56,0x56, + 0xff,0x92,0x92,0x92,0xff,0xc4,0xc4,0xc4,0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x84,0x84,0x84,0xff,0xaa,0xaa,0xaa,0xff,0x8b,0x8b,0x8b, + 0xff,0x4c,0x4c,0x4c,0xff,0x55,0x55,0x55,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x91,0x91,0x91, + 0xff,0xb9,0xb9,0xb9,0xff,0x59,0x59,0x59,0xff,0x4c,0x4c,0x4c,0xff,0x76,0x76,0x76, + 0xff,0xc7,0xc7,0xc7,0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x89,0x89,0x89,0xff,0xae,0xae,0xae,0xff,0x8b,0x8b,0x8b,0xff,0x4c,0x4c,0x4c, + 0xff,0x55,0x55,0x55,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x8b,0x8b,0x8b, + 0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xb8,0xb8,0xb8, + 0xff,0x59,0x59,0x59,0xff,0x4c,0x4c,0x4c,0xff,0x6d,0x6d,0x6d,0xff,0xad,0xad,0xad, + 0xff,0xb4,0xb4,0xb4,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x91,0x91,0x91,0xff,0xb9,0xb9,0xb9,0xff,0x59,0x59,0x59,0xff,0x4c,0x4c,0x4c, + 0xff,0x6d,0x6d,0x6d,0xff,0x8e,0x8e,0x8e,0xff,0xc1,0xc1,0xc1,0xff,0x8d,0x8d,0x8d, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0xaa,0xaa,0xaa, + 0xff,0x8b,0x8b,0x8b,0xff,0x4e,0x4e,0x4e,0xff,0x60,0x60,0x60,0xff,0xaf,0xaf,0xaf, + 0xff,0xb5,0xb5,0xb5,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88, + 0xff,0x8a,0x8a,0x8a,0xff,0xb6,0xb6,0xb6,0xff,0x58,0x58,0x58,0xff,0x44,0x44,0x44, + 0xff,0x34,0x34,0x34,0xff,0x82,0x82,0x82,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7, + 0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80, + 0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7, + 0xfe,0xae,0xae,0xad,0xfe,0x44,0x44,0x43,0xff,0x68,0x68,0x68,0xff,0xd0,0xd0,0xd0, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcb,0xcb,0xcb,0xff,0xce,0xce,0xce, + 0xff,0xa9,0xa9,0xa9,0xff,0x5a,0x5a,0x5a,0xff,0x77,0x77,0x77,0xff,0xcf,0xcf,0xcf, + 0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac, + 0xff,0xbc,0xbc,0xbc,0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x61,0x61,0x61, + 0xff,0xaf,0xaf,0xaf,0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad, + 0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc,0xff,0x83,0x83,0x83, + 0xff,0x4e,0x4e,0x4e,0xff,0x60,0x60,0x60,0xff,0xbb,0xbb,0xbb,0xff,0xcc,0xcc,0xcc, + 0xff,0xb1,0xb1,0xb1,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xb1,0xb1,0xb1, + 0xff,0xb0,0xb0,0xb0,0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e,0xff,0x91,0x91,0x91, + 0xff,0xca,0xca,0xca,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad, + 0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc,0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e, + 0xff,0x60,0x60,0x60,0xff,0xba,0xba,0xba,0xff,0xcc,0xcc,0xcc,0xff,0xb1,0xb1,0xb1, + 0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xb1,0xb1,0xb1,0xff,0xb0,0xb0,0xb0, + 0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e,0xff,0x90,0x90,0x90,0xff,0xae,0xae,0xae, + 0xff,0xc8,0xc8,0xc8,0xff,0xb1,0xb1,0xb1,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac, + 0xff,0xb1,0xb1,0xb1,0xff,0xb0,0xb0,0xb0,0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e, + 0xff,0x90,0x90,0x90,0xff,0xa4,0xa4,0xa4,0xff,0xb6,0xb6,0xb6,0xff,0xbf,0xbf,0xbf, + 0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc, + 0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x61,0x61,0x61,0xff,0xbb,0xbb,0xbb, + 0xff,0xcc,0xcc,0xcc,0xff,0xb1,0xb1,0xb1,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac, + 0xff,0xb1,0xb1,0xb1,0xff,0xb0,0xb0,0xb0,0xff,0x5b,0x5b,0x5b,0xff,0x4c,0x4c,0x4c, + 0xff,0x77,0x77,0x77,0xff,0x2b,0x2b,0x2b,0xff,0x80,0x80,0x80,0xff,0xbb,0xbb,0xbb, + 0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80, + 0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfc,0x96,0x96,0x96, + 0xfe,0xbb,0xbb,0xba,0xfe,0xad,0xad,0xac,0xff,0x5c,0x5c,0x5b,0xff,0xa9,0xa9,0xa9, + 0xff,0xd1,0xd1,0xd1,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xff,0x93,0x93,0x93,0xff,0x9b,0x9b,0x9b,0xff,0xe7,0xe7,0xe7, + 0xff,0xdb,0xdb,0xdb,0xff,0xd1,0xd1,0xd1,0xff,0xc8,0xc8,0xc8,0xff,0xc6,0xc6,0xc6, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0x75,0x75,0x75,0xff,0x8c,0x8c,0x8c, + 0xff,0xe3,0xe3,0xe3,0xff,0xea,0xea,0xea,0xff,0xdc,0xdc,0xdc,0xff,0xd1,0xd1,0xd1, + 0xff,0xc8,0xc8,0xc8,0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0x74,0x74,0x74,0xff,0x8c,0x8c,0x8c,0xff,0xe2,0xe2,0xe2,0xff,0xe2,0xe2,0xe2, + 0xff,0xd7,0xd7,0xd7,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xce,0xce,0xce,0xff,0xa7,0xa7,0xa7,0xff,0x61,0x61,0x61,0xff,0xc7,0xc7,0xc7, + 0xff,0xe8,0xe8,0xe8,0xff,0xdb,0xdb,0xdb,0xff,0xd1,0xd1,0xd1,0xff,0xc8,0xc8,0xc8, + 0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74, + 0xff,0x8c,0x8c,0x8c,0xff,0xe2,0xe2,0xe2,0xff,0xe2,0xe2,0xe2,0xff,0xd7,0xd7,0xd7, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xce,0xce,0xce, + 0xff,0xa7,0xa7,0xa7,0xff,0x61,0x61,0x61,0xff,0xc7,0xc7,0xc7,0xff,0xea,0xea,0xea, + 0xff,0xe3,0xe3,0xe3,0xff,0xd7,0xd7,0xd7,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xce,0xce,0xce,0xff,0xa7,0xa7,0xa7,0xff,0x62,0x62,0x62, + 0xff,0xc7,0xc7,0xc7,0xff,0xeb,0xeb,0xeb,0xff,0xea,0xea,0xea,0xff,0xdc,0xdc,0xdc, + 0xff,0xd1,0xd1,0xd1,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74,0xff,0x8c,0x8c,0x8c,0xff,0xe2,0xe2,0xe2, + 0xff,0xe2,0xe2,0xe2,0xff,0xd7,0xd7,0xd7,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xce,0xce,0xce,0xff,0xa7,0xa7,0xa7,0xff,0x60,0x60,0x60, + 0xff,0xb9,0xb9,0xb9,0xff,0x59,0x59,0x59,0xff,0x2f,0x2f,0x2f,0xff,0xac,0xac,0xac, + 0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x59,0x80,0x80,0x80,0xef,0x88,0x88,0x88, + 0xfd,0xbd,0xbd,0xbd,0xfe,0xc0,0xc0,0xbf,0xff,0xb9,0xb9,0xb8,0xff,0xd7,0xd7,0xd7, + 0xff,0xec,0xec,0xec,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xda,0xda,0xda, + 0xff,0xdc,0xdc,0xdc,0xff,0xd4,0xd4,0xd4,0xff,0xdd,0xdd,0xdd,0xff,0xf9,0xf9,0xf9, + 0xff,0xf1,0xf1,0xf1,0xff,0xdf,0xdf,0xdf,0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7, + 0xff,0xc9,0xc9,0xc9,0xff,0xd6,0xd6,0xd6,0xff,0xb5,0xb5,0xb5,0xff,0xba,0xba,0xba, + 0xff,0xf7,0xf7,0xf7,0xff,0xfb,0xfb,0xfb,0xff,0xf1,0xf1,0xf1,0xff,0xdf,0xdf,0xdf, + 0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7,0xff,0xc9,0xc9,0xc9,0xff,0xd6,0xd6,0xd6, + 0xff,0xb5,0xb5,0xb5,0xff,0xba,0xba,0xba,0xff,0xf7,0xf7,0xf7,0xff,0xf8,0xf8,0xf8, + 0xff,0xe9,0xe9,0xe9,0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xcf,0xcf,0xcf,0xff,0xd0,0xd0,0xd0,0xff,0xa2,0xa2,0xa2,0xff,0xe2,0xe2,0xe2, + 0xff,0xfa,0xfa,0xfa,0xff,0xf1,0xf1,0xf1,0xff,0xe0,0xe0,0xe0,0xff,0xc9,0xc9,0xc9, + 0xff,0xc7,0xc7,0xc7,0xff,0xc9,0xc9,0xc9,0xff,0xd6,0xd6,0xd6,0xff,0xb5,0xb5,0xb5, + 0xff,0xba,0xba,0xba,0xff,0xf7,0xf7,0xf7,0xff,0xf8,0xf8,0xf8,0xff,0xe9,0xe9,0xe9, + 0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xd0,0xd0,0xd0, + 0xff,0xd1,0xd1,0xd1,0xff,0xa2,0xa2,0xa2,0xff,0xe3,0xe3,0xe3,0xff,0xfb,0xfb,0xfb, + 0xff,0xf8,0xf8,0xf8,0xff,0xe9,0xe9,0xe9,0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xd0,0xd0,0xd0,0xff,0xd1,0xd1,0xd1,0xff,0xa2,0xa2,0xa2, + 0xff,0xe3,0xe3,0xe3,0xff,0xfb,0xfb,0xfb,0xff,0xfb,0xfb,0xfb,0xff,0xf1,0xf1,0xf1, + 0xff,0xe0,0xe0,0xe0,0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7,0xff,0xc9,0xc9,0xc9, + 0xff,0xd6,0xd6,0xd6,0xff,0xb5,0xb5,0xb5,0xff,0xba,0xba,0xba,0xff,0xf7,0xf7,0xf7, + 0xff,0xf8,0xf8,0xf8,0xff,0xe9,0xe9,0xe9,0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xd0,0xd0,0xd0,0xff,0xd1,0xd1,0xd1,0xff,0xa2,0xa2,0xa2, + 0xff,0xe1,0xe1,0xe1,0xff,0xeb,0xeb,0xeb,0xff,0xa9,0xa9,0xa9,0xff,0xb6,0xb6,0xb5, + 0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x4b,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x2,0x80,0x80,0x80,0x1e,0x80,0x80,0x80,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xe5,0xe5,0xe5,0xfe,0xd3,0xd3,0xd3,0xff,0xc0,0xc0,0xc0,0xff,0xc4,0xc4,0xc3, + 0xff,0xd2,0xd2,0xd2,0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda, + 0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda,0xff,0xdc,0xdc,0xdc,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xda,0xda,0xda,0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3, + 0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xda,0xda,0xda, + 0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde, + 0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd,0xff,0xda,0xda,0xda, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xda,0xda,0xda,0xff,0xce,0xce,0xce, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd, + 0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd,0xff,0xda,0xda,0xda,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd, + 0xff,0xda,0xda,0xda,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xda,0xda,0xda,0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd, + 0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd, + 0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x52,0x52,0x52,0xfd,0x8,0x8,0x8,0xfb,0x0,0x0,0x0,0xaf,0x0,0x0,0x0, + 0x10,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x1d,0x80,0x80,0x80,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf2,0xf2,0xf2,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc4,0xc4,0xc4,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc4,0xc4,0xc4, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x77,0x77,0x77,0xfe,0x27,0x27,0x27,0xfc,0x0,0x0,0x0,0xed,0x0,0x0,0x0, + 0x4e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x1d,0x80,0x80,0x80,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf4,0xf4,0xf4,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xba,0xba,0xba,0xff,0xaa,0xaa,0xaa,0xff,0xd5,0xd5,0xd5, + 0xff,0xd8,0xd8,0xd8,0xff,0xd8,0xd8,0xd8,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0xdb,0xdb,0xdb,0xff,0xec,0xec,0xec, + 0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x7e,0x7e,0x7e,0xfe,0x58,0x58,0x58,0xfd,0x7,0x7,0x7,0xfc,0x0,0x0,0x0, + 0xaf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf4,0xf4,0xf4,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x7b,0x7b,0x7b,0xff,0x28,0x28,0x28, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x36,0x36,0x36,0xff,0xdc,0xdc,0xdc, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x70,0x70,0x70,0xfd,0xe,0xe,0xe,0xfc,0x0,0x0,0x0, + 0xdf,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0x10,0x10,0x10, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x2,0x1,0xff,0x1,0x3,0x1, + 0xff,0x1,0x2,0x1,0xff,0x1,0x2,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2,0xff,0x1e,0x1e,0x1e,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfd,0xe,0xe,0xe,0xfd,0x0,0x0,0x0, + 0xe0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x4,0x0,0xff,0x1,0x15,0x0, + 0xff,0x1,0x13,0x0,0xff,0x0,0x3,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x1,0x0,0xff,0x0,0x3,0x0,0xff,0x1,0x45,0x0,0xff,0x3,0xaa,0x0, + 0xff,0x6,0x9c,0x0,0xff,0x2,0x3e,0x0,0xff,0x0,0x3,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x1,0x1,0x0,0xff,0x1,0x15,0x1,0xff,0x11,0xab,0xb,0xff,0x12,0xc9,0xb, + 0xff,0x9,0xbb,0x1,0xff,0x6,0x9c,0x0,0xff,0x0,0x12,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x1,0x1,0x0,0xff,0xd,0x14,0x9,0xff,0x75,0xa5,0x55,0xff,0x7c,0xc3,0x5a, + 0xff,0x13,0xc8,0xb,0xff,0x3,0xaa,0x0,0xff,0x0,0x14,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x1,0x1,0x0,0xff,0x2,0x3,0x1,0xff,0x34,0x42,0x26,0xff,0x75,0xa5,0x55, + 0xff,0x12,0xac,0xa,0xff,0x1,0x46,0x0,0xff,0x0,0x3,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xb,0xb,0xb,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x13,0x13,0x13, + 0xff,0x3,0x3,0x3,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x3,0x4,0x2,0xff,0xf,0x15,0xb, + 0xff,0x3,0x16,0x2,0xff,0x1,0x4,0x0,0xff,0x0,0x1,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1, + 0xff,0x15,0x15,0x15,0xff,0x72,0x72,0x72,0xff,0x88,0x88,0x88,0xff,0x88,0x88,0x88, + 0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x88,0xff,0x88,0x88,0x88,0xff,0x85,0x85,0x85, + 0xff,0x45,0x45,0x45,0xff,0x4,0x4,0x4,0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x3,0x3,0x3,0xff,0x14,0x14,0x14, + 0xff,0x15,0x17,0x15,0xff,0x15,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15, + 0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15, + 0xff,0x5c,0x5c,0x5b,0xff,0x87,0x87,0x87,0xff,0x7b,0x7b,0x7b,0xff,0x71,0x71,0x71, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x77,0x77,0x77,0xff,0x7e,0x7e,0x7e, + 0xff,0x8e,0x8e,0x8e,0xff,0x48,0x48,0x48,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x13,0x13,0x13,0xff,0x3,0x3,0x3, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb3,0xb3,0xb3,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x2,0x2,0x2,0xff,0x2d,0x2d,0x2d,0xff,0x80,0x81,0x80, + 0xff,0x88,0x89,0x88,0xff,0x89,0x89,0x89,0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89, + 0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x90,0x90,0x8f,0xff,0x81,0x81,0x81,0xff,0x6c,0x6c,0x6c,0xff,0x1a,0x1a,0x1a, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0x2d,0x2d,0x2d,0xff,0x72,0x72,0x72, + 0xff,0x7f,0x7f,0x7f,0xff,0x89,0x89,0x88,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89, + 0xff,0x89,0x89,0x89,0xff,0x88,0x88,0x88,0xff,0x85,0x85,0x85,0xff,0x42,0x42,0x42, + 0xff,0x3,0x3,0x3,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xbb,0xbb,0xbb, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0xc,0xc,0xc,0xff,0x64,0x64,0x64,0xff,0x77,0x77,0x77, + 0xff,0x77,0x77,0x77,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x72,0x72,0x72,0xff,0x2c,0x2c,0x2c,0xff,0x2,0x2,0x2, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2,0xff,0x2f,0x2f,0x2f, + 0xff,0x73,0x73,0x73,0xff,0x77,0x77,0x77,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x79,0x79,0x79,0xff,0x7d,0x7d,0x7d, + 0xff,0x11,0x11,0x11,0xff,0x2,0x2,0x2,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbb,0xbb,0xbb, + 0xff,0x97,0x97,0x97,0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87, + 0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87,0xff,0x97,0x97,0x97, + 0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x7,0x7,0x7,0xff,0x42,0x42,0x42,0xff,0x4e,0x4e,0x4e, + 0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4a,0x4a,0x4a,0xff,0x1b,0x1b,0x1b,0xff,0x1,0x1,0x1, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x8,0x8,0x8,0xff,0x32,0x32,0x32, + 0xff,0x4d,0x4d,0x4d,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4e,0x4e,0x4e,0xff,0x45,0x45,0x45, + 0xff,0x9,0x9,0x9,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x80,0x80,0x80,0x1d,0x7f,0x7f,0x7f,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc6,0xc6,0xc6,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8, + 0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x19,0x19,0x19,0xff,0x3d,0x3d,0x3d, + 0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x45,0x45,0x45,0xff,0x48,0x48,0x48,0xff,0x41,0x41,0x41,0xff,0x19,0x19,0x19, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x25,0x25,0x25,0xff,0x47,0x47,0x47, + 0xff,0x48,0x48,0x48,0xff,0x42,0x42,0x42,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x41,0x41,0x41,0xff,0x40,0x40,0x40,0xff,0x3d,0x3d,0x3d,0xff,0x19,0x19,0x19, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x80,0x80,0x80,0x1d,0x7f,0x7f,0x7f,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf4,0xf4,0xf4,0xff,0xc6,0xc6,0xc6,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbd,0xbd,0xbe,0xff,0xbd,0xbd,0xbe,0xff,0xb6,0xb7,0xb7, + 0xff,0x86,0x86,0x86,0xff,0x7f,0x7f,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x7,0x7,0x7, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x19,0x19,0x19,0xff,0x41,0x41,0x41,0xff,0x48,0x48,0x48,0xff,0x44,0x44,0x44, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x44,0x44,0x44,0xff,0x48,0x48,0x48, + 0xff,0x3e,0x3e,0x3e,0xff,0xe,0xe,0xe,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x7,0x7,0x7,0xff,0x1,0x1,0x1, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0x82, + 0x0,0x7e,0x7e,0x7e,0x1,0x7f,0x7f,0x80,0x1d,0x7e,0x7e,0x7e,0xe1,0x8c,0x8c,0x8c, + 0xfd,0xed,0xed,0xed,0xfe,0xf3,0xf3,0xf4,0xff,0xc4,0xc4,0xc5,0xff,0xbe,0xbe,0xbf, + 0xff,0xbe,0xbe,0xbf,0xff,0xbd,0xbd,0xbe,0xff,0xbd,0xbd,0xbe,0xff,0xb7,0xb7,0xb8, + 0xff,0x85,0x85,0x86,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x86,0x86,0x86, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x1,0x1,0x1,0xff,0x18,0x18,0x18,0xff,0x3d,0x3d,0x3d,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x3d,0x3d,0x3d, + 0xff,0x18,0x18,0x18,0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0x8e,0x0,0x69,0x69,0x82,0x0,0x7e,0x7e,0x8c, + 0x0,0x75,0x75,0x81,0x2,0x7b,0x7b,0x7e,0x1e,0x7d,0x7d,0x7e,0xe1,0x8b,0x8b,0x8c, + 0xfd,0xe5,0xe5,0xe7,0xfe,0xdf,0xdf,0xe2,0xff,0xa1,0xa1,0xa8,0xff,0x86,0x86,0x92, + 0xff,0x78,0x78,0x90,0xff,0x6c,0x6c,0x91,0xff,0x6c,0x6c,0x91,0xff,0x6b,0x6b,0x8f, + 0xff,0x66,0x66,0x75,0xff,0x73,0x73,0x7d,0xff,0x7c,0x7c,0x7f,0xff,0x7e,0x7e,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x80,0xff,0x85,0x85,0x85, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd, + 0xff,0xbe,0xbe,0xbd,0xff,0xb8,0xb8,0xb2,0xff,0xad,0xad,0xa0,0xff,0x8e,0x8e,0x69, + 0xff,0x8b,0x8b,0x61,0xff,0x8c,0x8c,0x61,0xff,0x8b,0x8b,0x60,0xff,0x8c,0x8c,0x60, + 0xff,0x95,0x95,0x60,0xff,0x99,0x9a,0x62,0xff,0xa7,0xa8,0x84,0xff,0xb9,0xb9,0xb2, + 0xff,0xbe,0xbe,0xbc,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x7,0x7,0x7,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x7,0x7,0x7, + 0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x61,0x61,0x79,0x0,0x4e,0x4e,0x74,0x0,0x6a,0x6a,0x80,0x0,0x64,0x64,0x84, + 0x1,0x53,0x53,0x90,0x2,0x73,0x72,0x83,0x29,0x74,0x74,0x7d,0xe4,0x6c,0x6c,0x7a, + 0xfd,0x75,0x75,0x97,0xfe,0x47,0x47,0x81,0xff,0x3b,0x3c,0x7d,0xff,0x23,0x23,0x80, + 0xff,0x1a,0x1a,0x8c,0xff,0x24,0x23,0xaf,0xff,0x21,0x21,0xb1,0xff,0x22,0x22,0xb1, + 0xff,0x18,0x18,0x94,0xff,0x22,0x22,0x8a,0xff,0x42,0x43,0x7e,0xff,0x6b,0x6b,0x7f, + 0xff,0x7c,0x7c,0x81,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x85,0x85,0x85, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd,0xff,0xba,0xba,0xb5,0xff,0xaf,0xaf,0xa0, + 0xff,0x91,0x91,0x69,0xff,0x81,0x81,0x3b,0xff,0x6c,0x6c,0x15,0xff,0x6a,0x6a,0x5, + 0xff,0x73,0x74,0x1,0xff,0x74,0x75,0x1,0xff,0x74,0x75,0x1,0xff,0x74,0x75,0x1, + 0xff,0x73,0x73,0x3,0xff,0x75,0x76,0x9,0xff,0x7f,0x80,0x17,0xff,0x8c,0x8d,0x3e, + 0xff,0xa3,0xa3,0x84,0xff,0xba,0xba,0xb5,0xff,0xbe,0xbe,0xbc,0xff,0xbd,0xbd,0xbc, + 0xff,0xbd,0xbd,0xbd,0xff,0xb6,0xb6,0xb6,0xff,0x77,0x77,0x77,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0x9d, + 0x0,0x7f,0x7f,0x90,0x0,0x81,0x81,0xa0,0x0,0x70,0x71,0xa1,0x2,0x7a,0x7a,0x96, + 0x10,0x6d,0x6e,0x88,0x4e,0x4d,0x4e,0x7b,0xb2,0x2e,0x2e,0x7b,0xf9,0x24,0x24,0xa4, + 0xfe,0x19,0x18,0xc2,0xfe,0x7,0x6,0xca,0xff,0x11,0x10,0xda,0xff,0x14,0x12,0xe8, + 0xff,0xc,0xa,0xea,0xff,0xc,0x9,0xf3,0xff,0xb,0x9,0xf4,0xff,0xb,0x9,0xf2, + 0xff,0x7,0x5,0xec,0xff,0xf,0xd,0xe6,0xff,0x11,0x10,0xc9,0xff,0x1a,0x19,0x97, + 0xff,0x43,0x44,0x78,0xff,0x6f,0x6f,0x85,0xff,0x7e,0x7e,0x82,0xff,0x83,0x83,0x84, + 0xff,0xb7,0xb7,0xb7,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbd, + 0xff,0xb9,0xb9,0xb5,0xff,0xa7,0xa7,0x8e,0xff,0x8a,0x8a,0x48,0xff,0x77,0x78,0x17, + 0xff,0x75,0x76,0x4,0xff,0x7b,0x7c,0x1,0xff,0x7f,0x81,0x1,0xff,0x7e,0x80,0x1, + 0xff,0x7f,0x81,0x1,0xff,0x7f,0x81,0x1,0xff,0x80,0x82,0x1,0xff,0x7f,0x81,0x1, + 0xff,0x7c,0x7e,0x1,0xff,0x7d,0x7f,0x1,0xff,0x79,0x7a,0x4,0xff,0x73,0x74,0x3, + 0xff,0x72,0x73,0x11,0xff,0x8a,0x8a,0x49,0xff,0xa1,0xa1,0x83,0xff,0xb7,0xb7,0xb2, + 0xff,0xbc,0xbc,0xbc,0xff,0xb5,0xb5,0xb5,0xff,0x77,0x77,0x77,0xff,0xe,0xe,0xe, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xc9,0x0,0x81,0x81,0xc8, + 0x0,0x7e,0x7e,0xc1,0x1,0x78,0x78,0xb5,0x2,0x6a,0x6a,0x87,0x1b,0x6d,0x6d,0x88, + 0xa4,0x49,0x4a,0x8c,0xed,0x22,0x22,0xa6,0xfc,0x1a,0x19,0xd8,0xfe,0x15,0x14,0xef, + 0xfe,0xc,0x9,0xf3,0xfe,0xa,0x7,0xf3,0xff,0xc,0xa,0xf2,0xff,0xb,0x8,0xf2, + 0xff,0x13,0x10,0xf2,0xff,0xc,0xa,0xf3,0xff,0xf,0xd,0xf3,0xff,0xd,0xb,0xf2, + 0xff,0xa,0x8,0xf2,0xff,0x7,0x4,0xf1,0xff,0x9,0x6,0xf1,0xff,0x7,0x5,0xde, + 0xff,0xe,0xd,0xb2,0xff,0x29,0x29,0x82,0xff,0x5d,0x5d,0x7a,0xff,0x95,0x95,0x99, + 0xff,0xb9,0xb9,0xba,0xff,0xbd,0xbd,0xbc,0xff,0xbd,0xbd,0xba,0xff,0xa8,0xa8,0x93, + 0xff,0x8a,0x8b,0x48,0xff,0x7c,0x7d,0x12,0xff,0x7e,0x80,0x3,0xff,0x82,0x83,0x1, + 0xff,0x8c,0x8c,0x1,0xff,0x91,0x91,0x0,0xff,0x93,0x93,0x0,0xff,0x8f,0x8f,0x0, + 0xff,0x8f,0x8f,0x0,0xff,0x90,0x90,0x0,0xff,0x8f,0x90,0x0,0xff,0x90,0x90,0x0, + 0xff,0x90,0x90,0x0,0xff,0x8f,0x8f,0x0,0xff,0x8d,0x8d,0x0,0xff,0x8c,0x8c,0x0, + 0xff,0x82,0x83,0x1,0xff,0x7a,0x7b,0x2,0xff,0x76,0x77,0xc,0xff,0x87,0x87,0x43, + 0xff,0xb5,0xb5,0xa9,0xff,0xb5,0xb5,0xb4,0xff,0x77,0x77,0x77,0xff,0xf,0xf,0xe, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0xd9,0x0,0x80,0x80,0xcd,0x0,0x80,0x80,0xd0, + 0x1,0x7c,0x7c,0xac,0x5,0x7f,0x7f,0xa9,0x26,0x6c,0x6c,0x9b,0xa7,0x59,0x59,0xbc, + 0xf8,0x39,0x38,0xd7,0xfb,0x29,0x27,0xf1,0xfd,0x21,0x1e,0xf3,0xfe,0x1f,0x1d,0xf3, + 0xfe,0x21,0x1e,0xf4,0xfe,0x28,0x26,0xf6,0xff,0x2d,0x2b,0xf7,0xff,0x33,0x31,0xf9, + 0xff,0x37,0x35,0xfa,0xff,0x38,0x37,0xfa,0xff,0x39,0x37,0xfa,0xff,0x2d,0x2c,0xf7, + 0xff,0x25,0x22,0xf6,0xff,0x15,0x13,0xf3,0xff,0x9,0x7,0xf2,0xff,0x7,0x4,0xf1, + 0xff,0x7,0x5,0xec,0xff,0xb,0xa,0xca,0xff,0x1a,0x1a,0x8a,0xff,0x74,0x74,0x94, + 0xff,0xb9,0xb9,0xbc,0xff,0xbb,0xbb,0xb9,0xff,0xa5,0xa5,0x80,0xff,0x82,0x82,0x22, + 0xff,0x8a,0x8a,0x3,0xff,0x8e,0x8e,0x1,0xff,0x93,0x92,0x1,0xff,0x99,0x97,0x0, + 0xff,0xa1,0xa0,0x0,0xff,0xa7,0xa6,0x0,0xff,0xac,0xab,0x0,0xff,0xac,0xac,0x0, + 0xff,0xb0,0xb0,0x1,0xff,0xb2,0xb1,0x0,0xff,0xb1,0xb1,0x1,0xff,0xb3,0xb3,0x0, + 0xff,0xb2,0xb2,0x1,0xff,0xb1,0xb1,0x0,0xff,0xad,0xad,0x0,0xff,0xa6,0xa5,0x0, + 0xff,0x98,0x96,0x0,0xff,0x88,0x89,0x1,0xff,0x80,0x81,0x2,0xff,0x79,0x7a,0x4, + 0xff,0x86,0x87,0x38,0xff,0x99,0x99,0x7e,0xff,0x76,0x76,0x74,0xff,0xf,0xf,0xe, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x81,0x81,0xf1,0x0,0x7f,0x7f,0xcd,0x0,0x81,0x81,0xdf,0x1,0x7f,0x7f,0xd2, + 0x5,0x80,0x80,0xc2,0x56,0x81,0x81,0xb9,0xd7,0x72,0x72,0xda,0xf8,0x55,0x54,0xf7, + 0xfd,0x3a,0x39,0xf9,0xfe,0x2f,0x2e,0xf7,0xfe,0x31,0x2f,0xf8,0xfe,0x35,0x34,0xf9, + 0xff,0x3b,0x3a,0xfb,0xff,0x41,0x3f,0xfc,0xff,0x41,0x40,0xfc,0xff,0x42,0x41,0xfc, + 0xff,0x44,0x43,0xfc,0xff,0x45,0x44,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3f,0x3e,0xfb, + 0xff,0x3b,0x3a,0xfa,0xff,0x32,0x31,0xf9,0xff,0x21,0x1f,0xf5,0xff,0xf,0xd,0xf3, + 0xff,0x8,0x6,0xf1,0xff,0x8,0x5,0xf1,0xff,0x7,0x5,0xd8,0xff,0x22,0x22,0x97, + 0xff,0x87,0x87,0x9f,0xff,0xb2,0xb2,0x7c,0xff,0x99,0x99,0x14,0xff,0x9d,0x9c,0x2, + 0xff,0x9e,0x9d,0x1,0xff,0xa2,0xa0,0x0,0xff,0xa5,0xa4,0x0,0xff,0xaa,0xaa,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xb7,0xb8,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb7,0xb8,0x0, + 0xff,0xb7,0xb7,0x0,0xff,0xb9,0xba,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb6,0xb7,0x0, + 0xff,0xb5,0xb6,0x0,0xff,0xb8,0xb8,0x0,0xff,0xb6,0xb6,0x0,0xff,0xb4,0xb4,0x0, + 0xff,0xaf,0xae,0x0,0xff,0x9c,0x9b,0x0,0xff,0x88,0x88,0x0,0xff,0x7f,0x80,0x1, + 0xff,0x79,0x7b,0x1,0xff,0x72,0x73,0x10,0xff,0x6c,0x6c,0x46,0xff,0x12,0x12,0xc, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd8,0xd8,0xd8, + 0xff,0xc4,0xc4,0xc4,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0, + 0x0,0x78,0x78,0xf5,0x0,0x82,0x82,0xe7,0x1,0x80,0x80,0xd9,0x5,0x7f,0x7f,0xd3, + 0x56,0x7f,0x7f,0xdf,0xe2,0x78,0x78,0xe9,0xfb,0x61,0x60,0xf8,0xfd,0x4a,0x49,0xfc, + 0xfe,0x3e,0x3d,0xfb,0xfe,0x3f,0x3e,0xfc,0xfe,0x43,0x41,0xfc,0xff,0x42,0x40,0xfc, + 0xff,0x46,0x44,0xfc,0xff,0x46,0x45,0xfc,0xff,0x48,0x47,0xfd,0xff,0x4d,0x4c,0xfc, + 0xff,0x52,0x51,0xfd,0xff,0x51,0x50,0xfd,0xff,0x51,0x50,0xfd,0xff,0x4d,0x4c,0xfc, + 0xff,0x49,0x48,0xfc,0xff,0x41,0x40,0xfc,0xff,0x3b,0x3a,0xfa,0xff,0x2f,0x2d,0xf8, + 0xff,0x24,0x21,0xf5,0xff,0x14,0x10,0xf2,0xff,0xa,0x7,0xf1,0xff,0xd,0xb,0xd6, + 0xff,0x2a,0x2a,0x86,0xff,0x9b,0x9b,0x1e,0xff,0xb1,0xb1,0x2,0xff,0xb2,0xb1,0x1, + 0xff,0xb1,0xb1,0x0,0xff,0xae,0xae,0x1,0xff,0xb1,0xb1,0x1,0xff,0xb3,0xb3,0x1, + 0xff,0xb6,0xb6,0x0,0xff,0xb8,0xb8,0x0,0xff,0xbc,0xbe,0x0,0xff,0xc0,0xc2,0x0, + 0xff,0xc5,0xc6,0x0,0xff,0xc7,0xc8,0x0,0xff,0xc3,0xc4,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xbb,0xbc,0x0,0xff,0xbb,0xbc,0x0,0xff,0xb7,0xb7,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xaf,0xae,0x0,0xff,0x9e,0x9d,0x0,0xff,0x88,0x89,0x0, + 0xff,0x7f,0x81,0x1,0xff,0x7d,0x7f,0x1,0xff,0x72,0x73,0x6,0xff,0x42,0x42,0x2, + 0xff,0x10,0x10,0x7,0xff,0xe,0xe,0xe,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0x10,0x10,0x10,0xff,0x2a,0x2a,0x2a,0xff,0xda,0xda,0xda, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x0,0x83,0x83,0xf2, + 0x0,0x81,0x81,0xf0,0x0,0x80,0x80,0xda,0x5,0x81,0x81,0xe6,0x56,0x7c,0x7c,0xe9, + 0xe2,0x6c,0x6c,0xf8,0xfb,0x64,0x64,0xfa,0xfd,0x57,0x57,0xfc,0xfe,0x49,0x48,0xfc, + 0xfe,0x46,0x44,0xfc,0xfe,0x4c,0x4b,0xfd,0xff,0x4c,0x4b,0xfd,0xff,0x50,0x4f,0xfc, + 0xff,0x4f,0x4e,0xfd,0xff,0x52,0x51,0xfd,0xff,0x53,0x52,0xfd,0xff,0x54,0x54,0xfc, + 0xff,0x58,0x57,0xfc,0xff,0x56,0x55,0xfd,0xff,0x58,0x58,0xfc,0xff,0x54,0x53,0xfc, + 0xff,0x52,0x51,0xfc,0xff,0x50,0x4f,0xfc,0xff,0x48,0x47,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x36,0x35,0xf9,0xff,0x2d,0x2b,0xf7,0xff,0x1f,0x1c,0xf3,0xff,0x15,0x12,0xf1, + 0xff,0xd,0xc,0xc9,0xff,0x53,0x53,0x56,0xff,0xa6,0xa6,0x9,0xff,0xb3,0xb3,0x1, + 0xff,0xb3,0xb3,0x1,0xff,0xb4,0xb4,0x0,0xff,0xb4,0xb4,0x1,0xff,0xb7,0xb7,0x0, + 0xff,0xbd,0xbe,0x0,0xff,0xc5,0xc7,0x0,0xff,0xca,0xcb,0x0,0xff,0xd3,0xd3,0x0, + 0xff,0xd9,0xd8,0x0,0xff,0xd9,0xd8,0x0,0xff,0xd7,0xd7,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xd3,0xd3,0x0,0xff,0xce,0xce,0x0,0xff,0xc7,0xc8,0x0,0xff,0xbf,0xc0,0x0, + 0xff,0xb7,0xb7,0x0,0xff,0xb1,0xb1,0x0,0xff,0xa8,0xa7,0x0,0xff,0x9c,0x9c,0x0, + 0xff,0x8c,0x8c,0x0,0xff,0x80,0x82,0x0,0xff,0x7e,0x80,0x1,0xff,0x6e,0x6f,0x1, + 0xff,0x69,0x69,0x3d,0xff,0x78,0x78,0x76,0xff,0x77,0x77,0x77,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x81,0x81,0x81,0xff,0xce,0xce,0xce, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x0,0x83,0x83,0xf0, + 0x0,0x7f,0x7f,0xf2,0x1,0x82,0x82,0xea,0x4b,0x7e,0x7e,0xeb,0xe2,0x68,0x68,0xf9, + 0xfb,0x5f,0x5e,0xfb,0xfe,0x59,0x58,0xfc,0xfe,0x53,0x52,0xfd,0xfe,0x4f,0x4e,0xfc, + 0xff,0x51,0x50,0xfd,0xff,0x53,0x52,0xfd,0xff,0x53,0x53,0xfc,0xff,0x57,0x57,0xfc, + 0xff,0x59,0x59,0xfc,0xff,0x62,0x61,0xfc,0xff,0x62,0x61,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x67,0x67,0xfb,0xff,0x67,0x67,0xfb,0xff,0x68,0x68,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x60,0x60,0xfb,0xff,0x59,0x59,0xfc,0xff,0x53,0x52,0xfc,0xff,0x4e,0x4d,0xfc, + 0xff,0x3f,0x3f,0xfc,0xff,0x3b,0x3a,0xfb,0xff,0x33,0x32,0xf9,0xff,0x22,0x1f,0xf3, + 0xff,0x17,0x15,0xee,0xff,0x16,0x14,0xbc,0xff,0x6c,0x6c,0x3b,0xff,0xb0,0xb0,0x3, + 0xff,0xb4,0xb4,0x2,0xff,0xb6,0xb6,0x1,0xff,0xb6,0xb6,0x0,0xff,0xc6,0xc6,0x0, + 0xff,0xd2,0xd2,0x0,0xff,0xd5,0xd5,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xd9,0xd9,0x0,0xff,0xd9,0xd8,0x0,0xff,0xd7,0xd7,0x0,0xff,0xd1,0xd0,0x0, + 0xff,0xc6,0xc6,0x0,0xff,0xbd,0xbd,0x0,0xff,0xb2,0xb2,0x0,0xff,0xae,0xad,0x0, + 0xff,0xa1,0xa0,0x0,0xff,0x92,0x91,0x0,0xff,0x81,0x82,0x0,0xff,0x77,0x78,0x1, + 0xff,0x6f,0x6f,0x13,0xff,0x93,0x93,0x76,0xff,0xb4,0xb4,0xb2,0xff,0xb5,0xb5,0xb5, + 0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x8a,0x8a,0x8a,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf0,0x0,0x82,0x82,0xf1, + 0x1,0x81,0x81,0xf0,0x1b,0x82,0x82,0xf0,0xb2,0x75,0x75,0xf6,0xfb,0x62,0x61,0xfb, + 0xfd,0x58,0x58,0xfc,0xfe,0x53,0x52,0xfc,0xfe,0x50,0x4f,0xfd,0xff,0x53,0x52,0xfd, + 0xff,0x56,0x56,0xfc,0xff,0x5b,0x5a,0xfb,0xff,0x61,0x61,0xfb,0xff,0x67,0x67,0xfb, + 0xff,0x69,0x69,0xfa,0xff,0x6c,0x6c,0xf8,0xff,0x6a,0x6a,0xf9,0xff,0x6f,0x6f,0xf7, + 0xff,0x6e,0x6e,0xf7,0xff,0x6e,0x6e,0xf7,0xff,0x6c,0x6c,0xf8,0xff,0x69,0x69,0xfa, + 0xff,0x69,0x69,0xfa,0xff,0x66,0x66,0xfb,0xff,0x5d,0x5c,0xfb,0xff,0x57,0x57,0xfc, + 0xff,0x51,0x50,0xfc,0xff,0x43,0x43,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x34,0x32,0xf9, + 0xff,0x1c,0x19,0xf2,0xff,0x8,0x6,0xe8,0xff,0x2b,0x2b,0x8c,0xff,0x9f,0x9f,0x13, + 0xff,0xb3,0xb3,0x2,0xff,0xb8,0xb9,0x1,0xff,0xc0,0xc1,0x0,0xff,0xd0,0xd0,0x0, + 0xff,0xd6,0xd5,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xd9,0xd8,0x0, + 0xff,0xd9,0xd9,0x0,0xff,0xdb,0xdb,0x3,0xff,0xdb,0xdb,0x3,0xff,0xdb,0xdb,0x2, + 0xff,0xdb,0xdb,0x2,0xff,0xda,0xda,0x1,0xff,0xd9,0xd8,0x0,0xff,0xd5,0xd4,0x0, + 0xff,0xca,0xca,0x0,0xff,0xbe,0xbf,0x0,0xff,0xb6,0xb7,0x0,0xff,0xb3,0xb3,0x0, + 0xff,0xb2,0xb1,0x0,0xff,0xa5,0xa4,0x0,0xff,0x91,0x91,0x0,0xff,0x80,0x82,0x0, + 0xff,0x74,0x75,0x1,0xff,0x65,0x65,0x1e,0xff,0xae,0xae,0xa4,0xff,0xbd,0xbd,0xbc, + 0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa0,0xa0,0x9f,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x0,0x76,0x76,0xf6, + 0x1,0x82,0x82,0xf0,0x74,0x7b,0x7b,0xf3,0xf8,0x69,0x69,0xf9,0xfc,0x5d,0x5c,0xfc, + 0xfe,0x54,0x53,0xfc,0xfe,0x51,0x50,0xfc,0xff,0x4d,0x4d,0xfc,0xff,0x53,0x52,0xfc, + 0xff,0x58,0x58,0xfc,0xff,0x62,0x61,0xfb,0xff,0x69,0x69,0xfa,0xff,0x6d,0x6d,0xf8, + 0xff,0x6c,0x6c,0xf9,0xff,0x75,0x75,0xf5,0xff,0x7a,0x7a,0xf3,0xff,0x7c,0x7c,0xf2, + 0xff,0x79,0x79,0xef,0xff,0x7c,0x7c,0xf1,0xff,0x79,0x79,0xf4,0xff,0x72,0x72,0xf5, + 0xff,0x69,0x69,0xf9,0xff,0x69,0x69,0xfa,0xff,0x67,0x66,0xfb,0xff,0x5b,0x5a,0xfc, + 0xff,0x57,0x57,0xfc,0xff,0x51,0x50,0xfc,0xff,0x41,0x41,0xfc,0xff,0x3c,0x3b,0xfb, + 0xff,0x28,0x26,0xf5,0xff,0xe,0xc,0xf1,0xff,0x11,0xf,0xc9,0xff,0x67,0x67,0x56, + 0xff,0xba,0xb9,0x9,0xff,0xd0,0xcf,0x1,0xff,0xcf,0xcf,0x0,0xff,0xd5,0xd4,0x0, + 0xff,0xd4,0xd3,0x0,0xff,0xd7,0xd6,0x0,0xff,0xda,0xd9,0x4,0xff,0xe1,0xe0,0x7, + 0xff,0xe6,0xe6,0xb,0xff,0xef,0xef,0xf,0xff,0xf0,0xf0,0x10,0xff,0xf0,0xf0,0x10, + 0xff,0xf0,0xf0,0x10,0xff,0xeb,0xeb,0xe,0xff,0xe1,0xe1,0x7,0xff,0xdb,0xdb,0x4, + 0xff,0xcd,0xcd,0x0,0xff,0xbf,0xc1,0x0,0xff,0xbc,0xbd,0x0,0xff,0xb7,0xb8,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xab,0xab,0x0,0xff,0xa1,0x9f,0x0,0xff,0x8c,0x8c,0x0, + 0xff,0x7b,0x7d,0x1,0xff,0x68,0x68,0x8,0xff,0x8c,0x8c,0x6e,0xff,0xbc,0xbc,0xbb, + 0xff,0xbd,0xbd,0xbc,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xb6,0xb6,0xb5,0xff,0x89,0x89,0x89, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf1,0x0,0x80,0x80,0xf1, + 0xf,0x83,0x83,0xf1,0xaf,0x74,0x74,0xf6,0xfc,0x68,0x68,0xfa,0xfd,0x59,0x58,0xfc, + 0xfe,0x52,0x51,0xfc,0xff,0x4d,0x4c,0xfc,0xff,0x4a,0x49,0xfc,0xff,0x52,0x51,0xfc, + 0xff,0x58,0x57,0xfc,0xff,0x55,0x55,0xe9,0xff,0x70,0x70,0xf1,0xff,0x78,0x78,0xf4, + 0xff,0x81,0x80,0xf2,0xff,0x7d,0x7c,0xeb,0xff,0x72,0x6c,0xe6,0xff,0x50,0x4f,0xc8, + 0xff,0x4d,0x46,0xc2,0xff,0x55,0x55,0xbf,0xff,0x69,0x66,0xd3,0xff,0x75,0x74,0xec, + 0xff,0x76,0x76,0xf4,0xff,0x69,0x69,0xf8,0xff,0x69,0x69,0xfa,0xff,0x66,0x66,0xfb, + 0xff,0x59,0x59,0xfc,0xff,0x51,0x50,0xfc,0xff,0x47,0x47,0xfc,0xff,0x40,0x40,0xfc, + 0xff,0x33,0x32,0xf8,0xff,0x15,0x13,0xf2,0xff,0x7,0x5,0xea,0xff,0x23,0x22,0xa9, + 0xff,0x9c,0x9b,0x33,0xff,0xd7,0xd6,0x2,0xff,0xd0,0xd0,0x0,0xff,0xcf,0xce,0x0, + 0xff,0xd4,0xd4,0x0,0xff,0xd9,0xd8,0x2,0xff,0xea,0xea,0xd,0xff,0xe1,0xe1,0x15, + 0xff,0xb8,0xc4,0x3f,0xff,0x94,0x9e,0x66,0xff,0x85,0x7f,0x61,0xff,0x81,0x7f,0x49, + 0xff,0x9d,0xa4,0x41,0xff,0xd4,0xd6,0x1c,0xff,0xed,0xed,0x12,0xff,0xeb,0xeb,0xd, + 0xff,0xda,0xda,0x3,0xff,0xd1,0xd1,0x0,0xff,0xc7,0xc8,0x0,0xff,0xbd,0xbd,0x0, + 0xff,0xb4,0xb4,0x0,0xff,0xaf,0xaf,0x0,0xff,0xa9,0xa8,0x0,0xff,0x9d,0x9c,0x0, + 0xff,0x85,0x86,0x0,0xff,0x72,0x72,0x1,0xff,0x67,0x68,0x2a,0xff,0xad,0xad,0xa7, + 0xff,0xb6,0xb6,0xb5,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xa9,0xa9,0xa9, + 0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0xf3,0x0,0x82,0x82,0xf0, + 0x1d,0x80,0x80,0xf2,0xe0,0x6c,0x6c,0xf9,0xfc,0x66,0x66,0xfa,0xfe,0x59,0x59,0xfc, + 0xfe,0x4f,0x4e,0xfd,0xff,0x48,0x47,0xfc,0xff,0x42,0x42,0xfc,0xff,0x45,0x44,0xfc, + 0xff,0x53,0x53,0xf7,0xff,0x56,0x56,0xdc,0xff,0x76,0x76,0xeb,0xff,0x83,0x82,0xf0, + 0xff,0x78,0x73,0xf3,0xff,0x45,0x2c,0xe2,0xff,0x26,0xd,0xc5,0xff,0x8,0x4,0x7d, + 0xff,0x7,0x2,0x7c,0xff,0x9,0x6,0x7d,0xff,0xf,0xb,0x89,0xff,0x2b,0x2a,0xa4, + 0xff,0x5e,0x60,0xd2,0xff,0x76,0x75,0xf1,0xff,0x6e,0x6e,0xf7,0xff,0x69,0x69,0xfa, + 0xff,0x61,0x60,0xfb,0xff,0x56,0x55,0xfc,0xff,0x52,0x51,0xfc,0xff,0x47,0x46,0xfc, + 0xff,0x3b,0x39,0xfa,0xff,0x24,0x22,0xf4,0xff,0xa,0x7,0xf2,0xff,0xa,0x8,0xd9, + 0xff,0x4d,0x4d,0x74,0xff,0xc3,0xc2,0xe,0xff,0xbb,0xbb,0x1,0xff,0xb6,0xb6,0x0, + 0xff,0xca,0xcb,0x0,0xff,0xd9,0xd8,0x7,0xff,0xaf,0xb1,0x32,0xff,0x6c,0x61,0x8b, + 0xff,0x34,0x1d,0xc8,0xff,0x1b,0xc,0xc2,0xff,0x17,0x3,0xc1,0xff,0x16,0x3,0xba, + 0xff,0x1d,0xe,0xb3,0xff,0x33,0x2a,0x8b,0xff,0x7e,0x7a,0x53,0xff,0xd9,0xda,0x1a, + 0xff,0xee,0xee,0x10,0xff,0xdb,0xda,0x2,0xff,0xd8,0xd8,0x0,0xff,0xcb,0xcb,0x0, + 0xff,0xb7,0xb8,0x0,0xff,0xb4,0xb4,0x0,0xff,0xac,0xab,0x0,0xff,0xa1,0x9f,0x0, + 0xff,0x8c,0x8c,0x0,0xff,0x79,0x7a,0x1,0xff,0x61,0x61,0x10,0xff,0x7d,0x7d,0x70, + 0xff,0x84,0x84,0x83,0xff,0x84,0x84,0x84,0xff,0x85,0x85,0x85,0xff,0x85,0x85,0x85, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x92,0x92,0x92, + 0xff,0xab,0xab,0xab,0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc, + 0xff,0xa9,0xa9,0xa9,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x72,0xf7,0x1,0x82,0x82,0xf2, + 0x1d,0x7a,0x7a,0xf4,0xe0,0x6a,0x6a,0xfa,0xfd,0x64,0x64,0xfb,0xfe,0x57,0x56,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3e,0x3d,0xfc,0xff,0x35,0x35,0xf6, + 0xff,0x3e,0x3e,0xe7,0xff,0x44,0x44,0xc4,0xff,0x67,0x66,0xc4,0xff,0x76,0x6f,0xed, + 0xff,0x4a,0x2a,0xf7,0xff,0x2c,0x3,0xe9,0xff,0x18,0x1,0xba,0xff,0x10,0x1,0xab, + 0xff,0x13,0x1,0xbb,0xff,0x13,0x1,0xba,0xff,0x10,0x1,0xac,0xff,0xd,0x2,0x99, + 0xff,0x18,0x11,0x99,0xff,0x4c,0x48,0xbe,0xff,0x7a,0x79,0xeb,0xff,0x74,0x74,0xf5, + 0xff,0x68,0x68,0xfa,0xff,0x5d,0x5d,0xfb,0xff,0x53,0x52,0xfc,0xff,0x4d,0x4c,0xfc, + 0xff,0x3d,0x3d,0xfb,0xff,0x2e,0x2c,0xf7,0xff,0xe,0xb,0xf2,0xff,0x6,0x4,0xee, + 0xff,0x11,0x10,0xb2,0xff,0x6f,0x6f,0x3d,0xff,0x85,0x85,0x7,0xff,0x81,0x80,0x2, + 0xff,0xac,0xab,0x6,0xff,0xa7,0xaa,0x4f,0xff,0x5b,0x4d,0xc2,0xff,0x3a,0x11,0xed, + 0xff,0x26,0x4,0xde,0xff,0x17,0x2,0xc5,0xff,0x17,0x2,0xc4,0xff,0x17,0x2,0xc4, + 0xff,0x17,0x2,0xc4,0xff,0x18,0x2,0xc4,0xff,0x1a,0xa,0xb6,0xff,0x57,0x59,0x62, + 0xff,0xd1,0xd6,0x1f,0xff,0xe9,0xe9,0xe,0xff,0xd8,0xd8,0x1,0xff,0xcf,0xcf,0x0, + 0xff,0xc3,0xc4,0x0,0xff,0xb7,0xb7,0x0,0xff,0xaf,0xaf,0x0,0xff,0xa4,0xa3,0x0, + 0xff,0x92,0x91,0x0,0xff,0x7f,0x80,0x0,0xff,0x65,0x66,0x3,0xff,0x62,0x62,0x3b, + 0xff,0x70,0x70,0x6e,0xff,0x70,0x70,0x70,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x75,0x75,0x75,0xff,0x87,0x87,0x87,0xff,0xa8,0xa8,0xa8,0xff,0xbb,0xbb,0xbb, + 0xff,0xbc,0xbc,0xbc,0xff,0xa8,0xa8,0xa8,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x67,0xfa,0x1,0x82,0x82,0xdc, + 0x4e,0x74,0x74,0xf4,0xef,0x69,0x69,0xfa,0xfd,0x62,0x62,0xfb,0xfe,0x52,0x51,0xfc, + 0xff,0x48,0x47,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x39,0x37,0xf9,0xff,0x2e,0x2d,0xf7, + 0xff,0x35,0x35,0xdb,0xff,0x46,0x46,0xb5,0xff,0x63,0x62,0xc6,0xff,0x74,0x61,0xf3, + 0xff,0x36,0x1b,0xdb,0xff,0x36,0x1c,0xdb,0xff,0x32,0x1e,0xd3,0xff,0x35,0x23,0xd2, + 0xff,0x35,0x23,0xd2,0xff,0x34,0x21,0xd1,0xff,0x2b,0x18,0xce,0xff,0x16,0x2,0xc0, + 0xff,0x14,0x1,0xb8,0xff,0x13,0xe,0x87,0xff,0x64,0x64,0xd0,0xff,0x7f,0x7f,0xf0, + 0xff,0x70,0x70,0xf7,0xff,0x69,0x69,0xfa,0xff,0x5c,0x5b,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x46,0x45,0xfc,0xff,0x3b,0x39,0xfa,0xff,0x16,0x13,0xf3,0xff,0x5,0x3,0xf1, + 0xff,0x6,0x4,0xdb,0xff,0x31,0x32,0x6d,0xff,0x64,0x65,0x11,0xff,0x5c,0x5d,0x9, + 0xff,0x75,0x7f,0x50,0xff,0x7a,0x6f,0xda,0xff,0x65,0x4c,0xe7,0xff,0x32,0x16,0xda, + 0xff,0x33,0x1e,0xd5,0xff,0x34,0x21,0xd2,0xff,0x36,0x23,0xd3,0xff,0x35,0x22,0xd3, + 0xff,0x31,0x1e,0xd0,0xff,0x1d,0xa,0xc6,0xff,0x17,0x2,0xc2,0xff,0x14,0xa,0x96, + 0xff,0x4d,0x60,0x64,0xff,0xd6,0xdb,0x1d,0xff,0xe6,0xe6,0x9,0xff,0xd8,0xd8,0x1, + 0xff,0xcf,0xcf,0x0,0xff,0xbc,0xbd,0x0,0xff,0xb4,0xb3,0x0,0xff,0xab,0xab,0x0, + 0xff,0x98,0x96,0x0,0xff,0x80,0x81,0x0,0xff,0x69,0x69,0x0,0xff,0x51,0x51,0x1e, + 0xff,0x18,0x18,0x14,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0x10,0x10,0x10,0xff,0x1e,0x1e,0x1e,0xff,0x58,0x58,0x57, + 0xff,0x84,0x84,0x83,0xff,0xb1,0xb1,0xb1,0xff,0xa8,0xa8,0xa8,0xff,0x86,0x86,0x86, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0xfa,0x1,0x82,0x82,0xed, + 0x7f,0x74,0x74,0xf5,0xfc,0x68,0x68,0xfa,0xfd,0x5c,0x5b,0xfc,0xfe,0x4d,0x4c,0xfc, + 0xff,0x44,0x43,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x2e,0x2c,0xf7,0xff,0x21,0x20,0xe9, + 0xff,0x2b,0x2b,0xc1,0xff,0x34,0x33,0x97,0xff,0x71,0x68,0xdb,0xff,0x78,0x64,0xef, + 0xff,0x50,0x3d,0xde,0xff,0x65,0x50,0xeb,0xff,0x6f,0x5a,0xf0,0xff,0x80,0x6b,0xfa, + 0xff,0x80,0x6b,0xf9,0xff,0x7b,0x66,0xf7,0xff,0x56,0x42,0xe2,0xff,0x35,0x23,0xd1, + 0xff,0x1f,0xc,0xc6,0xff,0x11,0x4,0xa6,0xff,0x2d,0x2d,0x9c,0xff,0x7c,0x7c,0xe5, + 0xff,0x80,0x80,0xf1,0xff,0x6c,0x6c,0xf9,0xff,0x5f,0x5e,0xfb,0xff,0x57,0x56,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x3d,0x3c,0xfb,0xff,0x25,0x23,0xf6,0xff,0x7,0x5,0xf1, + 0xff,0x6,0x3,0xea,0xff,0x19,0x1a,0x87,0xff,0x5e,0x5f,0x16,0xff,0x54,0x58,0x18, + 0xff,0x68,0x70,0xb5,0xff,0x87,0x72,0xf5,0xff,0x5c,0x49,0xe2,0xff,0x57,0x43,0xe3, + 0xff,0x6a,0x55,0xee,0xff,0x7b,0x66,0xf7,0xff,0x80,0x6b,0xfa,0xff,0x80,0x6b,0xfa, + 0xff,0x69,0x55,0xed,0xff,0x48,0x35,0xdb,0xff,0x24,0x12,0xc9,0xff,0x1b,0x9,0xbc, + 0xff,0x18,0x13,0x8d,0xff,0x96,0x9a,0x54,0xff,0xea,0xea,0xd,0xff,0xda,0xda,0x2, + 0xff,0xd4,0xd4,0x0,0xff,0xc6,0xc7,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb1,0xb0,0x0, + 0xff,0x9b,0x99,0x0,0xff,0x82,0x83,0x0,0xff,0x74,0x74,0x0,0xff,0x4d,0x4d,0x6, + 0xff,0xa,0xa,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2, + 0xff,0xc,0xc,0xc,0xff,0x42,0x42,0x42,0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7, + 0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0xfb,0x1,0x80,0x80,0xf2, + 0x7f,0x70,0x70,0xf7,0xfc,0x67,0x67,0xfb,0xfd,0x55,0x54,0xfc,0xfe,0x4a,0x49,0xfd, + 0xff,0x44,0x42,0xfc,0xff,0x3d,0x3c,0xfb,0xff,0x22,0x1f,0xf4,0xff,0x1f,0x1d,0xe8, + 0xff,0x12,0x11,0xa2,0xff,0x2c,0x30,0x86,0xff,0x8a,0x7b,0xef,0xff,0x94,0x7e,0xfc, + 0xff,0x82,0x6b,0xfb,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x82,0x6c,0xfa,0xff,0x7f,0x69,0xf9, + 0xff,0x5c,0x48,0xe6,0xff,0x19,0x8,0xbf,0xff,0x14,0x10,0x91,0xff,0x69,0x6d,0xca, + 0xff,0x83,0x83,0xf0,0xff,0x75,0x75,0xf5,0xff,0x68,0x68,0xfa,0xff,0x5d,0x5d,0xfb, + 0xff,0x51,0x50,0xfc,0xff,0x45,0x44,0xfc,0xff,0x2e,0x2b,0xf7,0xff,0xd,0xa,0xf2, + 0xff,0x5,0x2,0xea,0xff,0x19,0x19,0x87,0xff,0x5e,0x5f,0x16,0xff,0x58,0x57,0x43, + 0xff,0x6f,0x57,0xe5,0xff,0x9a,0x86,0xfc,0xff,0x85,0x6f,0xfb,0xff,0x86,0x70,0xfd, + 0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe, + 0xff,0x86,0x70,0xfd,0xff,0x80,0x6b,0xf9,0xff,0x76,0x61,0xf4,0xff,0x35,0x22,0xd1, + 0xff,0x12,0x5,0xa8,0xff,0x4f,0x57,0x7e,0xff,0xe2,0xe6,0x1d,0xff,0xe4,0xe4,0x8, + 0xff,0xd9,0xd8,0x0,0xff,0xcc,0xcc,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb1,0xb1,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0x87,0x87,0x0,0xff,0x74,0x75,0x0,0xff,0x4d,0x4d,0x3, + 0xff,0xa,0xa,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2, + 0xff,0x2,0x2,0x2,0xff,0x5,0x5,0x5,0xff,0x40,0x40,0x40,0xff,0xa9,0xa9,0xa9, + 0xff,0xa7,0xa7,0xa7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfb,0x1,0x7d,0x7d,0xf3, + 0x80,0x6c,0x6c,0xf9,0xfd,0x63,0x63,0xfb,0xfd,0x53,0x52,0xfc,0xff,0x49,0x47,0xfd, + 0xff,0x42,0x40,0xfc,0xff,0x37,0x35,0xf9,0xff,0x21,0x1e,0xf4,0xff,0xc,0xb,0xd4, + 0xff,0xc,0xc,0x9a,0xff,0x34,0x34,0x9d,0xff,0x98,0x87,0xf6,0xff,0x9e,0x89,0xfc, + 0xff,0x8a,0x73,0xfd,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x8b,0x75,0xfe,0xff,0x89,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x89,0x73,0xfd, + 0xff,0x7b,0x65,0xf6,0xff,0x3a,0x27,0xd3,0xff,0x15,0xa,0xb0,0xff,0x59,0x5b,0xcd, + 0xff,0x84,0x84,0xef,0xff,0x80,0x80,0xf2,0xff,0x6b,0x6b,0xf9,0xff,0x63,0x62,0xfb, + 0xff,0x57,0x57,0xfc,0xff,0x48,0x47,0xfc,0xff,0x35,0x34,0xf9,0xff,0x15,0x11,0xf2, + 0xff,0x4,0x2,0xeb,0xff,0x19,0x19,0x88,0xff,0x60,0x61,0x18,0xff,0x43,0x42,0x53, + 0xff,0x5c,0x49,0xd2,0xff,0xa7,0x93,0xfc,0xff,0x94,0x7f,0xfd,0xff,0x87,0x70,0xfe, + 0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x89,0x73,0xfe,0xff,0x8b,0x75,0xfe, + 0xff,0x87,0x71,0xfe,0xff,0x8a,0x74,0xfd,0xff,0x86,0x70,0xfc,0xff,0x60,0x4c,0xe7, + 0xff,0x1e,0xd,0xc0,0xff,0x40,0x42,0x9d,0xff,0xd9,0xdb,0x1f,0xff,0xe6,0xe6,0xa, + 0xff,0xda,0xd9,0x0,0xff,0xcd,0xce,0x0,0xff,0xba,0xbb,0x0,0xff,0xb1,0xb1,0x0, + 0xff,0xa0,0x9f,0x0,0xff,0x87,0x87,0x0,0xff,0x74,0x74,0x0,0xff,0x4e,0x4e,0x5, + 0xff,0x17,0x17,0xd,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe, + 0xff,0xe,0xe,0xe,0xff,0x9,0x9,0x9,0xff,0x5,0x5,0x5,0xff,0x40,0x40,0x40, + 0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfb,0x1,0x74,0x74,0xf6, + 0x80,0x6a,0x6a,0xfa,0xfd,0x62,0x62,0xfb,0xfd,0x53,0x52,0xfc,0xff,0x4a,0x48,0xfd, + 0xff,0x44,0x42,0xfc,0xff,0x3a,0x39,0xfa,0xff,0x1d,0x1b,0xf4,0xff,0xa,0x9,0xd4, + 0xff,0xb,0xb,0x9b,0xff,0x28,0x1d,0x9e,0xff,0x97,0x83,0xf4,0xff,0xb9,0xa7,0xfd, + 0xff,0x90,0x79,0xfe,0xff,0x89,0x73,0xfe,0xff,0x89,0x73,0xfe,0xff,0x88,0x72,0xff, + 0xff,0x93,0x7d,0xfe,0xff,0x8a,0x74,0xfe,0xff,0x96,0x80,0xfe,0xff,0x98,0x82,0xfe, + 0xff,0x87,0x70,0xfd,0xff,0x65,0x51,0xeb,0xff,0x1f,0x10,0xc4,0xff,0x51,0x4f,0xd2, + 0xff,0x85,0x85,0xf1,0xff,0x7b,0x7b,0xf4,0xff,0x69,0x69,0xfa,0xff,0x65,0x64,0xfb, + 0xff,0x5d,0x5d,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x3d,0x3c,0xfa,0xff,0x16,0x13,0xf2, + 0xff,0x5,0x2,0xea,0xff,0x19,0x19,0x88,0xff,0x6d,0x6f,0x1e,0xff,0x43,0x41,0x57, + 0xff,0x5e,0x54,0xbe,0xff,0xb8,0xa6,0xfb,0xff,0xa7,0x93,0xfd,0xff,0x8a,0x72,0xfe, + 0xff,0x89,0x72,0xff,0xff,0x88,0x72,0xfe,0xff,0x8b,0x75,0xfe,0xff,0x93,0x7d,0xfe, + 0xff,0x8a,0x73,0xfe,0xff,0x9e,0x89,0xfe,0xff,0x8c,0x75,0xfd,0xff,0x81,0x6b,0xf9, + 0xff,0x3c,0x29,0xd3,0xff,0x40,0x30,0xa4,0xff,0xd5,0xd2,0x1b,0xff,0xeb,0xeb,0xe, + 0xff,0xdc,0xdb,0x1,0xff,0xce,0xce,0x0,0xff,0xba,0xbb,0x0,0xff,0xb1,0xb1,0x0, + 0xff,0x9d,0x9b,0x0,0xff,0x83,0x84,0x0,0xff,0x73,0x74,0x0,0xff,0x59,0x59,0xf, + 0xff,0x6d,0x6d,0x64,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x52,0x52,0x52,0xff,0xf,0xf,0xf,0xff,0x6,0x6,0x6, + 0xff,0x40,0x40,0x40,0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7,0xff,0x85,0x85,0x85, + 0xff,0x7f,0x7f,0x7f,0xfe,0x71,0x71,0x71,0xfd,0xf,0xf,0xf,0xfc,0x0,0x0,0x0, + 0xe0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfb,0x1,0x74,0x74,0xf5, + 0x7f,0x6e,0x6e,0xf8,0xfc,0x62,0x62,0xfb,0xfd,0x54,0x53,0xfc,0xfe,0x4d,0x4c,0xfc, + 0xff,0x43,0x42,0xfc,0xff,0x3c,0x3b,0xfb,0xff,0x20,0x1d,0xf4,0xff,0x8,0x6,0xde, + 0xff,0x5,0x4,0xac,0xff,0x17,0x15,0x7e,0xff,0x68,0x59,0xd6,0xff,0xc4,0xb2,0xfd, + 0xff,0xaa,0x95,0xfe,0xff,0x91,0x7b,0xfe,0xff,0x88,0x72,0xff,0xff,0x8b,0x75,0xff, + 0xff,0x92,0x7c,0xff,0xff,0x8a,0x74,0xff,0xff,0x96,0x80,0xfe,0xff,0x95,0x7f,0xfe, + 0xff,0x8c,0x76,0xfd,0xff,0x7b,0x66,0xf7,0xff,0x39,0x2b,0xcd,0xff,0x5d,0x60,0xc6, + 0xff,0x85,0x85,0xf0,0xff,0x75,0x75,0xf6,0xff,0x68,0x68,0xfa,0xff,0x69,0x68,0xfa, + 0xff,0x5d,0x5d,0xfb,0xff,0x50,0x4f,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x1a,0x18,0xf3, + 0xff,0x6,0x3,0xeb,0xff,0x19,0x19,0x87,0xff,0x6f,0x71,0x1e,0xff,0x46,0x45,0x4e, + 0xff,0x33,0x2e,0xa5,0xff,0xae,0x9d,0xf5,0xff,0xb4,0xa1,0xfd,0xff,0xa2,0x8d,0xfe, + 0xff,0x8a,0x73,0xfe,0xff,0x88,0x72,0xff,0xff,0x93,0x7e,0xff,0xff,0x8a,0x73,0xff, + 0xff,0x93,0x7e,0xfe,0xff,0x92,0x7b,0xfe,0xff,0x95,0x7f,0xfd,0xff,0x86,0x6f,0xfc, + 0xff,0x61,0x4c,0xe4,0xff,0x59,0x53,0xb2,0xff,0xda,0xdb,0x21,0xff,0xe9,0xe9,0xd, + 0xff,0xdb,0xda,0x0,0xff,0xd1,0xd1,0x0,0xff,0xb8,0xb9,0x0,0xff,0xb0,0xaf,0x0, + 0xff,0x9a,0x99,0x0,0xff,0x82,0x83,0x0,0xff,0x73,0x74,0x1,0xff,0x5b,0x5b,0x14, + 0xff,0x7f,0x7f,0x76,0xff,0x84,0x84,0x84,0xff,0x85,0x85,0x85,0xff,0x85,0x85,0x85, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x85,0x85,0x85,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54,0xff,0xf,0xf,0xf, + 0xff,0x6,0x6,0x6,0xff,0x40,0x40,0x40,0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7, + 0xfe,0x85,0x85,0x85,0xfe,0x71,0x71,0x71,0xfd,0xf,0xf,0xf,0xfb,0x0,0x0,0x0, + 0xdf,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfa,0x1,0x7d,0x7d,0xf2, + 0x7f,0x70,0x70,0xf7,0xfc,0x62,0x62,0xfb,0xfd,0x55,0x54,0xfc,0xfe,0x50,0x4f,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x3d,0x3b,0xfb,0xff,0x27,0x24,0xf5,0xff,0x10,0xe,0xea, + 0xff,0x4,0x3,0xc0,0xff,0xe,0xc,0x82,0xff,0x3b,0x2f,0xb4,0xff,0xbd,0xac,0xf9, + 0xff,0xc8,0xb7,0xfd,0xff,0xae,0x9b,0xfe,0xff,0x9c,0x87,0xfe,0xff,0x96,0x80,0xfe, + 0xff,0x92,0x7d,0xff,0xff,0x96,0x80,0xff,0xff,0x98,0x83,0xfe,0xff,0xa6,0x91,0xfe, + 0xff,0xa3,0x8f,0xfd,0xff,0x8a,0x74,0xfb,0xff,0x55,0x49,0xd9,0xff,0x74,0x73,0xd2, + 0xff,0x85,0x85,0xf1,0xff,0x74,0x74,0xf6,0xff,0x66,0x66,0xfb,0xff,0x65,0x64,0xfa, + 0xff,0x5e,0x5d,0xfb,0xff,0x4e,0x4d,0xfc,0xff,0x40,0x40,0xfb,0xff,0x1a,0x18,0xf4, + 0xff,0x5,0x3,0xea,0xff,0x19,0x19,0x87,0xff,0x71,0x72,0x1f,0xff,0x55,0x53,0x2f, + 0xff,0x26,0x17,0x8d,0xff,0x85,0x74,0xe3,0xff,0xcc,0xbb,0xfd,0xff,0xbc,0xa9,0xfd, + 0xff,0xa7,0x93,0xfe,0xff,0x93,0x7d,0xfe,0xff,0x96,0x80,0xff,0xff,0x96,0x81,0xff, + 0xff,0x92,0x7c,0xff,0xff,0xa3,0x8e,0xfe,0xff,0xa6,0x92,0xfd,0xff,0x99,0x84,0xfd, + 0xff,0x76,0x65,0xec,0xff,0x7d,0x84,0x88,0xff,0xda,0xdb,0x11,0xff,0xda,0xd9,0x2, + 0xff,0xd9,0xd8,0x0,0xff,0xc8,0xc9,0x0,0xff,0xb9,0xba,0x0,0xff,0xac,0xab,0x0, + 0xff,0x99,0x97,0x0,0xff,0x81,0x83,0x0,0xff,0x6e,0x6f,0x2,0xff,0x6a,0x6b,0x30, + 0xff,0xad,0xad,0xa9,0xff,0xb6,0xb6,0xb5,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb4,0xb4,0xb4,0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54, + 0xff,0xf,0xf,0xf,0xff,0x6,0x6,0x6,0xff,0x40,0x40,0x40,0xff,0xa8,0xa8,0xa8, + 0xfe,0xa6,0xa6,0xa6,0xfe,0x77,0x77,0x77,0xfc,0xf,0xf,0xf,0xf8,0x0,0x0,0x0, + 0xa4,0x2,0x2,0x2,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfa,0x1,0x7f,0x7f,0xf2, + 0x74,0x71,0x71,0xf7,0xf9,0x63,0x63,0xfb,0xfd,0x59,0x58,0xfc,0xfe,0x56,0x55,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x32,0x31,0xf9,0xff,0x11,0xf,0xe9, + 0xff,0xa,0x8,0xdc,0xff,0x7,0x7,0xa1,0xff,0x1a,0x13,0x84,0xff,0x7d,0x6b,0xe0, + 0xff,0xcc,0xbb,0xfc,0xff,0xcc,0xbb,0xfd,0xff,0xcc,0xbb,0xfe,0xff,0xbc,0xa9,0xfe, + 0xff,0xb4,0xa1,0xfe,0xff,0xac,0x99,0xfe,0xff,0xa7,0x93,0xfe,0xff,0xba,0xa8,0xfd, + 0xff,0xae,0x9b,0xfd,0xff,0x91,0x80,0xf3,0xff,0x54,0x4f,0xb8,0xff,0x80,0x7f,0xe3, + 0xff,0x7b,0x7b,0xf3,0xff,0x68,0x68,0xfa,0xff,0x60,0x5f,0xfb,0xff,0x62,0x62,0xfb, + 0xff,0x60,0x5f,0xfb,0xff,0x51,0x50,0xfc,0xff,0x3d,0x3c,0xfa,0xff,0x14,0x12,0xf2, + 0xff,0x4,0x2,0xea,0xff,0x19,0x1a,0x86,0xff,0x74,0x76,0x21,0xff,0x66,0x67,0x17, + 0xff,0x33,0x32,0x5f,0xff,0x3d,0x31,0xb3,0xff,0xb4,0xa3,0xf7,0xff,0xcf,0xbe,0xfd, + 0xff,0xcc,0xba,0xfe,0xff,0xc7,0xb5,0xfe,0xff,0xb3,0xa0,0xfe,0xff,0xb0,0x9d,0xfe, + 0xff,0xa8,0x94,0xfe,0xff,0xb5,0xa2,0xfe,0xff,0xb6,0xa4,0xfd,0xff,0xa8,0x95,0xfb, + 0xff,0x69,0x63,0xd4,0xff,0x99,0xa2,0x53,0xff,0xd8,0xd7,0x1,0xff,0xd3,0xd3,0x0, + 0xff,0xd3,0xd3,0x0,0xff,0xc1,0xc2,0x0,0xff,0xb5,0xb5,0x0,0xff,0xa7,0xa6,0x0, + 0xff,0x98,0x96,0x0,0xff,0x81,0x83,0x0,0xff,0x67,0x68,0x3,0xff,0x78,0x78,0x4d, + 0xff,0xb8,0xb8,0xb6,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb4,0xb4,0xb4,0xff,0x86,0x86,0x86,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c, + 0xff,0x54,0x54,0x54,0xff,0xf,0xf,0xf,0xff,0x6,0x6,0x6,0xff,0x40,0x40,0x40, + 0xfe,0xa8,0xa8,0xa8,0xfd,0xa1,0xa1,0xa1,0xef,0x23,0x23,0x23,0x82,0x8,0x8,0x8, + 0x1b,0x17,0x17,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x6a,0xf9,0x1,0x82,0x82,0xf1, + 0x28,0x75,0x75,0xf5,0xe3,0x63,0x63,0xfb,0xfd,0x5c,0x5c,0xfc,0xfe,0x58,0x57,0xfc, + 0xff,0x52,0x51,0xfc,0xff,0x44,0x42,0xfc,0xff,0x39,0x37,0xfa,0xff,0x20,0x1e,0xf5, + 0xff,0xd,0xa,0xee,0xff,0x4,0x3,0xcf,0xff,0xe,0xd,0x7e,0xff,0x31,0x28,0x94, + 0xff,0x93,0x83,0xe5,0xff,0xc7,0xb6,0xfb,0xff,0xcf,0xbe,0xfd,0xff,0xd1,0xc0,0xfd, + 0xff,0xd0,0xbf,0xfd,0xff,0xcc,0xbb,0xfd,0xff,0xca,0xb9,0xfd,0xff,0xb5,0xa4,0xfc, + 0xff,0xb1,0xa2,0xfa,0xff,0x71,0x6c,0xc2,0xff,0x6e,0x6d,0xb7,0xff,0x85,0x84,0xee, + 0xff,0x74,0x74,0xf6,0xff,0x67,0x67,0xfa,0xff,0x5d,0x5d,0xfc,0xff,0x60,0x60,0xfb, + 0xff,0x5c,0x5b,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x32,0x31,0xf8,0xff,0xa,0x8,0xf2, + 0xff,0x6,0x4,0xe8,0xff,0x29,0x29,0x77,0xff,0x78,0x7a,0x1e,0xff,0x68,0x69,0xf, + 0xff,0x4b,0x4c,0x2c,0xff,0x22,0x1e,0x6e,0xff,0x5f,0x51,0xc7,0xff,0xba,0xa9,0xf4, + 0xff,0xcc,0xbb,0xfc,0xff,0xd1,0xc0,0xfd,0xff,0xd1,0xc0,0xfd,0xff,0xcd,0xbc,0xfd, + 0xff,0xcd,0xbb,0xfd,0xff,0xbf,0xae,0xfc,0xff,0xb8,0xa7,0xfc,0xff,0x98,0x89,0xee, + 0xff,0x6e,0x6b,0xa2,0xff,0xc1,0xc3,0x36,0xff,0xd2,0xd2,0x1,0xff,0xca,0xcb,0x0, + 0xff,0xc7,0xc8,0x0,0xff,0xbb,0xbc,0x0,0xff,0xb3,0xb3,0x0,0xff,0xa6,0xa5,0x0, + 0xff,0x97,0x96,0x0,0xff,0x7f,0x80,0x1,0xff,0x6a,0x6a,0x10,0xff,0xa0,0xa0,0x8f, + 0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54,0xff,0xf,0xf,0xf,0xff,0x4,0x4,0x4, + 0xfd,0x40,0x40,0x40,0xfd,0xa1,0xa1,0xa1,0xb0,0x9d,0x9d,0x9d,0x10,0x3b,0x3b,0x3b, + 0x2,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x78,0xf4,0x0,0x80,0x80,0xe2, + 0x1d,0x7d,0x7d,0xeb,0xe0,0x67,0x67,0xfa,0xfc,0x61,0x60,0xfb,0xfe,0x5e,0x5d,0xfb, + 0xfe,0x59,0x59,0xfc,0xff,0x4b,0x4a,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x29,0x28,0xf6, + 0xff,0x18,0x16,0xf3,0xff,0xa,0x7,0xef,0xff,0x9,0x8,0xb3,0xff,0x12,0x11,0x6a, + 0xff,0x20,0x1c,0x7b,0xff,0x5a,0x4a,0xce,0xff,0x96,0x84,0xee,0xff,0xb0,0x9e,0xf9, + 0xff,0xba,0xa8,0xfd,0xff,0xaf,0x9b,0xfd,0xff,0xaf,0x9d,0xf8,0xff,0x9b,0x8e,0xea, + 0xff,0x6b,0x6d,0xb0,0xff,0x65,0x6b,0x94,0xff,0x6c,0x6c,0xcb,0xff,0x78,0x78,0xf2, + 0xff,0x68,0x68,0xf9,0xff,0x5d,0x5c,0xfb,0xff,0x55,0x54,0xfc,0xff,0x57,0x56,0xfc, + 0xff,0x50,0x4f,0xfc,0xff,0x42,0x42,0xfc,0xff,0x21,0x1f,0xf5,0xff,0x7,0x4,0xf1, + 0xff,0x9,0x7,0xd7,0xff,0x4b,0x4c,0x55,0xff,0x7e,0x80,0x18,0xff,0x74,0x75,0x9, + 0xff,0x5b,0x5a,0x4,0xff,0x45,0x43,0x2c,0xff,0x1b,0x19,0x66,0xff,0x38,0x2c,0xb0, + 0xff,0x79,0x68,0xdf,0xff,0xa3,0x91,0xf4,0xff,0xb9,0xa6,0xfb,0xff,0xb8,0xa5,0xfd, + 0xff,0xae,0x9a,0xfb,0xff,0xaa,0x99,0xf4,0xff,0x82,0x76,0xdf,0xff,0x6a,0x64,0xb7, + 0xff,0x9a,0x99,0x53,0xff,0xc1,0xc3,0x3,0xff,0xc9,0xca,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xb6,0xb7,0x0,0xff,0xb2,0xb2,0x0,0xff,0xa3,0xa1,0x0, + 0xff,0x93,0x92,0x0,0xff,0x7c,0x7d,0x1,0xff,0x71,0x72,0x23,0xff,0xba,0xba,0xb0, + 0xff,0xc1,0xc1,0xc2,0xff,0xc3,0xc3,0xc4,0xff,0xc4,0xc4,0xc5,0xff,0xc4,0xc4,0xc5, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc1,0xc1,0xc1,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54,0xff,0xd,0xd,0xd, + 0xfd,0x3,0x3,0x3,0xfd,0xd,0xd,0xd,0xb0,0x1,0x1,0x1,0x10,0xd,0xd,0xc, + 0x1,0x20,0x20,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf4,0x0,0x7f,0x7f,0xe9, + 0xf,0x7a,0x7a,0xf1,0xaf,0x6a,0x6a,0xf8,0xfc,0x64,0x64,0xfb,0xfd,0x63,0x63,0xfb, + 0xfe,0x64,0x64,0xfb,0xff,0x54,0x53,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3c,0x3b,0xfb, + 0xff,0x25,0x23,0xf5,0xff,0xe,0xb,0xf2,0xff,0x5,0x3,0xde,0xff,0x9,0x8,0xa6, + 0xff,0x16,0x16,0x68,0xff,0x1d,0x19,0x5d,0xff,0x19,0x13,0x70,0xff,0x35,0x2b,0x93, + 0xff,0x4a,0x3f,0xa1,0xff,0x4e,0x41,0xac,0xff,0x47,0x3d,0x99,0xff,0x37,0x3b,0x74, + 0xff,0x35,0x38,0x62,0xff,0x4d,0x4e,0xa9,0xff,0x52,0x52,0xc8,0xff,0x5b,0x5b,0xf4, + 0xff,0x58,0x57,0xfc,0xff,0x4f,0x4f,0xfc,0xff,0x52,0x51,0xfc,0xff,0x52,0x51,0xfc, + 0xff,0x4b,0x4b,0xfc,0xff,0x3a,0x3a,0xfb,0xff,0x16,0x13,0xf3,0xff,0x6,0x3,0xf0, + 0xff,0x1e,0x1d,0xb7,0xff,0x6f,0x70,0x31,0xff,0x86,0x87,0xf,0xff,0x7b,0x7d,0x1, + 0xff,0x71,0x72,0x1,0xff,0x5b,0x5b,0x7,0xff,0x48,0x4b,0x2b,0xff,0x28,0x26,0x52, + 0xff,0x16,0x13,0x65,0xff,0x1f,0x16,0x84,0xff,0x44,0x39,0xa0,0xff,0x49,0x3d,0xac, + 0xff,0x4b,0x39,0xb0,0xff,0x40,0x32,0x8e,0xff,0x59,0x55,0x64,0xff,0x7d,0x7c,0x44, + 0xff,0xa8,0xa8,0x11,0xff,0xbe,0xc0,0x0,0xff,0xc0,0xc1,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb6,0xb7,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb2,0xb2,0x1,0xff,0xa2,0xa0,0x0, + 0xff,0x90,0x90,0x1,0xff,0x74,0x75,0x4,0xff,0xaf,0xaf,0x7e,0xff,0xf2,0xf2,0xf1, + 0xff,0xf3,0xf3,0xf3,0xff,0xf4,0xf4,0xf5,0xff,0xf4,0xf4,0xf5,0xff,0xf4,0xf4,0xf5, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf4,0xf4,0xf5,0xff,0xf4,0xf4,0xf5, + 0xff,0xf2,0xf2,0xf2,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbc,0xbc,0xbc,0xff,0xac,0xac,0xac, + 0xff,0xaa,0xaa,0xaa,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x52,0x52,0x52, + 0xfe,0x8,0x8,0x8,0xfd,0x1,0x1,0x1,0xe1,0x1,0x1,0x1,0x1d,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf1,0x0,0x73,0x73,0xf6, + 0x1,0x80,0x80,0xf1,0x74,0x76,0x76,0xf5,0xf8,0x6a,0x6a,0xfa,0xfc,0x6a,0x6a,0xfa, + 0xfe,0x68,0x68,0xfa,0xfe,0x59,0x59,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x3c,0x3c,0xfb, + 0xff,0x2e,0x2c,0xf7,0xff,0x1b,0x19,0xf3,0xff,0x11,0xe,0xf2,0xff,0xa,0x8,0xe9, + 0xff,0x8,0x6,0xbf,0xff,0xe,0xd,0x9a,0xff,0x14,0x14,0x74,0xff,0x17,0x17,0x55, + 0xff,0x13,0x13,0x4a,0xff,0x18,0x17,0x51,0xff,0x1d,0x1d,0x62,0xff,0x19,0x19,0x72, + 0xff,0x1e,0x1f,0x81,0xff,0x3c,0x3c,0xb8,0xff,0x3c,0x3c,0xc4,0xff,0x4d,0x4c,0xf2, + 0xff,0x4d,0x4c,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4e,0x4d,0xfc,0xff,0x4c,0x4b,0xfc, + 0xff,0x41,0x40,0xfb,0xff,0x26,0x24,0xf5,0xff,0x9,0x6,0xf1,0xff,0xc,0x9,0xe9, + 0xff,0x52,0x52,0x7a,0xff,0xac,0xae,0xd,0xff,0xa3,0xa4,0x2,0xff,0x85,0x87,0x0, + 0xff,0x7a,0x7b,0x0,0xff,0x72,0x73,0x0,0xff,0x65,0x65,0x1,0xff,0x55,0x54,0xa, + 0xff,0x47,0x4a,0x12,0xff,0x34,0x34,0x2a,0xff,0x2c,0x2c,0x26,0xff,0x34,0x33,0x27, + 0xff,0x44,0x41,0x2c,0xff,0x66,0x64,0x11,0xff,0x7a,0x7b,0x6,0xff,0x8e,0x8e,0x2, + 0xff,0xaa,0xa9,0x1,0xff,0xb3,0xb3,0x0,0xff,0xb2,0xb2,0x1,0xff,0xb3,0xb2,0x1, + 0xff,0xb4,0xb4,0x1,0xff,0xb4,0xb4,0x0,0xff,0xb2,0xb2,0x1,0xff,0xa2,0xa1,0x0, + 0xff,0x8b,0x8b,0x1,0xff,0x68,0x68,0x15,0xff,0x74,0x74,0xa5,0xff,0x7e,0x7e,0xc6, + 0xff,0x7e,0x7e,0xc7,0xff,0x7e,0x7e,0xc8,0xff,0x7e,0x7e,0xc8,0xff,0x7e,0x7e,0xc8, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc8,0xff,0x7f,0x7f,0xc9,0xff,0x89,0x89,0xcb, + 0xff,0xe2,0xe2,0xeb,0xff,0xf2,0xf2,0xf3,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbc,0xbc,0xbc,0xff,0xa3,0xa3,0xa3,0xff,0x60,0x60,0x60,0xff,0x20,0x20,0x20, + 0xff,0x18,0x18,0x18,0xff,0x20,0x20,0x20,0xff,0x60,0x60,0x60,0xff,0xa2,0xa2,0xa2, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0x70,0x70,0x70, + 0xfd,0xe,0xe,0xe,0xfd,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf2,0x0,0x79,0x79,0xf2, + 0x1,0x80,0x80,0xe5,0x25,0x7c,0x7c,0xeb,0xd7,0x70,0x70,0xf7,0xfb,0x69,0x69,0xf9, + 0xfd,0x6d,0x6d,0xf8,0xfe,0x66,0x66,0xfa,0xfe,0x54,0x53,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x3b,0x3b,0xfb,0xff,0x2e,0x2d,0xf7,0xff,0x21,0x1e,0xf4,0xff,0x13,0x11,0xf2, + 0xff,0xf,0xc,0xef,0xff,0x13,0x12,0xe9,0xff,0x10,0xf,0xd0,0xff,0x15,0x14,0xc7, + 0xff,0x10,0xf,0xa5,0xff,0xe,0xe,0xa1,0xff,0x18,0x17,0xac,0xff,0x19,0x19,0xb2, + 0xff,0x1d,0x1c,0xb8,0xff,0x26,0x25,0xce,0xff,0x2f,0x2e,0xe2,0xff,0x3d,0x3d,0xfa, + 0xff,0x41,0x41,0xfc,0xff,0x43,0x43,0xfc,0xff,0x4d,0x4c,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x34,0x33,0xf9,0xff,0x13,0x10,0xf2,0xff,0x6,0x3,0xf1,0xff,0x18,0x17,0xce, + 0xff,0x8a,0x8b,0x36,0xff,0xbb,0xbc,0x1,0xff,0xad,0xad,0x1,0xff,0x91,0x91,0x0, + 0xff,0x81,0x82,0x0,0xff,0x7c,0x7d,0x0,0xff,0x76,0x77,0x0,0xff,0x6e,0x6f,0x1, + 0xff,0x67,0x67,0x1,0xff,0x62,0x62,0x2,0xff,0x64,0x64,0x2,0xff,0x70,0x70,0x1, + 0xff,0x73,0x74,0x1,0xff,0x7c,0x7d,0x1,0xff,0x84,0x85,0x1,0xff,0x91,0x91,0x0, + 0xff,0x9a,0x99,0x0,0xff,0xa9,0xa8,0x0,0xff,0xa9,0xa9,0x0,0xff,0xb3,0xb3,0x1, + 0xff,0xb6,0xb6,0x0,0xff,0xb4,0xb5,0x0,0xff,0xb4,0xb4,0x1,0xff,0xa1,0xa0,0x0, + 0xff,0x84,0x84,0x1,0xff,0x65,0x66,0x18,0xff,0xd,0xd,0x84,0xff,0x1,0x1,0x93, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x2,0x2,0x95,0xff,0x5,0x5,0x90, + 0xff,0x89,0x89,0xb7,0xff,0xf4,0xf4,0xf5,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0x8a,0x8a,0x8a,0xff,0x1e,0x1e,0x1e,0xff,0x13,0x13,0x13,0xff,0x3e,0x3e,0x3e, + 0xff,0x40,0x40,0x40,0xff,0x44,0x44,0x43,0xff,0x2e,0x2e,0x2e,0xff,0x1e,0x1e,0x1e, + 0xff,0x7e,0x7e,0x7e,0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x70,0x70,0x70, + 0xfe,0xe,0xe,0xe,0xfd,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0xf1,0x0,0x83,0x83,0xf0, + 0x0,0x7f,0x7f,0xd8,0x4,0x81,0x81,0xec,0x7b,0x7f,0x7f,0xf2,0xed,0x71,0x71,0xf6, + 0xfc,0x6b,0x6b,0xf9,0xfe,0x68,0x68,0xfa,0xfe,0x59,0x58,0xfc,0xff,0x4c,0x4c,0xfc, + 0xff,0x41,0x40,0xfb,0xff,0x3c,0x3c,0xfb,0xff,0x3a,0x39,0xfa,0xff,0x29,0x27,0xf6, + 0xff,0x1e,0x1c,0xf3,0xff,0x14,0x12,0xf2,0xff,0xf,0xc,0xf2,0xff,0xd,0xb,0xf2, + 0xff,0xa,0x8,0xec,0xff,0xe,0xc,0xeb,0xff,0x13,0x10,0xee,0xff,0x15,0x12,0xf0, + 0xff,0x20,0x1e,0xf0,0xff,0x25,0x23,0xf5,0xff,0x2f,0x2d,0xf7,0xff,0x38,0x37,0xfa, + 0xff,0x3d,0x3d,0xfc,0xff,0x44,0x44,0xfc,0xff,0x47,0x46,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x24,0x22,0xf5,0xff,0x9,0x7,0xf1,0xff,0x9,0x6,0xec,0xff,0x54,0x54,0x7b, + 0xff,0xb6,0xb8,0x8,0xff,0xbd,0xbe,0x1,0xff,0xb8,0xb9,0x0,0xff,0xaf,0xae,0x0, + 0xff,0xa6,0xa6,0x0,0xff,0x9a,0x9a,0x0,0xff,0x93,0x93,0x0,0xff,0x8b,0x8b,0x0, + 0xff,0x7d,0x7d,0x0,0xff,0x78,0x79,0x0,0xff,0x7a,0x7b,0x0,0xff,0x7b,0x7d,0x0, + 0xff,0x7e,0x80,0x0,0xff,0x84,0x85,0x0,0xff,0x8e,0x8e,0x0,0xff,0x92,0x92,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0xa7,0xa6,0x0,0xff,0xad,0xad,0x0,0xff,0xb6,0xb6,0x0, + 0xff,0xb7,0xb7,0x0,0xff,0xbb,0xbd,0x0,0xff,0xb6,0xb7,0x1,0xff,0xa7,0xa6,0x1, + 0xff,0x86,0x86,0x9,0xff,0x2d,0x2d,0x60,0xff,0x4,0x4,0x91,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x2,0x2,0x95,0xff,0x2,0x2,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf4,0xf4,0xf5,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xc7,0xc7,0xc7, + 0xff,0xa9,0xa9,0xa9,0xff,0x46,0x46,0x46,0xff,0x72,0x72,0x72,0xff,0xa0,0xa0,0x9f, + 0xff,0x84,0x84,0x84,0xff,0x81,0x81,0x81,0xff,0x66,0x66,0x66,0xff,0x26,0x26,0x26, + 0xff,0x1e,0x1e,0x1e,0xff,0xa2,0xa2,0xa2,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf2,0x0,0x81,0x81,0xf1, + 0x0,0x82,0x82,0xf1,0x1,0x80,0x80,0xf1,0x10,0x82,0x82,0xf1,0x82,0x80,0x80,0xf1, + 0xf9,0x71,0x71,0xf6,0xfd,0x6a,0x6a,0xfa,0xfe,0x61,0x60,0xfb,0xff,0x52,0x51,0xfc, + 0xff,0x45,0x44,0xfb,0xff,0x40,0x40,0xfc,0xff,0x41,0x40,0xfc,0xff,0x3c,0x3c,0xfb, + 0xff,0x37,0x36,0xf9,0xff,0x34,0x33,0xf8,0xff,0x2c,0x2a,0xf7,0xff,0x27,0x24,0xf5, + 0xff,0x1a,0x18,0xf4,0xff,0x1a,0x18,0xf4,0xff,0x20,0x1e,0xf5,0xff,0x27,0x25,0xf6, + 0xff,0x2f,0x2e,0xf7,0xff,0x35,0x34,0xf8,0xff,0x3b,0x3b,0xfb,0xff,0x40,0x40,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x45,0x45,0xfc,0xff,0x40,0x40,0xfc,0xff,0x35,0x34,0xf9, + 0xff,0x1a,0x18,0xf3,0xff,0x8,0x5,0xf1,0xff,0x19,0x17,0xcf,0xff,0x96,0x97,0x2b, + 0xff,0xbe,0xc0,0x1,0xff,0xc2,0xc3,0x0,0xff,0xc3,0xc4,0x0,0xff,0xbd,0xbd,0x0, + 0xff,0xb7,0xb8,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb2,0xb2,0x0,0xff,0xaf,0xaf,0x0, + 0xff,0xa5,0xa4,0x0,0xff,0x9d,0x9e,0x0,0xff,0x97,0x96,0x0,0xff,0x94,0x94,0x0, + 0xff,0x95,0x95,0x0,0xff,0x9a,0x99,0x0,0xff,0xa5,0xa4,0x0,0xff,0xac,0xab,0x0, + 0xff,0xb2,0xb2,0x0,0xff,0xb6,0xb6,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc4,0xc5,0x1,0xff,0xcf,0xce,0x6, + 0xff,0x89,0x89,0x31,0xff,0x9,0x9,0x8a,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x94, + 0xff,0x7e,0x7e,0xc8,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xdd,0xdd,0xdd, + 0xff,0xef,0xef,0xef,0xff,0xbc,0xbc,0xbb,0xff,0xb3,0xb3,0xb2,0xff,0xa2,0xa2,0xa2, + 0xff,0x97,0x97,0x96,0xff,0xa0,0xa0,0x9f,0xff,0x9a,0x9a,0x9a,0xff,0x65,0x65,0x65, + 0xff,0x12,0x12,0x12,0xff,0x60,0x60,0x60,0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0, + 0x0,0x81,0x81,0xe5,0x0,0x83,0x83,0xed,0x2,0x81,0x81,0xf1,0x26,0x83,0x83,0xf1, + 0xd9,0x7c,0x7c,0xf3,0xfd,0x6a,0x6a,0xf9,0xfe,0x62,0x61,0xfb,0xff,0x52,0x51,0xfd, + 0xff,0x45,0x45,0xfc,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x44,0x44,0xfc,0xff,0x42,0x42,0xfc,0xff,0x42,0x41,0xfc,0xff,0x41,0x40,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x3f,0x3e,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x40,0x3f,0xfc, + 0xff,0x3e,0x3e,0xfc,0xff,0x43,0x43,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x41,0x41,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x35,0x34,0xf9, + 0xff,0x20,0x1d,0xf2,0xff,0xf,0xd,0xee,0xff,0x4b,0x4b,0x91,0xff,0xc2,0xc2,0x10, + 0xff,0xcb,0xcc,0x2,0xff,0xd4,0xd4,0x0,0xff,0xd4,0xd4,0x0,0xff,0xcb,0xcc,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xbe,0xbf,0x0,0xff,0xbc,0xbd,0x0,0xff,0xb6,0xb7,0x0, + 0xff,0xb8,0xb8,0x0,0xff,0xb3,0xb3,0x0,0xff,0xb2,0xb2,0x1,0xff,0xb3,0xb3,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xb4,0xb4,0x1,0xff,0xb4,0xb4,0x0,0xff,0xb5,0xb5,0x0, + 0xff,0xb5,0xb5,0x0,0xff,0xb7,0xb8,0x0,0xff,0xbe,0xbf,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xcf,0xcf,0x0,0xff,0xd6,0xd6,0x0,0xff,0xdf,0xdf,0x7,0xff,0xe1,0xe1,0x17, + 0xff,0x47,0x47,0x68,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xef,0xef,0xef, + 0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad, + 0xff,0x9a,0x9a,0x99,0xff,0xaa,0xaa,0xa9,0xff,0x92,0x92,0x92,0xff,0x85,0x85,0x85, + 0xff,0x45,0x45,0x45,0xff,0x20,0x20,0x20,0xff,0xac,0xac,0xac,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf1, + 0x0,0x82,0x82,0xf1,0x0,0x84,0x84,0xf1,0x1,0x80,0x80,0xd4,0x13,0x83,0x83,0xe6, + 0xbb,0x7f,0x7f,0xf3,0xfd,0x69,0x69,0xf9,0xfd,0x64,0x64,0xfb,0xff,0x54,0x53,0xfd, + 0xff,0x4e,0x4e,0xfc,0xff,0x40,0x40,0xfc,0xff,0x45,0x45,0xfc,0xff,0x41,0x40,0xfc, + 0xff,0x43,0x43,0xfb,0xff,0x41,0x40,0xfc,0xff,0x42,0x42,0xfb,0xff,0x46,0x45,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x43,0x42,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x44,0x44,0xfc,0xff,0x42,0x41,0xfc,0xff,0x45,0x45,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3d,0x3d,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x30,0x2f,0xf7, + 0xff,0x22,0x20,0xf2,0xff,0x22,0x20,0xef,0xff,0x66,0x66,0x8b,0xff,0xcb,0xcb,0x23, + 0xff,0xe8,0xe7,0xd,0xff,0xdb,0xda,0x3,0xff,0xd8,0xd8,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xd3,0xd3,0x0,0xff,0xce,0xce,0x0,0xff,0xca,0xcb,0x0,0xff,0xc4,0xc5,0x0, + 0xff,0xbe,0xc0,0x0,0xff,0xbc,0xbd,0x0,0xff,0xba,0xbb,0x0,0xff,0xb6,0xb6,0x0, + 0xff,0xb4,0xb5,0x0,0xff,0xb6,0xb6,0x0,0xff,0xb5,0xb5,0x0,0xff,0xba,0xbb,0x0, + 0xff,0xbd,0xbe,0x0,0xff,0xc7,0xc8,0x0,0xff,0xce,0xce,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xe1,0xe0,0x6,0xff,0xe6,0xe6,0xb,0xff,0xec,0xec,0x12,0xff,0x9f,0x9f,0x3e, + 0xff,0xf,0xf,0x8b,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xef,0xef,0xef, + 0xff,0xca,0xca,0xca,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xb4,0xb4,0xb3,0xff,0xad,0xad,0xad,0xff,0xa1,0xa1,0xa0,0xff,0xa1,0xa1,0xa0, + 0xff,0x49,0x49,0x49,0xff,0x18,0x18,0x18,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x82,0x82,0xd3,0x0,0x83,0x83,0xf1,0x1,0x81,0x81,0xd8,0x29,0x83,0x83,0xe8, + 0xe4,0x76,0x76,0xf6,0xfd,0x67,0x67,0xfa,0xfe,0x5e,0x5e,0xfb,0xff,0x54,0x53,0xfd, + 0xff,0x48,0x48,0xfc,0xff,0x44,0x44,0xfc,0xff,0x40,0x40,0xfc,0xff,0x44,0x44,0xfc, + 0xff,0x48,0x48,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4c,0x4c,0xfd, + 0xff,0x4d,0x4c,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x51,0x50,0xfd,0xff,0x51,0x50,0xfd, + 0xff,0x4d,0x4c,0xfc,0xff,0x4d,0x4c,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x40,0x40,0xfc,0xff,0x40,0x40,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x37,0x36,0xf9, + 0xff,0x27,0x25,0xf4,0xff,0x20,0x1e,0xe1,0xff,0x18,0x17,0x9d,0xff,0x52,0x52,0x68, + 0xff,0xdc,0xdc,0x1e,0xff,0xef,0xef,0x11,0xff,0xe0,0xe0,0x7,0xff,0xdd,0xdd,0x4, + 0xff,0xd9,0xd9,0x1,0xff,0xd8,0xd8,0x0,0xff,0xd3,0xd3,0x0,0xff,0xd1,0xd2,0x0, + 0xff,0xcb,0xcc,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc0,0xc1,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xc4,0xc5,0x0,0xff,0xc7,0xc8,0x0,0xff,0xcd,0xcd,0x0, + 0xff,0xd1,0xd1,0x0,0xff,0xd8,0xd7,0x0,0xff,0xdc,0xdb,0x3,0xff,0xe6,0xe5,0xa, + 0xff,0xf0,0xf0,0x11,0xff,0xef,0xef,0x14,0xff,0xa2,0xa2,0x3c,0xff,0x1a,0x1a,0x86, + 0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xf2,0xf2,0xf2, + 0xff,0xdb,0xdb,0xdb,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb6,0xb6,0xb5,0xff,0xad,0xad,0xac,0xff,0xa0,0xa0,0xa0, + 0xff,0x53,0x53,0x52,0xff,0x20,0x20,0x20,0xff,0xac,0xac,0xac,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0, + 0x0,0x82,0x82,0xe2,0x0,0x80,0x80,0xf2,0x1,0x82,0x82,0xe3,0x74,0x81,0x81,0xf0, + 0xf9,0x6b,0x6b,0xf9,0xfd,0x64,0x64,0xfb,0xfe,0x5c,0x5b,0xfc,0xff,0x54,0x53,0xfd, + 0xff,0x47,0x47,0xfc,0xff,0x46,0x46,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x54,0x53,0xfc, + 0xff,0x55,0x55,0xfc,0xff,0x58,0x57,0xfc,0xff,0x58,0x57,0xfc,0xff,0x5c,0x5c,0xfc, + 0xff,0x5c,0x5b,0xfc,0xff,0x58,0x57,0xfc,0xff,0x59,0x58,0xfc,0xff,0x55,0x54,0xfd, + 0xff,0x57,0x56,0xfc,0xff,0x53,0x52,0xfd,0xff,0x53,0x52,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x4b,0x4a,0xfc,0xff,0x46,0x46,0xfc,0xff,0x40,0x3f,0xfb,0xff,0x3d,0x3c,0xfb, + 0xff,0x29,0x27,0xf5,0xff,0x26,0x24,0xec,0xff,0x19,0x19,0xac,0xff,0x5,0x5,0x91, + 0xff,0x49,0x49,0x6c,0xff,0xaa,0xaa,0x38,0xff,0xe4,0xe4,0x18,0xff,0xeb,0xeb,0xe, + 0xff,0xe4,0xe4,0xa,0xff,0xdb,0xdb,0x3,0xff,0xd8,0xd8,0x2,0xff,0xd7,0xd7,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd6,0xd5,0x0, + 0xff,0xd6,0xd5,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd8,0xd7,0x1,0xff,0xda,0xd9,0x1, + 0xff,0xdb,0xda,0x3,0xff,0xe5,0xe5,0xa,0xff,0xef,0xef,0x10,0xff,0xf0,0xf0,0x13, + 0xff,0xd0,0xd0,0x23,0xff,0x7a,0x7a,0x52,0xff,0x1a,0x1a,0x86,0xff,0x1,0x1,0x93, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xdd,0xdd,0xdd, + 0xff,0xec,0xec,0xec,0xff,0xcf,0xcf,0xcf,0xff,0xc2,0xc2,0xc1,0xff,0xc1,0xc1,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbe,0xff,0xb9,0xb9,0xb9,0xff,0x7b,0x7b,0x7a, + 0xff,0x17,0x17,0x17,0xff,0x60,0x60,0x60,0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x0,0x84,0x84,0xf1,0x1,0x81,0x81,0xf0,0x10,0x83,0x83,0xf1,0xaf,0x7b,0x7b,0xf3, + 0xfc,0x68,0x68,0xfa,0xfd,0x5d,0x5c,0xfc,0xfe,0x54,0x53,0xfc,0xff,0x4e,0x4e,0xfc, + 0xff,0x48,0x48,0xfc,0xff,0x51,0x50,0xfc,0xff,0x53,0x53,0xfc,0xff,0x58,0x57,0xfc, + 0xff,0x60,0x5f,0xfb,0xff,0x63,0x62,0xfb,0xff,0x64,0x64,0xfb,0xff,0x68,0x68,0xfa, + 0xff,0x65,0x65,0xfb,0xff,0x67,0x66,0xfb,0xff,0x64,0x63,0xfb,0xff,0x61,0x61,0xfb, + 0xff,0x5d,0x5c,0xfb,0xff,0x54,0x54,0xfc,0xff,0x56,0x56,0xfc,0xff,0x52,0x51,0xfc, + 0xff,0x4e,0x4d,0xfc,0xff,0x4b,0x4a,0xfc,0xff,0x43,0x43,0xfc,0xff,0x40,0x3f,0xfb, + 0xff,0x34,0x32,0xf8,0xff,0x26,0x24,0xee,0xff,0xe,0xe,0xaf,0xff,0x2,0x2,0x95, + 0xff,0x2,0x2,0x93,0xff,0xf,0xf,0x8b,0xff,0x4c,0x4c,0x6b,0xff,0xa9,0xa9,0x38, + 0xff,0xda,0xda,0x1e,0xff,0xed,0xed,0x12,0xff,0xeb,0xea,0xd,0xff,0xe3,0xe3,0x9, + 0xff,0xdf,0xdf,0x6,0xff,0xdb,0xda,0x3,0xff,0xd9,0xd9,0x2,0xff,0xd9,0xd9,0x2, + 0xff,0xda,0xda,0x3,0xff,0xe4,0xe3,0x9,0xff,0xe9,0xe9,0xc,0xff,0xeb,0xeb,0xd, + 0xff,0xf0,0xf0,0x10,0xff,0xef,0xef,0x13,0xff,0xd0,0xd0,0x23,0xff,0x7a,0x7a,0x52, + 0xff,0x24,0x24,0x80,0xff,0x5,0x5,0x91,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc8,0xc8,0xc8, + 0xff,0xf3,0xf3,0xf3,0xff,0xe9,0xe9,0xe9,0xff,0xc4,0xc4,0xc3,0xff,0xc1,0xc1,0xc0, + 0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc4,0xff,0xbe,0xbe,0xbe, + 0xff,0x3e,0x3e,0x3e,0xff,0xa3,0xa3,0xa3,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xd8,0x0,0x83,0x83,0xf0, + 0x0,0x83,0x83,0xe6,0x1,0x82,0x82,0xef,0x4e,0x83,0x83,0xf1,0xee,0x74,0x74,0xf6, + 0xfc,0x61,0x60,0xfb,0xfe,0x53,0x52,0xfc,0xfe,0x54,0x53,0xfc,0xff,0x4d,0x4c,0xfc, + 0xff,0x49,0x49,0xfc,0xff,0x52,0x51,0xfc,0xff,0x59,0x58,0xfc,0xff,0x5e,0x5d,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x68,0x68,0xfa,0xff,0x69,0x69,0xfa,0xff,0x6a,0x6a,0xf9, + 0xff,0x6a,0x6a,0xf8,0xff,0x6a,0x6a,0xf9,0xff,0x69,0x69,0xf9,0xff,0x67,0x67,0xfa, + 0xff,0x67,0x67,0xfb,0xff,0x62,0x61,0xfb,0xff,0x5f,0x5f,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x50,0x4f,0xfc,0xff,0x49,0x48,0xfc,0xff,0x47,0x47,0xfc,0xff,0x3e,0x3e,0xfc, + 0xff,0x3c,0x3b,0xfb,0xff,0x28,0x26,0xf2,0xff,0x32,0x32,0xdb,0xff,0x9,0x9,0x9e, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x93,0xff,0xf,0xf,0x8c, + 0xff,0x27,0x27,0x7e,0xff,0x70,0x70,0x57,0xff,0x84,0x84,0x4c,0xff,0xcd,0xcd,0x25, + 0xff,0xd6,0xd6,0x1e,0xff,0xd5,0xd5,0x1d,0xff,0xd5,0xd5,0x1d,0xff,0xd5,0xd5,0x1d, + 0xff,0xd6,0xd6,0x1d,0xff,0xd8,0xd8,0x1f,0xff,0xd8,0xd8,0x1f,0xff,0xcd,0xcd,0x25, + 0xff,0x84,0x84,0x4c,0xff,0x70,0x70,0x57,0xff,0x24,0x24,0x80,0xff,0x5,0x5,0x91, + 0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1, + 0xff,0xd4,0xd4,0xd4,0xff,0xf0,0xf0,0xf0,0xff,0xe1,0xe1,0xe0,0xff,0xde,0xde,0xde, + 0xff,0xdf,0xdf,0xde,0xff,0xde,0xde,0xde,0xff,0xe9,0xe9,0xe9,0xff,0xef,0xef,0xef, + 0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf2,0x0,0x83,0x83,0xeb, + 0x1,0x81,0x81,0xee,0x10,0x83,0x83,0xf0,0xaf,0x80,0x80,0xf3,0xfc,0x6b,0x6b,0xf9, + 0xfd,0x59,0x58,0xfc,0xfe,0x52,0x51,0xfc,0xff,0x4d,0x4d,0xfc,0xff,0x46,0x45,0xfc, + 0xff,0x48,0x48,0xfc,0xff,0x53,0x52,0xfc,0xff,0x57,0x56,0xfc,0xff,0x61,0x61,0xfb, + 0xff,0x69,0x69,0xf9,0xff,0x73,0x73,0xf6,0xff,0x7a,0x7a,0xf4,0xff,0x81,0x81,0xf1, + 0xff,0x81,0x81,0xf1,0xff,0x81,0x81,0xf1,0xff,0x80,0x80,0xf2,0xff,0x76,0x76,0xf4, + 0xff,0x6f,0x6f,0xf7,0xff,0x69,0x68,0xfa,0xff,0x65,0x65,0xfa,0xff,0x63,0x63,0xfb, + 0xff,0x55,0x54,0xfc,0xff,0x48,0x47,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x3f,0x3e,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x2b,0x29,0xf5,0xff,0x33,0x33,0xe7,0xff,0xe,0xe,0xa1, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x93,0xff,0x4,0x4,0x92,0xff,0x19,0x19,0x87, + 0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85, + 0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x19,0x19,0x87, + 0xff,0x4,0x4,0x92,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc1,0xc1,0xc1,0xff,0xc8,0xc8,0xc8,0xff,0xdd,0xdd,0xdd,0xff,0xf1,0xf1,0xf1, + 0xff,0xf4,0xf4,0xf4,0xff,0xf1,0xf1,0xf1,0xff,0xde,0xde,0xdd,0xff,0xc8,0xc8,0xc8, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xd8,0x0,0x84,0x84,0xe2, + 0x1,0x82,0x82,0xdc,0x4e,0x84,0x84,0xef,0xed,0x77,0x77,0xf5,0xfc,0x66,0x66,0xfa, + 0xfe,0x52,0x51,0xfc,0xfe,0x49,0x48,0xfd,0xff,0x43,0x43,0xfc,0xff,0x44,0x44,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x4f,0x4e,0xfc,0xff,0x5a,0x59,0xfb,0xff,0x70,0x70,0xf6, + 0xff,0x7b,0x7b,0xf3,0xff,0x82,0x81,0xee,0xff,0x7c,0x7d,0xdf,0xff,0x76,0x77,0xcf, + 0xff,0x5d,0x5d,0xaf,0xff,0x68,0x69,0xba,0xff,0x6b,0x6d,0xc2,0xff,0x7f,0x7f,0xdf, + 0xff,0x83,0x83,0xee,0xff,0x7a,0x7a,0xf2,0xff,0x6a,0x6a,0xf9,0xff,0x65,0x65,0xfa, + 0xff,0x60,0x60,0xfb,0xff,0x52,0x51,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x3f,0x3e,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x28,0x25,0xf5,0xff,0x2d,0x2c,0xe4,0xff,0x26,0x26,0xb8, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc4,0xc4,0xc4, + 0xff,0xc5,0xc5,0xc5,0xff,0xc4,0xc4,0xc4,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xed,0x0,0x81,0x81,0xd4, + 0xf,0x82,0x82,0xe5,0xaf,0x82,0x82,0xf2,0xfc,0x71,0x71,0xf7,0xfd,0x5d,0x5d,0xfb, + 0xfe,0x51,0x50,0xfc,0xff,0x44,0x44,0xfd,0xff,0x42,0x41,0xfc,0xff,0x3e,0x3e,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x52,0x51,0xfc,0xff,0x6f,0x6f,0xf7,0xff,0x82,0x82,0xef, + 0xff,0x7f,0x80,0xe6,0xff,0x6a,0x68,0xdc,0xff,0x45,0x41,0xb6,0xff,0x18,0x1b,0x79, + 0xff,0xc,0x9,0x73,0xff,0x13,0x13,0x75,0xff,0x20,0x23,0x71,0xff,0x3f,0x42,0x86, + 0xff,0x60,0x62,0xaa,0xff,0x7e,0x7f,0xe6,0xff,0x7a,0x7a,0xf2,0xff,0x68,0x68,0xfa, + 0xff,0x68,0x67,0xfa,0xff,0x5c,0x5c,0xfc,0xff,0x4a,0x4a,0xfc,0xff,0x3f,0x3e,0xfc, + 0xff,0x37,0x36,0xfa,0xff,0x24,0x22,0xf4,0xff,0x2f,0x2d,0xf2,0xff,0x24,0x24,0xc1, + 0xff,0x5,0x5,0x98,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbb,0xbb,0xbb,0xff,0xa4,0xa4,0xa4,0xff,0x6a,0x6a,0x6a, + 0xff,0x62,0x62,0x62,0xff,0x69,0x69,0x69,0xff,0xa4,0xa4,0xa4,0xff,0xbb,0xbb,0xbb, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf2,0x1,0x81,0x81,0xd5, + 0x4e,0x82,0x82,0xed,0xed,0x77,0x77,0xf5,0xfc,0x68,0x68,0xfa,0xfe,0x55,0x54,0xfc, + 0xfe,0x4e,0x4d,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x3f,0x3e,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x47,0x46,0xfc,0xff,0x61,0x61,0xf7,0xff,0x7f,0x7f,0xdc,0xff,0x7b,0x7e,0xcc, + 0xff,0x50,0x45,0xe1,0xff,0x30,0x10,0xe1,0xff,0x18,0x2,0xb8,0xff,0x10,0x1,0xab, + 0xff,0x13,0x1,0xbb,0xff,0x13,0x1,0xba,0xff,0x10,0x1,0xab,0xff,0x11,0x7,0x95, + 0xff,0x22,0x20,0x85,0xff,0x63,0x67,0xb5,0xff,0x82,0x83,0xeb,0xff,0x7a,0x7a,0xf2, + 0xff,0x6b,0x6b,0xf9,0xff,0x5f,0x5e,0xfb,0xff,0x53,0x53,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x37,0x35,0xfa,0xff,0x28,0x26,0xf5,0xff,0x26,0x24,0xf4,0xff,0x24,0x24,0xc4, + 0xff,0x5,0x5,0x92,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xac,0xac,0xac,0xff,0x60,0x60,0x60,0xff,0x1f,0x1f,0x1f,0xff,0x11,0x11,0x11, + 0xff,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x1f,0x1f,0x1f,0xff,0x60,0x60,0x60, + 0xff,0xaa,0xaa,0xaa,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf2,0x1,0x83,0x83,0xe1, + 0x7f,0x83,0x83,0xef,0xfc,0x71,0x71,0xf7,0xfd,0x62,0x62,0xfb,0xfe,0x54,0x53,0xfc, + 0xff,0x4d,0x4c,0xfd,0xff,0x40,0x3e,0xfc,0xff,0x3f,0x3d,0xfc,0xff,0x38,0x37,0xfa, + 0xff,0x43,0x42,0xf1,0xff,0x66,0x66,0xd2,0xff,0x84,0x8b,0xbb,0xff,0x76,0x73,0xda, + 0xff,0x36,0x1f,0xda,0xff,0x36,0x1c,0xdb,0xff,0x32,0x1f,0xd2,0xff,0x36,0x23,0xd2, + 0xff,0x35,0x23,0xd2,0xff,0x34,0x21,0xd1,0xff,0x2b,0x18,0xcd,0xff,0x16,0x2,0xc0, + 0xff,0x14,0x2,0xb8,0xff,0x21,0x21,0x82,0xff,0x73,0x73,0xd3,0xff,0x84,0x84,0xf0, + 0xff,0x75,0x75,0xf4,0xff,0x63,0x62,0xfb,0xff,0x59,0x58,0xfc,0xff,0x47,0x46,0xfc, + 0xff,0x3b,0x3a,0xfb,0xff,0x29,0x27,0xf5,0xff,0x25,0x23,0xf4,0xff,0x3e,0x3d,0xd4, + 0xff,0x15,0x15,0x8c,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xc1,0xc1,0xc1, + 0xff,0x80,0x80,0x80,0xff,0x14,0x14,0x14,0xff,0x39,0x39,0x39,0xff,0x7a,0x7a,0x7a, + 0xff,0x73,0x73,0x73,0xff,0x6c,0x6c,0x6c,0xff,0x31,0x31,0x31,0xff,0xd,0xd,0xd, + 0xff,0x44,0x44,0x44,0xff,0xb2,0xb2,0xb2,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf1,0x4,0x83,0x83,0xf1, + 0x8a,0x7c,0x7c,0xf4,0xfc,0x6a,0x6a,0xfa,0xfd,0x5f,0x5e,0xfb,0xfe,0x53,0x52,0xfc, + 0xff,0x4c,0x4b,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x37,0x36,0xf9,0xff,0x31,0x30,0xf8, + 0xff,0x41,0x41,0xe0,0xff,0x7a,0x7e,0xb9,0xff,0x8b,0x94,0xd5,0xff,0x77,0x66,0xef, + 0xff,0x51,0x3e,0xde,0xff,0x65,0x51,0xeb,0xff,0x6f,0x5a,0xf0,0xff,0x80,0x6b,0xfa, + 0xff,0x80,0x6b,0xf9,0xff,0x7b,0x66,0xf7,0xff,0x56,0x42,0xe2,0xff,0x35,0x23,0xd0, + 0xff,0x1f,0xd,0xc7,0xff,0x12,0x5,0xa6,0xff,0x42,0x45,0xa2,0xff,0x82,0x82,0xe5, + 0xff,0x80,0x80,0xf1,0xff,0x69,0x69,0xf9,0xff,0x62,0x61,0xfb,0xff,0x4d,0x4c,0xfc, + 0xff,0x3d,0x3d,0xfc,0xff,0x33,0x31,0xf8,0xff,0x22,0x20,0xf4,0xff,0x39,0x38,0xea, + 0xff,0x33,0x34,0x99,0xff,0x5,0x5,0x8e,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xd2,0xd2,0xd2, + 0xff,0xdc,0xdc,0xdc,0xff,0x95,0x95,0x94,0xff,0xa5,0xa5,0xa4,0xff,0x9b,0x9b,0x9b, + 0xff,0x8e,0x8e,0x8e,0xff,0x97,0x97,0x96,0xff,0x84,0x84,0x84,0xff,0x40,0x40,0x40, + 0xff,0xf,0xf,0xf,0xff,0x84,0x84,0x84,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf0,0x1d,0x84,0x84,0xf1, + 0xd6,0x7a,0x7a,0xf4,0xfd,0x69,0x69,0xfa,0xfd,0x5f,0x5e,0xfb,0xff,0x53,0x53,0xfc, + 0xff,0x4c,0x4b,0xfd,0xff,0x40,0x3e,0xfc,0xff,0x2f,0x2d,0xf7,0xff,0x2c,0x2b,0xf4, + 0xff,0x3e,0x3e,0xcd,0xff,0x7b,0x7f,0xa5,0xff,0x92,0x87,0xed,0xff,0x94,0x7f,0xfc, + 0xff,0x82,0x6c,0xfa,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x82,0x6c,0xfa,0xff,0x7f,0x69,0xf9, + 0xff,0x5c,0x48,0xe6,0xff,0x19,0x8,0xc0,0xff,0x1a,0x16,0x92,0xff,0x74,0x75,0xd7, + 0xff,0x83,0x83,0xf1,0xff,0x6f,0x6f,0xf7,0xff,0x62,0x62,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x3f,0x3e,0xfc,0xff,0x38,0x37,0xfa,0xff,0x2a,0x28,0xf6,0xff,0x2f,0x2d,0xf5, + 0xff,0x3e,0x3d,0xd8,0xff,0x26,0x26,0x9b,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc2,0xc2,0xc2,0xff,0xe9,0xe9,0xe9, + 0xff,0xe9,0xe9,0xe9,0xff,0xc2,0xc2,0xc1,0xff,0xb9,0xb9,0xb8,0xff,0xa1,0xa1,0xa1, + 0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9b,0xff,0x84,0x84,0x84,0xff,0x73,0x73,0x73, + 0xff,0x27,0x27,0x27,0xff,0x3c,0x3c,0x3c,0xff,0xb4,0xb4,0xb4,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf1,0x20,0x83,0x83,0xf2, + 0xe1,0x71,0x71,0xf7,0xfd,0x67,0x67,0xfa,0xfd,0x5d,0x5c,0xfc,0xff,0x53,0x52,0xfd, + 0xff,0x4d,0x4c,0xfd,0xff,0x39,0x38,0xfa,0xff,0x1e,0x1b,0xf4,0xff,0x21,0x1f,0xf1, + 0xff,0x38,0x37,0xc8,0xff,0x60,0x68,0xb1,0xff,0x9b,0x8c,0xf6,0xff,0x9e,0x89,0xfd, + 0xff,0x8b,0x74,0xfd,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x8b,0x75,0xfe,0xff,0x89,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x8a,0x73,0xfd, + 0xff,0x7b,0x65,0xf6,0xff,0x3a,0x27,0xd4,0xff,0x17,0xe,0xb0,0xff,0x5f,0x69,0xc9, + 0xff,0x85,0x84,0xef,0xff,0x74,0x75,0xf5,0xff,0x62,0x62,0xfb,0xff,0x57,0x56,0xfc, + 0xff,0x3f,0x3f,0xfc,0xff,0x3d,0x3c,0xfb,0xff,0x2f,0x2d,0xf7,0xff,0x2a,0x29,0xf6, + 0xff,0x28,0x28,0xd0,0xff,0x2f,0x30,0x8b,0xff,0x2,0x2,0x90,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xf5,0xf5,0xf5, + 0xff,0xde,0xde,0xdd,0xff,0xc0,0xc0,0xbf,0xff,0xc0,0xc0,0xbf,0xff,0xbc,0xbc,0xbb, + 0xff,0x9d,0x9d,0x9c,0xff,0xa1,0xa1,0xa0,0xff,0xac,0xac,0xab,0xff,0x84,0x84,0x83, + 0xff,0x40,0x40,0x40,0xff,0x18,0x18,0x18,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf2,0x20,0x83,0x83,0xf3, + 0xe1,0x70,0x70,0xf8,0xfd,0x65,0x65,0xfb,0xfd,0x5e,0x5d,0xfb,0xff,0x57,0x56,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x36,0x35,0xfa,0xff,0x16,0x14,0xf4,0xff,0x19,0x17,0xef, + 0xff,0x26,0x26,0xa6,0xff,0x3f,0x39,0xa0,0xff,0x97,0x85,0xf5,0xff,0xba,0xa8,0xfd, + 0xff,0x92,0x7c,0xfd,0xff,0x89,0x73,0xfe,0xff,0x89,0x73,0xfe,0xff,0x88,0x72,0xff, + 0xff,0x93,0x7d,0xfe,0xff,0x8b,0x75,0xfe,0xff,0x96,0x80,0xfe,0xff,0x98,0x83,0xfe, + 0xff,0x88,0x72,0xfd,0xff,0x65,0x51,0xec,0xff,0x20,0xd,0xc7,0xff,0x51,0x48,0xc3, + 0xff,0x85,0x85,0xed,0xff,0x75,0x75,0xf6,0xff,0x66,0x66,0xfb,0xff,0x59,0x58,0xfc, + 0xff,0x43,0x43,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x31,0x2f,0xf8,0xff,0x30,0x2e,0xf5, + 0xff,0x32,0x31,0xc1,0xff,0x2d,0x2d,0x83,0xff,0x2,0x3,0x8f,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xf5,0xf5,0xf5, + 0xff,0xde,0xde,0xde,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xbf, + 0xff,0xba,0xba,0xb9,0xff,0xb3,0xb3,0xb2,0xff,0xa2,0xa2,0xa1,0xff,0x85,0x85,0x85, + 0xff,0x41,0x41,0x41,0xff,0x18,0x18,0x18,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf2,0x20,0x83,0x83,0xf3, + 0xe1,0x70,0x70,0xf8,0xfd,0x68,0x68,0xfa,0xfd,0x63,0x62,0xfb,0xff,0x56,0x55,0xfc, + 0xff,0x4c,0x4b,0xfd,0xff,0x32,0x30,0xfa,0xff,0xf,0xd,0xf4,0xff,0xb,0x8,0xec, + 0xff,0x10,0xf,0x9f,0xff,0x17,0x16,0x78,0xff,0x67,0x57,0xd9,0xff,0xc4,0xb3,0xfc, + 0xff,0xab,0x98,0xfd,0xff,0x92,0x7d,0xfe,0xff,0x89,0x73,0xff,0xff,0x8b,0x75,0xff, + 0xff,0x93,0x7e,0xff,0xff,0x8b,0x75,0xff,0xff,0x97,0x81,0xfe,0xff,0x97,0x82,0xfe, + 0xff,0x8d,0x77,0xfd,0xff,0x7b,0x66,0xf7,0xff,0x38,0x27,0xd2,0xff,0x54,0x57,0xc4, + 0xff,0x85,0x85,0xed,0xff,0x76,0x76,0xf6,0xff,0x67,0x67,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x44,0x44,0xfc,0xff,0x41,0x41,0xfc,0xff,0x36,0x35,0xfa,0xff,0x2c,0x2a,0xf2, + 0xff,0x38,0x37,0xcb,0xff,0x2a,0x2b,0x90,0xff,0x2,0x2,0x8f,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x1,0x1,0x91,0xff,0x18,0x18,0x69,0xff,0x29,0x29,0x4c, + 0xff,0x29,0x29,0x4c,0xff,0x26,0x26,0x52,0xff,0x8,0x8,0x85,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc3,0xc3,0xc3,0xff,0xe9,0xe9,0xe9, + 0xff,0xea,0xea,0xea,0xff,0xc6,0xc6,0xc6,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa6,0xa6,0xa5,0xff,0x8c,0x8c,0x8b, + 0xff,0x2b,0x2b,0x2b,0xff,0x3c,0x3c,0x3c,0xff,0xb4,0xb4,0xb4,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf3,0x1d,0x81,0x81,0xf3, + 0xd6,0x6d,0x6d,0xf9,0xfd,0x69,0x69,0xfa,0xfd,0x63,0x62,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x34,0x32,0xfa,0xff,0x11,0xe,0xf4,0xff,0x6,0x3,0xf0, + 0xff,0x7,0x5,0xc1,0xff,0x12,0x12,0x79,0xff,0x3b,0x2d,0xb7,0xff,0xbd,0xac,0xf9, + 0xff,0xc9,0xb7,0xfd,0xff,0xb0,0x9c,0xfe,0xff,0x9e,0x89,0xfe,0xff,0x98,0x82,0xfe, + 0xff,0x94,0x7e,0xff,0xff,0x97,0x82,0xff,0xff,0x9a,0x85,0xfe,0xff,0xa7,0x94,0xfe, + 0xff,0xa4,0x90,0xfd,0xff,0x8a,0x75,0xfc,0xff,0x51,0x3e,0xdf,0xff,0x6b,0x74,0xcb, + 0xff,0x85,0x85,0xee,0xff,0x74,0x74,0xf6,0xff,0x63,0x63,0xfb,0xff,0x53,0x52,0xfc, + 0xff,0x46,0x46,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3a,0x38,0xfa,0xff,0x32,0x31,0xf4, + 0xff,0x34,0x33,0xcc,0xff,0x19,0x19,0x82,0xff,0x3,0x3,0x8f,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93, + 0xff,0x1,0x1,0x91,0xff,0x1c,0x1c,0x63,0xff,0x4a,0x4a,0x13,0xff,0x5a,0x5a,0x4, + 0xff,0x60,0x60,0x3,0xff,0x59,0x59,0x6,0xff,0x36,0x36,0x36,0xff,0x4,0x4,0x8b, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xd2,0xd2,0xd2, + 0xff,0xf8,0xf8,0xf8,0xff,0xdf,0xdf,0xdf,0xff,0xc4,0xc4,0xc3,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0x75,0x75,0x74, + 0xff,0x12,0x12,0x12,0xff,0x85,0x85,0x85,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xf4,0x4,0x82,0x82,0xf3, + 0x8a,0x71,0x71,0xf7,0xfc,0x68,0x68,0xfa,0xfd,0x63,0x63,0xfb,0xfe,0x56,0x55,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x3b,0x3a,0xfb,0xff,0x1a,0x17,0xf6,0xff,0x7,0x4,0xf4, + 0xff,0x6,0x3,0xe9,0xff,0xd,0xc,0x94,0xff,0x14,0xf,0x79,0xff,0x7b,0x6b,0xe2, + 0xff,0xcc,0xbb,0xfb,0xff,0xcc,0xbb,0xfd,0xff,0xcc,0xbb,0xfe,0xff,0xbe,0xab,0xfe, + 0xff,0xb6,0xa3,0xfe,0xff,0xaf,0x9b,0xfe,0xff,0xa9,0x96,0xfe,0xff,0xba,0xa8,0xfe, + 0xff,0xb0,0x9d,0xfd,0xff,0x90,0x7c,0xf6,0xff,0x44,0x3c,0xc1,0xff,0x7b,0x7d,0xd6, + 0xff,0x82,0x82,0xf2,0xff,0x6f,0x6f,0xf8,0xff,0x61,0x60,0xfb,0xff,0x4f,0x4e,0xfc, + 0xff,0x46,0x46,0xfc,0xff,0x42,0x42,0xfc,0xff,0x30,0x2f,0xf8,0xff,0x29,0x27,0xf4, + 0xff,0x2f,0x2e,0xd7,0xff,0x18,0x18,0x84,0xff,0x3,0x3,0x8e,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x1,0x1,0x91, + 0xff,0x1c,0x1c,0x63,0xff,0x4b,0x4b,0x13,0xff,0x5a,0x5a,0x5,0xff,0x6c,0x6c,0x1, + 0xff,0x72,0x72,0x1,0xff,0x6e,0x6f,0x2,0xff,0x57,0x57,0xc,0xff,0x19,0x19,0x67, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc3,0xc3,0xc3, + 0xff,0xe7,0xe7,0xe7,0xff,0xf8,0xf8,0xf8,0xff,0xe7,0xe7,0xe6,0xff,0xc9,0xc9,0xc9, + 0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xe6,0xe6,0xe6,0xff,0xdf,0xdf,0xdf, + 0xff,0x82,0x82,0x82,0xff,0xb4,0xb4,0xb4,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x76,0xf6,0x1,0x84,0x84,0xf2, + 0x7f,0x7c,0x7c,0xf4,0xfc,0x69,0x69,0xfa,0xfd,0x63,0x63,0xfb,0xfe,0x57,0x56,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x30,0x2f,0xfa,0xff,0x11,0xf,0xf4, + 0xff,0x5,0x3,0xef,0xff,0x9,0x8,0xb9,0xff,0x10,0x10,0x6d,0xff,0x2e,0x24,0x98, + 0xff,0x93,0x83,0xe6,0xff,0xc7,0xb6,0xfb,0xff,0xcf,0xbe,0xfd,0xff,0xd1,0xc0,0xfd, + 0xff,0xd0,0xbf,0xfd,0xff,0xcd,0xbb,0xfd,0xff,0xca,0xb9,0xfd,0xff,0xb7,0xa5,0xfc, + 0xff,0xb3,0xa0,0xfc,0xff,0x63,0x57,0xd4,0xff,0x59,0x5d,0xb1,0xff,0x81,0x82,0xe7, + 0xff,0x71,0x71,0xf7,0xff,0x66,0x66,0xfa,0xff,0x5c,0x5b,0xfc,0xff,0x4d,0x4c,0xfc, + 0xff,0x45,0x45,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x2a,0x28,0xf7,0xff,0x23,0x21,0xf2, + 0xff,0x24,0x23,0xd3,0xff,0x1a,0x1a,0x7e,0xff,0x7,0x7,0x87,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x92,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x92,0xff,0x8,0x8,0x84,0xff,0x29,0x2a,0x4b, + 0xff,0x4a,0x4a,0x13,0xff,0x55,0x55,0x5,0xff,0x68,0x69,0x1,0xff,0x77,0x78,0x0, + 0xff,0x78,0x79,0x0,0xff,0x78,0x7a,0x0,0xff,0x66,0x66,0x2,0xff,0x2e,0x2e,0x46, + 0xff,0x1,0x1,0x91,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc6,0xc6,0xc6,0xff,0xe7,0xe7,0xe7,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf6,0xf6,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf2,0xf2,0xf2,0xff,0xdd,0xdd,0xdd, + 0xff,0xc4,0xc4,0xc4,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf4,0x1,0x83,0x83,0xf3, + 0x4e,0x82,0x82,0xf3,0xee,0x6d,0x6d,0xf9,0xfc,0x68,0x68,0xfa,0xfe,0x5e,0x5d,0xfc, + 0xfe,0x51,0x51,0xfc,0xff,0x48,0x48,0xfc,0xff,0x3d,0x3c,0xfc,0xff,0x26,0x24,0xf8, + 0xff,0x9,0x6,0xf4,0xff,0x9,0x7,0xeb,0xff,0x18,0x17,0xa7,0xff,0x11,0x10,0x68, + 0xff,0x1a,0x14,0x83,0xff,0x57,0x46,0xd3,0xff,0x96,0x84,0xee,0xff,0xb0,0x9e,0xf9, + 0xff,0xba,0xa8,0xfd,0xff,0xaf,0x9c,0xfd,0xff,0xaf,0x9d,0xf9,0xff,0x97,0x84,0xf3, + 0xff,0x5e,0x53,0xd8,0xff,0x49,0x4f,0x96,0xff,0x62,0x64,0xbe,0xff,0x6f,0x6f,0xf5, + 0xff,0x64,0x64,0xfa,0xff,0x5d,0x5d,0xfb,0xff,0x54,0x53,0xfc,0xff,0x4a,0x49,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3b,0x3a,0xfb,0xff,0x24,0x22,0xf5,0xff,0x25,0x22,0xf2, + 0xff,0x1e,0x1d,0xce,0xff,0x35,0x35,0x4a,0xff,0x39,0x3a,0x30,0xff,0x19,0x19,0x67, + 0xff,0x9,0x9,0x82,0xff,0x5,0x5,0x8b,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93, + 0xff,0x5,0x5,0x8a,0xff,0x19,0x1a,0x66,0xff,0x3a,0x3b,0x2d,0xff,0x51,0x52,0x6, + 0xff,0x54,0x54,0x6,0xff,0x66,0x66,0x1,0xff,0x76,0x77,0x0,0xff,0x7e,0x7f,0x0, + 0xff,0x85,0x86,0x0,0xff,0x85,0x86,0x0,0xff,0x6b,0x6b,0x1,0xff,0x48,0x48,0x1b, + 0xff,0x8,0x8,0x85,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc3,0xc3,0xc3,0xff,0xc9,0xc9,0xc9,0xff,0xdb,0xdb,0xdb, + 0xff,0xde,0xde,0xde,0xff,0xdb,0xdb,0xdb,0xff,0xc8,0xc8,0xc8,0xff,0xc0,0xc0,0xc0, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf2,0x0,0x83,0x83,0xf2, + 0x1a,0x84,0x84,0xf2,0xd5,0x76,0x76,0xf6,0xfc,0x69,0x69,0xfa,0xfd,0x60,0x60,0xfb, + 0xfe,0x57,0x57,0xfc,0xff,0x4c,0x4c,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3a,0x39,0xfb, + 0xff,0x20,0x1e,0xf6,0xff,0xb,0x8,0xf3,0xff,0xb,0x9,0xde,0xff,0x17,0x16,0xa5, + 0xff,0x11,0x12,0x69,0xff,0xc,0xa,0x69,0xff,0x14,0xe,0x72,0xff,0x31,0x27,0x95, + 0xff,0x48,0x3d,0xa4,0xff,0x45,0x3a,0xae,0xff,0x33,0x2a,0xa4,0xff,0x25,0x22,0x99, + 0xff,0x2a,0x31,0x7f,0xff,0x3c,0x40,0x8a,0xff,0x46,0x46,0xc8,0xff,0x56,0x55,0xf6, + 0xff,0x54,0x53,0xfc,0xff,0x52,0x51,0xfc,0xff,0x4a,0x49,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x2a,0x28,0xf7,0xff,0x1f,0x1d,0xf4,0xff,0x1e,0x1c,0xf0, + 0xff,0x29,0x28,0xb5,0xff,0x56,0x56,0x1c,0xff,0x53,0x53,0x6,0xff,0x4f,0x4f,0xb, + 0xff,0x49,0x4a,0x13,0xff,0x39,0x3a,0x2f,0xff,0x29,0x2a,0x4b,0xff,0x19,0x1a,0x66, + 0xff,0x9,0xa,0x83,0xff,0x9,0x9,0x83,0xff,0x9,0x9,0x84,0xff,0x9,0x9,0x84, + 0xff,0x9,0x9,0x83,0xff,0x9,0x9,0x83,0xff,0xd,0xd,0x7c,0xff,0x26,0x26,0x51, + 0xff,0x39,0x3a,0x2f,0xff,0x4e,0x4e,0xb,0xff,0x55,0x56,0x4,0xff,0x60,0x60,0x3, + 0xff,0x67,0x68,0x1,0xff,0x77,0x78,0x0,0xff,0x7d,0x7e,0x0,0xff,0x8d,0x8d,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0x9a,0x98,0x0,0xff,0x7e,0x7d,0x1,0xff,0x4d,0x4d,0x1a, + 0xff,0x8,0x8,0x85,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x80,0x80,0xf3, + 0x4,0x84,0x84,0xf2,0x7f,0x7c,0x7c,0xf4,0xf8,0x6c,0x6c,0xf9,0xfd,0x67,0x67,0xfa, + 0xfe,0x5e,0x5e,0xfb,0xfe,0x53,0x53,0xfc,0xff,0x49,0x49,0xfc,0xff,0x41,0x41,0xfc, + 0xff,0x39,0x38,0xfb,0xff,0x20,0x1e,0xf6,0xff,0xb,0x9,0xf4,0xff,0x9,0x7,0xec, + 0xff,0x14,0x13,0xc7,0xff,0x19,0x19,0xa4,0xff,0x11,0x11,0x73,0xff,0xc,0xd,0x5d, + 0xff,0xd,0xd,0x5b,0xff,0xc,0xc,0x62,0xff,0x11,0x11,0x73,0xff,0x18,0x1a,0x7d, + 0xff,0x1b,0x1c,0x8c,0xff,0x2c,0x2c,0xbf,0xff,0x3e,0x3e,0xe6,0xff,0x52,0x51,0xfc, + 0xff,0x4f,0x4e,0xfc,0xff,0x4b,0x4b,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3f,0x3e,0xfb, + 0xff,0x36,0x34,0xfa,0xff,0x1f,0x1d,0xf5,0xff,0x16,0x14,0xf3,0xff,0x18,0x16,0xdf, + 0xff,0x4e,0x4f,0x6a,0xff,0x76,0x77,0x4,0xff,0x67,0x68,0x3,0xff,0x64,0x64,0x2, + 0xff,0x57,0x58,0x5,0xff,0x55,0x56,0x4,0xff,0x54,0x55,0x3,0xff,0x4e,0x4e,0xb, + 0xff,0x49,0x4a,0x13,0xff,0x49,0x4a,0x13,0xff,0x49,0x4b,0x13,0xff,0x49,0x4b,0x14, + 0xff,0x49,0x4b,0x13,0xff,0x49,0x4a,0x13,0xff,0x4a,0x4b,0x11,0xff,0x52,0x52,0x5, + 0xff,0x53,0x54,0x4,0xff,0x5c,0x5c,0x3,0xff,0x6b,0x6b,0x1,0xff,0x73,0x73,0x0, + 0xff,0x7a,0x7a,0x0,0xff,0x84,0x85,0x0,0xff,0x95,0x94,0x0,0xff,0xa9,0xa9,0x0, + 0xff,0xb1,0xb0,0x0,0xff,0xaa,0xa9,0x1,0xff,0x91,0x90,0x1,0xff,0x4c,0x4c,0x2e, + 0xff,0x6,0x6,0x8b,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf2,0x0,0x84,0x84,0xf2, + 0x1,0x83,0x83,0xf3,0x25,0x84,0x84,0xf2,0xd8,0x76,0x76,0xf6,0xfc,0x66,0x66,0xfa, + 0xfe,0x65,0x65,0xfb,0xfe,0x59,0x59,0xfc,0xff,0x51,0x51,0xfc,0xff,0x47,0x47,0xfc, + 0xff,0x3e,0x3e,0xfc,0xff,0x39,0x37,0xfa,0xff,0x26,0x24,0xf6,0xff,0x11,0xf,0xf4, + 0xff,0xa,0x7,0xf4,0xff,0xb,0x8,0xf0,0xff,0xe,0xc,0xdc,0xff,0x17,0x16,0xc6, + 0xff,0x20,0x1f,0xbc,0xff,0x1e,0x1d,0xbc,0xff,0x25,0x24,0xca,0xff,0x29,0x28,0xcf, + 0xff,0x32,0x31,0xe1,0xff,0x3f,0x3f,0xf6,0xff,0x43,0x43,0xfb,0xff,0x47,0x46,0xfc, + 0xff,0x43,0x43,0xfc,0xff,0x3f,0x3f,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x3c,0x3b,0xfb, + 0xff,0x27,0x25,0xf7,0xff,0x15,0x13,0xf4,0xff,0x1b,0x19,0xf2,0xff,0x28,0x27,0xb6, + 0xff,0x80,0x80,0x35,0xff,0x8b,0x8c,0x1,0xff,0x80,0x82,0x0,0xff,0x7f,0x80,0x0, + 0xff,0x75,0x76,0x0,0xff,0x6f,0x6f,0x1,0xff,0x67,0x67,0x2,0xff,0x60,0x60,0x2, + 0xff,0x5c,0x5c,0x3,0xff,0x59,0x59,0x4,0xff,0x55,0x55,0x4,0xff,0x59,0x59,0x4, + 0xff,0x55,0x55,0x7,0xff,0x55,0x55,0x4,0xff,0x55,0x55,0x4,0xff,0x5b,0x5b,0x3, + 0xff,0x66,0x66,0x1,0xff,0x70,0x70,0x0,0xff,0x78,0x7a,0x0,0xff,0x83,0x83,0x0, + 0xff,0x93,0x93,0x0,0xff,0xa1,0xa0,0x0,0xff,0xb0,0xb0,0x0,0xff,0xb4,0xb4,0x0, + 0xff,0xb4,0xb4,0x1,0xff,0xb3,0xb3,0x2,0xff,0xab,0xaa,0x2,0xff,0x52,0x52,0x43, + 0xff,0x2,0x2,0x91,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x84,0x84,0xf2, + 0x0,0x81,0x81,0xf3,0x5,0x83,0x83,0xf2,0x7f,0x7e,0x7e,0xf4,0xf8,0x70,0x70,0xf8, + 0xfc,0x68,0x68,0xfa,0xfe,0x5f,0x5f,0xfb,0xfe,0x55,0x54,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x47,0x47,0xfc,0xff,0x41,0x41,0xfc,0xff,0x39,0x37,0xfa,0xff,0x2c,0x2a,0xf8, + 0xff,0x1a,0x18,0xf4,0xff,0xf,0xd,0xf4,0xff,0x8,0x6,0xf3,0xff,0x11,0xe,0xf4, + 0xff,0x1d,0x1b,0xf4,0xff,0x28,0x27,0xf3,0xff,0x35,0x33,0xf9,0xff,0x3a,0x39,0xf9, + 0xff,0x3f,0x3e,0xfb,0xff,0x41,0x41,0xfb,0xff,0x3f,0x3f,0xfc,0xff,0x42,0x41,0xfc, + 0xff,0x3f,0x3f,0xfc,0xff,0x3e,0x3d,0xfc,0xff,0x38,0x37,0xfa,0xff,0x2a,0x29,0xf7, + 0xff,0x18,0x16,0xf4,0xff,0x12,0xf,0xf3,0xff,0x1e,0x1c,0xd7,0xff,0x5d,0x5c,0x4c, + 0xff,0xa8,0xa8,0x4,0xff,0xa8,0xa7,0x1,0xff,0x96,0x96,0x0,0xff,0x95,0x95,0x0, + 0xff,0x93,0x92,0x0,0xff,0x8b,0x8c,0x0,0xff,0x84,0x85,0x0,0xff,0x7d,0x7d,0x0, + 0xff,0x75,0x77,0x0,0xff,0x73,0x74,0x0,0xff,0x73,0x74,0x0,0xff,0x72,0x73,0x3, + 0xff,0x6f,0x70,0xc,0xff,0x71,0x72,0x0,0xff,0x6f,0x70,0x0,0xff,0x77,0x77,0x0, + 0xff,0x7b,0x7c,0x0,0xff,0x89,0x89,0x0,0xff,0x8e,0x8e,0x0,0xff,0x9f,0x9e,0x0, + 0xff,0xab,0xab,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb6,0xb6,0x0,0xff,0xba,0xbb,0x0, + 0xff,0xbd,0xbd,0x0,0xff,0xcd,0xcc,0x2,0xff,0xbc,0xbc,0xa,0xff,0x36,0x37,0x66, + 0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x0,0x84,0x84,0xf2, + 0x0,0x85,0x85,0xf2,0x1,0x83,0x83,0xf2,0x25,0x84,0x84,0xf2,0xd7,0x7c,0x7c,0xf4, + 0xfb,0x6a,0x6a,0xf9,0xfd,0x67,0x67,0xfa,0xfe,0x5d,0x5d,0xfb,0xfe,0x55,0x54,0xfc, + 0xff,0x4e,0x4e,0xfc,0xff,0x48,0x48,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x35,0x34,0xfa,0xff,0x27,0x25,0xf7,0xff,0x1b,0x19,0xf5,0xff,0x1e,0x1c,0xf4, + 0xff,0x21,0x1f,0xf5,0xff,0x2f,0x2d,0xf8,0xff,0x37,0x35,0xfa,0xff,0x3d,0x3c,0xfb, + 0xff,0x3f,0x3e,0xfb,0xff,0x3f,0x3e,0xfc,0xff,0x3f,0x3f,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x33,0x31,0xf9,0xff,0x21,0x1f,0xf5, + 0xff,0x13,0x10,0xf3,0xff,0x1d,0x1b,0xe9,0xff,0x39,0x39,0x94,0xff,0xa7,0xa7,0x12, + 0xff,0xbd,0xbe,0x2,0xff,0xb5,0xb6,0x1,0xff,0xb1,0xb1,0x0,0xff,0xad,0xad,0x0, + 0xff,0xaa,0xaa,0x0,0xff,0xa0,0x9f,0x0,0xff,0x99,0x97,0x0,0xff,0x94,0x93,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x8a,0x8a,0x0,0xff,0x85,0x86,0x0,0xff,0x87,0x87,0x0, + 0xff,0x87,0x87,0x0,0xff,0x87,0x88,0x0,0xff,0x90,0x90,0x0,0xff,0x95,0x94,0x0, + 0xff,0x9e,0x9d,0x0,0xff,0xa2,0xa1,0x0,0xff,0xac,0xab,0x0,0xff,0xb2,0xb2,0x0, + 0xff,0xb6,0xb6,0x0,0xff,0xb8,0xb8,0x1,0xff,0xba,0xbb,0x0,0xff,0xc8,0xc9,0x0, + 0xff,0xd5,0xd5,0x2,0xff,0xea,0xe9,0xd,0xff,0x9e,0x9e,0x33,0xff,0xd,0xd,0x8b, + 0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x0,0x84,0x84,0xf3,0x0,0x83,0x83,0xf2,0x5,0x84,0x84,0xf3,0x56,0x83,0x83,0xf2, + 0xe2,0x77,0x77,0xf6,0xfb,0x6a,0x6a,0xfa,0xfe,0x67,0x67,0xfb,0xfe,0x5a,0x59,0xfc, + 0xfe,0x57,0x56,0xfc,0xff,0x53,0x52,0xfc,0xff,0x49,0x48,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3c,0x3c,0xfb,0xff,0x37,0x36,0xfa,0xff,0x36,0x34,0xfa, + 0xff,0x3c,0x3b,0xfb,0xff,0x3e,0x3d,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3f,0x3f,0xfc,0xff,0x43,0x43,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x3d,0x3b,0xfc,0xff,0x27,0x25,0xf6,0xff,0x23,0x21,0xf5, + 0xff,0x1f,0x1d,0xe9,0xff,0x3d,0x3d,0xb2,0xff,0x93,0x93,0x37,0xff,0xce,0xce,0x2, + 0xff,0xcf,0xd0,0x0,0xff,0xc2,0xc4,0x0,0xff,0xbd,0xbf,0x0,0xff,0xb9,0xba,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xb1,0xb1,0x0,0xff,0xad,0xac,0x0,0xff,0xaa,0xaa,0x0, + 0xff,0xa3,0xa1,0x0,0xff,0xa0,0x9f,0x0,0xff,0xa0,0x9f,0x0,0xff,0xa1,0xa0,0x0, + 0xff,0xa4,0xa3,0x0,0xff,0xa7,0xa6,0x0,0xff,0xac,0xab,0x0,0xff,0xb0,0xb0,0x1, + 0xff,0xb2,0xb2,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb8,0xb9,0x0, + 0xff,0xb9,0xba,0x0,0xff,0xc0,0xc1,0x0,0xff,0xca,0xcc,0x0,0xff,0xdc,0xdc,0x2, + 0xff,0xeb,0xeb,0xe,0xff,0xe6,0xe6,0x1b,0xff,0x4c,0x4c,0x6b,0xff,0x1,0x1,0x93, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x0,0x86,0x86,0xf2,0x0,0x84,0x84,0xf2,0x0,0x84,0x84,0xf2,0x5,0x83,0x83,0xf2, + 0x56,0x83,0x83,0xf2,0xe2,0x72,0x72,0xf7,0xfb,0x6a,0x6a,0xfa,0xfe,0x67,0x67,0xfa, + 0xfe,0x60,0x5f,0xfb,0xfe,0x58,0x57,0xfc,0xff,0x53,0x53,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x45,0x44,0xfc,0xff,0x41,0x40,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x43,0x42,0xfc,0xff,0x41,0x41,0xfc,0xff,0x45,0x44,0xfc,0xff,0x49,0x48,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4a,0x49,0xfc,0xff,0x49,0x49,0xfc, + 0xff,0x47,0x46,0xfc,0xff,0x42,0x42,0xfc,0xff,0x38,0x37,0xf9,0xff,0x29,0x27,0xf5, + 0xff,0x2e,0x2c,0xd1,0xff,0x8c,0x8c,0x4d,0xff,0xcb,0xca,0x4,0xff,0xda,0xd9,0x1, + 0xff,0xd7,0xd6,0x0,0xff,0xd6,0xd6,0x0,0xff,0xca,0xcb,0x0,0xff,0xc3,0xc4,0x0, + 0xff,0xbd,0xbe,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb3,0xb4,0x0, + 0xff,0xb4,0xb4,0x0,0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb6,0x0, + 0xff,0xb4,0xb4,0x0,0xff,0xb8,0xb8,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb7,0xb7,0x0, + 0xff,0xb6,0xb6,0x0,0xff,0xb7,0xb8,0x0,0xff,0xbc,0xbd,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xcd,0xce,0x0,0xff,0xd5,0xd5,0x1,0xff,0xe3,0xe2,0x7,0xff,0xf0,0xf0,0x12, + 0xff,0xf0,0xf0,0x16,0xff,0xa0,0xa0,0x40,0xff,0xf,0xf,0x8b,0xff,0x1,0x1,0x93, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x0,0x83,0x83,0xf3,0x0,0x84,0x84,0xf2,0x1,0x83,0x83,0xf2, + 0x5,0x83,0x83,0xf2,0x56,0x83,0x83,0xf2,0xe2,0x7b,0x7b,0xf4,0xfb,0x6c,0x6c,0xf9, + 0xfd,0x69,0x69,0xfa,0xfe,0x61,0x61,0xfb,0xfe,0x5d,0x5d,0xfb,0xfe,0x58,0x57,0xfc, + 0xff,0x55,0x54,0xfc,0xff,0x53,0x52,0xfd,0xff,0x50,0x50,0xfd,0xff,0x4f,0x4e,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfc, + 0xff,0x54,0x53,0xfd,0xff,0x56,0x55,0xfd,0xff,0x58,0x57,0xfc,0xff,0x54,0x53,0xfd, + 0xff,0x57,0x56,0xfc,0xff,0x55,0x54,0xfc,0xff,0x4a,0x49,0xf9,0xff,0x4b,0x4a,0xef, + 0xff,0x74,0x74,0xa0,0xff,0xd7,0xd7,0x24,0xff,0xea,0xe9,0xf,0xff,0xde,0xdd,0x3, + 0xff,0xdb,0xda,0x0,0xff,0xdb,0xda,0x0,0xff,0xda,0xda,0x0,0xff,0xd5,0xd5,0x0, + 0xff,0xce,0xcf,0x0,0xff,0xc6,0xc7,0x0,0xff,0xbe,0xbf,0x0,0xff,0xb9,0xbb,0x0, + 0xff,0xb9,0xbb,0x0,0xff,0xb7,0xb8,0x0,0xff,0xb8,0xb9,0x0,0xff,0xb8,0xb9,0x1, + 0xff,0xba,0xbb,0x0,0xff,0xb9,0xba,0x0,0xff,0xbb,0xbc,0x0,0xff,0xbe,0xc0,0x0, + 0xff,0xc1,0xc2,0x0,0xff,0xc5,0xc6,0x0,0xff,0xcb,0xcc,0x0,0xff,0xd5,0xd4,0x0, + 0xff,0xdf,0xde,0x2,0xff,0xec,0xec,0xd,0xff,0xf2,0xf2,0x14,0xff,0xf0,0xf0,0x16, + 0xff,0xa3,0xa3,0x3f,0xff,0x1a,0x1a,0x86,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x83,0x83,0xf3,0x0,0x84,0x84,0xf2, + 0x1,0x83,0x83,0xf2,0x5,0x83,0x83,0xf2,0x56,0x84,0x84,0xf2,0xe2,0x7c,0x7c,0xf4, + 0xfb,0x71,0x71,0xf7,0xfc,0x69,0x69,0xfa,0xfe,0x68,0x68,0xfa,0xfe,0x65,0x65,0xfb, + 0xfe,0x60,0x60,0xfb,0xfe,0x5d,0x5d,0xfb,0xff,0x5b,0x5a,0xfc,0xff,0x5c,0x5c,0xfc, + 0xff,0x58,0x57,0xfc,0xff,0x57,0x57,0xfc,0xff,0x5a,0x59,0xfc,0xff,0x5e,0x5e,0xfb, + 0xff,0x62,0x62,0xfb,0xff,0x65,0x65,0xfb,0xff,0x64,0x63,0xfb,0xff,0x63,0x62,0xfb, + 0xff,0x64,0x64,0xfa,0xff,0x67,0x67,0xf9,0xff,0x6b,0x6b,0xf4,0xff,0x68,0x68,0xd3, + 0xff,0x22,0x22,0x94,0xff,0x56,0x56,0x68,0xff,0xd1,0xd1,0x26,0xff,0xe9,0xe9,0x11, + 0xff,0xe2,0xe1,0x7,0xff,0xdd,0xdc,0x2,0xff,0xdb,0xda,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd9,0xd9,0x0,0xff,0xd5,0xd5,0x0,0xff,0xd0,0xd0,0x0,0xff,0xce,0xce,0x0, + 0xff,0xce,0xce,0x0,0xff,0xcc,0xcc,0x0,0xff,0xcc,0xcc,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xce,0xce,0x0,0xff,0xce,0xce,0x0,0xff,0xcf,0xd0,0x0,0xff,0xd2,0xd3,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xda,0xda,0x0,0xff,0xde,0xdd,0x3,0xff,0xe8,0xe8,0xa, + 0xff,0xf1,0xf1,0x12,0xff,0xf4,0xf3,0x15,0xff,0xdb,0xdb,0x21,0xff,0x7b,0x7b,0x53, + 0xff,0x1a,0x1a,0x86,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbd,0xbd,0xbd,0xff,0xad,0xad,0xad,0xff,0xab,0xab,0xab, + 0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa, + 0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa, + 0xff,0xaa,0xaa,0xaa,0xff,0xac,0xac,0xac,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x83,0x83,0xf2, + 0x0,0x84,0x84,0xf2,0x1,0x83,0x83,0xf2,0x5,0x83,0x83,0xf2,0x4b,0x84,0x84,0xf2, + 0xaf,0x81,0x81,0xf2,0xed,0x77,0x77,0xf6,0xfc,0x6d,0x6d,0xf8,0xfd,0x6a,0x6a,0xf9, + 0xfe,0x69,0x69,0xfa,0xfe,0x68,0x68,0xfa,0xfe,0x68,0x68,0xfb,0xfe,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x67,0x67,0xfb,0xff,0x69,0x68,0xfa,0xff,0x6c,0x6c,0xf9, + 0xff,0x6d,0x6d,0xf9,0xff,0x72,0x72,0xf7,0xff,0x77,0x77,0xf6,0xff,0x78,0x78,0xf5, + 0xff,0x78,0x78,0xf5,0xff,0x81,0x81,0xf0,0xff,0x6f,0x6f,0xd5,0xff,0x18,0x18,0xa0, + 0xff,0x2,0x2,0x95,0xff,0x5,0x5,0x91,0xff,0x24,0x24,0x80,0xff,0x9c,0x9b,0x3d, + 0xff,0xe4,0xe4,0x1a,0xff,0xf0,0xf0,0x12,0xff,0xe8,0xe8,0xb,0xff,0xe6,0xe6,0xa, + 0xff,0xdf,0xde,0x3,0xff,0xdd,0xdc,0x1,0xff,0xdd,0xdc,0x1,0xff,0xdd,0xdc,0x1, + 0xff,0xdb,0xda,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xda,0xda,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdd,0xdc,0x1,0xff,0xdf,0xde,0x3, + 0xff,0xe7,0xe6,0xa,0xff,0xe8,0xe8,0xb,0xff,0xf1,0xf1,0x12,0xff,0xf4,0xf4,0x14, + 0xff,0xe5,0xe4,0x1a,0xff,0xa6,0xa6,0x38,0xff,0x49,0x49,0x6e,0xff,0x5,0x5,0x91, + 0xff,0x2,0x2,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbe,0xbe,0xbe,0xff,0xb9,0xb9,0xb9,0xff,0x67,0x67,0x67,0xff,0x28,0x28,0x28, + 0xff,0x25,0x25,0x25,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25, + 0xff,0x24,0x24,0x24,0xff,0x2b,0x2b,0x2b,0xff,0xab,0xab,0xab,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x0,0x84,0x84,0xf2,0x0,0x84,0x84,0xf2,0x1,0x84,0x84,0xf2,0x2,0x82,0x82,0xf3, + 0x10,0x83,0x83,0xed,0x59,0x84,0x84,0xeb,0xd7,0x81,0x81,0xf3,0xf8,0x78,0x78,0xf5, + 0xfc,0x73,0x73,0xf7,0xfd,0x72,0x72,0xf7,0xfd,0x70,0x70,0xf7,0xfe,0x71,0x71,0xf8, + 0xfe,0x74,0x74,0xf7,0xfe,0x78,0x78,0xf5,0xff,0x79,0x78,0xf5,0xff,0x81,0x81,0xf2, + 0xff,0x83,0x83,0xf2,0xff,0x84,0x84,0xf0,0xff,0x85,0x85,0xef,0xff,0x86,0x86,0xe8, + 0xff,0x8c,0x8c,0xe1,0xff,0x93,0x93,0xc6,0xff,0x31,0x31,0x5a,0xff,0x2,0x2,0x87, + 0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x93,0xff,0x2,0x2,0x93,0xff,0xe,0xe,0x8b, + 0xff,0x4c,0x4c,0x6c,0xff,0xa6,0xa6,0x38,0xff,0xdb,0xdb,0x20,0xff,0xf0,0xf0,0x15, + 0xff,0xf2,0xf2,0x12,0xff,0xee,0xee,0xf,0xff,0xed,0xed,0xe,0xff,0xeb,0xeb,0xd, + 0xff,0xe8,0xe7,0xa,0xff,0xe6,0xe6,0xa,0xff,0xe2,0xe1,0x7,0xff,0xe3,0xe3,0x7, + 0xff,0xe8,0xe7,0xa,0xff,0xe8,0xe8,0xb,0xff,0xed,0xec,0xe,0xff,0xf1,0xf1,0x12, + 0xff,0xf3,0xf3,0x13,0xff,0xf0,0xf0,0x15,0xff,0xd8,0xd8,0x1e,0xff,0xa8,0xa8,0x39, + 0xff,0x48,0x48,0x69,0xff,0xe,0xe,0x8b,0xff,0x2,0x2,0x93,0xff,0x1,0x1,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xde,0xde,0xde,0xff,0x97,0x97,0x97, + 0xff,0x7a,0x7a,0x7a,0xff,0x92,0x92,0x92,0xff,0x92,0x92,0x92,0xff,0x77,0x77,0x76, + 0xff,0x82,0x82,0x82,0xff,0x78,0x78,0x78,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x66,0x66,0x66,0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x0,0x85,0x85,0xf2,0x0,0x84,0x84,0xf2,0x1,0x85,0x85,0xf2, + 0x1,0x82,0x82,0xd9,0x5,0x83,0x83,0xe6,0x25,0x84,0x84,0xe6,0xa4,0x84,0x84,0xe9, + 0xdf,0x84,0x84,0xf2,0xee,0x84,0x84,0xf1,0xfd,0x83,0x83,0xf0,0xfe,0x84,0x84,0xf2, + 0xfe,0x85,0x85,0xf2,0xfe,0x86,0x86,0xef,0xff,0x85,0x85,0xe7,0xff,0x86,0x86,0xef, + 0xff,0x8b,0x8b,0xe6,0xff,0x8d,0x8d,0xe2,0xff,0x9f,0x9f,0xd2,0xff,0xa3,0xa3,0xcc, + 0xff,0xb4,0xb4,0xc0,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x28,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x93,0xff,0xe,0xe,0x8b,0xff,0x26,0x26,0x7e,0xff,0x6d,0x6d,0x56, + 0xff,0xa6,0xa6,0x38,0xff,0xd9,0xd9,0x22,0xff,0xda,0xda,0x22,0xff,0xe6,0xe6,0x1a, + 0xff,0xf5,0xf5,0x14,0xff,0xf5,0xf5,0x14,0xff,0xf4,0xf4,0x13,0xff,0xf4,0xf4,0x13, + 0xff,0xf5,0xf5,0x14,0xff,0xe6,0xe6,0x1a,0xff,0xd9,0xd9,0x22,0xff,0xcf,0xcf,0x28, + 0xff,0x81,0x81,0x4b,0xff,0x6b,0x6b,0x55,0xff,0x25,0x25,0x7d,0xff,0xf,0xf,0x8c, + 0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xed,0xed,0xed,0xff,0xc2,0xc2,0xc1, + 0xff,0xa6,0xa6,0xa5,0xff,0xaa,0xaa,0xa9,0xff,0x9f,0x9f,0x9e,0xff,0x9d,0x9d,0x9c, + 0xff,0xa1,0xa1,0xa1,0xff,0x90,0x90,0x90,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x71,0x71,0x71,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x0,0x85,0x85,0xf2,0x0,0x84,0x84,0xf2, + 0x0,0x84,0x84,0xee,0x1,0x84,0x84,0xf2,0x1,0x83,0x83,0xce,0x10,0x83,0x83,0xdf, + 0x1d,0x84,0x84,0xf2,0x4e,0x84,0x84,0xe4,0x8d,0x82,0x82,0xb5,0xef,0xa1,0xa1,0xd8, + 0xfe,0xbc,0xbc,0xf3,0xfe,0xa4,0xa4,0xd3,0xff,0xa1,0xa1,0xc8,0xff,0xa4,0xa4,0xd4, + 0xff,0xb5,0xb5,0xc4,0xff,0xb8,0xb8,0xc2,0xff,0xbd,0xbd,0xbf,0xff,0xbd,0xbd,0xbe, + 0xff,0xbc,0xbc,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0xe,0xe,0x8c,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x48,0x47,0x69, + 0xff,0x7a,0x7a,0x53,0xff,0x7b,0x7b,0x54,0xff,0x7b,0x7b,0x53,0xff,0x7b,0x7b,0x54, + 0xff,0x7a,0x7a,0x53,0xff,0x48,0x47,0x69,0xff,0x1c,0x1c,0x85,0xff,0x1a,0x1a,0x87, + 0xff,0x4,0x4,0x92,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xee,0xee,0xee,0xff,0xc6,0xc6,0xc5, + 0xff,0xbd,0xbd,0xbc,0xff,0xa2,0xa2,0xa2,0xff,0x8e,0x8e,0x8e,0xff,0xa2,0xa2,0xa1, + 0xff,0xaf,0xaf,0xae,0xff,0x9b,0x9b,0x9b,0xff,0x8c,0x8c,0x8c,0xff,0x7f,0x7f,0x7f, + 0xff,0x71,0x71,0x71,0xff,0x24,0x24,0x24,0xff,0xa9,0xa9,0xa9,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x0,0x84,0x84,0xce,0x0,0x84,0x84,0xe5,0x0,0x85,0x85,0xf2,0x1,0x85,0x85,0xf2, + 0x1,0x81,0x81,0xc8,0x2,0x85,0x85,0x8b,0x1e,0x7e,0x7e,0x7f,0xe1,0xbd,0xbd,0xbe, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc4,0xc4,0xc5,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbe, + 0xff,0xbc,0xbc,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x15,0x15,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc7,0xc7,0xc6, + 0xff,0xc1,0xc1,0xc0,0xff,0xbb,0xbb,0xba,0xff,0xaf,0xaf,0xae,0xff,0xaa,0xaa,0xa9, + 0xff,0x97,0x97,0x96,0xff,0x88,0x88,0x88,0xff,0x92,0x92,0x92,0xff,0x8c,0x8c,0x8c, + 0xff,0x72,0x72,0x72,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x0,0x86,0x86,0xf4,0x0,0x84,0x84,0xc9,0x0,0x85,0x85,0xde, + 0x0,0x82,0x82,0xbb,0x2,0x85,0x85,0x8b,0x1e,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbe, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc4,0xc4,0xc5,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbf, + 0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc7,0xc7,0xc6, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbe,0xbe,0xbd,0xff,0xa9,0xa9,0xa9, + 0xff,0xa2,0xa2,0xa1,0xff,0x92,0x92,0x91,0xff,0xa1,0xa1,0xa1,0xff,0x9e,0x9e,0x9e, + 0xff,0x72,0x72,0x72,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x85,0x85,0x85,0x1d,0x7e,0x7e,0x7e,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc4,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc7,0xc7,0xc6, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbe,0xbe,0xbd, + 0xff,0xb1,0xb1,0xb0,0xff,0x9b,0x9b,0x9b,0xff,0xa6,0xa6,0xa5,0xff,0x99,0x99,0x99, + 0xff,0x75,0x75,0x74,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa8,0xa8,0xa9,0xff,0x16,0x16,0x26,0xff,0x1,0x1,0x83, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x7e,0x7e,0xc8,0xff,0xf5,0xf5,0xf5,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc8,0xc8,0xc7, + 0xff,0xc2,0xc2,0xc1,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0, + 0xff,0xc0,0xc0,0xbf,0xff,0xae,0xae,0xad,0xff,0xaa,0xaa,0xa9,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa8,0xa8,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x83, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x7e,0x7e,0xc9,0xff,0xf4,0xf4,0xf5,0xff,0xc4,0xc4,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc8,0xc8,0xc7, + 0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xaa,0xaa,0xa9,0xff,0x98,0x98,0x97, + 0xff,0x9f,0x9f,0x9e,0xff,0x2a,0x2a,0x2a,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa9,0xa9,0xaa,0xff,0x1c,0x1c,0x25,0xff,0x2,0x2,0x5f, + 0xff,0x0,0x0,0x83,0xff,0x0,0x0,0x83,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x1,0x1,0x84,0xff,0x2,0x2,0x84, + 0xff,0x7e,0x7e,0xc0,0xff,0xf4,0xf4,0xf5,0xff,0xc4,0xc4,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xee,0xee,0xee,0xff,0xc8,0xc8,0xc7, + 0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbb,0xbb,0xba,0xff,0xa5,0xa5,0xa5, + 0xff,0x8f,0x8f,0x8e,0xff,0x29,0x29,0x29,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xb5,0xb5,0xb5,0xff,0x5e,0x5e,0x5e,0xff,0x15,0x15,0x1e, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0x10,0x10,0x21,0xff,0x1c,0x1c,0x2d, + 0xff,0xaf,0xaf,0xb8,0xff,0xf2,0xf2,0xf2,0xff,0xc4,0xc4,0xc4,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xcd,0xcd,0xcc, + 0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7, + 0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7,0xff,0xc7,0xc7,0xc6,0xff,0xc0,0xc0,0xbf, + 0xff,0x91,0x91,0x90,0xff,0x28,0x28,0x28,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xa7,0xa7,0xa7,0xff,0x7b,0x7b,0x7c, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x86,0x86,0x87, + 0xff,0xe3,0xe3,0xe4,0xff,0xd3,0xd3,0xd3,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xee,0xee,0xee,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xee,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xed,0xed,0xed, + 0xff,0xde,0xde,0xde,0xff,0x67,0x67,0x67,0xff,0xad,0xad,0xad,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xb7,0xb7,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb9,0xb9,0xb9, + 0xff,0xc3,0xc3,0xc4,0xff,0xc1,0xc1,0xc1,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x85,0x85,0x85,0x1d,0x7e,0x7e,0x7e,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc4,0xc4,0xc4,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x85,0x85,0x85,0x1c,0x7e,0x7e,0x7e,0xe0,0xbd,0xbd,0xbd, + 0xfd,0xf5,0xf5,0xf5,0xfd,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x0,0x85,0x85,0x85,0x1c,0x7e,0x7e,0x7e,0xdf,0xbd,0xbd,0xbd, + 0xfc,0xf4,0xf4,0xf4,0xfd,0xc4,0xc4,0xc4,0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x84,0x84,0x84,0x19,0x7e,0x7e,0x7e,0xd4,0xb8,0xb8,0xb8, + 0xfb,0xf6,0xf6,0xf6,0xfd,0xdf,0xdf,0xdf,0xfe,0xdd,0xdd,0xdd,0xfe,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x85,0x85,0x85,0x4,0x7e,0x7e,0x7e,0x56,0x8c,0x8c,0x8c, + 0xe2,0xd0,0xd0,0xd0,0xfb,0xf1,0xf1,0xf1,0xfe,0xf4,0xf4,0xf4,0xfe,0xf5,0xf5,0xf5, + 0xfe,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf7,0xf7,0xf7,0xff,0xd2,0xd2,0xd2,0xff,0x8c,0x8c,0x8c, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x0,0x7f,0x7f,0x7f,0x0,0x81,0x81,0x81,0x5,0x7e,0x7e,0x7e, + 0x56,0x85,0x85,0x85,0xe2,0x9b,0x9b,0x9b,0xfb,0xbe,0xbe,0xbe,0xfe,0xc3,0xc3,0xc3, + 0xfe,0xc4,0xc4,0xc4,0xfe,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xd4,0xd4,0xd4,0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1, + 0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x86,0x86,0x86,0x0,0x7d,0x7d,0x7d,0x1,0x85,0x85,0x85, + 0x5,0x7f,0x7f,0x7f,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8, + 0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe,0xfe,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3, + 0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x83,0x83,0x83,0x0,0x7d,0x7d,0x7d, + 0x1,0x81,0x81,0x81,0x5,0x7e,0x7e,0x7e,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93, + 0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe,0xfe,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3, + 0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e, + 0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe, + 0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1, + 0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x71,0x71,0x71, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d, + 0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd, + 0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1, + 0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x71,0x71,0x71, + 0xfd,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d, + 0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8, + 0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3, + 0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c,0xfe,0x7f,0x7f,0x7f,0xfe,0x71,0x71,0x71, + 0xfd,0xf,0xf,0xf,0xfc,0x0,0x0,0x0,0xdf,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d, + 0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93, + 0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xd3,0xd3,0xd3, + 0xff,0xf2,0xf2,0xf2,0xff,0xd1,0xd1,0xd1,0xfe,0x8b,0x8b,0x8b,0xfe,0x72,0x72,0x72, + 0xfd,0xf,0xf,0xf,0xfb,0x0,0x0,0x0,0xd4,0x1,0x1,0x1,0x19,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e, + 0xe3,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe, + 0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xfe,0xf3,0xf3,0xf3,0xfe,0xd0,0xd0,0xd0,0xfe,0x7f,0x7f,0x7f, + 0xf8,0x11,0x11,0x11,0xd8,0x2,0x2,0x2,0x56,0x6,0x6,0x6,0x4,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d, + 0x56,0x7e,0x7e,0x7e,0xe4,0x91,0x91,0x91,0xfd,0x9e,0x9e,0x9e,0xfe,0x9e,0x9e,0x9e, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa1,0xa1,0xa1,0xff,0xb1,0xb1,0xb1,0xfe,0xce,0xce,0xce,0xfd,0xa1,0xa1,0xa1, + 0xd9,0x45,0x45,0x45,0x31,0x23,0x23,0x23,0x5,0xc,0xc,0xc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d, + 0x6,0x7d,0x7d,0x7d,0x61,0x7e,0x7e,0x7e,0xf0,0x7f,0x7f,0x7f,0xfd,0x7e,0x7e,0x7e, + 0xfe,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0xfd,0x86,0x86,0x86,0xf0,0x84,0x84,0x84, + 0x61,0x5d,0x5d,0x5d,0x6,0x2b,0x2b,0x2b,0x1,0x3,0x3,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x80,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xc0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xe0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xf0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfe,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty.ico + 0x0,0x0,0x3,0xbd, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x5a,0xbd,0x6e,0x1b,0x31,0xc,0x66,0x1,0x23,0x40, + 0xd0,0x25,0x43,0x86,0x8c,0x1e,0x3b,0xf6,0x11,0x32,0xf5,0xd,0x4,0x8f,0xee,0x54, + 0xf4,0x25,0xa,0x7b,0xec,0xd8,0x47,0xc8,0xd0,0xa1,0xd5,0x1,0xb9,0xb5,0x53,0xed, + 0x97,0xf0,0x4b,0xdc,0xd0,0xcd,0x8b,0x1,0x5b,0xa5,0x7c,0x51,0x7d,0x66,0x44,0x91, + 0x94,0xaf,0x29,0x4a,0x20,0x60,0xee,0x87,0xe4,0x47,0x1d,0xf5,0x91,0x77,0x9,0xc0, + 0x2b,0x98,0xc0,0xcd,0xd,0xa0,0x9e,0xc2,0xc7,0x9,0xc0,0x3b,0x0,0xb8,0xbd,0xed, + 0x8f,0x7f,0x5c,0x1,0x3c,0xe2,0xb9,0xbb,0xbb,0xfe,0xf8,0xf3,0x35,0xc0,0x87,0xd7, + 0x0,0xd3,0x69,0x7f,0xfc,0xd,0xed,0x7e,0xe1,0xbd,0x6f,0xd0,0x6,0x7f,0xc5,0x33, + 0xfd,0xf9,0x28,0xf7,0x13,0xb0,0x48,0x60,0x34,0x2b,0xcb,0xe5,0xf2,0x78,0xcf,0x7a, + 0xbd,0x3e,0xea,0x80,0x12,0xf5,0xd7,0x87,0x7,0xd1,0x7,0xb5,0x4d,0x3a,0xd9,0xa6, + 0xe3,0x74,0x9f,0xc6,0x36,0xc5,0xa7,0xb6,0xe9,0xd8,0x12,0x3f,0x63,0x1b,0xa8,0x2d, + 0xbd,0x87,0x3b,0x3f,0xf4,0x41,0xef,0xa1,0x3a,0xc5,0xa1,0xb6,0xc3,0x1c,0xa,0xb6, + 0x30,0xf4,0x91,0xcb,0x81,0xc3,0xc,0xe4,0x59,0x15,0x72,0x28,0xad,0xef,0xd9,0x79, + 0xfa,0x3c,0x72,0xf9,0x73,0xeb,0x9e,0x6c,0x33,0x3e,0x44,0x5b,0x5a,0xf,0x49,0xf, + 0x85,0xe6,0xc5,0x61,0x1e,0xd8,0xb2,0x3e,0x52,0x7c,0x6a,0x9b,0xab,0x1d,0x2a,0x74, + 0x3d,0x72,0x6b,0xc6,0xd9,0x72,0x3e,0x72,0x7b,0x26,0xc9,0x7e,0x1e,0x42,0xd7,0x86, + 0xb0,0x99,0x85,0xe0,0x1b,0xd4,0xe,0xb5,0xf,0xc1,0xa1,0x6e,0xa2,0xde,0x9c,0x8e, + 0xd3,0xf5,0xe,0xf5,0x16,0xef,0xdf,0xad,0x42,0x88,0x3c,0x83,0x74,0x73,0xe4,0x9b, + 0xc4,0x33,0x5f,0xae,0x24,0x84,0x59,0x31,0xf3,0xd,0x15,0x89,0x7,0x2c,0x3e,0x25, + 0x5f,0xb4,0xc6,0x4a,0xbe,0xb9,0x3a,0x50,0x70,0x1c,0xcb,0x53,0x9c,0x4f,0x8e,0xf3, + 0x4a,0xbc,0xc9,0xed,0x2d,0x6e,0x4f,0x94,0x78,0x94,0xdb,0x6b,0x12,0xcf,0xe5,0xea, + 0x9b,0xcb,0x2d,0xb3,0x3e,0x6a,0x9e,0xe5,0x72,0xca,0x88,0xc8,0xbb,0x85,0x6b,0x59, + 0x9f,0xff,0x1a,0x9f,0x54,0xab,0xa5,0x1e,0xc4,0xf5,0x89,0x4c,0xce,0xaa,0xe7,0x9d, + 0x3b,0xc7,0xf1,0x37,0xad,0x53,0x4d,0x4d,0x4b,0x3c,0x6e,0x59,0x1b,0xa9,0x27,0x59, + 0xea,0x20,0xd9,0x5a,0x7d,0xe5,0xf6,0x1a,0xf5,0xa9,0xdd,0xcf,0x39,0x5c,0x92,0xef, + 0x31,0x7c,0x71,0x78,0x4b,0xfd,0x29,0x49,0x88,0xfd,0x26,0xf6,0x1d,0xb7,0x8,0x9d, + 0x5f,0x61,0x1f,0x5a,0x60,0x5f,0x8a,0x7a,0x8e,0xba,0xd,0x6e,0x8b,0x7a,0x37,0xd0, + 0xc7,0xf3,0xfd,0xf5,0x74,0x7f,0x87,0x7d,0x6c,0x8f,0xfd,0xeb,0xd0,0xf6,0x7d,0xb, + 0x47,0x68,0x78,0xb,0xa7,0xbe,0xf5,0xfe,0xda,0x9a,0xc9,0x39,0x44,0x46,0x57,0xb, + 0x37,0xbf,0x64,0xe6,0x69,0x73,0x2c,0xae,0xbe,0xb8,0xfe,0x61,0x89,0x21,0xf9,0xe6, + 0xf6,0xb7,0x26,0x86,0xb4,0x3f,0x38,0xdf,0x9a,0x7a,0x95,0x7c,0x4b,0xef,0x13,0x9a, + 0x7d,0x2f,0xc5,0x90,0x7c,0xe7,0x62,0x70,0xb9,0x72,0x3e,0xb5,0x58,0x72,0xf8,0x39, + 0x7e,0x5,0x86,0xff,0x6b,0xf0,0x6b,0x9f,0x99,0x26,0x86,0xa2,0xf,0x15,0x6b,0x4e, + 0x11,0x43,0xd3,0x53,0x38,0x51,0xe3,0xb7,0xf4,0x98,0x97,0xc6,0x6f,0x99,0x1b,0xc, + 0x31,0xce,0xf6,0x5c,0xcd,0x1c,0x61,0xad,0x51,0xcb,0x5c,0xa1,0xe5,0x1b,0x5,0x16, + 0xb5,0x6f,0xed,0x8c,0xa0,0xc1,0x5f,0xeb,0x3b,0xc7,0xd,0x34,0x86,0x34,0xbf,0xd5, + 0xf8,0x96,0x62,0x8c,0xe1,0x9b,0xc6,0xd0,0xce,0x53,0x16,0xdf,0x52,0xc,0xeb,0xfe, + 0xae,0x89,0xa5,0x99,0xb7,0x92,0x4,0x7c,0xff,0x3f,0xe0,0xfc,0xb4,0xc7,0x39,0x6a, + 0x87,0x73,0xd6,0xd6,0xcd,0x70,0x8e,0x6a,0x70,0x9e,0x72,0x38,0x5f,0x3d,0xe9,0x9f, + 0x3e,0xb8,0x5,0xea,0xc3,0x40,0x7f,0x1a,0x5c,0x3f,0xea,0x68,0x17,0xed,0xa3,0x9f, + 0xe8,0x6f,0x11,0x42,0xd3,0xcf,0x61,0x53,0xfc,0xb9,0x87,0xd3,0x1c,0xb6,0xbc,0xb9, + 0x34,0xe3,0x1e,0xba,0xa0,0x47,0x17,0x89,0x3,0x2c,0xdf,0x43,0x6b,0x63,0x73,0xb5, + 0x49,0x63,0x5b,0xbe,0x5f,0x48,0xa2,0xe5,0x8c,0x31,0xe6,0xbf,0xb1,0x62,0x17,0x38, + 0x5f,0x8d,0x41,0x1b,0x9b,0x72,0x2e,0x17,0xdb,0xb2,0xe7,0xad,0x7c,0x2d,0xad,0xbd, + 0x85,0x77,0xb4,0x7c,0x78,0x69,0xaf,0xcc,0x61,0xb0,0x72,0x32,0xcd,0x9f,0xae,0xbd, + 0xa5,0x5f,0x50,0x9b,0xda,0x75,0xd0,0xc6,0x7e,0xd2,0x67,0x38,0xb8,0xbc,0x38,0xc, + 0x1c,0xf7,0x6b,0xb1,0xe,0xe3,0x4b,0xbc,0xa6,0x78,0x77,0xac,0xc5,0xa0,0xe6,0x37, + 0xc5,0xb7,0xde,0x6a,0xc,0xda,0x1a,0xbb,0x74,0xee,0xcf,0x3d,0x3,0x2d,0x5e,0x43, + 0x6f,0x1f,0x3d,0xff,0x5c,0xcd,0x94,0xc4,0xb0,0x7,0xff,0x8b,0xfc,0xad,0x3d,0x64, + 0xcc,0xfc,0xad,0x3d,0xa4,0x66,0x6e,0xd6,0xc6,0x96,0xd6,0xa1,0x62,0xae,0x66,0x31, + 0x70,0xeb,0xa2,0xe5,0x1e,0xcb,0xb7,0x52,0x2e,0x4f,0xe,0xb7,0xb6,0xdf,0x29,0x30, + 0x3c,0x5b,0x3b,0x6d,0x6c,0x6b,0x7f,0xd4,0xfc,0xbd,0xd1,0x9a,0x77,0x2d,0x86,0x97, + 0x8c,0x5d,0xc0,0xf0,0x4c,0x38,0xc,0xdc,0x6c,0x5d,0x8b,0xa1,0x24,0x14,0xc3,0x58, + 0xb1,0x73,0x35,0x27,0x61,0x90,0x62,0x8f,0xf1,0x6d,0x41,0x8b,0x41,0xfb,0x5e,0x3d, + 0x46,0x6c,0x9,0x43,0xd,0xbf,0x5d,0x2a,0xda,0xfc,0x81,0xf0,0xe2,0xdf,0x10,0x6e, + 0xf6,0x34,0xf4,0xe8,0x3f,0x12,0xb6,0xf3,0xfe,0x1f,0x10,0x9c,0x5b,0x1c,0xbc,0x5f, + 0xed,0x9d,0x9b,0xef,0xbc,0x6f,0xb7,0xce,0xcd,0x3a,0xef,0x9b,0xd,0x6a,0xef,0xfd, + 0x77,0xd4,0xe,0x75,0xe3,0x66,0x1b,0xe7,0xdb,0xce,0xbb,0xf9,0x16,0xf5,0xee,0xa4, + 0x67,0xa8,0x9b,0xce,0xa7,0xfb,0xa2,0x4e,0xf6,0x5d,0xef,0x2f,0xfa,0x8d,0xfe,0x63, + 0x9c,0xfe,0x1f,0x1e,0x76,0x6d,0xf8,0xd,0x7d,0xf0,0x6a,0x94, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-gray.ico + 0x0,0x0,0x90,0x73, + 0x0, + 0x2,0x37,0xa,0x78,0x9c,0x2c,0x7a,0x5,0x54,0x54,0xef,0xf3,0xfe,0xdd,0xa5,0x96, + 0x10,0x96,0x6,0xa9,0xa5,0x41,0x29,0x9,0x69,0x76,0x69,0xa4,0x51,0xa4,0x53,0x90, + 0xee,0xee,0x4e,0x41,0x5a,0x10,0x10,0xe9,0x52,0xba,0xbb,0x44,0x42,0x41,0xba,0x53, + 0x41,0xba,0x7b,0x61,0x17,0xfe,0x7e,0xff,0x9f,0xdf,0x3d,0xe7,0x9e,0x73,0x9f,0xfb, + 0xce,0xbc,0x33,0xf3,0xcc,0x7b,0xe7,0x7d,0xe7,0x9c,0xb,0x0,0x20,0x0,0x17,0xf8, + 0xdf,0x5,0x2,0x60,0x40,0x91,0x2a,0x0,0xa4,0xff,0x7b,0x86,0x42,0xff,0xc3,0x36, + 0x98,0x0,0x20,0xa6,0x6,0x0,0x64,0x64,0xff,0xe1,0x16,0x6c,0x0,0x28,0xd0,0x2, + 0x0,0x2a,0xaa,0xff,0x70,0xcc,0x3f,0x55,0x3,0x3d,0x0,0x80,0xc1,0xfe,0xc3,0x65, + 0xff,0xf4,0xfe,0x98,0x3,0x0,0x1f,0xdf,0xff,0x61,0x56,0x0,0x78,0xe7,0x6,0x0, + 0x8,0xc4,0x7f,0x98,0x43,0x6,0x0,0xf8,0x3f,0x2,0x80,0x92,0xd2,0xff,0xe9,0x6b, + 0xff,0xd3,0x5f,0x4,0x80,0x90,0x90,0xff,0x1b,0x87,0x80,0x80,0x3f,0x3c,0x20,0x20, + 0x56,0x53,0x5d,0xf1,0x11,0xde,0x63,0xbc,0x7f,0xae,0x3c,0x7a,0xa1,0x24,0xf7,0xf2, + 0x7f,0xa3,0xff,0xbb,0x21,0xff,0xec,0x3,0x46,0x6e,0x65,0x56,0x0,0xa0,0x6a,0xff, + 0x42,0x4e,0x5a,0xdb,0xe7,0xd3,0x61,0x20,0xee,0x27,0xa3,0xd7,0x99,0xc7,0xba,0x33, + 0x39,0x26,0x75,0xc7,0xfe,0xec,0xa0,0xbe,0x14,0x28,0x24,0xf,0x64,0xf9,0xe8,0x2e, + 0x81,0xef,0xdb,0xc9,0xc7,0x68,0xa2,0x9c,0x6d,0x8,0xa6,0x25,0xad,0xf4,0x60,0xe9, + 0x9,0xe6,0xd6,0x36,0x7f,0xc2,0x8f,0x9d,0x13,0xa8,0xf5,0x4c,0xe6,0xa9,0x68,0x82, + 0xc6,0x60,0x32,0x37,0x8c,0x3,0xa,0x79,0x37,0x44,0x52,0xf7,0x23,0xab,0xb8,0xde, + 0xeb,0xaa,0xb2,0x7d,0x6a,0xf7,0x8b,0xf7,0xfd,0xf6,0xe7,0xe3,0x69,0x6f,0x8d,0x95, + 0x2f,0x55,0x7b,0x6d,0x33,0xaf,0x8d,0x3d,0xef,0x91,0xaf,0x8f,0x2a,0xdb,0x3f,0xf9, + 0x3b,0x5f,0xa2,0x83,0x97,0x90,0xbf,0xbc,0x49,0xb4,0xb,0x5b,0xae,0x57,0xfd,0xa7, + 0xf4,0xd8,0x48,0x62,0x95,0xd7,0xde,0x45,0x2b,0xbe,0x50,0x2a,0x9d,0xf2,0x78,0x40, + 0x5f,0x67,0xfc,0x95,0xaf,0x7a,0xe1,0xe5,0x73,0xe6,0x3f,0xcd,0x74,0xd4,0x7e,0xdc, + 0x35,0x6f,0xba,0x93,0x65,0x1,0x49,0x65,0x38,0x1,0xf7,0x58,0xf0,0x61,0x64,0x31, + 0x68,0x1e,0xb,0xa2,0xff,0x9a,0xde,0x17,0x9b,0x24,0x1a,0x42,0x4,0x7,0x16,0xf4, + 0x8a,0x19,0x87,0x89,0xb8,0x8c,0x5a,0x6a,0x64,0xbc,0xff,0xfc,0xd6,0x12,0xfb,0x25, + 0xba,0x4d,0xdb,0x7e,0xff,0x9d,0x37,0x68,0x2,0x2f,0x54,0x44,0x4b,0x0,0xdc,0xc3, + 0xfa,0xe0,0xbb,0x9d,0xa3,0x5b,0x6e,0x78,0x7a,0xc2,0x41,0x9d,0x82,0xa,0x81,0xc1, + 0xbb,0xb7,0x6b,0xf5,0xc0,0xc3,0x22,0x8f,0xcb,0x5,0x25,0x90,0x92,0x76,0xb8,0xbe, + 0x43,0xbc,0xc9,0x9,0x8b,0x7a,0x5c,0xd8,0x9d,0xc0,0xc9,0xe6,0x75,0x19,0x2b,0x99, + 0x52,0x90,0xc2,0xb0,0x8c,0x99,0x26,0x3e,0xa0,0x11,0x94,0x68,0x20,0x93,0xbc,0x99, + 0x88,0x15,0xae,0x3,0xfc,0xcf,0x1b,0x92,0x27,0xd2,0x41,0x66,0x9a,0x78,0xff,0xbd, + 0x2f,0x1e,0x22,0x22,0x10,0x3,0xad,0xf,0x1f,0x6b,0xa9,0x94,0xb1,0x20,0x43,0xa5, + 0x59,0x81,0xff,0x3f,0xdb,0x7,0x36,0x38,0x9f,0xd,0x66,0x8,0x7b,0xb7,0x22,0x77, + 0xfe,0xe3,0x7f,0x22,0x78,0xff,0x27,0x42,0x71,0x86,0xf1,0x9a,0xf7,0x3f,0x91,0x19, + 0xb9,0xa0,0xbc,0x2f,0x58,0xff,0x89,0x2c,0xe,0x11,0x69,0x57,0xfe,0x67,0x57,0x9b, + 0x19,0x19,0xfa,0x85,0xc,0xf8,0x8c,0xa2,0x6f,0x8c,0xb0,0x63,0x85,0x6b,0x7a,0x82, + 0x7b,0x52,0xd7,0xa,0xd3,0x35,0x47,0x37,0x71,0xbe,0x28,0xff,0x67,0xff,0x4b,0xe, + 0xa,0x31,0x33,0x8d,0x91,0xb4,0xa9,0x88,0x45,0x46,0xf4,0xcf,0x7,0xa1,0x14,0x86, + 0x32,0x3c,0xfc,0xff,0x2f,0xa6,0x55,0xb9,0x89,0xf3,0x84,0xe7,0xff,0x1b,0xa0,0x9e, + 0x51,0xd,0xca,0xb3,0x33,0x2,0x28,0x55,0xd2,0xb9,0xca,0x2f,0xb8,0x7d,0x7c,0xa6, + 0x25,0x9e,0x38,0x81,0x7c,0x7c,0x7c,0xb4,0x9,0xc9,0x29,0x81,0x2e,0x8f,0xe6,0x68, + 0xc5,0xbf,0x9a,0xe4,0x3c,0x21,0x94,0x60,0x7a,0xfa,0xf,0xd2,0xdf,0xb9,0x1,0x22, + 0xa2,0xc4,0x1f,0xbd,0xf8,0x0,0x51,0xa2,0x58,0x14,0x25,0x40,0x4f,0xef,0x49,0xf0, + 0xcf,0x51,0x9,0x3c,0x84,0xac,0xac,0x6c,0xb1,0x73,0x3e,0xd7,0x3f,0xda,0xbf,0x15, + 0x2,0x17,0x57,0x57,0x8b,0x97,0x6,0x24,0xd8,0xaf,0x27,0xf0,0xf9,0xa0,0x3e,0x47, + 0xad,0xdb,0x4f,0x2,0xf1,0xe9,0x9f,0x1,0xa9,0x96,0xe0,0x48,0xb6,0x77,0xad,0x18, + 0x6e,0x7f,0xe4,0xf8,0x33,0x69,0x2f,0x8e,0x5f,0x1b,0xeb,0x1,0xe1,0xe8,0xc4,0xcd, + 0xe4,0xf7,0x6e,0x24,0xed,0xd0,0x10,0x54,0x8f,0x59,0x33,0xb6,0xdd,0x2a,0xd8,0xec, + 0x6c,0xcd,0x7b,0x2d,0x90,0xbc,0x93,0x28,0xd1,0xa7,0x87,0x2,0x0,0x18,0x35,0xcb, + 0x58,0x6b,0x3c,0x76,0x27,0xe7,0x8f,0x7e,0x67,0x5a,0x7f,0xae,0xdd,0x9f,0x14,0xa2, + 0x8a,0x2f,0xc3,0xff,0x17,0x48,0xb7,0x57,0x4f,0x56,0xf3,0xcb,0xa4,0xcd,0x6a,0xac, + 0xe9,0xe,0x2c,0xd8,0xb0,0xa9,0x6d,0xfd,0x84,0x85,0x4b,0xf8,0x70,0xf0,0xef,0x48, + 0xca,0x49,0xf4,0xf5,0x9a,0xe9,0xef,0xf6,0x58,0x1c,0x21,0x5e,0x80,0xea,0x1f,0x49, + 0xc5,0xc0,0x26,0xce,0xa9,0x6f,0xa7,0x8e,0x26,0x25,0x4f,0x48,0xb4,0x22,0xa7,0xd9, + 0x99,0xa,0x3e,0xe2,0xd,0x1f,0xe,0xf8,0x5f,0x16,0x4f,0x38,0x0,0x64,0xc3,0xbd, + 0x19,0x21,0xa6,0x1f,0x68,0xfd,0xf7,0x4,0x4e,0xde,0x69,0xf1,0x6c,0x35,0x2b,0x65, + 0x9e,0xd3,0x9b,0x7f,0xc1,0x7d,0x97,0xc9,0x42,0x75,0x98,0xa8,0x6c,0xe2,0x74,0x60, + 0xad,0xff,0x26,0x6,0x65,0xa0,0xaa,0xd6,0x4c,0x9f,0xfe,0x2f,0x44,0x59,0xd8,0x93, + 0x71,0xdd,0x9f,0x32,0x3d,0xff,0x78,0x20,0x2,0xd9,0x1e,0x61,0x68,0x39,0x21,0xb8, + 0x7b,0x7,0xff,0x11,0xc1,0x71,0xb0,0x34,0xf7,0x64,0xa1,0x70,0x1d,0x2b,0x24,0x1a, + 0x47,0xeb,0x17,0x47,0x30,0x77,0xf6,0x43,0xc8,0x3f,0x9a,0x3c,0xdf,0x77,0xf1,0xa3, + 0xec,0x84,0x6e,0xc7,0xfe,0x29,0x17,0xf2,0x84,0x58,0xd2,0x59,0x1e,0x9c,0x92,0xb8, + 0xc,0x1f,0xda,0xf9,0xa,0x63,0xd4,0x50,0x68,0x11,0x83,0x6a,0x1e,0xbe,0x9a,0x36, + 0x4e,0x85,0x56,0xaa,0x97,0xda,0x26,0x70,0xe2,0x7,0x9d,0xd8,0x9b,0xd6,0xf,0x6, + 0x8c,0x1f,0x58,0x9c,0x3c,0xeb,0xbe,0x1b,0x8f,0xc6,0xde,0xe1,0x89,0x1b,0x4c,0x39, + 0xe,0xcc,0x65,0x53,0xcd,0xd5,0x19,0xaf,0xa5,0x3b,0xa4,0xd9,0xfd,0x4,0x47,0xea, + 0xf9,0x3a,0xf,0x31,0x47,0x70,0x30,0x2,0x72,0xc9,0x1d,0xf4,0xff,0x56,0x4f,0xc, + 0xe0,0xf3,0xf7,0xa9,0xe9,0x84,0xea,0x67,0x52,0xad,0x7,0xb8,0x5d,0x76,0xbb,0x6, + 0x5e,0x18,0xd1,0xfd,0xed,0x1c,0x63,0xbe,0x16,0x6e,0x68,0x52,0xdc,0xe,0xe9,0x3b, + 0x1b,0x8c,0xed,0xea,0xa0,0xdb,0xdd,0x8a,0x43,0x77,0x9e,0xb6,0xb2,0x8,0xf1,0xf3, + 0x21,0x2c,0x36,0xa9,0x93,0x83,0xfa,0xb1,0xad,0xb,0xa4,0x7b,0xe5,0xdc,0x93,0x1f, + 0x3c,0x40,0x51,0xd3,0x31,0xaf,0x11,0x23,0x23,0x56,0x38,0x19,0x44,0x8f,0x5e,0x64, + 0x23,0xfe,0x25,0x2f,0x25,0xee,0x8b,0xdb,0x37,0x31,0x26,0x5c,0x30,0x32,0x33,0xba, + 0x75,0x83,0x55,0xe5,0x18,0x22,0xd5,0xa0,0xdd,0xf3,0x6d,0x7e,0xe4,0xdf,0x6b,0x3, + 0xc5,0x5,0x4c,0xa0,0x21,0x88,0xe7,0x70,0x75,0x79,0x55,0x7d,0x65,0xaa,0x34,0x3a, + 0x3d,0x64,0x59,0x7,0xd2,0x12,0xe8,0x4b,0x47,0x1,0x71,0x85,0x84,0x89,0x28,0xf1, + 0xe,0x1b,0x95,0xf9,0x9b,0x55,0xdb,0x56,0x60,0x4a,0xcd,0x19,0xe2,0x14,0xf7,0x5e, + 0xa2,0xb,0xc3,0x82,0x2f,0xdf,0xdc,0xa,0xfc,0xe0,0x67,0xd7,0x4d,0x9b,0xb5,0x4e, + 0xb9,0xa6,0x8c,0xc4,0xc3,0xc2,0xf5,0xa2,0xa3,0x8,0xf8,0x8d,0x2f,0x3f,0x83,0x11, + 0xc3,0x3f,0x5a,0xb8,0x9e,0x42,0xf3,0xf3,0x8d,0x56,0x85,0xcb,0x89,0x8e,0x74,0xcb, + 0x80,0x85,0x29,0x6b,0xef,0xcd,0x31,0xfd,0xeb,0x9e,0xc2,0xb4,0x53,0xf4,0xb2,0x89, + 0xe9,0x25,0xdb,0x46,0x95,0x22,0xb5,0xd6,0xca,0x17,0x16,0xc2,0xc1,0x27,0xc0,0xf, + 0x69,0x94,0x11,0xc7,0x80,0x41,0x8,0xac,0x65,0x7f,0x98,0xfd,0x4e,0xa2,0x2a,0x9, + 0x66,0x12,0xac,0x64,0x42,0xd0,0x1,0xdb,0xa1,0xf9,0x8e,0x17,0xe2,0x96,0x4e,0x4c, + 0x73,0x0,0x86,0x51,0x50,0xc2,0x9c,0xfe,0x8,0x3b,0xac,0x28,0x74,0xa6,0xb2,0x6d, + 0x49,0x46,0x2d,0x8d,0x79,0xd2,0x71,0x52,0x9d,0x61,0x3d,0xa6,0x1e,0xbf,0xd5,0xb2, + 0xa,0x6a,0xc5,0x5d,0x9b,0xbb,0x74,0xc3,0xc5,0xa4,0x96,0xbb,0xa8,0x92,0x76,0xd2, + 0x6e,0x8b,0x32,0x6b,0x2c,0xb4,0xc4,0xcf,0x83,0x6f,0x5a,0x87,0x29,0x72,0x87,0x96, + 0x5d,0x76,0x61,0xca,0x48,0xd5,0xf0,0xc5,0xd4,0x61,0x16,0x8c,0xa0,0xeb,0x92,0x82, + 0xf6,0xd9,0xa,0x5e,0xbc,0xba,0xb,0xf4,0x33,0x4d,0x97,0x96,0xc4,0xd,0x7d,0xc3, + 0x15,0xa2,0x5c,0x58,0xc2,0xd,0x64,0xa0,0x90,0x31,0xb9,0x71,0xfd,0xaa,0x17,0x46, + 0x4b,0x3e,0x92,0x19,0x88,0x21,0x76,0xd5,0x9b,0x8f,0x46,0x55,0x61,0x2a,0xf7,0x5, + 0x31,0x63,0x11,0x3,0xfc,0x38,0x29,0xed,0x57,0x9a,0x76,0x23,0x65,0x27,0xa2,0xc8, + 0x9e,0x43,0x79,0x8,0x5e,0x57,0xb3,0x51,0x58,0x8f,0x21,0x6,0x3d,0x5a,0xba,0xbb, + 0x58,0x91,0x71,0x73,0xac,0xf8,0xf7,0x86,0x9c,0x76,0xfb,0x51,0xd3,0xd1,0x5a,0xa7, + 0xf2,0x7b,0x5d,0xa3,0x92,0x48,0xa0,0x22,0xe4,0xe7,0x71,0xdb,0xd3,0xaf,0x39,0x22, + 0x43,0x63,0x11,0x83,0x24,0x49,0xfb,0x67,0xed,0x46,0x5b,0xf2,0xf4,0xa1,0x49,0x63, + 0x4c,0x65,0x9e,0x8c,0xeb,0xdc,0x21,0x50,0xec,0x55,0x30,0x87,0xc2,0xb9,0xc0,0x2d, + 0x53,0xb0,0xdf,0x9d,0x97,0x72,0x3c,0x43,0x6e,0xe3,0x6a,0xae,0xd7,0x8a,0xe3,0x28, + 0x3,0xa,0xf0,0x84,0x77,0x7d,0x1c,0xc7,0x15,0xd4,0x8,0xfc,0xac,0xc9,0x40,0x1, + 0xfe,0x2e,0xb7,0x2e,0x6b,0x29,0xb8,0xe9,0xfd,0x82,0xf7,0xf7,0x91,0x7b,0xe2,0x30, + 0x2b,0xed,0x41,0xeb,0x59,0x5b,0x8,0x14,0x13,0x79,0x44,0x33,0x8b,0xa8,0xc4,0x7, + 0x25,0xfa,0x68,0x36,0x5c,0x24,0x6d,0x8e,0xc9,0xa3,0x64,0x84,0xa4,0x62,0x4c,0x20, + 0x78,0xe4,0xd8,0x5c,0x22,0x2d,0xc6,0x15,0xb2,0x77,0xc2,0xa3,0x59,0x2f,0xa2,0x67, + 0xab,0xea,0x7,0x3,0xdb,0xcf,0x81,0xc0,0xdf,0xc,0xf7,0xd2,0xd5,0xa5,0x9,0xb9, + 0x19,0xdd,0x13,0xe0,0xc6,0xce,0x38,0xe,0x15,0x58,0x86,0x7c,0xd2,0x31,0x8a,0xeb, + 0x69,0x3e,0xc4,0x3e,0x4f,0x27,0x32,0xa4,0x19,0x90,0xa1,0x6a,0x71,0x42,0x64,0xa0, + 0x70,0xa7,0xc6,0x3e,0x7b,0x15,0x1c,0x3c,0xca,0x6e,0xc6,0x7c,0x4a,0x4c,0x3c,0xef, + 0x31,0xf8,0x5c,0xf9,0xeb,0x39,0xc9,0x70,0xcc,0xcb,0x1f,0xbb,0x88,0x6d,0x56,0x36, + 0xd5,0xe9,0x41,0x2c,0xd3,0x94,0x5f,0x8c,0x9d,0x69,0x9a,0x73,0xa9,0x83,0x79,0x9d, + 0x9b,0xfd,0x2f,0x6e,0xfd,0xab,0xdc,0xfd,0xd3,0x0,0x2a,0x26,0x4c,0x50,0x44,0x5f, + 0x92,0x38,0xbc,0x72,0xae,0x11,0xda,0x53,0xbf,0x2e,0x5a,0x83,0xb9,0xc0,0x4e,0xf3, + 0xd2,0x91,0xb8,0x2a,0x74,0x31,0x77,0xb9,0x36,0xee,0xe5,0xc6,0x0,0x66,0xbf,0x5a, + 0xb1,0xcc,0xbe,0xd6,0x58,0x36,0x69,0x0,0x4f,0xf3,0x76,0x83,0xfd,0xd2,0xde,0x61, + 0xf1,0xf4,0x4d,0xad,0x57,0x30,0x44,0x86,0x6a,0x3a,0x15,0x7a,0x2,0x86,0x45,0x84, + 0x12,0x3,0x5a,0x56,0x70,0x4c,0x20,0xd5,0x34,0x75,0x15,0x5a,0xe6,0xfd,0x63,0x33, + 0xe9,0x4a,0xc3,0x71,0xe9,0xb,0xee,0xbb,0x62,0x15,0x93,0x8c,0x75,0xd1,0xdf,0x10, + 0x1c,0x6e,0x39,0x55,0x43,0x1b,0x61,0x9b,0x2f,0x8c,0x22,0xea,0xd,0xbe,0x3b,0xe8, + 0xc6,0xdb,0xae,0xcd,0x70,0x1e,0x1d,0x99,0xf5,0x6f,0x73,0x68,0xd0,0xa,0xea,0xc7, + 0xcf,0x8b,0x31,0xa2,0xfb,0xdc,0x75,0x7a,0x63,0x15,0x33,0x77,0xff,0x13,0x9,0x82, + 0xa4,0xe0,0xbb,0x5f,0x23,0x4d,0x12,0x96,0x1a,0x8d,0xce,0x5,0x9b,0x17,0xe5,0x69, + 0x8b,0x2d,0x99,0x29,0x53,0x25,0x96,0xe9,0x56,0xfe,0xb9,0x2e,0x58,0xf8,0xce,0xcf, + 0x97,0xce,0xf4,0xb1,0xaa,0x60,0x27,0xe0,0xbc,0xba,0x32,0x5c,0x50,0xd2,0xcf,0x3, + 0x6f,0xee,0x10,0x8e,0x51,0xde,0xe1,0xea,0xb1,0xd8,0x71,0x14,0xcc,0x76,0x8a,0xb8, + 0xfe,0x80,0x9f,0xf7,0xe3,0xba,0x2,0xac,0xe6,0xca,0xfa,0xf7,0x1b,0x1e,0x12,0xbb, + 0x25,0x72,0xa0,0x27,0x29,0xd3,0xf1,0xa2,0xe7,0xcb,0xeb,0x86,0x93,0xa9,0xdc,0x92, + 0xa9,0xad,0x51,0xfc,0x7f,0x1f,0x91,0xa4,0x20,0x3c,0x5d,0x2,0x78,0x21,0x89,0x1f, + 0x53,0xdd,0xe8,0x42,0xa8,0x96,0xbb,0x58,0x93,0x9c,0xe2,0x38,0x25,0xd8,0x1b,0xbe, + 0xcf,0xce,0x4f,0x21,0xff,0x6b,0x1b,0x72,0x65,0xdf,0x6b,0xf6,0x6b,0x2c,0x8c,0x19, + 0x72,0x20,0x76,0x9c,0x1e,0x96,0x97,0x10,0xf1,0xaf,0xaa,0x30,0xa6,0xe9,0x2,0x17, + 0xe4,0x27,0x18,0xbb,0x8d,0x3,0x6b,0x75,0x33,0xd,0x54,0x41,0x48,0xee,0xd3,0xd3, + 0x15,0x56,0x36,0x67,0x4a,0x25,0x9a,0x3f,0x7f,0xc9,0x20,0x9,0x51,0xd6,0xd2,0x66, + 0x91,0x32,0x11,0xf2,0xa1,0x5e,0x37,0x62,0xb6,0x9,0x57,0x4f,0x53,0xcc,0x7e,0x86, + 0xe3,0x5c,0x4d,0x1c,0x47,0x37,0xd9,0xa9,0xf4,0xe0,0x81,0x96,0xc3,0x19,0xbb,0x82, + 0x12,0x20,0x8e,0x44,0x93,0x6,0x61,0xdb,0xb0,0x80,0x37,0xe7,0x51,0xeb,0x59,0xaf, + 0x16,0x39,0x6a,0x8b,0x73,0x26,0x53,0x4b,0xad,0xd3,0xed,0x18,0x9a,0xc4,0x89,0x72, + 0x4d,0x39,0xa8,0x7e,0xa7,0xd6,0xb,0x33,0x46,0xff,0xe3,0x37,0xcf,0xad,0xcc,0xb, + 0xa4,0xa9,0x9d,0xa5,0xad,0x3d,0xae,0x91,0xca,0x90,0x65,0x9a,0x62,0x92,0xb9,0x3, + 0xeb,0xba,0x1a,0xfe,0x30,0x30,0x67,0xb0,0xc6,0x8,0x8f,0xc9,0x91,0x57,0x1e,0x18, + 0x40,0xa4,0x9e,0x5,0x51,0x50,0xf4,0x2a,0x44,0xa3,0xb0,0x5a,0xa0,0x2d,0x14,0xf8, + 0xe9,0x98,0xa4,0xdf,0x8c,0xce,0x7f,0xb5,0xba,0xef,0xce,0x87,0xe7,0xf4,0x3e,0xbf, + 0xb9,0x87,0xad,0xff,0x5a,0x1,0x21,0x9f,0xf9,0xc8,0x19,0x8,0x28,0x7c,0xb3,0x4f, + 0xa5,0xdf,0x9c,0x96,0xe1,0x6e,0x51,0x84,0x1a,0xf2,0x92,0xd7,0x66,0xde,0xe4,0x7, + 0xd6,0xc8,0x6c,0xbe,0x6c,0xfc,0x9a,0x48,0xbe,0xbd,0xb0,0xa6,0xd1,0x58,0x1d,0x5b, + 0x55,0x65,0x5d,0x89,0xd7,0xb3,0x1c,0xb7,0xf4,0xd5,0xac,0x12,0xbc,0xdc,0x8d,0xab, + 0xe3,0xd6,0xcc,0x96,0xae,0xe4,0x7a,0x75,0x12,0x23,0xb3,0xea,0xd4,0x13,0x20,0xeb, + 0xeb,0x58,0x94,0x2b,0xd4,0xd,0x7b,0x27,0x34,0xbc,0x30,0x27,0xcc,0xf2,0xc1,0xe0, + 0x61,0x3c,0x8e,0x37,0x72,0xd1,0x82,0x31,0xf,0xf7,0x8b,0x54,0xca,0x45,0x60,0x2b, + 0x8e,0x18,0x3d,0xa2,0x7c,0x68,0x3e,0x4c,0x22,0x71,0x3,0x7b,0x8b,0xed,0xa2,0xc0, + 0x7a,0x5,0x5b,0xac,0xcd,0x82,0x1d,0x3d,0x26,0x2e,0xf5,0xe2,0xe1,0x26,0xf2,0x81, + 0xee,0x66,0xa7,0x40,0x2f,0xe2,0xeb,0xae,0x90,0x28,0x27,0x8c,0xd3,0xde,0xb5,0x72, + 0xa6,0x76,0xb9,0xed,0x19,0x33,0x99,0x4e,0x25,0x4c,0x66,0x3c,0x21,0x72,0x39,0xc1, + 0x38,0x4d,0x73,0x6d,0x4a,0xb9,0x85,0x65,0x20,0xe1,0x17,0xd7,0x8c,0xd7,0xcb,0x7d, + 0x11,0x9d,0x5c,0x22,0xe9,0xc8,0x79,0xbc,0xa,0xc,0xa,0xc8,0x61,0x76,0xc5,0x5b, + 0xd8,0xef,0x2b,0x26,0x3d,0xfb,0x9e,0xb,0xa3,0xf9,0xe5,0xa8,0x2e,0x92,0x24,0x89, + 0x3d,0xa,0xdf,0x51,0x1c,0xa,0xc0,0x37,0x35,0xa0,0x68,0x57,0x83,0x8c,0x3a,0xc9, + 0x82,0xe4,0xea,0x23,0x44,0x62,0x88,0xb0,0xa0,0x3d,0x2b,0xb7,0xd9,0x3c,0x36,0x46, + 0x32,0x1,0xc7,0x56,0xb6,0x5f,0xc3,0x3a,0xec,0x8d,0x7e,0x44,0xc6,0x69,0x28,0x6d, + 0x15,0xc2,0xe5,0x6b,0x6c,0x4d,0x4f,0x7e,0xf,0xf9,0xcd,0x41,0x46,0x57,0xc1,0x9c, + 0xa8,0x26,0xce,0x9f,0x67,0xad,0xd2,0xca,0x2a,0x1e,0xcf,0x37,0x32,0x6b,0x6c,0x88, + 0xe4,0x28,0xba,0x65,0xab,0xa8,0x7a,0x1a,0xdb,0xbd,0x27,0xc6,0x14,0xc4,0x27,0x2, + 0x16,0x30,0x7a,0xc7,0x6,0x88,0x83,0x49,0x31,0xd3,0x8e,0xc2,0x9e,0x42,0x2e,0xcc, + 0x89,0x8d,0xe3,0x1f,0x2b,0x43,0x59,0xe6,0x2a,0x66,0xbf,0x5a,0xc7,0xbe,0x53,0x9, + 0xa7,0x5e,0xc5,0x82,0xe4,0x4b,0xc4,0x22,0xb0,0x28,0xcf,0xf8,0x78,0x79,0x70,0xee, + 0xfa,0xee,0xf8,0x37,0x13,0xa7,0x6f,0xb6,0x8c,0xd8,0xa4,0x94,0x34,0xa2,0x6e,0x12, + 0xa5,0x9a,0x23,0xaa,0xba,0x8e,0x88,0xc2,0xa4,0x2,0x5f,0xec,0xc8,0x89,0xf4,0x40, + 0x6a,0xbe,0x13,0xe3,0x61,0x2b,0x40,0x40,0x4d,0x2c,0x7,0x87,0xb8,0x70,0x64,0x82, + 0x39,0x73,0xcc,0x11,0x32,0x8c,0x2,0x5c,0xe1,0x5a,0x89,0x3b,0x76,0x2f,0x36,0xe2, + 0x65,0x31,0x20,0xfb,0x6d,0x89,0x61,0xa8,0xf6,0x49,0xd6,0x73,0x87,0x3c,0x59,0x47, + 0x47,0x3f,0xce,0x50,0xc7,0xc4,0xc3,0x25,0xd,0xb5,0x3d,0xe6,0xe0,0xe5,0x88,0x79, + 0xe7,0x60,0x6,0x66,0xcd,0x6,0x98,0xa6,0xc,0xd0,0xc7,0x26,0xc9,0xd9,0x62,0xda, + 0x24,0x53,0x4,0x1b,0xca,0xb4,0xec,0x6f,0x85,0x6c,0xd1,0x12,0x11,0xc5,0x16,0xf0, + 0x83,0x56,0x2,0x82,0x2a,0xd1,0x58,0x5a,0x80,0x70,0x59,0xf4,0x31,0xcc,0x23,0x6d, + 0xc0,0xfa,0xc,0x6e,0xcb,0x15,0xde,0xac,0x5b,0x95,0x67,0x22,0x5f,0x87,0xdd,0x71, + 0x42,0x3a,0x30,0xc9,0xc,0x47,0x6a,0xf8,0x29,0x72,0x5b,0x3f,0x25,0x45,0x3b,0x36, + 0x46,0x94,0x13,0xe6,0x87,0x1c,0xea,0xe6,0xf8,0xa7,0x1f,0xde,0xfd,0x5b,0xc0,0xd5, + 0xc3,0xc6,0xe1,0xbb,0xab,0x15,0xeb,0xcc,0xf8,0x20,0x5f,0x38,0x17,0xc4,0x25,0x47, + 0xd7,0xcb,0x63,0x3c,0xcc,0x95,0x94,0x3f,0x48,0x2,0xf8,0x13,0x1e,0x52,0x95,0x4e, + 0x19,0x31,0x97,0xf8,0x2d,0xb1,0x58,0x4a,0x76,0xfa,0xb9,0x6e,0x98,0x82,0x63,0xea, + 0xf6,0xa3,0x67,0x87,0x17,0xd,0x6f,0x47,0x82,0xf7,0xc5,0xcc,0x86,0x67,0xa3,0xa0, + 0x98,0x5a,0xb3,0x21,0xf8,0xff,0x4e,0x61,0x46,0x31,0x82,0xc,0xb7,0x3f,0xae,0xdc, + 0x5,0x50,0x5,0x4c,0x68,0x5a,0x5f,0xa2,0xe4,0x55,0x1b,0x54,0x49,0x7d,0x98,0x9d, + 0xe4,0xf8,0x19,0x4c,0xa4,0xc6,0xca,0xe6,0x29,0x9d,0x77,0x8d,0x80,0xfd,0x6e,0x98, + 0xf3,0x81,0x7a,0x4e,0x7,0xe9,0xd,0x9a,0xa7,0xae,0x2,0x14,0x78,0xe8,0x2,0x7d, + 0x89,0xf7,0xc4,0x4b,0x3c,0x89,0x21,0xe4,0xe,0x19,0xa7,0xb1,0x9a,0xbe,0xc0,0x2e, + 0xf4,0x55,0x6c,0x90,0xd5,0x7f,0x67,0x55,0x99,0xd6,0x30,0x13,0xfa,0xbe,0x80,0xd3, + 0x9e,0xd8,0x5,0x98,0x7a,0x81,0xf9,0x46,0x1a,0x90,0x6b,0xc3,0x4a,0xb9,0xf9,0xaa, + 0xbb,0xf7,0x5d,0xb4,0xba,0xcb,0x60,0x51,0x4d,0x7,0xd4,0x81,0xf,0x95,0x41,0xe, + 0x80,0x2f,0x84,0x7a,0x14,0x99,0x64,0x45,0xdc,0x75,0xab,0x1e,0xec,0x87,0x1e,0xa6, + 0x7f,0x7f,0x33,0x98,0xb2,0x38,0xce,0xca,0x9c,0xda,0x39,0x1c,0x50,0x30,0xe8,0xb4, + 0xe6,0xf5,0x3c,0x5e,0x54,0x33,0x5e,0x59,0xf1,0xf0,0xd9,0xfe,0xb5,0x3e,0x70,0xf5, + 0xfc,0xa5,0x8a,0xbb,0x80,0x90,0xb0,0xd0,0xc4,0x27,0x2d,0xe6,0x5d,0x1b,0x4f,0xfa, + 0x9e,0xbe,0xdf,0xa0,0x19,0x6c,0xbe,0xf6,0xd,0xf9,0x9c,0xe9,0xc2,0xde,0x15,0x9b, + 0x1,0xf2,0xdf,0xc5,0xea,0xb4,0x32,0xd8,0xf9,0xc3,0xd2,0x35,0x3a,0x21,0xc4,0x9a, + 0xe,0x8f,0x8c,0xa2,0xe,0x7a,0xfe,0xd5,0x14,0xca,0xad,0x74,0x21,0x24,0xd6,0x6e, + 0x71,0x6c,0xd5,0xf5,0xa0,0x91,0xc6,0x70,0x53,0x6,0xe1,0xfd,0x97,0x3,0x65,0x3d, + 0x7b,0xa0,0x57,0x6,0x3,0x13,0x2a,0x6d,0x47,0xa7,0xa4,0x1d,0x6,0xfb,0xf1,0x78, + 0x9d,0x85,0x45,0x8f,0xb7,0x86,0x47,0x7d,0x8d,0xe2,0xc1,0x8c,0x2b,0xb1,0xf7,0x7d, + 0x85,0xae,0x48,0xee,0x95,0xf7,0x30,0x6f,0xa0,0x4b,0xc2,0x95,0xa2,0x5d,0x10,0x96, + 0x4d,0xa0,0xd,0x6a,0x90,0x6c,0x97,0xa8,0xfc,0x67,0x95,0x12,0x9b,0x4d,0xa3,0x1b, + 0x63,0x1b,0xf9,0x2e,0x75,0x2a,0xbb,0x46,0x9,0xb7,0x61,0xd3,0xe,0x6b,0x12,0x85, + 0x74,0x6d,0xfe,0xb7,0xa8,0xc9,0xb4,0xf2,0xd4,0xdd,0x21,0xcf,0xc3,0x69,0xcb,0x8b, + 0xe3,0x6f,0xba,0x26,0xf2,0x6b,0xb7,0xa7,0x89,0xbb,0x55,0xee,0x94,0x51,0x18,0xb6, + 0x32,0x37,0x9b,0x75,0xd8,0x6e,0x7f,0x19,0x6b,0xc4,0xdd,0xe,0xd1,0xd7,0x9a,0x1b, + 0x67,0x1f,0xf2,0x3,0x77,0x87,0x4c,0xb9,0xc2,0x5,0x94,0xa9,0xe,0x6f,0x5e,0xf6, + 0x6b,0xee,0xca,0x89,0x89,0x49,0xe5,0x5d,0x4b,0x3,0x22,0xff,0x26,0x83,0x28,0xdc, + 0x9,0xcf,0xc4,0x40,0x4f,0x28,0x10,0x10,0xc,0xf1,0xc7,0x9a,0x76,0x41,0x6c,0xe9, + 0x2c,0xba,0xe9,0x5b,0xba,0x66,0x95,0xf,0xfe,0xf2,0xf7,0xcd,0x69,0x3,0xa6,0xb3, + 0xb5,0x39,0x51,0x8f,0x18,0xd4,0x2d,0x6,0xe2,0x27,0x58,0x72,0x9f,0x59,0x44,0x49, + 0x1d,0xbd,0x7b,0x5a,0x15,0xd3,0xb1,0xb5,0x91,0x8,0xaf,0xca,0xe8,0x94,0xe4,0x5c, + 0x94,0xd8,0x16,0xb1,0xd3,0x96,0x42,0xa6,0x4d,0x14,0xda,0x4e,0x58,0x24,0x4e,0x36, + 0x1f,0x75,0xa4,0x76,0x21,0x7b,0x30,0x2e,0xb6,0xe7,0x4c,0x19,0x96,0xb3,0x77,0x15, + 0x2c,0x18,0x61,0x18,0x11,0x4d,0x83,0x21,0x75,0x18,0x61,0xc0,0xd1,0xdf,0x94,0x4c, + 0x81,0x32,0xdf,0x5e,0x1c,0xd9,0xff,0x6d,0x7a,0x2f,0x21,0xb9,0xd5,0xdc,0x14,0xd8, + 0x35,0x10,0x17,0x47,0x8,0x98,0x9a,0x61,0x3c,0x1d,0xa4,0x55,0x26,0xfe,0x8c,0xd2, + 0xe3,0x20,0x8c,0xe3,0x29,0x6c,0xf7,0x37,0x68,0x93,0xc,0x8,0x7c,0x74,0xfa,0x77, + 0xa7,0x43,0xf5,0xf0,0x91,0xfc,0xad,0x28,0xc2,0x6b,0x2b,0x1a,0x7c,0xf6,0xb4,0x1e, + 0xfd,0x3e,0xa,0xdb,0xcf,0x62,0xc5,0x2f,0x4b,0xc4,0x95,0x69,0xf4,0x93,0x68,0xea, + 0xcb,0x72,0xed,0x98,0xb,0xc7,0xbd,0xbf,0xab,0x79,0x26,0xda,0x26,0x6e,0xdd,0xe8, + 0xca,0xe6,0xd5,0x2f,0xdd,0x18,0x50,0x6c,0x6e,0x6e,0x6e,0xc1,0xcd,0x32,0x6a,0x8f, + 0x9b,0x91,0xfa,0x8b,0x9b,0xa0,0x24,0x6,0xb,0x74,0x74,0x9f,0x4c,0x26,0x89,0x1e, + 0xd1,0x73,0x6e,0xfd,0x16,0xcc,0xfc,0x6,0x73,0xcf,0xb5,0x49,0x72,0x8,0xa1,0x9a, + 0xd,0x3e,0xac,0xf2,0xe8,0xb4,0x50,0x59,0xf,0xfd,0x33,0xec,0x15,0x46,0xfd,0x32, + 0x15,0x93,0x2b,0x89,0x14,0xc3,0x8d,0xd8,0x4b,0xa8,0x4b,0x0,0x82,0x44,0xbf,0xd, + 0xd3,0x0,0x7a,0xd2,0x56,0x87,0xd9,0x32,0x87,0xa0,0xdf,0xf8,0xfd,0x9b,0x89,0x5, + 0x78,0x57,0xfe,0xdb,0x79,0xf0,0x28,0x4e,0x2e,0xb7,0x42,0xa9,0x9b,0x69,0x19,0x83, + 0xad,0xae,0x9b,0xeb,0x43,0xc9,0xdc,0x92,0xc0,0x66,0xf7,0x41,0xdd,0xcf,0xb,0x46, + 0xc7,0x4,0xdb,0x9f,0x6b,0xee,0x8e,0xd6,0xa1,0xb5,0x3e,0xa7,0x6f,0xec,0x6c,0x54, + 0x27,0xd7,0xb8,0x3,0x93,0xbb,0x3c,0xf7,0x99,0x3a,0xb9,0x85,0xcc,0x3b,0xe8,0xf2, + 0xc8,0x48,0x30,0xd9,0x5e,0xe0,0x62,0x12,0xb5,0x82,0x9,0xc7,0x1f,0xf9,0x72,0x6, + 0xa5,0x51,0x4f,0xed,0xae,0xcc,0x7c,0x3d,0xbc,0x12,0x78,0x62,0xf9,0x5c,0x45,0xba, + 0xe7,0x14,0xc4,0x9,0x29,0x32,0x84,0x55,0x2,0x39,0xb9,0x8,0x93,0x3b,0xca,0x70, + 0xa3,0xd7,0x85,0x5f,0x57,0xbe,0x73,0x90,0x7,0x6e,0x4d,0xb4,0xb1,0xb6,0x2,0x36, + 0xc1,0x68,0xe2,0x20,0x78,0x43,0x37,0x6b,0x37,0x23,0x95,0x6a,0x70,0x85,0xe4,0xf3, + 0x0,0xaa,0xce,0x26,0x5b,0xd2,0x1c,0xbf,0xbd,0xf2,0xc5,0xe5,0x6e,0xe4,0x56,0xb6, + 0x50,0xbe,0x71,0xca,0xf6,0xb7,0x36,0xcf,0x50,0xe7,0x5f,0xdb,0x1,0xa8,0xd,0x86, + 0x52,0x6d,0xe7,0xac,0x28,0x13,0xff,0x46,0xee,0x87,0x15,0x2c,0x5d,0xb0,0x4e,0x38, + 0x95,0x74,0x29,0x16,0x48,0x71,0x42,0x2d,0x31,0xd4,0x84,0x49,0x3,0x11,0x68,0x99, + 0x42,0x4c,0x44,0x1d,0xe4,0x30,0xfc,0x12,0x8d,0x2e,0xac,0x46,0x79,0xf5,0x34,0x4, + 0x49,0x6d,0xb6,0xe1,0x2c,0x31,0x9b,0x37,0x74,0xb4,0x5b,0xd6,0xe4,0x95,0x61,0x3d, + 0xc0,0xd5,0x43,0x2e,0x50,0xbb,0xfb,0x1f,0xd,0xe4,0x8b,0x80,0xa4,0xad,0x60,0x6d, + 0x3a,0x78,0x33,0x22,0xfa,0xd7,0x7e,0x6,0xf3,0x38,0xf4,0xf0,0x78,0x37,0x5f,0x28, + 0x75,0x60,0xea,0xe7,0x8f,0x8b,0x60,0x35,0x5b,0x73,0x9b,0x20,0x9b,0xc0,0x8f,0xe7, + 0x68,0x50,0x5,0x36,0x27,0xe6,0x73,0xce,0xd0,0xb0,0x5,0x93,0xcf,0x3e,0xa8,0x17, + 0x8b,0x85,0x55,0xe4,0x24,0xe0,0x16,0x45,0x56,0xcc,0xa,0x1a,0xb3,0x23,0x4e,0x41, + 0xfe,0x89,0x17,0x1a,0x56,0x12,0x6f,0x48,0x92,0xbe,0x3c,0x82,0x82,0xb5,0xc2,0x10, + 0x78,0x20,0x61,0xb6,0x9e,0x7f,0x87,0x32,0x60,0x81,0x23,0x7d,0xba,0xf1,0x9,0xe4, + 0x96,0x0,0xac,0x40,0x7e,0xde,0xf0,0x21,0x20,0xf,0x9d,0x43,0x0,0xa7,0xe,0x75, + 0xd6,0x66,0x9,0xc8,0xaf,0x4f,0x55,0x48,0xa4,0x37,0x4e,0x6b,0xc2,0x41,0x78,0x25, + 0x5,0xa1,0x6f,0x2f,0x9f,0x2b,0xc5,0x1c,0xbb,0x31,0x2c,0x87,0x92,0x3f,0xd5,0x19, + 0x4f,0x6c,0x6a,0x9a,0xe2,0x9e,0x4a,0xac,0xd9,0xf6,0xca,0xda,0x30,0x7c,0x6b,0xc0, + 0xa3,0x70,0x2d,0xa,0x92,0xd6,0x3,0xab,0x15,0x6c,0x83,0x17,0x1f,0xec,0x2e,0xa5, + 0xb,0x88,0x33,0x51,0x11,0x76,0x18,0xd,0x37,0xce,0x6c,0x56,0xf7,0xf4,0x9f,0x5c, + 0x63,0x8a,0xc9,0xc0,0x21,0x46,0xd7,0x43,0xb0,0x77,0x43,0xe,0x7b,0xe7,0x7,0xd2, + 0x12,0x1f,0x3e,0xfa,0x73,0x75,0xcd,0xa5,0x18,0x26,0xbd,0x5,0xb5,0xf4,0x76,0x77, + 0xfd,0x70,0x75,0x7f,0xa9,0x41,0x96,0xfe,0x88,0x46,0x59,0xdc,0xfb,0xb8,0xd6,0xf2, + 0x50,0x5,0x12,0x32,0xf,0x93,0x80,0xa1,0x3d,0x66,0x51,0xb4,0x10,0x8f,0x6b,0xf4, + 0x9f,0xda,0xd2,0xb2,0x29,0x54,0x2f,0x55,0x65,0x9,0x1d,0x9a,0x60,0xe0,0x91,0x8b, + 0x3d,0xe9,0x90,0x9,0x8,0x98,0x9,0x33,0x5b,0xd1,0x2e,0xc4,0x82,0x31,0xaa,0xf9, + 0xea,0xb6,0xb7,0x87,0x4a,0xaf,0x1e,0x8f,0x3e,0x0,0xdf,0x93,0x4c,0x8f,0x2c,0xcc, + 0x3e,0x87,0x46,0xe2,0x53,0xa6,0x1f,0x63,0xe3,0x50,0xe9,0x0,0x17,0x42,0x67,0xbc, + 0x78,0x27,0x99,0x8d,0x58,0xeb,0x45,0x3,0x7d,0x28,0x45,0x85,0x15,0xff,0x3d,0x1c, + 0xba,0x6a,0x48,0xa4,0x4d,0x30,0x19,0x32,0x73,0x1e,0x26,0x29,0x5,0x25,0x8b,0x99, + 0xae,0x9f,0x1d,0x24,0x59,0x5b,0x20,0x41,0xd0,0x74,0x24,0x46,0x82,0x30,0x7f,0xee, + 0x96,0xe6,0xaa,0x3f,0x68,0x24,0x67,0xad,0x0,0xcb,0x58,0x86,0xa0,0xfc,0x55,0x20, + 0x95,0xa9,0x82,0x1b,0xe8,0xc7,0x53,0x55,0xcd,0xb3,0x9d,0x8d,0x37,0x1b,0x4f,0x9e, + 0xbc,0x87,0xeb,0x2e,0x3e,0x64,0x8f,0xc1,0x75,0x77,0x8e,0x75,0x9f,0xb5,0x44,0x24, + 0xf0,0x9f,0x77,0xee,0xe6,0x32,0xa8,0x64,0xf0,0xcc,0x30,0x84,0x58,0x13,0x6d,0x95, + 0x7f,0xd3,0xa7,0x32,0xc3,0x65,0xc,0xd1,0xe0,0x56,0xe7,0x7f,0xa9,0x49,0x8f,0xa8, + 0x2,0xe7,0xfa,0xf5,0x7f,0x36,0x28,0x11,0x76,0xc2,0x4b,0x66,0x40,0x34,0xad,0x2e, + 0xf9,0x5f,0x4f,0x68,0xd5,0x5b,0x2f,0xc5,0x74,0x63,0x92,0x9a,0xd8,0x79,0x56,0x9c, + 0x27,0xc6,0x7b,0x1a,0x9f,0xfd,0x74,0xb0,0xe,0xed,0xd9,0xcc,0x90,0xf5,0x3f,0xd, + 0xec,0x9f,0xdf,0x21,0x59,0x5a,0xa6,0x81,0xd5,0x63,0xb6,0xb2,0x23,0xae,0xcc,0x76, + 0xfc,0x35,0xfb,0xf0,0xf4,0x23,0x7d,0x4c,0x58,0xa8,0x5e,0x8b,0x1b,0x79,0xc3,0x28, + 0x7f,0x77,0x5e,0x11,0xad,0xdb,0x5,0xcf,0x5e,0xb8,0xed,0xb9,0x78,0xe7,0x4a,0x28, + 0x80,0x75,0x10,0xcb,0x2f,0xa4,0x3e,0x20,0xd2,0x95,0xdc,0xd9,0xc7,0x63,0x98,0xa4, + 0x70,0x40,0x8e,0x9b,0xb9,0x2,0x57,0x23,0x29,0xe7,0x77,0x8a,0xef,0xa9,0x2b,0x1b, + 0xbb,0x23,0x4,0x4f,0xb,0x47,0x2,0x9b,0xc8,0x44,0xf0,0xa1,0x6b,0xb,0x4f,0x0, + 0x23,0x61,0xc0,0x17,0xd4,0x32,0xb0,0x6a,0x1c,0x89,0x6c,0xf3,0x5a,0x6,0x27,0x32, + 0x2a,0x95,0xa6,0xed,0x76,0x9b,0xe0,0xf0,0x6b,0x49,0x53,0x1,0x48,0x8b,0x5f,0x67, + 0xdc,0x34,0xb7,0x4c,0xcd,0xec,0xc1,0x82,0x79,0x48,0xe3,0x54,0xf8,0xf,0x2c,0xe0, + 0x73,0xe0,0x95,0x7e,0x67,0xc7,0xf5,0xaa,0x3f,0xce,0x9,0x21,0xe,0x36,0xfa,0x1d, + 0xc8,0x5,0xa,0xbd,0xef,0x7e,0x7f,0x9f,0x9d,0x1c,0xe8,0x37,0x43,0x3b,0x67,0x8b, + 0x7d,0x4e,0x46,0xa,0xc4,0x4f,0x1e,0x75,0xfc,0xea,0x45,0x64,0x32,0x11,0x50,0x2, + 0x3a,0xdf,0xaa,0x33,0xee,0xdb,0xf2,0xae,0xcc,0x41,0x2e,0x52,0x21,0xb3,0xf7,0x7b, + 0x18,0x94,0x21,0xf6,0xe4,0x3d,0x28,0xc5,0x37,0x13,0x95,0xde,0xab,0xfa,0x27,0x92, + 0xba,0x8f,0x61,0xbe,0x55,0x89,0x8a,0x40,0x39,0xda,0xfc,0x97,0x62,0xe6,0x5d,0x48, + 0x3b,0x4f,0x29,0xd9,0xa0,0x43,0xdf,0x4b,0xc8,0xb4,0xc,0x17,0xac,0xfa,0x15,0xb3, + 0x3b,0xa0,0x7,0x1d,0x7a,0x21,0xee,0xd1,0x4b,0x28,0xf0,0x31,0x2a,0xd4,0xbc,0x7d, + 0xe8,0x56,0x25,0xd7,0x37,0x9d,0x2d,0x48,0xdb,0xcf,0x39,0x6d,0x2b,0xc3,0xa5,0xb9, + 0x30,0x87,0x23,0xe,0xb4,0x98,0x3b,0x15,0x31,0x26,0xc2,0x2c,0x46,0x35,0x1c,0xa9, + 0xe2,0xcf,0x8e,0xb3,0x10,0x92,0x9f,0x1c,0x87,0x5d,0x3,0x78,0xf4,0xc5,0xbb,0xd9, + 0x4a,0x89,0x3a,0x60,0x6,0x1a,0xea,0x3,0xc1,0xf7,0x2b,0xd1,0xcc,0x4b,0xe7,0x65, + 0x6a,0x4a,0x87,0xc,0xf2,0x1,0x26,0xd5,0x42,0x9b,0x9e,0xa0,0x82,0x92,0xcb,0x14, + 0x52,0x67,0x18,0x36,0xec,0xeb,0xd,0x40,0x55,0x12,0x47,0xec,0x6f,0x7b,0xa9,0x61, + 0x77,0x5f,0x6,0x9,0xe2,0x69,0x71,0x2,0x4a,0x71,0xec,0xbb,0x57,0x26,0xee,0xe3, + 0x33,0x4c,0x83,0x44,0xeb,0xb8,0x9b,0xdf,0xb8,0xea,0x4c,0x90,0x80,0x24,0x68,0x4a, + 0xa0,0xdf,0xc8,0x9d,0x5a,0x8b,0x83,0x91,0x78,0xf4,0xe1,0x38,0x55,0xc3,0xbc,0x19, + 0xaa,0x5e,0x49,0xdd,0x14,0xb1,0x63,0x35,0xd2,0x8,0xb5,0xa7,0xf2,0x55,0xff,0x96, + 0x6f,0x9f,0xbc,0xd4,0x4b,0x5b,0x79,0xfa,0x62,0xa1,0xd4,0x82,0x9d,0x68,0x62,0x70, + 0xf4,0xaa,0x3f,0x9c,0x43,0x33,0x14,0x4c,0x2f,0x62,0x8c,0x76,0x49,0x94,0xb8,0xa6, + 0xd,0xdc,0x6b,0x92,0xbf,0x88,0x35,0x16,0x2f,0x97,0x1d,0x41,0x31,0x5b,0x80,0xf2, + 0x17,0x3,0x88,0x63,0x48,0x28,0xb4,0x96,0xe8,0xfd,0xf,0x6a,0x7b,0x3e,0xe9,0x3a, + 0x6,0xbb,0xfc,0xab,0xd4,0x16,0x17,0x48,0xdf,0xc7,0xcf,0x1d,0x4b,0x56,0x6d,0x5f, + 0x1d,0x1a,0x61,0x95,0x57,0x1a,0x86,0x3d,0x1f,0xa1,0x8a,0x3a,0xf2,0x5e,0x2b,0xdc, + 0x2a,0x4c,0x98,0x36,0xe,0xa1,0xc5,0xd0,0x5b,0x99,0x54,0xfd,0xca,0x70,0xaf,0xee, + 0x4a,0xfe,0x4a,0x12,0x9b,0x5c,0xe4,0x64,0x5b,0x1,0x5,0x2a,0xbf,0xc,0x35,0xa0, + 0x0,0x67,0x9a,0x0,0xc9,0x2f,0xe6,0xfa,0x2,0x77,0xc4,0x4a,0xa5,0xc6,0x3f,0x4a, + 0x4c,0xf2,0xac,0x4c,0x48,0xe3,0x92,0xfa,0x3a,0x89,0x9d,0x41,0xb8,0x31,0x49,0x1c, + 0xa7,0x46,0x1d,0xe0,0x2f,0x6e,0x4f,0x3c,0xe7,0x26,0xe6,0x1e,0x36,0xe0,0x3b,0x57, + 0xed,0x47,0x5,0xd6,0x1a,0xb6,0xd,0xae,0xc0,0xcd,0xee,0xce,0xd5,0x37,0xfe,0x84, + 0xa3,0x34,0x45,0x86,0xc0,0x69,0xbc,0xf0,0x46,0xfb,0xb9,0xc9,0x65,0x5f,0x77,0x5b, + 0xc2,0x8,0xe2,0x64,0x34,0x0,0xeb,0xee,0xa,0xa6,0x27,0x5d,0x27,0xa0,0xb4,0x3a, + 0x13,0x1e,0xfd,0xa8,0x1e,0x3d,0x8b,0x73,0x9a,0x18,0xfd,0x38,0xcb,0xe6,0xfb,0x68, + 0xb0,0xf2,0xda,0x6b,0x99,0x9e,0xc2,0x2b,0xd8,0xf0,0x98,0xd9,0xe1,0x18,0x8,0x6e, + 0xb,0x9a,0xe6,0xe7,0x22,0x2d,0xb6,0xad,0x64,0x54,0xb5,0x5e,0xc8,0xf8,0xc,0x5d, + 0x51,0x17,0x6b,0x8d,0x8a,0xf3,0x62,0x4a,0x75,0xb2,0xa2,0x41,0x1f,0xb0,0xc3,0xf3, + 0x97,0xe0,0xe7,0xd4,0x7e,0x36,0xc8,0xec,0x8b,0x3,0x15,0x69,0xb3,0x4,0x35,0x1f, + 0xe8,0xda,0x21,0xf9,0xe,0x11,0x22,0x28,0xd0,0xf9,0xf,0x91,0xcf,0xed,0x4d,0xec, + 0x42,0xb2,0xbf,0x0,0x4f,0x9e,0xf9,0x6,0xdb,0x12,0xdd,0x47,0x97,0x77,0xce,0x5e, + 0x9c,0xf8,0xb0,0x48,0x78,0x50,0x7f,0x4,0xab,0x33,0x83,0xab,0xe5,0xf0,0xb5,0xc1, + 0xe8,0xd0,0x6d,0xf6,0x1c,0x6e,0x51,0x39,0x2f,0xf3,0x3d,0x4a,0x2a,0xf4,0x62,0xf2, + 0xb8,0xfa,0xf5,0x21,0x91,0xdc,0x97,0x3f,0xea,0x2,0x65,0x51,0xa5,0xc8,0x94,0xc0, + 0x5d,0xdb,0x4,0xae,0xfd,0xd0,0x3d,0x5c,0x3b,0xad,0xc7,0xda,0x29,0x3b,0x59,0xf5, + 0x63,0x5,0xd1,0x5d,0xa7,0x8f,0xda,0xd0,0x11,0xa4,0xbb,0xaf,0x9a,0x57,0x65,0xa, + 0x15,0x12,0x27,0xe1,0xfc,0xd9,0x27,0xae,0x36,0xf,0x5f,0xab,0xda,0x7e,0xe0,0x91, + 0xda,0x3c,0xfc,0xfe,0x16,0x3d,0x45,0x7b,0x39,0xd1,0x6c,0x99,0x40,0x5d,0xd2,0xb4, + 0xbf,0xa4,0x3d,0xd8,0x8b,0x7,0x79,0x8f,0x6f,0x3,0x21,0x60,0x58,0x16,0x3e,0x62, + 0x48,0x57,0xb9,0x75,0x49,0xea,0xe,0xa1,0x2,0x1a,0x1e,0xbe,0x99,0xdc,0xcd,0x91, + 0x59,0x2a,0x98,0x6a,0x4b,0x1,0x82,0x70,0x52,0x49,0x86,0xdf,0xc7,0xdd,0xf,0x41, + 0xed,0x26,0xaf,0x7c,0x1,0xe6,0xe3,0xae,0xa5,0xe9,0x1c,0x65,0xeb,0x49,0x9b,0x5, + 0xbc,0xf9,0x94,0xcc,0x1b,0xc,0xa,0x4,0xc,0x93,0x7f,0x11,0x83,0x65,0x52,0xe9, + 0x72,0xcf,0xe2,0xa8,0xe3,0x37,0x36,0xfa,0xf2,0xba,0xba,0x53,0xdd,0xde,0xdb,0x71, + 0xd2,0xc0,0x7b,0x6f,0xba,0x87,0xcc,0xfa,0xd0,0x98,0xe0,0x86,0x96,0xeb,0xb4,0x57, + 0xd3,0x8c,0x53,0xa9,0xaa,0xed,0x8f,0x9b,0x9d,0xd6,0xa4,0xa1,0xf6,0x34,0x5e,0xfa, + 0xc1,0x92,0xa3,0xc7,0xde,0x9f,0x6b,0xfa,0xa6,0xeb,0x47,0x94,0xd8,0xdc,0x97,0xd, + 0xce,0x93,0x53,0x31,0x6b,0x67,0x43,0x63,0x8d,0xbb,0xf,0xea,0xef,0xed,0x1f,0xfc, + 0xa2,0x2f,0xd0,0xb,0x7,0xde,0xa3,0x81,0xd7,0xed,0x2c,0xc1,0x95,0xb0,0x6e,0xac, + 0x1e,0x97,0xce,0xf0,0xd8,0xdf,0xcb,0xc0,0x6c,0x51,0xf4,0xac,0x13,0xc4,0xe,0x40, + 0xed,0x28,0x86,0xc2,0xab,0x4,0x2f,0x22,0xf1,0x7f,0xe5,0x87,0xe7,0xe0,0x94,0x77, + 0x76,0x1a,0xa7,0x52,0x2e,0x66,0xc7,0x12,0x5c,0xb0,0x42,0x37,0x45,0x6f,0xa3,0x22, + 0x69,0x40,0x87,0x70,0xbf,0x11,0x9b,0x36,0xb7,0x65,0x9f,0xac,0x9f,0xe7,0x24,0xf3, + 0xec,0x2a,0x2f,0xc3,0xd4,0x24,0xfb,0x41,0x2e,0xab,0x14,0xaf,0x58,0x5e,0xe9,0x1, + 0x2e,0xe6,0x2d,0x92,0x17,0x5e,0xa8,0x43,0xc7,0x66,0x45,0xa,0xd4,0x5,0x15,0x2a, + 0x49,0xa7,0x67,0xc1,0x3a,0xb7,0x32,0x3,0xa,0x76,0x38,0x6b,0x37,0xe,0x72,0xe2, + 0xd3,0x2c,0xa0,0x68,0x80,0x8f,0xf3,0xfa,0x4b,0x1c,0xb2,0x7c,0xac,0xc1,0x1a,0x17, + 0xfc,0xaa,0x96,0xba,0x5f,0xbf,0x9d,0x53,0xbd,0x12,0x22,0x40,0xce,0xb9,0x16,0xe8, + 0x2e,0x4a,0xe7,0x7e,0xf1,0xcc,0x6f,0x7a,0x95,0xbb,0x79,0xf9,0x4d,0xec,0x48,0x51, + 0xfa,0x66,0x82,0xc1,0x1b,0x78,0x1,0x1a,0x61,0x61,0x51,0xf8,0x88,0xa9,0xeb,0x5f, + 0xf9,0x98,0x5e,0x5e,0x56,0xcd,0xed,0xdc,0x7a,0x2c,0xd6,0x59,0xfe,0xe2,0x18,0xe7, + 0xbd,0xb4,0xc9,0xf3,0x87,0x54,0xab,0xc9,0x14,0xa3,0x2d,0x78,0xf3,0x7,0x4d,0x5e, + 0x50,0xc3,0xc3,0x1a,0x47,0xef,0x65,0xf9,0xb1,0xc4,0x66,0x63,0xf0,0xfb,0xf0,0x4a, + 0x45,0x8,0x28,0xa0,0x68,0xf8,0x38,0xeb,0xe1,0x86,0x70,0xd4,0x34,0x6e,0x91,0x1, + 0x82,0x1b,0xf2,0x5a,0x81,0x74,0xb1,0x57,0xb0,0x82,0xfa,0xad,0x94,0x24,0x2e,0x7e, + 0xf,0x2e,0x93,0x67,0x67,0xf7,0xaf,0xac,0x39,0x17,0xc,0x33,0xac,0x4f,0xf9,0x8b, + 0xf3,0x6b,0x13,0xd2,0x16,0xff,0xb2,0x8c,0x85,0xf0,0x55,0xe2,0xc5,0x4,0xdf,0x43, + 0x95,0x36,0x87,0x9b,0x23,0x5a,0x89,0x28,0xc1,0x9b,0x19,0x36,0x2f,0x8b,0x72,0xcb, + 0x8f,0x5c,0xef,0x87,0x46,0xa8,0x42,0x34,0x85,0x61,0x77,0xf7,0x7d,0xa8,0x39,0x10, + 0xc2,0xfc,0x7e,0x9f,0x2f,0x7a,0x1,0xe7,0xf0,0xc1,0xd6,0x73,0xec,0x5f,0x8a,0x9f, + 0x17,0x44,0x9d,0x85,0x2d,0xb7,0xa2,0xee,0x39,0xfe,0xcc,0xbd,0xbb,0xc2,0x61,0xe2, + 0xe,0x9,0x28,0x17,0xa3,0x3e,0xcc,0xd,0x4c,0x6b,0xc2,0x8c,0x8f,0x92,0x6f,0x66, + 0x9c,0x7c,0x37,0xa5,0x0,0xa1,0xd,0x9e,0x76,0x30,0xb8,0x1a,0xa0,0xf1,0x5b,0xab, + 0xd0,0xaf,0xf7,0xc0,0x7c,0x5c,0x22,0x3c,0xe9,0xbf,0x50,0x61,0x3d,0xcc,0x95,0xe1, + 0x26,0xde,0x20,0x15,0xf2,0x6,0x56,0x6f,0x35,0x5a,0x84,0xc3,0xd3,0x6d,0x84,0x4f, + 0x1d,0x62,0xd1,0x3a,0x7e,0x6f,0xcb,0xcc,0x75,0x31,0xf2,0x7d,0x12,0x35,0xd8,0x59, + 0x4e,0xd4,0x0,0x97,0xc2,0xdd,0x7c,0x4e,0xc5,0xe8,0x7d,0x73,0xfa,0xfd,0xe2,0xf8, + 0x55,0xd7,0x71,0x63,0x30,0x1d,0xec,0x5d,0x4f,0xc5,0xdf,0x15,0xd,0xc6,0x6d,0x42, + 0xab,0x88,0xe9,0x3d,0xdb,0xeb,0xe5,0xd4,0xf9,0xbb,0xbf,0xbc,0xf6,0xac,0xf3,0x6d, + 0xe6,0xb2,0x49,0xa4,0x3d,0xb1,0xd2,0x4c,0x90,0xb2,0xfc,0xd2,0x55,0x65,0xcc,0x50, + 0xf8,0x91,0xcc,0x37,0x31,0x43,0xac,0x92,0x84,0x7,0x5a,0x81,0x2,0xe7,0x2a,0x3, + 0xd3,0xca,0x98,0x6e,0x37,0x94,0x88,0xdf,0x66,0x65,0x73,0x99,0x74,0xe,0x86,0x34, + 0x10,0x3b,0xc2,0x8c,0x4e,0x90,0x38,0x1b,0x52,0x62,0x4,0xfe,0x58,0x30,0xd4,0xf8, + 0x5f,0x3b,0xfd,0x7d,0x49,0xab,0x66,0x2a,0xfa,0x80,0x52,0x3a,0x8b,0xee,0x79,0x1d, + 0x2a,0x62,0x6,0x39,0xac,0xc6,0x4,0xda,0xb9,0x56,0x8e,0x2b,0x67,0x1e,0x77,0xeb, + 0xe3,0x92,0x6e,0x82,0x25,0xae,0xbd,0x2d,0x62,0x12,0x60,0x89,0x62,0x0,0x69,0xeb, + 0x78,0xc0,0xbd,0x1,0xb3,0x14,0xb3,0xbd,0x8,0xdf,0xc0,0x34,0x73,0xde,0x6c,0xa5, + 0xd2,0xf0,0x82,0x87,0xe5,0x3b,0x7,0x3b,0xfe,0xbf,0x3f,0xd6,0x55,0xde,0xde,0xbe, + 0xca,0x77,0x4c,0x4d,0x2d,0xb5,0x39,0x6f,0x97,0xf,0x3c,0xe6,0xdf,0xfd,0xee,0x4e, + 0x46,0xbc,0xcd,0x91,0x8a,0xde,0x49,0xd5,0xc8,0x7f,0x58,0xee,0x7a,0x3f,0x5b,0x8e, + 0xae,0xeb,0xfb,0x61,0x90,0xd1,0x93,0x36,0xc,0x5b,0xee,0xa,0x14,0xa7,0x73,0x1f, + 0x79,0xe6,0xb1,0xa9,0xfd,0x76,0xb6,0xbb,0x21,0x6d,0xcb,0xc8,0x25,0x74,0x95,0x9e, + 0x9,0xe,0x4e,0x74,0x9b,0x67,0x8b,0xe1,0xc5,0xb,0x53,0x7e,0x30,0x3d,0x8e,0x3a, + 0x86,0x3f,0x55,0xfa,0x97,0xa7,0xa3,0x3d,0xa2,0x29,0xac,0x9f,0x19,0xd7,0x97,0xd9, + 0xbe,0xd3,0xd0,0x5b,0x12,0xcc,0x46,0xe5,0x0,0x85,0x74,0x20,0x49,0x7,0x80,0x90, + 0xd7,0x81,0x1,0x73,0x5c,0xbe,0x89,0xcb,0x16,0xbf,0x57,0x5e,0x4f,0xe9,0x92,0x77, + 0xa6,0xa,0x8c,0x42,0xc3,0x95,0x21,0x35,0xdd,0xcf,0x4c,0x89,0x9d,0xef,0x8b,0x38, + 0x1b,0xec,0xfe,0x58,0xde,0xa2,0xef,0xd1,0x82,0x9e,0x3f,0x58,0xfc,0xf6,0x28,0xc7, + 0x76,0xa8,0xa4,0x75,0x75,0x75,0x5d,0xd4,0x55,0xe2,0x8,0xcf,0xde,0xd3,0x89,0x47, + 0x45,0x11,0xd1,0x28,0x4c,0xcd,0x55,0xe4,0xcb,0x97,0x54,0xf5,0x7c,0x4a,0x55,0x9f, + 0x54,0xd1,0x3d,0x2f,0xcd,0x79,0xb6,0xa4,0x1a,0xb4,0x5c,0xaa,0xca,0xb8,0xb5,0x1c, + 0xe9,0xf1,0xa4,0x72,0x38,0x11,0x58,0x27,0x52,0xf7,0xb,0xbb,0x3f,0xa5,0xfc,0x8c, + 0xba,0x7c,0x67,0xc0,0xee,0xc7,0x23,0x37,0x0,0xb4,0xd4,0x25,0x28,0x91,0x4e,0xe3, + 0xf3,0x54,0xfe,0xbd,0x2,0xef,0x2c,0xd8,0xb3,0xab,0xcd,0x5a,0x1c,0x48,0xb,0x42, + 0xb0,0xe,0xdd,0x2d,0xa,0x34,0x48,0x23,0x68,0x4a,0x54,0x3,0x62,0xb0,0x39,0xe9, + 0xcd,0x6c,0x69,0xc5,0x3,0x44,0x56,0x44,0x7c,0x9f,0xa0,0x97,0xd4,0x84,0x27,0x12, + 0xe1,0xa7,0xb8,0x6d,0x17,0xcb,0xee,0xbb,0x75,0x3,0xd8,0x62,0xd7,0x17,0x53,0x17, + 0x4d,0x1b,0x69,0x27,0xc8,0x49,0xdf,0xed,0xa9,0x2,0xf9,0x66,0xdb,0xd4,0xdc,0xa9, + 0x40,0xd9,0xcd,0xe8,0x75,0xad,0x20,0xb8,0xa9,0x8a,0x15,0x6f,0x9b,0x71,0xf0,0x55, + 0x2f,0x29,0x93,0x33,0x42,0x9f,0x32,0xb8,0x3,0x69,0x81,0xf5,0x60,0x43,0x4f,0xdf, + 0x18,0x36,0xf4,0xe,0x51,0x45,0xe,0x5,0xb7,0x8d,0xb2,0xa9,0x8e,0xcb,0xf4,0x90, + 0x18,0x33,0x3a,0xa6,0xcf,0xb3,0x65,0xf4,0x97,0xb7,0x4c,0x95,0xd8,0x31,0xba,0x0, + 0x14,0x91,0x4c,0x87,0xa0,0xbf,0xf,0xb2,0x3d,0x9f,0xea,0x9c,0xe8,0x3c,0xbf,0x78, + 0xe,0xac,0xfd,0xca,0xad,0x56,0x8d,0x40,0x5e,0xdd,0x35,0x3b,0xb7,0xaf,0x54,0xb9, + 0x47,0x7c,0x8e,0x8c,0x19,0xb9,0xc2,0x10,0x39,0xce,0xc5,0xb9,0xe7,0x2b,0xc0,0xa6, + 0x17,0xa2,0x2b,0x47,0xdd,0x5f,0x87,0x9d,0x77,0xd7,0xa2,0xd4,0xda,0xce,0x6f,0x5a, + 0xb5,0xe0,0x91,0xd1,0x8a,0x6a,0x85,0x79,0x12,0x21,0x3c,0xb,0xac,0x22,0xb1,0xf6, + 0xfb,0x1a,0x90,0xc7,0x2e,0x10,0x67,0xa1,0xaa,0xfb,0x94,0xba,0x22,0x4b,0x2,0x1, + 0x4f,0xe0,0xd2,0xa9,0x81,0x7b,0x68,0x8d,0x72,0x3e,0xc,0x38,0x15,0x5d,0xcc,0xf5, + 0x6a,0xc3,0x61,0x74,0xb8,0x9d,0xbc,0xbf,0xcd,0x5c,0x7,0x6b,0x6a,0x62,0xac,0xb, + 0xc,0x32,0x54,0xfb,0x3,0x12,0x7b,0x94,0x6e,0x9,0x0,0xd2,0x55,0x25,0x74,0xe6, + 0xb1,0xdb,0x2c,0xa6,0x9c,0x1d,0x5f,0x5,0x50,0x29,0x1e,0x89,0xdd,0xf8,0x42,0x88, + 0x89,0x7c,0xce,0xce,0xbf,0xfe,0x57,0x2d,0xe8,0x10,0xec,0xa2,0x45,0x6c,0x81,0x65, + 0xe6,0x42,0x18,0xe0,0xa9,0x87,0x61,0x50,0x56,0x66,0x41,0xe8,0xc2,0xfd,0x20,0x21, + 0x2c,0x96,0x86,0x11,0xc1,0x54,0x63,0x7d,0x3c,0xdc,0xc0,0x7d,0x1c,0x77,0xc,0x52, + 0xd9,0x44,0xb2,0x3f,0x8e,0x8e,0xf8,0x25,0x4d,0x9b,0x47,0xe3,0xe,0x2e,0xf2,0xe7, + 0x7c,0xe6,0x9a,0x72,0xf6,0x0,0x4f,0xda,0xde,0xa3,0x6f,0x7c,0xd7,0x65,0x87,0xce, + 0xf5,0xdd,0xca,0xf4,0x8b,0x25,0x79,0xe3,0x54,0x5e,0x63,0x80,0xe8,0x4d,0xd,0x77, + 0xe3,0x1b,0xbf,0xc2,0x16,0xf9,0x66,0x7,0x92,0x7c,0x9e,0x3b,0x4c,0x14,0xb2,0x3e, + 0x80,0x67,0xf6,0x20,0x31,0x1c,0x78,0x7e,0xab,0x82,0x98,0x35,0x2f,0x88,0xf0,0x26, + 0x9b,0x8c,0xba,0xd0,0xb3,0x3,0xbd,0xf9,0x65,0xf1,0x27,0x9a,0x24,0x28,0x5e,0x1e, + 0x86,0x95,0xdc,0x84,0xa9,0x4a,0x9,0x2b,0x34,0xdc,0x6,0xb1,0xec,0x26,0x6f,0x9b, + 0x8e,0xcb,0x7e,0x54,0xf9,0xfe,0xae,0xf4,0xf3,0x93,0xd6,0x47,0x9b,0xaa,0x9f,0x5c, + 0x4e,0xbf,0xb3,0x36,0x6f,0x4c,0x8,0xbf,0xcb,0xd9,0xc,0xc7,0x92,0xe6,0x1e,0xc5, + 0x5,0x36,0xc9,0x1,0x7d,0x9d,0x90,0x25,0x56,0x48,0x18,0x3e,0xe9,0xb,0x1c,0x70, + 0xac,0xc,0x45,0x48,0xe4,0x46,0x69,0x29,0x1d,0x37,0x4f,0xe9,0xf9,0x9b,0x82,0x9f, + 0x81,0x1,0x1d,0x12,0x89,0xb1,0x63,0xc3,0x52,0xf1,0x49,0xd0,0x2,0x4,0x55,0x51, + 0xb3,0x13,0x2e,0x6e,0xe8,0x16,0xb3,0xd5,0xde,0x88,0x7c,0x92,0x69,0xbb,0x50,0x89, + 0xb6,0x5e,0xbe,0xde,0xfd,0xc5,0x54,0xbe,0x7f,0x3c,0x6,0x87,0x29,0x1b,0x16,0xee, + 0xe7,0xcb,0x88,0x38,0x9e,0x77,0x97,0x8f,0xe9,0xcd,0xcf,0xdc,0xf5,0x4f,0xca,0xf6, + 0xba,0x8d,0x4,0x42,0x86,0xc7,0xb6,0x67,0x53,0xa0,0x1c,0x7e,0x7e,0x2e,0xf8,0x14, + 0x90,0x81,0x78,0x9c,0x8f,0x3e,0x29,0x1,0x40,0xea,0xb4,0xb1,0x72,0xb,0x58,0x3a, + 0x68,0x4c,0x2c,0x37,0x52,0x23,0xac,0x4f,0x36,0x50,0xd4,0x57,0xa9,0x9f,0x55,0xa6, + 0x6f,0x28,0xd,0x20,0x1a,0x0,0x61,0x76,0x2,0x89,0xa8,0x4d,0xf6,0x8b,0x1e,0x51, + 0x6b,0xca,0x8b,0x21,0x58,0x67,0x90,0xc7,0x85,0x5f,0x4c,0xc3,0xee,0xfa,0xa4,0xf4, + 0xec,0x9f,0x84,0x4b,0x1a,0x9b,0xbe,0x8a,0xcc,0xe9,0x5a,0x2f,0xe3,0x4,0x1d,0xf0, + 0x3a,0xd5,0x7a,0x4d,0x79,0x9,0x19,0x96,0x11,0x6,0xb8,0x17,0x3f,0xec,0x26,0x49, + 0xe3,0xbc,0xfd,0x6f,0x2f,0x52,0x3c,0x2,0x13,0x1f,0xa4,0xae,0xf9,0xf5,0x83,0xd3, + 0x37,0x29,0x2c,0xa0,0x22,0x24,0xd0,0x14,0xa9,0xfc,0xd8,0x72,0xf0,0x26,0x44,0x47, + 0xa0,0x2a,0x37,0xce,0xe1,0xb9,0x59,0xcf,0xa3,0xba,0x7b,0x3e,0x4d,0xc5,0xb,0x3c, + 0x3d,0x46,0xd8,0x88,0x67,0xd4,0x53,0x4c,0xa3,0xd0,0xf5,0xa0,0xe6,0x9,0x34,0x84, + 0x71,0x3d,0xc5,0x34,0xb,0xcd,0xcf,0xc7,0x69,0x1,0x2c,0x3e,0x8,0x17,0xf7,0x4c, + 0xd2,0x9c,0xb5,0x33,0x84,0xb0,0x74,0x99,0x90,0x98,0xf2,0xb7,0x94,0xa8,0x5c,0x75, + 0xd,0x1d,0xd3,0x7f,0x3,0x5b,0x2c,0x8f,0x3c,0x57,0x7e,0xc2,0x38,0xb3,0xaf,0x47, + 0x61,0x2,0x4d,0xc3,0x19,0xdf,0x74,0xf2,0xcc,0x2b,0xb3,0x93,0x3e,0x9b,0x37,0x90, + 0x95,0xa6,0x40,0x94,0x45,0xe5,0xba,0x62,0x78,0x7c,0x96,0x7c,0x17,0xc9,0x21,0x9d, + 0x37,0xec,0xc8,0x5,0x62,0xcb,0xb5,0x8f,0xc2,0x98,0xd4,0x1d,0x7b,0x8b,0xdb,0x72, + 0xb7,0x39,0x79,0x64,0x31,0xf9,0x6d,0x8d,0x92,0x2,0x2,0x2d,0x46,0xbf,0x1d,0x8b, + 0x18,0x1,0x63,0x36,0x5,0xfb,0xb1,0x4c,0x7c,0x9d,0x18,0xcb,0x91,0xf,0xb8,0x3c, + 0x8,0x30,0x51,0x4f,0xd9,0x30,0xf9,0xe4,0xff,0x2e,0x2,0x26,0xda,0xdc,0x68,0x61, + 0x6c,0xf5,0x86,0xa8,0x9,0xea,0x47,0xa7,0xb,0x9,0x3,0x6a,0xe3,0x36,0x3a,0x61, + 0x1c,0x8f,0x5b,0x1b,0x82,0xc9,0x6a,0x8b,0x59,0x7b,0xc0,0xa1,0xd1,0x50,0x8c,0x46, + 0xfe,0x67,0x4a,0xd2,0xe7,0xa6,0x1d,0xa8,0x62,0xde,0xe2,0xed,0x3e,0x5e,0xdd,0x7e, + 0x67,0x85,0x1e,0x75,0xb2,0x47,0x8d,0x98,0xe4,0xe8,0x23,0x9e,0x53,0x23,0x69,0x28, + 0x6d,0x1a,0x5e,0xaa,0xbc,0x9d,0xe4,0x75,0x7b,0x9c,0xd4,0xd0,0x5f,0x93,0xb5,0x43, + 0xd0,0x38,0x46,0x68,0x5a,0x89,0x5a,0xd1,0xab,0x69,0x9f,0xcb,0xf,0xfa,0xbb,0xdd, + 0x3c,0xa7,0x34,0x6e,0x36,0xb7,0x15,0x77,0x87,0xce,0x8d,0x85,0x65,0x6b,0x3d,0x3d, + 0x6d,0x78,0xd0,0x3e,0x3d,0x62,0x66,0x3e,0x15,0x72,0xcc,0x40,0x72,0xeb,0x4a,0x1d, + 0xa5,0x3f,0xe4,0x1b,0x89,0xf5,0x80,0x59,0xf7,0x9a,0x7c,0x15,0xae,0xcc,0x49,0x8e, + 0x22,0x3e,0x85,0x21,0x31,0x87,0x13,0xa3,0xeb,0x5a,0xe0,0x75,0x6b,0xb6,0xf2,0x2d, + 0x6,0x45,0x40,0x9d,0x17,0x6,0x47,0x8c,0xf6,0xfe,0x3b,0x69,0x75,0x96,0x55,0x72, + 0x20,0xe4,0x29,0x66,0x41,0x45,0x18,0x54,0x19,0x96,0xcc,0xda,0xae,0xa4,0xb8,0x65, + 0xdf,0xb6,0x1,0xe8,0xc5,0xc1,0x5b,0xaf,0x2,0x17,0x1f,0x8a,0xf3,0x2f,0x88,0xa, + 0xf0,0x35,0x53,0xd6,0x58,0x83,0xd2,0x9d,0x19,0xe4,0x51,0xa3,0x87,0x72,0x53,0x56, + 0x50,0xc7,0x83,0xa5,0xc6,0x9a,0x41,0xb5,0x6c,0x73,0x7a,0x19,0x8,0xa0,0x48,0x55, + 0x3,0x53,0xca,0x16,0x8b,0x8f,0x7f,0x19,0x81,0x90,0xc4,0x5,0xbc,0xdf,0x40,0x61, + 0xef,0x76,0x9c,0x74,0x19,0x52,0x4d,0x29,0x8,0x92,0xd3,0x11,0xa6,0x98,0xd5,0x5e, + 0x20,0x4d,0xbe,0x25,0x1d,0xd1,0xfb,0x6a,0x35,0x22,0xaf,0x81,0xe5,0x6d,0x26,0xdf, + 0xc7,0xe7,0xa7,0x99,0xe6,0xad,0xaa,0x3a,0xad,0x9b,0xd3,0xe6,0xad,0x92,0x94,0x5, + 0xbf,0xb6,0xed,0xc3,0x50,0xfa,0x5d,0xdd,0xaf,0x30,0xa0,0x16,0xc0,0x49,0xeb,0xed, + 0xb2,0x3b,0xf3,0x70,0x6e,0x3c,0x2c,0xd8,0x26,0x7,0x77,0x4c,0x25,0x89,0x7e,0xff, + 0x7b,0x12,0xc3,0xfa,0x46,0x4d,0x3f,0xce,0xb6,0xbb,0xa1,0x8b,0x73,0x84,0x59,0x6f, + 0xa3,0xf8,0x6c,0xe5,0x5c,0xc4,0xf7,0x4e,0xd6,0x47,0xae,0xa7,0x1d,0x4f,0x47,0x3, + 0xfd,0xc9,0x8,0x5f,0x5c,0x19,0xbd,0x8a,0x18,0x7e,0x69,0x8e,0xfc,0x82,0xf1,0xc8, + 0x8a,0xac,0xd2,0xe9,0xef,0x48,0x7b,0x7e,0x8a,0x61,0xc9,0x58,0xee,0x30,0xbb,0x3b, + 0xf8,0x82,0x25,0xf7,0x63,0x12,0x86,0x54,0x43,0xea,0xb3,0x1d,0x3c,0x82,0x6c,0x83, + 0xa,0x4c,0x85,0xe9,0x41,0x72,0x42,0xa7,0x71,0xa2,0x99,0xc0,0x8f,0x37,0xb1,0x10, + 0x7b,0x99,0x41,0x20,0x5,0xd7,0x18,0x1f,0x10,0xa0,0x41,0x9f,0x45,0x90,0xda,0xdc, + 0xd9,0x96,0x4e,0xb4,0x8c,0x5,0xfe,0x92,0x62,0x8,0xf3,0xcf,0x72,0xd1,0x62,0x83, + 0xb3,0x33,0xfd,0xc6,0x98,0x14,0xcb,0x8c,0x49,0x9f,0xe,0x20,0x8,0x2b,0x14,0xf7, + 0xde,0x4f,0x34,0x59,0xeb,0x14,0xbe,0x49,0x28,0xd6,0x1f,0x53,0x76,0x7a,0x13,0xa, + 0x65,0x85,0xcc,0x5a,0x6f,0x29,0xda,0x9c,0xc8,0xe4,0xd9,0xc,0x39,0x75,0x97,0x95, + 0x75,0x13,0x60,0xff,0x38,0x33,0x6b,0x14,0x13,0xd7,0xec,0x5,0x3,0x1b,0x18,0x35, + 0x5c,0xd,0x69,0x1e,0x3b,0x2d,0x96,0xfc,0x29,0x27,0x2f,0xa9,0x22,0x94,0x1c,0x30, + 0xa3,0x3e,0xbb,0xf4,0xeb,0x9f,0x5,0x9,0xff,0x70,0x5e,0x79,0xe4,0x1e,0x5f,0x75, + 0xb6,0x9f,0xf6,0xf0,0x8b,0x8c,0x57,0x6d,0xc9,0x3f,0xe0,0x20,0xff,0x78,0x3c,0xac, + 0xfd,0xb8,0xc4,0xf4,0x93,0x1b,0x9e,0xa7,0x93,0x3,0x3b,0xa,0x59,0x1f,0x33,0x86, + 0x69,0x59,0x27,0x20,0xca,0xba,0xec,0x38,0x3e,0xb9,0xe4,0xbd,0x77,0xf7,0x42,0x8d, + 0x96,0x21,0x60,0xad,0x49,0x72,0x28,0xbb,0xe7,0xf8,0x59,0x50,0x85,0xf1,0x1c,0x18, + 0x34,0xf8,0xd8,0xdc,0xbc,0x9a,0x93,0x1b,0xc3,0x28,0x1b,0x23,0x49,0x19,0xb2,0x33, + 0x16,0xe5,0x65,0x5f,0xee,0xc3,0xa8,0x29,0x61,0xc4,0xd8,0xf3,0xd3,0x68,0x26,0xd4, + 0xfe,0x3d,0xa,0xd1,0xb,0x36,0xcb,0xa5,0xa6,0xb5,0xb4,0x0,0x36,0xb5,0x57,0x84, + 0xc,0x46,0x6e,0xff,0xf4,0x35,0xf7,0xc7,0x4b,0x6b,0x39,0x85,0x7e,0x45,0xeb,0xfb, + 0x7f,0xb3,0x9c,0x73,0x87,0x3e,0xe1,0x76,0xca,0x70,0x61,0x9c,0x9e,0x7c,0xcf,0x29, + 0x87,0xac,0xb9,0xd5,0x5b,0xce,0x16,0xc0,0x14,0x69,0xe1,0x95,0xfd,0x78,0x99,0xc9, + 0xf8,0x4b,0x23,0xab,0x6a,0x94,0x87,0x15,0x30,0xb3,0x5a,0x82,0x95,0xa,0x5e,0x4e, + 0xd0,0xa7,0x12,0x9b,0xf5,0x9d,0xa7,0xe0,0x8e,0x19,0xd0,0x5b,0x32,0xf0,0x47,0xa4, + 0xf8,0x5f,0xed,0x1e,0x66,0x9d,0xdc,0x4,0xe,0xc4,0x4f,0x3a,0x9a,0xc3,0xab,0xed, + 0xd7,0xf5,0x3e,0x8d,0xe9,0x60,0xcc,0x22,0x17,0x3,0x24,0xef,0xbb,0x84,0x4,0xe8, + 0xc4,0x31,0xa5,0xc3,0x9f,0xc6,0x4b,0xe0,0xc9,0xa4,0x8d,0x1d,0x67,0xdd,0x56,0xf1, + 0x95,0x9,0x9,0xe7,0x99,0x3a,0xab,0x17,0xe1,0xc3,0xf2,0x62,0x63,0x2b,0x10,0xcf, + 0x7,0x69,0x52,0x18,0xff,0x30,0x3d,0xe5,0xe5,0x9b,0x4b,0x4d,0x9f,0xf7,0xeb,0x92, + 0x96,0xdb,0xca,0x89,0x9,0xdc,0x52,0xc7,0x28,0xd8,0x41,0x4f,0x82,0xf9,0x3a,0x49, + 0x5f,0x7e,0xec,0x31,0xe8,0x19,0xb7,0xa4,0x23,0x10,0x14,0x2,0x42,0xf3,0xf0,0xf9, + 0xf2,0x8d,0x1,0x49,0xff,0xa4,0xc9,0xbc,0x8c,0xd1,0x4f,0xf2,0xb9,0xfa,0x2d,0x49, + 0x7e,0x44,0xf4,0x45,0xa,0xb4,0x44,0x6e,0x8e,0x6b,0x25,0xf4,0x67,0x21,0x8c,0x4d, + 0x62,0x41,0x3f,0x7,0x92,0x84,0x18,0xb1,0x30,0xb2,0x4f,0xbc,0x86,0x2d,0x75,0x23, + 0xd8,0x82,0x5a,0x11,0x37,0xc6,0xfe,0xfc,0x2a,0x40,0xc4,0xb6,0x27,0xca,0x4a,0x86, + 0xca,0xe6,0xcc,0x2,0xde,0x8e,0xe3,0xe0,0xeb,0xb0,0x8,0x85,0xe4,0x71,0x4e,0x9, + 0xc8,0x28,0x7,0xce,0x73,0xf7,0x9c,0xf3,0x20,0x57,0xaf,0xf1,0x6f,0x69,0x66,0x9f, + 0x5a,0xea,0x30,0x84,0xab,0x3d,0x18,0xd5,0x83,0xe5,0x71,0x23,0xc,0xa4,0xa5,0x89, + 0xe5,0x6c,0x1e,0x1a,0x38,0xf,0x23,0x6d,0xbf,0x39,0xc8,0x24,0xed,0xe0,0xa5,0x5, + 0x39,0x68,0x6f,0x9a,0xe2,0x83,0x3,0x55,0x8f,0x2c,0xf1,0x9e,0x4f,0xb5,0x56,0x7f, + 0x9e,0xab,0xdc,0xa5,0xc7,0x7a,0x15,0x45,0x0,0x8e,0xe6,0x6,0x7b,0xc1,0x5b,0xf4, + 0x70,0xb9,0xa0,0x14,0x5c,0x1c,0x18,0x25,0x58,0x0,0x9b,0xa0,0x90,0xbe,0x8f,0x46, + 0x31,0xe1,0x94,0x10,0xaf,0x14,0x25,0x8a,0x56,0xd5,0x3,0xed,0xb0,0x27,0x0,0xb2, + 0xed,0x33,0x74,0xe8,0x25,0x3d,0x7c,0x63,0x23,0x20,0x9,0x65,0xe1,0x27,0x17,0x3b, + 0xbb,0x7a,0xee,0x40,0xa0,0xa3,0x67,0xe3,0xd2,0xd5,0xdf,0xc0,0xe9,0x67,0x5a,0xe7, + 0x68,0x70,0xf5,0x62,0x2f,0x88,0x51,0xae,0x21,0x64,0x7,0x97,0x8d,0x6b,0x42,0x26, + 0xf2,0xf7,0x88,0x53,0x11,0x56,0x58,0xdf,0x7c,0x79,0x28,0xf0,0xc9,0x7b,0x98,0xd5, + 0xf7,0x38,0x56,0x4b,0xa3,0x13,0x8,0x59,0x22,0x5d,0x67,0x43,0xb7,0x4c,0x4,0x45, + 0xb1,0x4,0x56,0x7a,0x62,0x50,0x7c,0xc0,0x1b,0xa9,0xa6,0xf5,0xc6,0x60,0x7a,0x86, + 0x1d,0xd6,0xeb,0x85,0xd1,0xb7,0xf6,0xfa,0xb1,0x31,0x1b,0xc6,0x8b,0xf3,0x9c,0xdf, + 0x24,0x92,0x90,0x59,0xd6,0x86,0xef,0xe3,0x8d,0x9b,0xdf,0x47,0x5c,0x95,0x6b,0xcc, + 0x56,0xa5,0x57,0x4b,0xb6,0x61,0x82,0x9d,0xc4,0x55,0x2e,0x4a,0x71,0xb1,0x4a,0x2b, + 0x9b,0xc,0x84,0xd8,0x5e,0x99,0x20,0xc4,0x22,0x4a,0x3,0x3b,0x3c,0xce,0x65,0x2c, + 0xe3,0xc9,0xd3,0xf5,0xc9,0x60,0x34,0x48,0x12,0x39,0x91,0xcd,0xdf,0xaf,0x9c,0x4d, + 0x8d,0xdd,0xfc,0xc5,0x5a,0xa4,0x22,0x82,0xe0,0xd,0x9e,0xda,0x68,0xda,0x7c,0xbb, + 0x86,0xed,0xb6,0x82,0xf2,0x7b,0xfa,0x62,0xb5,0xc0,0xca,0xbf,0x91,0xd0,0xf1,0x88, + 0x66,0xab,0x3b,0xb1,0x2,0x5b,0x81,0x6f,0xfb,0x86,0x33,0xf7,0x9c,0x8e,0x69,0xb7, + 0x87,0xce,0x17,0xd7,0xd3,0x3,0xa3,0x4d,0x3f,0xc7,0xf0,0x30,0x6,0x5f,0x8e,0xdf, + 0x89,0x3c,0x7,0xec,0xad,0xf,0x6c,0x9e,0x6,0xd4,0x4a,0xbe,0x6d,0x3a,0x36,0x6a, + 0x4c,0xb1,0x39,0x3a,0x6d,0xd8,0x64,0x16,0x9e,0x10,0x85,0xdf,0xcc,0xf5,0xdd,0x97, + 0x79,0xe2,0xd9,0xde,0xb7,0x4b,0x4b,0x89,0x52,0x97,0x35,0x80,0x2d,0xaf,0x4d,0x2b, + 0x61,0xd5,0x17,0xe3,0x59,0xc,0x4f,0xf7,0x22,0x9d,0x3e,0x64,0xe5,0x36,0xe6,0x83, + 0xad,0xd6,0x66,0xd6,0xde,0x67,0x66,0x3d,0x45,0x62,0xf,0x41,0xe9,0x23,0x70,0xf9, + 0xf1,0xa6,0x6,0x2,0xfe,0x8a,0xc7,0xb6,0x31,0x4a,0xfe,0xcd,0xe0,0xfc,0x9d,0xf3, + 0x69,0xc2,0x4a,0xa8,0x83,0xc,0xbb,0x4e,0x84,0x53,0xe3,0x9c,0x95,0x1b,0x4a,0x1, + 0x35,0x80,0x94,0xc1,0xa5,0xf0,0x41,0x74,0x2e,0xda,0xbc,0x61,0x4d,0xe0,0xf4,0xc7, + 0x8e,0x7d,0x81,0x27,0x56,0x7e,0xd,0x72,0x63,0xe6,0xca,0x1e,0xde,0x4f,0x43,0xf3, + 0x17,0x9d,0x5f,0xcb,0xac,0x9b,0xe9,0x26,0xdd,0x3b,0xc4,0xf0,0xbe,0xc8,0xd5,0x94, + 0xdb,0x5e,0x53,0xb5,0x18,0xe4,0x51,0x8e,0xa7,0x21,0x95,0xf8,0xf8,0xc9,0x3e,0xd2, + 0x5a,0xdb,0xa,0xd4,0x3b,0x17,0x19,0xf9,0x4c,0x40,0xa0,0xb2,0xd,0xdb,0x10,0x13, + 0xd6,0xce,0x14,0xfc,0xb2,0x71,0x17,0xf,0x14,0xe8,0xd7,0x1e,0xfb,0xc8,0x61,0x49, + 0x6e,0x5b,0x2,0xfd,0x33,0xc6,0x74,0x12,0x69,0xbc,0x3f,0x2,0x6,0xe6,0xf1,0x10, + 0x1a,0x63,0xf8,0xbc,0x1d,0x49,0xba,0x4b,0xed,0x3b,0x63,0xd,0x66,0xe1,0x8b,0x60, + 0x97,0xd,0x34,0x3f,0x28,0x66,0xe2,0xeb,0x88,0xfa,0xaf,0x9f,0x19,0x8b,0x70,0x6d, + 0xee,0x8f,0x98,0xc8,0x47,0xb6,0x93,0x56,0x6c,0x26,0x8e,0x36,0xe1,0xd3,0xcb,0x9d, + 0x6f,0x67,0x6b,0x2d,0x59,0x96,0xdf,0x32,0x71,0x6c,0x3f,0x92,0x9e,0x8c,0xd0,0xa, + 0xec,0x7b,0xb,0xf3,0x8d,0xf,0xa0,0x78,0x45,0x8a,0x30,0xa0,0xf7,0x6b,0x9f,0x0, + 0x67,0xfc,0xfa,0x58,0x5e,0x11,0x12,0x5c,0xc8,0xee,0x7c,0xcb,0x90,0x1f,0xaa,0x1e, + 0x2b,0x2b,0x39,0x34,0x58,0xec,0xe1,0x9d,0x78,0x7b,0xa0,0xbb,0x29,0x56,0x94,0xbe, + 0x92,0x86,0xa8,0xe8,0xb1,0x9,0xf6,0x2d,0x16,0x14,0xbc,0x8e,0x70,0x95,0xa3,0xed, + 0x7f,0xb5,0x7f,0xeb,0x7d,0x30,0x2f,0x8d,0xeb,0x80,0x33,0xce,0xf3,0x2e,0x53,0x35, + 0x4b,0x21,0x76,0x74,0x20,0x58,0x57,0x7,0x54,0x5d,0x2a,0xf2,0x7d,0x81,0x16,0x3f, + 0x34,0x6f,0x3,0x5c,0x43,0x10,0xc1,0x9a,0x37,0x17,0xc9,0x97,0xee,0x49,0x93,0x61, + 0xe4,0x21,0x2d,0x2d,0x93,0x47,0xcf,0xc8,0x8e,0x6d,0xbe,0x99,0xd,0xee,0xd0,0x61, + 0xc7,0x2,0xb9,0x61,0x83,0x92,0xef,0xbf,0xc6,0x5,0x3f,0x3e,0xe4,0x65,0xde,0xcb, + 0x71,0xa4,0x76,0xb3,0xc3,0x47,0xdc,0x3c,0xcc,0x2e,0xeb,0x6e,0x6e,0xde,0xde,0x71, + 0x74,0x80,0xfe,0x18,0x8e,0x7e,0x95,0x1a,0xdf,0x54,0xd,0xe2,0xc3,0x5c,0xcb,0x1e, + 0x13,0x55,0xb1,0xde,0x96,0xa6,0x81,0x17,0xa7,0xfb,0x19,0x7,0x6a,0x36,0x5a,0xd7, + 0xea,0x4b,0x99,0xa7,0x7f,0xcc,0xa2,0xdd,0x3c,0x7e,0xee,0x84,0x88,0x33,0x88,0x1e, + 0x9f,0x90,0x1b,0xc,0xcc,0xfe,0x88,0x28,0xbb,0x96,0xd6,0xe6,0x99,0x9d,0x7b,0x9b, + 0xf2,0xbb,0x6b,0x51,0x78,0x92,0x1b,0x7e,0xc3,0xa8,0xa6,0x5f,0xcb,0x64,0x4,0x90, + 0x4b,0x89,0x8c,0xdc,0xaf,0xbc,0x9b,0xe7,0x8,0x5a,0xec,0x32,0xb1,0x45,0x5e,0xe, + 0x64,0xe8,0x6e,0x73,0xbe,0xd9,0x97,0x25,0xa7,0x9e,0x8a,0x2a,0x62,0xb9,0xbb,0xaa, + 0xfd,0xb5,0xe4,0x4a,0xab,0x78,0xeb,0x4a,0x94,0xfd,0xfe,0xe9,0x9b,0x21,0x22,0x7b, + 0x60,0xdf,0xe8,0xa5,0x24,0x19,0x83,0x99,0xf0,0xb7,0xb,0x75,0xbd,0x4a,0xa2,0xfd, + 0xb0,0x78,0xf2,0xb0,0x40,0x97,0x67,0x69,0x91,0x0,0x2,0xe2,0x13,0xa1,0x75,0xd0, + 0xf,0xd3,0xd2,0x7a,0x30,0xa0,0xc2,0xe8,0x19,0xb2,0x5,0xe5,0xdd,0xb0,0x25,0xa2, + 0x52,0x89,0xad,0xf3,0x1a,0x3b,0x25,0xdd,0x61,0x63,0xc3,0xdb,0x1e,0xc3,0xb5,0xc1, + 0x55,0x5f,0x8f,0x34,0x7,0xa6,0xad,0x27,0xcf,0x49,0xfa,0xb7,0xe,0x8b,0x66,0xd7, + 0xa8,0xe1,0x9,0x84,0x5f,0x33,0x2,0x63,0x26,0x46,0xc6,0x3f,0x13,0x55,0xe8,0xa9, + 0x17,0x35,0x59,0x64,0xf2,0xff,0x5c,0x58,0xf2,0x1e,0x37,0xdc,0x18,0x98,0x3c,0xa0, + 0x13,0xdf,0x5d,0x9c,0x52,0x9f,0x9,0x1b,0x5c,0x4d,0x61,0xec,0x8e,0xa8,0xc4,0xcd, + 0x8b,0x40,0xc,0xe1,0x1,0xa0,0xd1,0x46,0x1e,0xad,0x88,0xfb,0x69,0x78,0x70,0xe2, + 0xfd,0x9c,0x70,0x17,0x7d,0x83,0x45,0x83,0x3d,0x38,0xec,0xed,0x9a,0x93,0xf2,0xc1, + 0xb2,0xf9,0xd8,0x4,0x3,0x21,0xe5,0x7c,0x1c,0x66,0x3f,0xfd,0x9b,0x1f,0x9f,0x8b, + 0x11,0xda,0x1b,0x55,0x17,0x79,0x23,0x6d,0xc4,0x4,0xb6,0x16,0x74,0x2c,0x66,0x3, + 0xdf,0x1e,0x3,0xc8,0xd2,0x88,0xd1,0x20,0x36,0x78,0x43,0xb0,0xdd,0x4a,0x54,0xbc, + 0x61,0x88,0xb6,0x59,0xb,0xa8,0x46,0x30,0x49,0x2f,0xf2,0xb9,0xf9,0xa3,0xb2,0xd, + 0x4f,0x9,0xf3,0xba,0x5d,0xc6,0x1e,0xaf,0x6,0x53,0x8b,0x18,0xb,0x2e,0x29,0x48, + 0x87,0xcb,0xef,0xbe,0xf1,0x26,0x23,0x83,0xd5,0x95,0xff,0xfd,0xf1,0xc0,0xc4,0xd, + 0xdc,0xdc,0xc3,0x4,0xbc,0xaf,0xdf,0x4a,0x77,0xfa,0xb4,0x9d,0x1d,0x95,0xa8,0xde, + 0x56,0x3d,0x6a,0xf8,0xd7,0x59,0x6,0xe1,0x20,0x27,0x66,0xb0,0xbd,0xc2,0xd7,0x1f, + 0x45,0xdd,0x68,0x3c,0x3e,0x4c,0x18,0x6b,0x7f,0x37,0x7e,0x23,0x51,0x60,0x72,0xa2, + 0x68,0xa5,0x5a,0xba,0x46,0x44,0xa7,0x7c,0x2c,0x28,0x3c,0x65,0xd7,0x38,0x9d,0x6b, + 0xae,0xd7,0x84,0x6d,0xd9,0x8f,0xaf,0x11,0x7a,0xec,0xf7,0xf7,0xb0,0x79,0x77,0xdf, + 0xa8,0x32,0xdd,0x34,0xf8,0x4a,0x57,0x7a,0x2e,0xf7,0xb6,0x5,0x57,0x3e,0xe4,0xbd, + 0x8a,0x6a,0x16,0xad,0x1f,0xc1,0x1c,0x1e,0xe2,0x4e,0xd1,0xd3,0x73,0x2,0x6a,0x13, + 0x0,0x9d,0x29,0x82,0x96,0x36,0xfe,0x85,0x62,0x4a,0x5c,0x5e,0x7,0xe2,0x8,0xee, + 0x4f,0xb5,0x7b,0x19,0xbe,0x5f,0x2b,0x52,0x22,0xfa,0x23,0x9c,0x67,0x97,0x22,0xd6, + 0x4c,0x69,0xfc,0xa9,0x4c,0xd7,0xac,0x8d,0x96,0x46,0xed,0x48,0x8e,0xb9,0x5d,0x8b, + 0x36,0xa2,0x9f,0x44,0x3c,0x1e,0x49,0xc4,0x64,0x58,0x77,0x9d,0xb5,0x9e,0x17,0x8f, + 0x5b,0xb3,0xeb,0x3c,0x5b,0x9,0x38,0x79,0x5b,0x21,0x74,0xc6,0x66,0x6e,0x6e,0xeb, + 0x76,0xba,0xd7,0x60,0xd8,0x63,0xa4,0x5a,0x4f,0x10,0x9b,0x6f,0x86,0x8c,0xe,0x4e, + 0xc3,0xb1,0x92,0x29,0x0,0x13,0xa5,0xa5,0x51,0xca,0xf,0x96,0x4c,0x5f,0xc1,0xc9, + 0xe3,0xf7,0x56,0xb3,0x74,0x34,0x8e,0xba,0x9b,0x73,0x2c,0xe1,0x1a,0x89,0xc7,0x3f, + 0x46,0x82,0x5e,0x66,0x5e,0xfb,0xbc,0x5d,0xd3,0x29,0x1a,0x3c,0x7b,0x3f,0x4b,0xb1, + 0x32,0xf0,0x25,0xb9,0xd0,0x66,0x7b,0x6b,0xd4,0xe3,0x64,0x9c,0x11,0x1d,0x58,0x46, + 0x2,0xee,0xd1,0xe7,0xee,0x25,0x9,0x43,0xac,0x65,0x4f,0x94,0xad,0xbc,0xf9,0xc, + 0xa2,0x1c,0x8e,0x95,0xae,0x4,0xb3,0x75,0x64,0x3f,0x83,0xd8,0xf7,0x36,0x82,0x3d, + 0x96,0x24,0xa3,0x3f,0x54,0x77,0x86,0x1f,0xf9,0xef,0x30,0xb6,0xdd,0x9,0xe4,0xe2, + 0x1a,0x61,0x60,0x2,0xe4,0xbf,0xa7,0x24,0xf,0xa4,0x38,0xae,0xdf,0xf4,0xf3,0x29, + 0x1f,0xcf,0x53,0x4f,0xde,0x70,0xca,0x6d,0xcf,0x58,0xbb,0xe9,0xb2,0xbf,0x5f,0xaa, + 0xcf,0xf0,0x13,0x13,0xbb,0x90,0xc0,0xb9,0xbb,0x3e,0x2e,0xfd,0xf5,0x4b,0x3d,0xd0, + 0xc8,0xde,0xfe,0xe9,0x7b,0x2a,0xa9,0x4f,0x51,0x55,0xfa,0xb2,0xe2,0xd6,0xbf,0x8a, + 0xd4,0x6,0xe9,0x69,0x92,0x18,0xb2,0x16,0xf5,0x18,0xc7,0xff,0xec,0x30,0x35,0x88, + 0x62,0xba,0x48,0x3b,0xa8,0x87,0xee,0xfa,0xc5,0x43,0x96,0x59,0x4b,0x35,0x1e,0x71, + 0x85,0xac,0x2b,0xd6,0x2d,0xe5,0x6,0xdf,0x23,0xc3,0xea,0x85,0xf7,0x89,0x2f,0xa5, + 0x9e,0x29,0x59,0x62,0xba,0x56,0x53,0x23,0xad,0x23,0x11,0xfd,0xf8,0xec,0xa5,0xcb, + 0x29,0x58,0xc2,0x96,0x35,0x1a,0x38,0xe7,0x1c,0x35,0xd8,0x9f,0x45,0x2,0x94,0x4a, + 0x17,0xaa,0x32,0x5,0x93,0x67,0x39,0x5e,0x16,0x92,0xfc,0x8a,0xcb,0x59,0x69,0x28, + 0x6d,0x8f,0xf3,0x1b,0x85,0x34,0xf,0xbf,0x2a,0x19,0xbf,0x3b,0xee,0xd6,0x78,0x35, + 0x4d,0x42,0x1a,0x4e,0xa0,0xc5,0x2b,0x15,0xcc,0xf7,0x62,0x48,0xf0,0x6d,0x1f,0xd1, + 0x2b,0x30,0x58,0x37,0xc7,0xbd,0x26,0x95,0x82,0x33,0xe5,0xd,0xc5,0x9f,0xa5,0x19, + 0x92,0x73,0xa8,0x9b,0x6e,0x91,0x21,0x6d,0x7f,0x64,0xc7,0x9a,0xd3,0xdb,0xda,0x22, + 0x61,0x27,0x2,0x55,0xd7,0x4b,0x49,0x49,0x3b,0x16,0xf4,0xfb,0xc9,0x16,0x5e,0x7a, + 0x6f,0xda,0xce,0xa0,0xb3,0x0,0xb1,0xa2,0x88,0xc5,0x7b,0xb9,0x14,0xbf,0xab,0xe3, + 0xd1,0xf8,0x7b,0xd9,0xeb,0x5c,0x70,0x43,0x57,0x95,0x76,0x45,0x13,0x43,0xad,0xbf, + 0xf0,0x7b,0xb8,0x4b,0x48,0x93,0xe3,0x82,0x8c,0xe1,0x34,0x4e,0x91,0x78,0x45,0x0, + 0x72,0x38,0x95,0x7d,0xbf,0x95,0xa0,0x54,0x3d,0xe7,0x4b,0x6e,0x78,0xaa,0xfa,0xc9, + 0x4,0xe9,0xe7,0xcf,0x2e,0x60,0xba,0x99,0x79,0x4,0x3c,0x3b,0x90,0x6c,0xa2,0xc8, + 0x36,0xf4,0x21,0x78,0x52,0xc2,0xbd,0xb0,0x44,0x17,0x98,0xb,0x2f,0x6,0x31,0x86, + 0xf8,0x43,0xff,0x2e,0x1c,0x8,0x34,0x5a,0xd7,0x61,0x90,0x1a,0x86,0x89,0x52,0x7b, + 0x72,0x99,0x2d,0x53,0x29,0xaf,0x9d,0x7f,0xcf,0x22,0x3,0x87,0xe7,0xb,0xce,0xe5, + 0xed,0x63,0x85,0x20,0xc7,0x4,0x40,0xa1,0x9a,0x15,0xbb,0x7f,0xf9,0x5b,0x1c,0x1a, + 0x8e,0x19,0x6e,0xd0,0xfb,0xe0,0xb3,0x6f,0xc1,0x3a,0x4b,0x2c,0xc8,0xc,0x61,0xe1, + 0x89,0x38,0x1c,0xc2,0x49,0xaa,0xe2,0xde,0xec,0xf,0x56,0xe,0x2f,0xfb,0x7b,0xe3, + 0x7b,0x7d,0xa4,0x9f,0x91,0xfb,0x90,0xf1,0xa9,0xf9,0x84,0x33,0xd,0xaf,0x2e,0x28, + 0xbe,0x12,0xc6,0x4b,0x3a,0x58,0x90,0xfd,0x6a,0xfa,0xe8,0x8b,0xcf,0xb2,0x53,0x44, + 0x8f,0xf1,0x9c,0x29,0x3,0x2d,0xc1,0xb9,0xa1,0x31,0xce,0x75,0x16,0x2d,0x9c,0x71, + 0x2a,0x6,0x4a,0xe0,0x80,0x65,0xb9,0x25,0x38,0xd2,0x2,0x8a,0xd,0xbc,0xb3,0xad, + 0x62,0xba,0x82,0x1b,0x7b,0xe1,0xb2,0xa6,0x5d,0x39,0xea,0xe4,0x32,0xda,0x3d,0x3c, + 0x6f,0xc1,0x62,0x56,0x34,0x38,0x93,0xdd,0x97,0x65,0x37,0xfd,0x12,0xb1,0x50,0xe5, + 0xb9,0x6f,0x5b,0xcf,0x84,0x54,0x97,0xb7,0xb1,0x41,0x27,0xef,0xb5,0x50,0xf,0x4, + 0xfe,0xb8,0x54,0xfd,0x78,0x46,0x2b,0x53,0xa9,0x95,0xd3,0x5c,0x5d,0x1e,0x5b,0xa5, + 0x75,0xd4,0xff,0x7a,0xae,0x61,0x62,0xf0,0x94,0x5d,0x3a,0x3e,0x4,0x7d,0x6d,0x2b, + 0xc0,0x31,0x63,0x33,0xe2,0x2f,0xeb,0xe7,0x81,0xd1,0x26,0xa3,0x6f,0x8,0x28,0x40, + 0x8a,0x88,0x71,0xf4,0x5a,0x8d,0xc4,0x7d,0xde,0x3b,0x77,0x50,0xfb,0xa2,0x7b,0x13, + 0x7a,0x11,0xf7,0x2d,0xc4,0xd2,0xf7,0x29,0xc9,0xac,0x80,0x4e,0x79,0x86,0x83,0xba, + 0x61,0xf6,0xec,0xbd,0xd1,0xd5,0x53,0x16,0x4c,0x4d,0xb0,0xaa,0x97,0x24,0xe8,0x4d, + 0x8b,0xe3,0xd0,0x85,0x33,0x51,0xdd,0x3a,0x17,0x32,0x3b,0x6a,0x9c,0x54,0xdc,0x7b, + 0x82,0x4c,0x9e,0xb0,0x3,0x35,0x1e,0x23,0xbc,0xea,0x53,0xe8,0x58,0xa2,0x66,0xec, + 0x1d,0xde,0xc6,0xc3,0xeb,0x6b,0xb5,0xbe,0xe4,0xd4,0xae,0x16,0x8c,0x3,0xad,0xa4, + 0x93,0xb4,0x12,0x2c,0xe6,0xe9,0x36,0x1a,0x33,0xbb,0xf8,0xea,0x1c,0xf4,0xa,0x1f, + 0x44,0xb5,0x50,0xc9,0x41,0xff,0xc3,0xb6,0xde,0xed,0x53,0x97,0x61,0x40,0x4,0x3f, + 0xfa,0xa4,0x4d,0x64,0x27,0xea,0x51,0xfe,0xb6,0x74,0xdd,0x98,0xe3,0xbf,0x32,0x1a, + 0x78,0x9e,0xae,0xb1,0x33,0x8f,0x21,0x76,0x6b,0xa0,0x90,0x58,0x54,0x95,0x23,0xed, + 0x46,0x28,0x8,0xff,0x73,0x51,0x7f,0x75,0x58,0x48,0xf8,0xd6,0xb7,0x42,0x8b,0x4d, + 0x52,0x9,0xee,0xfa,0x47,0xee,0xb1,0xa4,0x9f,0x47,0xcc,0x45,0xeb,0x67,0xdb,0x89, + 0x2,0xf9,0x5b,0xff,0x44,0x12,0x3e,0xbe,0xa9,0xeb,0xf2,0xbf,0x5f,0xfe,0xfe,0xdc, + 0xcd,0x4d,0x93,0x3f,0x71,0x15,0x6e,0x87,0x6e,0xc3,0xbe,0xfb,0x2c,0xeb,0xd1,0x34, + 0xd6,0x86,0x22,0xa4,0xe4,0xb6,0x98,0x60,0x65,0x31,0x23,0xbd,0x39,0xed,0x97,0x68, + 0x22,0xe4,0x37,0x78,0x51,0xe9,0x71,0xb,0xb3,0x8f,0xd3,0x20,0x89,0x92,0x42,0xab, + 0xf,0xfd,0xeb,0x68,0xb7,0x24,0x86,0xa1,0xdb,0xfd,0x31,0xcf,0xdb,0x34,0x47,0x24, + 0x37,0x6,0x37,0x99,0x8,0x55,0x89,0xaa,0xdb,0xdc,0xc5,0x5c,0x29,0xd3,0xbc,0xf5, + 0xc8,0x3,0xfb,0x87,0x2b,0xeb,0xd1,0x87,0xf9,0x23,0x49,0xc1,0x37,0x7,0x7a,0x8f, + 0x9f,0xbd,0xc1,0x34,0x76,0xfd,0x4e,0x9e,0xc5,0x1,0xc3,0xe,0x6,0x5a,0x23,0xde, + 0xc2,0xba,0x37,0xc2,0x9d,0x32,0x37,0xb6,0xe9,0x35,0xb2,0xe7,0xaa,0xa,0x4d,0x39, + 0x1f,0x6e,0x51,0xed,0x47,0x75,0x73,0xdf,0x1d,0x64,0xc5,0x3a,0x75,0x33,0x7f,0xb4, + 0x19,0x89,0x54,0x90,0x4f,0x15,0xf,0x90,0x66,0xed,0x1c,0x4b,0x38,0x50,0xbb,0x33, + 0xc8,0xd8,0x64,0x7e,0xc2,0x58,0xa1,0x9,0x19,0xe9,0x89,0x60,0x32,0xd3,0xa5,0x64, + 0x3d,0x95,0x24,0x26,0xa0,0xa3,0x4f,0x1d,0xba,0xb9,0xb3,0x39,0x8d,0xe9,0xf4,0xb7, + 0xed,0xb8,0xe5,0xd2,0x2d,0x8a,0x74,0x86,0x3b,0x2e,0x36,0x4,0x49,0x92,0x5a,0x49, + 0xe,0x8,0x8c,0xbe,0xea,0xf,0xbe,0xbc,0x9c,0xdb,0xbd,0xd4,0x6d,0x95,0xd2,0xef, + 0x6b,0x3,0xc4,0x6,0xc1,0x11,0x9f,0xc5,0x24,0x77,0xb0,0x34,0xad,0x3a,0x9b,0xc0, + 0x98,0x99,0x9e,0xd5,0x20,0x76,0x25,0xd7,0xc4,0xbe,0x4f,0x1b,0xe1,0x8a,0x3a,0x55, + 0x23,0x66,0xaa,0x37,0xa7,0x90,0xa4,0x68,0x14,0xeb,0x83,0x16,0xf3,0x77,0xb8,0xf7, + 0x83,0xf4,0x52,0xfb,0xa2,0xa9,0x21,0xc0,0x27,0x90,0x83,0x4,0x79,0x92,0xfc,0x1a, + 0x50,0x33,0xb8,0x73,0x4f,0xa7,0x5b,0xfb,0x7d,0x56,0xa2,0xe0,0xa7,0x9a,0xd9,0x72, + 0xae,0x2e,0x91,0xcc,0xa6,0x96,0x25,0xd7,0xbc,0xea,0x67,0x1f,0x3,0x8b,0x4,0x5e, + 0x45,0x60,0x88,0xe0,0x44,0xb4,0x6f,0x65,0xd9,0xef,0x64,0x74,0xdf,0xd1,0x49,0x7e, + 0x45,0x39,0xc5,0x86,0x13,0x4b,0x52,0xde,0xae,0x6a,0xb5,0x42,0xc0,0xd2,0x76,0xb7, + 0xb8,0xa4,0xe1,0x60,0xc6,0xa8,0x9b,0x5e,0x5e,0x92,0x83,0x63,0xad,0x31,0x9f,0x91, + 0xaf,0xd5,0xbb,0x97,0xd,0xbe,0x9,0x3,0x9e,0xd2,0xe9,0x6b,0x64,0x7f,0xdb,0x54, + 0xb5,0xe7,0x2,0xaf,0x73,0xbc,0x6d,0x56,0x3b,0x7c,0x17,0x97,0x79,0x2f,0x33,0x7, + 0xde,0xd3,0x28,0x52,0x9a,0x6,0x3c,0xab,0xd4,0x6b,0x4d,0xb9,0xef,0xa,0x94,0x75, + 0xe9,0xb5,0xfd,0xa3,0xef,0x12,0x9c,0xfd,0x7c,0xde,0x73,0xe5,0xc1,0xd9,0x4f,0xa1, + 0x20,0xcf,0x5f,0x2d,0x8d,0x26,0xe4,0x48,0x71,0x17,0x9b,0x65,0xe4,0x23,0xe1,0xbd, + 0x8f,0xb6,0xb0,0x5b,0x32,0x83,0x7e,0xbc,0x2b,0x4c,0x5,0x18,0x9a,0x1b,0xbe,0xbd, + 0x4b,0x73,0xc4,0x5,0x68,0xdf,0x6e,0x5b,0x32,0xb0,0x9c,0xef,0x10,0x61,0x5,0xc1, + 0x1b,0xe0,0x5,0xe8,0x6e,0x89,0xf1,0x17,0xcc,0xa,0xef,0xb,0x54,0x78,0x5a,0xe5, + 0xb2,0xcf,0xd1,0x20,0xc1,0x62,0x16,0x55,0x45,0x45,0x9c,0xc3,0x57,0x6c,0x37,0x7f, + 0x8a,0x55,0x98,0xd9,0x5,0x3e,0x30,0x93,0xbf,0x3d,0xd5,0x32,0x1e,0x9a,0x96,0xa0, + 0xf4,0x26,0x5a,0x24,0x90,0x21,0x35,0x53,0xf9,0x1a,0xec,0xde,0xec,0x39,0xae,0xa5, + 0xcc,0xdc,0xae,0xc4,0xa9,0x62,0x56,0x65,0xf7,0x70,0xd8,0xbc,0x36,0x2b,0x2d,0x61, + 0x83,0x6a,0xf9,0x8c,0x2b,0x2d,0xdb,0x2,0x81,0xa3,0xae,0x19,0x26,0xaa,0x9,0x2f, + 0x2d,0x9,0x23,0x60,0x1f,0xbf,0x60,0xfe,0x64,0x11,0xd8,0x73,0xfb,0x71,0xf1,0xa9, + 0x9f,0xa8,0x97,0x5,0x37,0x74,0x6b,0xd,0x75,0x7f,0x2d,0xb1,0x8b,0x43,0xfd,0xcf, + 0xb7,0x50,0xf9,0x78,0xb,0xcd,0x9f,0x29,0xcc,0xed,0x8c,0xa0,0x1a,0xd,0x75,0x88, + 0xdd,0x93,0x7,0xbb,0x3f,0xd9,0x4e,0xdd,0x9a,0x89,0x40,0x4c,0x9d,0x10,0x14,0xcf, + 0xb,0x41,0xb8,0x7d,0xc9,0xfc,0xf6,0x43,0x18,0xe5,0xb1,0xb0,0xac,0xa1,0xcd,0x74, + 0x4,0xae,0x58,0x9d,0x29,0xc1,0x47,0xaa,0xfd,0x7e,0xa3,0x30,0x18,0xc1,0x31,0x86, + 0x39,0x4f,0xfb,0x1,0xff,0x63,0x49,0x2b,0x2,0xc9,0x5a,0x77,0x6b,0xab,0x12,0x53, + 0x29,0x91,0x30,0x98,0xdb,0x95,0x19,0xfa,0xa4,0x8e,0x2,0x64,0xef,0x94,0x1c,0x92, + 0xe6,0x35,0x94,0xf2,0xb2,0xaa,0xe7,0x20,0x47,0xdc,0xa6,0xa5,0xe,0x31,0xae,0xf2, + 0x8c,0x59,0xf7,0xb3,0x1c,0xee,0x58,0x84,0xd1,0xa5,0x96,0xb2,0x5e,0x57,0xc3,0x45, + 0xf1,0x88,0x40,0xcd,0x55,0x46,0x2d,0x68,0x3,0x2f,0xe2,0xf3,0x54,0xa0,0xd5,0xbd, + 0x7f,0xf9,0x61,0x1c,0x71,0x7f,0x51,0x1f,0x7e,0x9b,0x8f,0x36,0x5,0x72,0x88,0x81, + 0xbd,0x8e,0xb,0xc8,0x46,0x2b,0x9a,0x3b,0x72,0x72,0x3,0xf6,0xf7,0x34,0x61,0xb4, + 0x32,0x4d,0xb9,0xfc,0x68,0xca,0x52,0xc2,0xfd,0x9e,0xb5,0x54,0xc9,0x95,0xa6,0xea, + 0x7,0x64,0x20,0x8e,0x83,0x59,0x5,0xef,0x39,0x15,0x8b,0x99,0xdb,0xd0,0xcb,0x51, + 0x55,0x5a,0x42,0xcc,0x1f,0x81,0x87,0x87,0x87,0x17,0xa6,0x63,0x12,0x16,0xa6,0xe, + 0x46,0xd7,0xeb,0x15,0xfa,0xbd,0x62,0x51,0x7e,0xca,0x87,0xbc,0x15,0x0,0x7e,0x2a, + 0xfd,0x27,0xf5,0xb7,0x31,0xc7,0x7d,0x4e,0xaf,0xc6,0xc4,0x3d,0xd6,0x4c,0xe8,0x62, + 0x22,0xc6,0x4c,0x13,0xac,0xed,0xec,0xec,0xa,0x72,0x94,0xf3,0xf2,0xb7,0xbf,0xe1, + 0x19,0x42,0x0,0x9b,0x60,0x8,0x7b,0x39,0xba,0x10,0x72,0x1c,0x86,0xf3,0xa8,0x9c, + 0xa8,0x22,0x64,0x9d,0xcf,0x19,0x4b,0x5b,0x0,0x8f,0xb5,0xbb,0xdc,0xd4,0x2c,0xaa, + 0xf2,0x8a,0x88,0x11,0x4,0xbc,0xa7,0xfc,0x71,0x1e,0x8d,0x55,0xf3,0x56,0xc5,0x83, + 0x27,0x44,0x9d,0xc4,0x2e,0xef,0xe8,0x7a,0xb5,0xb4,0x84,0xd9,0x6a,0x57,0xbc,0xe5, + 0xcd,0x2c,0x71,0xbe,0x5d,0x53,0x35,0x81,0x63,0xb1,0x96,0xc5,0xa0,0x5d,0xfd,0xf3, + 0x77,0x1c,0x2f,0x99,0xff,0x60,0x38,0x42,0xa6,0xb0,0xf7,0x21,0xe9,0xe6,0xb1,0xc7, + 0xf3,0x9,0x9e,0xd,0xbd,0x77,0x1f,0x45,0x60,0xbf,0xb5,0xea,0xad,0xa7,0x9a,0xbd, + 0x8f,0xd9,0x4,0xc2,0x4c,0xd7,0xf0,0xf1,0x41,0xa2,0xc8,0x98,0x40,0x36,0xad,0x7e, + 0x41,0x32,0x5,0xd7,0x6d,0x2a,0x28,0xa6,0x78,0x4b,0x20,0xce,0xa8,0xa6,0x41,0x43, + 0xb1,0x6b,0xc,0xe1,0x9b,0xf4,0xf3,0x4c,0x9e,0x96,0x75,0x70,0xe,0xdc,0x5,0x6d, + 0xd8,0x4d,0xf4,0xb0,0xca,0x43,0xfb,0x14,0x30,0xe,0x25,0x11,0x23,0xac,0xb1,0xc8, + 0x48,0xc0,0xa0,0x95,0xda,0x95,0x9b,0x8a,0x67,0x7f,0x40,0xe4,0xc3,0x17,0xdb,0x94, + 0xce,0x54,0x2e,0x54,0x20,0x17,0xb6,0xa0,0x79,0x2b,0xf9,0x75,0xde,0x67,0xae,0x6f, + 0x76,0x68,0x8d,0xed,0x96,0xe2,0xff,0xf8,0xcb,0x58,0xdf,0xb2,0x7a,0xa8,0x3f,0x9c, + 0xdf,0x11,0x8d,0xdf,0x9c,0x6e,0x30,0xdf,0xf5,0x65,0xd2,0xa2,0x26,0xb,0xc5,0xf1, + 0xf6,0x77,0x1e,0x6f,0x7a,0x72,0x9d,0xd2,0xed,0xab,0xd2,0xb3,0xbd,0x53,0xc5,0xfd, + 0x7e,0xed,0xe8,0xcf,0x6f,0xfc,0xe6,0x8c,0x7c,0x7b,0xf1,0x3e,0x9f,0x2a,0x84,0xf3, + 0xcd,0x17,0x77,0x2a,0x36,0x4c,0xe3,0x1c,0xdf,0xb8,0x4,0x8e,0x83,0xd7,0xe9,0x3, + 0x35,0xe8,0x3b,0xdb,0xe3,0xd5,0xce,0xac,0x86,0xbf,0x1,0x6c,0xb4,0xf5,0x8a,0x92, + 0x63,0x1,0x53,0xcc,0x79,0x2a,0x61,0xee,0x3d,0x89,0xb9,0x4b,0x64,0xa0,0x64,0x5c, + 0xe9,0xa6,0x9b,0x98,0x50,0x2f,0xf3,0xb4,0x10,0xc4,0xd8,0xf7,0x24,0xe1,0xd5,0x8b, + 0x4d,0x6,0x4,0x1,0x1f,0x92,0x5a,0x1e,0x3f,0x54,0x93,0x1e,0x18,0x22,0xc2,0xcf, + 0xf3,0x2c,0xdc,0xed,0x16,0xbe,0x87,0x63,0xf4,0x37,0x6f,0x75,0xcf,0xa4,0xe1,0xa2, + 0xfb,0xc2,0x50,0x2e,0xa0,0x94,0x3f,0x52,0x3,0x65,0x1b,0x2b,0xcb,0x8e,0x41,0xbf, + 0x5d,0x9,0x67,0x6b,0xd3,0x2,0x27,0x9c,0x82,0x45,0xed,0x95,0x9e,0x17,0xb2,0xb6, + 0x2,0x8e,0x4f,0x9e,0x1e,0xec,0x1f,0x11,0xba,0x51,0x25,0x71,0x14,0x76,0x2d,0x7d, + 0xdd,0x7a,0x87,0xf5,0xb1,0x7c,0x44,0x84,0x31,0xa6,0x1d,0x63,0xca,0x2d,0x8f,0x34, + 0x32,0x78,0x42,0xc1,0xf3,0xbd,0x96,0x72,0x9e,0xab,0x9d,0xb3,0x68,0x2e,0xee,0xb3, + 0x28,0xcf,0x43,0x2b,0x1f,0x3e,0xf9,0x91,0x17,0x66,0xb0,0xb8,0x98,0x45,0x90,0xf4, + 0x56,0x6b,0xa3,0x50,0x51,0x50,0x22,0xbd,0xa7,0xb3,0xec,0x6c,0x75,0x29,0xfb,0xd5, + 0x41,0x71,0x6a,0x4e,0xc6,0x20,0x7e,0xe4,0x1e,0x22,0x78,0x88,0x61,0x70,0x8d,0xc7, + 0x12,0x64,0x73,0x16,0xe,0x18,0x9d,0x7,0x2b,0xfb,0x9c,0x10,0xc,0x31,0xd8,0x4, + 0x5b,0x57,0x74,0x22,0xfd,0x7c,0x2d,0x52,0x67,0xef,0x7b,0x9e,0xbc,0xbd,0x17,0x40, + 0xc6,0xed,0x3e,0x4e,0x95,0xfb,0x7d,0xdc,0x41,0x98,0x2,0x7a,0x59,0x86,0x20,0xb5, + 0x78,0x70,0xe,0xba,0xab,0x63,0xeb,0x5e,0x75,0x76,0xae,0x10,0x9,0xb5,0x9,0xff, + 0xa8,0xa5,0xe9,0xa8,0x41,0x2b,0xa0,0x70,0xb7,0x8d,0x68,0xfd,0x67,0xfe,0x7d,0xf8, + 0x1d,0x51,0xc4,0xd5,0xe9,0x26,0x6c,0xf6,0xb1,0xa6,0x4e,0x8,0x17,0xc1,0x9f,0x55, + 0x67,0xe9,0x25,0x89,0x27,0x9,0xca,0xc9,0xc,0x10,0x5c,0xc0,0xf0,0x50,0x91,0xd, + 0xe4,0x3a,0x99,0xc8,0x18,0xfc,0x78,0xc6,0x69,0xc5,0x3e,0x1b,0x4c,0xbf,0x73,0x85, + 0x1,0x45,0x61,0x24,0x51,0x67,0xfc,0xd4,0x9e,0xa5,0x1c,0x4b,0x8e,0xdc,0x72,0xc2, + 0x59,0xd0,0x6b,0xff,0x81,0x1e,0x4f,0x53,0x2a,0xc7,0xda,0xa2,0x83,0xf3,0xb6,0xb3, + 0xf7,0x84,0x5e,0xa2,0xdf,0x72,0x7,0xf3,0x3c,0xcf,0xda,0xf1,0xff,0xa3,0xe8,0x21, + 0x49,0x48,0xf3,0xdc,0x1,0xf1,0x19,0xd7,0x15,0x4c,0xc0,0x52,0x37,0x97,0x90,0x55, + 0x68,0xe6,0xde,0x5e,0x49,0x62,0x69,0x1e,0x81,0x35,0x19,0x3a,0x55,0xc2,0x13,0x12, + 0x31,0x86,0x51,0xc6,0xa3,0x9d,0x82,0x42,0xec,0x54,0x1e,0x84,0xe9,0x90,0x62,0xb1, + 0x87,0x53,0x85,0xc4,0x56,0xd1,0x9c,0xc3,0x43,0x1f,0x5f,0x27,0x60,0xae,0x3f,0x91, + 0x3a,0x42,0xa8,0x2d,0x5c,0x6e,0x67,0xb5,0x22,0x7b,0x16,0x3f,0x8,0x31,0x94,0x4e, + 0x9e,0x91,0x2d,0x13,0xcc,0xa6,0xf5,0xa8,0xf0,0x76,0xa6,0xb5,0x32,0xd4,0x1f,0x90, + 0x75,0x82,0x6e,0x7d,0x99,0xbe,0x50,0x46,0x27,0x6d,0xfe,0x52,0x39,0x75,0x78,0x13, + 0xd8,0x17,0x81,0x2b,0x18,0x70,0x73,0x2,0xf2,0x65,0x73,0xf0,0xbf,0x5e,0xf1,0x3e, + 0xbc,0x72,0x15,0x28,0xe0,0x26,0xcc,0x26,0xa7,0xf2,0x8b,0x82,0xd1,0x89,0x98,0x9f, + 0x1,0xc0,0x1a,0x52,0x37,0xb0,0x4c,0x10,0x19,0x7a,0xf0,0xbb,0xa7,0x6e,0x35,0x97, + 0xea,0x94,0xb2,0x9,0x8,0x5b,0x16,0xb9,0x0,0xf8,0xe4,0x3d,0xc4,0x2a,0xb9,0x8e, + 0xa4,0xa5,0xe5,0x50,0x11,0xa4,0xea,0xe3,0xfb,0xdf,0xe3,0x37,0x12,0x98,0x74,0xa6, + 0x9f,0xdb,0x28,0xdf,0x77,0x99,0xf5,0x82,0x69,0x30,0x7a,0x2e,0xff,0xce,0x6c,0xa2, + 0xb0,0xb4,0xea,0x89,0xaf,0x23,0x1d,0x9d,0xb9,0xf0,0xc3,0xf2,0xbe,0xa0,0xdf,0xd3, + 0x8,0x84,0x36,0xb9,0x49,0x91,0x4a,0xd,0xd2,0xfb,0x73,0x9d,0x36,0x14,0x4b,0x18, + 0x26,0xd3,0x3d,0xda,0x9,0xc3,0xc1,0xcb,0x5f,0x3c,0x19,0x18,0x95,0x16,0xe3,0xc3, + 0xc6,0x8c,0xb5,0xeb,0xfb,0xa8,0x5e,0x61,0x24,0xfa,0x97,0xfe,0xd4,0xc,0x36,0x4c, + 0x24,0xa7,0x8b,0xc9,0xcf,0x9b,0x4a,0x87,0xc2,0x78,0x39,0xc,0xe4,0x3d,0xa3,0xcd, + 0x4a,0x94,0x60,0xe2,0xa8,0x57,0x33,0x7f,0xc8,0x6c,0x1c,0xf5,0xdd,0xce,0xb5,0x6e, + 0xfe,0x8b,0x97,0x74,0x49,0x49,0x8b,0xfa,0x96,0x58,0xe7,0x75,0x68,0xb0,0xe2,0xf8, + 0x5c,0x38,0x39,0xe6,0x80,0x2c,0x12,0xb,0x60,0x34,0xdb,0x7e,0x26,0xc8,0x13,0x42, + 0x3b,0x8,0x9d,0x7e,0xa2,0xfa,0xa,0x5c,0x8f,0xcd,0x5a,0x18,0xbc,0xe3,0xf8,0xe3, + 0x41,0xb1,0x7a,0x0,0x21,0x41,0x8a,0x39,0x8a,0x7b,0xae,0xd1,0x70,0xe7,0x77,0x8e, + 0x4b,0xd3,0xcc,0x7,0x21,0xc2,0x1f,0xd0,0x34,0xeb,0xd2,0x75,0x3e,0xd2,0x95,0xc4, + 0xce,0x42,0x21,0x66,0xd,0x97,0xa8,0xc9,0x97,0x65,0x90,0xce,0x84,0xc0,0x9b,0xb3, + 0x4,0xdc,0x8d,0x6f,0xed,0xe4,0xb6,0x66,0x20,0x18,0x11,0x4c,0x2d,0x13,0x75,0x51, + 0xcc,0x8b,0x7d,0x5e,0xf3,0x97,0xdf,0xfb,0xe,0x9f,0x4d,0xb9,0xf0,0xe4,0xef,0x69, + 0x58,0x35,0x9,0x67,0xef,0xb7,0x34,0xcd,0xf5,0xc,0xb8,0x60,0xb8,0x16,0xc3,0x90, + 0xf5,0x93,0x5c,0xef,0xab,0x85,0xd9,0x4a,0xce,0x6b,0x1,0x46,0xc6,0xb2,0xb7,0x28, + 0x97,0xc7,0x71,0xa1,0xaf,0xf7,0x1e,0xe7,0x2f,0x4,0xf7,0xff,0x34,0x7b,0x8a,0x29, + 0xbe,0xe,0x2e,0x24,0x59,0x7d,0x54,0x66,0xa2,0x1d,0x86,0x42,0xac,0x4a,0x0,0x8f, + 0x2c,0x1e,0x59,0x72,0x1,0xf2,0xa7,0x9,0x87,0x67,0x80,0xa7,0x12,0x22,0x84,0x91, + 0xb6,0xf8,0xb9,0x6b,0x44,0xf2,0x8f,0x41,0x5,0x46,0x2,0x68,0x11,0x55,0x70,0x2b, + 0xaf,0xcb,0x26,0xc3,0xa1,0xcc,0x9d,0x5,0x7a,0xd2,0x22,0x1,0x37,0xf3,0x81,0x8a, + 0x1a,0xc2,0x98,0x84,0x55,0x1a,0xe0,0xeb,0xd2,0x5e,0xa2,0xc7,0xc9,0xaa,0x1a,0x5b, + 0xb5,0xc3,0x80,0xaa,0x54,0xa3,0xf1,0x34,0x73,0x82,0x7d,0xc6,0x5d,0x48,0xb5,0xcf, + 0xe8,0x24,0x3f,0x88,0x27,0xe1,0x63,0x62,0x15,0xa7,0x26,0x3e,0x70,0xb7,0x27,0xf0, + 0x3b,0xd3,0xe5,0x7d,0x22,0x1f,0x4,0xdb,0x1f,0x3d,0x7c,0x83,0xf,0x53,0x84,0x69, + 0xf2,0xd2,0xe1,0xc3,0x62,0xf7,0x5a,0x7e,0x8c,0xdc,0xf3,0x5e,0xc2,0x74,0x79,0x8d, + 0x94,0x3a,0x95,0x37,0xe8,0xfd,0x6b,0x52,0xd9,0xca,0x1d,0xbb,0xfd,0x2f,0xbd,0x6f, + 0xbf,0x63,0xdb,0x2,0xb3,0x1e,0xdf,0x43,0xc6,0x7a,0x49,0x72,0xbf,0xc7,0x51,0x46, + 0x2b,0x79,0x2f,0xda,0x96,0x4e,0x7c,0x22,0x66,0x96,0x29,0xbe,0x8e,0xce,0x5c,0xf4, + 0x1f,0xbf,0x4f,0x9e,0x8,0xc6,0x3d,0xa5,0xd9,0xdf,0xf1,0x21,0x6c,0x93,0x98,0xc9, + 0x2e,0xc0,0x62,0x10,0x9b,0xf1,0xda,0xf8,0xb0,0x9f,0x99,0x44,0x11,0x30,0xdb,0x57, + 0xbf,0x9b,0xec,0x1c,0x20,0x3b,0xc7,0x3d,0xbf,0xd0,0xf5,0xec,0xe0,0xe1,0x1c,0x15, + 0xf1,0x6b,0xdc,0xb1,0x35,0xe1,0xb,0x82,0x7e,0x26,0x51,0x39,0x85,0x1,0x52,0xa, + 0xde,0xde,0x13,0x16,0xe6,0x41,0xd4,0xa8,0xe7,0xe7,0xf7,0x8c,0x96,0x48,0x8,0xff, + 0xea,0xe8,0x70,0xc4,0x66,0x4d,0x4b,0xfc,0x24,0x12,0xa0,0x47,0xb9,0x6b,0xa3,0xbd, + 0xed,0xe9,0xb0,0x52,0xc2,0x80,0xf9,0xb6,0xf6,0xa4,0x40,0x76,0xea,0x54,0x85,0xe8, + 0x42,0x9e,0xde,0x37,0xa1,0xcb,0xdc,0xdc,0x4d,0xf6,0x15,0xd3,0xd7,0xaa,0xf6,0xfa, + 0x54,0x75,0xf3,0x51,0x75,0x5,0x48,0x9e,0x48,0xc,0x94,0x64,0x12,0x35,0xf6,0xc4, + 0x3c,0x3d,0x4f,0xb5,0x17,0xca,0x94,0xf3,0x33,0x8f,0x1b,0xd7,0xd6,0x2e,0x3b,0xd7, + 0x2a,0x50,0x3,0xa7,0xf3,0x76,0xef,0xeb,0xdb,0x40,0xb6,0x16,0x6a,0xe7,0x4a,0x23, + 0x59,0xb,0xcd,0x35,0xc4,0x21,0xcd,0x4f,0x49,0x40,0x4,0xfb,0x3a,0x82,0xab,0x67, + 0x34,0x10,0xba,0x8c,0x34,0x64,0x63,0x6a,0xf2,0xd5,0xa6,0xf8,0xc0,0x6,0x87,0x92, + 0x0,0x5f,0xcf,0x3b,0x60,0x99,0x17,0x6b,0x1e,0x35,0x3c,0x84,0x7f,0x49,0xd6,0x3f, + 0x96,0x85,0xff,0x74,0x17,0xce,0x8e,0x6f,0x93,0x3f,0xdf,0x9e,0x3a,0x92,0x6c,0xdf, + 0x1d,0x15,0x5e,0x2b,0x32,0x74,0x6a,0xfd,0xde,0x75,0xa1,0xa,0xbc,0x88,0x28,0x63, + 0xbd,0x72,0x37,0x85,0xa3,0x2c,0x8,0x5b,0x5c,0x7f,0xa1,0x71,0xa4,0x4e,0x40,0xb7, + 0x47,0xfa,0xd6,0xbb,0x9e,0x1e,0x57,0xfa,0xf5,0xa6,0xf7,0x21,0x9,0xb1,0x47,0xb3, + 0xb8,0x23,0xd9,0x80,0x65,0x5e,0x7f,0xec,0x7d,0xed,0xaa,0xd1,0x5c,0xbe,0x22,0x88, + 0x5e,0xcc,0xa3,0x8c,0x6b,0xc,0x73,0x8d,0x61,0x26,0xf2,0xf3,0xcd,0x6c,0xf3,0xc1, + 0x3c,0xf6,0x1d,0x8b,0xf,0x21,0x5b,0x97,0x20,0xfa,0x9c,0x15,0xd,0xb9,0x5e,0x3f, + 0xd3,0x62,0xbe,0xb,0x50,0x4f,0x3c,0xc3,0xb0,0x40,0x7e,0xd,0x45,0x21,0x86,0xd8, + 0xa4,0xe,0x3f,0xfb,0x93,0xdc,0x69,0x42,0xa7,0x39,0x45,0x32,0xeb,0x85,0x7b,0xb4, + 0x87,0x6b,0xcf,0x2f,0xe8,0x88,0xfb,0x1,0x29,0xff,0x55,0xe4,0xc5,0x25,0x3,0x3a, + 0xe6,0x5e,0x47,0x1f,0x14,0x7c,0x95,0x13,0xbd,0x13,0xff,0x10,0xc4,0xec,0xa9,0x41, + 0x58,0x87,0x27,0xfa,0x10,0xf8,0xfd,0x1d,0xf9,0x6d,0x71,0x30,0xea,0x74,0xf0,0x9c, + 0xc7,0xfc,0xf1,0x6,0x8e,0xad,0xcb,0x4f,0xcb,0xe4,0x17,0x82,0x62,0x47,0x22,0x8f, + 0xa3,0xf5,0xbd,0xfa,0xbd,0xe8,0x0,0x8f,0x51,0x34,0xed,0xab,0xc,0xdb,0xfc,0x62, + 0xef,0xa2,0xb0,0x61,0x95,0xe9,0xfa,0xfd,0x27,0xa,0x3f,0x46,0xf5,0x3,0xce,0xd9, + 0xc3,0xdc,0xa7,0x42,0x8b,0x24,0x24,0x2,0xc5,0x3c,0xd5,0xa8,0x54,0xaa,0x5,0x9b, + 0xc6,0x6d,0xb3,0x17,0x1d,0x29,0xb7,0xb9,0x8a,0xcb,0xf3,0x5b,0x55,0x7c,0xd9,0xf4, + 0x80,0xf9,0xa8,0x5a,0x4c,0xf6,0xe0,0x33,0xf,0xbf,0x6f,0x9b,0x7c,0x7,0xeb,0x98, + 0x79,0x45,0x99,0x71,0x21,0x8d,0xc1,0x72,0xde,0x66,0x36,0x26,0x32,0x3f,0x8,0xac, + 0x67,0x5f,0xc7,0xd5,0xae,0x18,0x2,0xe4,0xe1,0x5c,0xeb,0xbf,0xd5,0x5f,0x98,0x70, + 0x9e,0x61,0xc8,0xab,0x11,0xfe,0x28,0xfc,0x5b,0x1,0x85,0x86,0xc9,0x50,0x62,0xbc, + 0x96,0x31,0x3b,0x8d,0xba,0xf4,0x38,0xf4,0x9c,0xdb,0x75,0xac,0x1,0x53,0x70,0xb7, + 0xa9,0x31,0x34,0x9b,0x4a,0x5e,0xd4,0xbd,0x95,0xce,0xf1,0x83,0x62,0x1f,0x61,0x4b, + 0x41,0x21,0x54,0x93,0x71,0x6f,0xa8,0xc6,0xa3,0x3e,0xf1,0xef,0xf3,0x80,0x6c,0x94, + 0xa0,0x98,0x96,0xb2,0x2f,0x7f,0x8d,0xd8,0x4e,0xed,0x44,0x4d,0x14,0xa,0x85,0x9a, + 0x23,0xec,0xf,0x73,0x55,0xd,0xa6,0xe0,0x19,0xc7,0xc,0x59,0x5c,0x64,0x2c,0x64, + 0x5b,0xdd,0xab,0xd5,0x52,0xb2,0x98,0xfa,0x2f,0x39,0xa4,0x9,0xe3,0xac,0x8e,0x24, + 0xc,0x22,0x2d,0x4a,0xd5,0xf2,0xcd,0xff,0x6d,0x7d,0x28,0x63,0x71,0xdb,0x91,0x8f, + 0xcf,0xda,0xa0,0x36,0xc1,0xb9,0x9c,0x37,0xfa,0xe1,0x21,0x7f,0x9e,0xd,0xd2,0xab, + 0x90,0x4a,0xf9,0x91,0x6,0x1e,0xff,0x48,0xb4,0x9,0x4d,0x25,0xcf,0x5b,0x68,0x31, + 0xa1,0xc4,0x91,0xe6,0x46,0x48,0xe2,0x69,0xb2,0x38,0x62,0x9,0x3b,0xa1,0x1e,0x46, + 0x33,0x33,0xb3,0x3d,0xb5,0xa0,0xfd,0xb2,0x23,0x9d,0x48,0x89,0x90,0xd0,0xef,0x32, + 0xaf,0x9c,0x96,0x59,0x25,0xb,0x53,0xfe,0x75,0xfc,0xdf,0xe6,0x8c,0xd5,0x75,0xf3, + 0x78,0x70,0xa3,0xc,0x42,0x60,0x19,0xb4,0xc4,0x36,0x25,0x5b,0xb3,0x2a,0x97,0xb6, + 0x59,0xb,0x14,0x49,0xa6,0x9d,0xe3,0xde,0xab,0x2e,0x18,0x92,0x79,0x15,0x0,0xd9, + 0x61,0x4,0xdb,0xed,0x94,0xeb,0x86,0x8d,0x97,0xbb,0xc0,0xe8,0x67,0xc9,0xa5,0x81, + 0xc7,0x88,0xc7,0xda,0xde,0xdf,0x13,0xeb,0x57,0x55,0x3f,0xf5,0xf6,0x27,0xa9,0x3c, + 0xbf,0x6,0x41,0xb1,0x7a,0x9b,0x35,0x8c,0xbc,0xa8,0xd1,0x7,0x65,0x85,0x17,0xcf, + 0xd9,0x1e,0x40,0x85,0x42,0xee,0xbd,0x3a,0x7c,0x14,0xee,0x14,0x8b,0xd4,0x71,0x11, + 0x57,0xa6,0x92,0xee,0xd8,0xe8,0x3f,0x7d,0xf8,0xb6,0xe7,0x8f,0x84,0x27,0xb7,0x62, + 0x5f,0x5d,0x7e,0xbc,0xfd,0x36,0x35,0xa2,0x2a,0x99,0x3a,0xe3,0x9e,0x48,0x2d,0x3f, + 0x66,0xec,0x8a,0xdb,0xf8,0xf4,0x7a,0xa3,0x14,0x8e,0x2e,0xe7,0xc1,0x48,0xf0,0x97, + 0x59,0xf2,0x61,0x93,0xc0,0x57,0x1a,0x35,0xf6,0xd3,0x1a,0xb3,0x3c,0xc6,0xad,0xc5, + 0xf3,0x5c,0x29,0x4c,0x94,0xca,0x32,0xa8,0xee,0x48,0x9,0xf2,0xdd,0x50,0xc,0x4b, + 0xc2,0x14,0xdd,0xed,0x1e,0xbf,0x2d,0x23,0x28,0x4a,0xcf,0x3f,0x80,0x7b,0xaa,0x89, + 0xe3,0x25,0x4d,0x35,0xbd,0x25,0xa,0xc9,0x14,0x85,0x4,0x97,0xbe,0xe2,0x33,0x5a, + 0xb2,0xe8,0xe9,0xd9,0x1c,0x8b,0x54,0x4e,0x65,0x18,0x72,0x4,0xd5,0x58,0xbd,0x60, + 0xe9,0xf3,0x4,0xbd,0x20,0xc4,0x23,0x89,0xde,0x1f,0x16,0x1b,0x8d,0xab,0x4c,0x87, + 0xc1,0xc1,0xa1,0x7e,0xb9,0xc8,0x0,0x23,0xdc,0xd0,0xc,0x22,0xfa,0xa2,0x7e,0xe2, + 0x7a,0x9b,0xef,0x59,0x6b,0xf6,0x4c,0x79,0x60,0xc2,0x8,0x60,0x76,0x4e,0xc1,0x63, + 0x69,0x78,0x7a,0xa1,0xd6,0x62,0x70,0xf,0x58,0x50,0x2b,0xfd,0xac,0x3c,0xf7,0xfe, + 0xb1,0xfc,0xca,0x9e,0x3f,0x7e,0x6e,0xe1,0x2f,0x86,0x2f,0xd,0x3c,0xd,0x70,0xfb, + 0x20,0x51,0xc7,0x56,0x7a,0xee,0xc1,0x7a,0xcc,0xa7,0xe6,0x91,0xd4,0xf1,0xd,0xfb, + 0x61,0x16,0xb5,0xdd,0x8c,0x2e,0x58,0x93,0x95,0x95,0x1e,0x7a,0xfa,0xd4,0x63,0xc1, + 0x57,0xbc,0x61,0x5e,0xdb,0xb4,0x8a,0xb8,0xc5,0xa7,0x53,0xb0,0x85,0x8e,0x8d,0x30, + 0x2,0x59,0x32,0x8a,0xd7,0x96,0xa8,0xdd,0xa2,0x72,0x8f,0xdd,0x89,0x41,0xcd,0x33, + 0xfc,0xdc,0x52,0x5d,0x13,0xdf,0xc8,0x5f,0x92,0xd7,0x46,0x6,0x8d,0x76,0x1f,0x12, + 0x88,0x7b,0x46,0x5d,0x85,0x3a,0xef,0x54,0x81,0xe5,0x10,0xd9,0xce,0xe8,0x72,0xe4, + 0x4f,0xd3,0x92,0x35,0x1e,0x3d,0x33,0xa1,0x6e,0xb6,0x6e,0x42,0x80,0x25,0x9c,0x55, + 0x39,0x8c,0x13,0x1f,0xd6,0x8a,0xf3,0x21,0x90,0xe4,0x77,0x1b,0x16,0x15,0x16,0xc7, + 0x57,0xb0,0x3b,0x51,0xc8,0xc9,0xc3,0xb1,0xe8,0x69,0xff,0x10,0xac,0x9a,0x81,0x8, + 0xa,0xd7,0x1c,0x63,0xcc,0x18,0xb0,0xd6,0xc6,0x40,0x5e,0x36,0xae,0x3c,0xf2,0x1f, + 0x6d,0x30,0x93,0x10,0x46,0xf8,0x98,0x41,0xf5,0xbb,0xd7,0x4a,0xb0,0xb,0xf9,0xf9, + 0x34,0xfa,0x45,0x9f,0xbd,0x52,0x30,0x12,0x76,0x32,0xf1,0x50,0x7d,0x16,0x25,0xf4, + 0xab,0xe1,0xf8,0xe5,0x52,0x70,0x8d,0x3d,0x25,0xfa,0x3d,0x9,0xc9,0xb9,0x86,0xa8, + 0x3c,0xc3,0xf9,0xa2,0x7d,0xf5,0xc2,0xb0,0x20,0x60,0xa3,0xb1,0x8c,0xf3,0xce,0x19, + 0x36,0xd9,0x6d,0xbd,0xad,0x7e,0xdb,0x50,0xf7,0x44,0xaa,0x40,0xf5,0x68,0xe2,0xe3, + 0x17,0x23,0xdb,0x45,0x1d,0xf9,0x3a,0x8c,0x1f,0xcb,0x56,0x53,0xa6,0x6b,0xba,0x84, + 0xe7,0x6b,0x97,0xe8,0x43,0xc1,0xdf,0x87,0x34,0x87,0x89,0x35,0x2d,0xcd,0xd1,0x3a, + 0x9f,0x7d,0xb1,0xd1,0xa8,0xbd,0xaf,0x3b,0x33,0x70,0x54,0xa1,0x59,0x61,0x5b,0xee, + 0xa6,0xb8,0x33,0x8e,0x23,0xad,0xbb,0xc3,0x4e,0x73,0x16,0x5f,0xe1,0x7b,0xb1,0x69, + 0xa4,0x45,0x89,0x46,0x21,0xfe,0x3d,0xfa,0x61,0xb2,0xe9,0xf8,0x1,0x9f,0x6e,0x6f, + 0x8f,0xa7,0xec,0x80,0xc2,0x28,0x22,0x76,0xcf,0x3b,0xcb,0x3,0x7d,0x79,0x31,0x59, + 0xb0,0x54,0x5e,0x6b,0x1b,0x43,0x21,0xf7,0xe9,0xa4,0x10,0xb,0x21,0x3b,0x79,0xbf, + 0x6a,0x0,0x2b,0xe4,0xa2,0xa,0x8b,0x72,0xb3,0xe3,0xc3,0xb,0x8,0x16,0x25,0xd3, + 0xcb,0xc0,0x12,0x3e,0x24,0xf0,0xd,0xcc,0x6c,0xea,0x39,0xfa,0x2c,0xcc,0x7b,0x26, + 0xd5,0x1,0xc4,0x10,0xc1,0xa4,0xf8,0x92,0x36,0x79,0x3d,0xb,0x92,0xb8,0xf0,0x7b, + 0x8,0x8b,0xb4,0x8a,0x3e,0x14,0x62,0x8,0xbc,0xa,0x7d,0x4b,0x12,0xce,0xe2,0x60, + 0x49,0xc7,0x5b,0x4b,0x2d,0x1b,0x22,0x7a,0xe7,0xf4,0x4a,0x7,0xb0,0xa2,0x94,0x32, + 0x8b,0x0,0x16,0x9d,0xb5,0xee,0xd6,0x49,0x50,0xbb,0x87,0xcd,0x53,0x63,0x57,0x47, + 0xc5,0x9e,0x2b,0xc6,0xd,0x7e,0xb,0xfc,0x59,0x5f,0x94,0x46,0xd9,0x9e,0x61,0x2, + 0x43,0x7c,0x72,0xdc,0xce,0xda,0x25,0x57,0x8d,0xcc,0xe1,0x90,0xe7,0x65,0xc5,0xc3, + 0xce,0x82,0xdd,0xb3,0xb7,0x7d,0x83,0x44,0xc4,0x6b,0x10,0x98,0x28,0x2b,0x95,0xd9, + 0xb0,0xf3,0x17,0xca,0x8d,0x44,0x17,0x3d,0xe3,0x7a,0xeb,0x1b,0x97,0xbd,0x97,0x72, + 0xbe,0xe7,0x93,0x3f,0xc3,0x9f,0x8f,0xd4,0xef,0xfb,0xa1,0x6e,0xa,0x9d,0x74,0xc, + 0xbc,0xc,0xf2,0x62,0xb5,0xa,0xf0,0x59,0xbe,0x43,0x8d,0x51,0xad,0xc1,0x97,0x83, + 0xc2,0x93,0xbf,0xea,0x29,0x27,0x91,0x4f,0xd3,0x27,0x50,0x33,0xdd,0xc5,0x9f,0x13, + 0x30,0x2e,0x6e,0x7f,0x56,0xbf,0x3c,0xfe,0x6d,0x82,0x96,0xa8,0x31,0xe3,0xa3,0xec, + 0x2b,0xab,0xb5,0xb0,0xd9,0xc2,0xda,0x9e,0x98,0x7f,0xa,0x57,0xe5,0xcd,0xf5,0x7a, + 0xdc,0x3b,0xe4,0x2c,0xe8,0x4e,0x36,0x1f,0x10,0x7c,0xcf,0xec,0xc0,0x6f,0xf5,0x30, + 0x70,0x79,0x95,0x79,0x50,0x4,0x6b,0x35,0xa1,0xdd,0x7d,0xa8,0xcf,0xd3,0x9c,0x83, + 0x1f,0x77,0x9c,0x8f,0x7c,0x99,0xfa,0xd7,0x65,0x22,0x1c,0x76,0xe2,0x6e,0x10,0x8d, + 0x36,0x41,0xfe,0x44,0x5a,0x34,0x13,0xa4,0x21,0x73,0x45,0xaf,0x55,0x3f,0x9a,0xdb, + 0x83,0xc5,0xc2,0xc3,0x65,0xa6,0x9c,0x5d,0x2f,0xe9,0x20,0xf8,0x6f,0xfd,0x4a,0xd9, + 0xe2,0xe7,0xb2,0x76,0xd6,0x2f,0x76,0x9b,0xfc,0x13,0xd0,0x17,0xb0,0x73,0xa9,0x3b, + 0x5,0x9d,0x58,0x4a,0xf,0x9e,0xbb,0x86,0x2d,0xff,0xaf,0x36,0xb2,0xcd,0xd6,0x31, + 0x49,0x5e,0x23,0xe,0x99,0xc7,0x63,0xd7,0xec,0xdb,0xbc,0x98,0x17,0x7,0xf2,0x34, + 0xcf,0x77,0xb2,0x1e,0x5a,0x6e,0x49,0xdf,0xbf,0xf0,0xdb,0x98,0xc6,0xba,0xb8,0xf0, + 0x9c,0x9b,0xf8,0x99,0x61,0x4a,0xdc,0xf0,0x7e,0x7b,0x57,0x94,0x8c,0x6c,0xc3,0x81, + 0x36,0xa5,0x7c,0x8a,0x37,0x3c,0xca,0x2e,0x30,0x6c,0xb7,0x14,0xee,0x10,0x63,0x44, + 0xf0,0xf1,0xc6,0xa6,0x1a,0x3,0x8c,0xab,0xff,0x81,0x2a,0x31,0xe4,0x6e,0x10,0x7f, + 0x26,0x19,0xb9,0xf2,0x4c,0x34,0xa6,0x8b,0xc8,0x9d,0x78,0x16,0xd5,0xc1,0x63,0xc, + 0x48,0x92,0x51,0x81,0xb5,0x71,0xd7,0x54,0x14,0x9,0x4a,0xdb,0xa5,0xae,0xd8,0x7b, + 0x9d,0x77,0xb1,0x10,0xdf,0x35,0x9,0xcf,0x6,0x9d,0x40,0x80,0xcf,0x8b,0x8a,0x63, + 0x3b,0x93,0x9b,0xf1,0xa,0x4,0x31,0x45,0x8,0xfe,0xe7,0x18,0xc,0xa7,0x9e,0x1a, + 0x4f,0x69,0xa,0x9a,0x8a,0x10,0xa3,0xb0,0x10,0xd3,0x9f,0xaf,0xa6,0x6b,0x25,0xe2, + 0x75,0xbb,0xbe,0x54,0xb2,0xd,0x45,0x9f,0x17,0xb6,0x21,0x8b,0xd6,0x8e,0x15,0xd0, + 0x42,0x48,0x4f,0x61,0x3,0x59,0x9b,0x23,0x19,0x71,0x4f,0xfd,0xb6,0xc,0x42,0xce, + 0xf3,0x7b,0xee,0xb7,0xb6,0x28,0xa7,0x5f,0x9f,0x7a,0x6,0x7,0x23,0x3e,0xb5,0x9d, + 0x44,0x89,0x99,0xe5,0x9e,0xb5,0x2b,0x26,0xe,0xb3,0x10,0x10,0xbf,0x8d,0x0,0xc2, + 0xdc,0x5d,0xb0,0xd2,0xb6,0xe8,0x85,0xeb,0xdf,0xa7,0xfc,0xb0,0x1c,0x13,0x77,0x89, + 0xe6,0xf,0x66,0x3c,0x22,0x9e,0xcf,0x8f,0x81,0xfb,0x4d,0x16,0xa9,0xe,0xf3,0x1a, + 0x5,0xfb,0x27,0x79,0xd1,0xbd,0xbb,0xd8,0xb7,0x2f,0x75,0xc4,0x67,0x5c,0x63,0x18, + 0xab,0xd3,0x6f,0x71,0xe4,0x2a,0x9b,0x61,0xa7,0x44,0x4a,0x62,0x13,0xce,0x94,0x20, + 0xa9,0x93,0xbd,0xeb,0xe6,0xd2,0x70,0x70,0xa4,0xd,0xa0,0x39,0x8a,0xb9,0x42,0x1a, + 0x24,0x75,0x6f,0xbf,0x8a,0xa,0x8c,0xc9,0x9e,0x38,0x48,0x58,0xed,0x38,0xca,0x58, + 0xfe,0x65,0x65,0x11,0x8d,0x77,0x31,0xef,0x5,0xc2,0x36,0x38,0x92,0x72,0x46,0x3, + 0xd8,0x3a,0x4d,0xb2,0x3e,0x83,0x7b,0x66,0x6e,0x11,0x55,0x4e,0x70,0xdd,0x3b,0x7b, + 0xc6,0xbc,0x84,0xb7,0xa0,0x1a,0x9f,0xb,0xa5,0xdb,0xb1,0x9f,0x3c,0xc5,0xc,0xf7, + 0x13,0xc,0xb6,0x7f,0x4a,0x7f,0x3b,0x35,0x34,0x61,0x7f,0x48,0xe0,0x93,0xbf,0xae, + 0xf9,0x1d,0x8a,0x98,0xaf,0x7b,0xb6,0x13,0x2d,0xbc,0xe2,0x3a,0xcb,0x14,0x3,0xe8, + 0x1e,0xef,0xbe,0xaf,0xc1,0xd3,0x6b,0xc1,0xde,0xa,0x4a,0xf2,0xfc,0xb8,0xd5,0x64, + 0xe6,0x4a,0x2b,0x82,0x88,0xfd,0x85,0xb1,0x48,0xa2,0xc4,0x11,0x7,0x8b,0xcc,0x4c, + 0x49,0xbe,0xa9,0xf7,0x77,0x2e,0x7b,0x60,0x60,0x7e,0xd8,0xac,0xe8,0x91,0x0,0x38, + 0xde,0x73,0x7e,0x9b,0x7e,0xb6,0xf3,0xd0,0xed,0xb1,0x19,0xd3,0x1,0xce,0xcb,0x32, + 0x19,0x30,0xc0,0xc,0xeb,0x70,0x79,0xa4,0x7,0xf4,0xa3,0xfd,0x33,0xec,0x40,0x9b, + 0x12,0x1f,0xc3,0x43,0x7d,0x92,0xd,0x54,0x4d,0x2,0xcb,0x14,0xf2,0x7c,0xa0,0x73, + 0x8f,0x6a,0x8a,0xfb,0x73,0x4e,0xaf,0x55,0x83,0xe6,0xb8,0x5d,0x22,0x43,0x8c,0xce, + 0x82,0x3e,0x31,0x63,0xe1,0x86,0x57,0x9b,0x67,0x18,0xa,0xd8,0xfe,0x70,0x5a,0x27, + 0xaa,0x9,0x7c,0xb0,0x3a,0x7b,0xe9,0x71,0x57,0x3c,0xed,0x2b,0x2c,0x75,0x2,0xd0, + 0x3d,0x7e,0xce,0x35,0xc5,0x57,0xb5,0xb0,0x48,0xab,0xf7,0x18,0xd2,0x9f,0xef,0xc3, + 0xf1,0x2b,0x7c,0x60,0x3b,0xec,0x93,0x84,0xa1,0x73,0x79,0x21,0x68,0x2,0x3b,0xc2, + 0xca,0xdb,0xda,0xec,0x9e,0x41,0x7b,0x13,0xee,0xa1,0xa4,0xa1,0xfe,0x2e,0x91,0x42, + 0xe6,0xe6,0x95,0x50,0x54,0x6a,0xfe,0x32,0x12,0x68,0x14,0x8f,0xe8,0x8e,0xe3,0x7f, + 0x30,0xbf,0xd,0x3f,0x1a,0x43,0x2d,0xe4,0xee,0xa2,0x5b,0x1b,0xba,0x29,0x81,0xbf, + 0xb2,0xad,0xc3,0x44,0x69,0x4f,0x0,0x37,0x42,0xb,0x1a,0xdf,0xeb,0x95,0xd8,0x86, + 0x4f,0x7e,0xca,0xdc,0x9e,0xf2,0xc6,0x2,0xe6,0x65,0x1,0xbb,0xb2,0xe5,0x8d,0x25, + 0x34,0xea,0x24,0xa9,0xc9,0x14,0x2f,0xc4,0x68,0x3b,0xa6,0x18,0xa6,0x22,0xa3,0xdd, + 0xf3,0xff,0xd6,0xbe,0x1f,0xd,0xf0,0x22,0xe7,0xeb,0x82,0x29,0xef,0xb7,0xcf,0xbd, + 0xdd,0x64,0x9,0xe6,0xcf,0x7c,0x81,0x16,0x5a,0x44,0x1e,0x6b,0x88,0xd,0xa7,0xc0, + 0xbf,0xb3,0x9,0x5e,0xd1,0xed,0x14,0xc9,0x55,0x53,0x1b,0xd7,0x8c,0x42,0xba,0xcb, + 0x1d,0xa9,0x5,0x68,0xfa,0x40,0xd7,0x11,0x6f,0x39,0x19,0x0,0xe2,0x87,0xd9,0xfc, + 0xd0,0xe2,0x89,0x65,0xe5,0xd8,0x74,0x9d,0xb7,0xbe,0xf1,0x79,0x17,0x31,0xc4,0x6, + 0xd0,0xdd,0xc7,0x58,0x55,0x79,0xc9,0x9b,0x73,0x4f,0xa9,0x7f,0x73,0xed,0x1e,0xa9, + 0x3d,0xfc,0x40,0x60,0x63,0x7d,0x7d,0x3d,0xbe,0x45,0x37,0xf8,0x65,0xb8,0xc0,0xe4, + 0xb3,0xba,0x0,0x6,0xe1,0x18,0x99,0x25,0x3b,0x64,0xb4,0x18,0xa9,0xea,0x95,0xe3, + 0x45,0xa9,0x7,0x73,0xe0,0xf7,0x44,0x3e,0x7a,0x41,0x2a,0xd1,0xa7,0xc9,0xf3,0xa8, + 0xf6,0xa2,0xed,0xc5,0x8,0xf5,0xc0,0x4a,0xf2,0x96,0x38,0xc3,0xd3,0xd1,0xc0,0x4e, + 0x42,0xfe,0x32,0xb,0x44,0xc0,0x15,0xd2,0xf8,0xc,0x87,0xfd,0xa9,0xf7,0x80,0xaa, + 0xf9,0x95,0xf6,0x1e,0x5f,0xa7,0xa4,0x13,0x17,0x37,0x72,0x48,0xf1,0x82,0x27,0x9, + 0x6e,0x9b,0x50,0x2b,0x2f,0x7b,0x75,0x20,0x14,0xee,0x52,0x36,0x52,0xde,0x10,0x8b, + 0xb8,0xdb,0xb0,0xe,0xe1,0x5b,0xf7,0x8f,0x66,0x1d,0xf7,0x55,0xa2,0x4d,0x9d,0xcc, + 0x5a,0x13,0xba,0x6b,0xfc,0x1e,0x6,0x63,0x64,0x7a,0xd8,0x3a,0x6,0x1f,0x1e,0xf, + 0x9b,0xea,0x23,0xee,0x74,0x9f,0x22,0x43,0x3b,0xca,0x7b,0x98,0xa5,0x1e,0x90,0xfd, + 0x3f,0x4d,0x6f,0x5f,0xfa,0x11,0x9a,0x70,0xe8,0x1,0x51,0x37,0xcf,0x39,0x95,0x58, + 0x16,0x80,0x59,0x72,0xb3,0x47,0xc3,0x7f,0xbf,0x8f,0x88,0x5d,0xb3,0x20,0xa8,0x8a, + 0x4a,0x54,0x27,0xfa,0xd5,0xd4,0x46,0xb9,0xf0,0x43,0x25,0xd3,0x85,0xa4,0xec,0xcd, + 0x11,0x6d,0xec,0x6c,0x4b,0x63,0x84,0xda,0x32,0x13,0x1a,0xf5,0xd9,0xdc,0xc0,0xe6, + 0x1d,0xdc,0xed,0xf4,0xfb,0x74,0x65,0x83,0x3,0xa4,0x6c,0x58,0xb8,0xe2,0x43,0x8a, + 0xff,0x35,0x4e,0x97,0x30,0x9e,0x73,0x1,0x5,0xd3,0x1b,0xc0,0xc7,0xe4,0x28,0x6b, + 0x63,0x58,0x5c,0x1f,0xba,0x95,0x5d,0xf2,0x14,0x6f,0xb2,0x20,0xf4,0x38,0x71,0x58, + 0x6d,0x9c,0x42,0x70,0x30,0xdf,0xe9,0xf2,0x19,0xf,0x60,0x4,0xc5,0x64,0x49,0xeb, + 0x51,0x76,0x3c,0x1c,0x9a,0x45,0x9d,0x21,0x27,0x22,0xbf,0x44,0x94,0xb0,0x7,0x7b, + 0xe6,0x65,0xd,0x13,0x91,0x79,0x78,0xdf,0x75,0xdf,0xce,0x78,0xfc,0xb0,0xbc,0x6d, + 0x74,0x71,0x2,0xbc,0x89,0xb2,0xf2,0xcc,0xda,0xa,0xbf,0x5d,0x11,0xc8,0xbd,0xc5, + 0x8b,0x4a,0xb2,0x9e,0x7f,0x96,0x34,0x2c,0x9a,0x57,0xb1,0x1a,0x3d,0x92,0x63,0x3d, + 0x5b,0xbf,0xfd,0x4,0x2,0x9d,0xe6,0x2a,0x8a,0x47,0x2c,0x8e,0xd3,0xab,0xea,0xaf, + 0x2e,0x15,0x66,0x10,0x99,0xba,0x3d,0x93,0xc,0x1c,0xa4,0xbb,0x85,0x7e,0x45,0xff, + 0xed,0x1c,0xda,0x97,0x3e,0x77,0xc3,0x75,0x12,0x15,0x8d,0x8e,0xc7,0x1d,0xe2,0x6c, + 0xd7,0x3,0xb6,0x68,0xca,0xa3,0xdd,0x7d,0xe9,0x6,0x99,0xe6,0x5b,0x2c,0x70,0x58, + 0xc5,0xdb,0xf9,0x8b,0xbb,0x89,0xaf,0x77,0x8e,0x4a,0x2e,0x8e,0x24,0x43,0x61,0x49, + 0xc8,0xfb,0x3f,0x99,0x97,0x1f,0x3e,0x1c,0xaf,0x95,0x19,0x71,0x24,0xc1,0x8f,0x44, + 0x37,0xf7,0xc8,0x5f,0xc6,0xac,0xfa,0x1f,0x77,0x8a,0xd9,0x37,0x52,0xa5,0xdd,0x1d, + 0x6b,0x36,0x51,0x85,0xf4,0xbb,0xbc,0xc5,0x35,0x2b,0x73,0x59,0xd4,0x3,0x5b,0x2a, + 0xa4,0xeb,0x7b,0x3,0xba,0x42,0x18,0x11,0x60,0xfe,0xac,0xfb,0x3b,0x47,0x3a,0x2b, + 0xea,0xcf,0xca,0xb4,0x7d,0x4c,0x69,0x23,0x7d,0xfb,0x5b,0xdf,0x98,0x89,0xe,0xdb, + 0xba,0xa6,0x62,0xfe,0x50,0xca,0xe5,0xbf,0x7c,0xab,0x8a,0x80,0x32,0x30,0x4c,0x3f, + 0x81,0x1c,0x7d,0xb8,0x68,0xf8,0x3b,0xdc,0xb4,0x7b,0x45,0xe9,0x77,0x33,0xa9,0x22, + 0xb3,0x39,0x16,0xd6,0xfe,0x8,0x7d,0xd2,0x7e,0x65,0x49,0xe2,0x9a,0xf2,0xc6,0x86, + 0x27,0x5d,0xd5,0xea,0xba,0xb5,0x60,0x31,0xcd,0x2,0xc9,0xae,0x21,0x20,0xe9,0xaf, + 0xc,0x70,0xc6,0xb1,0x2d,0x4,0xc6,0xbc,0x94,0x35,0x14,0x18,0x9b,0xfa,0x8a,0xd9, + 0x13,0xaa,0xae,0xbc,0xd7,0x63,0x67,0xc0,0x7e,0x3b,0x7f,0x24,0xc5,0x79,0x22,0xe7, + 0x95,0xc7,0x1e,0x2c,0xe1,0x32,0x6c,0x1a,0xc7,0xe1,0x23,0x8,0x8b,0xc2,0xb3,0xf7, + 0x6,0x98,0x37,0xd6,0x9d,0xbf,0x38,0x72,0xbf,0xe9,0x40,0x40,0x86,0xe5,0x92,0xdc, + 0x73,0x87,0x92,0x8c,0x9,0x99,0x7e,0xa4,0x51,0xe5,0x52,0xd5,0xd1,0xca,0x2c,0xf2, + 0xd9,0xe5,0x90,0x86,0x8b,0x89,0xf1,0xaf,0x35,0x1e,0xd3,0x18,0xe1,0x63,0x29,0xb, + 0xed,0xbe,0x37,0xda,0x37,0x69,0x57,0x27,0xcd,0xe5,0x60,0xde,0xcd,0x43,0x9b,0xdf, + 0xc2,0xd1,0xc3,0x1a,0x7b,0xc7,0x9c,0x53,0x8f,0x74,0x93,0xe6,0x5,0x37,0xa3,0x60, + 0xe3,0x4e,0x61,0xf6,0xc4,0x7c,0xb5,0xc5,0x6f,0x93,0xbe,0xba,0xe0,0xe0,0xc7,0x57, + 0xbe,0xbb,0x68,0x97,0x73,0xc,0xde,0x34,0xa3,0x3d,0x68,0x70,0x25,0xea,0xd4,0xe6, + 0x91,0xb6,0x8b,0xbb,0xed,0x6c,0x8a,0x91,0x86,0xa3,0xc,0x7b,0x8e,0x85,0x3f,0x4, + 0x47,0x73,0xec,0x57,0x6c,0x97,0xc2,0x8b,0xef,0xa6,0x7,0x99,0x4d,0xa6,0xbf,0x0, + 0x1c,0x5f,0x3e,0xd2,0x45,0x0,0x5c,0xa1,0x1f,0xf6,0x22,0xfb,0xf7,0xaf,0xfd,0xc, + 0xb3,0x13,0x30,0x5c,0x26,0x13,0xa3,0x58,0x9c,0x6a,0x42,0x49,0x48,0xd9,0x76,0x8a, + 0x29,0x30,0xdf,0x75,0x18,0xbd,0x82,0x52,0xc8,0xcc,0xbb,0xb9,0x2c,0x42,0xf7,0x3b, + 0x72,0xc7,0x92,0x1f,0x33,0x98,0xbd,0x4f,0x24,0x80,0x4b,0xbc,0xf6,0xb3,0xf0,0x47, + 0x4,0x41,0x67,0x1b,0x4e,0x37,0x17,0xaf,0x77,0x27,0x9a,0x6c,0x2f,0xd4,0x55,0x4, + 0x1e,0x2d,0xb5,0x4e,0xd9,0xdd,0x1b,0x6d,0x7a,0x6f,0x2f,0x6e,0x6c,0x4f,0x5a,0x46, + 0xca,0xe7,0x35,0x38,0x4d,0x5a,0x2e,0x47,0x1e,0xe9,0x1b,0x60,0x6b,0x99,0xd9,0xf7, + 0x7d,0xaa,0x56,0xbc,0x3e,0x5c,0x4c,0xf5,0x35,0x71,0x22,0xb2,0x1d,0x3a,0x41,0x9e, + 0x7e,0x92,0xe8,0x19,0xec,0xa4,0xe8,0xfa,0xfa,0x3c,0x8b,0x0,0x29,0x29,0xf1,0x4e, + 0xba,0x9b,0x89,0xac,0x6,0xf3,0x62,0x78,0x4f,0xfe,0x53,0x1c,0x4f,0x87,0xae,0xe9, + 0x94,0xc,0xac,0xd5,0xed,0xc3,0x23,0x3c,0x3,0x52,0x9,0x3c,0xb1,0x2f,0xf4,0xda, + 0x94,0xe9,0xe9,0xd2,0x47,0x9e,0x36,0x28,0xf,0xa5,0xf3,0x67,0x7,0xcb,0x98,0x35, + 0x62,0xcf,0x2d,0xbf,0xfc,0xe5,0x4b,0x51,0x90,0x95,0x3d,0xaf,0xd6,0x99,0x13,0x6f, + 0x31,0x3,0xe5,0x74,0xd9,0x24,0x57,0x75,0xb8,0xd7,0xbe,0xd0,0x63,0x52,0xed,0x2d, + 0xe,0x70,0xc8,0xd1,0xb6,0x50,0xaa,0xae,0x3f,0x10,0x99,0x50,0x28,0x5a,0xb6,0xa3, + 0x62,0xec,0x49,0x47,0x50,0x4c,0xda,0x8a,0x5b,0xea,0xf2,0x9a,0x7f,0xde,0x8e,0x35, + 0x77,0xa1,0x69,0x52,0xe3,0xff,0xdb,0x39,0xea,0xaa,0xdf,0x2b,0x45,0x92,0x65,0xda, + 0x18,0xb8,0x56,0xa6,0x15,0xf4,0x29,0x38,0xb3,0x97,0x59,0x64,0x9f,0x1f,0x7b,0x1d, + 0x9c,0xde,0x53,0x3d,0x13,0x17,0xdb,0xea,0xa3,0xf3,0x95,0x61,0x6b,0xe6,0x95,0xfa, + 0x6c,0x3a,0xb0,0x7,0x52,0x3e,0xfb,0xc6,0x42,0x84,0x3a,0x6d,0xbc,0x95,0xa0,0x49, + 0x53,0xc1,0x96,0x35,0x6a,0xdc,0x75,0x9a,0xd4,0xc3,0x10,0xf8,0xac,0x86,0x3a,0xf4, + 0x22,0x94,0xe1,0x86,0x90,0x90,0xcd,0x6,0xbc,0xe3,0xcb,0x6f,0x62,0x1a,0xca,0x1d, + 0x97,0xee,0xc,0x41,0x69,0x50,0x9f,0xc9,0x9e,0x87,0xa3,0xbe,0x29,0xc6,0xe7,0x95, + 0x6c,0x59,0xf9,0x11,0x6,0x3e,0x74,0xdf,0x60,0x4d,0x64,0x7d,0x8,0x6d,0x92,0x9f, + 0xcb,0x6a,0x65,0xd0,0x37,0x35,0x3d,0x4e,0x9d,0x5,0xae,0x9,0xe2,0xa9,0xdf,0x26, + 0x9a,0x93,0xae,0x1a,0xe0,0xa4,0xa0,0x96,0xa3,0x3e,0xe,0x12,0x6d,0xef,0x9d,0x47, + 0x3e,0x35,0x4f,0xfc,0xbb,0x1d,0x3,0x83,0xc7,0xe4,0x3e,0x5f,0xa3,0x31,0x35,0x2d, + 0x19,0x3e,0xfe,0x3d,0x61,0x9a,0xb6,0xac,0x8,0xb2,0x5f,0x6f,0x7f,0xaa,0x33,0x1e, + 0x7e,0xbe,0x6d,0xaf,0x82,0xd0,0xfd,0xbc,0x50,0x1b,0x4e,0xd8,0xd9,0xfd,0x1c,0x52, + 0x60,0x69,0xdb,0x56,0x44,0x42,0x28,0x70,0x6e,0x8,0xf1,0x4d,0xd2,0xdd,0xc8,0x1e, + 0x12,0xbf,0xbb,0x88,0xdd,0x9d,0x6a,0x58,0xe8,0xfe,0x91,0xf4,0x50,0x12,0x7c,0x17, + 0xda,0xfa,0x3e,0x7e,0x36,0x2a,0x4f,0xef,0xa6,0x3e,0x17,0xcb,0x54,0x53,0xd2,0xfa, + 0xec,0x62,0x7,0x3f,0xdb,0x7a,0x42,0xe0,0xb8,0x85,0x42,0x9a,0xd1,0xa5,0x32,0x2a, + 0xa6,0xa7,0x30,0x7b,0x21,0xba,0x8f,0xde,0xcb,0xa1,0xfb,0x2,0x39,0xd3,0x46,0x73, + 0x78,0x4d,0x81,0xf0,0xd5,0xfa,0x4a,0x81,0x70,0x65,0xed,0x65,0x2,0xfe,0x5f,0x7b, + 0xd7,0x1,0x17,0xc5,0xd1,0xc5,0xf7,0x4,0xc4,0x8e,0x5d,0xac,0x60,0x2f,0xd1,0x60, + 0x6f,0x51,0xc1,0x5e,0xa2,0x82,0xc6,0xde,0xb0,0x1b,0x7b,0xef,0x4a,0x11,0x10,0x4b, + 0x62,0x8b,0x25,0xc6,0x18,0x7b,0x89,0x31,0x96,0x44,0xb1,0xb,0x1a,0x1b,0x1a,0x7b, + 0xd4,0xc4,0x8a,0x25,0xb1,0x25,0x91,0xcf,0x42,0x11,0xf0,0x7d,0xf3,0x9f,0xbd,0x39, + 0x96,0xf5,0x1a,0x70,0x70,0x60,0x58,0x7e,0x8f,0x2d,0x37,0x3b,0xe5,0xfd,0xdf,0xbc, + 0xf7,0xa6,0xee,0xf0,0x30,0xf7,0x51,0xfb,0x4b,0xe6,0xfc,0x34,0xec,0xfe,0xa,0xef, + 0x76,0x3f,0x1f,0x3a,0xf8,0x74,0xfc,0xe9,0x8b,0x1b,0x36,0x97,0x1e,0x7c,0xb9,0xe4, + 0x77,0xb5,0x5a,0xe5,0xfb,0xaa,0xf2,0xd0,0x43,0x5f,0xb6,0xb8,0xf1,0xee,0xe0,0xd7, + 0xad,0xfc,0xed,0x9a,0x2c,0x1d,0xb3,0xa8,0x48,0xf0,0xd4,0xeb,0x6d,0x9f,0x4d,0xeb, + 0x57,0xb1,0xec,0xcd,0xcd,0xf6,0x4d,0x42,0x5e,0xb7,0xb5,0x3d,0x71,0xa3,0xf0,0x27, + 0xaf,0xf3,0x97,0xab,0xd4,0xf9,0x91,0xf7,0x89,0xdc,0xb5,0x66,0x5e,0xff,0x63,0x71, + 0xa4,0x43,0xbf,0xf0,0xdb,0x7b,0x6f,0x5c,0xf1,0xfc,0xe8,0xd3,0xb0,0xac,0x1d,0xdc, + 0xfc,0xf2,0x7d,0x55,0x35,0xb4,0xdc,0x57,0x79,0xfa,0x7e,0xe4,0xdb,0x6e,0xc2,0x3f, + 0xa5,0x76,0xfd,0xd0,0x77,0xf9,0xe2,0xb0,0xb0,0x75,0xdd,0x87,0xf8,0x5f,0x18,0xeb, + 0x3f,0xeb,0xfa,0xbb,0xed,0xd1,0xcd,0xed,0xd6,0xae,0xd8,0x11,0xdc,0xa7,0x50,0xd9, + 0x37,0xe1,0x15,0xa,0xec,0x1e,0x54,0x71,0xc6,0xf3,0x73,0x9e,0xed,0x5d,0x7a,0x1e, + 0xfd,0xb6,0xe0,0xea,0x31,0x99,0x66,0x46,0x1e,0x72,0xb8,0xba,0xac,0xcd,0xaa,0x99, + 0x53,0xee,0x37,0x79,0xd6,0xb8,0xcc,0xdd,0x1c,0x7d,0x3f,0x6d,0xfd,0xe5,0xf9,0xee, + 0x33,0xdb,0xf6,0x3f,0xba,0xee,0xe9,0x55,0x9b,0xc8,0x90,0x3f,0x96,0x8f,0x1a,0xed, + 0xe0,0xf4,0x7c,0x49,0xc0,0xf1,0x1e,0x4e,0x8b,0x1e,0xd1,0x93,0x2a,0xfb,0x9e,0x4c, + 0xfc,0xf8,0x68,0xe1,0x80,0x9d,0xae,0x71,0x35,0x1b,0x8e,0x75,0xfe,0x7a,0xc9,0xaa, + 0x5f,0x4f,0x7c,0x13,0xd1,0x6a,0x7c,0xf0,0xbf,0xfe,0x45,0xc7,0x96,0x1e,0xf8,0xf2, + 0x97,0x6f,0x66,0xf5,0xf4,0x99,0xee,0x2b,0x55,0x3d,0x5e,0x69,0xfc,0xa7,0x43,0xa7, + 0xbd,0x8b,0x7e,0xfc,0xe6,0xe0,0x3e,0xe9,0xec,0xfc,0x1e,0x7b,0xa5,0xfe,0xed,0x3e, + 0x9b,0x95,0x5b,0xaa,0x76,0x6f,0x46,0xd4,0x27,0x6f,0x3f,0xd9,0xee,0x7b,0xe0,0xec, + 0x9a,0xe0,0x9,0x7f,0x55,0xee,0x3d,0x35,0x70,0x5c,0xee,0xfd,0x4b,0x67,0xd4,0xda, + 0x71,0x7f,0x61,0x97,0xaa,0xbb,0xec,0x9f,0x87,0x47,0xde,0xeb,0x52,0xce,0xfb,0xed, + 0xdf,0xe3,0x9f,0xc,0xfc,0xec,0xc0,0xe4,0x96,0x5d,0x57,0x94,0xfb,0x35,0xfa,0xf1, + 0x1a,0xa7,0x62,0xab,0x87,0x8f,0xf9,0xe2,0x6d,0xec,0xde,0x8f,0xb2,0xe4,0x1d,0xd1, + 0xd5,0xf1,0x9c,0x5b,0x37,0xfb,0xfa,0xf5,0x47,0x2f,0xff,0x7d,0xc5,0x85,0x92,0xbd, + 0x6,0xc6,0x74,0x98,0x98,0xfb,0x4a,0xfe,0x77,0x3,0xf6,0x9f,0xb8,0xb8,0xec,0xce, + 0x63,0xbb,0x90,0x90,0xb5,0x5d,0xec,0xdc,0x42,0x3f,0xf6,0x39,0xb1,0xe6,0xde,0xcc, + 0x7d,0x47,0xf7,0x17,0xb4,0x6d,0xe3,0x77,0x24,0x9a,0x35,0x89,0x8b,0x6f,0xa,0xe8, + 0x5a,0xfc,0xb6,0xfb,0xf8,0xe9,0xd3,0x9f,0x54,0x1a,0x74,0x30,0xd2,0x71,0x49,0xab, + 0xc6,0xb9,0x27,0x9e,0x3e,0xe0,0x3f,0xeb,0xda,0xdd,0xbf,0x1c,0x8e,0x1f,0xad,0xbb, + 0xa7,0x51,0x44,0xb7,0x1f,0x77,0x9e,0xf1,0xbe,0x75,0x78,0xea,0xeb,0xba,0x3f,0x3d, + 0xa9,0xd0,0x34,0xea,0xe8,0x95,0x1,0xbb,0x23,0x7f,0x2e,0xd4,0xbb,0xd9,0x9a,0xb2, + 0x3,0xf2,0x38,0x5e,0xed,0xb9,0xa6,0x96,0xd7,0x8,0xb7,0x31,0x35,0xfa,0x94,0xdc, + 0x7d,0xcd,0x36,0xf3,0xbe,0x47,0xde,0xcb,0xb7,0xf,0x59,0x74,0xe3,0xb3,0x7f,0xca, + 0xe7,0x3e,0xdf,0x72,0x8c,0xfb,0xaf,0x8f,0x7e,0x58,0x17,0x54,0xed,0x7f,0xd9,0xf, + 0x4c,0x76,0x58,0xd8,0x3f,0xcf,0xf,0x52,0xdf,0x56,0x8d,0xc3,0x37,0x8f,0xb3,0xbf, + 0xdb,0xc5,0x7f,0xda,0xe3,0x80,0xb2,0x7b,0xa6,0xfd,0x99,0xad,0xdd,0x92,0x87,0x97, + 0x56,0xb8,0x17,0x5e,0xe2,0xf9,0xcf,0xfe,0x6c,0x43,0xbf,0xfa,0xa9,0xe8,0xca,0x16, + 0xc3,0xe7,0x3a,0xd9,0x3e,0x2f,0x58,0x74,0xbc,0x77,0x3b,0xff,0xeb,0xde,0x39,0x7a, + 0xac,0xc9,0x37,0xf3,0xed,0xe2,0xaf,0x8a,0xe7,0xb5,0x3d,0x5b,0xca,0xed,0xb7,0xb8, + 0x5d,0x85,0x1d,0x97,0xcd,0x9e,0x54,0xb0,0x75,0xdd,0x66,0x1,0x73,0xfb,0xd8,0xfe, + 0x2f,0xef,0xcb,0x62,0x59,0xa,0xec,0xd9,0x70,0xf3,0xea,0x9b,0x98,0x5f,0x23,0x16, + 0x56,0xee,0xe6,0xe6,0x14,0x73,0x29,0x70,0xd6,0xf8,0x6,0xff,0x6b,0x78,0xd6,0xff, + 0xa7,0x2c,0x52,0x66,0xdb,0x63,0x47,0x22,0xef,0xae,0x2a,0x71,0xeb,0x76,0xdb,0xd1, + 0x5b,0x57,0x44,0x55,0x79,0x18,0x13,0x1c,0xf7,0x20,0xfb,0x37,0x95,0xc7,0xe4,0xb9, + 0x3b,0x6a,0xe4,0xba,0x5a,0xb9,0x73,0x9c,0x38,0x76,0xbc,0xe6,0xf9,0xe,0xd7,0x8f, + 0x5f,0x5b,0xbf,0xb1,0xfa,0xb4,0xfc,0xb9,0x3b,0xd9,0x96,0xe8,0x50,0x6e,0x59,0xc1, + 0x12,0xf3,0xa2,0x86,0x97,0x6b,0xef,0x9c,0xf7,0x84,0x6b,0xeb,0x3c,0x4e,0x31,0x7d, + 0xff,0xbd,0xb5,0xbd,0xe1,0xd5,0x16,0x15,0xf3,0xcf,0x72,0x8e,0x3a,0xbe,0xa8,0xe4, + 0x6f,0x57,0xaf,0x36,0x2d,0xd4,0x30,0x6a,0xed,0xdd,0xcd,0x35,0xb2,0x8c,0xc9,0x99, + 0xeb,0xc2,0xa6,0xab,0xd7,0xdb,0x5c,0xa,0x99,0x94,0xa7,0xe5,0xae,0x1b,0xf6,0xf7, + 0xbf,0xec,0xbe,0xf3,0xa2,0xd3,0x27,0xdf,0x7c,0xec,0x54,0xfb,0x8b,0xef,0x3c,0x9e, + 0x37,0x2c,0x7f,0xf1,0x46,0x93,0x3f,0xff,0x18,0xbe,0xa3,0x5a,0xbb,0x69,0xf,0xa6, + 0x2f,0x2d,0x34,0xa8,0x80,0xf4,0xc5,0xea,0xb3,0x39,0xd6,0x8c,0xfd,0xb5,0xda,0xb4, + 0xe2,0x15,0x97,0x39,0x78,0xfd,0x33,0xfc,0xf5,0xa9,0x9f,0x6,0x6d,0x7c,0x7c,0xb4, + 0xf3,0x8e,0xe3,0x3d,0x5b,0x79,0xcf,0xac,0xf6,0x75,0x3d,0xbb,0x26,0x61,0x77,0xa, + 0x5f,0xdd,0xeb,0xe1,0x33,0x46,0x5a,0xf0,0xef,0xdf,0xeb,0x27,0xdf,0x9d,0x1e,0x38, + 0x78,0xc0,0xf7,0x11,0xbb,0x5d,0x76,0xb4,0x8b,0x29,0x76,0xc2,0xfe,0x41,0x8e,0x31, + 0x3e,0xb1,0xd2,0x29,0x87,0x3d,0x41,0x41,0x1d,0x87,0xc,0xd9,0x52,0x20,0xf3,0x8c, + 0xd5,0x25,0xba,0xd9,0x57,0xce,0x7d,0x69,0xdf,0xe8,0x39,0x25,0xa,0x14,0xaa,0xdb, + 0x7b,0x64,0xcc,0x97,0x79,0x72,0xbb,0xef,0xa9,0x19,0x30,0xe7,0xc5,0xfd,0x6a,0x1e, + 0x8e,0xb9,0x35,0x61,0x99,0xf7,0xff,0x1b,0x75,0xfb,0xf1,0xdf,0x6f,0xfd,0xbc,0xdf, + 0x74,0x9d,0x46,0xd5,0x2f,0xd7,0xf9,0xce,0xe3,0xb8,0x14,0x17,0x91,0x75,0x83,0x74, + 0x6f,0xe8,0xd0,0xcb,0xcd,0x8e,0x7,0x2d,0x7d,0x7a,0x61,0xd5,0xce,0x56,0xc1,0xe7, + 0xa2,0x22,0xbb,0x65,0x2e,0x7f,0xca,0x3d,0xb6,0x2,0x4b,0xc1,0xa1,0x5c,0xa6,0x8f, + 0xbb,0x1c,0xef,0x3b,0xa7,0x42,0xf7,0x16,0xe3,0x7a,0xaf,0x3d,0xdd,0xf6,0xe0,0xcb, + 0xa2,0xb1,0x81,0x43,0xba,0x34,0x39,0x9e,0xef,0xde,0x86,0x8e,0x2c,0xd6,0x45,0xb, + 0x17,0x95,0x2f,0xe2,0x3a,0xf9,0x68,0xf7,0x61,0xb7,0x67,0x8c,0x9f,0x54,0x74,0xf6, + 0xed,0x5e,0x7d,0xe6,0xb6,0x76,0x39,0xff,0x7c,0x5c,0x3e,0xd7,0x67,0x5e,0x8e,0xee, + 0xab,0xdc,0x7a,0x97,0xc,0xdf,0x7c,0xa4,0xe5,0xde,0xbe,0x6e,0xb6,0x6e,0xf5,0x9c, + 0x7f,0x9c,0xe7,0x5b,0xe6,0xe8,0x11,0x2f,0xdf,0x5a,0x11,0xc3,0x56,0xff,0xdd,0xb5, + 0xf7,0xcc,0x6b,0x3e,0x7d,0x5e,0x5c,0x6e,0xf9,0xd2,0xfd,0xc8,0xbf,0x1d,0x8a,0xbd, + 0x2d,0x2b,0xdd,0xee,0x74,0xd3,0xd7,0xad,0x4b,0xc3,0x18,0xcd,0x81,0x61,0x5e,0xcd, + 0x1a,0x4e,0xff,0x31,0x5f,0x9f,0xfe,0x6b,0x43,0x2f,0xde,0x78,0xdd,0xc4,0xb9,0x51, + 0x8e,0x1e,0xd9,0xd7,0x16,0xf1,0x70,0x1f,0x38,0xb9,0x43,0xd6,0x97,0xe7,0x86,0x4f, + 0x2f,0x99,0xdb,0x81,0x85,0x9f,0x77,0xf9,0xed,0xcc,0xe2,0x3d,0xb7,0xdb,0x5d,0xf6, + 0x9c,0xef,0x77,0xf1,0x87,0x88,0x22,0x23,0xfd,0x34,0xcb,0xca,0x4,0xb7,0x3c,0x1c, + 0x5e,0xd0,0x6d,0x75,0x5f,0xe7,0x56,0x3d,0x3f,0xfe,0xb1,0xd8,0xc4,0x17,0x63,0x5d, + 0xdd,0x8f,0xf4,0xc8,0x1f,0xb7,0xcd,0x3e,0xac,0xda,0xfe,0xaa,0x5f,0x87,0xba,0x7a, + 0x6c,0xed,0xfa,0xc3,0xe6,0x51,0xb6,0x52,0xec,0x9b,0x69,0xaf,0xff,0x18,0xee,0x1b, + 0x6b,0x53,0xb6,0xd7,0xb3,0xe,0x59,0x72,0xd4,0xd7,0xec,0xf2,0xd8,0x98,0xa5,0x50, + 0xb6,0x72,0x8d,0xdc,0x17,0xff,0x93,0xc7,0x29,0xf3,0xbc,0x6f,0xfd,0xee,0x1c,0xdf, + 0xda,0x25,0xc7,0x59,0x47,0x37,0x6f,0x7f,0xb7,0x23,0xf,0x96,0x7e,0xe5,0x5e,0x71, + 0x78,0x8c,0x4d,0xeb,0xb6,0xbd,0x7e,0xf8,0xf6,0xda,0x54,0x97,0xc3,0xe1,0xc7,0xf, + 0xe6,0xab,0xe9,0x77,0x21,0x53,0xf8,0xd6,0x8f,0x73,0xc,0x3c,0xf0,0x77,0x8f,0x2a, + 0xe7,0x7b,0xb7,0x9e,0xa2,0xf1,0x78,0xb8,0x9f,0xde,0xc5,0x9c,0xf3,0xfa,0xd2,0xd7, + 0x79,0xf0,0x81,0x9d,0xbe,0x11,0x17,0x1b,0x7d,0x72,0x70,0x44,0xaf,0x2a,0x3,0x3c, + 0xe,0x4a,0x25,0x4e,0x6a,0x9a,0x84,0x5,0x14,0xea,0x33,0x67,0xef,0xf9,0x21,0xdf, + 0x4d,0x2d,0x77,0x3d,0xe2,0x65,0xc9,0x42,0xd1,0xfd,0x7e,0x3a,0x1d,0x30,0xf0,0xe8, + 0xca,0x2d,0xc3,0x1d,0xfd,0x3a,0x4a,0x67,0x1c,0x7d,0x2a,0xcf,0xed,0xf4,0xf9,0x88, + 0xbe,0xbb,0xd6,0xdc,0x73,0x3a,0xf1,0xfd,0x9d,0xf5,0xfe,0xa1,0x6e,0xab,0x1e,0xef, + 0xef,0x73,0x64,0x49,0xed,0xf6,0x39,0xe,0x7a,0x56,0x75,0x6a,0x9d,0xed,0xfb,0xe0, + 0xda,0xbf,0x5f,0x8c,0xc,0x7f,0xb4,0x30,0xdf,0xbb,0xae,0xaf,0x2b,0x14,0xd9,0x55, + 0xae,0x52,0x81,0x45,0xaf,0x1e,0x2d,0x2c,0xe4,0x77,0xc5,0x2e,0x7c,0x6b,0x3,0xb7, + 0xe3,0xfb,0x1f,0x66,0xb,0xe8,0x73,0xa3,0x74,0x23,0x96,0x93,0xf2,0xfb,0x7,0x84, + 0xde,0x99,0x16,0x1d,0xf6,0x7a,0xb4,0x7d,0xd1,0x5,0xb7,0x3d,0xc7,0xad,0x7a,0xe3, + 0x58,0x6b,0x67,0xad,0x29,0x63,0x7b,0xd8,0xf7,0x7d,0x19,0x18,0x7e,0x37,0xdc,0x37, + 0x38,0xcf,0xc2,0x6d,0x7e,0x85,0xa4,0x5a,0xb,0x5a,0xbd,0xac,0x71,0x38,0xf7,0xd6, + 0xe9,0x53,0x34,0x61,0xf7,0x3b,0x9c,0xe,0xaf,0xe6,0x53,0x24,0xf0,0x4d,0x74,0xce, + 0xbc,0xff,0xe4,0x5c,0xf7,0xe2,0x4d,0x9d,0x46,0x57,0x9a,0x1e,0xef,0xa9,0xdd,0x9d, + 0x63,0x58,0xf1,0xa9,0xeb,0xe3,0x9e,0x8e,0x8f,0xc8,0x11,0xf6,0xe5,0x94,0x4e,0xa5, + 0xf,0x4b,0x5b,0xed,0x9b,0x65,0xd1,0xb8,0x7b,0x39,0x84,0x9c,0x96,0x9e,0xd9,0xb5, + 0xc8,0x32,0x65,0xcd,0xbd,0xf8,0xb0,0xd,0x1a,0x3c,0x73,0xf4,0x6b,0x2f,0x3d,0x2a, + 0x5a,0xad,0xeb,0x99,0x31,0x37,0x8f,0x79,0x79,0xe5,0x7f,0xb6,0xfb,0xf7,0xef,0x5b, + 0x36,0x70,0x5c,0x5a,0xcd,0xa7,0x63,0xe0,0xf9,0x5c,0x11,0xaf,0xca,0x36,0x88,0x6e, + 0xd8,0xe6,0xd8,0xda,0x9f,0x59,0xd0,0x6,0xf,0x7e,0x59,0xbb,0x47,0x6a,0xf0,0xd3, + 0xe2,0x36,0x9b,0xb0,0xbf,0x87,0x5f,0xee,0xbb,0x99,0xb6,0x6a,0xa2,0x86,0x1d,0x78, + 0x93,0xb5,0x7b,0xfb,0xb,0x6b,0x9f,0xcc,0x75,0x39,0x62,0x57,0xf5,0x8c,0x6f,0x68, + 0xfb,0xe5,0x95,0xbb,0x77,0x7c,0x7a,0x2b,0xdc,0x71,0x63,0x78,0x41,0x9f,0xc0,0xd3, + 0xce,0xcd,0x8a,0xdd,0x74,0xda,0xba,0x55,0xa,0xff,0xe6,0xdc,0x2f,0x1b,0x7e,0xda, + 0xfa,0x75,0x76,0xe7,0xd0,0x7b,0x97,0x72,0x97,0x58,0x3f,0xed,0xaf,0x95,0x43,0x4e, + 0x4d,0x5a,0x5d,0xeb,0x87,0xae,0x85,0x66,0xfc,0x3d,0x76,0xfc,0x5f,0x39,0x3e,0x9f, + 0xfe,0xe6,0x52,0x97,0x7a,0x37,0xe7,0x1f,0x3a,0xdf,0xf1,0x66,0x8f,0x83,0x13,0xbe, + 0xef,0xfd,0xe2,0x9f,0x7f,0xaa,0xec,0x5f,0xdd,0x31,0xf7,0x8a,0x8,0x97,0xa7,0x27, + 0x9a,0x8c,0x7d,0x71,0x24,0xf2,0xe6,0x82,0x67,0xcd,0x4a,0xf5,0xfb,0xaa,0x77,0xaf, + 0x2b,0x36,0x4b,0xa2,0xc6,0xc6,0xfa,0xce,0x1f,0xba,0x61,0x67,0xd0,0x83,0x51,0x3b, + 0x4b,0xdc,0xac,0xd4,0x72,0xfa,0xd8,0x7d,0x85,0x5b,0xf6,0xac,0x6c,0xbb,0xde,0xd6, + 0xed,0xf6,0xa6,0xbb,0xa5,0xcf,0x38,0xbc,0x5e,0x75,0x7a,0xd0,0x5e,0xa9,0x4c,0xb4, + 0xa6,0x7d,0x8f,0xb9,0x5f,0xc5,0xce,0x38,0x1c,0xbb,0xe1,0xcc,0xab,0x1b,0xa3,0x7f, + 0xcf,0x3d,0xf5,0xc2,0x17,0x41,0xb5,0xf,0xbd,0x3b,0x70,0x91,0x5c,0x8e,0xc4,0xde, + 0xec,0x4a,0x95,0x86,0xc4,0x8c,0xdd,0xdb,0xd5,0x61,0xe4,0xb2,0xd,0x47,0xf6,0xdf, + 0xfa,0xe2,0xe7,0x2a,0xf9,0x5b,0x16,0x9f,0x93,0x2d,0x74,0xec,0x57,0x4e,0x15,0x56, + 0x49,0x63,0x42,0x2f,0xce,0x29,0xe5,0xda,0x75,0x45,0xef,0xbd,0xe3,0x36,0xdd,0xb9, + 0x7e,0xcf,0xb5,0x4d,0x49,0xef,0xdf,0x67,0x3c,0x59,0x58,0xb5,0xe2,0x9e,0x23,0xd3, + 0x3e,0xff,0xa1,0xd8,0x3f,0x27,0xef,0xc,0xee,0x35,0x32,0xe7,0xc0,0xb9,0x2f,0xc7, + 0x2d,0x72,0xaa,0x30,0x5f,0x3a,0xd3,0xfc,0xdd,0xd6,0x3,0xb7,0xe7,0x95,0xf4,0x6e, + 0xd4,0xac,0x7b,0xce,0x8e,0xdd,0x1e,0x65,0xca,0xbe,0xb8,0xc9,0xcd,0xca,0x9b,0x14, + 0x61,0xaf,0x65,0x8a,0x1e,0x30,0xbc,0xd9,0xfa,0x4e,0x2f,0xb,0x65,0x8b,0x6e,0x19, + 0x3a,0xa4,0x76,0xc1,0x9b,0xb3,0x47,0x3c,0x77,0xf5,0x8a,0x1d,0x70,0xe4,0xdd,0xbd, + 0x1d,0xc1,0x8d,0x82,0x22,0x9e,0xad,0xab,0xe2,0xfc,0x6f,0xc4,0x83,0x51,0x35,0x76, + 0x4,0xfd,0x55,0xc2,0xfb,0x70,0xdc,0x77,0xe7,0x2e,0x7a,0x47,0xfc,0x31,0xe4,0xe7, + 0xa0,0x92,0xb9,0x98,0x94,0xb7,0xf6,0x72,0xee,0x82,0xed,0x2a,0x5e,0x38,0xdc,0x76, + 0xcd,0x76,0xf4,0xd3,0x92,0xce,0x9e,0xdf,0x55,0x8,0x2b,0x7b,0x66,0xcb,0xc4,0x5d, + 0x9e,0x41,0x79,0x5a,0x82,0x81,0xb7,0x83,0x57,0xde,0x6a,0x51,0xab,0xa1,0xcb,0x6, + 0xc7,0x97,0x36,0x73,0xfc,0xa,0x54,0xb2,0x3d,0xdb,0xee,0x5d,0xb7,0xa2,0x1f,0x5, + 0xc4,0x8e,0xd0,0x2c,0x7d,0xd9,0xb2,0x9f,0xe6,0x52,0xd7,0xa2,0xb7,0x73,0xe5,0xbe, + 0x76,0xbd,0x62,0xf9,0x35,0x79,0xeb,0x97,0x5b,0x80,0xf4,0xa6,0xb6,0xed,0x25,0x67, + 0xae,0xe1,0xdb,0x33,0x1b,0xa6,0x75,0xaf,0x1c,0x5d,0x38,0x20,0x8b,0x8f,0xaf,0xb3, + 0x6b,0xee,0xf9,0xa5,0x6b,0xe4,0x7e,0x34,0xe4,0xf5,0x8d,0xdb,0x91,0xe1,0x73,0x6c, + 0x36,0x2d,0x71,0x7a,0x32,0x3c,0x4b,0xa4,0xdb,0x62,0xa7,0xa,0x7f,0xd8,0x3d,0x71, + 0x89,0xee,0x1d,0xec,0xba,0x66,0xf4,0xf2,0x4f,0xeb,0x36,0xcb,0xea,0xd7,0xeb,0x9f, + 0xfc,0xa5,0xfa,0x6e,0x5c,0x5e,0xe1,0xcf,0xa3,0x3,0xa7,0x7,0x4,0x75,0x3e,0x73, + 0x24,0xe7,0xec,0xa0,0xb3,0x97,0xfb,0x54,0xac,0xf0,0x57,0x71,0xcd,0xcb,0xb8,0x76, + 0xf,0x9d,0x5d,0x17,0x5d,0xcc,0xe4,0xd8,0xea,0xe5,0x8a,0xdb,0x63,0x7a,0x3d,0x72, + 0xb1,0xad,0xee,0xf3,0xf0,0x6d,0xec,0xc9,0x3d,0xc7,0x16,0x8d,0x3c,0x50,0x6e,0x84, + 0xf7,0xcd,0x2f,0x86,0xed,0xc,0x1e,0x59,0xfd,0x76,0x50,0x9b,0xa1,0x3b,0x7b,0xdc, + 0x3a,0x7b,0xad,0xcf,0xee,0x91,0x2d,0xe2,0x8a,0xbf,0x1d,0x5e,0xa5,0xc5,0xde,0xce, + 0xf3,0x1f,0xd9,0xbf,0x1d,0xa9,0x59,0xfa,0xc3,0xf,0x2e,0x9e,0xae,0xae,0xd9,0x35, + 0xef,0x4a,0x74,0x9d,0x35,0x77,0xc6,0xe5,0x6d,0x7b,0xcf,0xd7,0xbd,0xf5,0xc3,0xf5, + 0xa0,0x71,0x7b,0x7b,0x66,0xb9,0xbd,0x76,0xdd,0x88,0xe0,0xdf,0x62,0xb6,0x75,0x7e, + 0x69,0x13,0x97,0x57,0x5a,0xf6,0xe4,0xf1,0x64,0xcf,0x39,0xef,0x82,0x8e,0xb9,0x64, + 0x75,0xc9,0x3e,0xb5,0x3,0xb3,0x50,0xb7,0xc6,0xdf,0x99,0xf3,0x6e,0x4f,0x68,0x64, + 0xa1,0x41,0x2b,0x5f,0xef,0x3b,0x32,0x6c,0xe4,0xa7,0x8d,0x86,0xac,0x1b,0x59,0xb0, + 0xb4,0xc7,0xdb,0x98,0x3a,0xcd,0xeb,0xdc,0x8b,0x8b,0xbc,0x37,0x7a,0xdf,0xb5,0x52, + 0xd1,0xbe,0xeb,0xed,0xdc,0x8a,0xc5,0xc5,0x8e,0x2d,0x13,0x78,0xe2,0xf2,0xec,0x8f, + 0x3a,0x6d,0xdb,0x2d,0x27,0xb0,0xfe,0xe6,0x17,0x4d,0x5b,0x9f,0x98,0xe8,0xb9,0xb7, + 0x8d,0xd7,0xda,0xad,0x7d,0x7c,0xda,0x44,0xbc,0xea,0xba,0xfe,0xcb,0x63,0xbf,0xf, + 0xfe,0xf6,0x9f,0x9c,0x3,0x7b,0x76,0xc8,0x54,0xf6,0x46,0xf9,0x5,0x31,0x15,0x5f, + 0x1f,0x1d,0xb6,0x32,0xd6,0xed,0x58,0x41,0xb7,0x62,0x8f,0x16,0x96,0x8e,0x5e,0xdf, + 0x23,0x5f,0xdb,0xb3,0x77,0x6,0xd7,0x2a,0x7b,0x6c,0x69,0xd,0xdf,0xad,0x1e,0x4b, + 0x6b,0x14,0xfe,0xe2,0xe7,0xd8,0xaa,0x21,0xe5,0x87,0xf9,0x7b,0xfe,0xb8,0x28,0x38, + 0x2c,0x7b,0xae,0x4e,0xae,0xde,0x3b,0x1e,0xcd,0xdf,0xff,0xd5,0x8c,0x47,0x63,0xaf, + 0xdd,0x1e,0x5c,0xab,0xdc,0xb1,0xa5,0xa5,0x7d,0x5b,0x95,0xe8,0xfa,0x74,0x60,0xd5, + 0x5c,0x51,0xd7,0x6c,0xa2,0x7d,0x1b,0x55,0xf1,0xd9,0x3f,0x2e,0x26,0xe6,0xaa,0xeb, + 0x8b,0xaf,0xbc,0x9e,0xd9,0x9c,0xcc,0x92,0x5f,0x7a,0xd1,0xbc,0xd8,0x5f,0xc1,0xf3, + 0xa7,0x95,0x76,0x5d,0xd4,0x55,0xca,0x71,0x22,0xe4,0xbb,0x5e,0xe5,0xfa,0xd6,0x5b, + 0x32,0xe3,0xc1,0xa9,0xbe,0x9f,0xd7,0xb8,0x10,0x71,0x76,0xb5,0x5b,0xa7,0xd6,0xbf, + 0x95,0x8e,0x7e,0xd5,0xe7,0x70,0xb7,0x97,0x2b,0xae,0x9c,0xf6,0x3c,0x7b,0xc6,0xa5, + 0x85,0x67,0xeb,0x46,0x71,0x43,0x83,0x3b,0x8e,0xec,0xd2,0x74,0xfa,0xd8,0x86,0x3b, + 0x9b,0xdd,0x8e,0xb4,0xcb,0x3f,0xa0,0xec,0xc1,0x79,0xb3,0x6e,0x6d,0x2b,0xbf,0xe6, + 0x5e,0xf3,0x8d,0x76,0x1e,0xb9,0x5e,0x3e,0xb6,0xe9,0xa9,0xf9,0xb3,0x4d,0xa5,0xc5, + 0x37,0x9e,0x5e,0x9c,0x99,0x73,0xe0,0xaa,0x6b,0xb7,0xfb,0x1c,0xc8,0x3b,0x67,0xde, + 0x1,0x97,0x3a,0x85,0xb7,0xbb,0x8e,0x6c,0xf5,0x5b,0x8d,0x68,0xdf,0xca,0x1a,0x8f, + 0x6c,0xd1,0xbe,0xef,0x22,0xe,0x9d,0xba,0x66,0xff,0x77,0xb9,0x3f,0xf3,0xdf,0x9c, + 0xe4,0xe9,0x32,0xea,0xc0,0xad,0xed,0x41,0x11,0x6f,0x5f,0x1d,0x9e,0x59,0x72,0xc7, + 0xe3,0xa5,0x15,0x82,0x72,0xae,0xbc,0xfd,0xcb,0xf3,0x37,0x6d,0xbc,0x9c,0x97,0xda, + 0x57,0xcd,0x1d,0x17,0x1b,0xf0,0xba,0xca,0xe9,0x3f,0xec,0x7b,0x2d,0x78,0xb4,0x64, + 0xff,0xad,0x62,0x6d,0xff,0xd1,0xc4,0xc5,0xc5,0x9c,0x18,0xeb,0xb9,0x29,0xe8,0x7e, + 0xa5,0xed,0xd3,0xca,0xb9,0xf6,0xad,0xe2,0xd3,0x31,0xd4,0xa9,0xab,0x6f,0x40,0x93, + 0x45,0x3b,0x1d,0xba,0x7d,0x33,0xf5,0xcd,0xf2,0xa7,0x5d,0x17,0x44,0xbc,0xf5,0x3b, + 0xfa,0xf6,0xc9,0xc3,0x83,0x3b,0x3b,0xde,0xda,0x3a,0xf9,0xa5,0x4d,0xf,0x69,0x69, + 0xfd,0x6d,0x2e,0x3b,0xfe,0x5d,0xe5,0xdb,0x2a,0xff,0xd9,0xc0,0x26,0x7d,0x6e,0xb7, + 0xd9,0xd7,0x3d,0x34,0x62,0x5b,0xf3,0x33,0x2b,0xae,0xb4,0x38,0xd2,0x22,0x66,0xfc, + 0xba,0xb1,0x6b,0xaf,0x4c,0x1f,0xbf,0xee,0xeb,0x47,0x39,0x1b,0x35,0x7a,0x56,0xf6, + 0x5c,0xad,0x8d,0x7b,0x16,0x5,0xd,0x2f,0x7b,0x75,0x27,0x6a,0x57,0x4b,0xcf,0xd0, + 0x11,0x1e,0xe5,0x5c,0xf3,0xdf,0x8,0x5a,0xb0,0x60,0x7b,0xdc,0x9b,0x16,0x5e,0x6e, + 0xa7,0xa5,0xdb,0xf6,0x45,0x2a,0xbc,0x3c,0x3d,0xb7,0x57,0xef,0xce,0x9b,0xba,0x14, + 0x59,0xd2,0xf8,0xe4,0xfe,0x5b,0xdb,0x23,0x22,0x1e,0x34,0xf1,0xf6,0x9f,0x71,0x7b, + 0x64,0xab,0xf3,0x2f,0x42,0xd7,0x34,0x5e,0xe2,0x94,0xe5,0xd3,0x19,0x67,0x9b,0x7b, + 0x4d,0x8e,0xaa,0x92,0xa5,0x68,0xd7,0xea,0xad,0xf6,0x96,0x5d,0x36,0xa5,0x53,0xa1, + 0xaf,0x63,0x99,0xd9,0x5b,0x56,0x27,0xa6,0xf8,0xeb,0x95,0xd9,0xbe,0x28,0x3c,0xbd, + 0xe3,0xf7,0x9d,0xae,0x4f,0xda,0xb1,0xf3,0xae,0x67,0xbb,0x63,0xe3,0x6f,0x16,0xaa, + 0x91,0x7d,0xd1,0xdf,0x36,0x83,0xf3,0xbd,0x78,0x4c,0x6f,0x5e,0x9d,0x19,0x10,0x53, + 0xe3,0xcf,0xaf,0xb2,0xef,0xfb,0x87,0xc7,0x3c,0x6f,0xe4,0xd5,0xb8,0x98,0x31,0x3d, + 0xc7,0xde,0xee,0xea,0x5d,0x32,0xd4,0xfb,0xc6,0xea,0xc9,0x83,0xfe,0xd9,0x39,0xe4, + 0xa5,0x4d,0xd6,0x89,0xaf,0xd6,0x39,0x86,0xd8,0x15,0xea,0xd5,0xf7,0xc6,0xc3,0x6f, + 0x37,0x5e,0xfd,0x65,0xc0,0xda,0x63,0x5f,0x4d,0xe,0xdf,0xd3,0x7b,0x47,0xc4,0x4e, + 0x56,0xe6,0xee,0x6f,0xa4,0xcc,0xc3,0x66,0x7f,0xe6,0xb0,0xd0,0x57,0xaa,0xe9,0x9d, + 0xbf,0x41,0xb4,0x4d,0xb3,0x83,0x52,0x9f,0x2c,0x53,0x7e,0xcb,0xf4,0xc8,0x7f,0x75, + 0xdc,0xd4,0x2d,0xc3,0x57,0xc7,0xba,0xdd,0x75,0xc,0x59,0x52,0xf6,0xd3,0x27,0xdf, + 0x8e,0xbf,0x50,0x78,0xeb,0x74,0x6c,0x55,0xd5,0xa0,0xf3,0xe4,0x46,0xf9,0xd7,0xc7, + 0x3d,0xf7,0x8d,0x75,0x5b,0xd3,0xd8,0x2d,0x8b,0xc6,0x61,0xe1,0xb1,0x4c,0xdf,0xcd, + 0x2c,0x52,0xc4,0xe9,0x79,0x9f,0x57,0x8f,0x5b,0x76,0xc9,0x3d,0xe6,0xfe,0xf1,0x80, + 0x2,0x7,0xb,0x38,0x2c,0xbc,0xe2,0x91,0xe5,0xfe,0xa7,0x2b,0x83,0x7e,0xb8,0x7e, + 0xc6,0x61,0xe9,0xa0,0x69,0x63,0x58,0x22,0xfe,0xbf,0xbd,0xdd,0xb4,0xf6,0xee,0x19, + 0x7,0x66,0x47,0xaa,0x6d,0xbd,0xec,0x59,0xe3,0x5e,0xf3,0x86,0x4b,0x9c,0xe6,0xc, + 0x1a,0xe7,0xe1,0xb0,0xb0,0xcd,0xba,0x6e,0x2f,0x5b,0xe6,0x39,0xd2,0x27,0x14,0x3f, + 0x76,0x98,0x1c,0xb6,0x67,0x72,0x9f,0x8b,0x1,0x3d,0xca,0xbb,0x86,0xd9,0xf9,0xb4, + 0xbc,0xb3,0xfe,0x2e,0x7f,0x7c,0xff,0xfe,0xda,0x3e,0xfc,0xe5,0xfb,0x25,0x3d,0xdc, + 0x1f,0xd9,0x1f,0x96,0xc2,0xc3,0xab,0x6e,0xad,0xf3,0xd2,0xa6,0x8f,0x34,0x65,0x8a, + 0xc7,0xcc,0x25,0xd8,0x87,0x6b,0xc3,0xbf,0x1d,0x76,0x3e,0xb2,0xcf,0xfb,0x4b,0x60, + 0xae,0x9c,0x9b,0x32,0xbd,0x70,0x9d,0xb2,0xab,0x63,0xe4,0x83,0xfb,0x1d,0xaa,0x6c, + 0xcd,0xfe,0xd2,0xe6,0x6e,0xa6,0xf0,0xf0,0x2c,0x1b,0x46,0xc9,0x11,0x2c,0x6e,0xdc, + 0x7b,0x31,0xc2,0xff,0x52,0xda,0xed,0xce,0x62,0xa7,0x28,0x72,0x97,0x96,0xb7,0xff, + 0xfc,0xe6,0x9f,0x4d,0xb0,0x4f,0x5a,0xeb,0xe6,0xed,0x9b,0xed,0x68,0xd2,0x77,0x56, + 0x5,0xec,0x93,0xc6,0xc8,0x59,0xbb,0x77,0x1a,0xe,0x37,0x5b,0x29,0x5,0xf,0xf, + 0x7a,0x9f,0xd8,0x7f,0xf,0x89,0xd4,0xa4,0xff,0x5d,0x7a,0x8f,0x10,0xd6,0xc7,0xe7, + 0x7d,0x52,0xc6,0xb1,0x60,0x1,0xd1,0xf0,0xe1,0x44,0xad,0x5a,0x11,0xe1,0x5a,0x10, + 0xee,0x11,0xc7,0x81,0x3,0xec,0x1f,0xc5,0x13,0xee,0x95,0x71,0x88,0xf7,0x91,0x87, + 0x72,0xe5,0xca,0xe9,0x48,0xc4,0x81,0x70,0xca,0xe7,0x88,0xc3,0xd0,0xfb,0x41,0x41, + 0x41,0x34,0x6a,0xd4,0xa8,0xf7,0xde,0x57,0x3e,0x37,0xf5,0xbe,0x20,0xf5,0xfb,0x82, + 0xd4,0xef,0xab,0xe3,0x10,0x84,0x77,0x6f,0xdf,0x96,0xcb,0xab,0xe4,0x3d,0xee,0xf1, + 0x5c,0x8d,0x83,0x92,0x8f,0x32,0xef,0x3c,0x78,0x5a,0x8,0xab,0x26,0x3c,0xd7,0xf7, + 0xee,0xfb,0xfc,0xf7,0x48,0xc0,0x7b,0x41,0xfa,0xde,0x35,0xc4,0x7f,0x21,0x47,0x86, + 0xe,0x53,0xfc,0x57,0xbf,0xaf,0x96,0x41,0x73,0xf8,0xaf,0x7c,0x57,0x2d,0x83,0x4a, + 0xbe,0xa9,0xf9,0x8f,0xe7,0x4a,0xfe,0xe3,0x5a,0x2d,0x7f,0xca,0x38,0xd4,0x84,0xe7, + 0x6a,0xde,0xb,0x79,0xd6,0xc7,0x7,0x35,0xe1,0xb9,0x29,0xfe,0xb3,0x7,0x74,0xcc, + 0x9e,0xc8,0xc7,0x86,0xfd,0xa2,0x49,0x48,0x3e,0x8c,0x42,0xd8,0x73,0x1f,0xf6,0xbb, + 0xe4,0xcd,0x68,0x3c,0xa3,0x7e,0xda,0xdf,0x6c,0xe4,0xf7,0xa0,0x67,0xf2,0x33,0xc2, + 0x59,0xe8,0x99,0x45,0x99,0x8d,0x21,0x66,0xe9,0x43,0x9f,0xde,0x31,0xae,0x7f,0x12, + 0xab,0x87,0x4c,0xe9,0xa3,0xc4,0xe8,0x25,0x53,0xfa,0xc9,0x94,0x9e,0x12,0xef,0xab, + 0xeb,0x8a,0x88,0x53,0xbc,0xaf,0xd6,0x59,0xc6,0xf4,0x8e,0x8,0xd7,0xa6,0x4d,0x1b, + 0xa3,0xfa,0x4f,0xf9,0xbb,0x29,0x3d,0xb6,0x64,0xc9,0x12,0x5e,0x17,0xc5,0x3b,0x6a, + 0x7d,0xa6,0xfe,0xdd,0x1c,0xbd,0x88,0x77,0x8c,0xe9,0x47,0xe5,0xef,0xc6,0xe2,0x53, + 0xd7,0x75,0x65,0x9d,0x15,0xef,0x28,0x7f,0xd7,0x57,0xef,0xf5,0xc5,0x69,0x48,0xff, + 0x8a,0xf7,0x4,0xe1,0xde,0x5c,0x3d,0x6c,0x8e,0x3e,0x4e,0x8c,0x5e,0x36,0x47,0x3f, + 0x1b,0xd3,0xd3,0xa6,0xe4,0xcf,0x94,0xbe,0xd6,0xc7,0x3b,0x63,0xf2,0x97,0x94,0xf8, + 0x8c,0xc9,0x9f,0xa1,0xf8,0xcc,0xb1,0xb,0xfa,0xe4,0xf,0xbf,0xab,0x31,0x34,0x66, + 0x27,0x4c,0xc9,0x9f,0x31,0x79,0x31,0xc7,0xee,0xa8,0xed,0x8f,0x52,0x6,0x5,0x25, + 0xd6,0xe,0x19,0xb3,0x47,0xc6,0xe4,0x4f,0xc4,0x69,0x88,0xf0,0xbb,0xb9,0xf2,0x7, + 0xcd,0x16,0xe2,0xe6,0x4d,0x3e,0x92,0x2b,0x7b,0xee,0xa4,0x97,0x7c,0x18,0x85,0xb0, + 0xdf,0x7d,0x98,0xb1,0x62,0x97,0x5a,0x62,0xe1,0x73,0x29,0xc3,0xb8,0xf2,0x78,0x60, + 0xaf,0x1c,0x19,0x55,0x95,0xe2,0xed,0x56,0xdf,0xac,0xe6,0x48,0x5a,0x4a,0x1f,0xfa, + 0x6d,0x99,0x46,0x33,0x88,0x6c,0x6d,0x7b,0x9b,0xb4,0x69,0xfa,0xed,0x9a,0x7c,0xc8, + 0xef,0xeb,0xb7,0x6d,0xd9,0xb2,0xdd,0x32,0xcb,0xc6,0xa9,0x65,0x26,0x61,0xbe,0x99, + 0x3f,0x50,0xe1,0x29,0xd5,0xae,0xfd,0x8c,0x5a,0xb6,0xc,0xa7,0xa6,0x4d,0x5f,0xf0, + 0xb3,0xab,0xeb,0x3f,0xa,0x3d,0x46,0xb4,0x79,0x73,0x1e,0x9d,0xc,0x2a,0x69,0xd3, + 0xa6,0x6c,0x34,0x7d,0xba,0x8d,0x51,0x5b,0x8a,0xb8,0xbe,0xf9,0xe6,0x66,0x2,0xfa, + 0xfa,0xeb,0x7b,0x34,0x68,0xd0,0x4b,0x5d,0x1a,0x9b,0x37,0x17,0x37,0x68,0x53,0x91, + 0x86,0xb1,0xf8,0x11,0x17,0x48,0xa9,0xdf,0xc4,0x33,0x11,0xbf,0x31,0x1b,0x6b,0xac, + 0x5e,0x89,0xba,0x8a,0x3a,0xf,0xbd,0x24,0x8,0xef,0x7f,0xf3,0xcd,0xef,0xba,0xf8, + 0x85,0xfd,0x51,0x87,0x49,0x4c,0xfc,0x6a,0xfd,0x7,0x3e,0xa9,0xe3,0xd7,0x67,0x83, + 0x13,0x13,0xbf,0x20,0x43,0xf9,0x57,0x87,0x31,0x37,0x7e,0x63,0xfa,0x71,0xed,0xda, + 0xa1,0x3a,0x39,0x57,0xdb,0x68,0xe1,0x63,0xeb,0x93,0xd1,0x78,0xfd,0xab,0x5f,0x5f, + 0x96,0x2a,0xf5,0x84,0xd6,0xac,0x99,0xac,0xb7,0xcd,0xa4,0x8c,0xfb,0xe1,0x43,0x5b, + 0xbd,0x76,0x5b,0xa4,0x21,0xeb,0x35,0x7d,0x94,0xd0,0x7e,0xeb,0x93,0xff,0xf3,0xe7, + 0x6d,0xd,0xea,0x51,0x1c,0x8b,0x17,0xbf,0x7d,0xcf,0x2f,0x50,0xd6,0xab,0xa4,0xf8, + 0x8,0xfa,0xe2,0x86,0xac,0xac,0x5c,0x79,0x9b,0x93,0xa8,0x63,0xea,0x34,0xcc,0xd1, + 0xd9,0xfa,0xf0,0x15,0xf1,0x29,0xeb,0xe,0xee,0x97,0x2f,0x7f,0x92,0x20,0xd,0x7d, + 0xf1,0x18,0x3a,0x94,0xf1,0x43,0x4f,0x1a,0xab,0x5f,0xc9,0x8f,0x7f,0x88,0xde,0xba, + 0x3,0x5e,0x99,0x8a,0xdf,0x90,0x8e,0xd6,0x97,0xff,0xf7,0xeb,0x57,0x3c,0x6,0xfa, + 0xe2,0x50,0xeb,0x6d,0x43,0xf5,0xb,0xf1,0x8b,0x34,0xf4,0xd5,0x2f,0xc4,0xaf,0x8c, + 0x43,0xe9,0x83,0x40,0x77,0x9a,0xd2,0x9f,0xca,0x34,0xc0,0x2b,0x71,0xfe,0xe4,0x93, + 0x27,0x46,0x7d,0x92,0xb3,0x67,0x33,0xf3,0x67,0x5b,0xb7,0x66,0x4d,0x94,0x5f,0xac, + 0x24,0xa5,0x8f,0x72,0xf5,0xaa,0xfe,0x3a,0x66,0xac,0xe,0x98,0xe3,0xff,0x20,0x9c, + 0xb1,0x3a,0x66,0x28,0x6e,0x65,0x1a,0x20,0xd4,0x37,0xf5,0xb5,0x32,0x5c,0x62,0xea, + 0x57,0x4a,0x1e,0xb0,0x76,0xe1,0x59,0xec,0x29,0x4c,0xb2,0x61,0xbe,0x95,0x86,0xf9, + 0x4f,0xfa,0x9,0xbf,0x21,0x4c,0x98,0x64,0xcf,0xae,0x1d,0x78,0xff,0x80,0x4c,0xf, + 0xc9,0x47,0x73,0x4c,0x11,0x8e,0x85,0x61,0xf1,0x85,0x17,0x73,0x40,0xd4,0xdc,0xf, + 0x73,0x66,0xe4,0x26,0xc5,0xfb,0x61,0x3e,0xb9,0xd,0x67,0x27,0x85,0xc9,0xe0,0xe1, + 0xe3,0xe3,0x43,0x21,0x21,0x21,0x16,0x27,0xc4,0x2b,0xc8,0x58,0x1e,0xf0,0x7b,0x4a, + 0x1c,0x49,0xc9,0x83,0x8,0xa7,0x7c,0xc7,0x12,0xd7,0x49,0xc9,0x83,0xa5,0xaf,0x15, + 0xe9,0x1b,0xcd,0x83,0x32,0xac,0x25,0xf3,0xa0,0xe6,0x8d,0x31,0x1e,0x98,0x2b,0x63, + 0x89,0x91,0x5,0x73,0xe4,0x41,0x99,0x3e,0x7e,0x37,0x76,0x56,0xf1,0xd3,0x28,0x99, + 0x2b,0x8f,0x49,0x49,0xdf,0xd4,0x91,0xd4,0xf4,0x45,0x38,0x63,0xf5,0x5b,0x89,0xa9, + 0x21,0x4a,0xe9,0xf4,0x2d,0xc7,0xff,0xf7,0x7d,0x67,0xbc,0xa3,0xcf,0x5f,0xd6,0x27, + 0x4f,0xc6,0xc8,0xb4,0xfc,0x25,0x7e,0x9c,0x28,0x29,0x87,0xbe,0xf4,0x93,0x33,0xce, + 0x64,0x6e,0xf9,0x95,0x7c,0x30,0x94,0x7e,0x12,0xc7,0xa9,0x12,0x4d,0x2a,0xd9,0x49, + 0x90,0xfe,0xb6,0x6d,0xdb,0xf4,0x8e,0x73,0x29,0x9f,0x2b,0xd3,0x4f,0x6c,0xf9,0x45, + 0xba,0xa2,0x1e,0xeb,0x4b,0x5f,0x90,0x3a,0x7d,0x41,0xca,0xf4,0x93,0x6a,0x93,0xd5, + 0xb2,0x9f,0xd4,0x71,0x36,0x63,0x87,0x48,0x53,0xcd,0x77,0x43,0x75,0x3f,0xb1,0xe3, + 0x74,0xc6,0x78,0xac,0x4c,0x5f,0xe8,0x40,0x73,0xca,0x6f,0x6e,0x3f,0x72,0xa3,0x46, + 0x8d,0xc,0x92,0x31,0x1b,0xa6,0x2f,0x7d,0x73,0xc6,0x9,0x8d,0xa5,0x67,0x2a,0x7d, + 0x53,0xfc,0x37,0x25,0xff,0xea,0xf4,0x85,0x1c,0x98,0x9b,0xbe,0x29,0xfe,0x9b,0x23, + 0xff,0xca,0xb4,0x95,0x3a,0xd0,0x92,0xfc,0x4f,0xca,0x38,0xa7,0x25,0xd2,0x57,0xe6, + 0x21,0x31,0xe3,0xa4,0x96,0x92,0x3f,0x65,0x1e,0xf4,0xf4,0x63,0x27,0x4b,0xfe,0xf5, + 0xe9,0x5d,0x63,0xfe,0x1f,0xe,0x43,0xef,0x9b,0x4b,0xca,0xf7,0x85,0xcd,0x4b,0x6a, + 0xfa,0x49,0xd1,0xef,0xea,0xf4,0x95,0xfa,0x30,0xb1,0xe9,0xa7,0x54,0x9b,0xcc,0x58, + 0xfa,0xca,0x3c,0x58,0xfa,0x30,0x37,0x7d,0x91,0x7,0x4b,0x97,0x5f,0x29,0xf,0xa6, + 0xd2,0x17,0x79,0x48,0x9,0x4a,0x90,0x86,0x24,0x79,0xb3,0x93,0x2b,0x23,0x27,0x76, + 0xed,0x10,0x22,0x49,0xf6,0x61,0x92,0x64,0xc3,0x48,0xa3,0x26,0xf6,0x9b,0xc6,0x47, + 0x7c,0x94,0x31,0x9e,0x6c,0xd8,0x33,0x9b,0x10,0xed,0x59,0x52,0x91,0xf8,0x2d,0x5c, + 0x41,0x51,0x8c,0x62,0x19,0xbd,0x63,0x69,0xa1,0x9f,0x2,0x63,0x45,0x7d,0x25,0x45, + 0x3f,0x45,0x59,0xa3,0x6c,0x49,0x52,0xbd,0x4c,0x21,0x4a,0xd4,0xd1,0xb9,0x73,0x67, + 0x4a,0xb,0x34,0x6c,0xd8,0x30,0x4e,0xc5,0x8a,0x15,0x33,0xbb,0xc,0x53,0xa7,0x4e, + 0xa5,0xcb,0x97,0x2f,0xa7,0x9,0x12,0xf9,0x7,0xe5,0xca,0x95,0xcb,0xac,0x32,0x4c, + 0x9c,0x38,0x91,0xbf,0x1b,0x16,0x16,0x46,0x31,0x31,0x31,0x14,0x1b,0x1b,0x9b,0x22, + 0x3a,0xc6,0xd8,0x61,0xa8,0xc,0x76,0x76,0x76,0x66,0x95,0x61,0xde,0xbc,0x79,0xfc, + 0xdd,0x9,0x13,0x26,0xe8,0x64,0x10,0x47,0x6a,0xdf,0xeb,0x2b,0x43,0x99,0x32,0x65, + 0xcc,0x2e,0x3,0x8e,0xb3,0x67,0xcf,0xea,0x74,0xa1,0xb8,0x17,0xe9,0xa4,0xf4,0xbd, + 0x21,0x1c,0x24,0x33,0xeb,0xb4,0x28,0x83,0x38,0x44,0x1a,0xa9,0x79,0x6f,0xa9,0x32, + 0xa4,0x45,0x1c,0xcc,0xd5,0x4b,0x93,0x27,0x4f,0x4e,0x33,0x38,0x28,0xf3,0x6f,0x8e, + 0x5e,0xfa,0xfc,0xf3,0xcf,0x9,0x18,0x44,0x45,0x45,0x71,0x9e,0x58,0x93,0xf4,0xe5, + 0xdf,0x54,0x19,0x90,0x7f,0x8c,0xa1,0x89,0xfc,0x9f,0x3e,0xfd,0x6b,0xa2,0x9,0xef, + 0xe1,0xfd,0xe4,0x10,0xe2,0xb8,0x78,0xf1,0xe2,0x7b,0x79,0x87,0xbe,0x77,0x70,0x70, + 0x30,0x98,0xff,0xa1,0x43,0x87,0xd2,0xc2,0x85,0xb,0x13,0xe4,0x1f,0x78,0xf6,0xe9, + 0xd3,0x47,0x77,0xd,0x5b,0x29,0xae,0xbb,0x76,0xed,0xaa,0xbb,0x6e,0xd1,0xa2,0x5, + 0xbf,0x56,0xea,0xc5,0xa4,0x12,0xd2,0xd7,0x97,0xff,0x11,0x23,0x46,0x18,0xe5,0xbf, + 0x39,0xf9,0x37,0x76,0xad,0xac,0x87,0x12,0xbd,0x9f,0x27,0x7d,0x64,0xc9,0xfc,0xf, + 0x1e,0xfc,0x39,0x6b,0xe3,0x59,0x26,0xff,0xe6,0xe4,0xd3,0x50,0x38,0x43,0xf9,0x1f, + 0x39,0x72,0xa4,0x49,0xfe,0x7f,0xf5,0xd5,0x62,0xbd,0xf5,0x57,0xc8,0xb6,0x29,0x12, + 0xf9,0xc7,0x59,0x49,0x86,0xf2,0xaf,0x2f,0x9c,0xb1,0xfc,0x9b,0x92,0xff,0x95,0x2b, + 0x97,0x27,0xc8,0xbf,0x32,0x6e,0x7d,0xf9,0x45,0xb9,0xce,0x9d,0xbb,0xf4,0x5e,0xfe, + 0x4d,0xe5,0xd3,0x58,0xb9,0x52,0x33,0xff,0x86,0xf8,0x9f,0x1c,0x4a,0xaa,0xfc,0x98, + 0x9a,0x8f,0x86,0xfc,0x99,0x9a,0x8f,0xa6,0x2e,0x73,0x52,0x8,0x79,0x4f,0x6c,0xfd, + 0xb5,0xe4,0x7c,0xb7,0xa4,0xd8,0xd,0x35,0x25,0x2e,0xff,0x96,0x9f,0x4f,0x27,0x78, + 0x98,0x1c,0xfa,0xe5,0x97,0x5f,0x12,0xe4,0x1f,0xfd,0xa0,0x6a,0xf9,0x4f,0xa9,0xf9, + 0x7a,0xfd,0xfa,0xf5,0xb3,0x8,0xa9,0x71,0x50,0xf3,0x3f,0xa5,0xe6,0x3,0xa2,0xfd, + 0x4,0xb2,0xb5,0xb5,0x4d,0x14,0x89,0x77,0xc4,0x59,0x59,0x86,0xbe,0x7d,0xfb,0x52, + 0x8e,0x1c,0x39,0xc,0xe6,0x5f,0xf4,0x17,0x9b,0x9a,0x6f,0xa8,0x2f,0x8c,0x3a,0xff, + 0xd5,0xab,0xd7,0x64,0x54,0x9d,0xaa,0x55,0xab,0xc6,0xcf,0xfa,0xae,0xd5,0xe4,0xe2, + 0xe2,0xa2,0xa3,0xaa,0x55,0xab,0xf2,0xb3,0xba,0xc,0xf9,0xf3,0xe7,0x37,0x99,0x7f, + 0x53,0xf3,0x19,0xf5,0x85,0x51,0xe7,0xdf,0x12,0x3e,0xe8,0x98,0x31,0x63,0xde,0x2b, + 0x43,0xd1,0xa2,0x45,0xcd,0xca,0xbf,0xb1,0xf9,0x92,0xfa,0xc2,0xa8,0xf3,0xff,0xf6, + 0xed,0x5b,0xb3,0x28,0xa1,0x2d,0x3c,0x4d,0x67,0xce,0x9c,0xe1,0xe7,0xe0,0xe0,0x60, + 0x9e,0x7f,0x65,0x19,0xd4,0x79,0xd7,0x97,0x7f,0xf5,0x98,0x83,0xa1,0xf9,0x98,0xca, + 0x30,0xfa,0xe6,0x63,0x2,0x1b,0x53,0x84,0xfc,0x9f,0x3c,0x79,0x92,0xd9,0xef,0x73, + 0x3c,0xff,0xc2,0x7e,0x29,0xf9,0xaf,0x2c,0x83,0x64,0xa0,0x1d,0x99,0x12,0xf3,0x3d, + 0x1b,0x36,0x6c,0x68,0x94,0x44,0xfe,0x4f,0x9d,0x3a,0xc5,0xf3,0x8a,0x63,0xc6,0x8c, + 0x19,0x9c,0x44,0x19,0x94,0xf9,0x7,0x69,0x34,0x1a,0x83,0xb6,0xd7,0x92,0xf3,0x49, + 0x4d,0xe5,0x5d,0xe4,0xff,0xdd,0xbb,0x77,0x3a,0x5e,0xe3,0x80,0xec,0x18,0xcb,0xbf, + 0x21,0xfe,0xe3,0xb0,0xd4,0x7c,0x55,0x73,0xf2,0x2e,0xf2,0x2f,0xda,0xee,0xa0,0x5f, + 0x7f,0xfd,0x55,0xd7,0x6,0xd6,0x27,0x3f,0xc6,0xf2,0x6f,0xa9,0xf9,0xb0,0xea,0x3c, + 0xd6,0xaf,0x5f,0x3f,0x1,0xe9,0xe3,0x7f,0x68,0x68,0xa8,0x51,0xfd,0x63,0x2a,0xff, + 0x49,0x99,0x6f,0x6b,0x2e,0x8f,0x5,0x35,0x68,0xd0,0x80,0x93,0xbe,0xfc,0x43,0x66, + 0x44,0x7e,0x8d,0xd5,0x5f,0x73,0xf2,0xf,0x3f,0xd3,0x98,0xfd,0x4a,0x6a,0xfe,0xcd, + 0x95,0x7f,0x53,0xf5,0xd7,0x74,0xfe,0x87,0xe8,0xb5,0x4d,0xea,0xf9,0xc2,0xfa,0xf2, + 0xa3,0xd4,0x45,0xca,0xe7,0x8d,0x1a,0x25,0xc,0xd7,0xa4,0x49,0x93,0x4,0xf2,0x2f, + 0x74,0x67,0x52,0xeb,0xaf,0x3e,0xfe,0x9b,0x33,0x1f,0x59,0x9d,0x77,0xb5,0xf,0xdd, + 0xb0,0x61,0x63,0xbd,0xf9,0x6f,0xda,0xb4,0xa9,0xde,0xfa,0x2b,0xca,0x90,0xd8,0xfa, + 0xab,0x6f,0xbe,0xb3,0x21,0xfb,0x85,0xfc,0x9b,0x3b,0xdf,0xb9,0x41,0x83,0x26,0xda, + 0xfc,0x37,0xd0,0x9e,0x1b,0x51,0xbd,0x7a,0xf5,0xf4,0xca,0x8f,0xb2,0xe,0x24,0xa7, + 0xfe,0x5a,0x72,0x3e,0xb5,0xb9,0xf2,0x8f,0xbc,0xeb,0xa3,0xc4,0xe8,0x4f,0x4b,0xcf, + 0xd7,0x4e,0x4c,0xfd,0xb5,0x44,0xfe,0x95,0x65,0x30,0x36,0x1f,0x1c,0xe9,0x9a,0x9a, + 0xf,0x9e,0x58,0xfb,0x85,0xbc,0xa,0xbd,0xa9,0x24,0x3c,0x4f,0x4c,0xfe,0x45,0x19, + 0xc,0xcd,0x37,0x57,0xa6,0x6d,0xae,0xfd,0x32,0x97,0xff,0x4a,0xdd,0x9,0xb2,0xb7, + 0xb7,0x4f,0x52,0xfe,0xc5,0x31,0x75,0xea,0x1c,0x8a,0x88,0x88,0xa0,0xbd,0x7b,0xf7, + 0xf2,0x77,0x2c,0xa1,0xef,0xf5,0xe5,0x1f,0x63,0x6e,0xf0,0x95,0x5f,0xbd,0x7a,0xa5, + 0xab,0xb3,0x42,0x7f,0x26,0x27,0xff,0xe3,0xc6,0xd,0x49,0x90,0xff,0x94,0x20,0x21, + 0x3f,0xf0,0x9f,0x95,0xf9,0x17,0x76,0x38,0x39,0xf9,0x9f,0x38,0x71,0x92,0x2e,0xff, + 0xe6,0xf8,0xf1,0x49,0xa5,0xd7,0xaf,0x5f,0xf3,0x3e,0x6,0xe4,0x5f,0x4d,0xc9,0xcb, + 0xff,0x44,0x5d,0xfe,0xd5,0x14,0x14,0x64,0x98,0xf4,0x85,0x7,0xed,0xd9,0xb3,0x47, + 0xfb,0x6e,0x10,0xbf,0xde,0xbd,0x7b,0x37,0x1d,0x3a,0x74,0x88,0x8e,0x1f,0x3f,0x4e, + 0x7,0xf,0x1e,0xa4,0x23,0x47,0x8e,0xd0,0xb1,0x63,0xc7,0xe8,0xc4,0x89,0x13,0xba, + 0x36,0x58,0x72,0xf2,0x8f,0x23,0x20,0x20,0x80,0x97,0xc1,0xda,0x94,0xd4,0xfc,0x8b, + 0x32,0x80,0x37,0xd6,0x24,0x65,0x19,0x12,0x9b,0x7f,0x1c,0x18,0xf,0xfb,0xe1,0x87, + 0x1f,0xd2,0x44,0x19,0x92,0x92,0x7f,0x1c,0x81,0x81,0x81,0x56,0xc7,0xa1,0x6d,0xdb, + 0xb6,0x49,0xca,0xbb,0x38,0xa6,0x4f,0x9f,0x4e,0xa9,0x49,0xb0,0x3,0x18,0xcb,0x85, + 0x2e,0x99,0x39,0x73,0xa6,0xde,0xbc,0x87,0x30,0xb2,0x67,0x3a,0xd8,0x87,0x9d,0x6d, + 0xe4,0xb1,0x57,0x6c,0x97,0x22,0x87,0xd5,0x3e,0xc7,0x5e,0x2a,0x8,0x27,0xb9,0x12, + 0x85,0xe1,0xec,0x44,0x14,0x8e,0xb3,0x3,0x51,0x94,0x24,0x47,0xc0,0xef,0x6d,0x92, + 0x7f,0xe,0xd3,0x9e,0x43,0xb4,0x67,0x1f,0x73,0xce,0xf6,0xf1,0xe7,0x10,0xed,0x39, + 0x4c,0x75,0xe,0x51,0x85,0x33,0xf7,0xac,0x8e,0x2f,0x5c,0x7b,0x8e,0x35,0x71,0x7e, + 0xa7,0x3d,0x93,0x38,0xfb,0x68,0xcf,0x21,0x32,0xdf,0x78,0x84,0x4e,0xf2,0x7a,0x32, + 0x37,0x89,0xcf,0x17,0xd3,0xcd,0xd3,0x92,0x9a,0x48,0x86,0x8e,0x14,0xb3,0xc5,0xa9, + 0x44,0x49,0x3e,0x52,0x62,0xde,0x60,0x6a,0x91,0x62,0x6e,0x62,0x92,0x79,0x90,0xde, + 0xcb,0x9f,0x5c,0x1e,0xa4,0xe7,0xf2,0x5b,0x82,0x7,0xca,0xf2,0xa7,0xa7,0x43,0x5d, + 0xfe,0xa4,0xf2,0x40,0x59,0x7e,0x55,0x1c,0x3c,0x9d,0xb4,0xfa,0x4c,0x9f,0xc,0x24, + 0x97,0x7,0x22,0xd,0x65,0x5c,0x69,0xf9,0x99,0xa5,0x79,0xa0,0x94,0x2d,0x65,0x9a, + 0x69,0xf9,0x59,0x4a,0xc9,0x81,0x38,0x24,0x85,0xfc,0xa5,0xd5,0x67,0x19,0x75,0x21, + 0xa3,0x2e,0xa4,0xa4,0x1c,0x24,0x45,0x26,0xad,0xf5,0x4c,0x5f,0xf9,0x93,0xc2,0x3, + 0x21,0x3,0xd6,0xf6,0x6f,0x92,0xeb,0x17,0x25,0x95,0x7,0x29,0x59,0xfe,0x94,0x38, + 0xcc,0x29,0xbf,0x82,0x7,0x49,0x2a,0x3f,0xde,0x55,0xea,0x9a,0xc4,0xde,0xeb,0xf3, + 0xb1,0x2c,0x45,0xea,0xbc,0xa6,0xf9,0xf2,0xe3,0xef,0xc0,0x7f,0xb7,0xfc,0xc3,0xd9, + 0x9f,0x44,0xff,0xdd,0xf2,0x1b,0x2b,0x87,0xa1,0xc3,0xda,0xe5,0xb7,0x94,0x5e,0x36, + 0x56,0xce,0xa4,0xf0,0x26,0xb5,0xca,0xaf,0x8e,0x2b,0x39,0xe5,0x37,0x91,0x3f,0xbd, + 0x64,0xec,0x9d,0xf4,0x56,0xfe,0xc4,0x96,0xd1,0x9c,0x7a,0xf3,0x21,0x94,0x3f,0xa9, + 0x64,0xb9,0xf2,0x1b,0xdb,0x47,0x5c,0x26,0x65,0xf9,0x4d,0xcd,0x79,0xd7,0xb7,0x7, + 0x4e,0xda,0x2d,0xbf,0xf1,0x7d,0xcf,0xe3,0x29,0x7e,0xaf,0x1f,0x53,0x73,0xe6,0xd5, + 0x73,0x6a,0xd2,0x6e,0xf9,0xe5,0xb2,0x1b,0x9b,0xa7,0xa2,0x9c,0xb3,0xa8,0xdc,0x8f, + 0xd9,0x1c,0x52,0xf2,0xc1,0x58,0x1d,0x4f,0x2a,0xe9,0xab,0x67,0xe6,0x97,0xdf,0xfc, + 0xb2,0x2b,0x79,0x60,0x6e,0xd9,0xd5,0xfb,0x80,0x58,0xda,0xa6,0x1a,0xd2,0x33,0xe6, + 0x94,0xdf,0xd8,0xfc,0x24,0xf5,0x3c,0x1f,0x63,0x3c,0x30,0x34,0xef,0x27,0xad,0xf1, + 0xc0,0x9c,0xf2,0x8b,0x3a,0xae,0xde,0xdf,0x44,0x5f,0x38,0x51,0x26,0x43,0xf3,0x86, + 0xd4,0x3c,0x48,0xc9,0x3a,0xa0,0xaf,0x3e,0x24,0xb6,0xfc,0xa2,0xec,0xea,0xfd,0x85, + 0xc4,0x1e,0x3f,0x6a,0x1e,0x28,0x75,0x9b,0x3a,0xbc,0x3e,0x1e,0x24,0x67,0x2f,0xae, + 0xa4,0x90,0x9a,0x7,0xe6,0x96,0x5f,0xec,0x9,0x2b,0xf6,0xa9,0x31,0xc4,0x3,0xf5, + 0x77,0x12,0xd4,0xe1,0xd3,0x42,0xf9,0x95,0x3c,0x48,0x4c,0xf9,0xc5,0x5c,0x5d,0x90, + 0x28,0x93,0xb1,0xf2,0xeb,0xb,0x6f,0xa8,0xfc,0x29,0x2d,0xff,0xaa,0xf2,0xaa,0x7d, + 0xf,0xab,0x97,0x3f,0x35,0x75,0x9f,0x52,0xe,0x12,0x2b,0xff,0xca,0xb9,0xce,0xe6, + 0xc8,0xbf,0x3a,0x7c,0x5a,0x28,0xbf,0xca,0xe7,0x92,0xcc,0x29,0xbf,0x7a,0xef,0x75, + 0xf1,0xad,0xb,0x43,0xe5,0x57,0xef,0xc3,0x2e,0xbe,0xbd,0x62,0xa8,0xfc,0x49,0x3d, + 0x2c,0x69,0xfb,0xcc,0xe1,0xc1,0xfb,0x14,0x1f,0x4e,0x5d,0x26,0x7d,0xa4,0xf6,0x11, + 0x8d,0xed,0x85,0x66,0x8a,0xf4,0x95,0x5f,0x9f,0xae,0x4b,0x6e,0xf9,0xe3,0x79,0xf0, + 0x3e,0x29,0xc3,0xe8,0xf3,0x6f,0xd5,0x64,0xc8,0xff,0xb1,0x44,0xf9,0x71,0xe8,0xd3, + 0x73,0x89,0x2d,0xbf,0x21,0x1e,0x18,0x23,0x43,0x6b,0xad,0x8c,0x91,0x98,0x7,0x9e, + 0x94,0xb2,0x1b,0x2a,0xbf,0xb2,0xbc,0xc9,0x29,0xbf,0xe0,0x81,0xf9,0xfe,0xbf,0x47, + 0xa2,0x78,0xa0,0x9c,0x7,0x6f,0xc9,0xf2,0x2b,0x9f,0x59,0x12,0x7f,0x7d,0xf3,0xfc, + 0xf5,0xf9,0xc8,0xc6,0xd6,0xac,0xa9,0xe7,0xff,0x27,0xa7,0xec,0x86,0xea,0xbf,0x21, + 0xdd,0x68,0x9,0xfd,0x67,0x8e,0xff,0x6f,0x6a,0xdd,0x9b,0x25,0xca,0x6d,0xac,0xfc, + 0x96,0xd2,0xff,0x49,0xf1,0xff,0x45,0x58,0x4b,0x94,0xcd,0x5a,0xfa,0x3f,0xb9,0xfe, + 0x7f,0x6a,0xf2,0x20,0x25,0xf4,0x7f,0x72,0xfd,0x5f,0x73,0xcb,0x6f,0x6a,0x1f,0x58, + 0x6b,0xe9,0xff,0xd4,0x28,0xbf,0x39,0xfb,0xd0,0x26,0xb5,0xfc,0xc9,0xd5,0xff,0xc9, + 0xf5,0xff,0xe5,0xb6,0xac,0x79,0xe5,0x4f,0x9,0xff,0x2f,0xb9,0xfa,0x3f,0x29,0xfe, + 0xbf,0xbe,0xfe,0xf,0x63,0x32,0xaf,0xef,0x5b,0x73,0x96,0x2a,0x7f,0x72,0xf5,0xbf, + 0x31,0xbb,0x66,0xca,0xff,0x17,0xfb,0x1d,0x1b,0xf2,0xff,0xf5,0xf9,0xc0,0xe9,0xa1, + 0xfc,0xe6,0xfa,0xff,0xa2,0xfc,0x86,0xfc,0x7f,0x63,0x7d,0xc0,0x69,0xa5,0xfc,0x82, + 0x7,0x89,0xe9,0xfb,0x16,0x65,0xc7,0x7b,0xd6,0xf4,0xff,0x2d,0xdd,0xfe,0x4d,0x4c, + 0xfb,0x47,0xb9,0x66,0xd7,0x5a,0xfe,0xbf,0xa5,0xca,0x2f,0x78,0x60,0x6a,0x9d,0xaf, + 0x7a,0xcd,0xaf,0xb2,0x7f,0x23,0xb5,0xfd,0x7f,0xc9,0xcc,0xfe,0xce,0xc4,0xb4,0xff, + 0x94,0x7c,0x30,0x45,0x88,0x2b,0x3e,0x5f,0xa9,0xef,0xff,0x2b,0x7d,0x3f,0x7d,0xfd, + 0x7c,0x49,0x2d,0xbf,0xfa,0xc0,0x7b,0x86,0xfc,0x6e,0x4b,0x94,0x29,0x39,0xe5,0x57, + 0xcb,0x7b,0x46,0xf9,0x53,0xb7,0xfc,0xa9,0x4d,0xc6,0xca,0x9f,0x54,0xff,0x37,0xa9, + 0xe5,0xd7,0x17,0x7f,0x4a,0x93,0xba,0xfc,0xfa,0x8e,0xd4,0x2a,0x7f,0x5a,0xa7,0x8c, + 0xf2,0x5b,0xa6,0xfc,0x4a,0x1e,0xa4,0xa7,0xc3,0x92,0xe5,0x17,0x3c,0xb0,0x36,0xa6, + 0x89,0x21,0x7d,0x3c,0x48,0x4e,0xf9,0x3f,0x4,0x1e,0x24,0xb7,0xfc,0xe9,0x9d,0x7, + 0x96,0x28,0x7f,0x7a,0xe6,0x81,0xa5,0xca,0x2f,0x78,0x90,0xde,0x48,0x6f,0x39,0xf8, + 0x7f,0x6f,0xed,0x6f,0xae,0xda,0xb3,0x93,0xf6,0x2c,0xf6,0xb3,0xb5,0xd7,0x9e,0x6d, + 0xe4,0xfd,0xb,0xf8,0xf7,0x6b,0xf9,0x21,0xef,0x5f,0xc0,0x22,0x8,0xd7,0x46,0x10, + 0xa5,0x8d,0x20,0x56,0x1b,0x81,0xf6,0x6c,0x6f,0xa9,0xb3,0x36,0x1d,0x7b,0x6d,0xba, + 0xf6,0xda,0x7c,0xd8,0xfb,0x68,0xcf,0x52,0xd2,0xce,0xe,0xe2,0xec,0xa3,0x3a,0x6b, + 0xe3,0x77,0x8,0x53,0xdd,0xab,0xc3,0xa9,0xe3,0x31,0xf7,0x6c,0x28,0x3d,0x6d,0x39, + 0x1d,0x28,0xb1,0x67,0x1f,0xed,0x39,0x44,0x7b,0xe,0xd3,0x9e,0xc3,0xb5,0xe7,0x28, + 0xed,0x59,0x66,0xa8,0x13,0xf6,0x89,0x68,0xc5,0x68,0x91,0x14,0xbf,0x4f,0x44,0xdf, + 0x4e,0xd2,0x7b,0x47,0xb6,0x6c,0x39,0xac,0xe2,0xf3,0xa7,0x2,0x5d,0x64,0x54,0xe0, + 0xfd,0x12,0x27,0xee,0x48,0x6f,0x3a,0xd1,0x1c,0x42,0x99,0xdc,0xdc,0xdc,0xc0,0xa3, + 0x7,0xc9,0xe5,0xd1,0x87,0xc8,0x1f,0x6f,0x6f,0x6f,0xce,0x23,0x57,0x57,0xd7,0x64, + 0xcb,0xd1,0x87,0xca,0x1f,0xc1,0xa3,0xe4,0xca,0x91,0xe0,0xcf,0xad,0x5b,0xb7,0xe8, + 0xde,0xbd,0x7b,0xe9,0x96,0x6e,0xde,0xbc,0xc9,0xf7,0xb5,0x45,0x59,0xf0,0x3d,0x10, + 0x25,0x8f,0x92,0x23,0x47,0x78,0x1f,0x7b,0xae,0x45,0x47,0x47,0xf3,0xbd,0x7,0x1f, + 0x3c,0x78,0x40,0x57,0xaf,0x5e,0xe5,0x74,0xe7,0xce,0x1d,0x7a,0xfe,0xfc,0x79,0x82, + 0x67,0x7f,0xfd,0xf5,0x98,0x7f,0x5b,0xb,0x61,0xff,0xfe,0xfb,0x6f,0x45,0xd8,0xbb, + 0x7c,0xdf,0x39,0x3c,0x47,0x18,0xf5,0x73,0xec,0xeb,0x8c,0x32,0xe0,0x19,0xce,0x57, + 0xae,0x5c,0xe1,0xf1,0xbc,0x7e,0xfd,0x46,0x17,0x16,0xe9,0x88,0x38,0x12,0xc6,0x2d, + 0xe7,0x43,0x19,0xef,0xfd,0xfb,0xf7,0xe9,0xc2,0x85,0xb,0xfc,0x37,0xf1,0xcc,0x3f, + 0x20,0x80,0xd6,0xac,0x59,0x43,0x3b,0x77,0xee,0xd4,0xf1,0x27,0xb9,0x72,0xc4,0xde, + 0x7f,0xb1,0x76,0xed,0x5a,0xfa,0xee,0xbb,0xef,0x28,0x77,0xee,0xdc,0xfc,0x5b,0x3e, + 0x22,0xde,0x5d,0xbb,0x76,0x53,0xcf,0x5e,0x3d,0x69,0xf3,0xe6,0x2d,0xba,0x67,0xab, + 0xbe,0xfd,0x96,0x3c,0x3a,0x78,0xd0,0xdc,0xb9,0x73,0xf9,0x5e,0xa9,0x4b,0x97,0x2e, + 0xe5,0xf4,0xcd,0x37,0xdf,0x50,0xbb,0xf6,0xed,0x68,0xd6,0xac,0x59,0xb4,0x7f,0xff, + 0x81,0xf7,0x9e,0x7f,0xf9,0xe5,0x97,0xf4,0xfd,0xf7,0x72,0xf8,0x8d,0x1b,0x37,0xd2, + 0xa8,0xd1,0xa3,0x68,0xe0,0xc0,0x81,0x3c,0x8d,0x95,0x2b,0xbf,0xe1,0xcf,0xb7,0x6f, + 0xdf,0xce,0xc3,0xfa,0xf9,0xf9,0xf1,0xb8,0x45,0x9a,0xdb,0xb7,0xff,0xc8,0x9f,0xef, + 0xdc,0xb5,0x4b,0x17,0x2f,0xf2,0x81,0xef,0xa7,0xe0,0x7d,0xf1,0x6c,0xce,0x9c,0x39, + 0x54,0xb9,0x4a,0x65,0x5a,0xbd,0x7a,0x35,0x6d,0xd9,0xb2,0xe5,0x3d,0x1e,0x25,0x45, + 0x8e,0xd8,0xbb,0xae,0x78,0x7f,0xdd,0xba,0x75,0xf4,0xe3,0x8f,0x3f,0xd2,0xb4,0x69, + 0xd3,0x79,0xf9,0x40,0x87,0xf,0x1f,0xa1,0x6e,0xdd,0xbb,0xd1,0xd1,0xa3,0x47,0x19, + 0x56,0x17,0xe9,0xdc,0xb9,0x5f,0x99,0xac,0xfd,0x42,0xa3,0x47,0x8f,0xa6,0x63,0xc7, + 0x8e,0xf3,0x3c,0x5d,0xbe,0x7c,0x85,0x5f,0xe3,0xb7,0xe1,0x23,0x86,0xd3,0xfa,0xf5, + 0xeb,0x69,0xd5,0xaa,0x6f,0xe9,0xfc,0xf9,0xb,0xef,0x3d,0xf,0xe,0xe,0xa1,0x13, + 0x27,0x4e,0xf2,0xe7,0x27,0x4f,0x9d,0xa2,0xb9,0xf3,0xe6,0xf2,0x32,0x21,0xc,0x9e, + 0x61,0xdf,0x70,0xec,0x8f,0xb7,0x63,0xc7,0x4e,0x1e,0x1e,0x71,0xe3,0x37,0xa4,0x8d, + 0x34,0x91,0x1f,0x11,0x2f,0x9e,0x21,0x2c,0xae,0xcf,0x9c,0x9,0xe5,0x67,0xc4,0x3d, + 0x6d,0xfa,0x34,0xaa,0x51,0xa3,0x6,0xe3,0xdb,0xae,0x4,0x3c,0x4e,0x8e,0x1c,0x79, + 0x79,0x79,0xb9,0xa,0x39,0xc2,0xbe,0x77,0x90,0xa1,0x53,0xa7,0x4e,0xf3,0xbc,0xfd, + 0xfc,0xf3,0xcf,0x1c,0x6f,0xe0,0x84,0xbc,0x61,0x5f,0xb7,0xef,0xbf,0xff,0x9e,0xcb, + 0xc3,0xec,0xd9,0xb3,0x9,0xdf,0xe3,0x43,0xb9,0xc5,0xde,0xbb,0x8,0x8b,0x6f,0x5e, + 0x20,0xef,0x88,0x43,0xf9,0x7c,0xd8,0xf0,0x61,0x4c,0x4e,0xd7,0xe8,0xc2,0x43,0x6e, + 0x20,0x13,0xf8,0x86,0x93,0x32,0x2c,0xd2,0x42,0xd8,0x4d,0x9b,0x36,0xb3,0xf4,0x8e, + 0xd2,0xc1,0x83,0x87,0x58,0x3e,0xf6,0xd0,0xa2,0xc5,0x8b,0x79,0x39,0xc5,0xfb,0x1b, + 0x37,0x6e,0xe2,0x61,0x51,0xee,0xa3,0x47,0x83,0xf9,0xb3,0xf5,0xeb,0x37,0xf0,0x3a, + 0xd6,0xba,0x75,0x6b,0xce,0x23,0x13,0x72,0xe4,0x60,0x8a,0x37,0xa,0x39,0x72,0x61, + 0xf4,0xf4,0xeb,0xaf,0xbf,0xa6,0x9f,0x7e,0xfa,0x89,0x7f,0xfb,0x40,0xe4,0x63,0xcf, + 0x9e,0xbd,0x1c,0x17,0xc4,0x8d,0x7d,0x22,0xf1,0xc,0xf2,0x5,0x4c,0xbd,0xbc,0xbd, + 0x74,0x75,0x1e,0xcf,0xf7,0xed,0xdb,0xc7,0x65,0xce,0xcf,0xdf,0x9f,0xe7,0x55,0xf9, + 0xbc,0x73,0x97,0xce,0xb4,0x7c,0xf9,0x72,0x1e,0x9f,0xe0,0xc5,0x96,0xad,0x5b,0xf9, + 0x73,0xa4,0x25,0xc2,0x1e,0x3a,0x74,0x98,0x3f,0x43,0x3d,0xc1,0x5e,0x94,0xca,0x3c, + 0x8c,0x1b,0x37,0x8e,0xd7,0x53,0xe0,0xb4,0x7f,0xff,0x7e,0xce,0xbf,0xc1,0x43,0x6, + 0x73,0xfe,0xa8,0xd3,0xea,0xd8,0xb1,0x23,0x7d,0xcb,0xea,0x21,0x9e,0xa3,0xce,0x2a, + 0x79,0xe4,0xe1,0xe1,0x91,0xe8,0xba,0xc6,0xe4,0xa8,0x18,0x78,0xb4,0x6c,0xd9,0x32, + 0xce,0xa3,0x5e,0xbd,0x7a,0x51,0x50,0xd0,0x3e,0x2e,0xbb,0xd7,0xae,0x5d,0x67,0x78, + 0xaf,0xe4,0x32,0x8e,0x3d,0x33,0xf1,0xc,0xf5,0x6e,0xc3,0x86,0x8d,0xac,0x3e,0xad, + 0xe2,0x75,0x53,0xd4,0x91,0x20,0x96,0x3f,0xe8,0x9d,0x95,0x8c,0xf6,0xee,0xd,0xd2, + 0x3d,0xdf,0xb2,0x65,0x2b,0x97,0xc9,0x2f,0xbe,0xf8,0x82,0x3f,0x13,0xf5,0x4,0xcf, + 0x17,0x2d,0x5a,0xa4,0xb,0x7b,0xfa,0xf4,0x19,0xfe,0x6c,0x3b,0x8b,0x13,0x3c,0x16, + 0x75,0x12,0x79,0xc0,0x73,0xc8,0xe6,0xa6,0x4d,0x9b,0x74,0x75,0xf,0xbc,0x41,0x9d, + 0xc4,0x3e,0x9e,0xca,0xb4,0x96,0x2f,0x5f,0x41,0xbd,0x7b,0xf7,0xe6,0x3c,0xb3,0x94, + 0xce,0x56,0xcb,0x51,0xa3,0x46,0xae,0x3a,0xac,0x21,0x27,0xd0,0x8b,0xc0,0xb,0xf5, + 0x1,0xfa,0x7,0x75,0x6c,0xe9,0xd2,0x65,0x5c,0x67,0x43,0xd6,0x85,0xe,0x6,0x2f, + 0xa1,0x83,0xfb,0xf5,0xef,0xa7,0xb,0x2b,0xf4,0x2a,0xc2,0x42,0x5e,0xde,0xd3,0xcb, + 0xfe,0x7e,0xef,0xe9,0x70,0xbc,0xf,0x59,0x55,0x87,0x45,0xf9,0xd4,0x3a,0x1c,0x32, + 0x83,0x3a,0x27,0xe2,0x80,0x1e,0x1c,0x3c,0x78,0x30,0x35,0x6e,0xd2,0xd8,0xa0,0x1c, + 0x25,0x45,0x67,0xab,0xe5,0x8,0x3a,0x5b,0xe8,0x50,0xa1,0x17,0xef,0xde,0xbd,0x4b, + 0x97,0x2e,0x5d,0xe6,0xcf,0x81,0x2f,0xea,0xda,0xd5,0xab,0xbf,0xd1,0xef,0xbf,0xff, + 0xc1,0x9f,0x81,0x50,0x77,0x10,0x16,0xcf,0x44,0x58,0xa1,0xdf,0xf1,0xec,0xca,0x95, + 0xab,0xfc,0x19,0xf4,0x1a,0xea,0xe,0x74,0x85,0xfe,0xf7,0x7f,0x4f,0x10,0x16,0xef, + 0x63,0xf,0xde,0x1b,0x37,0x7e,0x7f,0x4f,0x87,0xe3,0xb9,0x32,0x8e,0xc5,0x4c,0x67, + 0x7d,0xbd,0xf2,0x6b,0x2a,0x5b,0xb6,0x2c,0xf7,0x8d,0x4,0x4f,0x95,0xfd,0x17,0x49, + 0x94,0x23,0x77,0xc4,0xf3,0xdb,0x6f,0xbf,0xf1,0xef,0x20,0x8,0x1f,0xc,0x74,0xfb, + 0xf6,0x1d,0xfa,0xf7,0xdf,0x7f,0xd9,0xf5,0x2d,0x6e,0x3b,0xf0,0x3b,0xf6,0xaa,0xc5, + 0xb3,0xa7,0x4f,0x9f,0x72,0xbf,0x4,0xcf,0x2f,0x5e,0xbc,0xc4,0xcf,0xca,0xb0,0xb2, + 0xfd,0x91,0xc3,0x3e,0x7a,0xf4,0x88,0x3f,0xc3,0xfe,0xc2,0xe0,0x31,0xca,0x65,0xe8, + 0x7d,0x65,0x58,0xd4,0xa7,0xc7,0x8f,0x1f,0xf3,0xe7,0x61,0x61,0xf7,0xb5,0xcf,0xcf, + 0xe9,0x9e,0x23,0x8e,0x5f,0x7f,0x3d,0xcf,0x9f,0xa3,0xce,0x81,0x87,0xf0,0x8f,0xc0, + 0x1f,0xe8,0x6c,0x7d,0x7d,0x3c,0x5a,0x39,0xa,0x36,0x97,0x3f,0xec,0x1d,0x57,0xbc, + 0x7,0x5f,0x2d,0xa5,0xda,0x1,0xf8,0xde,0xa,0xf8,0x9f,0xd2,0x4,0x7d,0x24,0xd2, + 0x34,0xc4,0x1f,0x50,0x81,0x2,0x5,0xc0,0xa3,0xba,0xc9,0xe1,0xf,0xe2,0x87,0x1f, + 0x0,0xbb,0x22,0x9e,0xa1,0x6e,0x63,0xf,0xe4,0xc4,0x84,0x1,0x41,0x9f,0x1,0xb7, + 0x94,0x24,0xcc,0x61,0x4,0x8f,0xcc,0xe1,0x8f,0xb6,0x9e,0x6d,0x4b,0xe,0x7f,0x10, + 0x7,0x8,0xba,0x49,0x3c,0x63,0xc1,0x49,0xd9,0xce,0x35,0x27,0xc,0x8,0x3c,0x94, + 0x52,0xb8,0x1f,0x8,0x3c,0x4a,0xef,0xfc,0xd1,0x14,0x95,0x28,0xfb,0x39,0x89,0x72, + 0xac,0xce,0xe0,0x8f,0x3e,0xfe,0x38,0x38,0xe6,0xa4,0x31,0xbb,0x7,0x50,0xd6,0x3d, + 0x19,0xfc,0x49,0x4c,0xfd,0x82,0xbe,0x44,0x5f,0x5,0xe2,0x31,0x44,0x53,0xa6,0x4c, + 0x49,0x53,0xfc,0xb1,0xa4,0x7e,0x16,0xfc,0xc1,0xb7,0x1b,0xf0,0x9d,0x39,0xf5,0xde, + 0xf5,0x48,0x1f,0xfb,0x61,0x3b,0x39,0x39,0xe9,0xa5,0x3a,0x75,0xea,0x70,0x5f,0x6, + 0x7b,0x67,0xab,0xdf,0x85,0xef,0x6f,0xd,0xfe,0xc0,0xbf,0x52,0xe2,0x87,0xb6,0x45, + 0x52,0xed,0xbb,0xe0,0x4f,0xa1,0x42,0x85,0xa8,0x77,0x9f,0xde,0x7a,0xa9,0x66,0xad, + 0x9a,0x6,0x65,0x23,0x73,0xe6,0xcc,0xe4,0xee,0xe1,0xae,0xf7,0xbd,0x1,0x3,0x7, + 0xa4,0x28,0x7f,0x44,0xbf,0x7,0xf8,0x3,0x3f,0x45,0x10,0xfc,0x76,0x65,0x9c,0x72, + 0x7b,0x3a,0x38,0x49,0x4,0xfb,0x2e,0xca,0xea,0xec,0xec,0x4c,0xe5,0xca,0x97,0x4b, + 0x40,0xe8,0xcb,0x41,0x5b,0x2,0x67,0xf5,0x6f,0xa0,0x7a,0xf5,0xeb,0xf1,0xdf,0xf5, + 0xfd,0x56,0xc8,0xb1,0x90,0x15,0xf9,0xe3,0xad,0x25,0xcb,0xf1,0xc7,0x10,0x39,0x39, + 0x3b,0x51,0x8d,0x9a,0x35,0xc,0x52,0xe1,0x22,0x85,0xad,0xa2,0x7f,0x46,0x8c,0x98, + 0xe1,0x3e,0x68,0xd0,0x64,0xe6,0x5f,0x6d,0xa5,0xba,0x75,0x17,0x52,0xf1,0xe2,0x6b, + 0xa9,0x78,0xb1,0x9d,0x54,0xa2,0xc4,0x6,0xaa,0x5f,0x7f,0x9,0xd,0x1b,0x36,0x83, + 0xc5,0xe9,0xfb,0x1e,0x7f,0xf6,0xee,0xdd,0x4e,0x2b,0x56,0x8c,0x65,0xed,0xd6,0x6, + 0x34,0x7c,0x84,0x86,0xc6,0x8c,0xd5,0xd0,0xd8,0x71,0x1a,0x9a,0x38,0xc9,0x86,0xe6, + 0xce,0xab,0x49,0xeb,0xd6,0x5,0x26,0x8a,0x3f,0xc9,0xa5,0x94,0xe0,0xcf,0x8c,0x19, + 0x8b,0xbf,0xac,0xfc,0xd1,0x12,0x2a,0xec,0xf8,0x80,0xb2,0xd9,0xbf,0xa1,0xac,0x99, + 0xdf,0x50,0x8e,0x6c,0xf2,0x19,0x94,0x3d,0xb,0x3b,0xdb,0x9f,0xa2,0x4f,0x3e,0xf1, + 0xa5,0xb9,0x73,0xe7,0xf3,0x7e,0x8e,0x3,0x7,0xf6,0x32,0x7d,0xd4,0x9b,0xa6,0x4e, + 0xcb,0x4c,0xb3,0x3,0x25,0x5a,0xb0,0x40,0x62,0xbf,0x31,0x9a,0x17,0x4f,0x78,0x3e, + 0x63,0x26,0xa3,0x19,0xce,0x14,0x14,0xb4,0x2d,0xdd,0xf1,0xc7,0xdf,0x3f,0xb4,0xc0, + 0x94,0x29,0x7b,0x76,0xba,0xb7,0xbf,0x4f,0x1f,0x57,0x8e,0xa6,0x8f,0x2a,0x46,0x51, + 0xcd,0xea,0x6f,0xe9,0x93,0xfa,0x31,0xd4,0xd8,0x35,0x96,0x5c,0x1b,0xc5,0x52,0xad, + 0x9a,0x6f,0xa9,0x58,0x91,0x8,0xca,0x6a,0xf7,0x86,0xb2,0x64,0xbe,0x47,0x35,0x6b, + 0x7c,0xc5,0x64,0xe6,0x47,0xc6,0x9b,0xa,0xb4,0x7c,0x99,0x44,0xdf,0xae,0x92,0x68, + 0xdb,0xf7,0x1a,0xda,0xbd,0x5b,0x43,0x7b,0xf6,0x6a,0x68,0xdf,0x3e,0xd,0x5,0x81, + 0x82,0xe4,0x67,0x6b,0xbe,0x93,0x28,0x60,0xb6,0x44,0xde,0x3e,0xb9,0xc9,0xcf,0xaf, + 0x57,0xba,0xe1,0x4f,0x40,0xc0,0x9f,0x2e,0xd3,0xa7,0x3f,0x7b,0x3a,0x64,0x70,0x24, + 0xb5,0x6c,0x11,0x47,0x2d,0x9a,0xc7,0x51,0x9b,0x56,0x71,0xd4,0xf6,0xd3,0x38,0xf2, + 0x70,0x8f,0xa3,0x2e,0x9d,0xe3,0xa8,0xd3,0x67,0xf2,0x35,0x7e,0xaf,0x5b,0x3b,0x86, + 0x9c,0x8b,0x47,0x50,0xee,0x5c,0xe1,0xd4,0xbc,0xf9,0x50,0x66,0xbb,0x19,0x3f,0xf6, + 0x64,0xa2,0x9f,0x7f,0xd2,0xd0,0xc1,0x43,0x1a,0x3a,0xfe,0x8b,0x44,0xe7,0x2f,0x48, + 0x74,0xe5,0x8a,0x44,0x17,0x2f,0x49,0x74,0x26,0x54,0xa2,0xe0,0x10,0x89,0xf1,0x52, + 0x43,0x1b,0x37,0x4a,0x34,0x87,0xc9,0xd6,0x4c,0x2f,0x89,0x3e,0xfd,0x54,0x43,0xcd, + 0x9a,0x35,0xd3,0xf9,0x4c,0x96,0x26,0xf4,0xff,0x58,0x82,0x3f,0xd3,0xa7,0xff,0xef, + 0x69,0x5f,0xcf,0x58,0xce,0x87,0x8e,0x1d,0x64,0x5e,0xf4,0xee,0x15,0x4b,0xfd,0xfb, + 0xc5,0xd2,0x90,0x21,0x31,0x34,0x74,0x68,0xc,0x8d,0x18,0x11,0xc3,0xaf,0x7b,0x74, + 0x8f,0xa5,0xf6,0xed,0xe2,0xa8,0x61,0xc3,0x18,0x26,0x67,0x51,0x94,0xc7,0xe1,0x31, + 0xd3,0x37,0xe5,0xb8,0x8c,0x1c,0x38,0x28,0xd1,0x8d,0xeb,0x12,0xdd,0xba,0x29,0xd1, + 0x1d,0xcc,0xd1,0xbf,0x15,0x4f,0xbf,0xff,0x8e,0x6f,0x24,0x49,0x5c,0xa6,0x7e,0xd8, + 0xa6,0x61,0xbe,0x9f,0x44,0x53,0xa6,0x49,0xf4,0xe5,0x97,0x7d,0x75,0x3a,0x29,0xa9, + 0xbe,0x82,0xb9,0x84,0x6f,0xa,0xa9,0xfb,0x7f,0x4c,0xf1,0x27,0x20,0xe0,0xe5,0xd2, + 0x11,0x23,0xa2,0xa9,0x73,0xa7,0x38,0x6a,0xdf,0x3e,0x8e,0x3e,0xeb,0xf8,0x8e,0x6, + 0xe,0x88,0xa1,0x91,0x23,0xa3,0x69,0xe2,0xc4,0x48,0x9a,0x39,0xf3,0xd,0x79,0x79, + 0x3d,0xa3,0xa9,0x53,0x23,0xf8,0xb3,0xcf,0x3f,0x8f,0xa1,0x3e,0xbd,0x65,0x1e,0xb9, + 0xb1,0x7a,0x57,0xac,0x70,0x4,0xd5,0xab,0xbb,0x98,0x8e,0x1f,0xb7,0xe3,0xf2,0x72, + 0xed,0x37,0xac,0x5d,0xc8,0x44,0x7f,0xfd,0x69,0x4f,0xff,0xfe,0x93,0x83,0x5e,0xbc, + 0xc8,0xc9,0xce,0x39,0xe9,0xfe,0xfd,0xcc,0x74,0xee,0x57,0x89,0x8e,0x1c,0x95,0xe8, + 0xe7,0x9f,0x33,0xd1,0x96,0xcd,0x12,0xcd,0x9f,0x2f,0xd1,0x88,0x91,0x79,0x19,0xcf, + 0xf6,0xa6,0xa,0x7f,0x40,0xb0,0xc1,0xfa,0x78,0x64,0x88,0x3f,0xde,0xde,0xaf,0x99, + 0x1c,0xc6,0x70,0x99,0x69,0xad,0xad,0x53,0xbd,0x7b,0xff,0xc5,0xf4,0xc3,0x2b,0xe6, + 0x8b,0xee,0xa0,0x7a,0xf5,0x5c,0xa9,0x4c,0x99,0x32,0x54,0xb3,0x66,0x63,0xc6,0x9f, + 0x3d,0x34,0x6e,0x5c,0x14,0x97,0x23,0xc8,0x5a,0xeb,0xd6,0x71,0x54,0x85,0xe9,0xaa, + 0xcc,0xb6,0x4f,0x68,0xee,0x9c,0x66,0x74,0xea,0x14,0xbe,0xab,0xa,0x19,0xca,0xc3, + 0xde,0x6f,0x40,0x4d,0x9b,0x37,0xe5,0xdf,0x3e,0xee,0xd4,0xb9,0x6,0x9d,0x3d,0xeb, + 0x4c,0x8f,0x1f,0x67,0xa5,0x6b,0xd7,0x24,0x2e,0x67,0xbb,0x76,0x6a,0x68,0xf5,0xb7, + 0x12,0x4d,0x98,0x28,0x31,0xfe,0xf,0xe4,0xf9,0x36,0xd6,0x96,0x48,0x2e,0xa1,0xcf, + 0x56,0xf0,0x48,0x8c,0xb1,0x9a,0xe2,0x8f,0x9f,0x5f,0xa8,0x3,0x64,0x64,0x0,0x93, + 0x17,0xc8,0x3,0x74,0x70,0x8d,0xea,0xaf,0x99,0x4e,0x39,0xc2,0xfc,0xf6,0x15,0xd4, + 0xae,0x5d,0x3b,0x3e,0x7,0x1f,0xdf,0x68,0xc4,0xf7,0x4a,0xab,0x54,0xa9,0x42,0x3d, + 0x7a,0x2c,0x64,0x7e,0x7f,0x4,0xd,0x1a,0xf4,0x96,0xd7,0xc5,0x86,0xd,0x62,0xb8, + 0x4d,0x73,0xc8,0xb5,0x87,0xd9,0xf2,0x5c,0x34,0x6f,0x7e,0x1,0xc6,0xc3,0xde,0xfc, + 0x5d,0x7c,0x9b,0x12,0xef,0xe2,0x5b,0xa1,0x75,0xea,0xd4,0xa0,0x9f,0x82,0xca,0xd1, + 0x83,0xfb,0x76,0x74,0xe1,0x82,0xac,0x8b,0x36,0x31,0x5d,0x34,0xcb,0x4f,0x62,0xed, + 0x1,0xe7,0x14,0xd3,0x41,0x4a,0xc2,0x37,0x87,0xc0,0xb,0xf4,0x45,0xcf,0x9f,0x3f, + 0x3f,0x1,0x8f,0xf4,0xf1,0x87,0xd5,0x2d,0xd7,0x31,0x63,0xa2,0xa9,0x67,0xcf,0x58, + 0xae,0x93,0x6b,0x33,0xfb,0x54,0xae,0xcc,0x13,0xe6,0xf3,0xcc,0xe0,0xed,0x1a,0xf4, + 0x2f,0xe1,0x8c,0x71,0x51,0x5c,0xbb,0xbb,0xbb,0x73,0x1e,0xf9,0xfb,0x3f,0xa4,0xf1, + 0xe3,0x23,0x99,0x2e,0x62,0xfa,0xba,0x65,0x1c,0x39,0x16,0x8c,0x20,0xbb,0x4c,0x77, + 0xa9,0x43,0x47,0x67,0x1a,0x34,0xa4,0x3,0x6f,0x37,0xa1,0x1d,0xa4,0x7c,0x17,0x63, + 0x52,0x35,0x6b,0xd6,0xa4,0x7b,0xf7,0x72,0xd3,0x1f,0xbf,0x43,0x5f,0x6b,0x68,0xfb, + 0xf,0x1a,0x6e,0xfb,0x7b,0xf7,0xb6,0x49,0x71,0x5b,0xa6,0x24,0x8c,0x15,0xa3,0xad, + 0x84,0xf1,0x5,0xd5,0x78,0x46,0x2,0xfe,0xcc,0x9e,0xfd,0xca,0x75,0xc4,0x88,0xb7, + 0x5c,0xf7,0x80,0x3f,0x2e,0x55,0xa2,0x98,0x6f,0xf3,0x2b,0xb9,0xba,0x8d,0xe2,0x32, + 0xe8,0xeb,0xeb,0xcb,0xcb,0xe7,0xef,0xef,0xcf,0xfb,0xfe,0x51,0x5e,0xc4,0x33,0x7a, + 0xf4,0x6e,0xa6,0x97,0xe4,0x7a,0xd9,0xc1,0x23,0x96,0xf1,0x34,0x8a,0x6c,0x19,0x7f, + 0x3a,0x75,0x2e,0x49,0xdd,0xba,0x75,0xe3,0x63,0x38,0xea,0x77,0xc7,0x8f,0x1f,0xcf, + 0xbf,0xb7,0x79,0xf6,0xac,0x13,0xdd,0xb9,0xa3,0xa1,0x93,0xac,0x2e,0xee,0xf8,0x51, + 0xc3,0xfd,0x24,0xf0,0x7,0x6d,0x8c,0xd4,0x22,0x47,0x47,0x47,0xae,0x33,0xc0,0x23, + 0x21,0x47,0xfa,0xf8,0xc3,0x74,0x89,0xeb,0xc8,0x91,0x6f,0xb9,0xee,0x1,0x7f,0x3e, + 0xe6,0xba,0xe4,0x2,0x95,0x2f,0x3f,0x80,0xb7,0x3d,0x31,0x7e,0x20,0xca,0x8,0x5e, + 0xe3,0xdc,0xb3,0x67,0x4f,0x56,0x7f,0xf6,0xf2,0x3a,0x6,0x5d,0xdd,0xbd,0x5b,0x1c, + 0xf3,0x95,0xa2,0x39,0x7f,0x7a,0xf5,0x29,0xcb,0xeb,0x23,0x74,0x9,0xbe,0xe1,0xa5, + 0x7c,0x17,0x3c,0xc2,0xb8,0xdc,0xe9,0x53,0x25,0x98,0xae,0xb6,0xe5,0xba,0xa,0xf2, + 0x33,0x67,0xe,0xea,0x97,0x8d,0x41,0xbb,0x92,0x52,0x4,0x3e,0xa1,0xf,0x45,0xc8, + 0x91,0xb6,0x8f,0xfe,0xbd,0xfa,0x35,0x6a,0x54,0x34,0x2f,0xa3,0x3b,0xb3,0x5d,0x75, + 0x98,0x5f,0x93,0x33,0xfb,0x33,0xca,0x95,0xcb,0x87,0xe3,0x8d,0x71,0x3e,0x8c,0x91, + 0x60,0xcc,0x19,0x63,0xca,0x90,0xa9,0xd1,0xa3,0xc7,0xb0,0x72,0xdf,0x65,0xf5,0x27, + 0x8a,0x6,0xe,0x4,0x7f,0x62,0xa9,0x72,0x25,0x99,0x3f,0x3,0x6,0x55,0x64,0x32, + 0x52,0x86,0x7f,0x9f,0xb,0x63,0x60,0xea,0x77,0x87,0xc,0x19,0x42,0x57,0xaf,0xe6, + 0xa2,0x3f,0xfe,0x90,0xe8,0x68,0xb0,0xc4,0xf5,0x4f,0x40,0x80,0xc4,0x74,0x59,0xd9, + 0x54,0xb1,0x5f,0xd0,0xd1,0x82,0x3f,0xe8,0x3b,0x42,0x3f,0x89,0x90,0xa3,0xce,0x9d, + 0x3b,0xdf,0x63,0x2c,0x71,0x55,0xdb,0xaf,0xc9,0x93,0x5f,0x51,0x5f,0x4f,0x59,0xe, + 0x9a,0x34,0x8e,0xa5,0x92,0x25,0x22,0x98,0x6f,0x7c,0x87,0xf1,0xb7,0x23,0x1f,0x1b, + 0x47,0x39,0xc1,0xa7,0x15,0x2b,0x56,0x70,0x79,0x18,0x36,0x6c,0x19,0xc1,0xe6,0xc1, + 0x37,0xea,0xc5,0x7c,0xa4,0xe,0x1e,0x71,0x54,0xb8,0x60,0x24,0x65,0xcb,0x72,0x81, + 0x26,0x4f,0x2d,0xc1,0xea,0x57,0x36,0xa6,0x8b,0x3f,0xe6,0xdf,0x31,0x53,0xbe,0x3b, + 0x7d,0xfa,0xc,0xc6,0xaf,0x26,0xdc,0x6f,0x3c,0xcd,0xfc,0x20,0xf8,0xd5,0xeb,0xd6, + 0xc8,0x6d,0x8e,0xe5,0xcb,0x27,0xf1,0x76,0x4a,0x4a,0xf3,0x47,0x9f,0x7f,0x58,0xb5, + 0x6a,0x55,0xae,0x8f,0xfa,0xf6,0xed,0xeb,0xa9,0xe6,0xd,0x8e,0xa9,0x53,0xdf,0x9c, + 0x82,0x1e,0x41,0x5d,0x69,0xd7,0x2e,0x96,0x1a,0x7c,0x12,0x4b,0x79,0x73,0xbf,0x21, + 0x3b,0x9b,0x50,0x2a,0x54,0x68,0x0,0x95,0x2d,0x5b,0x9d,0xe9,0xeb,0x4f,0x18,0xb5, + 0xa6,0x8f,0x5d,0xba,0x33,0x9f,0xf7,0x10,0xe7,0xe5,0x67,0xac,0x4e,0x76,0x60,0xf6, + 0xab,0x69,0x93,0x58,0xde,0x4e,0x73,0x6b,0x3c,0x9b,0xbe,0x5c,0x90,0x95,0xa6,0x4d, + 0x97,0x98,0x8d,0xcb,0x49,0xb5,0xeb,0x14,0xa5,0x72,0xe5,0xca,0xf0,0x7e,0xac,0x26, + 0x4d,0x6a,0xd1,0xd8,0xb1,0x15,0x59,0xfe,0x24,0x3a,0x7c,0x44,0x6e,0x77,0xc0,0xdf, + 0x6,0x7f,0xbc,0x7d,0xa,0xf0,0x7e,0x82,0xa4,0xd2,0xc5,0x8b,0x17,0xf5,0xf6,0x2d, + 0xa1,0xec,0xe0,0x87,0x29,0xfe,0x80,0x8a,0x15,0x2b,0x86,0xba,0xe5,0xad,0x8f,0x3f, + 0xfe,0xfe,0x4f,0x3a,0x4f,0x98,0x10,0x49,0xd0,0xd3,0xf0,0x99,0xe1,0xf3,0x55,0xfd, + 0x38,0x9a,0xb7,0xb3,0x72,0xe5,0x78,0x42,0xf9,0xf2,0x9e,0x64,0xb4,0x91,0x1c,0xb, + 0x6d,0x67,0x6d,0xf8,0x43,0xf4,0x71,0x95,0x5b,0xd4,0xd8,0x8d,0xd9,0xbb,0x16,0xb1, + 0xdc,0x5f,0x2a,0x5b,0x3a,0x8a,0x85,0xfb,0x8b,0x36,0x6e,0x2e,0x4a,0x3b,0x76,0x48, + 0x14,0xc8,0xf4,0xc9,0xf4,0x19,0x12,0xd,0x1f,0xae,0xa1,0x1,0x3,0x35,0xcc,0xff, + 0x63,0x7e,0xf2,0x54,0xb9,0x8d,0xba,0x96,0xf1,0xe3,0xc7,0xed,0x1a,0x6e,0xdb,0xe1, + 0x6f,0xaf,0x66,0xed,0xb5,0x41,0x83,0xf3,0x71,0x9d,0x25,0xbe,0x99,0x9c,0x18,0xc2, + 0xfc,0x18,0x8c,0x5d,0x2a,0x79,0x30,0x60,0xc0,0x0,0xfa,0xe8,0xa3,0x8f,0xb8,0x3e, + 0x71,0x71,0x71,0xe1,0x7d,0x93,0xa6,0xf8,0x53,0xa9,0x52,0x25,0x83,0xfc,0xc1,0xe1, + 0xeb,0xfb,0xea,0xfb,0x49,0x93,0x22,0xb9,0xdf,0xc,0x1f,0xba,0x31,0xab,0x67,0x8d, + 0x1a,0xca,0x7c,0x72,0x2a,0x1e,0xc9,0xda,0x10,0x11,0xcc,0x86,0x47,0x52,0x85,0x72, + 0x51,0x54,0xab,0xc6,0x5b,0xa6,0xeb,0x63,0x59,0xbb,0x9,0x61,0x62,0x28,0x4f,0xae, + 0x37,0x4c,0xee,0xe6,0xd2,0x31,0xd6,0xe6,0xa,0x3e,0x26,0xaf,0x7b,0xfe,0x89,0xb5, + 0xc3,0x36,0x6f,0xd2,0xd0,0xd2,0xaf,0xe4,0xb6,0x3c,0x8,0xba,0x6,0xed,0xb3,0xbd, + 0x8c,0x2f,0x87,0xe,0x4b,0xbc,0x8d,0x76,0xfa,0xb4,0x2d,0x93,0xc7,0x1a,0x49,0xe6, + 0x8f,0x97,0x97,0x57,0x2,0xfe,0x9c,0x3f,0x7f,0x9e,0xcb,0x13,0xe6,0xe9,0x8,0xbf, + 0x30,0x57,0xae,0x5c,0x5c,0x9e,0x92,0xc3,0x1f,0x7f,0xff,0x3f,0x5d,0xe0,0x2f,0xa3, + 0x8e,0xb9,0xb3,0x36,0x28,0x64,0x3,0x3c,0x68,0xde,0x5c,0xe6,0x3,0xf4,0x52,0xe3, + 0xc6,0xcc,0x7f,0x64,0xb2,0xd5,0xb4,0x29,0x9e,0xc9,0xba,0xaa,0x6e,0x9d,0xb7,0x54, + 0xb4,0xf0,0x1b,0xfa,0xfa,0x6b,0xf,0xd6,0xde,0xb2,0xe3,0x7e,0xd,0xda,0x10,0xd0, + 0x2f,0xd0,0xbf,0x7,0xf,0x49,0xba,0xf6,0x3b,0xea,0x14,0xfc,0x66,0xb4,0x55,0x7f, + 0xbf,0xa1,0xa1,0x27,0x8f,0xb3,0xb0,0x67,0x4e,0xba,0xb2,0x5a,0x82,0x3f,0x18,0x5b, + 0xc6,0xfc,0x92,0xc3,0x87,0xf,0xf3,0xb9,0xc,0xe8,0xf7,0xf6,0xf4,0xf4,0xd4,0xc9, + 0x50,0xd2,0xf9,0x73,0xa7,0x13,0xda,0x57,0xb0,0x47,0xf0,0x89,0xc1,0x93,0x96,0x2d, + 0xe5,0x36,0x16,0xf8,0x5,0x1d,0xdc,0xe9,0xb3,0x77,0xfc,0xec,0xe1,0x81,0x36,0x3c, + 0xe3,0x59,0x13,0x59,0x57,0x95,0x2d,0xfd,0x3f,0x6a,0xdb,0xa5,0x23,0x3d,0x7c,0x58, + 0x90,0x9e,0x3f,0xcf,0xce,0xf8,0x94,0x89,0x95,0x5f,0xe2,0xed,0x8,0xf0,0x2a,0xf4, + 0xac,0x7c,0xbe,0x74,0x49,0xe2,0xcf,0x1f,0x3d,0xcc,0x4c,0xaf,0x5f,0xe7,0xa1,0xd0, + 0xd0,0xe2,0x9,0xca,0x6a,0x9,0xfe,0x60,0xe,0xe3,0xa5,0x4b,0x97,0xf8,0x18,0x3f, + 0x8,0x72,0x84,0x39,0x2e,0xf0,0x55,0x93,0xc3,0x1f,0x66,0xe7,0xd7,0xc0,0xce,0x77, + 0xeb,0x26,0xf7,0x61,0x80,0x2f,0xdd,0x99,0x6f,0xdc,0xbf,0xbf,0xdc,0x66,0x87,0xfe, + 0x1e,0x34,0x28,0x86,0xd0,0xc6,0xef,0xd6,0x55,0x6e,0xe3,0x7f,0xfa,0xa9,0x2c,0x43, + 0x2e,0xac,0xe,0xd6,0x69,0x38,0x94,0xe7,0xd7,0xcf,0xaf,0xa,0x2f,0x37,0xda,0xa5, + 0x68,0x9f,0x3e,0x7c,0x60,0xc7,0x7d,0x9d,0x3f,0x1f,0xd9,0xd3,0xdf,0x8c,0x77,0x2f, + 0x5f,0x3a,0xb0,0x36,0x7c,0x31,0x66,0xcb,0x5c,0xde,0x2b,0xab,0x25,0xf8,0x83,0xf9, + 0x1b,0x2f,0x5f,0xbe,0xe4,0x73,0x4e,0xc1,0x1f,0xcc,0x9d,0x80,0xfc,0x88,0xb1,0x93, + 0xa4,0xf0,0x27,0x20,0xe0,0x7f,0xc5,0x98,0xfe,0xe1,0x65,0x47,0xb9,0x51,0xb7,0x60, + 0x9b,0xfa,0xf4,0x89,0x65,0x3a,0x36,0x9a,0xa6,0x4d,0x8b,0xe0,0x6d,0x78,0x9c,0x47, + 0x8f,0x8e,0xa6,0xc1,0x8c,0x4f,0xd0,0xe3,0x6d,0x5a,0x6b,0xdb,0x6b,0xd5,0xa2,0xa9, + 0x6e,0x93,0x35,0xef,0xe5,0x1d,0x3c,0x50,0x93,0xb1,0xb2,0x5a,0x82,0x3f,0x20,0xcc, + 0xf1,0xc0,0xf7,0x9a,0x61,0xdb,0x50,0xdf,0xcc,0x99,0x9f,0x60,0x9c,0x3f,0x4f,0xb6, + 0x41,0x37,0xa3,0x3d,0xce,0x75,0x4d,0x93,0x58,0xde,0x66,0xc0,0x33,0x6f,0x9f,0xdb, + 0xd4,0xbb,0xcf,0x42,0xa6,0x77,0xfa,0xb3,0x7a,0x6,0x9f,0xf1,0x4,0x2b,0xe7,0x1b, + 0x2e,0x53,0xdd,0xba,0xc6,0xdb,0xba,0x7a,0x6e,0xa1,0xc9,0x5e,0x87,0x6e,0x29,0xfe, + 0x80,0xb6,0x6e,0x95,0xe7,0xa4,0xa9,0xc7,0xdc,0x12,0xcb,0x1f,0x7f,0xff,0x1b,0x2e, + 0x90,0x9d,0x81,0x3,0xdf,0xf2,0x7a,0xe5,0xda,0x28,0x8e,0xb5,0xb5,0x63,0x69,0xc8, + 0xe0,0x47,0xac,0xfd,0xb4,0x96,0xd9,0x25,0x8f,0x4,0xed,0x77,0xf8,0x52,0x43,0x3e, + 0xdf,0xc2,0xf2,0x5,0xff,0x30,0x86,0x5a,0xb1,0xb6,0x69,0xf5,0xaa,0xd1,0x54,0xb9, + 0xc6,0x3,0xe6,0x1f,0x35,0x4b,0x13,0xfc,0x51,0xda,0xf7,0xd2,0xa5,0x4b,0x27,0xcb, + 0xbe,0x33,0xbd,0xc3,0xf5,0x72,0xbf,0xbe,0x31,0xbc,0x7d,0x51,0xbf,0x5e,0xc,0xd5, + 0x64,0xf6,0x7b,0xf2,0x54,0xcc,0xf5,0x9d,0xa6,0xb7,0xfd,0x5e,0xa7,0xce,0x27,0xac, + 0xbd,0xf2,0x94,0xb7,0x2f,0x20,0x73,0xf5,0xea,0xc6,0x30,0x19,0x8a,0xa2,0xa6,0xcd, + 0x66,0x5b,0x9d,0x3f,0xc2,0xbe,0x63,0x7e,0x22,0x6c,0x3b,0xda,0x36,0xc9,0xb1,0xef, + 0xac,0xfd,0xee,0x3d,0x76,0x6c,0x14,0xef,0xf,0x84,0x6d,0xaa,0xfc,0x51,0x34,0xb3, + 0x47,0x7f,0x53,0xbf,0x7e,0x1,0x46,0xdb,0xef,0x13,0x27,0x1e,0x60,0xf5,0x2f,0x42, + 0xe7,0x4f,0x56,0xa9,0x1c,0xc5,0xf2,0x7b,0x96,0xf1,0x2e,0xe9,0x32,0x64,0x29,0xfb, + 0x2e,0xec,0x17,0x78,0x2,0xfb,0xde,0xa9,0x53,0xa7,0x24,0xdb,0xf7,0xc0,0xc0,0xd7, + 0xde,0xa3,0x46,0xbd,0x65,0xfc,0x88,0xe1,0xf5,0xcb,0xd9,0x29,0x9a,0xb5,0x4f,0x6f, + 0xb1,0x7a,0xd4,0xc5,0x60,0xfb,0x1d,0x63,0xdb,0xa3,0x47,0x6f,0x63,0xed,0xbb,0x48, + 0xce,0x57,0xe8,0xab,0xaa,0x2e,0x6f,0xa9,0x66,0xcd,0x7d,0x54,0xbb,0x76,0x4b,0xb3, + 0xcb,0xe6,0xea,0x5a,0x8f,0xf9,0x57,0x1f,0xb1,0xba,0x5b,0x35,0xc9,0x3c,0xd5,0x67, + 0xdf,0xd1,0x1f,0x2f,0xec,0xfb,0xe6,0xcd,0x9b,0x79,0x3f,0x5d,0x52,0xed,0xfb,0xec, + 0xd9,0xaf,0x3d,0xd1,0xbf,0x1,0x3b,0xe,0x9b,0x5e,0xbe,0x6c,0x34,0x65,0xb6,0xf9, + 0x1f,0xe5,0xcd,0x33,0x81,0xcf,0x35,0x6,0x8f,0xd4,0x6d,0x70,0xd4,0x33,0x1f,0xdf, + 0xb,0x84,0x36,0x9,0x6c,0x7d,0x8b,0x16,0x71,0x54,0xa3,0xfa,0x5b,0x26,0x7b,0x21, + 0x66,0xf3,0x7,0xbc,0xe9,0xd0,0x21,0x37,0xf3,0x47,0x33,0x31,0xbf,0x21,0x13,0xe7, + 0x93,0x25,0xf8,0x23,0xec,0xbb,0x98,0x13,0x89,0x79,0x87,0xd0,0x9,0x49,0xb5,0xef, + 0x81,0x81,0xaf,0x5c,0x61,0xb7,0xe1,0xdb,0xc0,0xb6,0xa3,0xae,0xe4,0xcb,0x1d,0x49, + 0xd9,0xb3,0x1e,0xa7,0x52,0xa5,0x6a,0xf1,0x7e,0xa,0x8c,0xe3,0x81,0x20,0xab,0xe0, + 0x55,0x8f,0x9e,0x13,0x68,0xc6,0x8c,0xff,0x71,0x3b,0xf,0x9d,0x5,0xf9,0x41,0xff, + 0x58,0xa9,0x92,0x27,0x99,0x6e,0xaf,0x6f,0xb2,0x4c,0x4d,0x9b,0xba,0x30,0xde,0x64, + 0x67,0x7a,0x34,0x13,0x4d,0x67,0x6d,0x77,0xb4,0x67,0x3b,0x76,0xcc,0x63,0x11,0xfe, + 0x80,0xa0,0x7f,0x2c,0x69,0xdf,0xfd,0xfd,0x5f,0x3f,0x1d,0x3e,0x3c,0x86,0xf7,0x95, + 0x72,0x7b,0x54,0x2d,0x86,0xf2,0xe7,0x8d,0xa4,0x7c,0x79,0x76,0x51,0xe1,0x22,0x4d, + 0xa9,0x5e,0xbd,0x4f,0xa8,0x55,0xab,0x56,0x4c,0x4e,0xda,0x32,0xf9,0xe8,0xc2,0xca, + 0xb7,0x85,0x7a,0xf5,0x8c,0xd5,0xf6,0xa9,0xc5,0xf2,0x3e,0xa3,0x12,0xc5,0x22,0x99, + 0x9e,0x9e,0x45,0x5d,0xbb,0xda,0x92,0x47,0x87,0xbc,0xd4,0xa6,0x4d,0x71,0x26,0x13, + 0x95,0x38,0x2f,0x4,0xb5,0x68,0x51,0x81,0xda,0xb6,0x2b,0x44,0x3d,0x7b,0xda,0x30, + 0x7b,0x99,0x89,0xf7,0x6b,0x7c,0xc5,0xda,0x67,0xdf,0xac,0x94,0x98,0xf,0x97,0xc5, + 0x62,0xfc,0x49,0x6c,0xff,0x86,0x29,0xfe,0x30,0x1d,0x34,0x16,0xbe,0xe,0x64,0x8, + 0x65,0x46,0xfb,0xa,0xfa,0x4,0x72,0x94,0x3b,0xe7,0x4b,0x2a,0x98,0xff,0x10,0x15, + 0x2d,0xf2,0x1d,0x93,0x8f,0x7d,0x54,0xae,0xec,0x29,0xce,0x93,0x36,0x6d,0xe4,0x36, + 0x99,0x9b,0x6b,0x1c,0x95,0x72,0x8a,0xa2,0x82,0x5,0x1e,0xb0,0x74,0xca,0xb1,0x7a, + 0x27,0x31,0xdd,0xa4,0xe1,0xe5,0x47,0x9f,0x69,0x97,0x2e,0xb6,0x9c,0x67,0x9d,0x3a, + 0xd9,0xf2,0x6b,0xc8,0xcc,0xc4,0x49,0x12,0x7d,0xf1,0xa5,0x44,0x1b,0x36,0xa0,0x8f, + 0x3e,0x13,0xcb,0xb3,0x86,0x7c,0xbc,0x73,0xa6,0x59,0xfe,0xe0,0x98,0x35,0xeb,0xf5, + 0x3d,0xe8,0x21,0xcf,0x3e,0xb2,0xf,0x8d,0x76,0x69,0xdd,0x3a,0x31,0x54,0xca,0x39, + 0x8a,0xcb,0x52,0x99,0x52,0x51,0xcc,0x4f,0x7e,0xcb,0xf9,0x81,0x76,0x6b,0x63,0xb7, + 0x38,0xde,0xbe,0xff,0xa8,0x52,0x34,0xe5,0xcf,0x13,0x49,0x9d,0x3b,0x8f,0xe6,0xed, + 0xcf,0x2d,0x9b,0xe5,0x31,0x64,0xb4,0xdb,0x3,0x3,0xd1,0xb7,0x23,0xd3,0x8c,0x99, + 0x76,0xe4,0xef,0x27,0xd1,0x42,0xd6,0x8e,0x5f,0xb3,0x46,0xe2,0x63,0xcd,0xfb,0xf6, + 0x6b,0xe8,0xc4,0x49,0x89,0x6e,0xdf,0xb1,0xa3,0x61,0xc3,0x2a,0xa6,0x69,0xfe,0x30, + 0x19,0x62,0x7e,0xe2,0x9b,0xa7,0xe8,0x3,0xea,0xd7,0x37,0x96,0xf7,0xd7,0xb7,0x6b, + 0xcb,0xf8,0xd4,0x4c,0x6e,0x83,0x36,0x69,0x8c,0x7e,0x30,0x59,0x17,0xa3,0xe,0x42, + 0x86,0x1a,0xd4,0x8f,0xa1,0x8a,0xe5,0xa3,0xc8,0xad,0xd1,0xe,0x3a,0x77,0x2e,0x27, + 0xb3,0x1b,0x72,0xbb,0xfd,0xe0,0x41,0xd,0x1f,0x6f,0x86,0x5c,0xa0,0x7f,0xf9,0xc7, + 0xed,0xf2,0x58,0x17,0x9e,0x81,0x87,0xfb,0xf,0xc8,0x7c,0xb9,0x7c,0x59,0x43,0xff, + 0xb0,0x76,0x1a,0xfa,0xeb,0x2d,0x65,0xbf,0x52,0x8a,0x3f,0x5a,0x1e,0x15,0x83,0x2e, + 0x82,0xbd,0x47,0xfb,0xa1,0x57,0xcf,0x38,0x6e,0x9f,0xc0,0x2b,0xc8,0x54,0xe7,0x4e, + 0xef,0xa8,0x6b,0x97,0x38,0xae,0x7b,0xc4,0xb9,0x7b,0xb7,0x97,0xb4,0x71,0xa3,0x7, + 0x6b,0xb7,0x67,0xa3,0xbb,0x77,0x24,0x4e,0x68,0xb7,0x9f,0x3a,0x2d,0x8f,0xb7,0xa3, + 0x7f,0xe3,0xd0,0x61,0xd,0x1f,0x33,0x45,0x7f,0xf,0xfa,0x36,0xae,0x5e,0x45,0x1b, + 0xde,0x96,0x22,0x22,0xf2,0xd1,0xa3,0x47,0x85,0x99,0xfd,0x35,0xad,0xd3,0xd3,0x2, + 0x7f,0x84,0x1c,0x31,0xda,0x36,0x75,0x6a,0x24,0xa1,0xbe,0xa1,0x3f,0x8,0x4,0xdd, + 0x34,0x6c,0xe8,0x5b,0x66,0xf3,0xa3,0x69,0xf2,0xe4,0x48,0xc2,0xef,0x5e,0x5e,0xe1, + 0x4c,0xa7,0xcc,0xe4,0xf9,0x5c,0xf0,0x65,0x25,0x56,0xd6,0xfc,0xf4,0xcf,0xdf,0xd9, + 0xe9,0xf1,0x5f,0xf6,0x74,0x3f,0x2c,0x13,0x85,0xdd,0xd3,0x70,0x7e,0xdd,0xba,0x25, + 0xf3,0xed,0xe1,0x3,0x1b,0xce,0x47,0xb4,0xe1,0x1f,0x3f,0x2e,0x48,0x2b,0x57,0x56, + 0x48,0x32,0x5f,0xf4,0xf1,0xe7,0xd0,0xa1,0x43,0xd4,0xa3,0x47,0xf,0xee,0xf,0x82, + 0x60,0xd7,0x5,0xa1,0x2f,0xde,0x12,0xfc,0x11,0x7,0x6b,0x3f,0x74,0x9a,0x3d,0xfb, + 0x19,0xf3,0xd,0xdf,0x70,0xf2,0xf3,0x7b,0xcd,0xfc,0xc3,0x70,0x46,0x2f,0x58,0xbb, + 0xef,0x11,0xd3,0x21,0x57,0x69,0xfe,0xfc,0x45,0x54,0xb1,0x62,0x42,0xbd,0x11,0x18, + 0x58,0x91,0xf9,0x1e,0x45,0x29,0x3a,0xba,0x0,0x27,0xc8,0x48,0xc4,0x9b,0xbc,0xba, + 0xfb,0x7d,0xfb,0x9c,0x79,0x98,0xe4,0xf2,0x45,0x1f,0x7f,0x60,0xd7,0xe1,0x1b,0x62, + 0x2d,0x24,0xfc,0x36,0xac,0x1f,0x13,0x6b,0x75,0x92,0xdb,0x3f,0x66,0x58,0x9e,0x5e, + 0xb9,0x7c,0xfd,0xf5,0x6e,0xe6,0xb3,0x3f,0x67,0x3a,0xf5,0x24,0xc3,0xe8,0x84,0x4e, + 0x56,0xd1,0x3e,0x56,0xf3,0x47,0x49,0x3d,0x7a,0xd4,0xa2,0x11,0x23,0x6a,0x70,0xf2, + 0xf4,0xac,0x65,0x31,0x9e,0x18,0xe3,0xcf,0xb5,0x6b,0xd7,0xf8,0xbc,0x59,0xb4,0xbf, + 0xd0,0xbe,0x40,0x1e,0x53,0x92,0x3f,0x38,0xe0,0x1b,0xc2,0xcf,0x52,0xd7,0x65,0x53, + 0xfc,0x49,0xd,0x52,0xf3,0xe7,0xfa,0xf5,0xeb,0x7c,0xd,0x34,0xd6,0x10,0x62,0xac, + 0xb,0xb2,0x84,0x76,0x51,0x6,0x7f,0x12,0xf2,0x7,0x84,0x35,0x98,0x90,0x23,0xb4, + 0x89,0xac,0xc5,0x9f,0x52,0xa5,0x4a,0xa5,0x59,0xfe,0x28,0xe5,0xc8,0x1a,0xfc,0xc1, + 0xfa,0x58,0xd8,0x86,0xd4,0x98,0x97,0x62,0x88,0xb0,0x96,0x5a,0xac,0x7d,0x3,0x7f, + 0x9e,0x3d,0x7b,0xc6,0xf7,0x1d,0x50,0x12,0x9e,0x63,0x6d,0x61,0x6a,0xf3,0x27,0x3d, + 0x52,0x6,0x7f,0x52,0x9f,0x3f,0x2b,0x56,0xac,0x78,0x81,0xfe,0x82,0xc4,0xec,0x17, + 0x92,0x56,0x9,0x75,0xcd,0xd2,0xfc,0xc1,0x5a,0x3,0xf8,0x5b,0xc2,0xff,0x4a,0xcf, + 0x84,0x75,0xbe,0x38,0x5b,0x92,0x3f,0x38,0xb0,0x7,0xc5,0xfc,0xf9,0xf3,0x5f,0x28, + 0xd7,0x2c,0xa5,0x57,0xc2,0xda,0x74,0xac,0x91,0xb6,0x24,0x7f,0x84,0x1c,0xc1,0xd7, + 0xfa,0x50,0x78,0x84,0xf9,0x46,0x96,0xe4,0xcf,0x87,0x26,0x47,0x7f,0xfd,0xf5,0x17, + 0x9f,0xb3,0x66,0x49,0xfe,0xe0,0xf8,0x90,0xe4,0x8,0x76,0x19,0x72,0xa4,0xe5,0xcf, + 0x7b,0x73,0xeb,0x92,0x7a,0x40,0x8e,0x2,0x3,0x3,0x5f,0xc0,0x87,0x4e,0xef,0xc4, + 0x7c,0xcc,0x17,0x4c,0x86,0x2a,0x19,0x29,0x2e,0xdf,0x4b,0x54,0x88,0x87,0xe2,0xda, + 0x55,0x71,0xed,0xa4,0xb8,0x76,0x50,0x5c,0xdb,0x2b,0xae,0x6d,0x14,0xd7,0x1a,0xbe, + 0x3f,0xa9,0x22,0x81,0x10,0x45,0x2,0x61,0x8a,0x4,0xc2,0x15,0x9,0x44,0x29,0x12, + 0x88,0xd5,0x73,0x6d,0x6f,0xc5,0xeb,0x28,0xc5,0x75,0x98,0xe2,0x3a,0xc4,0xc0,0xb5, + 0x8f,0x81,0x6b,0x29,0x19,0xd7,0x22,0x1e,0x7,0x23,0xd7,0x21,0x89,0xbc,0x36,0x14, + 0x8f,0x64,0xa1,0xeb,0xc4,0xe6,0x33,0x4c,0x71,0x1d,0xae,0xb8,0x56,0xca,0x43,0x2, + 0x41,0xf4,0x49,0xe1,0xeb,0x10,0xc5,0x75,0x98,0xe2,0x3a,0x5c,0x71,0x1d,0xa5,0xb8, + 0xd6,0x66,0x14,0xf2,0x8c,0x7d,0x48,0x79,0x54,0x9a,0xf8,0x7d,0x48,0xa5,0x2c,0x1a, + 0x49,0x7d,0x60,0x1f,0xd2,0xf,0x78,0x2f,0xd2,0xf4,0x42,0x16,0xb3,0x1f,0x89,0x3d, + 0x32,0xf0,0x4f,0x33,0x64,0x15,0x19,0x10,0x7e,0xb0,0xb5,0xfd,0xa9,0xff,0x1a,0x9, + 0xbe,0xa3,0xff,0xd1,0x9a,0x32,0x90,0x81,0xbf,0x75,0xf1,0xb7,0xb6,0xc,0x64,0xe0, + 0x6f,0x7d,0xfc,0xad,0x29,0x3,0x19,0xf8,0x5b,0x87,0xd4,0x7b,0x7a,0x5a,0x4b,0x6, + 0x32,0xf0,0x4f,0x59,0xc2,0x5c,0x4f,0x53,0xf8,0x5b,0x53,0x6,0x32,0xf0,0xb7,0x8e, + 0x1c,0x28,0xf7,0xaa,0xb7,0xa6,0xc,0x28,0xf1,0xc7,0x38,0x51,0x72,0xd6,0x9b,0x66, + 0x90,0x61,0xc2,0x78,0xfa,0xe5,0xcb,0x97,0xf9,0xdc,0x3,0xf0,0x5a,0xbd,0xaf,0xb3, + 0xb5,0x64,0x40,0xa4,0x87,0x75,0x67,0xe2,0xfb,0x5,0x19,0x94,0x32,0x4,0x7c,0x27, + 0x4c,0x98,0xa0,0xd3,0x5,0xfa,0x74,0x40,0x6a,0xcb,0x80,0x48,0x4b,0xcc,0x8b,0x51, + 0xca,0xe5,0x9a,0x35,0x6b,0x75,0x7b,0xe2,0x28,0x9,0x7b,0xa,0x60,0x3d,0x1,0xc6, + 0x3f,0xb0,0xb7,0xb9,0xfa,0x77,0xbc,0x83,0xfd,0xfb,0xb1,0xc7,0x1e,0xf6,0xd1,0x46, + 0x38,0x43,0x61,0x45,0x5c,0x8,0x3b,0x75,0xda,0x54,0x1e,0x2e,0x34,0xf4,0xec,0x7b, + 0xdf,0x18,0x0,0xe1,0x7d,0x84,0x13,0xf1,0x5a,0x3a,0x9c,0xa9,0xf2,0x20,0x7f,0x98, + 0x5b,0x65,0x2a,0x2e,0x63,0xe5,0xcc,0x97,0x2f,0x1f,0x75,0xe9,0xda,0xc5,0xa8,0x1d, + 0x48,0x4d,0x19,0x10,0xe9,0x61,0xbc,0x46,0xc8,0x0,0xd6,0xf2,0x21,0xbd,0x61,0xc3, + 0x86,0x27,0xab,0xac,0x22,0xc,0xd6,0xeb,0x78,0x6b,0xbf,0x9f,0xa0,0x96,0x27,0x84, + 0xc5,0x1c,0x23,0x11,0x56,0x7c,0x1b,0x4,0x61,0xd5,0xf1,0xa,0x99,0x2,0x61,0xbd, + 0x18,0xc2,0x5a,0x32,0x1c,0xd2,0x35,0x55,0x1e,0xe4,0xd5,0x54,0x5c,0xb8,0x36,0x56, + 0x4e,0xc8,0xc0,0xb2,0x65,0xcb,0xd3,0x84,0xc,0x78,0x6b,0xf7,0xa3,0xd4,0x27,0x3, + 0xb5,0x6a,0xd5,0x32,0x59,0x56,0xf0,0x45,0xf9,0x1d,0xe,0xc1,0x6b,0x25,0xa6,0xe0, + 0x29,0xf8,0x81,0xdf,0x70,0xad,0x26,0x11,0x1f,0xde,0x11,0xf2,0xa6,0x2f,0x1c,0x48, + 0xc4,0x8b,0x77,0x52,0x22,0x9c,0xc8,0xbf,0xa9,0xf2,0x98,0x8a,0xcb,0x54,0x39,0xc1, + 0x5b,0xf0,0x2e,0xad,0xcb,0x80,0xb9,0x65,0xc5,0xfe,0xfd,0xf8,0x1e,0x84,0x20,0x11, + 0x6,0x65,0x54,0xd6,0x29,0xf0,0x12,0x61,0x31,0x7,0x52,0x10,0x7e,0x47,0x38,0x90, + 0xa8,0x37,0xa2,0x2e,0x62,0x1e,0x82,0x8,0x27,0xe2,0x45,0xba,0x42,0x2e,0x53,0x2a, + 0x9c,0xb1,0xf2,0x20,0xac,0xa9,0xb8,0x4c,0x95,0x13,0xf8,0x3,0xcb,0xb4,0x2e,0x3, + 0x83,0x6,0xd,0x36,0x59,0x56,0xc1,0x33,0x35,0xbf,0x20,0x1b,0xca,0x7a,0xb5,0x58, + 0xfb,0x1d,0x1d,0x11,0x5e,0x4d,0x2,0x3,0x5c,0x63,0x7f,0x47,0x21,0x2f,0xfa,0xc2, + 0xa,0x7d,0xb2,0x58,0xf1,0x6d,0x9e,0xe4,0x86,0x13,0xe9,0xa,0xfb,0x63,0xa8,0x3c, + 0xe6,0xc4,0x85,0xdf,0x84,0xec,0x1b,0x2a,0x27,0xf2,0x95,0x5e,0xf4,0x0,0x7c,0x41, + 0x53,0xfc,0x15,0xba,0x40,0xa9,0x3f,0x45,0x7d,0x56,0xfa,0xc,0xc2,0x1f,0x30,0x65, + 0x6b,0xbb,0xf7,0xe8,0xae,0x7b,0x66,0xca,0xf,0x41,0x9c,0xe6,0x86,0x33,0x27,0x5d, + 0x7d,0x76,0x40,0xd8,0xaf,0xc4,0xa6,0x89,0x78,0x8d,0x85,0x81,0x3f,0x90,0x1e,0x64, + 0x0,0xe9,0xe9,0x6b,0x13,0x28,0x7d,0x1b,0x73,0xfc,0x23,0xe1,0x6b,0x59,0xcb,0x1f, + 0x14,0x72,0x6b,0x2c,0x5d,0xa1,0xc3,0xcd,0x29,0x7,0xe2,0x53,0xcb,0x89,0x3e,0x1f, + 0xc9,0x58,0x5c,0xe9,0x45,0x6,0xd0,0x26,0x30,0xe5,0xdb,0x24,0xc6,0xd7,0xb2,0x86, + 0x3f,0x68,0x6e,0xba,0xe6,0xa6,0x29,0xec,0x80,0xd2,0x5e,0xc0,0xf6,0x8b,0xf8,0xc, + 0xc5,0xa3,0x8e,0xb,0x58,0x82,0xdf,0x69,0x5d,0x6,0xa0,0x3,0x8c,0xf9,0x36,0x82, + 0x77,0xa6,0x7c,0x2d,0x51,0x4f,0x4c,0xf9,0x83,0x8,0x87,0xfd,0xda,0x8c,0xc5,0x89, + 0x33,0xc2,0x98,0xf2,0xf3,0x70,0x86,0xde,0x36,0xe5,0x9f,0x61,0x8d,0xa2,0x39,0x71, + 0x21,0x4d,0x51,0x16,0xa5,0xcf,0x88,0x6b,0x11,0x9f,0x52,0x96,0x8c,0xf1,0xa4,0x73, + 0xe7,0xce,0xdc,0x1f,0x48,0xf,0x32,0x80,0x7c,0x1a,0xf2,0x6d,0xd4,0xfe,0x80,0x3e, + 0x9f,0x41,0xf4,0xa9,0xc0,0xd6,0xa,0x6c,0xf5,0xc5,0xa5,0xc,0x27,0x70,0x33,0x56, + 0x97,0x84,0xdf,0x68,0x28,0x8c,0x32,0x2e,0x53,0x75,0xdc,0x94,0xf,0xaa,0xe,0x67, + 0xc8,0x16,0x88,0x32,0x18,0xd3,0x8d,0xc2,0xc6,0x21,0xc,0x6c,0x41,0x7a,0x90,0x1, + 0xc9,0xc,0x7f,0xc0,0xdc,0x3e,0x22,0x81,0x99,0xa9,0x70,0xe6,0xf8,0x5b,0xc0,0xc3, + 0x92,0x71,0x99,0x1b,0xce,0x92,0x65,0x30,0x47,0x6,0x52,0x6b,0xfe,0x80,0x31,0x19, + 0x30,0xd7,0x1f,0x30,0xd5,0xa7,0x22,0x7e,0x37,0x27,0x9c,0xb9,0xfe,0x96,0xa5,0xe2, + 0x32,0xd7,0xc7,0x13,0xb6,0xca,0x52,0xe9,0x4a,0x26,0xfc,0x81,0xd4,0x9c,0x43,0x62, + 0x4c,0x6,0x4c,0xf9,0x3,0x4f,0x9f,0x3e,0xe3,0xf7,0xc6,0xfa,0x54,0x10,0xe6,0xd5, + 0xab,0xd7,0x66,0x85,0xbb,0x77,0x2f,0xcc,0xa4,0xbf,0x65,0xc9,0xb8,0x30,0x76,0x63, + 0x6e,0x38,0x4b,0xa6,0xab,0xdd,0xd7,0x3a,0xc1,0xd8,0xb1,0xbe,0x35,0x82,0xd6,0x90, + 0x1,0xe4,0x45,0xc8,0xc0,0x8b,0x17,0x2f,0x74,0xe5,0x56,0x13,0xca,0x29,0xf8,0x82, + 0x6b,0x43,0x7d,0x2a,0x62,0x8c,0xcc,0xdc,0x70,0xe0,0xa1,0x21,0x7f,0xb,0xbf,0x59, + 0x3a,0xae,0xc4,0x84,0xb3,0x64,0xba,0x18,0x8f,0x4b,0xc,0xfe,0x29,0x2d,0x3,0x22, + 0xd,0xe4,0x4d,0xec,0x2f,0x8d,0xfc,0x61,0x6f,0xbc,0x7b,0x66,0xac,0x73,0xc5,0xf7, + 0x58,0xd5,0xf4,0xdb,0x6f,0xd7,0x92,0x14,0xe,0xf7,0xfa,0xc2,0xa5,0x64,0x5c,0xe6, + 0x86,0xb3,0x54,0xba,0xea,0x79,0x23,0xe6,0xe0,0xaf,0x92,0x81,0xe0,0x94,0xc2,0x1f, + 0x64,0xed,0x79,0x35,0xff,0x35,0x32,0x17,0x7f,0x10,0xbe,0x93,0x20,0x59,0x58,0x7, + 0xa4,0x37,0xfc,0xbf,0xfb,0xee,0x3b,0xab,0xcf,0xfb,0x48,0xa,0x59,0x2,0xff,0x94, + 0xd0,0x1,0xe9,0xd,0x7f,0xf8,0x2a,0x92,0xf5,0xd7,0xf6,0x24,0x8a,0x2c,0x85,0x3f, + 0x48,0x11,0x6f,0xaa,0xe2,0x2f,0xfa,0x7,0x10,0x56,0xd9,0x86,0x49,0xad,0xdf,0x33, + 0xf0,0xb7,0x2e,0xfe,0x22,0x5d,0x11,0x3e,0xb5,0x7f,0x57,0xf2,0xcb,0xda,0x78,0x66, + 0xe0,0x9f,0x76,0xf0,0xb7,0xa9,0x23,0x51,0x8e,0xbb,0x12,0x39,0x1c,0xd7,0x90,0x4d, + 0x55,0xeb,0x63,0x9d,0x81,0x7f,0xea,0xe2,0xf,0xec,0x5,0xfe,0x20,0x6b,0x63,0x9d, + 0x81,0x7f,0xea,0xe2,0x3f,0xfd,0xf8,0x48,0x4e,0x42,0xe,0xac,0x8d,0x75,0x6,0xfe, + 0xa9,0x8b,0x7f,0x89,0xaa,0x45,0x75,0xf8,0xc3,0x16,0x58,0x1b,0xeb,0xc,0xfc,0xd3, + 0xae,0xff,0x87,0xf1,0x16,0xec,0x33,0x9b,0x14,0x12,0x7d,0xf7,0xff,0x55,0xfc,0xd3, + 0x4a,0xfb,0x2f,0xa9,0xf8,0xf7,0xeb,0xd7,0x4f,0xef,0x98,0xbb,0xb9,0x84,0x7e,0xa7, + 0xa4,0xca,0xc0,0x87,0x80,0x7f,0x5a,0x21,0x35,0xfe,0xf8,0x2e,0xaa,0xb9,0x75,0x58, + 0x60,0x99,0x18,0xec,0x10,0xbf,0x72,0x9c,0x34,0x29,0xba,0x22,0x3,0xff,0x94,0xc3, + 0x3f,0xb1,0xf5,0x18,0x78,0x26,0x6,0x7f,0xb5,0xc,0x98,0x43,0x90,0x81,0xf,0xd, + 0x7f,0xc8,0xbe,0xbe,0xfc,0xa0,0xbc,0xb0,0xab,0xd6,0xc2,0x5f,0xcc,0xaf,0x30,0x97, + 0x30,0xf,0x27,0xb1,0xf8,0xd7,0xab,0x5f,0x2f,0xd1,0xe9,0x7c,0x68,0xf8,0x9b,0xca, + 0x97,0xb5,0xf0,0x7,0x9e,0x29,0x29,0x3,0xe5,0xca,0x97,0x4b,0x76,0xfc,0x69,0x19, + 0x7f,0xa1,0xb3,0x4,0xfe,0x98,0xcf,0xaa,0x8f,0xf4,0xcd,0x4f,0x52,0xea,0x0,0x43, + 0xef,0x59,0x9a,0x92,0xea,0xff,0x25,0x45,0x4e,0x8c,0xd5,0xe9,0xc4,0xd0,0x87,0x83, + 0xbf,0x7e,0x19,0x48,0xf,0xf8,0x27,0x57,0x6,0x92,0x62,0x37,0xd2,0x7,0xfe,0x5e, + 0x9,0xf0,0x5f,0xbf,0x7e,0xb,0xff,0xde,0xd0,0x8c,0x99,0x8b,0x68,0xe4,0xa8,0xc5, + 0x34,0x4a,0x4b,0x23,0x46,0x8c,0x21,0x5f,0x5f,0x7f,0xad,0xc,0x24,0x94,0x85,0xc4, + 0xe2,0x3f,0x77,0x6e,0xff,0xf7,0x68,0xc5,0xa,0x4f,0x5a,0xb5,0xca,0x93,0x7e,0xf8, + 0x61,0x61,0x8a,0xe1,0x6f,0x2d,0x4a,0xcb,0xf8,0xfb,0xf8,0xf8,0x71,0x6c,0xbd,0xbc, + 0x96,0x52,0xdd,0xba,0xc3,0xa9,0x5e,0xbd,0x61,0xe4,0x58,0x78,0x2,0xe5,0xcf,0xef, + 0x45,0x55,0x2a,0xef,0xa7,0xb2,0x65,0xf6,0xb1,0xf3,0x1,0x72,0x70,0x98,0x43,0xf9, + 0xd8,0xb3,0x66,0xcd,0x26,0xd1,0xd4,0xa9,0x3e,0x4c,0x16,0xfc,0x74,0x32,0x60,0xa, + 0x7f,0x94,0x73,0xde,0xbc,0x1,0x34,0x63,0x46,0x55,0xd6,0xe,0xcf,0x44,0x9f,0x7f, + 0xae,0xa1,0x29,0x53,0xa5,0x4,0x34,0x61,0x82,0x44,0xe3,0x27,0xe4,0x22,0x2f,0x9f, + 0xbc,0xf4,0xc5,0x97,0x2e,0x6,0xe5,0x20,0x3,0x7f,0xcb,0xe0,0x1f,0x10,0xb0,0xc8, + 0xb5,0x7f,0x7f,0x9f,0xe0,0x8a,0x95,0x86,0x51,0xb1,0x62,0x9b,0xa8,0x60,0x81,0x50, + 0xb2,0xd1,0x5c,0xa1,0xfc,0x79,0xff,0xa2,0xfc,0x79,0x22,0x28,0x67,0xb6,0x8,0xca, + 0x6c,0xf3,0x86,0xec,0x6d,0x5,0x45,0xf0,0xef,0x1f,0xe6,0xc9,0x7d,0x95,0x72,0xe4, + 0x58,0x42,0x2d,0x5a,0x8c,0x64,0x72,0xb0,0x90,0xe5,0xc9,0x8b,0x7f,0x9b,0x47,0x1f, + 0x56,0x3f,0xfe,0xb8,0x8e,0x2,0x2,0x9a,0x30,0xf9,0x92,0xf1,0xc6,0x77,0x34,0x7d, + 0x66,0x9,0xd2,0x24,0x20,0xf9,0x37,0x39,0xdc,0x98,0xb1,0x1a,0x1a,0x3a,0x2c,0x13, + 0xd3,0xb,0xad,0x68,0xe3,0xc6,0x45,0x19,0xf8,0x5b,0x18,0xff,0x89,0x13,0xbd,0x83, + 0x3d,0x3a,0x4,0x32,0xdc,0x37,0x52,0xe1,0x42,0x7f,0x72,0xbc,0x81,0x35,0x28,0x67, + 0x36,0xf9,0x9c,0x3f,0x4f,0xfc,0xbd,0x78,0x26,0x64,0xc1,0xce,0xe6,0x11,0xe5,0xca, + 0xb9,0x8f,0xca,0x94,0x99,0x48,0x7d,0xfb,0x4d,0xe5,0xdf,0xa4,0xd5,0x87,0xfb,0xe4, + 0x29,0xf1,0x78,0x7f,0xf9,0xa5,0x44,0xcb,0x96,0xca,0x84,0xeb,0x5,0xb,0x8c,0x93, + 0xb7,0xaf,0x2c,0x13,0xe3,0x99,0x5e,0x98,0x31,0xa3,0x5a,0x6,0xfe,0x16,0xc2,0x7f, + 0xf0,0x60,0xbf,0x60,0x4f,0xcf,0xd3,0x54,0xbf,0xde,0x3d,0xaa,0x50,0x2e,0x8a,0x4a, + 0x3a,0x45,0x50,0xc9,0x12,0x11,0x54,0xca,0x39,0x92,0x2a,0x96,0x8f,0xa4,0xaa,0x2e, + 0xd1,0xfc,0x7b,0xa8,0x20,0x7c,0xfb,0x14,0x84,0x67,0x15,0xd8,0x6f,0x42,0x26,0x84, + 0x3e,0xc8,0x96,0xf5,0x2a,0xf3,0x8b,0xbc,0x68,0xe6,0xcc,0xf8,0x3a,0xa,0xbd,0x3d, + 0x71,0x52,0x5e,0x8e,0x21,0x70,0xc6,0xf7,0x51,0x57,0xad,0x94,0x68,0xdd,0x5a,0x89, + 0xb6,0x6e,0xd1,0xd0,0x8e,0x1d,0x32,0xe1,0x7b,0xb1,0x82,0xf0,0x1d,0xd0,0x3d,0x7b, + 0xe4,0x6b,0xfc,0x86,0x6f,0xab,0x7e,0xfb,0x8d,0x44,0xb3,0x3,0xe3,0x75,0x42,0x40, + 0x40,0x35,0xa6,0xb,0x16,0x67,0xe0,0x9f,0x44,0xfc,0xfd,0xfd,0x43,0x5d,0xfd,0xfd, + 0xb7,0x33,0x9d,0xfd,0x80,0x7f,0xa7,0x14,0xf8,0x2,0x57,0x81,0x37,0xbe,0x77,0xdb, + 0xa2,0x59,0x1c,0x3f,0x37,0x67,0xe7,0xe6,0x4d,0xe3,0xa8,0x99,0x96,0xf8,0xb7,0x70, + 0x5d,0xe5,0x77,0x20,0x2f,0x4a,0x7d,0x60,0x97,0xe9,0x4f,0xca,0x93,0x27,0x90,0xf9, + 0x6e,0xdf,0xd3,0xa1,0x43,0xb,0xf8,0x77,0x92,0xd7,0xaf,0x8d,0xc7,0x1c,0x58,0xee, + 0xf8,0x51,0xc6,0xf7,0xf0,0x11,0xf9,0xbc,0x7f,0xbf,0xfc,0x4d,0x5c,0x7c,0xef,0x54, + 0x5c,0x8b,0xdf,0x71,0xf,0x82,0x2c,0x20,0xe,0x21,0x3,0x33,0xbc,0x24,0x1a,0x31, + 0x92,0x9d,0x67,0xf4,0xb5,0x3a,0x9e,0xe9,0xd,0x7f,0x60,0x1f,0x10,0x70,0x97,0xf9, + 0x69,0xcf,0xa9,0xaf,0x67,0x2c,0xb5,0x69,0x1d,0x8f,0x29,0xb0,0x76,0x6d,0x14,0xc7, + 0x9f,0x1,0x6b,0x9c,0xf1,0x2d,0xf1,0x4e,0x9f,0xbd,0xe3,0xdf,0xb1,0xc5,0x19,0xf7, + 0x78,0x8e,0x70,0x42,0x1f,0x54,0x54,0xe8,0x83,0xec,0x59,0xff,0xe4,0x7a,0x60,0xe7, + 0x4e,0x5b,0x86,0x9b,0xa4,0xab,0xd7,0xc0,0x5d,0x57,0xc7,0xb5,0x38,0xe3,0x5b,0xb7, + 0xc7,0x4f,0x48,0x14,0x7a,0x56,0x26,0x5c,0xb,0x3a,0x78,0x48,0x96,0x9,0x21,0xf, + 0x3f,0xff,0x9c,0x89,0xd6,0xae,0x89,0x97,0x1,0x5f,0x3f,0xd,0xf7,0x13,0x5b,0xb4, + 0xc8,0x64,0x75,0x4c,0xd3,0xb,0xfe,0x81,0x81,0xaf,0x19,0xf6,0x8f,0x69,0xe8,0xd0, + 0x18,0x1a,0x38,0x30,0x86,0xba,0x77,0x8f,0xc7,0x1a,0xb8,0x82,0x80,0xb3,0xc0,0x1c, + 0xf4,0x59,0xc7,0x77,0xd4,0xbd,0x5b,0x9c,0x7c,0xee,0x2e,0x9f,0x85,0x3c,0x8,0xd9, + 0x11,0xfa,0xc3,0xb9,0x44,0x4,0xf7,0x1f,0x6c,0x34,0x57,0xa9,0x83,0x87,0x3b,0xff, + 0xb6,0xf3,0xde,0xbd,0x32,0xee,0x42,0xa7,0xb,0xdc,0x5,0xe6,0xd7,0xaf,0x4b,0x74, + 0xfb,0x96,0x4c,0x77,0x6e,0xcb,0x84,0x67,0x97,0x2e,0xc9,0xbf,0x1f,0x3b,0x2e,0xf1, + 0x77,0x76,0xef,0xce,0xc4,0x6d,0x6,0xbe,0xb3,0xd,0x5b,0x2,0x9f,0x40,0xc8,0xc0, + 0xd4,0xa9,0x1d,0x13,0xcd,0xbb,0xd4,0x26,0xd1,0xb7,0x82,0x6f,0x54,0x59,0x3,0xff, + 0xc0,0xc0,0x57,0x1c,0xfb,0x1,0x3,0x62,0xf8,0xf7,0xce,0x81,0x29,0x70,0x6c,0xaf, + 0xc5,0x1a,0xb8,0x82,0xba,0xb1,0xe7,0xf8,0x4e,0xf5,0x80,0x1,0xb1,0x9c,0x86,0xd, + 0x7b,0x9f,0xf0,0x1c,0xdf,0xb8,0x16,0xb2,0xd0,0xa0,0x41,0xac,0x4e,0xe,0x9c,0x8b, + 0xbf,0xa1,0x22,0x8e,0x11,0xe4,0x90,0x33,0x94,0xc6,0x8d,0xab,0xa9,0x95,0x1,0xad, + 0x5d,0x67,0xb2,0x20,0x30,0x7,0x1,0x6b,0x81,0xbd,0x21,0xba,0x7a,0x45,0xa2,0x33, + 0x67,0x24,0xe6,0x4f,0x68,0xe8,0xe7,0x9f,0x34,0xf4,0xd3,0x4f,0xb2,0x1e,0x80,0x2f, + 0x1,0x19,0x80,0x3f,0x80,0x36,0xa4,0xba,0x6d,0x20,0xda,0x9a,0xe9,0x89,0x8c,0xf5, + 0xab,0x26,0x17,0xff,0x80,0x80,0xff,0x5,0xe3,0x1b,0xdb,0xa2,0xde,0xb,0xec,0x51, + 0x8f,0x21,0xb,0x7d,0x7a,0xc7,0xf2,0xdf,0x86,0xd,0x93,0x69,0xec,0xd8,0x28,0xae, + 0x27,0xc6,0x8c,0x89,0x52,0x50,0x34,0x7f,0x36,0x7c,0xb8,0x4c,0x78,0x47,0xfe,0xd6, + 0xf9,0x3b,0x6a,0xd2,0x24,0x96,0x5c,0x5d,0x63,0xb9,0xc,0x14,0x2e,0x4,0x5f,0x20, + 0x82,0x8a,0x14,0x5e,0xca,0xea,0xad,0xd,0x97,0x81,0xa0,0x7d,0x1a,0x5e,0x97,0xf1, + 0x9d,0x73,0x65,0x9d,0x37,0x45,0x8,0x7b,0xee,0x57,0xf9,0xbb,0xe8,0xf8,0x4e,0x3c, + 0xec,0x0,0xe4,0x9,0xbe,0x84,0x52,0x6,0x3a,0x76,0xb4,0x4d,0xf7,0xf8,0xa3,0xed, + 0x94,0x18,0x19,0x30,0x17,0xff,0x80,0x80,0x97,0x2c,0xda,0xd7,0x1c,0x3b,0xd4,0x7d, + 0xa1,0xbf,0x45,0xdd,0x7,0xfe,0xc0,0x1e,0xbf,0x3,0xf7,0xcf,0x3f,0x8f,0xa5,0xc9, + 0x93,0x23,0x8,0xef,0x80,0x20,0x37,0xde,0xde,0x6f,0xb4,0xd7,0x11,0xfc,0x77,0x21, + 0x3,0xd0,0x15,0x78,0x5f,0x27,0x3,0xcc,0x2f,0x28,0x5f,0x36,0x92,0xfb,0x85,0x59, + 0xed,0xaf,0xb0,0x30,0x5d,0xe8,0xc4,0x2f,0x1a,0xba,0xf6,0x9b,0x44,0x97,0x99,0x4e, + 0xbf,0x76,0x5d,0x96,0x1,0x60,0x7b,0xeb,0x96,0x1d,0xdd,0xf,0xb3,0xa5,0xa7,0x4f, + 0xb2,0x52,0x54,0x54,0x3e,0x8a,0x8c,0xcc,0xab,0xa5,0x7c,0x14,0x1e,0xee,0x40,0xf, + 0xee,0xdb,0xd1,0xbd,0xbb,0xb6,0x74,0xf1,0xa2,0x44,0x47,0x82,0x65,0x3a,0x70,0x50, + 0xf6,0x7,0xd0,0x36,0x80,0x4f,0x9,0x5b,0x30,0x9d,0xb5,0xd,0x87,0xe,0xd5,0xd0, + 0x17,0x5f,0x4c,0x48,0xd7,0xf8,0xb,0x1d,0x60,0xae,0xc,0x24,0x2,0xff,0x60,0xe0, + 0x86,0x7a,0x2d,0xf4,0x3e,0x6c,0x7c,0xab,0x56,0xf1,0xf8,0xb7,0x6e,0x15,0x46,0x53, + 0xa6,0x44,0x70,0x7c,0x3,0x3,0x5f,0x32,0x7a,0x45,0x5e,0x5e,0xbf,0x50,0xcf,0x9e, + 0x5f,0x51,0xbf,0x7e,0x7e,0x4c,0xe7,0x2f,0xa2,0xf1,0xe3,0xf7,0xe8,0xe4,0x60,0xc8, + 0x90,0x58,0x1e,0x9f,0x90,0x1,0xc4,0x83,0xf8,0x20,0x3,0xd0,0x1,0xf9,0x72,0x33, + 0x7f,0x90,0xb5,0xb,0xb,0x16,0xd8,0x45,0xdb,0xb6,0x55,0xe1,0xba,0xfe,0x37,0x26, + 0x3,0xc0,0x12,0xb2,0x70,0xf3,0xf,0x89,0xfe,0xf7,0xbf,0x5c,0x9c,0x4e,0x86,0xd6, + 0xa2,0x4d,0x5b,0xaa,0xd3,0x8a,0x15,0x65,0x68,0xde,0xbc,0x42,0xb4,0x71,0x53,0x5, + 0x7a,0xf6,0xcc,0x89,0xcb,0x4,0xe4,0xe0,0xf7,0xdf,0x65,0x3b,0x70,0xfa,0x8c,0x2c, + 0x3,0x7b,0x7e,0x96,0xfd,0x49,0x10,0x64,0x0,0x3e,0xe1,0x84,0x89,0x12,0x75,0xee, + 0x5c,0x90,0xf3,0x30,0x3d,0xe3,0xaf,0xdc,0xa3,0xd7,0x82,0xf8,0xeb,0xf4,0x36,0xb0, + 0x6,0xf6,0xad,0x5b,0xc9,0x7e,0x1f,0xf0,0xea,0xc1,0xec,0x41,0xcf,0x9e,0xb7,0x39, + 0xb6,0xc0,0xde,0xdb,0xfb,0x24,0x7d,0xfa,0x69,0x47,0xf6,0x5b,0x13,0x2a,0x52,0xa4, + 0x8,0x39,0x3a,0x3a,0xf2,0x73,0xc9,0x92,0x25,0xa9,0x56,0xad,0x6,0x2c,0xae,0x9f, + 0x78,0xd8,0xd1,0xa3,0xa3,0x75,0xbe,0xa4,0x52,0x6,0xe0,0xb,0x54,0x28,0x17,0xc9, + 0xdb,0x3,0x76,0x36,0xf,0xa9,0x69,0xb3,0xa9,0xf4,0xc7,0xef,0x4c,0xff,0x1f,0x93, + 0x58,0xbb,0x50,0xa2,0xb,0x4c,0x6,0x1e,0x3d,0xb4,0x63,0x7e,0x5d,0x39,0x1a,0x30, + 0xb0,0x3,0x35,0x6b,0xd6,0x8c,0x6a,0xd7,0xae,0x4d,0x75,0xeb,0xd6,0xe5,0x54,0xa7, + 0x4e,0x1d,0x72,0x71,0xf9,0x98,0xa6,0x4f,0xaf,0x46,0xcf,0x9f,0x97,0xa0,0xe8,0xe8, + 0xfc,0x5c,0x5e,0x20,0x43,0x78,0x57,0xb4,0x9,0x4,0xfe,0xd0,0x1,0x68,0x13,0x76, + 0xef,0x6e,0x93,0x60,0xee,0x85,0xb5,0x7d,0x3e,0x73,0x8,0x73,0x29,0x76,0xef,0xde, + 0x9d,0x24,0x19,0x30,0x17,0x7f,0x2f,0xaf,0x37,0xbc,0xae,0xe,0x1a,0x18,0x8f,0xbf, + 0x68,0xcb,0xd7,0xae,0xf5,0x96,0xe9,0xec,0xa7,0xcc,0x76,0x1f,0x67,0x7a,0xfd,0x20, + 0x4d,0x9a,0xb4,0x96,0x7a,0xf7,0xee,0x4d,0xed,0xda,0xb5,0xe3,0x98,0xb8,0xb8,0xb8, + 0xe8,0x70,0xc1,0xbc,0xbc,0xa,0x15,0x2a,0x70,0xea,0xdc,0xd9,0x97,0xcb,0x8a,0xd0, + 0x2b,0xf0,0x5,0xe0,0xf,0xc2,0xa6,0x34,0x6a,0x18,0x4b,0x55,0x3f,0x8e,0xd6,0xf5, + 0xd,0x64,0xcb,0xb2,0x8f,0xc6,0x8d,0xaf,0x4f,0xb3,0xfc,0x32,0xd3,0xcc,0x19,0xf0, + 0xe5,0x99,0xff,0xb6,0xd4,0x8d,0xef,0x89,0xd4,0xb3,0x67,0x4f,0x6a,0xde,0xbc,0x39, + 0xc7,0x5c,0xa4,0x3,0xaa,0x57,0xaf,0x1e,0x7f,0xd6,0xaa,0x55,0x1d,0x7a,0xf0,0xa0, + 0x24,0xd3,0x13,0xe,0x5c,0x6,0x2e,0x5c,0x90,0xe8,0xe4,0x29,0x89,0xb7,0x21,0x7f, + 0x64,0xf8,0xa3,0x4d,0x0,0x3f,0x0,0xfd,0x8a,0x83,0x6,0x67,0x62,0xba,0xaa,0x96, + 0xd5,0x31,0x4d,0xaa,0x1c,0x24,0x56,0x6,0xcc,0xc1,0x1f,0xed,0x7d,0xd8,0x6f,0x81, + 0x3f,0xea,0xa8,0xb2,0xdd,0xe6,0xc2,0x70,0xaa,0x5b,0x37,0x8c,0xf1,0x39,0x88,0xfa, + 0xf5,0x9f,0xcf,0xfb,0xef,0x1b,0x34,0x68,0x40,0x1e,0x1e,0x1e,0xd4,0xba,0x75,0xeb, + 0x4,0xd4,0xa6,0x4d,0x1b,0x1d,0x36,0xc5,0x8a,0x15,0x63,0x6d,0xaf,0x5d,0x5c,0x6, + 0xa0,0x7,0x10,0xbf,0xf0,0x2d,0xa0,0x3,0xd0,0x37,0x90,0xd7,0xe1,0x8d,0x56,0x7, + 0x3c,0xa2,0x2a,0x55,0x46,0xd0,0xb0,0xe1,0x39,0x59,0x1d,0xcd,0x44,0x63,0x27,0x34, + 0xe2,0xfb,0x65,0x8c,0x19,0x33,0x46,0x6f,0x3a,0x20,0xc8,0x1e,0xd2,0x29,0x5f,0xbe, + 0x3c,0x35,0xef,0xd8,0x94,0xe1,0x9f,0x93,0x9e,0x3e,0xcd,0xca,0xfd,0x6,0xb4,0xd, + 0xd1,0x37,0x20,0x74,0x0,0xfa,0x7,0x81,0x3f,0xda,0x1,0x3d,0x7a,0x54,0xb4,0x7a, + 0x1b,0x3f,0x39,0x84,0xb9,0xa9,0x62,0xaf,0x40,0x53,0x32,0x60,0xe,0xfe,0xf0,0xfd, + 0xa6,0x4c,0x89,0xd4,0xe1,0x23,0xea,0x3e,0xf0,0xa9,0xc6,0xda,0xec,0x85,0xa,0x3c, + 0x64,0x6d,0xf7,0xe3,0x54,0xb3,0xd6,0x42,0x86,0xc9,0x18,0x9a,0x38,0x71,0x22,0xaf, + 0x93,0xa3,0x46,0x8d,0xe2,0x34,0x6b,0xd6,0x2c,0x1d,0xe1,0x79,0xab,0x56,0xad,0x78, + 0xbd,0x84,0x2e,0xa8,0x5e,0xbd,0x3a,0xcd,0x9e,0xfd,0x98,0xc9,0xc0,0xff,0xb8,0x1d, + 0x80,0xe,0x80,0x7e,0x81,0xe,0x40,0x5b,0x40,0xd8,0x0,0xf4,0xf,0xe7,0xca,0x35, + 0x97,0x86,0x8d,0xc8,0x49,0x9f,0x7d,0x96,0x89,0x46,0x8e,0x1b,0xc6,0xf7,0x5,0x43, + 0x7c,0x22,0x2d,0x65,0x3a,0xb8,0xc7,0x73,0xec,0x43,0x6,0x79,0x2b,0x57,0xae,0x1c, + 0x6d,0xd8,0x50,0x9d,0xcb,0x0,0x74,0x0,0xda,0x4,0x67,0xcf,0x49,0xba,0x3e,0x5, + 0xe0,0x8f,0x76,0xc0,0xd4,0x69,0x12,0x8b,0xdf,0xce,0xea,0x18,0x5a,0x82,0xc0,0x5f, + 0x53,0x32,0x60,0xe,0xfe,0xb3,0x67,0xbf,0xf2,0x46,0xdb,0xd,0xb6,0x5f,0xd4,0x7d, + 0xf4,0xf3,0x1,0x7f,0xb4,0xd5,0x2b,0x56,0x88,0xa2,0x6c,0x59,0x57,0x53,0x99,0xb2, + 0x1e,0x1c,0x93,0xb9,0x73,0xe7,0x92,0xaf,0xaf,0x6f,0x2,0x3c,0xd4,0x4,0x7c,0x20, + 0x3,0x98,0xb,0x39,0x61,0xc2,0xf7,0xdc,0x57,0x84,0x1d,0x10,0x32,0x80,0x74,0x9a, + 0x35,0x4b,0x68,0x3,0x4,0xfe,0x3d,0x7a,0x7e,0xcc,0xdf,0x47,0x5a,0xa6,0xd2,0x1, + 0x41,0xde,0x60,0x83,0x9a,0xb7,0x6a,0xce,0xfc,0xc1,0xbc,0x4c,0x7,0x64,0xe3,0x7e, + 0xc0,0xc5,0x4b,0x72,0x7b,0x50,0xd9,0x37,0xc,0xfc,0x3b,0x75,0xfa,0x30,0xf0,0x37, + 0x47,0x6,0xcc,0xc5,0x1f,0xb8,0x24,0xd0,0xfd,0x8d,0xe2,0xfb,0xef,0xb3,0x65,0xb9, + 0x4c,0xd9,0xb3,0xad,0x66,0xf5,0xac,0x7,0xb7,0x41,0x89,0xc5,0x65,0xf8,0xf0,0x15, + 0xda,0xf6,0xc2,0xff,0x98,0xfe,0xd5,0xf6,0x2b,0xa2,0x3d,0xd1,0x5a,0x4e,0x3,0xfd, + 0xc2,0x76,0xa,0xfc,0x5b,0xb6,0x2c,0xce,0x74,0x74,0xf,0x3e,0x4f,0xd4,0x9c,0xb4, + 0x20,0x2b,0xb0,0x5,0xf0,0x11,0x9f,0x3e,0xcd,0x42,0x4f,0x9e,0xc8,0x36,0xe0,0xa2, + 0xc2,0x6,0xc0,0x7,0x9c,0x3b,0x57,0xfa,0xa0,0xea,0xbf,0x39,0x32,0x60,0xe,0xfe, + 0xcc,0xf6,0x7b,0xab,0x6d,0x7f,0x73,0xad,0xfe,0x2f,0x52,0x8,0xf8,0x5f,0xe1,0xf8, + 0x57,0xaf,0xd1,0x99,0xe3,0xbf,0x62,0xc5,0xa,0x1e,0xb7,0x12,0x3,0xa1,0x13,0x70, + 0x16,0x98,0x9,0x5c,0x3c,0x3d,0x97,0x69,0xdb,0xc,0xaf,0x75,0xf8,0x63,0x5c,0x1, + 0x36,0x0,0x69,0xc8,0xed,0x40,0x19,0xff,0x59,0xfe,0x8e,0xc,0xff,0x12,0xec,0x1d, + 0x4f,0x9e,0xe,0x64,0x40,0x8d,0xbf,0x48,0xb,0x79,0x11,0xbf,0x41,0xd6,0x3e,0xf9, + 0xe4,0x13,0x8e,0x3f,0xda,0x83,0x4a,0xfc,0x45,0xfd,0x9f,0x35,0x4b,0xe0,0x6f,0x6b, + 0x75,0x5f,0xce,0x12,0xa4,0xdc,0xe7,0xc9,0x90,0xc,0x98,0x87,0x7f,0x84,0x37,0xfa, + 0x74,0x4,0xfe,0x4a,0xfb,0x8f,0xb1,0x5e,0xdb,0x4c,0xf,0x49,0x23,0xed,0x24,0x27, + 0x67,0x77,0xea,0xdf,0xbf,0x3f,0xef,0x83,0x52,0xe3,0x22,0x30,0xc7,0x39,0x30,0x30, + 0x30,0x1,0x2e,0x83,0x6,0x2d,0xd6,0xb6,0x3,0x22,0x75,0x6d,0x4c,0xd8,0x0,0xf4, + 0x7,0xb9,0x32,0x1f,0xb3,0x70,0x41,0x15,0xfe,0xad,0x8a,0x53,0xcd,0x9a,0x35,0x75, + 0xf8,0x2b,0x71,0x56,0xca,0x19,0xca,0xa7,0x94,0x35,0x77,0xf7,0xf6,0x1c,0x7f,0xb4, + 0x3,0x44,0xbf,0xa0,0xd0,0xff,0x4a,0xfb,0x8f,0x7e,0xc0,0xf4,0xd4,0xfe,0x4b,0x8e, + 0xc,0x98,0x83,0xff,0xec,0xd9,0x2f,0xb9,0xfd,0x57,0xe2,0xef,0xae,0xad,0x9b,0xe5, + 0x99,0x7f,0x96,0x2f,0x4f,0x4,0x65,0x92,0x42,0x28,0x4f,0x9e,0x61,0x5c,0xc7,0x2, + 0x7f,0xd0,0x82,0x5,0xb,0x38,0xff,0x41,0x2,0xb,0x10,0x30,0x13,0xf2,0x31,0x60, + 0xc0,0x0,0x9a,0x36,0x2d,0x48,0x87,0x3f,0xf4,0xc,0xea,0x7f,0x1f,0xe6,0x67,0xb6, + 0x6f,0x27,0xfb,0x19,0x45,0x1c,0x23,0x13,0xe0,0xdf,0xa1,0x43,0x21,0xaa,0x5c,0xb9, + 0x32,0xcd,0x9c,0x39,0x93,0xa7,0x23,0xe4,0x40,0x99,0x6,0xae,0x45,0x3a,0x42,0x6, + 0xc6,0x8d,0xeb,0xc1,0xda,0x81,0x76,0xdc,0xff,0x3,0xfe,0x18,0x47,0xc0,0x18,0xb1, + 0xd2,0xff,0xc7,0x98,0xf0,0xc0,0x41,0xe5,0x75,0x7d,0x40,0xd6,0xee,0xcb,0x49,0xc, + 0x19,0x5a,0x53,0x61,0x4c,0x6,0xb4,0xcf,0x83,0x8d,0xe1,0x1f,0x10,0xf0,0x4a,0x87, + 0x3f,0xec,0x32,0xfa,0x7a,0x80,0x7f,0x23,0xe6,0x3,0xd4,0x63,0xf6,0x39,0x7b,0x96, + 0x87,0x94,0x23,0xdb,0x9f,0x64,0x67,0xb7,0x99,0x4a,0x95,0xae,0xc6,0xfd,0x7f,0x21, + 0x3,0xa0,0xe5,0xcb,0x97,0x73,0x8c,0x20,0xf,0xb3,0x67,0xcf,0xd6,0x5d,0x23,0xbf, + 0x6d,0xda,0xb4,0x67,0xcf,0x5e,0xe9,0x74,0xbf,0x18,0x43,0x40,0x5a,0xa8,0xff,0x68, + 0x63,0x42,0xff,0xc3,0xfe,0x63,0xce,0x20,0xf0,0x1f,0x36,0x22,0x17,0xab,0xff,0x95, + 0x79,0xdf,0x12,0xe2,0x52,0xa6,0x85,0x78,0x41,0xc0,0x5d,0x99,0x2e,0xf4,0xd2,0xea, + 0xd5,0x1f,0xd3,0xad,0x9b,0x72,0x1f,0x22,0xea,0xfe,0xf1,0x13,0xb2,0xff,0x2f,0xe6, + 0x87,0x88,0xf6,0xff,0xd8,0xb1,0xcd,0xd3,0x6d,0xff,0x5f,0x62,0xf5,0x0,0xbb,0xf7, + 0x36,0x86,0xbd,0xc2,0x6,0x70,0x5c,0x94,0xe3,0x7e,0xb0,0x1,0xf0,0xcf,0x30,0xd7, + 0x27,0x47,0x56,0xd8,0x81,0x2b,0x94,0x3b,0x37,0xe6,0x7c,0xd6,0x27,0x7f,0x7f,0xff, + 0x4,0xb8,0xa8,0x31,0x2,0x2e,0x83,0x6,0xd,0x62,0x75,0x72,0x7d,0x82,0xba,0x2f, + 0xf0,0x47,0x3a,0xb0,0xff,0x88,0xdf,0x2e,0x93,0xdc,0xfe,0x73,0x72,0x9e,0xc4,0xf0, + 0x2f,0x4c,0xc3,0x86,0x3b,0x50,0xbb,0x76,0x85,0xa9,0x78,0xf1,0xe2,0x3a,0x7b,0xa3, + 0x8f,0x80,0x3f,0x68,0xde,0xbc,0x79,0xd4,0xb9,0x73,0x17,0xba,0x78,0xd1,0x85,0x8f, + 0x1b,0xa0,0xff,0x7,0x75,0x5f,0xf8,0x7e,0xe8,0xff,0x1,0xfe,0x18,0x3,0xc0,0x7c, + 0xd2,0x2d,0x5b,0xd6,0x7f,0x70,0xf8,0x1b,0x90,0x1,0xa3,0xf5,0x3e,0xa1,0xe,0x90, + 0xc7,0xfc,0x7,0x29,0x64,0xc0,0x5d,0xdb,0x46,0xc7,0x58,0x4d,0x91,0x42,0x6f,0xf8, + 0x1c,0xcf,0x2c,0x99,0xf7,0x51,0xa1,0x42,0x9f,0x51,0xa9,0x52,0xa5,0xa9,0x57,0xaf, + 0x5e,0x3a,0x7f,0x10,0x24,0xae,0x71,0x46,0x1f,0xc5,0xf0,0xe1,0x5e,0x2c,0xce,0xb, + 0x24,0xc6,0x95,0xa0,0xf3,0x95,0x73,0x5,0x9a,0x36,0x8d,0x65,0xed,0x8b,0x48,0x5d, + 0xff,0x4f,0xdb,0x76,0x1d,0xc8,0xd7,0xaf,0x30,0x4d,0x99,0x96,0x85,0xf7,0xd3,0x36, + 0x6b,0xe6,0x44,0x85,0xb,0x17,0xe6,0x7a,0x0,0x3a,0x47,0x5f,0x5a,0x93,0x26,0x4d, + 0xa2,0x6e,0xdd,0xba,0xd3,0xb7,0xdf,0x36,0xa1,0x63,0xbf,0xc8,0x63,0x7,0x27,0x4e, + 0x68,0xc7,0x2,0xb5,0xf3,0x82,0xe0,0xfb,0xa3,0xff,0xcf,0xcf,0x5f,0xa2,0xde,0x7d, + 0x6c,0x38,0xee,0xe2,0x9b,0x74,0xd6,0xc6,0xd3,0x92,0xf8,0xab,0x65,0xc0,0x94,0xde, + 0x57,0x1e,0xd3,0xa7,0xbf,0x9,0x1e,0x36,0x2c,0x5a,0xa7,0x9b,0x45,0x5f,0x0,0xfa, + 0xfe,0xe1,0x7,0xa0,0x9f,0x26,0x47,0x36,0x8c,0xd9,0x3e,0xa2,0xcc,0x76,0x9b,0xa8, + 0x70,0x91,0x6e,0x54,0xb2,0x64,0x4d,0x86,0x4f,0x11,0xde,0x7,0x7,0x3f,0xaf,0x53, + 0xa7,0x4e,0xbc,0x9f,0xb6,0x6e,0xdd,0x66,0x54,0xaf,0x7e,0x37,0xe6,0x8f,0xed,0x65, + 0xf5,0xf8,0x28,0x97,0x27,0xd8,0x94,0x76,0x6d,0xe3,0x74,0x73,0x84,0x50,0xf7,0x75, + 0xba,0x9f,0xd5,0xff,0x82,0x5,0x4e,0xd3,0xc4,0xc9,0x65,0x59,0x1b,0x3d,0xf,0xef, + 0xa7,0xc7,0x58,0xd,0x64,0xa0,0x7d,0xfb,0x52,0x4c,0x96,0x2b,0x50,0xc1,0x82,0x5, + 0xb9,0x3e,0x40,0x3a,0xe8,0xf,0xfc,0xec,0xb3,0xcf,0x78,0xdf,0x92,0x87,0x87,0x1b, + 0xf3,0xb,0x3f,0xa1,0x6d,0xdb,0x64,0x7d,0x7f,0xf2,0xa4,0x94,0x60,0x4e,0x90,0xc0, + 0x1f,0xf3,0x48,0x31,0x37,0x74,0xcf,0xde,0xf8,0xb5,0x6b,0x29,0x4d,0x62,0x7f,0xd4, + 0xd4,0xc4,0x5f,0x8f,0xc,0x98,0x59,0xff,0x5f,0x7a,0x8b,0x7e,0x7a,0x60,0x8f,0x33, + 0xc6,0xed,0xe5,0xbe,0xfa,0x38,0xde,0x4f,0x3,0x1d,0x90,0x2f,0xf,0xf4,0x40,0x24, + 0xf3,0x7,0x8f,0x51,0x36,0xd6,0x26,0x74,0x74,0x9c,0x40,0x25,0x9c,0x9a,0x33,0x7c, + 0x1a,0x30,0x59,0x68,0x4c,0xc5,0x8a,0x7b,0xb2,0x67,0x93,0xa9,0x90,0xe3,0x24,0x6a, + 0xd1,0x22,0x84,0x8f,0x19,0xf0,0x71,0xe4,0x76,0xb2,0x3e,0x69,0xaf,0xa5,0x66,0xcd, + 0x64,0x99,0x2,0xf6,0xd9,0xec,0xdf,0x50,0x87,0x8e,0x53,0x28,0xf8,0x98,0x44,0xdf, + 0x7f,0x2f,0x51,0x40,0x20,0xd3,0xd5,0x33,0xe4,0x39,0xfe,0x18,0xb3,0x85,0xbf,0xde, + 0xb6,0x6d,0x5e,0x6a,0xd0,0x20,0x1f,0x55,0xab,0x9e,0x95,0xc9,0x5b,0x56,0xf6,0x7e, + 0x7e,0x96,0xcf,0xcc,0x5c,0x56,0x30,0xb6,0x83,0xb1,0xde,0x9f,0x7f,0x92,0xe7,0x80, + 0x81,0x4,0xf6,0x2,0x7f,0xcc,0x2f,0xed,0xdb,0x37,0x13,0x5f,0x97,0x2f,0x8,0xdf, + 0x78,0x50,0xde,0x5b,0x92,0xcc,0x5d,0x1f,0xad,0xc2,0x8a,0xdf,0x27,0x17,0x7f,0x73, + 0xdb,0x7d,0xea,0xc3,0xcb,0xeb,0x29,0x9f,0xbf,0x1,0xec,0xc7,0x8d,0x93,0xfb,0x3, + 0xa1,0xa7,0xe5,0x79,0x1b,0xb2,0xc,0x38,0x97,0x90,0x65,0x20,0x47,0xd6,0x37,0xdc, + 0x6f,0xcf,0xe3,0x70,0x95,0xa,0x3b,0x5e,0xa3,0xec,0xd9,0xbe,0xe5,0xf2,0x50,0xa4, + 0xc8,0x2e,0x2d,0xed,0xa4,0xb2,0x65,0x7e,0xa5,0x2a,0x95,0x1f,0x73,0x3f,0x12,0x71, + 0x80,0x20,0xb,0x4d,0xd9,0xb9,0x4e,0xed,0x18,0xca,0x9b,0x5b,0xee,0xf7,0xcb,0x9a, + 0xf9,0x11,0x2d,0x5d,0x5e,0x81,0x8e,0x32,0x9d,0xbd,0x63,0xa7,0x86,0x16,0x2e,0x42, + 0x5b,0x8d,0xf9,0x6b,0xac,0xbd,0x86,0x39,0xe1,0x63,0xc6,0xc8,0x72,0xd0,0xbf,0x7f, + 0x26,0x6e,0xbf,0x27,0x4e,0x94,0x65,0x3,0xf6,0x1c,0x7d,0x7a,0xd0,0xed,0x2b,0x57, + 0x48,0xdc,0xcf,0xdf,0xbc,0x49,0x93,0x60,0x8e,0x30,0xc6,0x80,0x80,0xff,0x2c,0x3f, + 0x89,0x66,0x32,0x59,0x69,0xd4,0xa8,0x91,0x8e,0x1a,0x36,0x6c,0x98,0xe0,0xde,0x92, + 0x4,0x1f,0xc8,0xd4,0xfa,0x68,0x81,0x11,0xd6,0xff,0xb,0x12,0xfb,0x5a,0x18,0xda, + 0xd3,0x22,0x25,0xf1,0x87,0xe,0x60,0x6d,0x41,0x3e,0x8f,0x47,0xb4,0xd3,0xb9,0xe, + 0x68,0x27,0xe3,0x7,0x7d,0xcd,0xdb,0x84,0xcc,0x1f,0x28,0xe9,0xf4,0x86,0xeb,0x6e, + 0xc8,0x1,0xea,0x70,0xe,0xe6,0x1b,0xa0,0x9d,0x28,0x8,0xfd,0x86,0x98,0xeb,0x7, + 0x99,0x1,0xd6,0x8d,0x1a,0xc5,0xf2,0x31,0x1f,0x90,0xb2,0xdf,0x1f,0xef,0x76,0xec, + 0x38,0x83,0xeb,0x6e,0xd4,0xff,0x83,0x87,0x24,0xda,0xb5,0x4b,0xa2,0xed,0xdb,0x19, + 0xa6,0xdf,0x68,0x68,0xe9,0x52,0xd,0xaf,0xbb,0xd3,0xa6,0x4b,0x5c,0x16,0x80,0x39, + 0x74,0x3,0xda,0xf2,0x1,0xb3,0xe5,0xba,0xff,0xd5,0x12,0x16,0xf6,0x6b,0x79,0xee, + 0xf0,0xf6,0xed,0xb2,0xee,0x47,0xbb,0x1f,0xf1,0x1,0x7f,0x3c,0x47,0xb8,0xf6,0xee, + 0x1f,0xa7,0x1a,0xfe,0x42,0x7,0x18,0xc2,0x1f,0xbe,0x7,0xb0,0xc6,0xf8,0x16,0xbe, + 0x3d,0x2b,0xda,0xeb,0xe8,0xf7,0x12,0x7b,0xe,0xa4,0x36,0xfe,0xb2,0xc,0xbc,0xd2, + 0xc9,0x80,0x68,0xab,0x2b,0xe7,0x6d,0x34,0x6d,0x8a,0x79,0xbd,0xb1,0xba,0x39,0xff, + 0x7c,0x6e,0x2f,0xc3,0x12,0xba,0x0,0x4,0x7f,0xae,0x52,0x85,0x68,0x8e,0x3b,0x7e, + 0xc7,0x5c,0x1f,0xf8,0x79,0x78,0x17,0x71,0x34,0x6c,0x28,0xbf,0xb,0x5b,0xc2,0xe7, + 0x2,0x67,0xf9,0x93,0xb6,0x6d,0xcf,0xcb,0x7d,0x37,0xd0,0xc9,0xd3,0x12,0xd7,0x3, + 0x7b,0x83,0xe4,0xf9,0x60,0x42,0x8f,0xc3,0x87,0x5f,0xbb,0x56,0xc3,0xfb,0xf1,0x50, + 0xdf,0x79,0x9d,0x5f,0xa9,0x5d,0x23,0xa0,0x9d,0x2f,0x8e,0x3a,0x8f,0xb9,0x7f,0x98, + 0x17,0x8c,0x38,0x84,0x3f,0x70,0xe5,0xaa,0x2d,0xfd,0xb0,0x2d,0xff,0x7b,0x18,0x59, + 0xb,0xff,0x7b,0xf7,0xee,0xf1,0xdf,0xb0,0xb7,0xf7,0xae,0x5d,0xbb,0xde,0xdb,0xf, + 0x4,0x32,0x21,0x19,0xb0,0x5,0x29,0x8d,0xbf,0x56,0x6,0x74,0x3e,0xfb,0x40,0x6d, + 0x3b,0x9d,0x63,0xaf,0xd5,0xe1,0x2,0x4b,0x21,0xf,0x7c,0x4e,0xb8,0x6b,0xac,0x6e, + 0xfd,0x7,0xf4,0x4,0x70,0x16,0x78,0xe3,0xdc,0xb4,0x49,0x1c,0xf,0xab,0x5b,0x17, + 0xc0,0x74,0x3,0x74,0x47,0x93,0xc6,0x4b,0xe8,0xf2,0x15,0x3b,0xee,0xb7,0xff,0xf1, + 0xbb,0xa4,0x6b,0xbf,0x85,0x1c,0x97,0xe5,0x1,0x73,0x79,0x20,0xb,0xf0,0xe9,0x80, + 0xad,0xd0,0xe9,0xc0,0x1a,0xf5,0x1c,0xb6,0x1e,0xe7,0xa0,0x7d,0xf2,0x3c,0x62,0x60, + 0x8e,0x39,0x40,0x18,0xff,0x45,0x1f,0xd0,0xc3,0x7,0x76,0x7c,0xbe,0xd8,0xe0,0x41, + 0x1f,0xa7,0x19,0xfc,0xf1,0x1c,0xfb,0xe5,0x8b,0xbd,0xdd,0x21,0x3,0xd0,0xf7,0xd0, + 0x3,0x38,0x43,0xf,0xc0,0xc7,0xd5,0xa7,0x3,0x52,0x7,0xff,0x47,0xc1,0xd0,0x1, + 0xc2,0x6,0xc0,0x7,0x80,0xc,0x60,0xe,0x6f,0x6b,0x2d,0xee,0x2,0x7f,0xb5,0x2c, + 0x8,0x52,0x3e,0x97,0xf1,0x8f,0xe5,0xb2,0xc0,0xd7,0x3,0xc0,0x8f,0x28,0xfe,0x86, + 0xeb,0x8a,0x9,0x13,0xbe,0xa0,0xdb,0xb7,0x8b,0xf3,0x39,0x5e,0xe8,0xb7,0x3,0xa1, + 0xf,0x47,0xc8,0x1,0xe4,0xe2,0x4c,0xa8,0x2c,0xf,0x47,0x83,0xe3,0x75,0x3,0x64, + 0x81,0xf7,0xed,0xb2,0x6b,0xc8,0xc8,0xe1,0x23,0x72,0x38,0xcc,0xfd,0x11,0xb8,0x3f, + 0x7b,0x9a,0x8d,0x63,0x1f,0x1a,0x5a,0x5c,0x2f,0x46,0xd6,0xc4,0x5f,0x60,0x2f,0xce, + 0xc0,0x1e,0x84,0xfa,0x8f,0xb3,0xd8,0x13,0xc8,0x3a,0xf8,0x3f,0xe1,0xf3,0xfc,0x44, + 0x7f,0xd,0xb0,0x17,0xb6,0x1b,0x32,0x0,0x7c,0x71,0x2d,0x7c,0x79,0xf8,0x7,0x62, + 0x9e,0xb0,0xa0,0xf6,0xa,0x5f,0xbf,0x89,0x42,0x6f,0x34,0xd2,0xda,0xe,0xd8,0x7f, + 0x67,0xa7,0xbf,0xa8,0x9a,0x7b,0x57,0x1a,0x31,0xa2,0x3a,0x45,0x45,0xe5,0x61,0x94, + 0x9f,0xee,0xdf,0xb7,0xe3,0x24,0xe4,0xe0,0xb7,0xab,0xb2,0x2c,0x40,0xe,0x20,0x3, + 0x4a,0x42,0x3d,0x7,0x1,0x73,0x84,0x41,0x78,0xbc,0x87,0xf1,0x5f,0xc4,0x65,0xc, + 0x7b,0x6b,0xe3,0x7f,0x4f,0xfb,0x6d,0x87,0xe3,0xc7,0x8f,0xeb,0x9e,0xa3,0xbf,0x4e, + 0xc8,0x0,0xfa,0x4f,0xac,0x81,0xbf,0xbf,0xff,0x1d,0x6f,0x51,0xf7,0xd1,0xf,0x20, + 0xc6,0xea,0x5,0xfe,0xc0,0x5a,0xb7,0xd6,0xa3,0x9b,0x7c,0x8d,0xf6,0xbd,0xa7,0xa7, + 0x3c,0xcf,0x1b,0xd4,0xb1,0xc3,0x3b,0x5d,0x1f,0xa2,0x72,0x1e,0x31,0xd7,0x3,0x4d, + 0x63,0x75,0x3e,0x24,0xd6,0x13,0x36,0xec,0xec,0xcf,0xf9,0x5,0x19,0x8,0xd,0x2d, + 0xc6,0xc7,0xef,0x5f,0xbc,0xc8,0xc5,0x31,0x14,0xfa,0x40,0xc8,0x82,0x7a,0xde,0xb7, + 0xc0,0x5b,0x90,0x8c,0x3b,0xe6,0x8,0xe7,0xe1,0xd8,0xaf,0x5a,0x55,0xc1,0x28,0x46, + 0xd6,0xb4,0xff,0xf8,0x66,0xce,0xe5,0xcb,0x97,0xf9,0xf7,0x73,0x20,0x3,0xca,0xef, + 0x7c,0x58,0xd3,0xfe,0x63,0x1e,0x30,0x6c,0xbf,0x98,0xb,0x24,0xe6,0xeb,0x1,0x3b, + 0xe0,0x88,0x7b,0xcc,0xe3,0x84,0x5f,0x20,0x8,0x36,0x42,0x79,0x1e,0xa8,0x95,0x9b, + 0xe,0x1e,0xef,0x12,0xac,0x21,0x11,0xba,0x40,0xf8,0x0,0xd0,0x1,0x4e,0x4e,0x93, + 0x12,0xf0,0x4d,0xc8,0x81,0x8c,0x21,0xe6,0xf6,0x32,0x59,0x78,0x92,0x4d,0xa7,0x13, + 0xd4,0x78,0x87,0x87,0xe7,0x64,0xbc,0xcc,0xa9,0x98,0x17,0x9e,0x87,0xe1,0x5e,0xde, + 0x2c,0x8c,0xac,0xe9,0xff,0xe3,0xb7,0x7f,0xff,0xfd,0x97,0x63,0x2f,0x74,0x80,0x90, + 0x3,0xc8,0x87,0xbe,0xba,0x9f,0xa,0xed,0x3f,0x57,0xcc,0x3,0xc6,0x5c,0x30,0xd4, + 0x7d,0x61,0xf7,0x95,0xf3,0xc0,0x81,0xab,0x7a,0x1d,0xc8,0xd0,0xa1,0xb1,0x5c,0x5f, + 0x88,0xb3,0x78,0x2e,0x64,0x1,0xfa,0x40,0xc8,0x90,0xe8,0x4f,0x12,0x3a,0xa0,0x79, + 0xb3,0xa7,0x6,0x79,0x8,0x1c,0xbf,0xf9,0xa6,0x82,0x2,0x5b,0x43,0x94,0x87,0x87, + 0x33,0x17,0xf7,0xb4,0x80,0x3f,0xfa,0x6,0xf1,0x7b,0x58,0x58,0x18,0xc7,0x5b,0x9c, + 0xa1,0x17,0x8c,0xf5,0x1d,0xa6,0x2c,0xfe,0xff,0xb,0xc6,0x58,0x9d,0x72,0xd,0x80, + 0xc0,0x4d,0xe0,0xf,0xfd,0x3e,0x70,0x40,0xc,0x1f,0xcb,0x13,0xeb,0x3f,0xe4,0xb9, + 0x3d,0xf1,0x84,0xb1,0x1e,0xb1,0xe,0x48,0xe8,0x5,0xc8,0x80,0x68,0xf,0x88,0x76, + 0x2,0xea,0x3f,0xfa,0x1,0xe1,0x3,0xa4,0x14,0xe,0x69,0x15,0x7f,0x75,0x5b,0x50, + 0x10,0xee,0xad,0xd1,0xff,0x27,0xaf,0xf9,0x95,0xeb,0x3e,0xf0,0x82,0x9d,0x57,0xfa, + 0xfa,0xee,0x5a,0x3f,0xf,0xba,0x1f,0x73,0x45,0x64,0xdc,0xb1,0xfe,0x23,0x8c,0x66, + 0xcf,0xbe,0xc7,0x6c,0xd5,0x36,0x9a,0x3e,0xfd,0x4,0xd3,0xdf,0x27,0xd8,0xfd,0x53, + 0xed,0x7c,0x9f,0x57,0xba,0xf9,0x3e,0x62,0x6e,0x1,0xfc,0x47,0x81,0x7f,0x45,0x66, + 0xff,0xcb,0x96,0xb9,0x43,0x9d,0x3a,0x7d,0xfb,0x9f,0xc5,0x3f,0xb1,0x94,0x52,0xf8, + 0x8b,0x36,0xdf,0xd8,0xb1,0xd1,0xba,0x39,0xda,0xf0,0xf3,0x51,0x3f,0xd1,0x7f,0xb, + 0xdc,0x60,0xf,0xc6,0x8d,0x8b,0xe6,0xd8,0x62,0x4e,0xef,0xf8,0x9,0xeb,0xa8,0x53, + 0x67,0x4f,0x2a,0x51,0xa2,0x4,0x1f,0xa7,0xc3,0xb9,0xd2,0x47,0x1f,0x51,0xe3,0xc6, + 0x3,0xc8,0xb3,0xef,0x1a,0x2e,0x1f,0x42,0x6,0x20,0x53,0x62,0xcc,0xd7,0xb5,0x51, + 0xfc,0x3a,0x50,0xac,0x2d,0xa8,0xf5,0xd9,0x9e,0xff,0x34,0xfe,0xf0,0xf3,0x4,0x59, + 0x3,0xff,0xf8,0xba,0x2f,0xb7,0xf9,0x80,0xb3,0xbb,0x16,0x27,0xb1,0xee,0x1f,0x73, + 0x2,0x81,0xdf,0xec,0xd9,0x77,0x59,0x9d,0xff,0x91,0x7a,0xf5,0x1e,0x6c,0x74,0xfd, + 0x47,0xb5,0x6a,0xd5,0x68,0xfc,0xf8,0xdd,0x3a,0x19,0x10,0xf3,0x7e,0x31,0xe,0x28, + 0xfa,0x0,0xa1,0xff,0x41,0x45,0xea,0x1e,0xfe,0x4f,0xe2,0xaf,0x1e,0xfb,0x11,0x64, + 0x4c,0xe,0x52,0x2,0xff,0x80,0x80,0xbb,0xde,0x72,0xdd,0x4f,0x38,0x7,0x4c,0xf4, + 0xf7,0xa3,0xff,0x1e,0xf8,0xf7,0xef,0x7f,0x89,0xe6,0xcf,0x5f,0x47,0xd3,0xa6,0x4d, + 0x33,0x6b,0xfd,0x47,0xe9,0xd2,0xa5,0x69,0xd6,0xac,0xab,0xba,0x35,0x40,0x3,0xb5, + 0x6b,0xc2,0x95,0xeb,0xbf,0x30,0x4e,0xe0,0xee,0x7e,0x8f,0xaa,0x54,0xf1,0xf8,0x4f, + 0xe1,0x8f,0xb5,0x2d,0xc0,0x7,0x7d,0xfd,0xa2,0xcf,0xcf,0x5b,0xb1,0xdf,0xb0,0x98, + 0xc3,0x93,0x1a,0xf8,0x63,0xfe,0xb7,0x97,0xd7,0xeb,0x4,0xeb,0x73,0x4,0xfe,0x62, + 0xfd,0x4f,0xa3,0x46,0xf7,0x58,0xdd,0xdf,0x4f,0x73,0xe6,0xcf,0xa6,0x9,0x13,0x26, + 0x98,0xbd,0xfe,0xe3,0xd3,0x4f,0x7b,0x68,0xfd,0x81,0xf8,0xb9,0xdf,0xf0,0x23,0xd0, + 0x6,0x40,0xdc,0x4e,0xc5,0x23,0x58,0x3a,0xd1,0x54,0xbb,0xce,0xec,0xff,0xc,0xfe, + 0xc2,0xf7,0x5f,0xb2,0x64,0x9,0x5f,0xd7,0x87,0xfe,0x1e,0xb1,0x57,0x38,0xce,0xa2, + 0xef,0x4f,0xdf,0x18,0x60,0xca,0xd4,0x7f,0x79,0x6e,0xb6,0x3e,0xfc,0xd1,0x57,0xb, + 0xaa,0x5d,0x2b,0x94,0xa6,0x4e,0x9b,0xc7,0xe7,0x7d,0x25,0x66,0xfd,0x47,0xa9,0x52, + 0xa5,0xd8,0xfd,0x25,0xdd,0x1a,0x30,0xe8,0x0,0xd8,0x0,0x81,0x3f,0x74,0x0,0xc6, + 0x90,0xda,0xb5,0xfd,0x87,0x5a,0xb6,0x1c,0xf6,0x9f,0xc0,0x1f,0xed,0x7e,0x90,0xb8, + 0x5f,0xbb,0x76,0xad,0xe,0x7f,0xa5,0x1e,0xd0,0xa7,0x3,0x52,0xa8,0xfe,0xeb,0xc6, + 0xfd,0x95,0xf8,0xcb,0xfb,0x34,0x60,0x1c,0x37,0x92,0x6a,0xd6,0xfc,0x95,0xfd,0x3e, + 0x33,0x49,0xeb,0x3f,0xc6,0x8c,0xfd,0x96,0xfb,0x1,0xf0,0x2f,0x50,0xff,0x85,0xf, + 0x10,0xbf,0x37,0x50,0x14,0x39,0x3b,0x5d,0x66,0x3a,0x60,0x66,0xaa,0xeb,0x0,0x6b, + 0xe0,0xaf,0xec,0xff,0x45,0xff,0x1f,0xce,0x2,0x7f,0xdc,0x3,0xff,0xd4,0xec,0xff, + 0xf,0xc,0x7c,0xcd,0xfd,0xfa,0x41,0x83,0xe4,0x75,0x19,0xc0,0xe7,0xd3,0x36,0x71, + 0x54,0xaf,0x6e,0xc,0xe5,0xcf,0x1b,0x49,0x45,0xb,0x47,0xb2,0x7a,0xbc,0x9a,0xd9, + 0xfb,0xf8,0xf5,0x1f,0x86,0xd6,0x64,0x28,0xd7,0x7f,0xc0,0xc6,0xc1,0x17,0xe8,0xdb, + 0x77,0x16,0x21,0xd,0xb1,0xc6,0x10,0xf1,0x37,0x6b,0x2a,0xf7,0x3,0x56,0x73,0x79, + 0xcb,0xdb,0x0,0x55,0xaa,0x1c,0x67,0x61,0xff,0x5b,0xf8,0x8b,0x3e,0x3f,0xd1,0xff, + 0x27,0xfa,0xfe,0xad,0x85,0x3f,0xda,0x68,0x90,0x1,0xf4,0xf9,0x79,0xb8,0xc7,0x51, + 0xf5,0x6a,0x31,0x94,0x33,0x7b,0x24,0xa7,0x1c,0xd9,0x56,0x33,0x9d,0xd4,0x84,0xcf, + 0xe7,0xc7,0xdc,0x5b,0xe5,0x9a,0xc,0xe5,0xfa,0xf,0x25,0xfe,0x78,0xe,0x7f,0xd0, + 0xd3,0xd3,0x57,0x87,0xbf,0x98,0x57,0x8,0xfc,0xb1,0xfe,0xf,0x3a,0x6,0xeb,0xb, + 0xeb,0xd7,0xff,0x85,0x6a,0xd5,0x5e,0x62,0x71,0x1c,0x9a,0x36,0xad,0xca,0xfc,0xd2, + 0x52,0x3a,0x4a,0xb,0xf8,0xb,0xfd,0x8f,0x7a,0x2f,0x48,0x69,0xb,0x20,0x3,0xa9, + 0xa9,0xff,0x81,0x8d,0xd8,0xab,0x45,0xe0,0x2f,0xea,0x7f,0x2e,0x86,0xbd,0xbd,0x6d, + 0x24,0xd9,0x6a,0x8e,0x51,0x91,0xa2,0x1e,0x7c,0x2e,0xae,0x98,0x7f,0x2d,0xd6,0x5e, + 0xa8,0xeb,0x3e,0x64,0x43,0xc8,0xc7,0xc0,0x81,0x3,0x69,0xf2,0x94,0x95,0x3a,0xfc, + 0x45,0xfb,0x2,0x6b,0xff,0x9a,0x69,0xf7,0xf,0xac,0x5d,0x93,0xe9,0x0,0x66,0x5f, + 0xa,0x17,0x99,0x6c,0x71,0xec,0x3b,0x75,0xca,0xcc,0x7c,0x52,0x5b,0xd6,0x76,0xb1, + 0xe1,0xe7,0xf6,0xed,0xdf,0x9f,0x7,0x92,0xda,0xf8,0xb,0xff,0xef,0x9e,0xe2,0xfb, + 0xee,0x4a,0x19,0x10,0xed,0xc2,0xd4,0xf2,0xff,0x18,0x36,0xde,0xea,0xfa,0xf,0xfc, + 0x61,0x9f,0xb,0xe4,0x8b,0xe2,0xf8,0x67,0xb1,0x8b,0xa4,0x5c,0x39,0x97,0x50,0xd1, + 0xa2,0xc5,0xf8,0x9c,0x6b,0xe5,0x3c,0x7c,0x31,0x27,0x5b,0xc8,0x83,0x72,0xdd,0x56, + 0xd3,0xe6,0x4d,0x29,0x20,0xe0,0xe,0xb7,0xff,0xf0,0x31,0x80,0x3f,0xdf,0x5b,0x44, + 0x8b,0x3f,0xf4,0x3f,0xea,0xff,0x27,0xf5,0x9f,0x31,0xfc,0xa7,0xa4,0x8,0xf6,0x63, + 0xc7,0x4a,0x7c,0xce,0x20,0x8,0xf7,0xf8,0xcd,0x9a,0xf8,0xb,0x1d,0x20,0xc6,0x80, + 0x84,0x1d,0x50,0x3e,0x87,0xed,0x4c,0xad,0xf6,0x1f,0xf0,0xf7,0xf1,0x79,0xf3,0x9e, + 0xfe,0x47,0xdd,0xc4,0xfa,0x9f,0x9c,0x5a,0x1d,0x90,0x15,0x73,0xff,0x1d,0x5b,0xf3, + 0x35,0xf7,0x1,0x1,0x1,0x6,0xd7,0x65,0x0,0x7b,0xc8,0x0,0x6c,0xc5,0xa0,0x21, + 0xb3,0x79,0xfb,0x6f,0xcc,0x98,0xb7,0x4c,0x17,0xc8,0xe3,0xc4,0x2,0x7f,0xcc,0x29, + 0x85,0xef,0x57,0xca,0x39,0x8a,0xca,0x97,0xbd,0x6e,0x31,0xfc,0x5b,0xb7,0x2e,0xc9, + 0xb1,0x7,0x61,0xde,0x28,0xd6,0xfc,0x81,0x30,0xff,0x13,0xf7,0xa9,0x61,0x7,0xcc, + 0xe9,0xff,0x11,0x58,0xab,0xc9,0xd8,0x18,0x40,0xa,0xe1,0xef,0xaa,0xb4,0x1,0xf0, + 0x1,0x95,0x7b,0x37,0x56,0xaa,0xf8,0x96,0xe3,0xf,0x72,0x76,0xde,0xcc,0x64,0xa0, + 0x26,0xdf,0xdb,0x3,0x7b,0xc0,0x18,0x5a,0xff,0xd1,0xa7,0x4f,0x1f,0x6a,0xe7,0xee, + 0xce,0xe4,0xe9,0x34,0x8d,0x1f,0x17,0x95,0xa0,0x6d,0x1,0xec,0xc5,0x3c,0x0,0xcc, + 0x1,0xaa,0x58,0x21,0x9a,0xb5,0x33,0x7e,0xa3,0xda,0xb5,0x1b,0x31,0xfd,0x9c,0x97, + 0xfd,0xe6,0x92,0xc4,0x3a,0xef,0x42,0xed,0xdd,0xf3,0x32,0xdc,0x6d,0x13,0x60,0xf, + 0xdc,0x3,0xe7,0xc8,0x84,0x67,0xf8,0x2d,0x2d,0xe0,0x2f,0x8,0x78,0xb,0x32,0x15, + 0x36,0xa5,0xfa,0xff,0x81,0xff,0xd4,0xa9,0x91,0x3a,0xfc,0xc5,0x1a,0xc0,0xa6,0x5a, + 0x3f,0x1d,0x38,0x1,0xff,0xcc,0x36,0x7f,0x52,0xf1,0xe2,0x9b,0x99,0x1d,0x68,0x4a, + 0x85,0xa,0x15,0xa5,0x2,0x5,0xa,0x70,0x7d,0x80,0xb6,0x1e,0xfa,0x83,0xeb,0xd7, + 0xaf,0x4f,0x35,0x6a,0xd6,0x60,0xd4,0x89,0x5c,0xdd,0xe6,0x52,0xe3,0xc6,0xc7,0x78, + 0x5c,0x62,0x1f,0x48,0xae,0xf7,0xb5,0x71,0x8a,0xba,0x8f,0xb8,0x9d,0x8a,0x5d,0xa3, + 0x3e,0x9e,0xb6,0x5a,0xec,0x18,0x75,0xb6,0xe5,0x58,0xa2,0x2e,0x9b,0x92,0x7,0x84, + 0x89,0xc7,0xdd,0x8e,0xcf,0x13,0x7,0xce,0xc0,0x1d,0x84,0xf9,0xc3,0x58,0xff,0xc5, + 0xd7,0x0,0x7b,0xcb,0x36,0x20,0x2d,0xe1,0x9f,0x18,0x4a,0x41,0xfc,0x75,0x36,0x40, + 0xa9,0x3,0xd4,0x75,0x55,0xe8,0x1,0xc7,0x82,0xe7,0x98,0x1c,0x6c,0x21,0x47,0xc7, + 0x9e,0x94,0x27,0x6f,0x63,0xca,0x95,0xab,0x21,0x3f,0xe3,0x1e,0x7a,0xbc,0x50,0x21, + 0x5f,0xaa,0x54,0xe9,0x4,0xc3,0xf9,0x59,0x82,0x35,0xc5,0xb2,0xcf,0x17,0xcb,0xed, + 0xa,0xe2,0x43,0xfb,0x32,0x5f,0x9e,0x3f,0x19,0xde,0xfd,0xf9,0xbc,0x6e,0xe0,0x26, + 0xea,0xa8,0x4e,0x16,0xb4,0xf2,0x60,0x90,0xb4,0x61,0x80,0x2b,0xd6,0xa,0x60,0xed, + 0x10,0xea,0x3d,0xd6,0x7b,0x61,0xdd,0x8f,0xd8,0x3f,0x1c,0x67,0xdc,0xf7,0xee,0x9d, + 0x27,0x3,0x7f,0x23,0x3a,0x0,0x3e,0x0,0x64,0xa0,0x87,0x76,0xf,0x50,0xc8,0x0, + 0xe6,0xed,0xf1,0x31,0xdb,0xf2,0xd1,0x3a,0x7f,0x0,0x4,0xec,0x20,0xb,0xa5,0x4b, + 0x1f,0xa3,0x62,0x45,0xe,0x52,0xb9,0x32,0xe7,0xa9,0x5c,0xd9,0xf3,0xac,0x4d,0xff, + 0x8c,0xb7,0xef,0x20,0x3b,0x42,0x86,0x30,0x6f,0x5c,0x8c,0x29,0xa0,0xee,0x8b,0xbe, + 0x85,0x82,0x5,0xce,0x32,0x5c,0xaa,0xeb,0xf6,0xec,0xf5,0xf3,0x93,0xbf,0xf1,0xa1, + 0x5c,0xf7,0x1,0x6c,0x41,0xa8,0xdf,0xf2,0x59,0xbe,0x16,0xf7,0x8,0x87,0xf0,0xf8, + 0x6,0x0,0xde,0x7,0xce,0xd8,0x57,0x5c,0xb9,0x6f,0xbc,0x90,0x81,0x91,0x23,0x9c, + 0x32,0xf0,0x37,0xa2,0x3,0x44,0x5b,0x0,0x3a,0x40,0xcc,0x1,0x12,0xfe,0x3a,0xda, + 0xeb,0xf0,0xd9,0x31,0xd7,0x5f,0xc8,0x1,0xce,0xc0,0x11,0x98,0xa2,0x5e,0xd7,0xd3, + 0xee,0xf,0x2f,0xe6,0x85,0xcb,0x67,0x19,0x77,0xfc,0x86,0x70,0x78,0x1f,0x6d,0xcb, + 0x22,0x8e,0x7f,0x31,0x39,0xfb,0x44,0xb7,0xcf,0x3f,0xd6,0x72,0x60,0x6e,0xbf,0xf8, + 0xee,0x3,0x6c,0x36,0x74,0xb6,0xf8,0xe6,0xb,0xea,0x35,0xea,0xf7,0x98,0xb1,0xf9, + 0xb9,0x3f,0xf,0xcc,0xf1,0x1b,0xd6,0x86,0x88,0x6f,0x8,0x0,0x77,0xc4,0x85,0x39, + 0xe2,0xc0,0x1c,0x7b,0x0,0x80,0x2e,0x5f,0x96,0xe8,0xfc,0x79,0xe8,0xff,0xa4,0xf9, + 0x17,0x1f,0x3a,0xfe,0x42,0x7,0x28,0xed,0x80,0xf0,0xd9,0xda,0xeb,0x7c,0xf6,0x58, + 0x5d,0xbb,0x0,0x38,0xf2,0xbe,0x41,0x67,0x19,0x4f,0xc8,0x45,0x3d,0xed,0x77,0x20, + 0xc4,0xb8,0xb1,0xab,0x6b,0xfc,0x38,0xa2,0xc0,0x1f,0x7a,0x5f,0xc8,0x4c,0xc9,0x52, + 0xab,0x59,0xdb,0x57,0x5e,0xaf,0xb1,0x6f,0x5f,0xfc,0xbe,0xad,0x7c,0xef,0xd6,0x35, + 0x92,0x6e,0xbd,0x7,0x70,0x5,0x61,0xbd,0x97,0xf0,0xe5,0x70,0xd,0x39,0x59,0xaa, + 0xfd,0x86,0x0,0xc2,0xe3,0x3d,0xb1,0x16,0x44,0x10,0xf6,0x1,0xbb,0x71,0x43,0xa2, + 0x97,0x2f,0x1d,0xe8,0xf0,0x61,0xeb,0xb7,0xff,0xd3,0x38,0xfe,0xae,0xc2,0xe,0x88, + 0x79,0x7c,0x62,0x9e,0xaf,0xd2,0x1f,0x68,0xde,0x2c,0xbe,0x7d,0x28,0x30,0x57,0xae, + 0xff,0x68,0xde,0x4c,0xb6,0x19,0xc2,0x76,0x8,0x19,0x0,0xf6,0xb2,0xbc,0xfc,0x49, + 0xd5,0xaa,0x1d,0xa4,0x2d,0x5b,0x6a,0x72,0x6c,0x40,0xc7,0x4f,0xc8,0xeb,0xb6,0xb1, + 0xd6,0x43,0xec,0xe1,0xcc,0xf7,0x70,0xd5,0xee,0xe3,0xb,0x5a,0xaf,0x25,0xac,0xfb, + 0x11,0x6b,0x7f,0xc4,0xde,0xf1,0x9,0xbe,0x13,0xc1,0x70,0xf,0x39,0x26,0xef,0x1, + 0x77,0xf7,0x8e,0x8c,0x7d,0x74,0x74,0x1,0x1a,0x31,0xa2,0x46,0x6,0xfe,0x66,0xca, + 0x0,0xe6,0x2,0x89,0xf5,0xc0,0x62,0xd,0xb7,0x98,0xdf,0xf,0x5c,0x5b,0x34,0x4f, + 0x88,0x37,0xff,0x26,0x48,0x73,0x79,0xec,0xa0,0xb5,0xf6,0xbb,0x10,0x38,0xb7,0xd1, + 0x12,0xc2,0xa0,0x4f,0x11,0xfd,0x3d,0x4e,0xc5,0x6f,0xd1,0xb2,0x65,0x6e,0x7c,0xcf, + 0x5e,0xec,0xd5,0x76,0xe3,0xba,0x8c,0x13,0xf0,0xfa,0xe5,0xa4,0xa4,0x5b,0xbb,0xa7, + 0xfc,0xd6,0x8b,0xb2,0x4e,0xe3,0x5e,0x7c,0xf,0x64,0xff,0xfe,0xf8,0x3a,0x8f,0xf7, + 0x40,0xd0,0xf5,0x90,0xa9,0x47,0x8f,0xec,0x38,0xee,0xa0,0xb3,0x67,0x53,0xde,0xee, + 0x7f,0x8,0xf8,0x2b,0x65,0x40,0xdd,0x26,0x10,0x6d,0x43,0xe5,0x5a,0xf,0xf4,0x15, + 0x81,0x94,0xcf,0x4,0x89,0xb0,0xe2,0xdc,0xaa,0x65,0x2c,0xb5,0x6b,0x1b,0x49,0x73, + 0xe7,0x6e,0xe5,0x98,0xa0,0x5e,0x2,0x77,0x25,0x1,0x37,0xe0,0x7,0x59,0x40,0x1d, + 0x6,0xae,0xfc,0x5b,0x2f,0xa,0xfc,0xc5,0x3d,0xce,0x8,0x73,0xe2,0x94,0x44,0xa7, + 0x4e,0x4b,0x3a,0x5d,0xaf,0xac,0xf3,0xa9,0x8d,0xfd,0x87,0x80,0xbf,0x5a,0x6,0x84, + 0x4f,0x28,0xfa,0x8,0x95,0xb2,0xa0,0x94,0x9,0x71,0x2f,0xda,0x10,0x38,0x2b,0x9, + 0xf1,0x60,0xbe,0x28,0x78,0x4,0x5d,0x2c,0x64,0x0,0xf5,0xd4,0x90,0x1c,0x8,0x82, + 0xef,0x26,0xe4,0x42,0xf9,0x5c,0xd8,0xf,0xf1,0xde,0xf3,0xe7,0xd9,0x74,0xb8,0x83, + 0x56,0xad,0xaa,0x98,0xaa,0xd8,0x7f,0x28,0xf8,0xc7,0xcb,0xc0,0xab,0x60,0x65,0xff, + 0x90,0x3e,0x12,0x78,0x2b,0x9,0x58,0xe3,0x1d,0x41,0x88,0x3,0x7d,0xc1,0x6a,0x5e, + 0xfd,0xf2,0x4b,0x11,0x1d,0x56,0xc0,0xe,0xa4,0x96,0x5,0x53,0x24,0xde,0x53,0xe2, + 0x8e,0x78,0x53,0xcb,0xde,0x9b,0x8b,0xbf,0x18,0xd7,0x35,0x97,0xac,0x8d,0xbf,0x52, + 0xe,0xe4,0x79,0x5c,0xb2,0x1c,0x0,0x5b,0x35,0x29,0x71,0x56,0x12,0xde,0x3,0x6d, + 0xd8,0x70,0x91,0x4a,0x96,0xac,0xae,0x97,0x5f,0xc0,0x49,0x29,0x7,0x42,0x2f,0x8, + 0x12,0xf8,0x42,0x4f,0x80,0xc4,0xbd,0x52,0xc7,0x8b,0x77,0xa0,0xeb,0xf5,0xad,0xf7, + 0x4d,0xb,0xf8,0xe3,0x19,0xc6,0x78,0x31,0xc6,0x2f,0xd6,0x7b,0xe3,0x5a,0x39,0x7, + 0x50,0xb9,0x77,0x5f,0x5a,0xc1,0x5f,0x1c,0xb3,0x67,0xff,0x15,0x2c,0xe4,0x40,0x1f, + 0x89,0xdf,0x94,0x98,0x83,0x44,0xfe,0x91,0x27,0x53,0xbc,0x5b,0xba,0xb4,0xcc,0x7b, + 0xb2,0x60,0x8a,0xf0,0xe,0xc8,0x9a,0x98,0x9b,0x8b,0x3f,0xce,0x62,0x9d,0xaf,0x72, + 0xdd,0xbf,0x5a,0x6,0xd2,0x22,0xfe,0xe2,0xd0,0xfa,0x6,0xde,0x7e,0x7e,0x3b,0x19, + 0xbe,0x7f,0xd0,0xf1,0xe3,0xd1,0x5a,0xac,0x4f,0x32,0xba,0x69,0xd0,0x7e,0x99,0x83, + 0xbf,0x9a,0x50,0x97,0x61,0xc3,0xd5,0x64,0xed,0x3a,0x9e,0x1c,0xfc,0x31,0xde,0xaf, + 0x9c,0xf7,0x89,0x79,0x5f,0x6a,0x19,0x48,0xcb,0xf8,0x8b,0x3,0x69,0x61,0x3f,0x35, + 0x73,0x7d,0x9d,0xa4,0xe0,0x9f,0x1e,0xc9,0x18,0xfe,0xc0,0x5a,0x90,0x58,0xf7,0x2f, + 0x70,0x17,0x73,0x67,0x32,0xf0,0x4f,0xdf,0x64,0x2e,0xfe,0xa2,0xde,0x2b,0x75,0x81, + 0xf0,0x9,0x32,0xf0,0x4f,0xbf,0x94,0x18,0xfc,0x85,0x1e,0x10,0x7b,0xc0,0x64,0xe0, + 0x9f,0xfe,0x29,0xb1,0xf8,0xab,0x6d,0x81,0xd8,0x1f,0x2e,0x3,0xff,0xf4,0x49,0x49, + 0xc1,0x5f,0xe9,0x3,0xe2,0xfa,0x43,0xc5,0xff,0xe3,0x8f,0xd3,0xae,0xdf,0x6e,0x6d, + 0xfc,0x95,0xfe,0xc0,0x87,0x88,0xbf,0xa1,0x35,0xaf,0x1f,0x1a,0x61,0x7f,0xc7,0xa4, + 0xe2,0xf,0xfa,0x50,0xf5,0x3f,0xf6,0xba,0x33,0xb7,0xc,0xe9,0x99,0xc,0xed,0xe1, + 0x92,0x98,0xfd,0xa3,0xd1,0x57,0xfc,0xa1,0xe1,0x9f,0x41,0xc9,0xa3,0xc,0xfc,0xff, + 0xdb,0x94,0x81,0xff,0x7f,0x9b,0xd2,0x1a,0xfe,0xe8,0xa7,0x30,0xe4,0xeb,0x64,0xd0, + 0x7f,0xb,0x7f,0xe5,0x3a,0x96,0xc,0x4a,0x19,0x4a,0x83,0xf8,0xbb,0x42,0x6,0xee, + 0xde,0xbd,0x9b,0x6a,0xdf,0x55,0xf9,0x2f,0x13,0xf8,0x9c,0x96,0xf0,0x57,0xca,0x0, + 0xd6,0x7d,0x5a,0x5b,0x3f,0x7e,0xc8,0x24,0xd6,0x8d,0x9b,0x23,0x3,0xa9,0x89,0x7f, + 0x86,0xc,0xa4,0x3d,0x19,0x48,0x6d,0xfc,0x33,0x64,0x20,0x6d,0xc9,0x80,0x35,0xf0, + 0xcf,0x90,0x81,0xb4,0x23,0x3,0xd6,0xc2,0x3f,0x43,0x6,0xd2,0x86,0xc,0x58,0x13, + 0xff,0xc,0x19,0xb0,0xbe,0xc,0x58,0x1b,0xff,0xc,0x19,0xb0,0xae,0xc,0xa4,0x5, + 0xfc,0x33,0x64,0xc0,0x7a,0x32,0xa0,0xc5,0xde,0xd5,0xda,0xf8,0xe3,0x50,0xca,0x0, + 0xd6,0x3e,0x64,0x50,0xca,0x10,0xbe,0x1f,0x5,0xfc,0xb1,0x7,0x97,0xb5,0x31,0x57, + 0x1f,0x42,0x6,0x2c,0x31,0xb6,0x9e,0x41,0x86,0x49,0xcb,0xe3,0x24,0xd5,0x7b,0x57, + 0xa2,0x4,0x72,0xe3,0xa4,0xba,0x77,0x50,0xdd,0xdb,0xab,0xee,0x6d,0x54,0xf7,0x1a, + 0xd5,0xbd,0xa4,0xbe,0xf7,0x56,0xdd,0xbb,0xaa,0xee,0x9d,0x54,0xf7,0xe,0xaa,0x7b, + 0x7b,0xd5,0x3d,0xcb,0x80,0x8f,0x2a,0x3,0x21,0xaa,0xc,0x84,0xa9,0x32,0x10,0xae, + 0xca,0x40,0x94,0x2a,0x3,0xb1,0xaa,0xc,0xbc,0x4b,0xd9,0xc,0xbc,0x9f,0xa1,0x8c, + 0x7b,0xe3,0xf7,0x21,0xaa,0x7b,0x1f,0xd5,0xbd,0x94,0xf0,0x3e,0x56,0x75,0x1f,0xa5, + 0xba,0xf,0x57,0xdd,0x87,0x99,0xb8,0xf,0x49,0xe6,0xbd,0x8f,0x75,0xef,0xbd,0x55, + 0xf9,0xa1,0xc4,0xde,0x87,0x99,0xb8,0x57,0xf1,0x53,0x55,0xbf,0x4c,0xdf,0xab,0xdf, + 0x57,0xdf,0x9b,0x4a,0x3f,0xc4,0xc4,0xbd,0x4f,0x3a,0xbb,0xf,0x31,0x71,0x1f,0x66, + 0xe2,0xde,0x14,0x3f,0xd5,0xfc,0x57,0xd5,0x17,0x95,0xfe,0x93,0x54,0xfa,0x4f,0x7a, + 0x5f,0xdf,0x85,0xab,0xee,0x63,0x55,0xf7,0xc6,0x2d,0xc4,0x7,0x70,0xef,0xa3,0xba, + 0xf,0x51,0xdd,0x87,0xa9,0xee,0xc3,0x55,0xf7,0x51,0xaa,0xfb,0x58,0xd5,0xfd,0x3b, + 0xd5,0x3d,0xa9,0xef,0x15,0x19,0x80,0x85,0x56,0x66,0xc0,0x86,0xfe,0xf,0x67,0xb0, + 0xcc,0x48, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty_active.ico + 0x0,0x0,0x2,0xf2, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0x13,0x41,0x10,0x1e,0x5b,0x26,0x52, + 0x44,0x11,0x17,0x89,0x94,0xe,0x97,0x94,0x3c,0x82,0x69,0xa8,0x29,0x32,0x4a,0x9, + 0x15,0xa2,0xa4,0xa1,0xe6,0x4a,0x4a,0x1e,0xc1,0x5,0x45,0xb4,0x96,0x92,0x16,0x51, + 0x44,0xe6,0x21,0xdc,0x53,0x7,0x89,0xa,0x9a,0x34,0xcb,0xdc,0x9d,0x37,0xbe,0x3b, + 0xcf,0xee,0xce,0xfe,0xf8,0x8c,0x23,0x4f,0xb4,0xfa,0x7c,0xb7,0xbb,0xf3,0xb3,0xde, + 0xfd,0x66,0xd6,0x1,0x18,0xc0,0x8,0xc6,0x63,0x20,0x9c,0xc0,0xfb,0x11,0xc0,0x2b, + 0x0,0x38,0x3d,0xad,0x9f,0xbf,0x1d,0x1,0x5c,0xd3,0xbb,0xf3,0xf3,0xfa,0xf9,0xf3, + 0x31,0xc0,0xbb,0xa7,0x0,0x93,0x49,0xfd,0x7c,0x45,0xf3,0x7e,0xd3,0xd8,0xe7,0x34, + 0x87,0x3e,0xd2,0x9b,0xfa,0x7d,0x29,0xd3,0x11,0x70,0xa2,0x3,0xb0,0xdb,0x2a,0x29, + 0x8a,0x42,0xb,0x50,0x43,0xd1,0x68,0x2b,0x1d,0x66,0xcc,0xd7,0xd9,0xcc,0x8e,0x34, + 0xbe,0x14,0x68,0xfe,0xad,0x75,0x80,0x4f,0x87,0x6b,0x7e,0xe,0xfb,0x8b,0xc5,0x82, + 0x9d,0xdb,0x8a,0x7f,0xa5,0xc3,0x88,0xcf,0x7e,0x73,0x7d,0x9b,0x3a,0x4c,0x33,0xf3, + 0x5c,0xf6,0xbb,0xc2,0xd9,0x8,0xb2,0xcf,0xc4,0xe6,0xb1,0xdf,0xc2,0x10,0xfb,0x3e, + 0x94,0xd8,0xf7,0xa1,0xc4,0xbe,0xad,0x5f,0x62,0xdf,0x8c,0x71,0xad,0x8f,0x4f,0x7f, + 0x17,0x39,0xfb,0xc2,0xf3,0xc7,0x22,0xbe,0xd4,0x5a,0x15,0x5a,0x23,0x74,0xf0,0x87, + 0xd6,0xf3,0x3b,0xc2,0x25,0x3d,0x2b,0x42,0xe4,0xb1,0xe4,0x19,0xa2,0x9b,0x8a,0x6f, + 0xc,0xcf,0x7c,0x39,0x2,0x4e,0x42,0x78,0xc6,0xa0,0xad,0xc5,0xc4,0xdd,0xe6,0x9f, + 0x18,0x1e,0x32,0xc8,0xf1,0x41,0x0,0x2f,0x88,0xf8,0x89,0xd1,0x27,0xd6,0xb9,0x3, + 0xff,0x76,0xb1,0x7e,0x2e,0x7e,0x95,0xf2,0xac,0x94,0x6f,0x43,0x78,0x57,0xca,0xbf, + 0x21,0x3c,0xc4,0xfa,0xe7,0x58,0x13,0xa1,0x7f,0x2d,0x4c,0xf1,0xaf,0x4f,0xde,0x4e, + 0xf1,0x4f,0xca,0xf7,0x12,0xff,0x7c,0xfc,0xfe,0x98,0xfd,0x93,0xec,0x3f,0x1b,0x1f, + 0xfb,0xfa,0xd9,0x3c,0xf5,0xfa,0x99,0x56,0xb3,0x13,0x8d,0xd3,0x93,0xa,0x97,0x2b, + 0x34,0xcf,0xf8,0x81,0xfa,0xef,0x6f,0x34,0x7e,0x7c,0x43,0x79,0x89,0x10,0xed,0x38, + 0x27,0x2c,0xf3,0x15,0x95,0xd0,0xf0,0x2,0xd6,0x79,0xeb,0xed,0x31,0x70,0xc2,0x9e, + 0x95,0x40,0xec,0xb6,0x66,0x7f,0x74,0xfe,0x6,0x77,0x4e,0xab,0xfa,0x63,0xcf,0xed, + 0x83,0xae,0x5c,0x39,0xa9,0xa3,0xdb,0xca,0xff,0x29,0x79,0xc5,0x60,0x80,0xfe,0xe6, + 0x7a,0xee,0xab,0xff,0xff,0xd3,0xfa,0x3f,0xec,0x4d,0x87,0x8d,0xea,0x7d,0xc4,0xfe, + 0xd9,0x10,0x77,0xce,0x87,0x10,0xff,0xad,0xc2,0x9f,0xaf,0xd8,0x3c,0xdb,0x56,0x2d, + 0xc8,0xf9,0xa9,0xfe,0xe7,0xcc,0xc3,0x52,0xdd,0x29,0x75,0x83,0x59,0xab,0x5d,0xd4, + 0x11,0x39,0xfc,0x97,0xfa,0x12,0xe3,0xbf,0x2f,0xf7,0xe6,0xcc,0xeb,0xd2,0xda,0xe2, + 0xe0,0x7f,0xde,0xfd,0x13,0x1a,0x2f,0xe7,0x97,0xb4,0xde,0x92,0xcc,0x47,0x7c,0x42, + 0x75,0xd3,0x50,0xe3,0xc5,0x40,0xab,0x2b,0xa0,0x3a,0xc,0xda,0x58,0xbe,0xbf,0xa5, + 0xfe,0x4f,0x34,0xee,0x56,0x11,0x62,0x8d,0x48,0xa8,0x3c,0xf8,0x4b,0x55,0x75,0xd8, + 0x84,0xda,0x14,0xd6,0x75,0x58,0x31,0x6,0x4e,0xf4,0x16,0xb1,0xdb,0xb8,0x71,0xd1, + 0x75,0x9a,0x5,0xeb,0x26,0xf8,0x4d,0x2,0x22,0xf6,0x91,0x7,0xb5,0xb7,0xbe,0x2b, + 0x36,0x7c,0xc8,0xc3,0xb3,0x92,0xda,0x63,0xb3,0xc6,0xc9,0x16,0x7f,0xa4,0xfd,0x2c, + 0xf1,0x7,0xd9,0xce,0x51,0x47,0xa6,0xac,0x3d,0xb3,0x6,0xa9,0x3e,0xec,0x7b,0xfc, + 0x7b,0xff,0xfd,0xef,0x68,0xff,0xb7,0x78,0xaf,0xe7,0xf3,0xcf,0xe6,0xba,0xc6,0xbd, + 0x81,0xb3,0xdb,0xbc,0x47,0xa4,0xf0,0x5f,0x73,0xed,0x38,0x1f,0x9c,0xf7,0x17,0x6a, + 0x29,0x75,0x84,0xcd,0x76,0xcb,0x87,0xea,0x3,0xb0,0xf7,0x9b,0x94,0x3a,0xa9,0xe1, + 0x83,0x53,0x42,0x62,0xd9,0x56,0xfc,0x21,0xfb,0x27,0xeb,0xf7,0xbf,0xe5,0xf8,0x1d, + 0x3e,0x44,0x9f,0x9f,0x94,0xff,0xb3,0xc5,0xd8,0xce,0x11,0x7f,0x2a,0xf6,0x71,0xcf, + 0xec,0x23,0xfe,0x1c,0xfc,0x99,0x85,0xff,0x7b,0x8e,0x3f,0xf4,0x5e,0x78,0x88,0xff, + 0x10,0xff,0x63,0x8a,0x3f,0xe7,0xf9,0xf,0xbd,0xe7,0xda,0xe6,0xc5,0xe8,0x43,0xbc, + 0x38,0x53,0x6a,0x36,0x44,0x9c,0xe,0x94,0x2a,0x60,0x8d,0x0,0x6d,0x34,0xef,0x17, + 0x3,0x35,0xff,0x39,0xc4,0xcb,0x3f,0x67,0xea,0xe6,0x5e,0xe1,0xe5,0x5f,0x54,0xf3, + 0x3b,0x85,0xb8,0x44,0x45,0x82,0x24,0x62,0xbc,0xfe,0xae,0xfe,0x1,0xd6,0xdb,0x0, + 0x8f, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo.ico + 0x0,0x0,0x4,0xf7, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x58,0x3b,0x52,0x1b,0x41,0x10,0x1d,0xaa,0x28,0xaa, + 0x28,0x7,0x26,0x20,0x20,0x33,0xa1,0x43,0x1f,0x81,0xc8,0xe7,0x70,0xe4,0x32,0x70, + 0x7,0xa4,0xd0,0x1,0x50,0x3e,0x86,0x23,0x3,0x99,0xcf,0x1,0x9c,0xc3,0x57,0x90, + 0xe7,0x49,0xfb,0xc4,0x53,0x6f,0xf7,0xf4,0xac,0x24,0x7b,0xaa,0x5a,0xfb,0xd1,0xf6, + 0x67,0x7a,0x7a,0xfa,0x75,0x4f,0x29,0x7,0xe5,0xb0,0x9c,0x9c,0x94,0x7a,0x3d,0x2f, + 0xdf,0xe,0x4b,0xf9,0x5c,0x4a,0x39,0x3d,0x5d,0x3d,0xff,0x3e,0x2a,0xe5,0x57,0x7d, + 0x77,0x76,0xb6,0x7a,0xfe,0x7e,0x5c,0xca,0xd7,0x77,0xa5,0x9c,0x9f,0xaf,0x9e,0x7f, + 0x56,0xbe,0x3f,0xf5,0xdb,0x8f,0x95,0xa7,0xde,0xd6,0x37,0xab,0xf7,0x18,0x17,0x87, + 0x25,0x1a,0x8b,0x2d,0x9,0x3f,0xb,0x52,0x91,0xfb,0x90,0x1e,0x1f,0xc7,0xdf,0x63, + 0x3c,0x3d,0xad,0xee,0x71,0x5,0x5d,0x5d,0x6d,0x12,0xdf,0xcb,0xb7,0x2e,0xff,0xdd, + 0xdd,0x62,0x71,0x7f,0xbf,0x58,0xbc,0xbe,0xae,0x8,0xcf,0x20,0xca,0x31,0xfc,0xeb, + 0x39,0x60,0xd0,0x3e,0x10,0xbe,0x51,0x7e,0xbc,0xc3,0x75,0xf8,0x6e,0xc4,0x4b,0xfd, + 0xe0,0x21,0x2f,0xf9,0xf1,0x7c,0x7b,0xfb,0xc6,0xef,0xd9,0x8f,0xff,0x68,0xbf,0xca, + 0xa0,0x7e,0xca,0xc1,0xb8,0xbe,0x8e,0xf9,0x69,0x27,0x79,0xa1,0x17,0xc4,0x39,0x61, + 0xc0,0xf,0x1e,0x3f,0xe7,0xd0,0x22,0xfa,0xd2,0xf2,0xc3,0xe7,0xd0,0xc1,0x79,0xab, + 0x1d,0x3a,0x17,0xae,0xad,0xb7,0x7e,0xd9,0x80,0x8c,0xcb,0x4b,0xdf,0x7f,0xb8,0x72, + 0x9e,0x83,0x6e,0x1b,0xaf,0xeb,0xb9,0x47,0xfc,0xb4,0x19,0x72,0xaa,0xae,0x9b,0x9b, + 0x9b,0xc5,0x6c,0x36,0x5b,0x5e,0x8b,0xda,0xe9,0xc5,0x8f,0xc6,0x2e,0xa8,0xca,0x1, + 0xef,0x7c,0x3e,0x5f,0x5e,0x37,0xf8,0x5b,0xb1,0x27,0x32,0x42,0xfe,0x48,0xbf,0xa1, + 0x19,0x78,0x85,0xec,0xff,0xe0,0x9d,0x1f,0x6c,0xbe,0xb6,0xcf,0x1e,0xf1,0x1b,0x5c, + 0x91,0x67,0x6a,0xba,0x59,0xe6,0x1b,0xe6,0x99,0x1f,0x47,0x7b,0xcf,0x33,0xbb,0xe7, + 0x1d,0x4b,0xbd,0x79,0x28,0xcb,0x47,0x8c,0xb7,0x2c,0x2f,0x49,0x5c,0xac,0xf3,0x89, + 0xe6,0x88,0x24,0xcf,0xb9,0xb1,0x42,0x39,0x5e,0xce,0xa2,0x2e,0xee,0x97,0x28,0x6f, + 0xd1,0xf,0x88,0x79,0xf2,0xe3,0xdd,0xc3,0xc3,0x9b,0x7d,0xfc,0xf,0x7b,0x1c,0xf7, + 0x90,0x99,0xcd,0x77,0xd8,0x43,0x1b,0x32,0xd5,0x3e,0xe6,0x25,0xcd,0x6b,0x99,0xff, + 0x6c,0x3e,0xa1,0xc,0xe6,0x57,0x9b,0xe7,0xb2,0x3c,0x8b,0x6f,0x69,0x27,0xe6,0x86, + 0x79,0x81,0x70,0xf,0xe2,0xfa,0x66,0x79,0x93,0xf6,0x91,0x87,0xeb,0xa9,0xb1,0xc3, + 0x79,0x4e,0x91,0x47,0xa2,0xcf,0xf9,0x8c,0x7b,0xce,0x7b,0x5f,0x79,0xdd,0x52,0x94, + 0xe7,0x75,0x1d,0xb8,0xae,0x5c,0x47,0x92,0x8d,0x1b,0xf5,0x87,0x27,0xaf,0x77,0x30, + 0x76,0xa0,0xb3,0x95,0xc7,0xa9,0x93,0x6b,0x5b,0xc9,0xcb,0x23,0x6b,0x99,0xea,0x5b, + 0x4f,0x1e,0xf7,0x97,0xc8,0x3,0x26,0xb8,0xf8,0x0,0x59,0x9a,0xc7,0x23,0x79,0xba, + 0xb6,0x95,0x20,0x27,0xcc,0xf7,0x8e,0xbc,0x10,0x77,0x4,0x3b,0x9a,0xf8,0x31,0x1, + 0x87,0x52,0x79,0x99,0x7d,0xe,0x11,0x93,0xe6,0xd,0x7c,0x92,0xfc,0x5c,0xe6,0xe5, + 0x43,0xbd,0xbe,0x5f,0x93,0x7d,0xee,0x21,0xf2,0xe0,0xa,0xbc,0xaa,0x25,0x74,0xf9, + 0x24,0xb8,0xf5,0xe5,0xf8,0x9f,0xe3,0x96,0xa5,0x91,0x8f,0xb6,0xc2,0x32,0x92,0x60, + 0x9a,0xbb,0xcf,0xf8,0x7f,0x84,0x6d,0xa8,0x2b,0x41,0x19,0xc6,0x45,0xfb,0xd8,0xca, + 0xd7,0xba,0xd5,0xe2,0x9d,0xea,0xb5,0x98,0xe7,0xc9,0xa7,0xd,0x9c,0x27,0xf3,0x80, + 0x95,0xad,0xf2,0x15,0xaf,0x2,0xf9,0x1b,0xb1,0xef,0x61,0x97,0xc5,0x56,0xcd,0x69, + 0xec,0x35,0xf0,0xbf,0x83,0x89,0x23,0x9c,0xa5,0xfd,0x8a,0x61,0xc0,0x59,0xf,0x6b, + 0x15,0xdb,0x7a,0xfd,0x8f,0xef,0x99,0xbb,0x2d,0xf6,0xd2,0x47,0x76,0x5d,0x2c,0x86, + 0x44,0xf5,0xb5,0xca,0xf7,0x6a,0x7b,0xda,0xab,0x76,0x4f,0x91,0xcf,0x7c,0x4d,0xfb, + 0x23,0x6c,0x56,0x8c,0x8e,0xe2,0x13,0xff,0x7b,0xf2,0x35,0x3e,0x23,0xac,0x8e,0x30, + 0x3b,0x93,0xcf,0x38,0xb0,0xfb,0xcb,0x62,0xb7,0x62,0x78,0x24,0x3f,0xea,0xaf,0x64, + 0xed,0xb7,0xce,0xf,0xe0,0x8f,0xfa,0x47,0xdd,0x4f,0x8a,0x79,0xc4,0x34,0x25,0xb5, + 0x5f,0x7d,0x19,0xd9,0x6f,0x6b,0x55,0x1b,0x8f,0xb6,0xbe,0x66,0xf,0x4f,0xbf,0x52, + 0x7,0xae,0xad,0xba,0x64,0xea,0x60,0xec,0x32,0xa6,0x5b,0x75,0xa,0xf7,0xae,0xe6, + 0x86,0x61,0x1f,0x44,0x39,0x7e,0xad,0x23,0xab,0x5b,0x34,0xf7,0x70,0x1d,0x70,0xff, + 0xf2,0xb2,0x24,0xad,0x37,0xdc,0x9e,0x34,0xab,0x63,0x34,0x36,0xb5,0xfe,0x1e,0xe6, + 0xa3,0xf8,0x3e,0xc2,0x78,0x2b,0x3b,0x93,0xaf,0xf9,0x6b,0xf0,0x55,0x53,0xbe,0xad, + 0x99,0x7a,0x6b,0x13,0xa9,0xf9,0x9b,0xf2,0xb3,0x1a,0x45,0xfd,0xef,0xd4,0x52,0xec, + 0xe5,0xbb,0xe5,0xf7,0xf8,0xa7,0x51,0x5f,0x4d,0x91,0x9f,0xd5,0x59,0x24,0xad,0xb7, + 0x7a,0x6a,0xae,0x41,0x7e,0xad,0xbb,0xe,0x46,0x31,0xed,0xbd,0xeb,0x25,0xe5,0xc5, + 0x3d,0xea,0x30,0x54,0x5f,0x17,0x52,0x87,0xcd,0x4f,0xfe,0x7b,0x1d,0x96,0x91,0xeb, + 0xe3,0xe2,0xbc,0xdb,0x99,0x4c,0xd,0x37,0x8a,0x23,0x13,0x3,0x51,0x3c,0x8d,0x6a, + 0xba,0xa8,0xb6,0xf3,0x30,0xb4,0xd5,0xbf,0xb4,0xf4,0xdb,0xb3,0x4a,0x95,0x1b,0x9d, + 0xc7,0xda,0x3a,0x33,0xd3,0x6f,0xfe,0xdb,0xc8,0x67,0xd1,0x9c,0x6c,0x6d,0xa8,0xb8, + 0xa5,0xb5,0x5,0x6b,0x94,0x29,0xfa,0x3d,0xbd,0xd6,0x86,0xe8,0x2c,0x45,0xfd,0x65, + 0x6b,0xc8,0x2c,0x57,0x69,0x2d,0xdc,0xd2,0xad,0xf3,0xd7,0xda,0x4c,0x31,0xc0,0xab, + 0x41,0x22,0xdd,0x8a,0x4d,0xf4,0x7f,0x66,0x3,0xf1,0x29,0xd2,0xad,0xdf,0x11,0xf, + 0x32,0xff,0x53,0xbf,0x9e,0x57,0x65,0xf3,0xd7,0xb3,0xf8,0x9e,0x1a,0x35,0x8a,0x7f, + 0xae,0x19,0xe7,0xdf,0x6b,0x3,0x75,0xeb,0xfe,0x88,0xf6,0x5f,0xab,0xe,0xd7,0x33, + 0x1d,0x5b,0xe7,0x5b,0x1b,0xf4,0x9c,0x2d,0xd2,0xbd,0x8d,0x7e,0xc4,0x2f,0xe3,0xdf, + 0x3b,0xe7,0x63,0x7c,0xdb,0xba,0x9d,0xbc,0xdb,0xea,0x57,0x7e,0xc6,0xbf,0xed,0x45, + 0xec,0x9e,0x56,0xf2,0xfa,0x87,0x28,0xfe,0x5b,0xe7,0x69,0xd1,0x39,0x22,0xe3,0xcc, + 0xd3,0xad,0x36,0xd8,0x75,0xe8,0xd5,0x4f,0xbf,0xda,0xfc,0x47,0x3f,0x44,0xfd,0x86, + 0x67,0x83,0xdd,0x7f,0x56,0xbf,0xd7,0x27,0xd8,0x3e,0xc4,0xca,0x8d,0xfa,0x29,0x4b, + 0xda,0x5f,0xed,0x53,0x3f,0xe6,0xf4,0xaf,0xf5,0x5b,0xc,0xd8,0x27,0x69,0x7c,0x65, + 0x7d,0x9a,0x97,0xbf,0xa6,0xc4,0x9f,0xed,0xdf,0x38,0xb7,0x9e,0x3e,0x4e,0x75,0x7a, + 0xfd,0x5c,0xef,0xfe,0x6b,0x5d,0xa3,0x3e,0x4f,0x31,0xb,0xf9,0x8e,0xba,0xf5,0xac, + 0xc6,0x62,0xbb,0xe6,0x1f,0x3d,0xa3,0x26,0x2e,0x41,0x8e,0x77,0x26,0x10,0xe9,0x67, + 0xac,0xec,0x32,0x9e,0x9f,0xdf,0x6c,0xb7,0x36,0x64,0xfa,0x99,0xfb,0xbd,0xbc,0x3f, + 0xcc,0x31,0xab,0x6b,0x97,0x83,0xfc,0x53,0xfa,0x60,0x3d,0xc7,0xb2,0xba,0x5,0x6f, + 0x6c,0xcf,0xda,0xec,0x5d,0xa3,0xd8,0x6d,0xe9,0xb7,0xfb,0x40,0xcf,0x9f,0x9c,0x9e, + 0xd6,0xed,0xad,0x6c,0xec,0x66,0x7d,0xb4,0xee,0x7b,0xcd,0x9f,0xf6,0xfc,0xab,0x57, + 0xbf,0xdd,0xbb,0x3d,0x7d,0xb6,0xed,0xe5,0x65,0xcd,0x5b,0x3d,0x7d,0xa8,0x9f,0x36, + 0x78,0xfb,0x35,0xd3,0xef,0xf8,0x7d,0xb2,0xfe,0x28,0x57,0x88,0xfe,0x51,0xfd,0x1b, + 0xe5,0xfe,0xa9,0xfe,0xf7,0xce,0x1e,0x32,0xdd,0x49,0x2f,0xcf,0xf5,0x98,0xbc,0xfe, + 0xd,0x1b,0x9a,0xfe,0xf,0x68,0x9f,0xfa,0xa3,0x1e,0xb8,0x45,0xf6,0xcc,0x61,0xca, + 0xd9,0x83,0xd2,0xf2,0x4c,0x0,0xc7,0x3,0xce,0x88,0xde,0xef,0x3a,0x54,0x2e,0xee, + 0xff,0x2,0x28,0x22,0xef,0xc4, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_active.ico + 0x0,0x0,0x4,0xf4, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x59,0x31,0x52,0xdd,0x30,0x10,0x15,0x33,0xc,0x33, + 0x4c,0x8a,0x50,0x50,0xd0,0x85,0x32,0x65,0x8e,0x40,0x95,0x73,0xa4,0xca,0x4,0xb8, + 0x3,0xb8,0x4c,0x1,0x4c,0x8e,0x91,0x2a,0x40,0x97,0x73,0x0,0xe7,0xc8,0x15,0x7e, + 0xf4,0x6c,0x3f,0xf3,0xfe,0x7a,0x57,0x92,0xff,0xff,0xa0,0xcc,0xc6,0xfe,0xb6,0xb5, + 0xbb,0x92,0x56,0xef,0xed,0x8a,0x94,0xf6,0xd2,0x7e,0x3a,0x3a,0x4a,0xf9,0x7a,0x9a, + 0x7e,0xec,0xa7,0xf4,0x35,0xa5,0x74,0x7c,0x3c,0xfc,0xfe,0x7b,0x90,0xd2,0x9f,0xfc, + 0xec,0xe4,0x64,0xf8,0xfd,0xf3,0x30,0xa5,0xef,0x1f,0x52,0x3a,0x3d,0x1d,0x7e,0xff, + 0xce,0xfd,0xfe,0xe5,0x6f,0x3f,0xe7,0x3e,0xf9,0x36,0x3f,0x19,0x9e,0xa3,0x9d,0xed, + 0xa7,0xa8,0xad,0x36,0x14,0xfc,0xb7,0xa2,0x24,0xb9,0xb7,0xd2,0x7f,0xda,0x89,0xe8, + 0xf7,0x68,0x8f,0x8f,0xc3,0x3d,0xae,0x90,0x8b,0x8b,0x49,0xf0,0x3d,0x5a,0xd2,0x7f, + 0x5d,0xd0,0xff,0xf6,0x76,0xb5,0xba,0xbb,0x5b,0xad,0x5e,0x5e,0x6,0xc9,0xbf,0x4b, + 0xfd,0xa7,0x31,0xf4,0x1f,0xe4,0xeb,0xc3,0xc3,0x20,0xd0,0xd7,0xd0,0x7f,0x66,0x1f, + 0x7d,0xd8,0x77,0xec,0x8f,0xdf,0xd4,0xc1,0x36,0xeb,0x8f,0xef,0xe8,0xbf,0xea,0xc0, + 0xef,0x51,0x74,0xfe,0x56,0x76,0xfe,0xd8,0x1f,0xbe,0x53,0x7,0xae,0x37,0x37,0x83, + 0x70,0x4c,0x68,0x98,0x57,0xaf,0x3f,0xc7,0x50,0x12,0x7c,0xe7,0xf5,0xc7,0x9c,0xc3, + 0x6,0xc7,0xad,0x7e,0xe8,0x58,0xb8,0xb6,0xde,0xfa,0xd7,0x1a,0x74,0x9c,0x9f,0x4f, + 0x7e,0xae,0xf5,0xc7,0x95,0xe3,0x1c,0x6d,0xdb,0x78,0x9d,0xc6,0x1e,0xf5,0xa7,0xcf, + 0xd0,0x93,0x6d,0x5d,0x5d,0x5d,0xad,0xae,0xaf,0xaf,0xfb,0x6b,0x52,0x3f,0xa5,0xff, + 0xda,0x1e,0xe0,0x3b,0x48,0xd6,0x83,0xbe,0x5d,0xd7,0xf5,0xd7,0xb5,0xfe,0xb6,0xaf, + 0xda,0x17,0x1d,0x61,0xff,0xc8,0xbe,0x91,0x6b,0xf4,0x15,0x71,0xf6,0x64,0xea,0xf6, + 0xd6,0x1f,0x77,0x95,0xe5,0xef,0xbf,0xd9,0x7b,0xbd,0x2,0x67,0x32,0xdc,0xf4,0x78, + 0x43,0x9c,0xf9,0x75,0xb0,0x73,0x9c,0xd9,0x18,0x77,0x42,0xfc,0xa1,0x78,0x71,0x68, + 0xd7,0xb2,0x5,0x8f,0x6a,0xb8,0x20,0x71,0xd1,0x8b,0xec,0x95,0x16,0x7d,0x6e,0xac, + 0x50,0x8f,0xc1,0xac,0x45,0xfe,0xa1,0x1f,0xf7,0xe,0xf7,0x29,0x9e,0xdd,0xdf,0x2f, + 0xf2,0x6f,0x36,0xde,0x71,0xf,0xad,0xe9,0xdc,0xc4,0x3f,0x9d,0x3f,0x8b,0x27,0xc4, + 0x36,0x7,0x5f,0xd9,0x8a,0x38,0xb,0x9f,0xe8,0x27,0xf0,0xb,0xd8,0x2,0xc1,0x7d, + 0x16,0x2f,0x5e,0x42,0xdc,0x85,0x4f,0xe8,0x47,0x3f,0x89,0x33,0x8c,0x1d,0x62,0x5f, + 0xb,0xe,0xdb,0xf8,0x83,0x8f,0xc4,0x3d,0x8,0xee,0xb9,0x5e,0xbb,0xc2,0x75,0x2b, + 0x11,0xce,0xeb,0x3a,0x70,0x5d,0xe1,0x8b,0xf0,0xd4,0xf4,0x8e,0x3e,0xea,0x7c,0x78, + 0xfa,0x5a,0x1b,0x39,0x4,0x36,0x4b,0x38,0x4e,0x9b,0x5c,0x5b,0xc4,0x9c,0x83,0x23, + 0x93,0x4e,0x9d,0x5b,0x4f,0x1f,0xf7,0x97,0xe8,0x3,0x27,0xb8,0xfc,0x0,0x5d,0x8a, + 0xe3,0x91,0x3e,0x5d,0xdb,0x2c,0xd0,0x13,0xe2,0xbd,0xa3,0x2f,0xe4,0x1d,0xe1,0x8e, + 0x22,0x7f,0x2c,0xe0,0xa1,0xaa,0xbe,0x9a,0x7f,0x8e,0x90,0x93,0xba,0x2,0x3f,0x9, + 0x76,0xe7,0xad,0xf7,0x29,0x5f,0x3f,0x4e,0xd2,0xc9,0x7d,0xab,0x50,0x7,0xae,0xe0, + 0xab,0x9c,0x42,0xa7,0x2f,0xc2,0x5b,0xdf,0xe,0xdf,0x9c,0xb7,0xac,0xcc,0xe6,0xa8, + 0x85,0xcb,0xf4,0xdb,0x88,0xd3,0xdc,0x7d,0x46,0xac,0x8f,0xb8,0xed,0xf2,0x72,0x90, + 0x91,0xe3,0x7a,0x29,0x73,0x52,0x59,0x3f,0xf1,0x80,0xef,0x5a,0xf8,0xa4,0xc4,0x53, + 0xd4,0xaf,0xdc,0x67,0x74,0x2f,0xd5,0xbf,0x16,0xfb,0x1e,0x77,0xd9,0x7a,0x20,0xbf, + 0xdb,0xda,0x7f,0xe5,0x30,0xf0,0xac,0x70,0xed,0xc6,0xfa,0x89,0x25,0x29,0xcd,0x79, + 0x92,0xb6,0xc7,0x67,0x5b,0xeb,0xf7,0x72,0x7b,0x72,0xf1,0x28,0x25,0x1b,0x3,0xcc, + 0x18,0xfd,0xc4,0x6b,0xfa,0x1f,0x71,0xb3,0x70,0x74,0x89,0xf3,0x67,0xf1,0x4f,0x9d, + 0x8c,0xcf,0x88,0xab,0xd,0x67,0xbb,0x39,0x0,0xec,0x5b,0xfd,0xac,0x7f,0xec,0xfe, + 0xb2,0xdc,0xad,0x1c,0xae,0x7b,0x3,0xc2,0x79,0x8e,0xea,0x2b,0xc1,0xd8,0x8d,0x84, + 0x71,0x8c,0x3d,0x1e,0xcd,0x8f,0xfa,0xc3,0x35,0x20,0xa7,0xa9,0xa8,0xff,0x3a,0x97, + 0x91,0xff,0x36,0x57,0x95,0x78,0x9c,0xd6,0x40,0x85,0x35,0x3c,0xe7,0x95,0x36,0x70, + 0x2d,0xe5,0x25,0x4b,0x1b,0x63,0x97,0x31,0x5d,0xca,0x53,0xb8,0x77,0x15,0x1b,0xc6, + 0x7d,0x10,0x61,0xfc,0x64,0xa3,0x96,0xb7,0x28,0xf6,0x70,0x1d,0x70,0xff,0xfc,0xdc, + 0x8b,0xe6,0x1b,0x6e,0x4d,0x5a,0xcb,0x63,0x34,0x36,0xf5,0x5c,0x60,0x1c,0x8f,0xf2, + 0xfb,0x8c,0xe3,0xad,0xee,0x9a,0x7e,0xc9,0x6b,0x38,0x57,0x45,0xfd,0x36,0x67,0x6a, + 0xcd,0x4d,0xe4,0x6c,0xa3,0xa8,0xbf,0x96,0xa3,0xe8,0xfc,0x3b,0xb9,0x14,0x6b,0xf9, + 0x66,0xfd,0x2d,0xf3,0x53,0xc8,0xaf,0x96,0xe8,0xaf,0xe5,0x59,0x14,0xcd,0xb7,0x5a, + 0x72,0xae,0x51,0x7f,0x86,0xbb,0xbd,0x59,0x4c,0x77,0x41,0xac,0xb7,0x88,0xea,0xc3, + 0x3d,0xf2,0x30,0x64,0x5f,0x67,0x92,0x87,0x75,0x47,0xef,0x9e,0x87,0xd5,0xc4,0x9d, + 0xe3,0xe4,0x3c,0x6b,0x95,0x49,0x77,0xe7,0x88,0xd1,0x3d,0xc3,0x9,0xe5,0x81,0x20, + 0x9e,0x66,0x39,0x9d,0xe6,0x76,0x6a,0x37,0xe2,0xfe,0xee,0xd5,0x6e,0xb3,0x7d,0xad, + 0x1,0xf9,0x4c,0xb1,0xbe,0x35,0x37,0x2b,0xe5,0x99,0x66,0x1f,0xaf,0xe1,0x99,0x9d, + 0x3,0x63,0xfb,0x4d,0xec,0x7b,0x76,0xad,0xf,0x63,0x7e,0xb7,0xc8,0x76,0x2d,0x4f, + 0xd5,0x5c,0xb8,0x64,0x7b,0xd3,0xb9,0x2f,0xe5,0xb1,0x9a,0xb,0x7a,0xd8,0x64,0x7d, + 0x18,0xf9,0xe9,0x4d,0xec,0xeb,0x79,0xd5,0x7b,0x8c,0x5f,0xe3,0x9c,0xe3,0x6f,0xf4, + 0x61,0xa7,0xf6,0x35,0x1f,0x29,0xf9,0x40,0x8e,0x1c,0xf7,0xc8,0xd6,0xf1,0x4f,0xfb, + 0xc8,0xc3,0x18,0xff,0xde,0x39,0x1f,0xde,0xe3,0x3b,0x93,0xb7,0x6f,0x6d,0x9f,0xb6, + 0x39,0x7e,0xaf,0x16,0xd1,0x7a,0xc1,0xae,0x87,0xf8,0x10,0xf9,0x31,0xbd,0xeb,0x1c, + 0xfc,0xe3,0xdc,0x47,0xe7,0x88,0xcc,0xf5,0x3c,0xdb,0xc6,0x87,0xe2,0x99,0x25,0xde, + 0x45,0x75,0x80,0xae,0x3f,0x7d,0xd1,0xbf,0x5d,0x94,0x6c,0x8b,0xf,0x8c,0x87,0x59, + 0x7d,0xc3,0x6f,0xbc,0x3a,0xc1,0xd6,0x21,0x4e,0xae,0xe4,0xd6,0x53,0x1e,0x3f,0x79, + 0x3c,0xa1,0x1c,0xb3,0x89,0x7d,0x8c,0xff,0xad,0xed,0x5b,0xe,0xd8,0xa5,0x68,0x7c, + 0xd5,0xea,0xb4,0x0,0x67,0x5b,0xe2,0x6f,0x8d,0xa7,0xb5,0xb6,0x62,0x1c,0x71,0x8e, + 0x4a,0xf6,0x6d,0xbd,0xa8,0xf5,0x5c,0x61,0xff,0x4d,0x67,0xec,0xd6,0xb6,0xbd,0x46, + 0x75,0x9e,0x9e,0x7d,0x3,0xef,0x68,0x5b,0xcf,0x6a,0xc6,0x33,0xfc,0xd9,0xb9,0x81, + 0x3d,0xa3,0x66,0xfd,0x7,0x3d,0xde,0x99,0x40,0x64,0x9f,0xb1,0xb2,0x4d,0x7b,0x7a, + 0x7a,0xf5,0xdd,0xfa,0x50,0xb3,0x4f,0xec,0xf7,0x70,0x9f,0x7f,0x2f,0x4e,0xa9,0x28, + 0x7d,0x63,0xff,0x25,0x75,0xb0,0x9e,0x63,0x59,0xdb,0xc2,0x37,0xb6,0x66,0x2d,0xd6, + 0xae,0x51,0xec,0x96,0xec,0xdb,0x7d,0xa0,0x67,0x50,0x4e,0x4d,0xeb,0xd6,0x56,0x36, + 0x76,0x6b,0x75,0xb4,0xee,0x7b,0xcd,0xfd,0xcc,0xf9,0x57,0xb3,0x7d,0xbb,0x77,0x5b, + 0xea,0x6c,0x5b,0xcb,0xcb,0x9a,0x97,0x6a,0xfa,0xd0,0x3e,0x7d,0xf0,0xf6,0x6b,0xcd, + 0xbe,0x33,0xef,0x8b,0xed,0x47,0x58,0x21,0xf6,0x67,0xf9,0x6f,0x84,0xfd,0x4b,0xe7, + 0xdf,0x3b,0x7b,0xa8,0xd9,0xae,0xd4,0xf2,0x5c,0x8f,0xc5,0xeb,0x5f,0xf0,0xa1,0x38, + 0xff,0x81,0xec,0xd2,0x7e,0x54,0x3,0x97,0xc4,0x9e,0x39,0x2c,0x39,0x7b,0x50,0xe9, + 0xcf,0x4,0x70,0x3c,0xe0,0xb4,0xce,0x7b,0xb8,0x83,0xa6,0xf6,0x70,0xff,0x1f,0x15, + 0x62,0x8c,0x56, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/sound.ico + 0x0,0x0,0x3,0x8c, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0x3f,0x6f,0x53,0x41,0xc,0x77,0x4b,0x68,0x54, + 0x75,0x48,0x86,0x4a,0x94,0x89,0x2c,0x48,0x8c,0x6c,0x8c,0x74,0x82,0x91,0xaf,0xc0, + 0x84,0x58,0x99,0x2a,0xb1,0x24,0x23,0x23,0xdf,0xa0,0x2b,0x62,0x40,0x62,0x83,0x29, + 0x8f,0x89,0x91,0xaf,0xd0,0xf2,0x1,0x50,0xaa,0xe,0x8d,0xd4,0xa8,0x87,0x7d,0xef, + 0x5d,0xea,0x5c,0xee,0x8f,0xfd,0x72,0x51,0x22,0xa8,0x25,0xeb,0xf2,0xee,0x9d,0x7f, + 0xf6,0xf9,0xee,0x6c,0xdf,0xb,0xc0,0xe,0x74,0xa0,0xdf,0x7,0x6c,0x7,0xf0,0xb6, + 0x3,0xf0,0x2,0x0,0xe,0xf,0xeb,0xe7,0x6f,0x7b,0x0,0x5f,0xb0,0xef,0xe8,0xa8, + 0x7e,0xfe,0xb0,0xf,0xf0,0xe6,0x0,0x60,0x30,0xa8,0x9f,0x3f,0xa1,0xdc,0x1f,0x1c, + 0xfb,0x4,0x65,0xf0,0x27,0xf6,0xd4,0xfd,0x44,0xc7,0x1d,0xd0,0x92,0x19,0x8d,0x46, + 0x46,0x2d,0xd5,0xc8,0x3a,0xf9,0x16,0x18,0xe6,0xfd,0xf7,0xd6,0xf2,0xb,0xb2,0x55, + 0x55,0x59,0x16,0x62,0x58,0xd9,0xcf,0xe6,0xf1,0x82,0x3c,0x3e,0x44,0x99,0xcf,0xd5, + 0xc9,0xfa,0xf2,0x9e,0x7e,0xdf,0xe,0x2b,0x47,0xef,0x7d,0x59,0x6a,0xb9,0x7e,0x60, + 0xec,0xfa,0x48,0xf6,0xb7,0xf9,0x6a,0xc7,0xc5,0xe4,0x3d,0x1b,0xc,0xb7,0x21,0x26, + 0x4f,0xcf,0xbe,0x7e,0x6e,0x47,0x4e,0x3f,0x51,0x44,0xff,0x92,0xf,0x8,0xc3,0xe1, + 0x84,0xfc,0x17,0xd2,0xf,0xb0,0xe0,0xff,0x85,0xb9,0x64,0xfc,0x3f,0x5f,0xaf,0xd0, + 0x6,0x70,0x18,0xca,0xf5,0x4f,0x62,0xb4,0x39,0x43,0x2b,0xec,0x7f,0x4e,0xd1,0x79, + 0x3a,0xba,0x19,0x1a,0x33,0x7b,0x6e,0xcc,0x14,0x79,0xf2,0xc8,0x98,0x33,0x9c,0xd6, + 0xe8,0x41,0x33,0xbd,0x7b,0x4d,0x7b,0x80,0x7d,0xd8,0x9e,0x3d,0xc4,0x31,0x50,0x8f, + 0x25,0x19,0x92,0xa5,0x38,0x83,0xe1,0xc6,0xc6,0x1b,0x17,0x67,0x3e,0xee,0xb5,0xb4, + 0x76,0xfb,0x69,0x95,0xb5,0x58,0xc2,0x82,0xd5,0xd7,0x77,0x8e,0x55,0x68,0xbf,0x2c, + 0x61,0x29,0xe3,0x67,0x10,0x4b,0x13,0x4f,0x13,0xe7,0x2a,0x19,0x5f,0x21,0xb3,0xcf, + 0x1d,0x86,0x63,0x1f,0x8b,0xe3,0xf1,0x71,0x9,0xfb,0x8c,0x8b,0x5b,0x3c,0x76,0xc7, + 0xe2,0x2f,0xc3,0xc,0x12,0x8f,0x5d,0x3c,0x96,0xa6,0xe2,0x71,0xca,0x3e,0x87,0xe7, + 0xc7,0xe6,0x54,0x7c,0xe,0xd8,0x17,0x8c,0xd3,0xa1,0x58,0x1d,0x5a,0x5f,0xee,0x43, + 0xdf,0xa7,0xa9,0xf9,0x27,0xe2,0xb7,0x6f,0x63,0x72,0xcd,0x63,0xf9,0x20,0xb5,0xa6, + 0xa9,0xb8,0xce,0x31,0x23,0xf6,0xf9,0x24,0x3a,0x33,0x8a,0x7c,0x21,0xdd,0xe7,0xd2, + 0xfc,0x21,0xc6,0x6b,0x39,0xbe,0x18,0x19,0x47,0xa7,0xc8,0x3d,0xcc,0x3d,0xc8,0xb3, + 0x2e,0xe6,0x22,0xe8,0x99,0x49,0x97,0xf2,0x53,0xaf,0xc9,0x57,0xd4,0x8e,0xed,0xf3, + 0x64,0x67,0x6c,0xdf,0xcf,0xba,0x63,0x1c,0x8f,0x82,0xc4,0xa7,0x35,0xc,0xe5,0x2b, + 0x2c,0xa1,0xe1,0x29,0xdc,0xe6,0xad,0xd7,0xfb,0x9b,0x98,0xd9,0x7f,0x41,0x25,0xf3, + 0xe6,0x12,0x36,0xe4,0xf7,0x79,0x6b,0xec,0x82,0x79,0x35,0x89,0xed,0xe2,0x88,0x24, + 0x37,0xe6,0xea,0x4f,0x87,0x2d,0xa8,0x83,0x55,0xf6,0x3a,0x6e,0x79,0xcf,0xc9,0xfa, + 0x22,0x74,0xf,0x72,0xcc,0xfd,0xc3,0xfb,0x5,0xfe,0x59,0xb0,0x37,0x74,0x4f,0xf2, + 0x73,0x75,0x24,0xd7,0x4,0xc9,0xcf,0x5b,0xa,0x7c,0x91,0x8f,0x72,0xf8,0xdc,0x5e, + 0x7f,0xff,0x48,0xfc,0x93,0xc3,0x27,0x5a,0xa7,0xfd,0x2,0xfc,0x6c,0xce,0x8f,0xd5, + 0x3a,0x5c,0x3e,0x74,0xbe,0xf8,0xfb,0xd8,0xbe,0xe2,0x3a,0x72,0xf7,0x54,0xe1,0xf9, + 0xca,0xee,0x2b,0xc5,0x3d,0x36,0xa5,0x23,0x49,0xb1,0x3a,0x46,0x18,0x73,0xb2,0x75, + 0x52,0x48,0x87,0x22,0xf6,0x88,0x63,0x47,0xcb,0xf8,0x2c,0x3e,0xdf,0xde,0x78,0x29, + 0x69,0xf1,0xb7,0x96,0xc,0x27,0x5e,0x7b,0xe1,0xab,0x29,0xd6,0x5d,0xd5,0x7d,0xaa, + 0xbd,0xa0,0xde,0xe,0xbb,0xf5,0x9d,0xc2,0xb6,0xbb,0xcf,0x6c,0x7f,0xd5,0xbd,0xc4, + 0x71,0xd7,0x76,0xfc,0x4d,0xef,0x1a,0xe5,0xa7,0x88,0x33,0x9d,0x43,0x52,0x1d,0x36, + 0x40,0x3e,0x86,0xdb,0x3a,0x6c,0xd4,0xdf,0xcc,0x5c,0xef,0xe8,0x9f,0xa2,0x75,0xd6, + 0x9c,0x59,0xdd,0xa0,0x8f,0x49,0xc5,0x74,0xaf,0xb1,0x66,0x55,0xe9,0x2e,0x50,0x73, + 0xaa,0x75,0x17,0xae,0x79,0xd5,0xba,0x37,0xa0,0x3f,0xa9,0xbb,0xcd,0x9d,0x22,0x92, + 0xf3,0xb3,0xba,0x63,0xfa,0xb,0xfb,0x60,0x9e,0x5b,0x7d,0xdd,0x42,0xfd,0xab,0xe4, + 0xe5,0xe8,0x37,0x3f,0x49,0xcd,0x9,0x1e,0x2b,0xfd,0x1f,0xbd,0xc7,0x84,0xe6,0xaf, + 0xac,0xa9,0xb3,0x94,0xaa,0xe3,0x95,0xfa,0xe7,0xbe,0x5c,0x97,0xfe,0xd4,0x9d,0x28, + 0x54,0xc3,0x4a,0x58,0xa3,0x3f,0x73,0xa7,0x59,0xfb,0xfc,0x15,0xfa,0x43,0xfb,0x20, + 0xba,0x37,0x52,0xdf,0x94,0xa5,0x77,0xae,0xd0,0x59,0x90,0x9c,0xf,0x6e,0x43,0xe8, + 0x1e,0x56,0x30,0xfe,0x88,0xcf,0x47,0xc8,0x86,0x2,0xfa,0xb9,0x1d,0x59,0xca,0xdd, + 0x47,0xdb,0xc6,0x7f,0x90,0xc5,0x7f,0x91,0xd,0x6d,0xff,0x3b,0xd2,0xc,0x2e,0x70, + 0x67,0xe,0xe9,0x57,0xc5,0x49,0xe5,0x7f,0x3,0xc5,0xf5,0x87,0x6c,0xd8,0x44,0xd, + 0xbc,0xc1,0xfa,0x93,0x93,0xda,0x77,0x77,0xb4,0xbd,0x64,0x7c,0xba,0x44,0x3e,0x47, + 0xfe,0x41,0xc9,0x8e,0xfe,0xcc,0x34,0xe6,0x6,0xec,0x77,0x9,0x98,0xc2,0xd0,0x54, + 0xf0,0x8a,0xbe,0x3f,0x20,0xbd,0xc4,0x3d,0x70,0xd2,0xec,0x3,0x6a,0xdf,0xfd,0xa2, + 0xfe,0xa,0x86,0x3f,0x71,0xdc,0x15,0x8d,0x47,0xb9,0x2b,0x94,0xbf,0x40,0x9c,0xb, + 0x8b,0x77,0xde,0xe0,0x33,0xfa,0xb,0xcc,0x7b,0xed,0xd, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_disabled.ico + 0x0,0x0,0x4,0x6d, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x6e,0x1b,0x31,0x10,0xa5,0xd,0xd9,0x80, + 0x91,0x42,0x2a,0x6c,0xc0,0x5d,0x54,0xa6,0xcc,0x11,0x24,0x20,0x48,0x1b,0x17,0x66, + 0x9d,0x54,0x41,0x4e,0x21,0x51,0xaa,0xdc,0x25,0x47,0x10,0x82,0x14,0x6,0x5,0x24, + 0x6d,0xaa,0x95,0x2e,0xe1,0x6b,0xa4,0x73,0xa3,0x20,0x98,0x8c,0x44,0x8d,0x96,0x1c, + 0xfe,0x57,0x71,0x13,0x78,0x0,0xe2,0x89,0x5c,0x7e,0x66,0xb8,0xcb,0x37,0x8f,0x12, + 0xe2,0x44,0xf4,0xc4,0x60,0x20,0x10,0x87,0xe2,0x53,0x4f,0x88,0xb7,0x42,0x88,0xcb, + 0x4b,0x53,0xff,0x79,0x2e,0xc4,0x77,0x6c,0xbb,0xbe,0x36,0xf5,0xbb,0xb,0x21,0x3e, + 0xbe,0x10,0x62,0x38,0x34,0xf5,0x7b,0x1c,0xf7,0xb,0xfb,0xbe,0xc2,0x31,0xf8,0x13, + 0x5b,0x4c,0xfb,0xd6,0x46,0x3d,0x51,0x63,0x10,0x40,0x5e,0x82,0xa6,0x94,0x82,0x0, + 0x62,0x1,0xab,0x84,0xe7,0xa0,0x31,0xab,0xf5,0x7a,0x87,0x4d,0xd3,0x20,0xaa,0xc3, + 0x38,0x53,0xdf,0xb9,0x93,0xf2,0x1,0x4c,0xf,0xd8,0x3f,0x37,0xe3,0x4d,0xbd,0x45, + 0xe6,0x83,0xe3,0x73,0xd3,0xac,0x2,0xeb,0x53,0xdd,0x19,0xef,0xc5,0xbb,0xde,0xfb, + 0x4e,0xeb,0x1b,0x54,0xe0,0xc6,0x6f,0xf6,0x84,0xc6,0x7c,0x5b,0x2c,0x9c,0x39,0xa8, + 0xee,0xa2,0x3a,0x14,0xea,0x17,0x1a,0x43,0xeb,0xc7,0x90,0xfa,0xa5,0xd6,0xb7,0xe6, + 0x77,0x90,0xe6,0xb0,0xd7,0xe7,0xf3,0x1e,0xfa,0xcc,0x66,0x3b,0x9c,0x4e,0xdd,0xb9, + 0xba,0xac,0xcf,0xf7,0x36,0xb5,0x3e,0x3d,0x9b,0xcd,0xe7,0x6,0x67,0x73,0xa7,0x9e, + 0xda,0xbb,0x18,0xda,0x63,0xb8,0xf1,0xf5,0x63,0x28,0x12,0xdf,0x7b,0x2c,0xfe,0xc0, + 0x7e,0x78,0x96,0x1b,0x93,0x9a,0xe3,0xcf,0x18,0x60,0xa3,0x0,0x1e,0x7b,0x6,0xe5, + 0x0,0x40,0x6f,0x11,0xdb,0xb5,0x46,0x94,0x16,0x2e,0x11,0xdf,0x23,0xfe,0x68,0x71, + 0xcb,0x33,0x48,0x37,0x3b,0xbe,0x21,0x9e,0xf9,0x72,0x1e,0xf3,0x34,0x68,0xc1,0xef, + 0x4c,0x84,0xf9,0xa6,0x88,0x77,0x26,0xd3,0xe9,0xfe,0xbb,0x73,0x90,0x9d,0xbf,0x32, + 0x1e,0xa2,0xf7,0x12,0x3b,0xcb,0x6e,0xbb,0xcb,0xb,0xdc,0xe8,0x3b,0x21,0x6e,0x5b, + 0xad,0x56,0xfb,0x7e,0x66,0x3e,0x53,0xdf,0xa2,0xfd,0x3d,0xa5,0x79,0x2a,0xed,0x5f, + 0xeb,0x57,0xcb,0x85,0x79,0xde,0x72,0xb9,0xaf,0xf5,0x8f,0xea,0xe6,0x39,0x80,0xed, + 0x5f,0x8e,0xc7,0xba,0xec,0x5f,0x8c,0xd7,0x9a,0x86,0xfb,0xb9,0x72,0xe6,0xec,0xc2, + 0xb3,0xae,0x1f,0xb6,0x9f,0x6e,0x29,0xe1,0xbd,0x1c,0xf,0x84,0x78,0x21,0xe7,0x5f, + 0x29,0xa7,0x17,0xf1,0x72,0x84,0xdb,0x9,0x6b,0xf2,0x84,0xcf,0x93,0x69,0xce,0xaf, + 0xf1,0x6f,0xbe,0xe7,0x6b,0xc1,0xbe,0x87,0x63,0xfc,0xa3,0x5c,0xc0,0x39,0xb9,0xc4, + 0x3f,0x7e,0x5e,0x28,0x9f,0x90,0x9f,0xd3,0x4,0xdf,0xe6,0xf2,0x4c,0x7c,0x3f,0x7d, + 0xce,0x8e,0xf9,0xc7,0xc7,0xc4,0x9e,0x8b,0xf6,0x7d,0x1f,0x2c,0xb7,0x3e,0xc7,0x12, + 0xff,0x6a,0xf3,0x52,0x32,0x4f,0xdd,0xbc,0x84,0xcd,0xa2,0xf,0x8f,0xe3,0x3e,0xe2, + 0x67,0x90,0x6f,0xde,0x81,0xfe,0xda,0xc7,0x3c,0xd5,0x7,0x8d,0xed,0x12,0x9f,0x6b, + 0x4c,0x48,0x12,0x13,0x93,0x8f,0x2b,0x37,0x8f,0x69,0x93,0xb7,0x50,0x42,0x8b,0xd7, + 0xa2,0xcd,0x5b,0x1f,0x2e,0x62,0x91,0x4,0x2d,0x79,0x86,0x18,0xf2,0x62,0x3f,0xf7, + 0x2c,0x93,0xc7,0xe,0x28,0xd2,0x39,0x2d,0xb8,0x6,0x7f,0x7f,0x94,0x6b,0x28,0x17, + 0xf1,0x9c,0x44,0x1c,0x4d,0x96,0xcb,0x71,0x5b,0xb,0xeb,0x5f,0x5f,0x8f,0x33,0x8e, + 0x16,0x91,0x35,0x82,0x1c,0x40,0xfe,0xf3,0x5c,0xe5,0xea,0x75,0x65,0xcd,0x67,0xc6, + 0x35,0x18,0x1f,0xd3,0xff,0xd1,0x3c,0x98,0xf7,0x5f,0x59,0xed,0xa1,0x7a,0x9e,0x97, + 0x72,0xfe,0x53,0xbb,0xbd,0x6,0xf7,0x3f,0xc6,0xa3,0x65,0xfb,0x4f,0xf3,0xf1,0x1c, + 0xec,0xbe,0x63,0xce,0xcd,0x69,0xff,0xfd,0x35,0xda,0x12,0x9f,0xbb,0xd4,0xff,0xf8, + 0x77,0xe4,0xbe,0x87,0xb2,0xfd,0x5f,0xb3,0x38,0x5c,0xc,0x69,0x0,0x7b,0x9e,0x94, + 0xff,0x69,0x6d,0x11,0xc7,0x2e,0x79,0xad,0x16,0x6b,0xfc,0xcf,0x69,0x8f,0x54,0x9e, + 0x29,0xf5,0x5f,0x14,0xf2,0x69,0x17,0x1d,0x41,0xed,0x93,0x9,0xe7,0xd1,0x3d,0xcf, + 0x4e,0x26,0xc1,0x38,0x6a,0xfc,0xa7,0xb9,0xb8,0xb6,0xea,0xa2,0x33,0x62,0xfe,0xd3, + 0x1a,0x84,0xbc,0xfd,0x29,0xfc,0xef,0xb2,0xff,0xb1,0x7c,0xce,0xf5,0xd1,0x21,0x9e, + 0x23,0x74,0x53,0xe9,0xb9,0xe8,0xa2,0xa3,0x4a,0xf5,0x54,0x17,0x5d,0x95,0xd3,0x59, + 0x35,0xfe,0xe7,0xf4,0xd3,0x51,0xba,0x4b,0x9e,0xc1,0x46,0x9f,0xc2,0xe3,0xed,0x9, + 0x6c,0xee,0x87,0xa8,0xb3,0x6,0xa0,0xef,0xef,0x10,0x47,0x88,0x43,0x78,0xc0,0x76, + 0x8d,0xcf,0x25,0xf6,0xd3,0x28,0xac,0x24,0xa,0xac,0x38,0x2e,0x1d,0x5d,0xb6,0x44, + 0xdc,0xea,0xb0,0x21,0x96,0x91,0x68,0x75,0x98,0x1a,0xc4,0x22,0x2d,0xb2,0x2a,0x3e, + 0x11,0x79,0x7d,0x16,0xdd,0x77,0x6e,0x7c,0x1f,0x33,0xfa,0x6d,0x5f,0x54,0xa0,0x98, + 0x67,0x81,0xb3,0x98,0x5d,0xbb,0x30,0xe7,0x58,0x6b,0xc5,0xf2,0xa7,0xe2,0x3e,0x64, + 0x8d,0x9f,0x8f,0xb0,0xb6,0xb4,0xf5,0xb,0x4,0x8d,0xe5,0x71,0xfb,0x9d,0x1c,0x1d, + 0x3f,0x5f,0xdf,0xd5,0x6c,0x5c,0x83,0xaa,0xa2,0xb5,0x63,0xf1,0x87,0xfe,0x47,0x9, + 0xeb,0x38,0xe5,0xf4,0xdb,0x8e,0xab,0xf5,0xa1,0x2c,0x7e,0x7f,0xcd,0x70,0xdd,0x6b, + 0x2f,0xda,0x83,0xda,0xf8,0x43,0xda,0x36,0x11,0x7f,0xf2,0x1c,0x1f,0x17,0x7f,0x4a, + 0xc3,0xb7,0xf1,0xe7,0x78,0xb3,0x6b,0xfc,0x69,0x8d,0xef,0x9e,0xc3,0xd2,0xfc,0x57, + 0xf6,0xfd,0x73,0xed,0xcf,0xef,0x0,0xee,0xbb,0xcf,0xe5,0x3f,0x3f,0xfe,0x35,0xdb, + 0x7,0xff,0xfc,0x87,0xf9,0xcf,0x7f,0xf7,0xb5,0xf1,0x97,0x7c,0x7,0xae,0x1f,0x3e, + 0x27,0x6d,0xfb,0xd5,0x68,0x91,0xba,0xff,0xff,0x94,0xe3,0x87,0x6d,0xf4,0x2c,0xa5, + 0xe3,0x6a,0xf5,0x4f,0x5c,0xb3,0x4,0xf3,0x4f,0x91,0xce,0xcb,0xc5,0x5f,0x7a,0x6f, + 0xe8,0x72,0x8f,0xc8,0xc5,0xcf,0xeb,0xa2,0x50,0xf,0xd4,0xfc,0x9f,0x5a,0xfa,0xfe, + 0xfd,0x7b,0x87,0x7b,0xff,0x70,0xff,0xcf,0x79,0x9a,0xf8,0x73,0xf7,0x93,0xd8,0x1d, + 0xe2,0x5f,0xc4,0xcf,0xd7,0xf6,0xee,0x2f,0x11,0x9f,0x9e,0xe3,0x7f,0xfa,0xf8,0x9, + 0x63,0x39,0xac,0x26,0xfe,0xd2,0x7b,0x1f,0xdf,0x87,0x5c,0xbf,0x50,0x3c,0x39,0x2c, + 0xe5,0xe2,0x63,0xf4,0x6d,0xd7,0xbb,0x5c,0xc9,0xbd,0x91,0x5b,0xd7,0x7b,0x64,0xe9, + 0x3b,0x7b,0x8e,0xff,0xff,0x88,0xbf,0x56,0xf,0xd4,0xc4,0x9f,0xd3,0xbf,0xb1,0xfe, + 0x5d,0xc7,0xdb,0x6,0xf,0xb7,0x57,0xa0,0x17,0xa7,0x20,0x47,0x27,0xa0,0x95,0x0, + 0x39,0x1e,0x23,0x2e,0x40,0xf6,0x6e,0x40,0xcf,0x87,0x52,0x9e,0xd,0xb4,0x9e,0x2b, + 0x89,0xed,0x1a,0x9f,0x4b,0xec,0xa7,0xb1,0xbf,0x94,0xb7,0x57,0x1a,0x4d,0xa2,0x25, + 0x70,0x99,0xfc,0xdf,0xe2,0xb7,0x86,0xbf,0xff,0xaa,0x44,0x3e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/other_peripherals.ico + 0x0,0x0,0x2,0x97, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x6e,0xc3,0x20,0x10,0x7d,0x96,0x22,0xab, + 0x51,0x87,0x66,0xc8,0x90,0x2d,0x1e,0x3b,0xf6,0x13,0x32,0x55,0xfd,0x8c,0x4e,0x55, + 0xb7,0xee,0x9d,0x3c,0x55,0x1d,0xfb,0x19,0x9d,0x3a,0xc7,0x5b,0xbe,0xa8,0xca,0x1f, + 0x50,0x30,0xc6,0x21,0x18,0xec,0x3,0x8c,0x9b,0x48,0xbe,0xe8,0x89,0x80,0x39,0x1f, + 0xdc,0x85,0x7b,0x47,0x80,0xc,0xb,0xac,0x56,0xe0,0x6d,0x81,0xd7,0x5,0xf0,0x8, + 0x60,0xbd,0x96,0xfd,0x7d,0xe,0xfc,0xf0,0xb1,0xcd,0x46,0xf6,0x3f,0x97,0xc0,0xcb, + 0x2d,0x50,0x14,0xb2,0xff,0xcd,0xf5,0x7e,0xf9,0xdc,0x7b,0xae,0xc3,0xbf,0xf2,0x11, + 0x39,0x2e,0x64,0xb7,0x0,0x45,0x98,0x1,0xd7,0x18,0x8c,0xef,0xb5,0x94,0x65,0xc9, + 0xc0,0x18,0x83,0x68,0x9b,0xe7,0xb6,0x31,0xf,0x7d,0x66,0x1b,0xb3,0xac,0x45,0xd3, + 0xe7,0x9f,0xa,0xee,0xb6,0xea,0xbc,0xe3,0xdc,0x96,0xf9,0x5c,0x7d,0x54,0xbf,0x82, + 0x73,0x6d,0x4a,0xff,0x70,0x38,0xd4,0x68,0xe7,0x37,0x63,0x54,0xfd,0x16,0xfa,0x9a, + 0x75,0x68,0xfa,0x6c,0xff,0xc4,0xaa,0x77,0xd4,0x6d,0x88,0xbe,0xd0,0x8d,0xd9,0xbf, + 0xd0,0x57,0xfb,0xd,0xd9,0xbf,0xd0,0x57,0xe8,0xac,0xdf,0x5,0xed,0xb7,0x65,0xea, + 0x53,0x60,0xea,0xeb,0xfb,0x15,0x7e,0x14,0x50,0x7d,0xe3,0x79,0xe7,0xf7,0xa6,0xef, + 0x5f,0xcd,0x57,0x63,0x54,0xfd,0x21,0xd8,0x74,0x95,0xbe,0xcf,0x7e,0x4d,0x39,0x7e, + 0x30,0x56,0x3,0x12,0x70,0x21,0x6b,0x70,0xd7,0x60,0x2b,0x21,0xf2,0xc,0x4f,0x37, + 0x75,0xbe,0x51,0x79,0xe6,0x2b,0xb7,0x59,0xea,0x88,0xeb,0xc,0xe,0x3d,0x3,0x1c, + 0x7e,0x6c,0xcf,0x51,0x5f,0xfe,0x9,0xc9,0x43,0x7d,0xf9,0x28,0x26,0x2f,0x99,0x67, + 0x34,0x26,0x4f,0x99,0x67,0xd4,0x27,0x6f,0xf1,0x56,0x3f,0xb7,0xed,0xdc,0xd0,0x3c, + 0xa6,0xbd,0xaf,0x3,0x97,0xf,0x7c,0xf3,0x5a,0xc0,0xfb,0x7a,0xf3,0x5c,0x80,0xff, + 0xf4,0x33,0x3e,0x86,0xff,0x48,0x79,0xd0,0x73,0xbf,0x63,0xbf,0xef,0xea,0xfd,0x97, + 0x98,0x57,0xa8,0x3c,0x63,0x72,0x8c,0x6d,0x8c,0xca,0x3b,0x6a,0xee,0x14,0x3c,0x34, + 0x36,0x2f,0x91,0x79,0xaa,0x78,0x63,0x35,0x38,0xf9,0x8,0x80,0x8c,0x6d,0x83,0x73, + 0x1e,0x13,0x7c,0xc5,0x4b,0x68,0x3c,0xe0,0xc4,0x5b,0xcf,0x4b,0x9b,0xe5,0x8e,0x38, + 0x73,0xb2,0xb6,0x76,0xca,0x1c,0xc0,0x11,0x87,0xe,0xb7,0x50,0xf8,0x2c,0x86,0xd7, + 0x28,0xfc,0x96,0x92,0xe7,0x52,0xf0,0x5e,0x62,0x1e,0x4c,0xce,0x8b,0xa9,0x79,0x32, + 0x75,0xde,0x4f,0xcc,0x3,0xc9,0x79,0x35,0x35,0xcf,0xce,0xfe,0x9f,0xfd,0x7f,0x49, + 0xfe,0xf7,0x85,0xc6,0x45,0x63,0xd4,0x49,0xb1,0x75,0x93,0xd9,0x1f,0xbb,0x8e,0x9a, + 0xba,0xae,0x4a,0x5d,0x67,0x91,0xeb,0xae,0x9b,0x9c,0xd5,0xe0,0xcf,0x8f,0xe,0x4e, + 0xa6,0x21,0x6b,0x70,0x5e,0x97,0x89,0x3a,0xac,0xe0,0xd8,0xe1,0x54,0x87,0x95,0x2b, + 0xdb,0x4a,0x6,0x85,0xba,0x16,0xdf,0xb9,0x30,0xbe,0x5b,0xa5,0xb7,0x66,0xf2,0xa9, + 0xdf,0x88,0x75,0x5c,0x84,0xfd,0xfe,0xfa,0x8e,0x58,0xe7,0xd9,0xed,0xc3,0x9e,0x53, + 0xa9,0x75,0x5f,0x7f,0x1d,0x38,0x6c,0x3f,0x24,0x2f,0x13,0xf3,0x34,0xd5,0xbe,0x6f, + 0xde,0xa6,0xe6,0x71,0xf2,0xfe,0x7d,0x79,0x8f,0xc8,0x83,0x17,0x60,0xbf,0x17,0xa9, + 0xe3,0x3f,0x74,0x66,0x52,0xc7,0x9f,0x6a,0x3f,0x95,0xff,0xcd,0x7b,0x86,0xce,0x4d, + 0x51,0xf7,0x8e,0xc0,0x3a,0xcc,0xe4,0xf8,0x29,0xe2,0xdf,0x57,0x27,0x4c,0x11,0x7f, + 0x5b,0x5d,0xa0,0x62,0x31,0x95,0xff,0xff,0xdb,0xfe,0x1c,0xff,0x39,0xfe,0x73,0xfc, + 0x3d,0xfc,0x1f,0x8b,0x86,0xfb,0x29,0xf6,0x53,0xc0,0xb4,0xef,0x8a,0xbf,0x1a,0x1b, + 0xea,0x53,0xef,0x85,0xa6,0x84,0xde,0x13,0x43,0xef,0x8d,0x2e,0xfb,0x2e,0xff,0x53, + 0x5b,0xc7,0xbd,0xf2,0x6a,0xec,0x63,0x8e,0xff,0xa8,0xa0,0xd8,0x56,0xf6,0x53,0x9e, + 0xef,0x21,0x61,0x28,0x72,0x9,0xc0,0x86,0x8,0xc9,0x1a,0x38,0x5e,0x2d,0xff,0xb7, + 0xf8,0x3,0xe7,0xb4,0x1a,0x18, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_active.ico + 0x0,0x0,0x3,0x4a, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x72,0x13,0x31,0x10,0x5d,0x4f,0x3c,0xc9, + 0x64,0x28,0xe2,0x22,0x45,0x3a,0xbb,0xa4,0xe4,0xf,0x48,0xc5,0x77,0x50,0x31,0x7c, + 0x86,0x4a,0x4a,0x3e,0x83,0x8a,0x9a,0xd2,0xfc,0x49,0x66,0xe8,0x21,0x43,0x8c,0x39, + 0x82,0x61,0x59,0xc5,0x77,0xe7,0xd5,0x6a,0xf7,0x4e,0xa7,0x93,0x3d,0x1,0xbc,0x37, + 0x3b,0xf2,0xe9,0xb4,0x6f,0x57,0x3a,0xe9,0xed,0x9e,0x1,0x26,0x30,0x85,0xd9,0xc, + 0xa8,0x5d,0xc0,0xeb,0x29,0xc0,0xb,0x0,0xb8,0xbc,0xdc,0xde,0x7f,0x38,0x5,0x78, + 0x4f,0x7d,0x57,0x57,0xdb,0xfb,0x37,0xe7,0x0,0xaf,0x9e,0x0,0x2c,0x16,0xdb,0xfb, + 0x77,0x64,0xf7,0x99,0xc6,0x3e,0x25,0x1b,0xfa,0x49,0x3d,0xdb,0x7e,0x2f,0xd7,0x53, + 0x18,0x2b,0xc8,0x74,0xb8,0xad,0x63,0x1a,0x62,0x60,0xa7,0xd2,0x78,0x2f,0xc0,0x2f, + 0xb7,0x7b,0x96,0xa2,0x5d,0xf6,0xcd,0xb3,0x76,0x4c,0xdd,0xb7,0x5c,0x2e,0x93,0xed, + 0x1f,0xc6,0xd6,0x18,0x9a,0x34,0xe3,0xf8,0x3d,0xb7,0xe7,0xd2,0x60,0xf1,0xb6,0xb5, + 0x91,0x6b,0xa8,0xcc,0x53,0xf3,0x2d,0x9f,0x47,0xf6,0x0,0x41,0x9c,0xbe,0x75,0xce, + 0x5,0x63,0xe5,0x73,0x69,0x1f,0xac,0xa7,0xb0,0xb1,0x9e,0x7,0xf7,0xb5,0xf2,0x75, + 0xd7,0xee,0x5b,0xbf,0xcc,0xfe,0x7e,0xbd,0xc2,0x1f,0xeb,0xaf,0x58,0xad,0x56,0xb8, + 0x59,0x7f,0xc3,0xd5,0xdd,0x17,0xfc,0xbe,0xba,0xc3,0x9f,0xf4,0xbb,0xaa,0xdb,0x5f, + 0xd5,0x1a,0x37,0xf7,0xd4,0x92,0x6,0x7b,0x30,0x71,0xf,0x29,0xeb,0xff,0xd7,0xb, + 0x7e,0xa2,0xc5,0xfb,0x88,0xe8,0x97,0x11,0x12,0xd4,0x4d,0xc2,0xbd,0xe5,0x79,0x86, + 0xe8,0xe6,0x81,0x6f,0x1a,0x9e,0x79,0x7b,0x5a,0x2e,0x3c,0x45,0xf3,0xb1,0xf4,0x77, + 0x38,0x1c,0x53,0xe3,0x3,0xc9,0xb,0x76,0xfc,0x69,0xfc,0x96,0xc9,0x73,0x26,0x5f, + 0x59,0xbc,0x7,0x10,0x70,0x57,0x33,0x86,0xf3,0xd0,0x10,0x3c,0xc9,0x5d,0x16,0x1f, + 0x25,0xc7,0x27,0x78,0xd0,0x6c,0xbb,0xb8,0x4f,0xc4,0xc7,0xc5,0x8a,0x33,0xe2,0x1c, + 0x85,0x7f,0x24,0x6f,0x45,0xb6,0xc0,0x38,0x14,0x41,0x1d,0xab,0xe2,0x31,0xde,0xc, + 0x6c,0x19,0x1e,0xf7,0x11,0x8c,0x35,0xf0,0xa2,0x77,0xc4,0xfa,0xa5,0xf,0xd5,0x5e, + 0xda,0xd6,0xca,0xf7,0x48,0x6f,0x7f,0xcf,0xfe,0x1b,0xda,0xb6,0xe7,0x82,0xe1,0x8d, + 0x95,0x22,0x79,0x21,0xde,0x2f,0x47,0x19,0x29,0x58,0x3d,0x47,0xbc,0x9d,0x23,0xde, + 0x5c,0x50,0xae,0xba,0xa0,0x35,0x4d,0x57,0x7,0xf3,0xe8,0x3d,0xfb,0x7c,0x45,0x25, + 0x34,0x3c,0x83,0x5d,0xde,0x7a,0x79,0xbe,0x9f,0xd0,0x15,0x2d,0x87,0x6d,0xf1,0xd3, + 0x58,0xe1,0x67,0xb6,0x3b,0xc7,0x65,0x61,0xb7,0x9c,0x63,0x5d,0xa1,0x8f,0xb4,0x3c, + 0x2a,0xb9,0x2b,0x5,0x3f,0xf3,0x4c,0xf,0xc1,0x97,0x3c,0xc7,0xf9,0xb6,0xe5,0x54, + 0x84,0xb4,0x7c,0x9b,0x90,0x77,0xf9,0xbd,0xea,0x23,0x27,0x7e,0x8c,0xbf,0x47,0xfa, + 0x78,0xd4,0xf2,0xd1,0xac,0x87,0x15,0x7f,0x72,0x6b,0x70,0xbe,0x9a,0xa7,0x51,0x7c, + 0x7f,0xd,0x98,0x87,0x9a,0xdb,0x24,0xbe,0xd8,0x1b,0xed,0xdc,0xeb,0x71,0x3e,0x6f, + 0x7b,0xf5,0xb6,0xcd,0xef,0x76,0xde,0x9a,0xad,0x86,0xf,0x61,0xae,0x97,0x75,0x86, + 0x86,0xcf,0x63,0x8,0xde,0x8b,0x81,0x1f,0x9d,0x1f,0xde,0x2f,0x54,0xc6,0xa0,0xe2, + 0x49,0x2c,0xc6,0x2b,0x9d,0x35,0x56,0xc7,0x38,0x6d,0xfd,0x73,0x6b,0x8,0xb3,0xb6, + 0xe8,0x38,0xbf,0xa3,0xb1,0x21,0xc6,0x2f,0x2d,0x7b,0xa9,0x63,0xa4,0x1e,0xe5,0x9f, + 0x17,0xc4,0x33,0xc4,0xdf,0x27,0x88,0x1b,0xfa,0xf0,0xaf,0x88,0x67,0xc,0x2e,0xe8, + 0x53,0x7,0x13,0x75,0x9f,0xfa,0x3a,0x6c,0x41,0x7a,0xd,0xbb,0x3a,0xcc,0xcd,0xe, + 0x38,0x41,0x3d,0xde,0xc3,0xf9,0xd5,0xcf,0xd5,0xbe,0xe3,0x8,0xf8,0x35,0xba,0xc2, + 0x38,0xca,0x8a,0x4b,0xa8,0x3d,0x64,0xd,0xf2,0x78,0xfc,0x67,0xed,0xfd,0x56,0x87, + 0xf8,0x96,0x31,0x14,0xe2,0xec,0x31,0xfe,0xb5,0x3c,0xc8,0x73,0x6f,0x5f,0x2e,0x2e, + 0xe1,0xdf,0xfa,0x6f,0x3c,0x29,0x86,0x12,0xf3,0x57,0xe6,0x65,0xf5,0x47,0x3e,0xf7, + 0x34,0xff,0x26,0x86,0xd4,0xba,0x20,0x63,0xff,0x77,0xce,0x3f,0xa7,0x66,0xcf,0xf5, + 0x5f,0xa4,0x6,0x73,0xa2,0x46,0x17,0x17,0x5f,0xab,0xae,0xf7,0x2f,0x65,0x68,0xc, + 0x56,0xed,0x97,0x52,0xe7,0xca,0xba,0x3c,0x88,0xc1,0xc0,0x8d,0xfc,0x34,0x38,0xa, + 0x47,0x4,0xcf,0x25,0x77,0xb9,0x9d,0xcf,0xa8,0x65,0xcf,0xf9,0x37,0x49,0xa3,0xea, + 0xb7,0x8f,0x81,0x65,0xce,0x9f,0xcd,0xdd,0x63,0xf1,0x35,0x18,0xe2,0x5f,0xae,0x63, + 0x17,0x56,0xce,0xfc,0xbb,0x74,0xf4,0xfc,0xa5,0xf,0x7,0xd1,0xde,0xea,0x55,0xfe, + 0xfe,0x5,0x96,0xf9,0x1d,0x64,0xf9,0x18,0x71,0x26,0x25,0x56,0x74,0x4e,0x4a,0x9f, + 0xff,0xa1,0xb1,0x95,0xe4,0xbf,0xc,0xae,0x7a,0x54,0xf3,0x87,0x3,0xfa,0x86,0xd8, + 0xff,0xa1,0x25,0xa8,0x1,0x53,0xcf,0x55,0x69,0x3d,0xca,0x51,0xfe,0x73,0x41,0xdc, + 0xcc,0x11,0x6f,0xcf,0x10,0x6f,0x4e,0x88,0x5,0x27,0x5e,0x5d,0x61,0x1f,0x84,0xa7, + 0xff,0x49,0x41,0xf2,0x7,0xe4,0xe9,0x9f,0x6b, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/input_devices.ico + 0x0,0x0,0x3,0xe0, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x40,0xc,0xa6,0x61,0x23,0x41, + 0xd0,0xc1,0x1e,0x32,0x64,0xb3,0xc7,0x8e,0x7d,0x3,0x67,0xea,0x73,0x74,0x2a,0xfa, + 0x16,0xd6,0xd8,0xad,0x7d,0x84,0xc,0x1d,0x3a,0x75,0xce,0x56,0xf5,0x49,0x2a,0xa0, + 0x80,0xc7,0xc2,0x9d,0x1a,0xa0,0x46,0x54,0x9e,0x64,0xc6,0x34,0x4d,0xde,0xf1,0x24, + 0xd9,0xcd,0x50,0x2,0x1f,0x22,0x9d,0x8e,0x1f,0x79,0x7f,0x24,0xcf,0x1,0x18,0xc1, + 0x4,0x66,0x33,0xc0,0xbf,0xb,0x78,0x37,0x1,0x78,0xd,0x0,0xd7,0xd7,0xed,0xfb, + 0xfd,0x5,0xc0,0x17,0x6c,0xbb,0xb9,0x69,0xdf,0xdf,0x5f,0x1,0xbc,0x7d,0x1,0xb0, + 0x58,0xb4,0xef,0x9f,0x51,0xef,0x27,0xf6,0x7d,0x89,0x3a,0xf8,0x88,0x2d,0x6d,0x7b, + 0x90,0xdb,0x9,0xa4,0xa4,0x66,0x70,0x49,0x59,0x96,0x4f,0x3a,0xe1,0x99,0xe0,0xe5, + 0xe1,0x3a,0x24,0x39,0x3c,0x5c,0x4f,0xf8,0xaf,0xf1,0x24,0xfd,0x2f,0x8a,0xa2,0xd6, + 0xc6,0x94,0xf2,0x21,0xe0,0xd3,0xdd,0xdd,0x81,0x7e,0x78,0xf,0x48,0xe9,0x6b,0x73, + 0xa1,0xf8,0x9f,0x14,0x3e,0x17,0x6c,0x3e,0x0,0x1c,0xeb,0x1a,0x74,0xd7,0xeb,0xf5, + 0x11,0x14,0x3f,0x24,0x87,0x3a,0xdf,0x84,0x30,0x1f,0x7c,0x5d,0x85,0x2f,0xcd,0xf7, + 0x14,0xa4,0x3e,0xb5,0xd3,0x33,0x8d,0x35,0x8,0xb5,0xd3,0xb3,0xa6,0x4f,0x7e,0xd1, + 0x58,0x3c,0x1c,0x7c,0x5d,0xb9,0x2e,0x49,0xca,0x7f,0x45,0xdf,0x2d,0x9c,0x2b,0x47, + 0x4f,0x59,0xa7,0x23,0xf9,0x11,0xc6,0x1d,0xb0,0x44,0xcc,0x5b,0x14,0x88,0xa,0xdf, + 0xab,0xf,0x38,0x67,0x97,0x61,0x5e,0xf6,0x28,0x46,0xd8,0x36,0x46,0x5,0xfc,0x56, + 0x7f,0xaf,0xeb,0x10,0x67,0x30,0xdc,0x34,0xf1,0x86,0xe2,0xcc,0xc7,0x8b,0x6c,0xbf, + 0xb2,0x62,0x4e,0x8c,0xa3,0x4b,0xc,0xa,0x62,0xc5,0x31,0xd,0x1e,0x5e,0x4b,0x57, + 0x8b,0x71,0x1e,0x5e,0x8d,0x23,0x8,0x9d,0xd1,0x98,0xdf,0x1a,0x27,0xe7,0xe1,0x67, + 0x1d,0x76,0xfb,0x33,0x36,0x1f,0x29,0x1f,0x65,0xdc,0xe0,0x7c,0x14,0x27,0xc9,0xa6, + 0x27,0x36,0xf2,0xf8,0x4a,0xf1,0x94,0xc7,0x58,0xe2,0xc9,0x89,0x95,0x9c,0x57,0x89, + 0x99,0x12,0x6e,0x3e,0x3e,0x9f,0x19,0x31,0x14,0xc,0xbb,0xd1,0x3d,0x64,0xc5,0x54, + 0x70,0xc6,0x55,0x1e,0x1b,0xad,0x18,0x2b,0xe3,0x6c,0x4c,0x62,0x7c,0xbc,0xf,0xe7, + 0xa3,0x6f,0x32,0xe6,0x5a,0x36,0x65,0xc,0xee,0x12,0xc7,0xb5,0x98,0xce,0xfb,0xf3, + 0x45,0x21,0xce,0x54,0x6e,0xe3,0xfd,0xa4,0x5f,0x52,0x3c,0xeb,0x61,0xf0,0x65,0x8b, + 0x66,0xa3,0xb,0x8f,0x22,0x43,0xf1,0xb8,0x38,0xb7,0x2b,0xcc,0x47,0x73,0x5c,0xdb, + 0x90,0x8f,0x46,0x2c,0x1f,0x21,0x2a,0x7c,0x7f,0x8,0x68,0xda,0xa6,0x7,0x28,0x30, + 0xa1,0x95,0x98,0xdc,0x2a,0x40,0x82,0x6f,0x38,0xa1,0xbf,0x11,0x7f,0xda,0xbc,0x85, + 0x25,0x34,0xbc,0x82,0x7d,0xde,0x7a,0x73,0xd5,0xcb,0xef,0xbe,0x39,0xcc,0xe4,0xec, + 0x9a,0xd3,0xbc,0x9c,0x32,0x7e,0xe6,0xd8,0xb1,0xf2,0x84,0x8c,0x81,0x5d,0x73,0x69, + 0x8c,0x93,0xc0,0x63,0x43,0xae,0x1d,0x8b,0x97,0x8b,0xcc,0x8f,0x8e,0xf1,0xa8,0xfc, + 0x1a,0x67,0x2c,0xef,0x46,0xd6,0xe5,0x80,0x5f,0xe3,0xd4,0x72,0x4f,0x2a,0xf,0xc7, + 0x6a,0x5,0x6d,0xe,0x8,0x94,0x97,0xe5,0xdd,0x47,0xdb,0x3,0xd6,0x5a,0x73,0xbf, + 0xa4,0x6f,0x86,0x8f,0x6a,0xae,0x8c,0xed,0xa5,0x20,0xe4,0xab,0x1c,0x8f,0xcc,0xdd, + 0x20,0xf6,0xb3,0x87,0x3b,0x36,0x1e,0x8d,0x5f,0xcb,0x6b,0xa,0x95,0x39,0x5e,0x9a, + 0x67,0x59,0x13,0x90,0x70,0x1b,0x7d,0xeb,0x4,0xaf,0xff,0x5d,0xea,0x6,0xed,0xfc, + 0x6a,0xdf,0xb8,0xcd,0x9c,0x3a,0x42,0x7b,0xb6,0xf8,0x69,0xcd,0x72,0xea,0xa,0xf9, + 0x1c,0xab,0x33,0xf8,0xdc,0xf0,0x45,0x8e,0xd5,0x19,0xe7,0xa8,0x3b,0x4e,0x5d,0x87, + 0x78,0x7c,0x19,0x82,0x57,0x91,0x53,0xf1,0x9e,0x8b,0xff,0x1c,0x36,0x4c,0xfe,0x70, + 0xcf,0xdf,0xe2,0x7d,0xbf,0x6a,0x6a,0xab,0xe5,0xae,0xae,0xba,0x7c,0x42,0x81,0x28, + 0x11,0x1b,0x6c,0xdf,0x36,0xdf,0x44,0x7c,0xc1,0x62,0xad,0x84,0x31,0xea,0x63,0xe1, + 0xb6,0x9d,0xe3,0x4e,0x5a,0xed,0xf0,0xb5,0x41,0xa8,0xc3,0x16,0x88,0x5b,0xd8,0xd7, + 0x61,0xc5,0x6c,0xb0,0x31,0xd,0x5d,0x93,0xb9,0x6d,0xe,0x58,0xb3,0x75,0xb2,0xd9, + 0xa7,0xa6,0xeb,0x63,0x73,0x88,0x9a,0x4f,0x13,0x6f,0x9d,0x39,0x44,0x4d,0x68,0xd9, + 0xf7,0xda,0x8c,0xe5,0xb5,0xae,0x7e,0x78,0xea,0x54,0x2e,0x5a,0x5f,0xa7,0x1f,0x49, + 0xfb,0x5e,0x9b,0x6c,0x5c,0x39,0xfb,0xc2,0xb4,0xef,0x1d,0x27,0xd9,0x94,0xf5,0x74, + 0xca,0xf,0xaf,0x7d,0x6b,0xfd,0xa9,0x16,0xb6,0xea,0x6d,0x67,0x5d,0x9b,0xbd,0x7, + 0x34,0x1f,0xac,0xff,0x45,0x58,0x3a,0xde,0xfa,0xd6,0xf2,0x21,0x36,0xbf,0xb2,0xbd, + 0x8f,0x7d,0xf2,0x81,0xfb,0xa1,0xcd,0x2f,0xaf,0x57,0x3d,0x3e,0xec,0xfa,0x64,0x9, + 0xf7,0x43,0xce,0xaf,0xc7,0x3e,0xb0,0x7d,0x9,0x19,0xb1,0xc8,0x3b,0x1f,0x9a,0x7d, + 0xbe,0x26,0xb9,0x67,0xd0,0xeb,0x87,0x76,0x56,0x39,0x77,0xec,0x4e,0x30,0x94,0xf, + 0xf2,0x9c,0x9e,0xcb,0x3e,0xf7,0xc3,0xda,0x5b,0x1d,0xed,0x9b,0x77,0x40,0xb,0x4a, + 0x7e,0x39,0xb8,0x33,0x25,0xec,0x1f,0xe9,0xc,0x89,0x94,0xfd,0x3e,0xf7,0xc8,0x94, + 0x78,0xec,0xf3,0xbe,0xdc,0x3e,0x7d,0xf3,0xde,0x33,0xad,0xe7,0x94,0x7d,0x6e,0x57, + 0xee,0xdb,0xbe,0x3e,0xa4,0xee,0xf9,0xb2,0xbf,0xb6,0x77,0x53,0xb5,0x44,0xc,0x72, + 0xfc,0xfc,0x5d,0x8e,0x5f,0x3b,0x5b,0x43,0xef,0xbf,0x88,0xfd,0x93,0x49,0xcc,0xb7, + 0x53,0xda,0x35,0xe4,0x5f,0xd8,0x7c,0x4e,0xf6,0x83,0xfc,0xf7,0xe1,0x19,0xdb,0xaf, + 0x7f,0x85,0x83,0xba,0xaa,0xb7,0x30,0x6f,0x7e,0x4b,0x0,0x18,0x85,0xbe,0x2b,0xc4, + 0x92,0xa3,0x40,0x94,0x88,0xa,0xbf,0x3d,0xe0,0xdf,0x47,0x40,0x85,0x62,0x31,0xad, + 0x4b,0xc4,0xa6,0x9a,0x4a,0x5e,0xec,0x3f,0xc2,0xfe,0xe3,0x2a,0xfc,0x98,0x51,0x6f, + 0xe6,0x75,0xfd,0x58,0xb7,0x60,0x3f,0x52,0x20,0xfe,0x2,0x6a,0xd7,0x85,0x1e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/other_removable_devices.ico + 0x0,0x0,0x4,0x85, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xb1,0x6e,0x1b,0x31,0xc,0xa5,0xe1,0x20,0x41, + 0xd1,0x21,0x19,0x32,0x64,0xb3,0x97,0x2,0x1d,0xfb,0x7,0xcd,0xd4,0xef,0xe8,0x54, + 0x34,0xc9,0x3f,0xc4,0xd7,0xad,0x43,0x12,0xf4,0x33,0x8a,0xe,0x45,0xb2,0x75,0xf4, + 0x3f,0xc4,0x1f,0x90,0x2f,0x28,0x32,0x66,0x8,0xa2,0x8a,0xbe,0xa3,0xcc,0xa3,0x44, + 0x89,0xba,0xbb,0xb6,0x2,0x88,0xf3,0xd9,0xe2,0x7b,0xd4,0x49,0x47,0x3e,0xc9,0x0, + 0x33,0xd8,0x83,0xa3,0x23,0xf0,0xd7,0x25,0x7c,0xde,0x3,0xf8,0x0,0x0,0xc7,0xc7, + 0xed,0xfd,0xaf,0x7d,0x80,0x9f,0xfe,0xbb,0x93,0x93,0xf6,0xfe,0xeb,0x2b,0x80,0x4f, + 0xaf,0x1,0x96,0xcb,0xf6,0xfe,0xbb,0xf7,0xfb,0xed,0xfb,0xbe,0xf5,0x3e,0xfe,0xa3, + 0xff,0xa6,0xfd,0x1e,0xdb,0xe9,0x1e,0xc,0x69,0x4e,0x98,0xcd,0xe9,0xcd,0xf,0x97, + 0x32,0xb,0xce,0xb6,0xef,0xe6,0x31,0x6d,0x7d,0x9c,0xbc,0x3f,0x5e,0x7d,0x5b,0xaf, + 0xd7,0xc1,0xe8,0x7b,0xe1,0x1f,0xe2,0x4a,0xf9,0xe6,0x30,0x5c,0x67,0xe1,0x33,0xf3, + 0xe7,0xbe,0x1c,0x23,0xf2,0xdf,0x6c,0xda,0xeb,0xdd,0x5d,0xe4,0x9f,0xc2,0x90,0x63, + 0xa0,0x18,0xdc,0xcd,0xcd,0xce,0xff,0x66,0x93,0x7c,0xfe,0x5b,0xeb,0x7e,0x8b,0xf8, + 0xa5,0x7f,0xce,0xa4,0x3f,0xfa,0xf2,0xf1,0xd7,0xf2,0xa3,0x3f,0xe7,0x67,0x6b,0x40, + 0xae,0x41,0xbe,0x6,0x7a,0xfe,0xd4,0x4,0x5f,0xd3,0x34,0x3d,0x63,0xfe,0x10,0x8d, + 0xdf,0xcf,0x41,0xe0,0xc1,0x76,0x71,0xd1,0xce,0x4b,0x66,0xdd,0x86,0xe7,0x8f,0xfd, + 0x3c,0x6,0x72,0x4,0x7f,0x8b,0x2f,0x9f,0x7f,0x6f,0x91,0xbf,0x95,0xbf,0xb3,0x30, + 0x4e,0xf1,0x7d,0xd2,0xf7,0xd0,0xb9,0xe7,0xb9,0x73,0x4f,0xb3,0xd6,0x1a,0xe6,0xd2, + 0x80,0x80,0xf0,0xbf,0x83,0xef,0xdf,0x2c,0x76,0x57,0xcc,0x33,0x3e,0xdd,0x6c,0xf3, + 0xd,0xe5,0x99,0x6f,0xfb,0x29,0x26,0x53,0x8b,0xe6,0x5a,0x1b,0xb3,0x5,0x67,0x4c, + 0xe,0xa,0x40,0x72,0xdd,0x2a,0xef,0x42,0x29,0x27,0x5,0x2c,0xca,0x63,0xe8,0xa7, + 0xe5,0x38,0xf1,0x8e,0x69,0xcf,0x27,0x7a,0xd7,0x44,0x9e,0xea,0xe5,0x1b,0x81,0x27, + 0xd6,0x85,0x8a,0x65,0xc5,0x74,0x62,0xbd,0x4b,0x3c,0x2d,0x17,0xe,0xc5,0x8b,0x72, + 0x62,0x2a,0x47,0xa7,0xc6,0x8c,0xcd,0x18,0x5f,0x94,0xb3,0x2b,0xc7,0x9b,0xc3,0x54, + 0xf1,0xae,0xaf,0x63,0xbc,0x5c,0x2e,0x95,0x6b,0xd3,0x8a,0x67,0xb5,0x14,0x1e,0xaf, + 0x53,0xd4,0x4f,0x5b,0xcb,0xca,0x9a,0xe,0x78,0x98,0x73,0x6f,0x6f,0xe3,0xf9,0xed, + 0xfa,0xcb,0x35,0x1f,0xd6,0x7e,0x6e,0x3e,0xa8,0x6,0x24,0xf0,0x64,0x2d,0x8,0xb9, + 0x56,0xc3,0xc3,0xeb,0xd5,0xd5,0x2e,0xc6,0x42,0x6d,0x91,0x35,0xa6,0x57,0x67,0x8, + 0xf,0xb1,0xf0,0x39,0x22,0xae,0xcf,0xfd,0x97,0x97,0x97,0x6e,0xb5,0x5a,0x6d,0xaf, + 0x30,0x24,0xef,0x53,0x5f,0x34,0x8f,0x8b,0x58,0x18,0x3,0x5e,0x7b,0x78,0x25,0x2c, + 0x1e,0x1f,0xc3,0x54,0xf1,0x2a,0xeb,0x12,0xd9,0xa,0xb1,0x98,0x99,0xea,0xd4,0x17, + 0xe7,0x5e,0x60,0xe5,0x9e,0xe1,0xbd,0x7b,0x82,0x85,0xaf,0x4d,0xb,0xdf,0xef,0x30, + 0x58,0xc3,0x3e,0xc7,0xb6,0x68,0xeb,0xd9,0xcc,0x85,0x2b,0xd6,0x2b,0x2f,0xa1,0xe1, + 0x1d,0xec,0xea,0xd6,0xc7,0x57,0x29,0xe6,0xaa,0x36,0x55,0xfd,0x4a,0xe2,0x4e,0x51, + 0xcf,0x7a,0xa0,0x5a,0xe,0xc9,0xd7,0x37,0x7b,0xdd,0x94,0xef,0xbe,0x21,0xd7,0x28, + 0x75,0x34,0x7e,0xff,0x53,0xf9,0xac,0x94,0x7b,0x12,0x35,0x35,0xaa,0x83,0x1a,0x36, + 0xcb,0xe9,0x6a,0xed,0x4a,0x70,0x44,0x75,0x22,0x95,0x3b,0x45,0xfd,0x29,0x72,0xe4, + 0xf0,0xb,0xd8,0xa3,0x38,0xb4,0xba,0x54,0xa8,0xc5,0x39,0xfc,0x80,0x8d,0x39,0xa7, + 0x22,0xfe,0x14,0x47,0x16,0xbf,0xf0,0x7c,0x2c,0x1c,0x63,0xf1,0xcd,0x1a,0xa3,0x52, + 0x17,0x44,0xcf,0x41,0xe1,0x18,0x84,0x6f,0xd1,0x1e,0xa9,0xfc,0x31,0xb5,0xe,0x19, + 0xaa,0x4b,0x2c,0xda,0x24,0x93,0x27,0x7a,0xf3,0x8b,0x1c,0xa9,0xf5,0x5f,0xd0,0x2a, + 0x21,0x67,0x95,0xd6,0xf,0xb6,0xc,0xbe,0xa6,0x35,0x22,0xd,0xa3,0xe9,0x98,0xd4, + 0x18,0xc6,0xe1,0xc7,0xba,0x1,0xd,0x75,0x4d,0x85,0x56,0xd2,0x34,0x53,0x12,0x9f, + 0x74,0x7,0x72,0x78,0x43,0x4d,0xa2,0xea,0x13,0xde,0xbf,0x56,0x47,0x31,0xed,0x93, + 0xd5,0x3f,0x23,0x74,0x55,0x11,0xbf,0x36,0xfe,0x8c,0xd6,0x6a,0x32,0x7a,0x2b,0xab, + 0xbb,0x1e,0x56,0xdb,0x8d,0xfe,0xb,0x1c,0x78,0xed,0x35,0xf7,0x3a,0x6b,0xee,0xfb, + 0xcd,0x3a,0x3,0x7f,0x9f,0x5f,0xf3,0x3b,0xc3,0xfe,0xe8,0x7b,0x18,0xb4,0x1b,0x5e, + 0x51,0x87,0x2d,0xbd,0x9d,0xc2,0x4e,0x87,0x35,0x47,0xa9,0x48,0x26,0x69,0x7f,0x4b, + 0x9f,0x99,0x38,0xd,0xfa,0x6d,0xd2,0x58,0x6a,0xf5,0x9d,0xa2,0xbd,0x86,0x73,0x8f, + 0xd8,0x6f,0xfe,0x17,0xee,0x9,0x62,0xc8,0x72,0x5b,0xea,0xce,0x88,0x18,0xb2,0xdc, + 0x35,0xfa,0x75,0x60,0xc,0x2a,0x3f,0xd3,0x88,0x55,0x31,0xc4,0xfc,0xf9,0xfa,0xaa, + 0x69,0x17,0x83,0xf6,0x35,0xe9,0xf8,0x7e,0xae,0xec,0xe7,0xcf,0xcc,0x9e,0x81,0xda, + 0x98,0x18,0x7a,0x3a,0x81,0xb4,0x32,0xaf,0x25,0x86,0xb1,0x5b,0x62,0x18,0xc4,0x9f, + 0xd2,0x45,0x62,0xfc,0xd6,0x18,0x8a,0xfc,0xa4,0x31,0xa8,0x9e,0x22,0xb7,0x3c,0x3f, + 0x4a,0xac,0x79,0x6b,0xc,0x55,0x7b,0xb9,0xee,0xfc,0x26,0xf7,0xfc,0x35,0x5d,0xae, + 0xc5,0x50,0x35,0x7e,0xe2,0xde,0x6c,0xcc,0x7b,0xd6,0x52,0xc,0xa6,0xf9,0xc7,0x71, + 0xe3,0x3d,0x3e,0xfb,0x8a,0xf1,0x5b,0x62,0xa8,0xe2,0xa7,0xf9,0xd7,0xc6,0x2f,0x6a, + 0x5b,0xf5,0x1e,0x26,0xc5,0x4f,0xe7,0x76,0x34,0x7e,0xae,0x77,0xa7,0xd8,0xd7,0x58, + 0xf8,0xf9,0xfb,0xd7,0xfd,0x67,0xf5,0xcf,0xf8,0xe9,0xbc,0xd6,0x92,0x7f,0x72,0x35, + 0xcf,0x5a,0xb,0x53,0xfc,0x4c,0x13,0x97,0xf2,0x2f,0xbf,0x2f,0xd5,0x8f,0x2d,0x4f, + 0x69,0xfd,0xd1,0xf3,0xa7,0x3c,0x48,0x66,0xe0,0x2f,0xed,0x7f,0xaa,0xf8,0xb9,0x69, + 0xef,0xe0,0x74,0xfc,0xfd,0xdc,0x87,0x31,0x68,0x2d,0xf3,0x6e,0x95,0xf8,0xe5,0x1e, + 0x30,0xb9,0xf,0xa4,0x79,0xc7,0x31,0xd3,0xb8,0x59,0x1e,0x50,0xe7,0x15,0x1b,0xf6, + 0xa7,0xe7,0x77,0x7e,0x5e,0xdc,0x57,0xf5,0xb4,0x4d,0x2a,0xf7,0xd3,0x3a,0xc0,0xcf, + 0xf7,0xf7,0x5b,0xc3,0x33,0x7c,0x3a,0xcf,0x4f,0x9e,0xe9,0x63,0xc,0x67,0x67,0xa6, + 0x7d,0x5d,0x92,0x9f,0xbf,0x7b,0x94,0x8b,0xa8,0xe,0x79,0xe3,0xfb,0xc9,0x68,0x4f, + 0x29,0xb9,0xc7,0xf2,0xb3,0x7d,0x38,0xcd,0x45,0x96,0x1f,0xb9,0xe5,0x1e,0xb8,0x62, + 0xdf,0x13,0x62,0xa0,0xdc,0x2f,0x63,0xf0,0xdf,0x65,0xf9,0x2b,0xf6,0xd4,0x2a,0x37, + 0x3f,0xc7,0x95,0xd6,0xfd,0xf7,0x62,0xe6,0x9f,0xe2,0xf9,0x67,0xce,0x13,0xa6,0xe4, + 0xf,0x31,0x14,0x8c,0x9f,0x37,0x58,0xce,0x1c,0x9c,0x95,0x1b,0xff,0x0,0xa2,0x3f, + 0x7f,0x1e,0xe1,0xd0,0x3d,0xc0,0x81,0x5b,0x6f,0xf,0x24,0x66,0x68,0xd,0x1e,0x1f, + 0x88,0xd6,0x58,0x80,0x5b,0xbf,0x39,0x88,0x7c,0xd1,0x74,0xe7,0x1b,0xf4,0xf9,0xf, + 0x99,0xc6,0xa2,0x4e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_active.ico + 0x0,0x0,0x4,0x5d, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x5a,0xb1,0x6e,0x1b,0x31,0xc,0xe5,0xc1,0x41,0x8c, + 0xa2,0x5,0x9c,0x21,0x43,0x36,0x7b,0xec,0xd8,0xf,0x8,0x90,0x4c,0x45,0x3f,0xa3, + 0x53,0xd1,0xaf,0x68,0x2e,0x5b,0xc7,0x7e,0x46,0xa7,0xce,0x19,0xfd,0x29,0xfe,0x82, + 0xc2,0xa3,0x87,0x20,0x2a,0x75,0x67,0xe9,0x28,0x1e,0xc9,0xa3,0xce,0x4e,0x8b,0xea, + 0x40,0xd8,0xa7,0x3b,0xbe,0x47,0x49,0x14,0x49,0x39,0x1,0x68,0xe0,0x2,0xae,0xae, + 0x0,0x3f,0x37,0xf0,0xf5,0x2,0xe0,0x23,0x0,0x5c,0x5f,0xf7,0xf7,0x4f,0x97,0x0, + 0xbf,0xb0,0xef,0xe6,0xa6,0xbf,0xff,0xfe,0x6,0xe0,0xcb,0x5b,0x80,0xcd,0xa6,0xbf, + 0xff,0x89,0x7a,0xbf,0xf1,0xdd,0xf7,0xa8,0x83,0x5f,0xb1,0xa7,0xef,0x8f,0xed,0xfe, + 0x2,0xbc,0x2d,0x38,0x64,0xdc,0xda,0x36,0x74,0x12,0x86,0x6,0xe9,0x8a,0x3a,0x2d, + 0x11,0x8e,0x81,0x7a,0xfd,0xfb,0x83,0x64,0xfd,0x16,0x4a,0xac,0xc0,0x30,0x88,0x2e, + 0xfd,0xac,0xd1,0xd7,0x30,0x26,0xf5,0xc9,0x98,0x47,0x18,0x9,0xf7,0xe9,0x53,0xc6, + 0xc8,0x76,0x51,0xfd,0xf4,0x2e,0xc5,0x88,0xf7,0xc0,0xdf,0x21,0xf3,0x17,0xef,0x5, + 0x7e,0x28,0x75,0x87,0xf5,0x4c,0xef,0xf1,0x77,0xd2,0x7d,0xb2,0xbb,0xb3,0xd5,0xd0, + 0xa7,0x3c,0x44,0x3f,0xea,0x75,0xba,0x9,0x8b,0xd9,0x3f,0x8c,0x7b,0xcc,0x3f,0xd2, + 0xcd,0xf3,0x5e,0xfa,0x13,0x70,0xc,0xba,0x7e,0x5c,0x37,0x7e,0x8b,0xb8,0x23,0x7f, + 0x3a,0x7e,0xd2,0xf1,0x9,0xfa,0xc9,0xa6,0x50,0xf4,0xf,0x18,0x92,0xff,0x4a,0xdc, + 0x5c,0x5f,0xd4,0x65,0xfb,0x87,0x72,0x87,0xb1,0x9e,0xac,0x2b,0xed,0x43,0x2e,0x42, + 0x3b,0x2c,0x42,0xd8,0x35,0x21,0x6c,0x91,0xa0,0x3d,0xa,0x1c,0xa5,0x69,0x7b,0x49, + 0xf7,0x6d,0xd3,0xcb,0x36,0xea,0x2c,0x43,0x38,0xac,0x43,0x88,0x71,0x6,0xc3,0x4d, + 0x17,0x6f,0x52,0x9c,0xf9,0x71,0x39,0x69,0x21,0x6f,0x9e,0x78,0x33,0x3d,0x76,0xea, + 0xa3,0x64,0xbd,0xf2,0x7a,0xb7,0x82,0x48,0x98,0x2,0x4e,0x81,0x25,0xc5,0x3,0x29, + 0xae,0x1c,0xb1,0x44,0x1f,0x28,0xfc,0xb9,0xe,0xaf,0xf0,0xc3,0x53,0xec,0x53,0xe2, + 0xde,0x6c,0xfb,0xb4,0x38,0x18,0x2,0xf3,0x45,0x7,0x9e,0x16,0x17,0x53,0x1f,0xf7, + 0xb,0x16,0x5f,0xe9,0x5c,0x64,0x3c,0x29,0x4e,0x8e,0x63,0xdd,0xe0,0x93,0x92,0xbf, + 0x64,0x5f,0x12,0xb0,0x4a,0xdb,0x4,0xbc,0xb1,0x4f,0x8d,0xf0,0xb8,0x9c,0x11,0x4f, + 0x89,0xed,0x63,0x3c,0x23,0xce,0x4f,0xc6,0x7a,0x16,0xf3,0xcd,0xf9,0x11,0x63,0x7f, + 0xf2,0x83,0xb6,0x94,0x62,0x4d,0x95,0xb9,0x4e,0xb9,0x96,0x60,0xa9,0xb1,0x94,0xdc, + 0x17,0x98,0x9e,0xb8,0x6e,0xc4,0xf6,0x2,0x53,0x8b,0x2d,0xa,0x96,0x84,0x67,0xe6, + 0x1c,0x8a,0x29,0xe4,0xd,0xd,0x8f,0xac,0x93,0xdd,0x48,0x7c,0x10,0xf1,0xbc,0x38, + 0xa,0xae,0x27,0x3f,0xa5,0xf6,0x2,0x77,0xe1,0x0,0xeb,0xb0,0x83,0x15,0xe6,0xaa, + 0x5e,0xda,0xa3,0x40,0x94,0x3d,0x93,0xee,0xd9,0xba,0x93,0x2d,0xea,0x46,0xd9,0xc1, + 0x43,0x38,0x60,0xfe,0x7a,0x59,0xf6,0x79,0xb,0x4b,0x68,0xf8,0x0,0x43,0xde,0xfa, + 0xfc,0xa6,0x7a,0x24,0xa9,0x59,0xb9,0xaa,0x2e,0x87,0xa5,0xa6,0xf8,0x7e,0xa0,0x7b, + 0xa4,0x26,0xa7,0x71,0x6c,0xc5,0xcf,0x32,0x7e,0x8e,0x77,0xc2,0x65,0x71,0x4c,0x60, + 0xf7,0x7b,0xcd,0x88,0xff,0x16,0x87,0x16,0xef,0x8a,0x7d,0x2,0xf3,0xf0,0x8d,0xbc, + 0x2a,0xcd,0x4d,0x15,0xbe,0x23,0xcf,0x96,0xb9,0x72,0x6,0x7e,0x50,0xf2,0x6e,0xc6, + 0xa4,0x7b,0x6d,0x9e,0xfd,0x22,0x47,0x99,0x43,0x47,0xf9,0x58,0xc2,0xee,0xfa,0x15, + 0x6c,0x23,0xd7,0xf3,0x66,0xe7,0xfc,0xc4,0x61,0xe5,0x69,0x1d,0xbb,0xe0,0x10,0x6b, + 0x0,0x8e,0x2f,0x89,0xb,0xdf,0xd0,0xff,0x87,0xf8,0x13,0xb5,0x42,0x89,0xef,0xac, + 0x1b,0xa,0x6c,0xd7,0xfa,0xe,0xb9,0x67,0xaa,0x8e,0x48,0xb8,0xa3,0x73,0xa4,0xea, + 0x9f,0xc2,0x9e,0x9c,0xa8,0x2b,0xc4,0x33,0x6a,0x80,0x61,0xae,0x58,0xcc,0xe6,0xfb, + 0xba,0xe0,0x30,0xeb,0x96,0x12,0xdb,0x3c,0x4b,0x6a,0x1c,0x66,0xec,0x84,0x6a,0xfc, + 0x22,0xa6,0x98,0xb1,0x5f,0xc0,0x76,0xe2,0x9b,0xd8,0x2,0x87,0xbb,0xde,0xf1,0x62, + 0xb,0xeb,0xed,0xc6,0xaf,0xad,0x83,0x88,0xaf,0xa8,0xf8,0xb5,0x35,0x83,0x83,0xcb, + 0x5b,0x6f,0xa5,0x16,0x1e,0x97,0xe1,0x19,0x16,0x58,0x7b,0x35,0x61,0x8f,0xb7,0x3b, + 0x94,0x2d,0x4a,0x9b,0xa5,0x9,0x70,0x8b,0xf6,0x7d,0x63,0x72,0xdb,0x3f,0x4b,0xb2, + 0x45,0x8c,0x1d,0x2c,0x11,0x63,0xd5,0xd5,0x71,0xcf,0x58,0x8f,0x85,0xc7,0xbe,0xe, + 0xdb,0xa0,0xdc,0xc3,0x50,0x87,0xb5,0x57,0x27,0x8d,0x36,0x9b,0x3e,0x21,0xd6,0x7b, + 0xf3,0x9a,0xb2,0xff,0xa1,0x58,0xdf,0xe3,0x45,0xf2,0xa4,0x52,0xbf,0xf9,0xed,0x50, + 0x38,0x39,0x77,0xe6,0xa7,0xbc,0xd2,0xe5,0xad,0x23,0x13,0xb7,0x63,0x5f,0x67,0x7e, + 0x4f,0xed,0x41,0xed,0xb0,0x6c,0xa8,0xe4,0x3e,0x2b,0xbf,0x93,0xbb,0x88,0x9d,0x35, + 0xdc,0x96,0xd,0xb4,0x3e,0x7a,0xad,0xb9,0xd7,0xf8,0x1d,0x75,0xec,0xab,0x8e,0xdf, + 0x59,0x4b,0xbf,0xca,0xf8,0xad,0x3a,0xf8,0x6f,0x8c,0xdf,0xa8,0x93,0x55,0x1b,0x46, + 0x71,0xff,0x4,0xff,0x9f,0xa8,0xd5,0x83,0xc4,0x5b,0x71,0x2e,0xa8,0x99,0x7b,0xd3, + 0x86,0x92,0x97,0xb7,0xe2,0xdc,0x20,0xf1,0x52,0x7f,0xc9,0x79,0xd8,0x3a,0x47,0x10, + 0x1b,0x18,0xbf,0xd6,0x72,0x8c,0x95,0x9a,0x7a,0xce,0x70,0xd8,0xe0,0xe0,0x26,0x36, + 0xb4,0xf6,0xf9,0x86,0xf3,0x3b,0xfc,0xbc,0x9a,0xdf,0x83,0xf9,0x9f,0xf0,0x3b,0xcf, + 0x4c,0x6c,0xfe,0x1d,0x6b,0xea,0xe0,0x77,0x9e,0xa9,0xa,0xee,0xc2,0x5f,0xad,0xcf, + 0x9,0x7e,0xf1,0xcc,0x65,0xed,0x3f,0xc2,0xf,0x1e,0x1b,0x78,0xfc,0xb3,0xb8,0xa9, + 0xd,0xc6,0xb9,0xf,0x28,0xb7,0x65,0x3,0x8f,0x7f,0x84,0x57,0xe5,0xe,0x24,0xae, + 0x18,0xe7,0x42,0x97,0xd,0xca,0x39,0xd4,0xc3,0x5d,0x73,0xee,0x52,0x6d,0x90,0x6a, + 0xf,0xcf,0xb8,0x2b,0xf9,0x45,0x1b,0x24,0xff,0x31,0xf7,0x1,0xe3,0xae,0xe4,0x1f, + 0xd9,0x50,0x55,0xfb,0xc1,0x59,0xf8,0x27,0xb9,0x45,0x1b,0x14,0xee,0x99,0xfc,0x93, + 0xdc,0x85,0xd,0xe3,0xab,0xfa,0x5c,0x3e,0x87,0x5b,0xb1,0xa1,0xfa,0xdc,0x7e,0xa, + 0x37,0xb5,0xe1,0x68,0xc7,0x2c,0xfe,0x73,0x9c,0xf1,0xa9,0x1d,0x29,0x4e,0x58,0xfc, + 0xe7,0xfa,0x6d,0xc1,0x61,0xcb,0xdc,0xdf,0x1e,0x68,0xb,0xfb,0x77,0xf1,0x8f,0x39, + 0xcb,0x17,0x80,0xc5,0x33,0x40,0x73,0x40,0xd9,0x63,0xff,0xe,0x65,0x7b,0x94,0xb6, + 0x97,0x26,0xa,0x2c,0xb0,0x67,0x89,0x4f,0x57,0xfb,0x52,0x62,0x1f,0x3e,0x4b,0xef, + 0x45,0xd9,0x76,0x3d,0xb0,0xc0,0x27,0xcb,0xf8,0x16,0x62,0xaf,0x91,0xe3,0xe,0xb9, + 0x1e,0xba,0x7f,0x78,0xd8,0xaf,0xc2,0x1f,0xda,0x3a,0xc9,0x54, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty.ico + 0x0,0x0,0x2,0x6a, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x4e,0xc3,0x30,0x10,0x3d,0xa4,0xaa,0x52, + 0xc5,0xd2,0xa1,0x43,0xc7,0x8e,0x8c,0x7c,0x42,0x27,0xfe,0x20,0x33,0x4c,0x88,0xcf, + 0xe8,0xc8,0xc8,0x67,0x20,0x57,0x82,0x95,0xad,0xfd,0x9,0x7e,0x83,0x1,0x68,0x29, + 0x8,0x64,0x2e,0x49,0x43,0xcd,0xc9,0x67,0x9f,0x83,0x4d,0x2,0xcd,0x93,0xaa,0x97, + 0x38,0xb6,0xef,0xce,0x71,0xde,0x9d,0xb,0x70,0x0,0x3d,0x18,0xe,0x1,0x79,0x2, + 0x17,0x3d,0x80,0x13,0x0,0x18,0x8d,0xca,0xfb,0xbb,0x3e,0xc0,0xd,0xb6,0x8d,0xc7, + 0xe5,0xfd,0xe5,0x0,0xe0,0xfc,0x10,0x60,0x32,0x29,0xef,0xaf,0x71,0xdc,0x3,0xf6, + 0x3d,0xc2,0x31,0x78,0x89,0x2d,0x65,0x7b,0x8e,0x69,0xf,0xda,0xc,0x5d,0x93,0x61, + 0x36,0x9b,0xe9,0x3a,0x9c,0xcf,0x51,0x5d,0x2f,0x97,0xcb,0x6f,0xac,0x11,0x66,0x5f, + 0xfa,0xdc,0x98,0xe3,0xab,0x2f,0x1d,0x4b,0x99,0xce,0x61,0xda,0xf7,0xf5,0xa5,0xcf, + 0x4d,0xfb,0x34,0x2e,0xae,0x2f,0x7d,0x6e,0xda,0xaf,0xd6,0xd3,0xd5,0x97,0x59,0x43, + 0xa0,0x73,0x70,0x63,0x6c,0xcf,0xeb,0xbe,0x3b,0xdb,0xfa,0xbf,0xae,0x1f,0xb,0x7e, + 0x5f,0xaf,0xa,0x7e,0x79,0x7e,0x2a,0x78,0xb3,0xe5,0x8f,0xcd,0xba,0xe4,0xb7,0x55, + 0xcc,0x3d,0xf4,0xa7,0xa1,0xb7,0xb8,0xcf,0xb4,0x56,0x4a,0xeb,0xcc,0xc3,0x79,0x3f, + 0x13,0xb9,0xce,0xa0,0xdc,0x14,0x7a,0x53,0xe9,0xcc,0x55,0xbf,0xc1,0x80,0xda,0x85, + 0xba,0x9a,0x16,0x6d,0x7f,0x4a,0xbe,0x1b,0x9f,0xe6,0x71,0x1a,0x68,0xfa,0xe9,0xd3, + 0x51,0xa9,0x26,0xba,0xfc,0xab,0xcb,0x36,0xff,0x7c,0x9a,0x2d,0xd1,0x5d,0xda,0x46, + 0xc7,0x2,0xd1,0x3b,0x89,0xe,0x4b,0x35,0x9c,0xae,0x97,0xeb,0xfd,0x56,0x7e,0xd0, + 0xb1,0x9c,0x7f,0xb4,0xdd,0xb6,0x7e,0x3e,0x3f,0x42,0xfc,0xfb,0xc9,0x7b,0xa5,0xfe, + 0xf9,0xf6,0x9b,0x8f,0x5d,0x79,0x75,0x5f,0x73,0x44,0x1b,0x60,0xe6,0x1c,0xa5,0x16, + 0x98,0x8f,0x4e,0x91,0x6f,0x85,0xbc,0xd0,0x14,0x79,0xbe,0xc2,0x12,0x1a,0x8e,0x61, + 0x97,0xb7,0xce,0x6,0xd,0x6,0xd8,0xc1,0x87,0x58,0xb9,0x34,0x79,0x6e,0x35,0x75, + 0x94,0x6a,0x2a,0x97,0x1f,0x39,0x8d,0xf3,0xe5,0x64,0xdb,0x1c,0xbe,0x7b,0xa9,0x6d, + 0xb0,0xe8,0xbe,0x34,0xaf,0x37,0x91,0xe7,0x63,0xe4,0xfd,0x94,0x75,0x0,0x97,0xe3, + 0x53,0xd6,0x5,0x3e,0x1f,0xa8,0x3d,0xd7,0x58,0xca,0x29,0xea,0x86,0x26,0xea,0x8, + 0xc9,0xfe,0xa9,0x62,0x8b,0x35,0xb7,0xcd,0xff,0xd8,0xc,0xbb,0xf7,0x95,0x52,0xe3, + 0x3a,0xfc,0x63,0xd0,0xba,0xe9,0x3e,0xcb,0xb0,0x9e,0x52,0x58,0x57,0x85,0x71,0x3e, + 0xce,0x86,0xbc,0xe,0x9b,0xe0,0x6f,0xa,0xbb,0x3a,0x6c,0x36,0x6c,0x2c,0xdc,0xe, + 0x1d,0x5c,0x70,0xe6,0xc3,0x84,0x9c,0x4c,0xbf,0x43,0x74,0xde,0x97,0x67,0xb9,0x5a, + 0xd1,0x57,0xdb,0xba,0xf2,0x6f,0xc5,0xd2,0xb9,0x7d,0xfd,0x42,0x7d,0x94,0xc4,0x2f, + 0xad,0xe1,0xeb,0xfa,0x24,0x89,0xbf,0x6e,0x8d,0x20,0x5d,0x2f,0x49,0x1c,0xa9,0x58, + 0x12,0x7f,0x2a,0x96,0x9c,0xb3,0x62,0xad,0xb,0x37,0x9f,0x2d,0x7e,0xae,0xe6,0xe, + 0xdd,0xf,0xa6,0xd,0xdb,0x7c,0x92,0x73,0x8e,0xf4,0x4c,0xc2,0xed,0x77,0x6a,0xbb, + 0x62,0x57,0xfc,0x55,0x1f,0xae,0x3e,0xa7,0xcf,0xa9,0x6d,0xee,0xec,0x12,0x33,0x7e, + 0x2e,0x2e,0xce,0xd7,0x90,0xf8,0xa9,0x8d,0xd0,0x73,0x95,0x45,0xdf,0xad,0xb6,0x5d, + 0xfb,0xdf,0xf7,0x9e,0x43,0xbf,0x31,0x6e,0x1e,0x5b,0xfc,0x6d,0xf8,0xfe,0x7f,0x8b, + 0xf7,0x35,0x7e,0xb0,0xe4,0xff,0x58,0x67,0xe3,0xd0,0xfc,0x68,0x5e,0x37,0x51,0x7b, + 0x75,0xe8,0xb0,0xcf,0xb0,0xfd,0x77,0xa0,0x94,0x9a,0x67,0x8,0x64,0x15,0x89,0xe7, + 0x36,0x3b,0x39,0x3e,0x1,0x71,0xa8,0x21,0x9c, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty_active.ico + 0x0,0x0,0x4,0x34, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x5a,0xb1,0x6e,0xdb,0x30,0x10,0xa5,0x93,0x34,0x41, + 0xd0,0x21,0x19,0x52,0x20,0x5b,0x3c,0x76,0xec,0x1f,0xd4,0x45,0x81,0xce,0x19,0x4a, + 0x78,0x29,0xe0,0x4e,0x45,0x7f,0xa2,0x88,0xba,0x75,0xec,0x27,0x78,0xe8,0x10,0xd0, + 0x40,0xbd,0x76,0x6a,0xfc,0x13,0xde,0x3b,0x6b,0x28,0x3a,0x54,0x8b,0x0,0xfb,0x7a, + 0x92,0x22,0x87,0xa2,0x78,0xbc,0x23,0xad,0xe6,0x2,0xe1,0xc5,0x8a,0xef,0xde,0x23, + 0x45,0xde,0x1d,0x85,0x28,0x35,0x52,0x47,0xea,0xfc,0x5c,0x21,0x8e,0xd5,0xc7,0x23, + 0xa5,0xde,0x28,0xa5,0x2e,0x2e,0x9a,0xcf,0x3f,0x8e,0x95,0xfa,0x8e,0xf7,0x2e,0x2f, + 0x9b,0xcf,0x5f,0x4e,0x95,0xfa,0xf0,0x54,0xa9,0xf1,0xb8,0xf9,0x7c,0x8b,0x7e,0xbf, + 0xf1,0xbb,0xcf,0xd1,0x7,0x7f,0xc5,0x3b,0xcd,0xfd,0xca,0x26,0x47,0x2a,0xc6,0xc0, + 0x83,0xf6,0xd5,0xb3,0x2c,0xcb,0xea,0xfb,0xab,0xd5,0xaa,0x46,0x40,0xab,0xf0,0xdb, + 0x7c,0xde,0xf8,0x64,0xd6,0xe5,0xc4,0x70,0x7d,0x5b,0xac,0x7d,0xb3,0x3a,0x14,0x28, + 0xfb,0xc7,0x8a,0x41,0xf9,0xb6,0xfc,0x9c,0xff,0x50,0xfc,0x6e,0x8c,0xce,0xfd,0xfb, + 0x18,0xad,0xb5,0xfe,0xae,0xaf,0x8b,0x2d,0x47,0x1d,0xd3,0x9a,0xbf,0x96,0x83,0xf1, + 0xed,0x3c,0x4b,0x57,0x9f,0xcd,0xef,0x6a,0x96,0x3e,0x1f,0x9f,0xaf,0x1d,0xdf,0xbe, + 0xdf,0x3e,0xf,0x1f,0xbf,0xeb,0x7b,0xbf,0x66,0x7a,0xbe,0x9e,0x18,0xac,0xaf,0xbb, + 0x1e,0x76,0xeb,0xc2,0x32,0x77,0x5c,0x94,0x66,0xcb,0x97,0x8c,0xd1,0xf2,0xbb,0xbe, + 0xee,0xbc,0xf8,0xcc,0x9d,0xf,0xdf,0x9c,0x51,0xbe,0x54,0xc,0xcf,0x7a,0xd8,0xd9, + 0xe6,0x35,0x40,0xfe,0x19,0x60,0x8d,0x4c,0x26,0x7b,0x40,0xfd,0xa,0x60,0x61,0x10, + 0xd7,0xf8,0xb9,0x42,0x8d,0xb8,0xc0,0xbf,0x23,0xe6,0x88,0xc5,0x14,0xa0,0xbc,0x3, + 0xa8,0xf2,0xc,0xa6,0x9b,0x3a,0xdf,0xb4,0x79,0xe6,0xeb,0x31,0xa7,0xd0,0x6b,0x5c, + 0xbe,0x21,0xf3,0x8e,0x3b,0x6e,0x22,0xf,0x74,0xf3,0xf,0x91,0x87,0x44,0xb1,0x7c, + 0xf9,0x80,0xc8,0x2b,0x16,0x7f,0x2f,0xd6,0xee,0x99,0x46,0xc4,0xa3,0xd6,0x45,0x8a, + 0x3e,0x6e,0x6f,0xa5,0xe8,0xa3,0xf6,0x9a,0x2f,0x17,0x72,0xf1,0xa8,0x7c,0xee,0xc9, + 0x51,0xbd,0xfc,0x4a,0xe5,0x59,0x6a,0x9f,0x7b,0xcc,0xbb,0x5e,0x7c,0x79,0x4f,0xba, + 0xbf,0x3,0x39,0x34,0x4d,0x5f,0x58,0x43,0x28,0x56,0x50,0x9f,0xaf,0x6,0x51,0x75, + 0xc2,0x33,0x66,0x6f,0xc,0x5f,0x2e,0x92,0xe6,0x7e,0x77,0x9d,0x86,0xf2,0x1a,0xa5, + 0x93,0xdb,0x83,0xa1,0xb9,0xe1,0x6a,0x52,0xcc,0x3a,0x68,0x7d,0x63,0x63,0xd9,0xcf, + 0x95,0x8a,0x29,0xde,0xcf,0x82,0x1a,0xe2,0xc6,0x1e,0x22,0x16,0xa5,0x37,0x54,0x9f, + 0x5a,0x83,0xeb,0x97,0x50,0xce,0xaf,0xa0,0x98,0x9c,0x41,0x3e,0x3f,0x83,0x35,0xa2, + 0xb1,0x50,0xff,0xb9,0x2,0x53,0x2e,0x41,0x17,0xb3,0x6,0x35,0xa2,0xb9,0xc3,0x7a, + 0x35,0x83,0xbc,0xc6,0x1b,0x44,0x80,0xd,0xd6,0xaf,0xed,0xb2,0xa9,0x5b,0xd8,0x42, + 0xab,0x17,0xea,0xa1,0x6e,0xbd,0x3f,0x8d,0x1d,0x49,0x57,0x62,0x0,0xdd,0x4b,0x64, + 0x54,0xff,0xd2,0xae,0x1d,0x15,0x59,0xd3,0x6c,0xa3,0xd6,0x97,0xdd,0x33,0xd7,0x97, + 0xb0,0xc6,0xc5,0xc6,0x26,0xf3,0x3f,0xc3,0xc1,0xed,0xf,0xb2,0x5f,0x17,0xc4,0xe7, + 0x62,0xef,0xa3,0x9f,0xca,0xef,0x5e,0x8c,0x8c,0x4f,0xe5,0x51,0x32,0xc7,0xed,0xa1, + 0x5f,0x70,0x5e,0x60,0x39,0x76,0xfd,0x18,0x11,0x3b,0x50,0x5b,0xba,0x16,0xae,0xf9, + 0xb5,0x9f,0xa0,0xe,0x85,0xf7,0x8a,0x7f,0x7f,0x5,0xeb,0xac,0xa0,0x76,0xb7,0xc6, + 0xd6,0xf,0xee,0x99,0x72,0xfa,0x5,0xfe,0x7b,0xeb,0x8f,0xe9,0x1b,0x22,0x38,0x3a, + 0x7b,0x2e,0xa5,0x8f,0xe0,0xd6,0x28,0xb5,0x96,0x25,0x7d,0x5,0xd5,0x13,0x44,0x8c, + 0x97,0xcd,0xd,0xa9,0x3d,0x82,0x44,0x7f,0x6a,0x6c,0x7b,0xdd,0x50,0x1c,0x5c,0xff, + 0x96,0x12,0x9b,0xe3,0x18,0x22,0xb6,0xcb,0x21,0xed,0xa7,0x62,0x62,0x73,0x1c,0xb1, + 0xfb,0x3b,0x85,0x4b,0xd2,0x6f,0xb5,0x6,0xeb,0x13,0xd8,0x9a,0x43,0xd8,0xbc,0x1d, + 0x41,0x79,0xab,0xa0,0xb8,0x56,0x90,0x23,0xae,0x11,0x4d,0x85,0x78,0xdf,0xfc,0x3c, + 0x0,0x7d,0xf3,0x4,0xcc,0xd6,0x20,0xea,0x6,0x3f,0x21,0x9a,0x5,0xf6,0x5d,0x2d, + 0x4e,0xb1,0xff,0x5a,0x42,0x81,0xfd,0x58,0x89,0xfd,0xd8,0x6,0xfb,0x31,0x58,0x34, + 0x7d,0xd8,0x18,0xaf,0x89,0x7a,0xe8,0xc3,0xb2,0xf3,0x7d,0x47,0xdc,0x48,0x67,0xd0, + 0xfe,0x9e,0x7b,0x25,0x19,0x97,0x3,0x9c,0xfe,0xad,0xb9,0xe8,0xfe,0x2d,0x4a,0x7, + 0x97,0x77,0x7a,0xdc,0x5c,0x7f,0x27,0xec,0x23,0x43,0x9c,0x5e,0xd,0x92,0xde,0x43, + 0xd8,0x67,0x46,0x73,0xd7,0x13,0x35,0x1c,0xbf,0x94,0x7b,0xb7,0x97,0x63,0xb8,0x19, + 0xd,0xb1,0xf9,0x3a,0x7a,0xee,0x3,0xfc,0xd2,0x7c,0xf8,0x3f,0xc6,0x1f,0x9b,0x93, + 0x87,0x1c,0x3f,0x75,0x1e,0x13,0xd7,0x9e,0x1,0xc6,0x4f,0xad,0x6b,0x4a,0x43,0x2f, + 0xe7,0xef,0xb1,0xfe,0xb9,0xbc,0xe6,0x6a,0xf0,0xf6,0x5d,0x89,0xfc,0xd2,0xfc,0xb6, + 0xdb,0xe7,0xf4,0xbe,0xed,0xbc,0x2b,0xf4,0xf1,0xda,0xe7,0x8,0xbb,0xb6,0x4b,0x73, + 0x8c,0xa8,0x6f,0xce,0xba,0x3a,0x7a,0xe7,0x97,0x2e,0x37,0xdb,0x47,0x7b,0xe6,0x9c, + 0xb3,0xdd,0x7a,0x8,0x9d,0x6f,0x62,0xc6,0x6f,0xeb,0x95,0x8,0x90,0x8e,0xe9,0x7f, + 0x8e,0x3f,0x62,0x4c,0x31,0xdc,0x8f,0x3e,0x7e,0xf1,0x99,0xd9,0xe1,0x8e,0xe9,0x9b, + 0xa5,0xdc,0xdc,0x3c,0x24,0xf4,0xd5,0xa4,0x86,0x7d,0xcf,0x7c,0x9c,0x6,0x9b,0x9b, + 0x1a,0x27,0xa5,0x5b,0x7a,0x36,0x14,0x68,0xe8,0xcd,0x9d,0x94,0x3b,0xaa,0x3e,0x7a, + 0xbe,0xaf,0x3c,0xcf,0x30,0x76,0xdc,0xa9,0x1a,0x1e,0x93,0x3b,0xa0,0xa1,0x67,0xdc, + 0x79,0x7d,0x28,0xd,0x21,0xa3,0xce,0xf3,0xfb,0x72,0xfb,0xd6,0x1c,0xa7,0x81,0xe3, + 0x8e,0xee,0x13,0x23,0x6c,0xa8,0x77,0xe,0x29,0xdc,0x9c,0x86,0x94,0xfc,0xb6,0xaf, + 0x25,0xbc,0x57,0x18,0x8c,0x9b,0xd3,0x92,0xf2,0xfe,0xa1,0x35,0x28,0xde,0x5d,0x81, + 0x99,0x9f,0x80,0x9e,0x1c,0x6e,0x4d,0x36,0xda,0xe8,0xc9,0xa8,0x34,0x99,0x2a,0xb4, + 0x52,0x39,0xe2,0x1a,0xd1,0xd4,0x38,0x19,0x21,0x8e,0xf4,0x74,0x35,0x32,0xcb,0x5f, + 0x7,0x7a,0xf6,0xf7,0x99,0x59,0x96,0x46,0xcf,0xa,0x5d,0xe3,0x14,0x71,0x91,0x9b, + 0xb5,0xd6,0xda,0x18,0xb3,0xa8,0x30,0x6f,0x70,0x8a,0xb8,0x2c,0xb4,0x9e,0x95,0xc6, + 0xdc,0x6d,0xb4,0xbe,0xd9,0x56,0xff,0xf8,0x50,0xfd,0xc3,0x43,0xb9,0x84,0x7f,0x9e, + 0x6e,0xb3,0xb0, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_active.ico + 0x0,0x0,0x2,0x9b, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0x3,0x31,0x10,0x9d,0x15,0x51,0xa4, + 0x88,0x82,0x14,0x29,0xd2,0x65,0x4b,0x4a,0x6e,0x40,0x2a,0xce,0x41,0x85,0x90,0xb8, + 0x1,0x95,0x4b,0x4a,0x8e,0x41,0x85,0x44,0x7,0x5d,0x2a,0xe,0xc2,0x1,0xb8,0x82, + 0xb1,0xbd,0x31,0x71,0x96,0x19,0x7b,0x3c,0xf6,0x26,0x20,0xd6,0x68,0x94,0xdd,0xc5, + 0xf3,0xf1,0xc6,0x7e,0xef,0x4d,0x0,0x1a,0x98,0xc0,0x7c,0xe,0xe6,0xb3,0x85,0xdb, + 0x9,0xc0,0x15,0x0,0x2c,0x16,0xdd,0xfd,0xeb,0x14,0xe0,0xd9,0x3c,0x5b,0x2e,0xbb, + 0xfb,0x87,0x19,0xc0,0xcd,0x29,0x40,0xdb,0x76,0xf7,0x4f,0xc6,0xef,0xd3,0xcc,0x3d, + 0x37,0x3e,0xe6,0xd2,0x3c,0xe9,0x9e,0xdb,0xb1,0x9e,0x0,0x35,0xb4,0xd0,0xe0,0xed, + 0x1e,0xb4,0x37,0xa5,0x14,0x69,0x6e,0xbe,0xa,0x6c,0x1b,0xc3,0xfa,0xe9,0x8f,0x17, + 0xad,0xdf,0xef,0x34,0x35,0xec,0x7c,0xf7,0x19,0xfe,0xa9,0x7d,0x7f,0x7b,0xbd,0xd9, + 0x6c,0x50,0xe3,0xf8,0x97,0xe6,0xb7,0xfe,0x54,0xfe,0xb0,0x86,0x30,0x26,0x37,0xff, + 0x9e,0xcf,0xd6,0xac,0x5f,0x4e,0xfe,0xd0,0xec,0x5c,0xcc,0x9f,0x53,0x83,0x9f,0x47, + 0xfa,0x33,0x8d,0xf4,0xb7,0xd7,0x94,0x25,0xfc,0xdd,0xb5,0xf9,0xa4,0xf6,0x6b,0x18, + 0x23,0xe6,0x4f,0xed,0xdf,0x5c,0x7f,0xe7,0xb3,0xbd,0x1f,0xca,0xbf,0x7f,0x6,0x63, + 0xe7,0xb0,0x3f,0xcf,0xfa,0xaa,0xc6,0xec,0x2b,0x90,0x99,0xf5,0xb5,0x38,0x63,0xe0, + 0xc6,0xe1,0x8d,0xc7,0x99,0xc7,0x69,0x75,0x9c,0x11,0xe3,0xe,0x89,0x3f,0x11,0x1c, + 0x4a,0x9d,0x1f,0x14,0xf,0x22,0xb8,0xc4,0x39,0xd7,0xdc,0x78,0xb5,0xeb,0xe3,0xe2, + 0xce,0x6f,0xae,0x2f,0xac,0x11,0x7b,0x2e,0xc5,0x49,0x6c,0xbf,0xa0,0xb8,0x25,0x1d, + 0x4,0xe,0x70,0xeb,0xab,0x8a,0xeb,0x48,0x6d,0x35,0x70,0xbe,0xa,0xee,0xb,0x79, + 0x20,0xc6,0x5,0x12,0x5e,0xa0,0xb8,0x41,0xca,0x13,0x58,0x3c,0x8f,0xf9,0x12,0xde, + 0x38,0x54,0x3c,0x6f,0x91,0x78,0x80,0xf1,0x12,0x17,0xab,0xfb,0x1c,0xe5,0x78,0xa, + 0x56,0xe6,0xfa,0xac,0x82,0xad,0xb4,0x82,0x4b,0xc7,0x5b,0x46,0x42,0xc3,0x45,0xc0, + 0x5b,0xd7,0xb3,0xc1,0x79,0x2b,0xca,0x63,0xdc,0xf7,0xc3,0xe1,0xb4,0x52,0x1c,0xf8, + 0x8e,0x15,0xc1,0xe8,0x1f,0x3c,0xc7,0xc4,0xae,0x28,0xfe,0xc7,0x78,0x20,0x93,0xb, + 0x24,0xf1,0xc7,0xfa,0xcb,0xeb,0x4f,0xad,0xc1,0x3d,0x47,0x74,0x57,0x2e,0xf7,0xc5, + 0x38,0xbf,0x16,0xf,0x62,0xe7,0x2b,0xc6,0x63,0x52,0xee,0xe,0x39,0x3c,0xc9,0xbb, + 0xd2,0xc1,0xe1,0xe1,0x4a,0x76,0xd4,0xf8,0x39,0x5a,0x2,0xd1,0x14,0xb1,0xf8,0xb9, + 0xda,0x2,0xd3,0x18,0xdc,0xf8,0x39,0x3c,0x50,0x2b,0x7e,0x5f,0x2f,0x8c,0xf1,0xf, + 0x1f,0x3f,0xd4,0x57,0x89,0xf8,0xa4,0xce,0xca,0xd5,0x12,0xd8,0x6f,0x3,0x9d,0xee, + 0x6a,0x6,0xd2,0x3e,0x8d,0xd1,0x61,0x27,0x4e,0x87,0xb5,0xc6,0xd6,0xb0,0xd3,0x61, + 0x6a,0xe,0xd4,0x18,0x4a,0x87,0x65,0xeb,0xb4,0xdc,0xf7,0x4b,0x7e,0xcf,0x84,0x7e, + 0xf3,0x7b,0x27,0x86,0x73,0x52,0x8e,0xd9,0xcb,0x4b,0x71,0x7f,0xc0,0xff,0x61,0x7e, + 0x5f,0x93,0x94,0x87,0x58,0xda,0x23,0xa1,0x33,0xfd,0x19,0x14,0xad,0xbd,0x30,0x7f, + 0x9,0xf,0x67,0xe5,0x4e,0xe9,0x30,0xc1,0xfa,0x6b,0xe7,0x1f,0xd7,0xff,0xb7,0xd6, + 0x7f,0xec,0xfd,0x9f,0xfd,0xe,0x12,0xf9,0xc5,0xf8,0xa7,0x76,0x7d,0x3,0x96,0x37, + 0xac,0x75,0x10,0x1d,0xae,0x77,0x7d,0x45,0xf4,0x7f,0x9,0x9d,0x5b,0xda,0x6b,0xf8, + 0x77,0x81,0xf5,0x37,0x2c,0x9d,0x3d,0xd4,0x60,0xe6,0xaf,0xb1,0xfe,0x58,0xf,0x96, + 0x5c,0xff,0x10,0xef,0x20,0xa7,0xcf,0x39,0x80,0x8d,0xf9,0x13,0xf9,0x25,0xbd,0x26, + 0xa3,0xff,0xe4,0xe4,0xf,0x7b,0x9,0x6b,0x25,0x1a,0x97,0xaa,0x21,0x27,0x7f,0x89, + 0x16,0x1e,0x3a,0xbf,0xd7,0x8c,0xd8,0xdc,0x31,0xff,0x98,0xff,0x3f,0xe4,0xf,0x2d, + 0x33,0x3f,0x50,0x3d,0x70,0xad,0x7e,0x98,0x8a,0xe9,0x73,0x2b,0xfb,0xf3,0xc0,0x71, + 0x46,0x63,0x72,0x9f,0x7c,0x1,0x5a,0x44,0xd,0x8a, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/display.ico + 0x0,0x0,0x2,0xf6, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x30,0x10,0xfe,0x4,0x1b,0x1, + 0x82,0xe,0xf5,0x90,0x21,0x5b,0xbc,0x18,0xe8,0x98,0x37,0x68,0xa6,0x3e,0x47,0xa7, + 0x22,0xcf,0x90,0x49,0x63,0xa6,0xa0,0x8f,0x51,0x74,0xe8,0x5c,0x6f,0x7e,0x88,0x3e, + 0x47,0x91,0x31,0x43,0x51,0xf5,0x68,0x99,0xd2,0x91,0x3a,0x52,0x47,0x8a,0x72,0x12, + 0x37,0x27,0x7c,0x50,0x44,0xeb,0xee,0xf8,0xa7,0xef,0x3e,0x22,0x40,0x85,0x25,0x56, + 0x2b,0xd0,0x7d,0x8d,0xdb,0x25,0xf0,0x9,0xc0,0xc5,0x45,0xfb,0xfc,0xf3,0xc,0xf8, + 0x41,0x6d,0x97,0x97,0xed,0xf3,0xfd,0x39,0xf0,0xe5,0x1d,0xb0,0x5e,0xb7,0xcf,0xdf, + 0xc8,0xef,0x37,0xbd,0xfb,0x81,0x7c,0xe8,0x4f,0x6a,0x69,0xdb,0x8d,0xdd,0x2c,0x11, + 0xb3,0x26,0x11,0x9d,0xd5,0x75,0xdd,0xa4,0x82,0xc7,0x30,0xcf,0x63,0xb6,0xdb,0xed, + 0x3a,0xf8,0x31,0xac,0xbf,0xb9,0x6f,0xef,0x30,0x80,0xf5,0xb7,0x7d,0x8f,0xf9,0x9b, + 0xb6,0xe6,0xfb,0xa6,0x3,0xf7,0x37,0xa6,0xf2,0xff,0xf5,0x20,0xfa,0x6b,0xfa,0xef, + 0xcf,0xb3,0xf5,0xe7,0x6d,0x31,0x7f,0x9,0xd6,0xac,0x8f,0xe7,0xdf,0xb5,0x69,0x8d, + 0xfb,0xef,0xef,0xa6,0x7f,0x87,0x36,0x3e,0xce,0x10,0xfc,0xbe,0x58,0x7f,0xde,0x37, + 0xe5,0x1e,0x42,0xeb,0x4f,0xd7,0x16,0xe1,0xfb,0x56,0xde,0xb7,0x9d,0xbf,0xfb,0x7b, + 0xd3,0x5d,0xf6,0x59,0xe1,0x6f,0xc7,0xd6,0xbd,0x7f,0x68,0xd3,0xfa,0x8f,0x42,0xf0, + 0x4d,0xf9,0xf6,0x42,0xfe,0xbb,0x5,0xad,0x45,0x45,0x80,0xc,0x58,0xd0,0x3b,0x78, + 0xcf,0x70,0xd5,0xc2,0xf0,0xc,0xd1,0xcd,0x9e,0x6f,0x2c,0xcf,0x7c,0x3d,0x93,0x32, + 0xbd,0x4a,0x4b,0xe5,0x44,0x71,0x8e,0x8d,0xe5,0x70,0x64,0x6c,0xdd,0xb4,0xdf,0x6b, + 0x8c,0xb7,0xa4,0x78,0x21,0xe,0x55,0xf0,0x98,0xc8,0x27,0x3d,0xa7,0xba,0x18,0xe3, + 0x55,0x87,0x17,0xe,0x71,0x6,0xf1,0xf6,0x3c,0x3b,0x8c,0x27,0xf5,0x4f,0x15,0x4f, + 0xe8,0x9f,0x3f,0x26,0x37,0x5e,0xcf,0x33,0x31,0xe,0x7,0xe3,0xf1,0x10,0xf,0xfb, + 0x3c,0x34,0xc6,0xe9,0xd2,0xfa,0x4b,0xf1,0x38,0x7,0xa5,0x70,0x7c,0x28,0x9e,0xf, + 0x2d,0xe7,0x8b,0xbc,0x2f,0xf1,0x5c,0x93,0x56,0x3,0x9c,0x3a,0xc0,0x79,0xd6,0xe7, + 0xf0,0x9,0xbc,0xde,0xbd,0x7b,0xc,0x9e,0x97,0x79,0x5f,0x8c,0x37,0x81,0x4f,0x82, + 0x3c,0xf5,0x52,0xcd,0xee,0xc9,0x27,0x7c,0x6c,0x1e,0xa9,0xf0,0x3c,0x52,0x11,0x32, + 0x40,0x14,0x57,0x7d,0xfd,0x3a,0xc0,0x9a,0xa9,0x57,0x24,0xa1,0x71,0x8d,0xbe,0x6e, + 0x7d,0x3e,0x7f,0xc6,0x1,0x9e,0x96,0xe5,0xd4,0xcd,0x59,0xeb,0x68,0x6a,0x5d,0xd5, + 0x72,0x9a,0x4,0x4d,0x9d,0xd5,0x1a,0xe7,0x4e,0x13,0x4f,0x1b,0x3f,0x56,0xc7,0x43, + 0xf5,0x3c,0xa5,0xff,0x7d,0xdd,0xdc,0x88,0xf0,0xe3,0x47,0xfa,0x3f,0xa2,0x1b,0x36, + 0xce,0x79,0x2a,0x76,0xae,0xca,0xab,0xfb,0xe3,0xfd,0xe7,0xfd,0x4b,0x8d,0x1f,0x82, + 0xaf,0x7f,0xec,0xfb,0x72,0x7c,0xb7,0x36,0xf2,0xda,0x3c,0xa6,0xf,0x6c,0x7c,0xbe, + 0x9f,0x34,0xba,0xa3,0xd4,0xfe,0x2f,0xa1,0x43,0x7c,0x2b,0xad,0x4b,0x8e,0xa5,0x53, + 0x26,0xe9,0x96,0x99,0x75,0xcc,0xd1,0x75,0xcd,0xcc,0x3a,0xe7,0x54,0x74,0xcf,0x73, + 0x1b,0xff,0xee,0x9e,0xb0,0x20,0xcd,0x55,0x11,0xe0,0x0,0x51,0x54,0x3,0x5d,0xc6, + 0xcd,0xe8,0xb0,0x35,0xe1,0x6,0xbd,0xe,0xab,0x57,0xc7,0x1f,0xe7,0x9b,0xbd,0x6a, + 0x2b,0xa1,0x37,0x93,0x74,0xa8,0xb5,0x52,0xfc,0x94,0xaa,0x53,0x79,0xfe,0xa9,0xf5, + 0x3a,0x47,0xc7,0xfa,0xf9,0xa7,0x9a,0x53,0x7f,0x14,0x3a,0xd7,0xcf,0xaf,0xd1,0xbb, + 0x1a,0x1d,0x6c,0x2c,0x37,0x3f,0x22,0x7a,0x52,0xab,0x93,0x73,0xe7,0xbf,0x54,0xfe, + 0x29,0xf3,0x5f,0x22,0x7f,0x64,0xfe,0xf5,0xe7,0x85,0x19,0xe6,0xbf,0xf6,0x74,0xbe, + 0xbd,0x8b,0xf9,0x85,0xf3,0xca,0x69,0xe4,0xc7,0xe0,0xff,0x2a,0x25,0xe7,0x9f,0xaf, + 0xeb,0xd8,0x39,0xc5,0x5e,0x7e,0xfe,0x54,0x24,0x9d,0xc3,0x4,0x1d,0xcd,0xf3,0xe7, + 0x82,0xe7,0xe7,0x7c,0x28,0x8e,0x5f,0x38,0xe7,0x84,0xd6,0xaf,0x24,0xff,0x7,0x75, + 0x3e,0x5b,0x83,0xd2,0xa6,0x59,0x7f,0xce,0x3,0xa5,0xc7,0xcf,0xf7,0x43,0x68,0xfd, + 0x39,0x6f,0xce,0xa8,0x1,0x10,0x9b,0xff,0xa4,0xbb,0xf2,0xdc,0x25,0xf1,0xfc,0x8b, + 0xc8,0x9f,0x7a,0x4e,0xce,0x3c,0x37,0x87,0xf2,0xa7,0x9e,0xa3,0x73,0xcf,0xd5,0xea, + 0xf9,0x9f,0xe9,0xdc,0x2d,0xe5,0x9f,0x69,0x6f,0xab,0xf2,0xbf,0xd9,0xff,0x6d,0x7e, + 0x6d,0xf8,0xb,0x2c,0xfe,0x0,0x15,0x1,0x12,0x94,0x56,0x21,0xa0,0xb,0x7c,0xfb, + 0x7,0x2e,0x9a,0x56,0xd5, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty.ico + 0x0,0x0,0x3,0x82, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xcd,0x59,0x3b,0x8e,0x13,0x41,0x10,0x2d,0x24,0x6b,0xa5, + 0x15,0x89,0x83,0xd,0x36,0x74,0x48,0xc8,0x11,0x36,0xe2,0x6,0x13,0x43,0x84,0x38, + 0x85,0xed,0x90,0x90,0x23,0x6c,0x40,0x80,0x6c,0x9,0x32,0x8b,0x8c,0x1b,0x38,0xdb, + 0x2b,0x38,0xe4,0xa,0x43,0xcf,0xe,0x8d,0x67,0x1e,0xfd,0xea,0xd3,0x3d,0x48,0x8c, + 0xb4,0x7a,0xdb,0xb3,0xd3,0xf5,0xeb,0xea,0x57,0xd5,0xbd,0x22,0x2f,0x64,0x25,0xeb, + 0xb5,0x24,0xdc,0xc8,0x87,0x95,0xc8,0x1b,0x11,0xb9,0xbb,0x1b,0xc7,0xdf,0x6f,0x44, + 0xbe,0xa6,0x77,0xf7,0xf7,0xe3,0xf8,0xe3,0xad,0xc8,0xfb,0x97,0x22,0x9b,0xcd,0x38, + 0xfe,0x92,0xe6,0xfd,0x4c,0xdf,0xbe,0x4a,0x73,0xd2,0xaf,0xe9,0xcd,0xf8,0x7e,0x78, + 0x1e,0x56,0xa2,0x3d,0x7d,0x25,0xca,0x7e,0xbf,0x9f,0xbd,0xcb,0x63,0xb,0x87,0xef, + 0xf3,0xef,0xe7,0xf3,0x79,0x86,0x9f,0x1f,0x1f,0x67,0x98,0xdf,0xf7,0xe9,0x1,0x19, + 0x7f,0xbd,0x3b,0x9d,0x4e,0xcf,0x78,0xb9,0x5c,0x66,0x63,0x94,0x35,0xf5,0x21,0xcb, + 0x40,0x3b,0xf2,0x5c,0xd4,0x5f,0x9a,0x8b,0xbe,0x64,0xfd,0x4c,0xd6,0xd4,0xff,0xfc, + 0x37,0xfc,0x6,0xdf,0x47,0xfc,0x67,0x32,0x73,0x1c,0x4a,0xfa,0xad,0x35,0xc3,0xef, + 0x4a,0xb1,0xc3,0xb8,0xa3,0x2f,0x25,0xfd,0x18,0x5f,0x86,0x79,0x6e,0x49,0x7f,0x29, + 0xbe,0x53,0x44,0x3b,0xa7,0xfa,0x59,0xee,0xec,0x76,0xbb,0x99,0x8c,0x3c,0x77,0xaa, + 0x9f,0xe5,0x70,0x9e,0x9b,0xb1,0xb4,0x76,0xa8,0x1f,0x65,0xe0,0xde,0xd2,0xf4,0x23, + 0xee,0x0,0xb,0xfb,0x4f,0x9e,0xba,0xbe,0x3f,0x1c,0xfa,0xbe,0xfb,0x8d,0x38,0x2e, + 0xe2,0xf1,0x8a,0x3,0xcf,0x24,0xba,0x79,0xe6,0x9b,0xcc,0x33,0x9f,0x6e,0x44,0x7b, + 0x6a,0x79,0x66,0x31,0xde,0x89,0xf0,0x90,0xc5,0x47,0x11,0x5e,0xc2,0x7d,0x60,0xf1, + 0x53,0x84,0xa7,0x18,0xe7,0x64,0x99,0x11,0xde,0x62,0xfb,0x58,0xe3,0x51,0xe6,0xa3, + 0x57,0x66,0x84,0xd7,0x98,0xe,0xa6,0x73,0x6a,0x1f,0xe3,0x46,0xf4,0x8d,0xf1,0x7e, + 0x84,0x77,0x71,0xd,0x58,0x4e,0x95,0xec,0x63,0xdf,0x5a,0x75,0x49,0xe3,0xe5,0xe8, + 0xbe,0xd0,0x78,0x9a,0xd5,0x36,0xcc,0x6d,0xb4,0xbf,0x64,0x9f,0x17,0x51,0x66,0x84, + 0xc7,0x85,0xf0,0x8,0xca,0xd4,0xe2,0x87,0x32,0xb7,0xdb,0xed,0xc,0xd9,0xde,0x2c, + 0xd9,0x87,0x32,0x73,0x8d,0x60,0x7c,0x1f,0xa9,0x3b,0x56,0xfd,0xf1,0xd4,0x10,0x26, + 0xab,0xc6,0xbe,0xda,0xfa,0x34,0xaf,0x53,0x6f,0x53,0xfd,0xf9,0x96,0xea,0xce,0x88, + 0x38,0xf6,0xe1,0x8f,0x3f,0x38,0xd4,0xab,0xd4,0x42,0xcb,0x6b,0xb9,0xd6,0xad,0x77, + 0xb7,0xa2,0x3d,0x6a,0x1e,0x35,0x60,0x75,0xdd,0x62,0x6b,0xa6,0xd5,0x35,0xb6,0xbe, + 0x58,0xdf,0x18,0x67,0x79,0xf6,0x9,0xe3,0x28,0xab,0xde,0x69,0xfd,0x19,0xea,0x65, + 0xb2,0xad,0x9e,0xdb,0xb3,0x8f,0xac,0xda,0x15,0xe1,0x60,0x6f,0xfc,0x59,0x5d,0x8c, + 0xc4,0xdf,0x9a,0xcb,0xfa,0xf2,0x25,0xe2,0xef,0xb5,0xdb,0xd3,0xbf,0x5b,0xb5,0xd9, + 0xea,0xc1,0x3c,0xe7,0x1b,0xcb,0xde,0x25,0xf2,0xdf,0x92,0xc5,0xf2,0xc7,0xd3,0x17, + 0x2c,0xc8,0x11,0xcd,0xf6,0xb3,0x75,0xd2,0xec,0xb7,0xf8,0xc7,0xca,0x5,0x2d,0x7f, + 0xa2,0x7d,0x5,0xcb,0x5,0x29,0xe4,0x3f,0xe3,0x0,0x21,0xfc,0x8e,0x3a,0xb4,0xfc, + 0x67,0x3c,0x84,0xfd,0x6,0x3b,0x93,0x7a,0xfa,0x72,0x26,0x1b,0xeb,0x3b,0xf6,0xc, + 0x28,0x3b,0x62,0xbf,0xd5,0x43,0xb4,0x9c,0x7b,0x58,0xff,0xc4,0x7a,0x1e,0x4d,0xb6, + 0x15,0x2b,0x6f,0xf,0xe4,0x89,0xbf,0xd5,0x5f,0x59,0xf6,0x47,0xfa,0x2c,0xec,0xb7, + 0xd8,0xb8,0xdc,0x77,0x75,0xa9,0x5f,0x3a,0xa4,0xbe,0x69,0x8a,0x47,0x18,0xfb,0xf1, + 0x9,0xe4,0xc,0x7d,0xd8,0x26,0xfd,0x3c,0xc8,0xb5,0xf,0xdb,0xaf,0x45,0x7b,0xd4, + 0xfd,0xf6,0xf,0xb1,0x14,0x1f,0x57,0xdc,0x5b,0x51,0x2,0x79,0x64,0xf5,0x73,0x56, + 0x5d,0xd3,0xce,0x8,0xec,0x6f,0xde,0x1e,0xc0,0x7b,0xdf,0x51,0xb3,0x8f,0xac,0xfa, + 0xe2,0xbd,0x93,0x6c,0xf1,0xdf,0x42,0xeb,0xcc,0xbc,0xc4,0xfd,0x8f,0xd7,0x7f,0xb6, + 0x56,0xa5,0x1e,0x70,0x29,0xff,0x2d,0xdd,0x91,0x3a,0xc6,0xee,0x19,0xa2,0xb1,0xaf, + 0xc9,0x7f,0xec,0x41,0xbc,0x36,0x78,0x73,0x35,0x92,0xff,0xec,0xdc,0x13,0x8d,0x39, + 0xeb,0x41,0x23,0xfe,0xb3,0x18,0xb3,0xde,0xae,0xc6,0x7f,0x8b,0x5b,0x32,0x5a,0x77, + 0x6e,0x2d,0xeb,0xcf,0xf2,0xdf,0x3a,0x5f,0x59,0xfd,0x34,0xfb,0xce,0xe3,0x7f,0x34, + 0xb7,0xac,0x33,0x54,0xb,0xff,0x79,0xfd,0xf3,0xc6,0xe9,0x7f,0xf5,0x1f,0xbf,0x59, + 0xa,0x5b,0xfc,0xb7,0xf2,0x3f,0x1a,0x27,0x8f,0xff,0x2c,0xff,0xad,0x3d,0x58,0x93, + 0xff,0x51,0x7e,0x67,0xdc,0x63,0xf1,0xa6,0x87,0xff,0xa2,0xe7,0x4c,0x76,0x9f,0x6d, + 0xd5,0x8f,0x92,0xff,0x56,0xed,0xb1,0xce,0xa5,0x19,0x99,0xd,0x9a,0xff,0x2c,0xe6, + 0xa8,0x1b,0xcf,0xab,0x19,0xf1,0xbe,0xdc,0xe2,0x6e,0xcd,0x7f,0xa6,0x9b,0x9d,0x6b, + 0xd9,0xd9,0x8d,0xc5,0x41,0xf3,0xdf,0xba,0x3,0x63,0xba,0xd9,0xd9,0xce,0xf3,0xff, + 0xd,0xb4,0x8b,0xd5,0xf7,0xa8,0xff,0x2d,0xfb,0x3f,0xaa,0xdb,0xba,0x5b,0x28,0xf9, + 0x8f,0x36,0x2c,0xb5,0xfe,0x35,0xba,0xbd,0x7d,0x4b,0x74,0xfd,0x6b,0xf6,0x7f,0xad, + 0xd,0x52,0xb1,0xfe,0xd1,0x3a,0xc6,0xee,0x17,0xac,0x7b,0x87,0x82,0xad,0xc3,0x3d, + 0x44,0x77,0x48,0x4f,0x7,0xc8,0xde,0xb7,0x22,0xc8,0x3d,0xfe,0x2,0x61,0x70,0xb3, + 0xb, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip.ico + 0x0,0x0,0x3,0x34, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x5a,0x3b,0x6e,0x1b,0x31,0x10,0x7d,0x82,0x4,0xb, + 0x86,0xb,0xa9,0x70,0xe1,0x4e,0x6a,0x2,0xa4,0xcc,0xd,0xec,0x2a,0xe7,0x48,0x15, + 0xe4,0x16,0xde,0x74,0xa9,0x82,0x1c,0x23,0x48,0xe1,0x3a,0xe5,0x1e,0xc2,0x7,0xd0, + 0x9,0xc,0x95,0x2a,0xc,0x33,0xa4,0x56,0x2b,0x73,0xb9,0x33,0x9c,0xe1,0x67,0x9d, + 0x84,0xc0,0xc0,0xda,0x35,0xe7,0xbd,0x81,0x96,0x7c,0xf3,0xb8,0x10,0x30,0xc3,0x2, + 0xeb,0x35,0xec,0xdf,0x2d,0xbe,0x2c,0x80,0x8f,0x0,0xae,0xaf,0xbb,0xeb,0xdf,0x17, + 0xc0,0x83,0xbd,0x77,0x73,0xd3,0x5d,0x7f,0xbb,0x4,0x3e,0x5f,0x1,0xdb,0x6d,0x77, + 0xfd,0xd3,0xe6,0x3d,0xd9,0xb9,0xef,0x6d,0x8e,0xfd,0x68,0xef,0x74,0xf7,0xdd,0xb8, + 0x5b,0x40,0x3b,0xc,0x13,0xaa,0x3c,0xf3,0xee,0x17,0x19,0x31,0x9c,0xc1,0xdc,0xef, + 0x8f,0x74,0xc,0x71,0x86,0xb9,0x8f,0xfb,0x2e,0xdc,0xbc,0xfe,0x73,0x18,0x1e,0x8e, + 0x8f,0x71,0xce,0xef,0x39,0xec,0x68,0xdb,0x76,0x14,0xfe,0x9c,0x3e,0x9f,0xcb,0xd5, + 0x62,0x84,0xf9,0x7e,0x2e,0x85,0x21,0xe5,0x87,0xb9,0x21,0x46,0xe,0xbf,0x8f,0xa1, + 0xc9,0x8f,0x61,0x44,0xf3,0xbd,0x67,0xcc,0x46,0xf0,0xc,0x47,0xf9,0xda,0xe0,0xf2, + 0xb9,0xb5,0xc3,0xac,0xa1,0xd1,0xf7,0x7f,0xfa,0x3f,0xb7,0x87,0xc4,0xe7,0x77,0xca, + 0x6f,0x9a,0x66,0x14,0x54,0xfe,0x68,0xef,0x9c,0x82,0xca,0x77,0x11,0xec,0x47,0x1c, + 0x36,0xc6,0xec,0x96,0xf6,0xd9,0xcc,0x8d,0x69,0x66,0x5d,0x38,0x1a,0x4d,0xb8,0xb9, + 0x4e,0x67,0xac,0xdc,0x1c,0xf5,0xa6,0xd7,0x99,0x1f,0x17,0xa,0xa5,0x20,0x74,0x83, + 0x88,0x2c,0x9c,0x1c,0xfd,0x19,0x80,0x70,0x6b,0x2e,0xae,0x47,0xbc,0xae,0x85,0x6b, + 0x47,0xb1,0x36,0x29,0x9d,0x1b,0xe0,0xf9,0xf3,0xa5,0xb5,0x4a,0x68,0x1e,0x8b,0xe5, + 0xed,0x61,0x56,0x7b,0x34,0x3a,0x4a,0xe8,0x89,0x88,0xc9,0xe9,0xaa,0x52,0x1b,0x63, + 0x98,0xa4,0xce,0x8,0x5a,0x99,0x8a,0x27,0x69,0x67,0xe,0x9e,0x6,0x33,0x15,0x4f, + 0xad,0xf1,0x9,0x78,0x2a,0xcd,0x97,0x74,0x5b,0xd2,0x7e,0x6a,0x3f,0x96,0xf6,0x1, + 0x6d,0x5f,0xd0,0xf4,0x86,0xc8,0xbe,0x23,0xd7,0x9f,0xd0,0x2b,0xce,0x7a,0xa6,0x5d, + 0xcf,0x91,0xde,0x41,0xf6,0x90,0xd8,0x9e,0x2b,0xc3,0xe3,0xb5,0x34,0xd2,0x9b,0xb8, + 0x1e,0xe5,0xc6,0x8b,0xed,0x51,0x7,0xdb,0x6f,0x76,0xb8,0x37,0x2d,0x6e,0x8f,0xd1, + 0x60,0x73,0xc,0x60,0xa5,0xe,0x37,0xdf,0xe5,0xba,0x7e,0x65,0x2d,0x34,0x3e,0xe0, + 0xb5,0x6f,0x7d,0xba,0x8c,0x75,0x85,0xe8,0xa8,0xd5,0xbf,0x48,0x4c,0x45,0x3f,0x4b, + 0xe2,0x4a,0xed,0x6f,0x5c,0x2f,0x62,0xb1,0xb,0xfc,0xd8,0x24,0xd8,0xa,0x8e,0x28, + 0xb6,0x66,0x9f,0xa7,0xf6,0xd9,0x9c,0x7e,0xab,0xed,0xbb,0x44,0x8f,0x4b,0xe2,0xd0, + 0xe0,0x13,0xfd,0x33,0xc7,0x37,0xc4,0x3c,0x48,0x3f,0x4a,0x38,0x34,0xb5,0x27,0x7b, + 0xa,0x5,0x7e,0xd8,0x7,0x93,0x3c,0x86,0x12,0x3f,0x85,0x23,0x17,0x5f,0xcb,0x51, + 0x82,0xaf,0xe1,0x28,0xc5,0x97,0x38,0x92,0xf0,0x3,0x6d,0x4c,0xf6,0x2c,0x1a,0xfc, + 0xd2,0xf8,0xdb,0xf8,0x5a,0xaf,0xc4,0x69,0xa9,0xb4,0x7f,0xbd,0x6b,0x8,0xfe,0x9, + 0xa1,0x47,0x49,0xc4,0x97,0xfc,0x4a,0xc,0x9f,0xd4,0xb8,0x7a,0xf8,0xc3,0x1e,0xc3, + 0x84,0x84,0x1f,0x7a,0x2e,0x1f,0xdb,0x7c,0x35,0xe6,0xd9,0xfa,0xa5,0x83,0xf5,0x4d, + 0x7b,0xeb,0x9f,0x76,0x58,0x5a,0xff,0x34,0xb7,0x3e,0x6a,0x76,0xe,0xcd,0xf7,0x1f, + 0x86,0xcb,0x73,0x38,0xce,0x87,0x6d,0x6d,0xdc,0xe1,0xd5,0x87,0x35,0x6b,0xaa,0x43, + 0x27,0xf,0xa9,0x86,0x29,0x86,0xe8,0xd9,0x4a,0xbd,0x5b,0x8c,0x57,0xe5,0xe9,0x8, + 0xfd,0x2a,0xa9,0x23,0x89,0x53,0xa8,0x25,0xb5,0x86,0xea,0xda,0xf6,0x16,0x3e,0xb7, + 0x42,0xd,0x2a,0xee,0x54,0xbd,0x55,0xd6,0x20,0x72,0x9f,0xf0,0x63,0x5e,0xed,0xdc, + 0x6f,0x63,0x38,0x4c,0xd,0xb9,0x5e,0xba,0xd4,0x63,0x6b,0xb9,0x25,0x9f,0x3a,0xa5, + 0xcf,0xd7,0x7a,0xe5,0xaa,0xe7,0x80,0x80,0x3f,0xb7,0x6,0x89,0x3f,0xc6,0xed,0x7b, + 0xba,0xa9,0x6a,0xd0,0x9c,0xb1,0x4a,0x6b,0xc8,0xe5,0xa7,0xbc,0x6d,0x4e,0xd,0x25, + 0xfc,0x35,0x6a,0x28,0xe5,0x2f,0xad,0xa1,0x6,0x7f,0x49,0xd,0xb5,0xf8,0x73,0x6b, + 0xa8,0xc9,0x9f,0x53,0x43,0x6d,0xfe,0xd4,0x1a,0xa6,0xe0,0x4f,0xa9,0x61,0x2a,0x7e, + 0x6d,0xd,0x59,0xfc,0xbd,0x6,0xd6,0x88,0x48,0xf,0x9c,0xcc,0x6f,0x49,0xf1,0x3f, + 0xf0,0xa7,0x9e,0xb5,0x33,0xde,0x67,0x46,0xfb,0x5f,0x70,0xf,0x19,0xe7,0x41,0x50, + 0x67,0xdc,0x4c,0x7e,0xcd,0x79,0x57,0x75,0xc6,0xfe,0x87,0xf8,0x59,0xf,0xf4,0x36, + 0xfc,0x43,0xf,0x2c,0x44,0xe,0x3f,0xf5,0xe,0x62,0xf0,0x1e,0x62,0xbf,0x3a,0xfe, + 0xe0,0xe0,0x5,0xb8,0x7f,0x6,0x6e,0xf,0xc0,0x66,0xf,0xac,0x76,0xc0,0xb2,0x5, + 0xe6,0x2e,0x1a,0x60,0xd6,0x7,0x75,0x76,0xc9,0x19,0xe,0xcb,0x61,0xff,0x1,0xbc, + 0x55,0x8f,0xd6, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35.ico + 0x0,0x0,0x2,0x1a, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3d,0x4e,0xc3,0x30,0x18,0x7d,0x51,0xab,0x4a, + 0x15,0x3,0x19,0x3a,0x74,0x6b,0x46,0x46,0x6e,0x40,0x27,0xce,0xc1,0x84,0x90,0xb8, + 0x1,0x93,0x47,0x46,0x8e,0xc1,0x84,0xc4,0x6,0x5b,0x27,0xe,0xc2,0x1,0xb8,0x82, + 0xf9,0xec,0xd4,0x10,0x45,0x76,0xf2,0xf9,0x2f,0xa1,0xc2,0x96,0x3e,0xc5,0x8e,0xfc, + 0xfd,0x38,0x89,0xdf,0x7b,0xe,0x50,0x61,0x89,0xba,0x6,0x5d,0x1b,0xdc,0x2d,0x81, + 0x6b,0x0,0x9b,0x4d,0x3b,0x7e,0x5b,0x1,0x2f,0x74,0x6f,0xbb,0x6d,0xc7,0x8f,0x6b, + 0xe0,0xf6,0xc,0x68,0x9a,0x76,0xfc,0x4c,0x7e,0x5f,0x34,0xf7,0x82,0x7c,0xa8,0x4b, + 0x77,0xda,0xfb,0xaa,0xed,0x97,0x70,0x35,0x19,0x68,0x78,0x7f,0x80,0x34,0x26,0x84, + 0x60,0x99,0x99,0xaf,0x62,0xa8,0xab,0xfc,0x7c,0x95,0xf2,0xe3,0x5e,0xb2,0x1b,0xcd, + 0xed,0xfb,0xab,0xfe,0xe1,0x70,0x60,0x99,0xcd,0x3f,0x36,0xbf,0xba,0x77,0xf2,0xf9, + 0x39,0x35,0x1c,0xe7,0x39,0xfd,0x99,0xe6,0xf4,0x57,0x7d,0x97,0x8d,0xf8,0xeb,0x3e, + 0x5d,0x5d,0xdf,0x6b,0x37,0xc6,0x90,0xbf,0xed,0x9b,0xd,0xf1,0xd7,0x3e,0xc7,0x71, + 0x2e,0xff,0xfe,0x1e,0x1c,0xda,0x87,0xfd,0x79,0xca,0x57,0x54,0x52,0xaa,0xd0,0x21, + 0xa6,0x7c,0x15,0xce,0x10,0xdc,0x68,0xbc,0x31,0x38,0xf3,0xb4,0x4a,0x8e,0x33,0x49, + 0x70,0x87,0x8b,0x43,0xdc,0x7d,0xc4,0xd9,0x57,0xfa,0xbd,0x85,0xb6,0xc8,0x7d,0x9e, + 0x1c,0x77,0x4a,0x7d,0xa7,0x59,0x5f,0x48,0x8d,0x89,0x70,0x3e,0x9,0xee,0x7,0xf2, + 0xc0,0x10,0x17,0x84,0xf0,0x82,0x8b,0x1b,0x42,0x79,0xc2,0x16,0xcf,0x60,0x7e,0x8, + 0x6f,0x4c,0x15,0xcf,0xd8,0x40,0x3c,0xd8,0x78,0x89,0x8b,0xd5,0x7d,0x8e,0xd2,0x3c, + 0x85,0x1d,0xf5,0xcf,0x13,0xd8,0x4e,0xa,0x5c,0x69,0xde,0x22,0x9,0x8d,0xcb,0xe, + 0x6f,0xdd,0xac,0xb3,0xf3,0xd6,0x20,0x8f,0xc5,0x70,0x99,0xe3,0xd9,0xc5,0xe3,0x0, + 0x13,0x17,0xcc,0x77,0x16,0x8a,0x5d,0x5d,0xc,0x4b,0x8a,0x63,0x9e,0xb8,0x56,0xea, + 0x2f,0xf5,0xff,0xe9,0xfa,0x23,0xf5,0x46,0x2e,0x5e,0x67,0xf3,0xfc,0x14,0xf1,0x7d, + 0xb4,0x84,0x45,0x53,0xc,0xc5,0xf7,0xd5,0x16,0x36,0x8d,0xc1,0x8d,0xcf,0xc5,0xfc, + 0x94,0xf1,0xfb,0x7a,0xa1,0xc4,0x9f,0x3e,0x7e,0x57,0x5f,0x8d,0xc4,0x77,0xea,0x2c, + 0x5f,0x2d,0x61,0xfb,0x37,0xd0,0xea,0xae,0x2a,0x93,0xf6,0xa9,0x48,0x87,0x2d,0xb4, + 0xe,0x6b,0xc8,0xf6,0xf8,0xd5,0x61,0xa2,0xb6,0x28,0xb0,0xb6,0xe5,0xd2,0x61,0xde, + 0x3a,0x2d,0x85,0x56,0xf3,0x78,0x17,0x56,0x9c,0x8b,0xe5,0x9a,0x31,0xe,0xb2,0x7d, + 0xc7,0xa6,0xa6,0x24,0x5c,0x1a,0xc0,0x53,0x3f,0x78,0x3a,0xd3,0xfa,0x93,0xf0,0x70, + 0xc4,0xfa,0xe7,0x7e,0xff,0x65,0xfd,0x65,0xfd,0x65,0xfd,0x65,0xfd,0x65,0xfd,0x99, + 0x9e,0x41,0x2f,0x7e,0xee,0x73,0xd4,0x98,0x95,0xfc,0x23,0xf9,0x43,0xce,0x9a,0x8c, + 0xf3,0x27,0x27,0x7f,0xf7,0x2c,0xa1,0x2c,0x46,0xe3,0xba,0x6a,0xf0,0xc9,0x1f,0xaa, + 0x77,0xa7,0xc8,0x6f,0x34,0xa3,0x6d,0x6e,0xc9,0x5f,0xf2,0xff,0x87,0xfc,0x5d,0xf3, + 0xcc,0xf,0xd7,0x19,0x38,0xd5,0x79,0xd8,0x15,0xd3,0xe4,0x16,0xea,0xf7,0xc0,0x3c, + 0xad,0xa2,0xdc,0x8b,0x6f,0x5f,0x37,0xc0,0xcd, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_active.ico + 0x0,0x0,0x2,0x92, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0xc4,0x30,0x10,0x7d,0x81,0xd5,0xc2, + 0x8a,0x82,0x14,0x5b,0x50,0x50,0xa4,0xa4,0xe4,0x4,0x68,0x69,0x10,0xc7,0xa0,0x42, + 0x94,0x1c,0xc1,0x25,0x15,0xe2,0x18,0x54,0xd4,0x94,0x1c,0x82,0x3,0x70,0x2,0xc4, + 0xd,0x82,0x9d,0x65,0x88,0xd7,0xb1,0x9d,0xf1,0x27,0x64,0x17,0xc5,0xe8,0x89,0xb5, + 0x93,0x79,0xe3,0xd8,0xce,0x9b,0x99,0x0,0x5,0x66,0x28,0x4b,0xc8,0xff,0x15,0xee, + 0x66,0xc0,0x15,0x80,0xe5,0x72,0xdd,0x7f,0x9d,0x3,0x2f,0x72,0xec,0xe4,0x64,0xdd, + 0x7f,0x58,0x0,0xb7,0x47,0x40,0x55,0xad,0xfb,0xcf,0xd2,0xee,0x53,0xde,0x7b,0x26, + 0x6d,0xe4,0x4f,0x39,0xb2,0x1e,0x57,0x6d,0x35,0x83,0xad,0xd5,0x29,0xb8,0xbe,0xae, + 0x59,0x68,0xee,0x17,0x1a,0x34,0xfb,0xf7,0xf7,0xba,0x7e,0x7c,0x74,0x43,0xdd,0xaf, + 0x1a,0xf4,0xbf,0x96,0x3,0x7d,0x1c,0x3e,0xfb,0x54,0xff,0x3e,0xfb,0x8d,0xe7,0xff, + 0xe1,0xa0,0xd6,0x67,0x4f,0xcf,0x46,0x8d,0x38,0x8,0xb4,0xa6,0x21,0xf6,0xe6,0xdc, + 0x86,0xb4,0xd7,0x38,0x1a,0xd8,0xd6,0x86,0xbb,0xfe,0xae,0xb5,0xe5,0xd8,0xfb,0xf6, + 0x86,0xb3,0x7f,0x42,0x8,0xeb,0xf5,0xa1,0xed,0xe9,0xdc,0x90,0xbd,0x6f,0xfd,0x1d, + 0xef,0x1b,0x7c,0xfd,0x76,0xbc,0x85,0xd0,0x7e,0x17,0x6f,0x2d,0xf4,0x7b,0x74,0xec, + 0x55,0x75,0xad,0x74,0x46,0xca,0x4d,0xa3,0x37,0xa4,0x33,0x4f,0xf3,0xfc,0x3a,0x13, + 0xab,0x3b,0x4e,0xfd,0x89,0xd0,0x21,0xaf,0x1e,0x44,0xe8,0x4a,0x8,0x1f,0x47,0xe7, + 0xc6,0x9c,0xdf,0x18,0x7c,0x3e,0x7d,0xe5,0xea,0x2c,0x57,0x6f,0xb9,0xba,0xcb,0xd5, + 0xcf,0x50,0x1d,0xcb,0xcd,0xa7,0x71,0x5a,0xf5,0x39,0x86,0x8f,0x83,0x50,0x3e,0xce, + 0x19,0x8,0x39,0x2f,0x2e,0x3d,0x9e,0xf8,0xfc,0x71,0xcc,0xe4,0xe3,0x9c,0x3f,0x6e, + 0x6c,0xf2,0xc5,0xa7,0xf6,0xfa,0xf1,0x6,0x84,0xd1,0xc7,0xbd,0x6,0xf3,0x9a,0x81, + 0xe2,0xf0,0xb8,0x89,0x5b,0x32,0x85,0xc6,0xb9,0x16,0xb7,0x6e,0x16,0xc3,0xc7,0xad, + 0xd4,0x38,0xc6,0x8d,0x69,0x6a,0x9f,0x52,0xde,0xdb,0x5f,0x2e,0x7f,0x4c,0x8a,0xe2, + 0xf7,0xea,0x7f,0x42,0x5c,0x89,0xe1,0xf,0x89,0xab,0xdb,0x38,0xff,0x6d,0xe2,0xb7, + 0xc5,0x63,0x1b,0x77,0x33,0x1e,0x78,0x7e,0x48,0x23,0xcc,0xf8,0xec,0x8a,0xf9,0x11, + 0x71,0xb0,0xd3,0x5c,0x39,0x40,0xa8,0xe,0xfb,0xf8,0x73,0xe8,0xfc,0xd0,0xfc,0xe, + 0x1f,0x9c,0xfd,0xa,0xcb,0xb,0x19,0xf9,0x48,0xa,0x7f,0x8,0x62,0xf8,0xd5,0x7d, + 0x84,0xdc,0xfc,0x14,0x7b,0x9,0x39,0xf3,0xa2,0x89,0x7f,0x5c,0x7e,0x5b,0x7e,0xa5, + 0x8f,0xf7,0xf1,0x33,0xf2,0x4,0x47,0xed,0xef,0xcf,0xb9,0x7e,0x73,0xc,0x3,0xc2, + 0x1c,0x3b,0x95,0xb8,0xd0,0x70,0xda,0xb5,0xb1,0xe2,0x12,0x4d,0x1e,0x56,0x49,0xac, + 0xd0,0xe6,0x61,0xa2,0xb4,0xa9,0x19,0x93,0x73,0xb,0xf3,0x34,0x13,0x94,0x9b,0xc1, + 0x93,0xbf,0xe1,0x27,0x87,0x4b,0xcd,0xe3,0x6c,0xd8,0xf0,0xeb,0x8a,0xfd,0x99,0xf2, + 0xc8,0x8e,0x6f,0x4e,0xee,0x91,0x29,0xcf,0xdc,0x36,0xff,0x41,0xbe,0x33,0xe4,0x79, + 0x39,0xfd,0x93,0x56,0xa4,0xcc,0x61,0x97,0x9f,0xff,0x3f,0xf8,0x1f,0xeb,0xfc,0x73, + 0xeb,0x82,0x21,0xfc,0xf7,0xd5,0xd,0x36,0xbf,0xb1,0x75,0x44,0x67,0xad,0x19,0x75, + 0x85,0xf3,0x9b,0x65,0x44,0x9d,0xc1,0xf1,0xad,0xcf,0x81,0xce,0x83,0xad,0xbe,0x31, + 0xd6,0x6f,0x30,0xff,0xcc,0xfd,0xdb,0x39,0xff,0x7d,0xfb,0x1f,0x78,0x7e,0xe3,0xbf, + 0xe3,0x74,0xe7,0x10,0xf3,0xfe,0x24,0xbd,0xff,0xd0,0xf2,0xa8,0x50,0xdb,0xa1,0xeb, + 0xbc,0xbf,0xf2,0x9f,0xa2,0x9d,0xa9,0xfe,0x95,0x1d,0xa7,0x66,0x19,0xc2,0x7f,0x68, + 0xdd,0x34,0xf9,0x9f,0xfc,0x4f,0xfe,0xf3,0xf8,0x37,0xbf,0x2b,0xe8,0xfd,0x18,0xff, + 0xa1,0xa0,0x58,0x17,0xf3,0xdd,0xc1,0x66,0xe3,0x6a,0xc2,0x36,0x58,0xbc,0x1,0xfb, + 0x1f,0xc0,0xc1,0x57,0xb,0xd5,0x57,0xe3,0xa1,0x6d,0x56,0xe2,0x1b,0xa0,0x4f,0xf7, + 0xef, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/machine.ico + 0x0,0x0,0x3,0xe8, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xbd,0x72,0x13,0x31,0x10,0x5e,0xc7,0x26,0x99, + 0x8c,0xb,0xbb,0x48,0x91,0x2e,0x2e,0xe9,0xc2,0x1b,0x24,0xd,0xc,0x6f,0x40,0x4b, + 0xc5,0xf0,0xc,0x34,0x71,0x49,0xc9,0x23,0x50,0x52,0x51,0xe7,0xaa,0xf8,0x2d,0x28, + 0x69,0x19,0xa,0x1e,0x0,0x66,0x2c,0x56,0xf7,0xa3,0x5b,0xed,0xed,0x4a,0xab,0xbb, + 0x5c,0xa2,0x99,0x6f,0xe2,0x93,0xbd,0x3f,0x5a,0xad,0x76,0x3f,0x5d,0x0,0x16,0xb0, + 0x82,0xed,0x16,0xf0,0xef,0xe,0x3e,0xae,0x0,0xde,0x0,0xc0,0xc5,0x45,0xf3,0x7c, + 0x7f,0xa,0xf0,0x1d,0xe7,0x2e,0x2f,0x9b,0xe7,0xcf,0xe7,0x0,0x1f,0xd6,0x0,0xbb, + 0x5d,0xf3,0xfc,0xd,0xe5,0xfe,0xe0,0x6f,0x5f,0xa2,0xc,0x7e,0xc4,0x99,0x66,0xde, + 0x8f,0xdb,0x15,0x4c,0x19,0x6e,0x92,0x74,0x2f,0x5f,0xaa,0x87,0xcb,0x4d,0x91,0x77, + 0x20,0xeb,0xcb,0x62,0xbf,0xdf,0xd7,0xe0,0xf2,0xf5,0x5c,0x5,0x3a,0x5a,0xd9,0x6e, + 0x10,0x1d,0xbd,0xbc,0x4b,0xdb,0xf6,0xe3,0x70,0x38,0xd4,0x60,0x3a,0x82,0x7d,0xea, + 0x1f,0xff,0xdc,0xc9,0x4a,0x3a,0x82,0xfd,0x4f,0x95,0x8c,0xaa,0x52,0x75,0x4,0x79, + 0xb4,0xff,0xf6,0xde,0xd5,0xf0,0x32,0xf4,0xb3,0xf7,0x5e,0xd3,0x11,0xfc,0x74,0xbd, + 0xcf,0x74,0x2e,0x8a,0x43,0x15,0xaf,0xa5,0xf5,0x3f,0xc4,0x8f,0xe,0x29,0x26,0x74, + 0x2f,0x3a,0x59,0x1a,0xbf,0x4e,0x2e,0xc8,0xb,0xf6,0xa5,0xdc,0x2b,0xb5,0x2f,0xca, + 0x57,0xd0,0xd8,0x4b,0xfd,0x4d,0xc8,0x5b,0x21,0xc9,0xbb,0x9f,0xe8,0xf0,0xf,0xc4, + 0x3b,0xc4,0x6b,0xdc,0xab,0x17,0x88,0x45,0xb,0x20,0xf0,0xcf,0x4b,0xc4,0x26,0x86, + 0xaf,0x33,0x58,0x6e,0xea,0x7a,0xd3,0xd5,0x99,0x2f,0xa7,0xdc,0xca,0xe8,0x31,0xb5, + 0xe6,0x68,0xfa,0x1e,0xbb,0x96,0x3d,0xa6,0x3e,0xa9,0x46,0xf1,0xef,0x26,0xd5,0x2c, + 0x3f,0xb2,0x75,0x4b,0xa8,0x61,0x42,0x2e,0x5,0xbd,0xd9,0x3a,0x56,0xe7,0x71,0x25, + 0xea,0x92,0xfc,0xcc,0xd5,0xb5,0xe6,0x6c,0xb8,0x68,0x9e,0x9e,0x3f,0xee,0x67,0xa9, + 0x7f,0x52,0xcd,0xe5,0xbe,0x58,0xfd,0xa3,0xba,0x24,0x9d,0x91,0x7f,0x6a,0x1d,0x6, + 0xb5,0x8e,0xaa,0x75,0x3d,0x59,0x97,0x21,0x59,0x9b,0xc5,0x3a,0x2f,0xd4,0xe9,0xa8, + 0x5e,0x93,0x9c,0x49,0xe9,0xc,0x32,0x95,0x1c,0x1b,0x2d,0x37,0xb5,0x1e,0x12,0xf2, + 0xd9,0xf5,0xfa,0xba,0x11,0x7e,0xa3,0xec,0xbd,0xd4,0x53,0x24,0x7d,0x34,0x27,0xe8, + 0xde,0x4b,0xfb,0xce,0x7b,0xc,0x3d,0x6f,0xea,0x7a,0xb5,0xdc,0x2c,0xe8,0x3b,0x52, + 0xff,0x11,0xf3,0x72,0x6a,0x1f,0x62,0x7b,0xad,0xe9,0x1b,0xb,0x49,0x9f,0xfb,0x87, + 0xb,0xfb,0x8b,0xf8,0x8d,0xf8,0xf5,0x80,0xdf,0x7b,0x5c,0xb7,0xd8,0x28,0xb8,0x42, + 0xdc,0x20,0xee,0xe2,0x5e,0x6,0x4d,0xdf,0x42,0xa,0xd,0xaf,0xa0,0xef,0x5b,0xef, + 0xcf,0xb9,0xd5,0xc9,0xe3,0xb1,0xfb,0x97,0xa6,0x7f,0xee,0x3e,0x39,0xa7,0x7e,0xad, + 0xdf,0x81,0xf0,0x9b,0x29,0xfd,0x2f,0x9d,0xf7,0xc6,0x3e,0x68,0xed,0x87,0x91,0xfe, + 0xc,0xbf,0x87,0xae,0xff,0x80,0xac,0xdb,0xd2,0xc7,0xa5,0xfe,0x24,0x9d,0x7b,0x3a, + 0x9f,0xea,0x97,0x9d,0x1d,0xb3,0xff,0x82,0xee,0x54,0xff,0x8c,0xf4,0x5b,0xfc,0x67, + 0x7d,0x3e,0xd5,0x4f,0x8b,0xfa,0x3e,0xf3,0x5f,0xd2,0x5d,0xc2,0x3,0x52,0xfe,0xa7, + 0x74,0x27,0x79,0x41,0x2e,0x2f,0x5d,0xba,0xdf,0x4e,0xba,0xff,0x11,0xfe,0x51,0x6a, + 0x83,0xfa,0xdf,0x71,0xf,0xce,0x45,0x2,0x1f,0x31,0xf0,0x86,0x14,0x8f,0x0,0xda, + 0xa7,0x1c,0x28,0xfd,0x4b,0xbf,0xcf,0xe6,0x78,0x85,0x7a,0x26,0xa3,0x7d,0x70,0x26, + 0x4e,0x35,0xe0,0x19,0x39,0x5e,0xa0,0xec,0xbb,0x64,0x43,0xe4,0x1d,0x29,0x5e,0xd4, + 0xf7,0x6f,0xf5,0x4c,0x68,0xba,0x25,0xfd,0xf4,0xc,0x59,0xce,0x46,0xae,0xef,0x9b, + 0xe2,0x63,0xe9,0x7,0x13,0x79,0x54,0xca,0xff,0xac,0x7e,0x2b,0xaf,0x12,0xce,0xf5, + 0x9c,0x3c,0xcb,0x12,0x7f,0x77,0xc4,0x40,0x1c,0x1f,0x90,0x7b,0x79,0x74,0x5c,0x6b, + 0xdd,0xe2,0xa4,0x85,0x16,0xf7,0x5,0x62,0x89,0x38,0x73,0x1a,0x47,0xf3,0x3c,0x6c, + 0x87,0xb8,0x85,0x9e,0x87,0xed,0xb7,0xdc,0x8b,0xd9,0xc6,0x60,0xbd,0x4f,0x3c,0x6, + 0xfd,0xfc,0x99,0xec,0x3e,0xa7,0x7d,0x91,0xd7,0x3c,0x85,0xdd,0x14,0xaf,0x9a,0xdb, + 0xbe,0x72,0xf6,0xe6,0xf2,0x43,0x5c,0x77,0xe2,0xfc,0xcf,0x66,0x9f,0x73,0xc4,0x1c, + 0xff,0x64,0x3a,0x26,0x81,0xdb,0xb6,0xf0,0xd3,0xce,0xb8,0x89,0x87,0x19,0xdf,0x9f, + 0x95,0xf0,0x57,0x1a,0x37,0x73,0xaf,0x3,0xe8,0xf9,0x8e,0xc1,0xf6,0x58,0x9e,0x9e, + 0xed,0x87,0x6e,0xf8,0x7e,0xae,0x84,0xff,0xd2,0x38,0x14,0xaf,0x9f,0xc5,0xde,0x62, + 0xbb,0x94,0xe7,0x27,0xd7,0x4f,0xe2,0x5f,0x62,0x3b,0x79,0xf,0x28,0x5d,0x7f,0xab, + 0xa3,0xd4,0xb6,0x7a,0x4f,0x28,0xdd,0xff,0x11,0x9c,0x3e,0x77,0x8f,0x30,0x83,0xf0, + 0x7d,0x2b,0xe7,0x37,0xdd,0x33,0xcc,0xb6,0x21,0xba,0xf,0x8c,0xdd,0x8b,0x36,0x9e, + 0x81,0xa7,0x66,0xef,0x69,0xd1,0xfb,0xe2,0x21,0x4a,0x7c,0xe8,0x6c,0xd3,0xfa,0x47, + 0xef,0x6d,0xd2,0x5d,0x2e,0x7a,0xbf,0x4c,0xe2,0x5f,0xba,0x17,0xd4,0x76,0x54,0x7f, + 0x73,0x3c,0x3a,0x7a,0x4f,0x19,0xc7,0x9f,0x22,0xe5,0x3,0xb7,0x4d,0xe3,0x9f,0xe5, + 0xd0,0x5,0x39,0x2a,0xf9,0x20,0xd9,0xa6,0xeb,0x4f,0xd5,0x92,0xe2,0x1a,0x1,0xb1, + 0xf,0x9a,0x6d,0xba,0x7e,0x7e,0x8f,0x94,0xee,0x93,0xb9,0xfa,0xc0,0xeb,0x4,0x79, + 0x56,0x7,0x5f,0x7f,0xfd,0xbc,0x87,0x1a,0xd1,0x5c,0xea,0x3e,0x55,0x70,0xaf,0xca, + 0xad,0xbf,0x79,0x6e,0x72,0xab,0xe4,0x3e,0x3d,0x40,0x89,0x7d,0xe3,0xfa,0x4b,0xe3, + 0x3f,0x76,0xfd,0xbc,0xaf,0x9b,0xf3,0x7f,0x6c,0xfc,0x67,0xc8,0xff,0x31,0xeb,0xd7, + 0xc6,0xd8,0xfc,0x2f,0x59,0x7f,0x88,0xdd,0x98,0xf7,0x9,0x13,0xe3,0x3f,0x17,0x2c, + 0xf6,0x1d,0xff,0x7,0x90,0xfb,0xea,0x71,0xed,0x8e,0x7b,0x8f,0x35,0xfe,0xc4,0xe3, + 0xa4,0x85,0x36,0x16,0x88,0x25,0xe2,0xc,0xb1,0x41,0x5c,0x21,0x6e,0x10,0x77,0x90, + 0xc9,0x93,0xff,0x85,0x2d,0x3,0xa1, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-yellow.ico + 0x0,0x1,0xfa,0xbe, + 0x0, + 0x0,0x1,0x0,0x9,0x0,0x14,0x14,0x0,0x0,0x1,0x0,0x20,0x0,0xbc,0x1,0x0, + 0x0,0x96,0x0,0x0,0x0,0x40,0x40,0x0,0x0,0x1,0x0,0x20,0x0,0xc0,0x4,0x0, + 0x0,0x52,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0xbc,0x52,0x0, + 0x0,0x12,0x7,0x0,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0, + 0x0,0xce,0x59,0x0,0x0,0x18,0x18,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x9,0x0, + 0x0,0x36,0x5e,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0, + 0x0,0xbe,0x67,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x25,0x0, + 0x0,0x66,0x78,0x0,0x0,0x48,0x48,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x54,0x0, + 0x0,0xe,0x9e,0x0,0x0,0x80,0x80,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x8,0x1, + 0x0,0x96,0xf2,0x0,0x0,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0, + 0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x8,0x6,0x0, + 0x0,0x0,0x8d,0x89,0x1d,0xd,0x0,0x0,0x1,0x83,0x49,0x44,0x41,0x54,0x78,0x9c, + 0xad,0x94,0x4d,0x6e,0xc2,0x30,0x10,0x85,0x67,0x10,0xb7,0xe8,0x92,0xb,0xb0,0x84, + 0xb,0x0,0x2b,0x92,0x1c,0xa1,0x47,0x80,0x7a,0xcf,0x5,0x20,0xdd,0x80,0x58,0xf6, + 0x8,0x9,0x3b,0xc4,0x5,0xd8,0xb2,0xaf,0xb2,0xec,0x39,0x5c,0x8f,0x9d,0x99,0xd8, + 0x71,0x92,0x82,0xd4,0x27,0x45,0xfe,0x99,0xf1,0xa7,0xb1,0xfd,0x62,0x84,0x5a,0x3a, + 0xcf,0x35,0xf4,0x8,0xb7,0x5b,0x4,0xad,0x7b,0xe3,0x80,0x88,0xd2,0x15,0x58,0x55, + 0xf5,0xe6,0xc3,0x64,0x2,0xb8,0x5e,0xf,0xc6,0x19,0x8a,0x2,0x33,0x5f,0x76,0xbd, + 0x46,0xb9,0xc5,0x6a,0xe5,0x80,0x9b,0x8d,0xcd,0x81,0xfb,0xbd,0x9,0xce,0xe7,0xae, + 0xa5,0xb9,0xc7,0x3,0xa0,0x2c,0x71,0xcc,0x31,0x86,0x15,0xfa,0x22,0xf9,0x19,0x26, + 0x76,0xde,0x42,0x19,0x46,0xb,0x7d,0x31,0xb4,0xd6,0xd8,0x1f,0x34,0x30,0x65,0xbe, + 0xbd,0x1b,0x7f,0x1a,0xd0,0xed,0x6,0xe9,0x72,0x9,0x65,0x9a,0xda,0x2a,0xbc,0x25, + 0xd1,0xb9,0x8e,0xdb,0x13,0x4,0xab,0xaa,0x6f,0xc3,0x48,0x6c,0x51,0xfb,0xb7,0xbc, + 0x9,0x85,0x30,0x1e,0x6b,0x3f,0x16,0x0,0x95,0x4a,0x6c,0x4b,0x67,0x3c,0x74,0x47, + 0x1d,0x50,0xd1,0x88,0x3b,0x45,0x9e,0x4b,0x35,0xc,0xb,0xaa,0x7b,0x52,0xa1,0x6d, + 0xa8,0xb4,0xb6,0xcc,0xf9,0xd1,0xc5,0x94,0x3,0x36,0x8c,0x7c,0x18,0x40,0x5b,0x7b, + 0x15,0xd8,0x1f,0x3e,0x15,0x1f,0xfa,0xb0,0xec,0x74,0x8a,0x72,0xc9,0x32,0x78,0x3c, + 0x76,0xdb,0x66,0x3a,0x75,0xb6,0x21,0xa0,0x52,0xf6,0x3c,0xb1,0xd,0x6b,0xfb,0x50, + 0xa0,0xb3,0x99,0x85,0xe9,0xe2,0xbd,0xd9,0x69,0xf6,0xe5,0xa0,0xa4,0xda,0xd8,0x23, + 0xf0,0x14,0xfa,0xd0,0x8d,0xe9,0xb2,0x78,0x41,0x3,0x73,0x71,0x3b,0xde,0xed,0x82, + 0x1d,0x5,0x40,0x4e,0x26,0x1f,0x9e,0xcf,0x89,0xd8,0xe8,0x95,0xf8,0x4b,0x3e,0x7c, + 0xc6,0xa7,0x2,0xe4,0xad,0xa9,0x9f,0x6d,0xb7,0xf,0x8b,0x2,0xe,0xa6,0xf9,0x50, + 0x28,0xf1,0xc3,0x3e,0xb6,0x52,0x53,0xa1,0xf1,0x1b,0x2c,0x16,0xb1,0x99,0x69,0x9e, + 0x1e,0x8e,0x3a,0x1e,0x41,0x68,0xde,0x93,0xb5,0x4d,0x4a,0xe7,0xdb,0xbd,0x3,0x97, + 0x44,0x8f,0x2,0xdf,0x66,0x97,0xea,0x1b,0x16,0x20,0x43,0xfb,0xf2,0x4b,0xca,0x4b, + 0xd3,0xfe,0x5f,0xa5,0xfd,0x68,0xfc,0xa7,0x7e,0x1,0xfe,0x7d,0xd1,0xbb,0x0,0x0, + 0x0,0xf8,0xc7,0x48,0x47,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, + 0x82,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44, + 0x52,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xaa,0x69, + 0x71,0xde,0x0,0x0,0x4,0x87,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,0x5b,0x3d,0x53, + 0xe3,0x30,0x10,0xb5,0x18,0xfe,0x9,0x25,0xd,0x25,0x54,0xa4,0x4a,0xa8,0x20,0xfc, + 0x84,0x2b,0x19,0x28,0x80,0xa1,0x4f,0xe8,0x6f,0x80,0xe6,0xe6,0xca,0x6b,0xe8,0x93, + 0xeb,0x48,0xaa,0x50,0xd1,0xd2,0x5c,0x5,0xfc,0x16,0x9f,0x56,0xf1,0xda,0x2b,0x5b, + 0xb2,0xf5,0x69,0x3b,0xb9,0x7b,0x37,0x47,0x1c,0x59,0xb2,0xf5,0x9e,0x56,0xda,0xdd, + 0x58,0x66,0x89,0x23,0xa6,0xd3,0x69,0xea,0xda,0xb6,0x2b,0xf0,0x3e,0xb3,0x72,0xd9, + 0xae,0xe3,0x85,0xd2,0xc1,0x60,0xe0,0xdd,0xa1,0xb6,0x70,0x7c,0x7c,0x9c,0xdc,0xdf, + 0xdf,0xc3,0x21,0xc,0x9a,0x24,0xc2,0x8e,0xed,0xc5,0x36,0x98,0xbc,0x12,0x56,0x2, + 0x6c,0x1b,0x79,0x80,0xb1,0x0,0xdb,0x48,0x1e,0x60,0xb4,0x6,0x0,0xf9,0xc9,0x64, + 0xe2,0xdd,0xa9,0x36,0x61,0x42,0x1e,0xd0,0x28,0x0,0x92,0x7f,0x7d,0x7d,0xf5,0xee, + 0x54,0x1f,0x61,0xbd,0x8,0x6e,0x1b,0x9c,0xdc,0x20,0x60,0xb5,0x5a,0x5,0xec,0x86, + 0x19,0xa8,0x25,0xc2,0x1c,0x57,0xc1,0xd6,0x52,0x9d,0x5,0xe0,0x53,0xc3,0xb5,0xa9, + 0x33,0xca,0xeb,0x50,0x99,0x2c,0x2c,0xd2,0xb6,0x3,0xe3,0x2c,0x0,0x60,0xb1,0xf0, + 0x69,0x1d,0x16,0xae,0x16,0xf9,0x7f,0xd,0x28,0x17,0xa4,0xf,0xf,0xd5,0x18,0xff, + 0xf1,0x31,0x51,0xcf,0xb8,0x35,0x46,0xc3,0xe6,0xb4,0x60,0xb1,0xac,0x84,0xe1,0xde, + 0x8,0xb1,0xe,0xe5,0x2,0xe4,0xc4,0xbf,0xbe,0x8c,0x1a,0xf2,0xfa,0x9,0x1b,0xde, + 0x24,0xa6,0x6d,0x50,0xa4,0x50,0x42,0x30,0x16,0xe6,0x3a,0x42,0x0,0x41,0x1e,0x49, + 0x18,0xa,0x20,0xda,0x71,0xcb,0x60,0xa7,0xa7,0x56,0x6d,0x40,0x88,0x10,0x22,0x84, + 0xf2,0x42,0xc5,0x14,0xb0,0x20,0x21,0xc1,0xb4,0x1d,0xd4,0xdb,0xdb,0x73,0xbb,0x47, + 0x44,0xec,0x4a,0xa3,0x4f,0xf1,0xf2,0xa2,0x6e,0x71,0x72,0xb2,0xfe,0xc4,0x36,0xfb, + 0xfb,0xeb,0xcf,0xb7,0xb7,0x6a,0xdd,0xa3,0x23,0xf9,0x3b,0xb4,0x79,0x7e,0x4e,0x46, + 0xef,0xe3,0x64,0x71,0x31,0x77,0xeb,0x71,0x60,0xa8,0xdd,0x20,0x27,0x7f,0xae,0x69, + 0x30,0x3,0x61,0x50,0x4,0x4,0x90,0x7f,0x7f,0xd7,0xdf,0xa5,0x2c,0x44,0x8f,0x50, + 0x15,0x80,0x90,0x9f,0xa5,0xbf,0xe5,0x73,0x8f,0xd9,0xa8,0x2f,0x97,0xeb,0x4f,0x18, + 0xd1,0x8c,0xbc,0x6a,0x44,0x47,0x3f,0xc9,0x97,0x9e,0x8a,0xa0,0xd,0x84,0xa,0xf2, + 0x77,0xe2,0xef,0x72,0xf9,0xc1,0xcd,0x3d,0x49,0x86,0x7f,0x1e,0xd6,0x73,0x19,0xa7, + 0x0,0x27,0x3f,0x9e,0x73,0xf2,0x17,0xd5,0x6b,0xa0,0x28,0xb9,0x10,0x11,0x44,0xa0, + 0x21,0xb1,0x4b,0xc2,0xd6,0x10,0x9,0xde,0x71,0x9e,0x1f,0xe2,0x48,0xb7,0x86,0xa5, + 0x9c,0xbc,0x6e,0xba,0x54,0x50,0x63,0x2d,0x2e,0x40,0xf2,0x48,0xbc,0xf5,0x50,0xd8, + 0x14,0x40,0x18,0xad,0x20,0xf4,0xe2,0x87,0xe4,0x5d,0xdd,0x62,0x83,0x0,0xdf,0xb9, + 0xe9,0x9f,0x89,0x23,0x5f,0xf,0x16,0x6b,0xd5,0x47,0xe2,0xae,0xc9,0xd9,0xe,0xbb, + 0xbd,0x65,0x2a,0x76,0xe7,0xec,0x4c,0x90,0x87,0x53,0x78,0x5a,0xcc,0x7f,0x98,0xb, + 0x38,0xff,0xb3,0x5,0xf3,0xa2,0xa3,0xa4,0x8,0x46,0x1f,0x88,0x23,0x79,0x17,0x2b, + 0x28,0x2c,0x0,0x17,0x36,0xee,0xe2,0x66,0x19,0x31,0x41,0x98,0x82,0x92,0x27,0xe8, + 0x2a,0x17,0x0,0xf8,0x46,0x84,0x42,0x0,0xb0,0x2,0x29,0x17,0x0,0x11,0xe8,0x4a, + 0x8f,0xa0,0xdf,0x33,0x91,0xe6,0x9f,0x9f,0x9d,0xe4,0x2,0x88,0x60,0x5e,0x20,0x17, + 0xc1,0x30,0x27,0xb0,0x21,0x4f,0x11,0x2a,0x17,0x0,0x84,0xf0,0x2,0xf9,0xef,0x1, + 0xda,0x90,0x58,0x3,0x6b,0xf2,0xae,0xb9,0x46,0x3,0x82,0x78,0x81,0x9c,0x7c,0xc9, + 0xc4,0x95,0xc8,0xc2,0xe0,0xf4,0xea,0x2a,0x61,0x37,0x37,0x45,0xb9,0x2a,0x17,0x0, + 0xd0,0xe0,0x27,0x42,0x2e,0xe0,0xeb,0x5,0x36,0x3a,0x17,0x40,0x2f,0x80,0x70,0xf2, + 0x2,0x95,0xd1,0x37,0xc9,0x5,0xb2,0xfa,0xe2,0xf7,0x80,0xc3,0xc3,0x9c,0x7c,0x3a, + 0xfb,0x26,0x55,0x67,0xc9,0xa9,0x54,0x9f,0x62,0x68,0xe0,0x39,0x4c,0x10,0xc4,0xb, + 0xa8,0x50,0x9b,0xb,0x28,0x50,0x90,0x2f,0xea,0x43,0x78,0xa0,0x73,0x91,0x6d,0x3f, + 0x68,0xd1,0x4d,0x11,0xef,0x5c,0xc0,0xaf,0x7e,0x3b,0x0,0xf2,0x68,0x29,0xdc,0x53, + 0x48,0x8f,0xc8,0x5b,0xc9,0x5,0x54,0x68,0xeb,0xc1,0x4a,0xd3,0x1a,0x11,0x38,0x17, + 0x30,0xaf,0xdf,0xd6,0x83,0x15,0x24,0xad,0x13,0x5c,0x2b,0x0,0xe4,0x2,0x10,0xe3, + 0x53,0x22,0x95,0x5c,0x80,0x80,0x9d,0xff,0x12,0xae,0x8d,0xd6,0x37,0x9,0x91,0xdb, + 0x40,0x9d,0xb5,0x55,0x5,0xb0,0xc9,0x5,0xc0,0x25,0x62,0x2c,0x30,0x99,0x24,0x23, + 0xd5,0x1d,0x34,0x82,0xc5,0xb6,0x0,0xdc,0xcb,0xd0,0x34,0xd5,0xd4,0x16,0x0,0x22, + 0xc0,0x67,0x5d,0x2e,0x40,0x1,0x7e,0x5e,0x77,0x4e,0x53,0xde,0xc6,0x66,0xb,0x93, + 0x75,0x46,0xac,0x86,0x63,0xf0,0x62,0x70,0x50,0xe,0x70,0xea,0xc0,0x47,0x9f,0xd9, + 0x3e,0x1c,0xcc,0x2,0xa6,0xd5,0xf5,0xb5,0x5d,0x3b,0x7,0xe8,0xc8,0x67,0x96,0x27, + 0x7b,0x81,0x39,0x4c,0x61,0x10,0x41,0x15,0xe5,0xa9,0x0,0xe4,0xc7,0xe3,0x35,0x21, + 0xd3,0x28,0x8f,0x84,0xca,0x31,0x3c,0x80,0xab,0x45,0xe5,0x53,0x40,0x12,0xa1,0x1, + 0xb0,0x3e,0xc0,0x28,0xe,0x9e,0x9e,0xcc,0xef,0x94,0x45,0x8b,0xd3,0x83,0x83,0x28, + 0xf3,0x3f,0x4d,0x53,0xff,0x1f,0x45,0x51,0x84,0xa6,0x46,0x7,0x59,0x60,0x61,0x23, + 0x2,0x9a,0x7d,0x17,0x1b,0x2b,0xea,0x50,0x59,0x4,0xe7,0xd9,0xfc,0x50,0xed,0xd, + 0x52,0x75,0xbe,0x8d,0xf9,0x1c,0x13,0x9d,0x45,0x82,0x3a,0xd4,0x4d,0x8f,0x18,0x53, + 0xa7,0x33,0x1,0x74,0x64,0x5c,0x4,0xf0,0x11,0xc6,0x4a,0x80,0x90,0xbe,0x5b,0xb7, + 0xef,0xb0,0x8e,0x8c,0x4b,0x9b,0x26,0x58,0xb,0x0,0x37,0x43,0x21,0x6c,0xbf,0x53, + 0xe8,0x36,0x38,0xc0,0x6a,0xae,0x43,0xa8,0x4d,0x11,0x14,0x9d,0xed,0x11,0xba,0x4c, + 0x2f,0x95,0xfe,0x6,0x48,0xea,0xfe,0xc7,0x40,0x67,0x2,0xfc,0xe0,0xff,0x92,0x65, + 0x57,0x77,0x2f,0xd0,0x9d,0x17,0x88,0x33,0xa0,0xd6,0xd0,0x76,0x23,0xe6,0x1e,0x61, + 0xdd,0x2e,0x4f,0x1f,0x94,0xfb,0x69,0x95,0xb,0xb4,0x8d,0xae,0x36,0x5e,0xab,0xbc, + 0x45,0xad,0x0,0xd0,0x51,0x3a,0x5a,0xb8,0x10,0xd1,0x95,0xba,0x6f,0x65,0xd,0x23, + 0x2f,0xaa,0xd1,0x72,0xa5,0x0,0xf4,0xfd,0x0,0x10,0x1,0x2e,0xa,0x17,0xc0,0x9b, + 0xf5,0xb5,0xcc,0x96,0xbc,0x52,0x0,0xfa,0x66,0x88,0xea,0xa5,0x83,0xbe,0x96,0x51, + 0xf2,0xf4,0xb8,0x8e,0x7c,0xa5,0x10,0xc9,0x6f,0xb2,0xd9,0xdb,0x90,0x97,0x4e,0x6c, + 0x83,0xd9,0xdb,0x92,0x7,0xec,0x22,0xf9,0x7f,0xc9,0xec,0x29,0x18,0x25,0x8f,0xaa, + 0x22,0x40,0x71,0xb8,0x61,0x1f,0xcb,0x42,0x90,0x17,0x95,0xa8,0x0,0x31,0x2,0x94, + 0x58,0x50,0xed,0xb,0xb0,0x25,0xf,0x90,0xbc,0xc0,0x26,0xbf,0x19,0xe6,0x42,0x1e, + 0xb0,0xd1,0x6f,0x8c,0x28,0x36,0x47,0x58,0x67,0x18,0x1b,0x2d,0x0,0xc0,0x87,0x3c, + 0x6d,0xd4,0x8f,0x87,0x78,0xee,0x70,0xce,0x2d,0xff,0x2,0x70,0xd1,0xac,0x3e,0x0, + 0x0,0xed,0x19,0xfe,0xc9,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, + 0x82,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44, + 0x52,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x6,0x0,0x0,0x0,0x5c,0x72, + 0xa8,0x66,0x0,0x0,0x52,0x83,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,0x7d,0x9,0x80, + 0x5c,0x55,0x95,0xf6,0xa9,0xea,0x2d,0x9d,0xce,0xbe,0x6f,0x9d,0x84,0x90,0x84,0x24, + 0x24,0x84,0x2d,0xa0,0x80,0x10,0x2,0xb2,0x44,0xc5,0x2d,0x20,0x22,0x23,0xb3,0x38, + 0x3a,0x20,0xe0,0x88,0x3a,0x3a,0xc2,0x3f,0x84,0xf9,0x5d,0xc6,0x71,0x0,0xc5,0x41, + 0xf0,0x1f,0x67,0xc4,0x5f,0x64,0xfc,0x67,0x18,0x17,0x46,0xb2,0xa8,0x90,0x10,0xb6, + 0x41,0x59,0x13,0x48,0x2,0x89,0x90,0xa5,0xb3,0xef,0x6b,0x77,0xa7,0xbb,0xab,0xfe, + 0xfb,0xdd,0x77,0xcf,0xab,0xf3,0x6e,0xbd,0xaa,0xae,0xea,0x7a,0xd5,0x5d,0xcb,0xfd, + 0x92,0xea,0xf7,0xea,0x2d,0xf7,0xdd,0xf7,0xea,0x7d,0xe7,0x9c,0x7b,0xee,0xb9,0xe7, + 0xc6,0xa8,0x42,0x71,0xe7,0x9d,0x77,0x26,0xb1,0x8c,0xc5,0x62,0x7d,0x5d,0x95,0x12, + 0x46,0xb2,0xaf,0x2b,0xe0,0x90,0x3,0x92,0xea,0x67,0xba,0xeb,0xae,0xbb,0x8a,0xf2, + 0x22,0x57,0x24,0x3b,0x1c,0xf9,0x73,0x43,0x32,0xe9,0x4,0x40,0x39,0xa1,0x18,0x42, + 0xa0,0x36,0xea,0x2,0xfb,0x1a,0x4c,0x7e,0x7,0x87,0x72,0x7,0xb,0xe8,0xc5,0x8b, + 0x17,0xeb,0xf,0xde,0xed,0xa8,0x85,0x40,0x45,0x9,0x0,0x9b,0xfc,0xf3,0xe7,0xcf, + 0xef,0xa3,0x9a,0x94,0x7,0x9c,0x5,0x50,0xda,0xb8,0xe8,0xa2,0x8b,0xfc,0x75,0x8, + 0x0,0x45,0xfe,0xc8,0xaf,0x51,0x31,0x2,0xc0,0x26,0xff,0xc5,0x17,0x5f,0xdc,0x57, + 0x55,0x71,0x70,0x28,0x18,0x92,0xfc,0x0,0x4,0x40,0x3c,0xae,0x95,0x3f,0xbf,0xe7, + 0x91,0x58,0x2,0x15,0x21,0x0,0x1c,0xf9,0x1d,0x2a,0x1,0x6c,0x91,0xd9,0x96,0x2b, + 0xc8,0x1f,0xe2,0xcf,0xc2,0xc1,0x5,0xb,0x81,0x78,0xa1,0x5,0xf4,0x35,0x1c,0xf9, + 0x1d,0x2a,0x1,0xd9,0xc8,0xf,0x64,0xf0,0x67,0x17,0xdc,0x86,0x2b,0x6b,0x1,0xe0, + 0xc8,0xef,0x50,0x9,0xe8,0x8e,0xfc,0xc6,0xf4,0x2f,0xa,0xca,0x56,0x0,0x38,0xf2, + 0x3b,0x54,0x2,0xfa,0x92,0xfc,0xba,0xfc,0xa2,0x96,0x5e,0x24,0x38,0xf2,0x3b,0x54, + 0x2,0xfa,0x9a,0xfc,0xfa,0x1a,0x45,0xbf,0x42,0xc4,0x70,0xe4,0x77,0xa8,0x4,0x94, + 0x2,0xf9,0xf5,0x75,0x7a,0xe5,0x2a,0x11,0xc1,0x91,0xdf,0xa1,0x12,0x50,0x2a,0xe4, + 0xd7,0xd7,0xea,0xb5,0x2b,0x15,0x8,0x47,0x7e,0x87,0x4a,0x40,0x29,0x91,0x5f,0x5f, + 0xaf,0x57,0xaf,0xd6,0x43,0x38,0xf2,0x3b,0x54,0x2,0x4a,0x8d,0xfc,0xfa,0x9a,0xbd, + 0x7e,0xc5,0x3c,0xe1,0xc8,0xef,0x50,0x9,0x28,0x45,0xf2,0xeb,0xeb,0xf6,0xc9,0x55, + 0x73,0x84,0x23,0xbf,0x43,0x25,0xa0,0x54,0xc9,0xaf,0xaf,0xdd,0x67,0x57,0xee,0x6, + 0x8e,0xfc,0xe,0x95,0x80,0x52,0x26,0xbf,0xbe,0x7e,0x9f,0x5e,0x3d,0x3,0x1c,0xf9, + 0x1d,0x2a,0x1,0xa5,0x4e,0x7e,0xa0,0xe4,0x6,0x3,0x39,0xf2,0xf7,0x1e,0xdc,0x70, + 0xe0,0xe2,0xa3,0x94,0xc9,0xf,0x94,0x94,0x5,0xe0,0xc8,0xef,0x50,0x49,0x28,0x75, + 0xf2,0x3,0x25,0x63,0x1,0x48,0xf2,0xab,0xf5,0xbe,0xac,0x8a,0x83,0x43,0xe4,0x28, + 0x45,0xf2,0x3,0x25,0x61,0x1,0x38,0xf2,0x3b,0x54,0x32,0x4a,0x95,0xfc,0x40,0x9f, + 0xb,0x0,0x47,0x7e,0x87,0x4a,0x46,0x29,0x93,0x1f,0x28,0x99,0x26,0x80,0x8d,0x55, + 0xab,0x56,0xf5,0x75,0x15,0x2a,0x1e,0x89,0x44,0xa2,0xaf,0xab,0x50,0xb1,0x90,0x19, + 0x7c,0x4a,0x39,0x3b,0x75,0x9f,0x5b,0x0,0xe,0xe,0x95,0x8c,0x52,0x26,0x3f,0xd0, + 0xe7,0x2,0xa0,0xd4,0x1f,0x50,0x25,0x3,0xcf,0xde,0x7d,0x8a,0xf3,0x29,0x17,0x94, + 0x44,0x13,0xa0,0x9c,0x1e,0x98,0x83,0x43,0x25,0xa1,0xcf,0x2d,0x0,0x7,0x7,0x87, + 0xbe,0x83,0x13,0x0,0xe,0xe,0x55,0xc,0x27,0x0,0x1c,0x1c,0xaa,0x18,0x25,0xe1, + 0x3,0x70,0x70,0xc8,0x15,0x3c,0x7e,0x21,0x57,0xbf,0x51,0x54,0xe3,0x1d,0xe2,0xf1, + 0x78,0x5a,0xb7,0x69,0x25,0xf8,0xae,0x9c,0x5,0xe0,0x50,0x96,0xe8,0xed,0x81,0x4c, + 0x92,0xfc,0x10,0x6,0x95,0x40,0x7e,0xa0,0x6a,0x2c,0x80,0x95,0x2b,0x57,0xf6,0x75, + 0x15,0x4a,0x10,0xe5,0x33,0x1a,0x90,0xf9,0xce,0xd1,0xa2,0xf8,0x3d,0x21,0x4,0xba, + 0x23,0x62,0x31,0x27,0x88,0x85,0x20,0x58,0xb1,0x62,0x85,0xae,0x43,0xb9,0x8e,0xac, + 0xac,0xa,0xb,0xc0,0x91,0xbf,0xf2,0xd0,0xd7,0x33,0x3f,0x83,0xfc,0xbc,0x2c,0x57, + 0xf2,0x3,0x15,0x6f,0x1,0x30,0xf9,0x39,0x26,0xdb,0xa1,0xbc,0x21,0xc7,0x8b,0x40, + 0x8,0x3c,0xf5,0xd4,0x53,0x39,0x9d,0x17,0x45,0x68,0x39,0x5b,0x1b,0x4f,0x3e,0xf9, + 0xa4,0xbf,0xad,0xdc,0xc3,0xa9,0xab,0xc2,0x2,0x70,0xe4,0xaf,0x1c,0xb0,0xe6,0xed, + 0x6d,0x84,0x91,0xbf,0x12,0x50,0xf1,0x16,0x80,0x24,0xff,0xf2,0xe5,0x7d,0x57,0xf, + 0x87,0x68,0xb0,0xf1,0x8a,0xde,0xbf,0x26,0x93,0xff,0x89,0x27,0x9e,0xd0,0xeb,0xb, + 0x16,0x2c,0xa0,0xbb,0xee,0xba,0xab,0xf7,0x2b,0x52,0x4,0x54,0xbc,0x0,0x60,0x38, + 0xf2,0x57,0x6,0xa6,0x2e,0xeb,0xdd,0xeb,0x49,0xf2,0x5f,0x72,0xc9,0x25,0x7a,0xbd, + 0x92,0xac,0x80,0xaa,0x68,0x2,0x38,0x38,0xf4,0x4,0x36,0xf9,0xb1,0x4,0x60,0x1, + 0x48,0xf4,0x55,0xb3,0x24,0xa,0x94,0x6f,0xcd,0x1d,0x1c,0x7a,0x11,0x4c,0xfe,0x30, + 0x94,0xb3,0x23,0xd0,0x9,0x0,0x7,0x87,0x10,0xc8,0xf8,0x2,0x68,0x7f,0x7c,0x2a, + 0xd1,0x11,0x58,0x35,0x3e,0x0,0x7,0x87,0x5c,0x20,0x89,0xcf,0x5a,0x5f,0x9a,0xff, + 0x95,0x44,0x7e,0xc0,0x59,0x0,0xe,0xe,0x21,0xb0,0xc9,0xcf,0xe,0x40,0xa0,0x42, + 0xa2,0x80,0x35,0x9c,0x0,0x70,0x70,0xa0,0x54,0x76,0x24,0x49,0x7c,0xb6,0x6,0xa4, + 0x10,0xa8,0x24,0xf2,0x3,0x4e,0x0,0x38,0x38,0x8,0x48,0x73,0x1f,0x8,0x6b,0x6, + 0x54,0x12,0x9c,0xf,0xc0,0xa1,0xaa,0x21,0xbb,0xfa,0x18,0x4c,0xf6,0x4a,0x19,0xf1, + 0x97,0xd,0xce,0x2,0x70,0xa8,0xa,0x30,0x99,0x33,0xa5,0xeb,0x66,0x4f,0xbf,0xad, + 0xe9,0xe5,0xf7,0x4a,0x14,0x8,0xce,0x2,0x70,0xa8,0x1a,0xc8,0x61,0xbb,0x61,0x11, + 0x7e,0x61,0x44,0x87,0xd7,0x1f,0xdf,0xbd,0x65,0x2f,0x57,0xb8,0x17,0xe0,0x4,0x80, + 0x43,0x55,0xa0,0xab,0xab,0x8b,0x6a,0x6a,0x6a,0x74,0xd0,0xe,0x96,0x0,0x13,0x5e, + 0xb6,0xf3,0x25,0x58,0x38,0x80,0xfc,0xb9,0xe4,0x1e,0x28,0x47,0xf4,0x89,0x0,0x38, + 0xfa,0xcd,0x6f,0xfa,0x3,0xa8,0xd7,0xa9,0x7,0x3b,0xd3,0x3c,0xd8,0xe3,0xdf,0xfa, + 0x96,0x7f,0xcc,0xd9,0x66,0x1f,0x83,0x8f,0x79,0xf1,0xdd,0xef,0xee,0xa5,0x5a,0xe6, + 0x8f,0xcb,0xa7,0xbe,0x4d,0x23,0x27,0x8c,0xcf,0xe9,0xd8,0x3d,0x2d,0xdb,0x68,0xf9, + 0xc6,0x29,0x45,0xae,0x91,0x3,0x3,0xe4,0x65,0xf2,0xdb,0x64,0xe,0x73,0xf0,0xc9, + 0xf0,0x5f,0x1c,0x5b,0xaa,0x53,0x7b,0x15,0x8a,0x5e,0x11,0x0,0x7f,0xf8,0xc6,0x37, + 0x34,0x93,0x67,0x86,0x48,0xd0,0xb0,0x6d,0xf6,0x3e,0x29,0x8,0xce,0x7e,0xfe,0xf9, + 0x80,0xd0,0xe8,0xb,0x81,0x90,0x89,0xe8,0x23,0xf3,0x28,0x3,0xe7,0x5f,0x3f,0xa1, + 0x3d,0x6d,0xfb,0xc3,0x2b,0x1b,0xa,0xa8,0x99,0x43,0x26,0xc8,0xc4,0x1d,0xd0,0xe8, + 0x52,0xdb,0x87,0x79,0xfd,0x53,0x66,0x7f,0xac,0x22,0x4d,0x7f,0x46,0xd1,0x5,0x80, + 0xd4,0xf6,0x3d,0x85,0x2d,0x24,0xa4,0x60,0x90,0x2,0x1,0xcb,0x63,0xe7,0x9d,0x57, + 0xe8,0xe5,0x42,0x21,0x49,0x9f,0xf,0xd1,0xf3,0xc5,0xf5,0xf3,0xdb,0xb5,0x75,0x80, + 0x6b,0x39,0x2b,0x21,0x3a,0x70,0xbc,0xbe,0x24,0x7f,0x26,0x93,0x5f,0x7e,0xaf,0x44, + 0xb3,0x5f,0xa2,0x68,0x2,0x0,0x5a,0x3f,0x93,0x76,0x6f,0x68,0x69,0xa1,0xf6,0x9, + 0x13,0x2,0x4b,0x40,0x6e,0xcb,0x5,0x5c,0xbe,0xbc,0xe,0xb,0x84,0x28,0x4,0x41, + 0x14,0xa4,0x97,0x64,0xce,0xb5,0x79,0xe0,0x5f,0xd3,0x58,0x9,0x7c,0xae,0xb3,0xe, + 0xa,0x3,0x27,0xf3,0xe4,0x70,0x5e,0x1e,0xd5,0xc7,0xdf,0x79,0x1f,0xb6,0x57,0x83, + 0xf6,0x7,0x8a,0x72,0x7b,0x61,0x5a,0x9f,0x49,0xde,0x53,0xe4,0x2a,0x14,0x24,0xb8, + 0xe9,0x30,0xef,0xab,0x5f,0xcd,0x2b,0x1f,0x0,0xb4,0x70,0x2e,0xb0,0xc9,0x8d,0x65, + 0xbe,0xc8,0x57,0x38,0x38,0xab,0x80,0xe8,0xbd,0xef,0x4d,0x8d,0xbe,0xeb,0x2e,0x25, + 0xd8,0x45,0x17,0x5d,0xa4,0x97,0x9c,0xc0,0x3,0x84,0xe6,0x16,0x65,0xba,0x0,0xc8, + 0xbd,0xe,0x8b,0x17,0x7b,0xe5,0x21,0x29,0x68,0x36,0x70,0x4a,0xba,0xa8,0x4,0x9, + 0x5f,0x57,0xa0,0xa0,0x92,0x23,0x15,0x0,0xc5,0x20,0x7e,0x26,0xe4,0x63,0x2d,0x40, + 0x10,0xec,0x3f,0xeb,0xab,0xdd,0x1e,0x97,0x8b,0x13,0xaf,0x27,0x24,0xcf,0x7,0x4e, + 0x10,0x74,0x8f,0x5c,0x5,0x0,0x34,0xf8,0x85,0x17,0x5e,0x58,0xd4,0xf1,0xfa,0x4c, + 0xf0,0x4c,0x89,0x41,0x4b,0x5d,0x0,0x44,0xd2,0x4,0x88,0x9a,0xf8,0x35,0xbb,0x76, + 0x53,0xd7,0xe8,0x51,0x59,0x8f,0xe1,0xf2,0x33,0x5d,0x47,0xa,0x6,0x34,0x11,0x9e, + 0xed,0xe6,0x9a,0xd0,0xfa,0x61,0x66,0x7e,0xb1,0x9,0xdf,0xdd,0xf5,0x32,0x9,0x4, + 0xe9,0x44,0x74,0x4d,0x83,0x74,0x70,0xdb,0xbd,0x9c,0x93,0x75,0xf4,0x6,0xa,0x96, + 0x4b,0x3d,0x21,0x3f,0x13,0x3c,0x6c,0x9,0x84,0xad,0x77,0x27,0x10,0xb2,0x81,0x85, + 0x41,0x98,0x25,0x10,0x66,0xee,0x17,0x85,0xf4,0xbb,0xb6,0x13,0x8d,0x1e,0xd7,0xe3, + 0xd3,0xbb,0xb3,0xc,0xaa,0x49,0x8,0xe4,0xd3,0x4,0xe8,0x6b,0x54,0xb4,0x5,0x60, + 0x93,0x3f,0x1b,0xf1,0x33,0x91,0x98,0x89,0x9e,0x69,0x1b,0xaf,0x67,0x12,0x8,0xd9, + 0x84,0x9,0x1f,0x93,0xa9,0xa9,0x60,0x93,0x3f,0x2f,0xe2,0x33,0xa1,0xb1,0xcc,0x80, + 0xf8,0x81,0x43,0x94,0x18,0x3a,0x38,0x78,0x4e,0x36,0x70,0x79,0x21,0x82,0x82,0xeb, + 0x96,0x49,0x10,0xf0,0xbd,0x54,0x93,0x20,0x70,0x28,0x1c,0x3d,0x96,0x1e,0xb9,0x90, + 0x3f,0x93,0x86,0x8f,0x12,0x61,0xe5,0xda,0xdb,0xda,0x5f,0x7c,0x89,0x6a,0xdf,0x77, + 0xa5,0x16,0x2,0xb0,0x2,0x16,0x7e,0xe1,0xb,0x69,0xe5,0x44,0x41,0x7e,0x26,0x3c, + 0x96,0x80,0x5c,0x97,0xdf,0xe5,0x32,0x2b,0xb2,0x8,0x84,0x6c,0x16,0x41,0xa5,0xb, + 0x1,0x67,0x1,0x4,0xd0,0xfb,0x16,0x40,0x3e,0x9a,0x9f,0xd1,0x1d,0xf9,0x93,0x7b, + 0xf7,0x52,0x6c,0xc4,0x88,0xb4,0xf5,0x9e,0x94,0x6b,0x6f,0x6b,0x38,0xfb,0x2c,0x6a, + 0x7f,0x7c,0x29,0x21,0x0,0x74,0xb6,0xfa,0x2c,0x51,0x1f,0x16,0x2,0xf9,0x78,0xe0, + 0x3,0x64,0x34,0xe4,0xb7,0x49,0x2f,0x61,0xef,0xb3,0x8f,0xc9,0x24,0x1c,0xfc,0x73, + 0xe5,0x75,0x1,0x21,0x8,0xb2,0xd5,0x1b,0xd6,0x40,0xa5,0xb,0x1,0x87,0x68,0x90, + 0xb7,0xf4,0x90,0xe4,0xcf,0x44,0xfc,0x5c,0x35,0x3e,0x88,0x9e,0xb,0x72,0x15,0x6, + 0x2c,0x38,0xb8,0x5c,0xac,0x43,0xfb,0xd7,0x4f,0x9e,0x44,0x27,0x36,0x6d,0xf6,0x8f, + 0xfb,0x6e,0xeb,0x31,0xfa,0xea,0xbf,0xfc,0x8b,0x5e,0x4f,0x9c,0x3a,0x3b,0x7b,0xa1, + 0x39,0x6a,0x7b,0x1b,0x61,0x96,0x40,0x26,0x8b,0x20,0xdb,0xf9,0x69,0x56,0x42,0x1e, + 0xd6,0x40,0xa5,0xa,0x1,0x67,0x1,0x4,0xd0,0x7b,0xdd,0x80,0x36,0xf9,0x63,0xa6, + 0xeb,0x23,0x69,0xdd,0x5d,0xcd,0x8e,0x9d,0xde,0x4a,0x88,0x7,0x36,0xb9,0x67,0xb7, + 0x17,0x8b,0x1d,0xaf,0x49,0xbf,0x40,0xd2,0xfb,0x61,0x63,0x23,0x47,0xe9,0xe3,0xbc, + 0x2f,0x71,0xeb,0x90,0x2e,0x2f,0x40,0x43,0x1c,0x83,0xf2,0xe2,0xa3,0x46,0xeb,0xef, + 0x99,0xce,0xed,0x50,0x2,0xa0,0x4e,0x8,0x2,0x8,0x85,0xba,0xdb,0x3e,0xaf,0xd7, + 0xb5,0x10,0xc0,0xbd,0x70,0x27,0x31,0xc8,0x3e,0xc6,0x90,0x6a,0xa7,0x68,0x1a,0x20, + 0x26,0x7c,0xdf,0x1,0x4a,0xc,0x1f,0xea,0x11,0x37,0x91,0x8,0xac,0x87,0xdd,0x6f, + 0x46,0xf0,0xb9,0x5c,0x9e,0x55,0xae,0x5f,0x56,0x57,0x17,0x25,0x46,0xc,0xf3,0xf7, + 0x7,0x20,0x84,0x41,0x35,0x9,0x1,0x27,0x0,0x2,0xe8,0x1d,0x1,0x10,0x66,0xf6, + 0x43,0x0,0x30,0xf9,0x35,0xe9,0xd,0x81,0xba,0xc6,0x8e,0x9,0x68,0xff,0xc4,0xee, + 0x5d,0x9a,0xa0,0x58,0xda,0xe4,0xb5,0x9,0x9e,0x11,0x96,0x70,0xe0,0x1,0x1d,0xf8, + 0x8e,0x72,0xbd,0xa2,0x6a,0xbc,0xe3,0x44,0x99,0x27,0xde,0xd9,0xa4,0xeb,0x25,0x6f, + 0x74,0xa9,0x12,0x2,0x1f,0x5c,0xf4,0x11,0xfa,0xf4,0x1f,0x5e,0xa0,0x7f,0xfb,0xde, + 0x3f,0x7b,0x75,0xb4,0x2d,0x81,0x1d,0x2d,0xc1,0x5f,0xd,0xe4,0xdf,0xbb,0x3f,0xb5, + 0x2d,0xb,0xd9,0x13,0x2d,0xdb,0x29,0x3e,0x61,0x1c,0x25,0xb6,0xed,0xa0,0xf8,0xf8, + 0xb1,0xa9,0xa5,0xd9,0xde,0x2d,0x6c,0xc1,0xc2,0x9b,0xcd,0xb6,0x6c,0x56,0x81,0x2d, + 0x8,0x9c,0x0,0xe8,0x5b,0x54,0x84,0x0,0xc8,0x64,0xf6,0xdb,0x16,0x40,0x98,0xe6, + 0x97,0xe4,0xd7,0xe7,0x84,0x68,0x7e,0x90,0xb4,0xfe,0xa4,0xc9,0xfe,0x32,0x2b,0x98, + 0xe0,0x46,0x20,0xb0,0xf6,0x67,0xe1,0x62,0x2e,0x12,0x28,0xdb,0x16,0x0,0x40,0xdd, + 0xa4,0x66,0xba,0x67,0xed,0x5a,0x9a,0xff,0xf9,0xcf,0xd3,0xb9,0xb3,0x67,0x7b,0x2, + 0x0,0xda,0x1e,0x9a,0x1f,0x4b,0xe,0xec,0x50,0xf7,0x2,0xe2,0x6b,0x2d,0x9c,0x41, + 0xd3,0x27,0xb6,0x6e,0xa3,0x78,0xf3,0x78,0x4d,0x70,0xef,0xfa,0xb1,0x94,0x45,0x91, + 0xf1,0x3e,0xbc,0xfd,0x5a,0x30,0x98,0xf3,0xd3,0x60,0x9,0x2,0x7f,0x9d,0x77,0x4b, + 0x41,0x50,0x45,0x42,0xc0,0x9,0x80,0x0,0x8a,0x2b,0x0,0xba,0x73,0xf8,0x81,0xf4, + 0x5a,0xe3,0xef,0xdc,0x65,0x4a,0xc,0xbe,0xfc,0x3e,0xf1,0xf1,0xdd,0x26,0x26,0x6f, + 0x17,0xe0,0x88,0xaa,0x8c,0x2,0xc1,0xd2,0xf0,0x2c,0x8,0x7c,0xa1,0x10,0x62,0x51, + 0xa0,0x1c,0xbe,0x4e,0x92,0xbd,0xfd,0x8a,0x24,0xd8,0xf2,0xbd,0x63,0x47,0xe8,0xcd, + 0xfe,0x8d,0xda,0x12,0xf0,0x85,0x0,0xea,0x60,0x88,0xaf,0xef,0x23,0x44,0xdb,0x83, + 0xb4,0xfe,0xaf,0x9a,0x81,0xf0,0xb1,0x1d,0x5b,0xbd,0x6b,0x8e,0x6d,0xa6,0xd8,0xce, + 0x16,0x4a,0x8e,0x99,0x90,0x5a,0xaa,0x7d,0xd8,0x6e,0xdd,0x7c,0x76,0xa1,0x60,0x84, + 0x4f,0xc6,0xde,0x84,0xc,0x42,0xc0,0x9,0x80,0xbe,0x43,0xa9,0xb,0x80,0xbc,0xc2, + 0xa4,0xc2,0x9c,0x7e,0x9a,0xfc,0xd0,0xfc,0x92,0xf4,0xca,0x44,0x7,0xf1,0x75,0x9b, + 0x5c,0x69,0x7c,0xad,0xf5,0x2d,0xf2,0x83,0xd8,0x69,0xa4,0x64,0x6c,0xf3,0x34,0x29, + 0xef,0x67,0x61,0xe1,0x6d,0xb4,0xc8,0x9f,0x43,0x13,0x2,0xd7,0xf2,0x33,0xc1,0x30, + 0x31,0xcc,0x35,0x6f,0x9b,0x35,0x8b,0x4e,0x39,0xde,0xea,0x6d,0x43,0xdb,0x1f,0x4, + 0xdc,0x7f,0xd0,0x23,0x3f,0x12,0x47,0x48,0x6b,0xc6,0x68,0x78,0x6d,0xd2,0x83,0x9c, + 0x5a,0xa8,0x99,0x54,0x53,0x3b,0xbd,0x67,0x3,0x62,0x33,0xf1,0x3,0xfb,0x60,0x85, + 0xc8,0x25,0x6,0xa6,0xe0,0x58,0x71,0x9e,0xff,0xfc,0x54,0xf9,0x9a,0xe8,0xea,0x7a, + 0xbe,0x55,0x1,0xf0,0x9c,0xf4,0x56,0xaf,0x82,0x6f,0x15,0xa0,0xfe,0xc6,0x59,0xc9, + 0xdd,0x9a,0x58,0x22,0xc4,0xd9,0xc1,0x21,0xc,0x59,0xbb,0x1,0xb3,0xd,0xe5,0xf5, + 0x3d,0xfd,0xac,0xf9,0x5,0x51,0x7c,0x93,0x9c,0xdb,0xfa,0x86,0xa4,0x52,0xeb,0x9f, + 0x78,0xe6,0xb9,0x40,0x79,0x2c,0x4,0x34,0x41,0xd5,0x47,0x92,0xbe,0xbb,0xe6,0x81, + 0xf6,0x7,0x50,0x22,0xd4,0xb7,0x20,0xcf,0xb,0x24,0x82,0x30,0xcb,0x8e,0xcd,0x5b, + 0x69,0xda,0x9e,0xfd,0xf4,0xe7,0xb7,0xdc,0x4c,0x3f,0xfc,0xea,0xff,0xf2,0xda,0xe8, + 0x35,0xa9,0x66,0x8a,0xad,0xe9,0x35,0x39,0xc9,0x23,0x29,0x6b,0x71,0xad,0xd5,0xb1, + 0xdc,0xb5,0x2d,0x25,0x14,0xd6,0xbe,0x4e,0x4,0xa7,0x1d,0xb,0xb9,0x7d,0x7,0x28, + 0xa6,0xbe,0x27,0x95,0x70,0x89,0xd,0x1b,0x92,0x5a,0xaa,0xed,0xa4,0xd6,0x71,0xac, + 0x3e,0x1f,0x82,0xa,0xbe,0x15,0x58,0x7,0x2c,0x10,0x5a,0xb6,0xfb,0x96,0x81,0x84, + 0xdd,0x8b,0xe0,0x5b,0x3,0xa6,0xe7,0xc2,0x8f,0x6d,0xe8,0x2e,0x0,0xc9,0xa1,0x6a, + 0x91,0xd5,0x7c,0x60,0x1,0x90,0x35,0xc8,0x47,0x9a,0xfe,0x44,0xa1,0xe,0x39,0x26, + 0x61,0x87,0xf1,0xc0,0x83,0xec,0x20,0xba,0xad,0xf9,0x79,0x1b,0x96,0xf0,0xd8,0xe3, + 0x78,0x90,0x36,0x40,0xfc,0x64,0xca,0xfc,0x4b,0x23,0xbc,0xf4,0xf,0x64,0x68,0xa, + 0x78,0x55,0x8d,0x5,0x5,0xe,0x79,0x4d,0x81,0x2f,0x7d,0xed,0x1b,0x7a,0x9d,0x1d, + 0x75,0x20,0x1e,0x93,0x1b,0xa4,0xf4,0x89,0xce,0x66,0x3c,0x13,0x16,0xe5,0x81,0xc8, + 0xe2,0x39,0x64,0xf2,0x1,0x7c,0xf8,0xe0,0x1,0xfa,0xc5,0x10,0xcb,0x9b,0x2f,0x7b, + 0x20,0xf8,0xde,0xd8,0xe3,0x6f,0x9c,0x80,0xb2,0xb9,0x60,0xb,0x2,0x7d,0x58,0x48, + 0x17,0xa3,0x86,0x12,0x4,0xf1,0xf5,0xeb,0xf4,0xea,0xd2,0xda,0xf7,0xa5,0x9d,0x57, + 0x8e,0x70,0x4d,0x80,0x0,0x8a,0x13,0x8,0x94,0x73,0x22,0xf,0xf3,0xe2,0xb2,0xb3, + 0x2f,0xb8,0x2f,0x45,0xfe,0x50,0x8d,0x6f,0xce,0x65,0xe2,0x83,0xf4,0x64,0x88,0xff, + 0xdf,0x2b,0x57,0xd1,0x55,0x8b,0x3e,0xe2,0xf5,0xe9,0x4b,0x42,0xc7,0x82,0xe,0x46, + 0x80,0x2d,0x8e,0x80,0x33,0x30,0x44,0x8,0xb0,0x25,0xe1,0x57,0x4f,0xb4,0x93,0x6f, + 0x69,0x1a,0x48,0x74,0xc7,0x57,0xb5,0x10,0x60,0x8d,0xeb,0x9b,0xf0,0xdc,0x5e,0x87, + 0xd9,0x6e,0xcc,0x78,0x68,0x78,0xff,0x1,0x59,0x56,0x45,0xfd,0xd6,0xad,0x74,0xa2, + 0xb9,0x59,0x2f,0x25,0xb0,0xed,0xd7,0x47,0x8e,0x52,0xbd,0xfa,0xc8,0x87,0x1b,0x13, + 0xfb,0xfd,0xe7,0x63,0x4,0x8a,0x16,0x4,0x4a,0x8,0x40,0xd8,0x24,0x47,0x7b,0xf5, + 0x65,0x2b,0x44,0xa,0x82,0x8c,0x41,0x46,0x1c,0x8b,0x80,0x73,0x26,0x91,0x83,0x43, + 0x0,0x79,0x45,0x2,0xda,0xf1,0xfc,0x5a,0xfb,0xb,0xa2,0x0,0xb6,0x53,0xf,0xdf, + 0x41,0xe8,0x30,0x8d,0xcf,0xe4,0x5f,0x66,0x2c,0x83,0xd,0x6f,0xbc,0x4e,0x5d,0x8a, + 0x64,0x35,0x78,0xe1,0x47,0xe,0xa3,0xc7,0x1e,0xfd,0x39,0x6d,0x54,0xcb,0xa9,0xca, + 0x44,0xdf,0xa0,0x96,0x30,0xd5,0x21,0x14,0xb0,0xfd,0x3,0x17,0x5d,0xe0,0xf7,0xfd, + 0xb3,0x20,0xf0,0xaf,0xc9,0x5d,0x83,0xc9,0xae,0x34,0xe7,0x23,0xb,0x1,0x59,0x1f, + 0x16,0x4,0xb8,0xce,0x1f,0xf6,0xed,0xa1,0x79,0xc3,0x47,0xa6,0xda,0xf1,0x0,0x88, + 0xf,0x2,0xda,0x5a,0x5e,0x10,0x5e,0xdf,0xe,0xdf,0x96,0xfa,0xd4,0xa9,0x6d,0xb6, + 0x4,0xd,0xdb,0x26,0xcf,0xab,0x33,0xe5,0x74,0x34,0xa7,0xcc,0x7f,0xbf,0xe9,0x80, + 0x25,0x5b,0x1b,0x42,0x10,0x84,0x59,0x3,0x36,0x58,0x60,0x38,0x38,0xd8,0x8,0x35, + 0x1f,0xba,0x8b,0xf6,0xb3,0x23,0xfc,0xc2,0x3c,0xfd,0xec,0x79,0xf,0x90,0xde,0x68, + 0xfc,0xfa,0xb,0xbc,0x6c,0x3d,0xd0,0xf2,0x20,0x38,0xb0,0xbe,0x7f,0x23,0xcd,0x38, + 0xde,0x9a,0xb6,0xb4,0xc1,0x15,0xbb,0x4d,0x7,0xef,0x78,0xed,0x7e,0x1b,0x69,0xd6, + 0x80,0xbe,0x76,0xd0,0x9,0x29,0x5,0x15,0x37,0x3b,0x10,0x1f,0x80,0xfa,0xfc,0xcd, + 0xcd,0x37,0xa5,0xf6,0x49,0xcd,0xaa,0xce,0xb1,0xc9,0x1e,0xa8,0x5b,0x81,0x66,0x5e, + 0x4c,0x14,0x8a,0xa2,0x7c,0x8b,0x80,0x1d,0x98,0x56,0x20,0x10,0xb,0x2,0x20,0xb4, + 0x59,0x20,0x89,0xbf,0xee,0xd,0xbd,0x58,0x7e,0xc5,0xbd,0x85,0x55,0xb2,0x4,0xe0, + 0x9a,0x0,0x1,0x14,0x6f,0x2c,0x40,0x77,0x3,0x7c,0x24,0x52,0x84,0x33,0xb5,0xb2, + 0xef,0xd8,0x90,0x7f,0x79,0x67,0xa7,0xd6,0xf4,0xd8,0xbb,0x7e,0xd2,0x78,0xda,0xd1, + 0x94,0xa0,0x35,0x87,0xe,0xd1,0x89,0xb6,0x83,0xf4,0xb3,0xd6,0x4e,0x6a,0x3b,0xe0, + 0xbd,0xec,0xfd,0x5a,0x63,0x34,0xa0,0xa9,0x96,0xea,0x6b,0xfb,0xd1,0x9c,0xc1,0x83, + 0x69,0xec,0x31,0x8f,0xc0,0x2c,0x1c,0xee,0x51,0x65,0x0,0x53,0xf7,0x3c,0xa3,0x83, + 0x7a,0x34,0xb8,0x1b,0xcd,0x34,0x45,0x78,0xa9,0x3,0x87,0x10,0x41,0x68,0x62,0x10, + 0x7c,0x2b,0xc0,0x8,0x28,0xb6,0x6,0xae,0x44,0x74,0xe0,0xa4,0x66,0xfa,0x1b,0x53, + 0x65,0x4d,0x7e,0x41,0x7a,0x69,0xa2,0xeb,0xfd,0x91,0xa6,0x53,0x11,0xe5,0x25,0xbd, + 0x5f,0x95,0x9b,0x12,0xbe,0x35,0x0,0x67,0xa1,0x1,0x1c,0x88,0x20,0xb5,0x76,0x24, + 0x2a,0x41,0x10,0x66,0xd,0x70,0x10,0x12,0xac,0x17,0x58,0x17,0xff,0xfd,0x97,0x8f, + 0x46,0x5b,0x61,0x87,0xb2,0x47,0xda,0x2b,0x9c,0x4d,0xfb,0xdb,0xe4,0x97,0x6d,0x70, + 0xf6,0xf6,0x87,0x6a,0x7e,0x5,0x68,0x7d,0x68,0xfc,0x5f,0x2b,0xd2,0x77,0x2a,0x55, + 0xb7,0xa5,0x7f,0x3b,0xbd,0xd4,0xb2,0x87,0x8e,0x1e,0x4b,0xa9,0xbd,0x69,0xd3,0x54, + 0x33,0x60,0x83,0xb7,0x4,0x64,0x92,0x95,0x41,0x83,0x9b,0x68,0xdc,0xf8,0x99,0x34, + 0xf4,0x95,0x5d,0x54,0x6b,0x98,0xf2,0xc0,0xfb,0x3f,0x40,0xdf,0xf9,0x8f,0xff,0xa0, + 0x2f,0x5c,0x34,0x3f,0xe8,0x48,0x13,0xc2,0x27,0x93,0x35,0x90,0x29,0xe,0x81,0x9b, + 0x23,0x1f,0xbe,0xeb,0xe,0xaa,0x5d,0xf3,0x46,0x60,0x5f,0x32,0xf4,0x89,0xa5,0xf0, + 0xf8,0xa7,0x7a,0x4e,0xb0,0xf7,0xfd,0x70,0x51,0xda,0xb6,0x58,0x32,0xdc,0x3f,0xa0, + 0xf7,0x41,0x0,0x58,0x90,0x16,0x41,0x0,0x46,0xfb,0xd7,0x57,0x88,0x10,0x70,0x16, + 0x40,0x0,0xbd,0x3b,0x1a,0x50,0x6a,0x7e,0x26,0x96,0x24,0x57,0x58,0x16,0x55,0xd6, + 0xfa,0x6f,0x1a,0x8d,0xff,0xe2,0xde,0x9d,0x34,0xb4,0x5f,0x27,0x8d,0x1d,0xe7,0xf1, + 0x75,0xee,0x5c,0xef,0xb8,0x90,0x51,0xba,0x1a,0x77,0xdf,0x8d,0xbf,0xc7,0x54,0x53, + 0xfc,0x45,0xaa,0xbb,0x6a,0x1a,0x1d,0xd9,0x3b,0x99,0xfa,0xd3,0x8,0xba,0xf1,0xd7, + 0xff,0x4d,0xdf,0xb9,0xed,0x36,0xba,0xfb,0x9e,0x7b,0xe8,0xaf,0xaf,0xb9,0xc6,0xab, + 0x9b,0xe9,0x46,0xe3,0x27,0x2e,0x1d,0x84,0x7e,0x8f,0x1,0xa5,0x3b,0x4,0x1,0xf4, + 0x38,0x5c,0x3e,0x69,0x22,0x35,0xcc,0x3b,0x3b,0x40,0xfe,0x4c,0xc4,0x2f,0x84,0xf0, + 0xd9,0xca,0x62,0x61,0x0,0x39,0x87,0x6b,0x43,0x10,0x48,0xff,0x80,0xb6,0xc,0x88, + 0x2,0xdd,0x89,0x99,0xa0,0x7d,0x17,0x44,0x69,0xe,0x49,0x87,0x20,0x32,0xa5,0xf4, + 0xaa,0xda,0xac,0xc0,0xdd,0xd,0xf1,0x65,0xef,0xbc,0xc,0xed,0xd,0x78,0xfa,0xd9, + 0x41,0x76,0xfe,0xbb,0x3d,0xf2,0x2b,0xb3,0x7d,0xd3,0x80,0x36,0x7a,0xea,0xad,0xdd, + 0x74,0xf2,0xc9,0x44,0xa7,0x9f,0xee,0xf5,0x70,0x49,0xd2,0xcf,0x99,0x43,0xb4,0x66, + 0x4d,0x6a,0xc9,0x51,0xb7,0xf,0x3d,0xe4,0x7d,0x7,0xee,0xbe,0x7b,0x3,0xf5,0x1f, + 0xd0,0x42,0xd3,0xe7,0x7c,0x94,0x36,0xd0,0x5,0x7a,0x7c,0x3f,0xc8,0x8f,0xb1,0xfe, + 0xfd,0x61,0xa1,0x8c,0x1d,0xa3,0x8f,0xf3,0xc3,0x92,0x45,0x93,0x20,0x10,0x36,0xac, + 0xea,0x2d,0x9b,0x2,0xde,0xa1,0x31,0x6d,0x1,0x24,0x37,0x6f,0xa1,0x1b,0x94,0xb0, + 0xfa,0xf1,0xbc,0x73,0x3c,0xb3,0xdc,0xbc,0x1b,0x51,0x12,0x3e,0x1b,0xf8,0x3a,0x52, + 0x10,0xb0,0x7f,0x40,0x12,0x59,0x36,0x9,0xb4,0x20,0xe0,0x75,0x65,0x9,0x70,0xaf, + 0x81,0x3c,0xc6,0x21,0x88,0x4c,0xa4,0xf,0x3b,0xa6,0x52,0x5,0x41,0x40,0x0,0xe4, + 0x93,0xc3,0xdf,0x1f,0xbb,0x2f,0x2,0x7d,0xd2,0x3c,0xfd,0xea,0xe1,0xdd,0x63,0x3c, + 0xfb,0x5b,0x1a,0x8e,0xd0,0xca,0x37,0xf,0xf8,0xe4,0xff,0xbc,0x37,0x10,0x4f,0x93, + 0x5d,0x82,0xbf,0x67,0xda,0xee,0x9,0x8c,0x56,0xba,0xf7,0x3b,0xff,0x4e,0xad,0xad, + 0x67,0xd0,0xf,0x7e,0xf0,0xc,0x7d,0xe7,0xaf,0x6e,0xd4,0xfb,0x12,0x23,0x47,0xf8, + 0x3,0x94,0x2,0x82,0xc0,0x4,0x29,0xe9,0xd9,0x61,0x64,0x53,0xc0,0x2,0xba,0x21, + 0xaf,0x50,0xcb,0xda,0x89,0x13,0xe8,0x8f,0xeb,0xd6,0xf9,0xdb,0x1f,0xef,0x23,0xb3, + 0x59,0xa,0x2,0xf6,0xf,0x48,0x41,0x20,0x9b,0x5,0xd2,0xa,0xd0,0xf1,0x9,0xe4, + 0xb4,0x7f,0x36,0xd8,0xe4,0x9f,0x3f,0x7f,0x7e,0xe8,0x71,0x76,0xd2,0xcf,0x4a,0x13, + 0x4,0xdd,0xc6,0xd1,0xda,0x29,0xb9,0x0,0x68,0x7f,0xfd,0x11,0xed,0x7e,0x68,0x7f, + 0x9f,0xfc,0xe6,0x21,0xc1,0xf4,0xc7,0xda,0xaa,0x11,0xb5,0xf4,0xe4,0xdb,0x7,0x68, + 0xd1,0x22,0xcf,0xdc,0xff,0xb7,0x7f,0xf3,0x8,0x6d,0x93,0x3c,0x1b,0x5e,0x7d,0xd5, + 0x5b,0xf2,0x39,0x3f,0x78,0xb0,0x8b,0xfa,0xf7,0x7f,0x95,0xa6,0xdf,0x72,0xa5,0x9f, + 0xfe,0xbb,0x6d,0xe2,0x44,0xaf,0x6b,0x51,0x8c,0xa0,0xd3,0x82,0x80,0x7f,0x3c,0xd3, + 0x63,0xa0,0x97,0x88,0x13,0x50,0x1f,0x19,0x64,0xc4,0x43,0x86,0x7f,0xbd,0xca,0x4b, + 0x21,0x7a,0xc3,0x1f,0x7e,0xdf,0x6b,0x5a,0x3f,0x1b,0x32,0xd5,0xc1,0xef,0x91,0x30, + 0x5a,0xde,0x5e,0x32,0x58,0x50,0x54,0x42,0xfb,0x3f,0xa,0x30,0x99,0x41,0x7a,0xfe, + 0x64,0x82,0xbd,0x3f,0x17,0xab,0xa1,0x9c,0x10,0x2a,0x0,0xa4,0xf9,0x1f,0x96,0xc7, + 0xcf,0x4e,0xd0,0xa1,0xe3,0xfa,0xe5,0x8,0x34,0x78,0xfb,0x3b,0x3a,0x68,0xfd,0xe8, + 0x11,0xf4,0xd2,0x80,0x7a,0x7a,0xae,0x65,0x87,0xd6,0xfc,0xd0,0xfa,0x30,0xe7,0x7b, + 0x2,0x58,0xd,0x52,0x8,0xac,0x5f,0xaf,0xea,0xa6,0x4,0xcc,0xa3,0x8f,0xfe,0x3b, + 0x75,0xd5,0xb5,0x7,0x85,0x0,0xea,0x88,0x79,0xe0,0xb8,0x19,0x60,0xea,0x14,0x18, + 0x99,0x68,0x85,0x27,0x33,0x1e,0x33,0x1,0x48,0xa5,0x6,0x8,0x81,0x30,0x41,0x20, + 0x85,0x80,0xed,0x13,0x60,0x41,0xe0,0x2c,0x80,0x14,0x24,0xf9,0xf3,0x1,0xb,0x82, + 0x4a,0xb3,0x0,0xba,0x75,0x2,0x86,0x25,0xf3,0xf4,0x33,0xf9,0x40,0xfb,0x5b,0x11, + 0x7e,0xd2,0xdd,0x59,0xab,0x48,0xf8,0x42,0xd7,0x51,0x1a,0x33,0x36,0x41,0xa7,0x9d, + 0x96,0x5f,0xc5,0x40,0x76,0x90,0xfe,0xb5,0xd7,0x52,0x4e,0x42,0x7c,0x97,0xfb,0xd0, + 0x1c,0x78,0xe2,0x89,0xc3,0xb4,0xb2,0x7e,0x2d,0x5d,0xd2,0x71,0x86,0x7f,0x6e,0xab, + 0x11,0x2,0x8d,0x32,0x2c,0x17,0xa3,0xfb,0x2c,0x87,0x20,0x2c,0x81,0x7a,0xd1,0x73, + 0x1,0xed,0x7f,0x95,0xfa,0x20,0xd0,0x88,0x4c,0x7c,0x42,0xa9,0x1,0x5a,0xfc,0x3, + 0xff,0x92,0xea,0x31,0xe0,0x88,0x43,0x2c,0xa5,0x10,0x0,0xe4,0xba,0x43,0xa,0x61, + 0xe4,0x67,0x53,0x9f,0xd3,0x88,0xf3,0x54,0x62,0xf6,0xb1,0x98,0x68,0xa4,0xd4,0x7b, + 0x1e,0xf2,0x41,0x9a,0x5,0x60,0x3b,0xff,0xba,0x4b,0xc7,0xcd,0x41,0x3d,0x61,0x78, + 0x7d,0x40,0x3f,0xda,0xb5,0xef,0xb0,0x4f,0xd6,0xee,0x4c,0x7e,0x10,0x1b,0x84,0x7, + 0xa4,0xa0,0x65,0xcd,0xcf,0x8e,0x40,0x7b,0xdf,0x23,0x3f,0xfa,0x5,0x25,0x6a,0x3a, + 0x3,0x65,0x35,0x6e,0xd9,0x92,0xba,0x7,0xd3,0xc,0xb0,0x73,0x13,0xc8,0x5e,0x1, + 0x0,0xd9,0x82,0x60,0xdd,0x94,0xa2,0x5,0x20,0x21,0x4d,0x79,0x5b,0xbb,0xdb,0x8e, + 0x41,0xde,0xef,0xcc,0x7f,0x4f,0xfb,0xe7,0x43,0x7e,0xb9,0x8f,0x81,0x63,0x2e,0xbe, + 0xf8,0x62,0x33,0x6d,0x58,0xf9,0x5b,0x3,0xbe,0x0,0xe8,0x6e,0xe4,0x5f,0x18,0xd0, + 0x66,0xd6,0x16,0x80,0x15,0x1a,0xb,0xf3,0x1f,0x11,0x75,0xbb,0xfb,0x77,0x51,0x73, + 0x73,0x52,0x7b,0xf3,0xc3,0xc8,0xcf,0xc4,0x6,0xe9,0xf1,0x81,0xa0,0x80,0xb2,0x66, + 0xad,0x8f,0x25,0xbe,0xb3,0x25,0x80,0x32,0x78,0x1f,0xb,0x3,0x8,0x96,0x6b,0xaf, + 0xe9,0xa4,0x55,0xf1,0xad,0x7e,0x33,0x0,0xb5,0x60,0x2b,0x20,0xd0,0x1b,0x60,0x42, + 0x84,0xb5,0x5,0x0,0x5f,0x81,0xf1,0x9,0xd4,0x4f,0x9e,0xe8,0xd,0x3a,0x52,0xda, + 0xff,0x57,0x4a,0xfb,0xdf,0xfd,0xd4,0xca,0x9c,0x1e,0x5e,0x5f,0xc2,0x26,0x74,0x98, + 0x99,0xef,0x4c,0xff,0xec,0x58,0xb5,0x6a,0x95,0xfe,0x0,0x98,0x36,0x1c,0xc4,0xc7, + 0x7b,0x80,0x75,0x7c,0xbc,0x69,0xc1,0xe3,0xfa,0x18,0x68,0x7d,0x7b,0x92,0x91,0x4a, + 0xf0,0x7,0xe4,0x94,0xf,0x20,0x93,0x15,0x0,0x93,0xd9,0x6f,0xfb,0xb,0xf2,0x3, + 0x88,0xd6,0x5b,0x77,0xe4,0x90,0xaf,0xfd,0x6d,0x30,0xe1,0x99,0xc8,0x78,0xb6,0x58, + 0xe7,0x21,0xf8,0x58,0xc7,0x12,0xdf,0xb1,0xce,0x2,0x81,0xc9,0x2f,0x84,0x34,0xad, + 0x5e,0xad,0x8e,0x6b,0xa,0x4f,0xeb,0xcd,0xbd,0x1,0x32,0x4a,0x90,0x7b,0x2,0x6c, + 0xb,0x0,0xda,0x1f,0x51,0x85,0xe8,0x56,0x2c,0x87,0x9f,0x36,0x4c,0x8,0xc8,0x4f, + 0xa6,0xe3,0xaa,0x11,0x61,0xda,0x1f,0x84,0xc7,0x87,0xc9,0x2f,0x35,0x3a,0x5b,0x1, + 0xbc,0xb4,0xc9,0xcf,0xfe,0x80,0x72,0xb7,0x2,0xd2,0x4,0x80,0x3d,0x81,0x46,0x98, + 0xf6,0x67,0x27,0xa0,0xef,0xf9,0x67,0x49,0x68,0x96,0x1c,0xdf,0x3f,0x7a,0x42,0x6d, + 0x80,0xa8,0x0,0x9b,0xf8,0x78,0x9e,0x72,0x9d,0xc1,0x96,0x2,0x9f,0x87,0xef,0x58, + 0xe7,0x63,0xa5,0xc0,0x0,0x10,0x24,0x84,0xfd,0x7,0xf,0x6c,0xc8,0x7a,0xa3,0xc, + 0x7f,0xdc,0x2,0x8f,0x21,0x48,0x26,0x94,0xe9,0xbf,0x45,0x3b,0x32,0x91,0x41,0x18, + 0x40,0x74,0x61,0xb9,0xfc,0xac,0xdd,0x91,0xdb,0x91,0x3f,0x1c,0xd0,0xea,0xac,0xe5, + 0xbb,0xba,0xba,0xf4,0x36,0x26,0x39,0x7f,0x67,0xb,0x80,0x27,0xf,0x5d,0xbc,0xf8, + 0xce,0xb4,0x72,0xca,0xdd,0xa,0xe8,0x91,0xf,0x80,0x9d,0x80,0x68,0xff,0xfb,0x16, + 0x80,0x19,0xd9,0xa7,0x57,0xcd,0x71,0x47,0x8f,0x1c,0xd1,0xcb,0x7c,0xba,0xfb,0x64, + 0x0,0x10,0x7f,0xe7,0x75,0x76,0x6,0x4a,0xa1,0x2,0xeb,0x2,0xfb,0x7f,0xfe,0xb3, + 0x3f,0xe6,0x54,0x3e,0x2c,0x0,0x8e,0x7,0xd0,0x3d,0x1,0xea,0x83,0x26,0x0,0xe7, + 0x2a,0x80,0xf9,0xf,0xb,0xe0,0xaf,0x6e,0xbb,0x2d,0xf7,0x4a,0xf7,0x31,0x40,0xf2, + 0x4c,0x1f,0x7,0xf,0x52,0xfb,0xa3,0x5d,0xf,0xcd,0xe,0xa2,0x83,0xe0,0x35,0x22, + 0x1,0xc,0x4f,0x21,0xe,0x48,0xd,0xff,0xc4,0x13,0x4f,0xa8,0xb6,0xff,0x82,0x80, + 0x10,0xe0,0x32,0xcb,0xd9,0xa,0xc8,0xda,0x4,0x90,0x31,0x0,0x2c,0x8,0xe4,0xa4, + 0x1d,0x3a,0x61,0x87,0x19,0x4c,0xc3,0xc0,0xb0,0x5d,0x44,0xfd,0x25,0xcf,0xbf,0x80, + 0x66,0x9f,0x9a,0xc8,0x68,0xfe,0xeb,0x8b,0x67,0xb8,0xba,0xbd,0x1d,0x2,0x24,0xcc, + 0x62,0x80,0xf6,0xf7,0xc2,0x84,0x89,0xae,0xfb,0xb8,0x65,0x6a,0x18,0x70,0xe2,0xd2, + 0xae,0x31,0x5e,0x34,0x60,0x60,0xe4,0xa2,0x1,0x2c,0x0,0x1d,0x30,0xa3,0x9a,0x34, + 0x37,0x37,0xd,0xa4,0xef,0x2a,0xb,0xe0,0xaf,0x1f,0x7c,0x20,0xbc,0x72,0xe,0x15, + 0x1,0x26,0x37,0x34,0xb8,0x8e,0x10,0x55,0x2f,0x15,0x96,0x2c,0x14,0xd8,0x1a,0x0, + 0xf1,0x2f,0xb9,0xe4,0x12,0xbd,0xce,0x96,0x80,0x8d,0x72,0xb6,0x2,0xb2,0x36,0x1, + 0xc2,0xa6,0xf5,0x92,0x13,0x6f,0xb0,0xf,0x40,0xa,0x1,0xc,0xd3,0xc5,0x88,0x3d, + 0xf5,0x58,0x69,0xf6,0x69,0x83,0xfc,0xb2,0x6c,0xd3,0x3d,0x1b,0xec,0x66,0x0,0x87, + 0x7,0xe3,0x5c,0x5b,0xfb,0x33,0xfe,0xf3,0x3f,0x43,0xe6,0x19,0x20,0x4a,0xcb,0x58, + 0x9c,0x96,0xb4,0x44,0x0,0xf7,0x86,0x29,0xc4,0xf0,0x73,0x7e,0xe6,0x33,0x7f,0xd5, + 0x7d,0x45,0x1d,0xca,0x12,0xf6,0xcc,0xc1,0xec,0xfc,0xc3,0x92,0x5,0x1,0x88,0xf, + 0x80,0xfc,0x58,0x2f,0x67,0x2d,0x9f,0xd,0x3e,0x1d,0xf1,0xd2,0xe3,0xc6,0x1b,0xd0, + 0x7d,0x26,0x25,0x5a,0x22,0xa9,0xc8,0x63,0x25,0xdc,0x60,0x1f,0xc0,0xdb,0xef,0x78, + 0x12,0x94,0xd3,0x56,0x29,0xe9,0xf9,0x98,0x32,0xaf,0x3e,0x77,0xf5,0xd5,0xea,0xb4, + 0x24,0xfd,0xf1,0x9d,0xd4,0xf8,0x75,0xd3,0xac,0xf2,0x8e,0xeb,0x46,0x60,0x86,0x9, + 0x8b,0xb0,0x6d,0xdf,0xfe,0xb6,0xa9,0xa2,0xba,0xfc,0xc2,0xf,0x9e,0x1c,0x70,0xdc, + 0x25,0xcd,0x85,0x6a,0x4c,0x82,0x51,0x76,0x6,0x26,0x76,0x71,0x2,0x53,0xaf,0xa0, + 0xf6,0x3f,0xbe,0xed,0x47,0x3,0xc2,0x7,0xd0,0xf9,0xf8,0x52,0x5a,0xd7,0xaf,0x81, + 0x1e,0x78,0xe0,0xfb,0x94,0xe6,0xc0,0x70,0xa8,0x18,0x80,0xe8,0xec,0xf8,0xe3,0x26, + 0x0,0xfb,0x4,0xa0,0xe9,0x59,0xeb,0x3,0xbc,0x5e,0x89,0x32,0x20,0x45,0x27,0x2b, + 0x9c,0x96,0xbf,0x77,0x8d,0x1d,0xad,0x3f,0x7c,0x4c,0x72,0xb7,0x18,0x51,0x37,0xe5, + 0x24,0xaf,0xed,0xdf,0x3c,0xc1,0xcc,0xf6,0x13,0xa7,0xf,0x2e,0x5a,0x44,0xf7,0xfc, + 0xbf,0xff,0x47,0x9f,0x9d,0x73,0x1a,0xfd,0xc5,0x9f,0x7f,0xc8,0xe7,0x10,0x9e,0x31, + 0x77,0xfb,0xd5,0x84,0x2b,0xeb,0xbc,0xf0,0xad,0x6f,0xa5,0xd6,0x5f,0x7e,0x99,0x68, + 0xf0,0xe0,0x69,0x34,0x13,0x26,0x9d,0xfa,0x8e,0x4b,0xb2,0x30,0xe8,0x1a,0xef,0xe5, + 0xf7,0xf3,0xbb,0x3,0x2d,0xe9,0xd3,0x70,0xf2,0x14,0xdd,0xff,0x5f,0x3f,0x31,0x65, + 0xf9,0xdc,0x5f,0x53,0x4f,0x37,0xde,0x78,0x53,0x59,0xf4,0x4,0x38,0xe4,0xf,0xed, + 0x3,0x32,0xda,0x1e,0x60,0x13,0x5e,0x6a,0x7e,0x2c,0x79,0x3d,0x97,0xf2,0xca,0x15, + 0x29,0xb,0xc0,0x56,0xcb,0xc2,0x74,0x96,0x7d,0xe9,0xb1,0x51,0xc2,0x29,0x8,0xb3, + 0x89,0x93,0x76,0x22,0x92,0x6e,0x52,0x33,0xfd,0xe2,0xd1,0x47,0xe9,0xb3,0x5f,0xfc, + 0x22,0xdd,0xbf,0x66,0x35,0x3d,0xf8,0xd0,0x3b,0xfa,0x30,0x36,0xe1,0x41,0x7c,0x69, + 0x9,0xf4,0x14,0x4c,0xfe,0x5a,0x11,0xc7,0x78,0x4e,0xc3,0xe4,0x74,0xcf,0xbd,0x19, + 0x17,0x0,0x2b,0x80,0x2d,0x80,0x98,0x95,0x7c,0xb3,0x4d,0x59,0x0,0x9,0x54,0x2a, + 0x64,0xc2,0x92,0x6b,0x7e,0xd8,0xfd,0xa4,0xa7,0xe,0xe5,0x7,0xee,0xda,0x43,0x7b, + 0x1f,0x1f,0x7b,0x28,0x3b,0x34,0x3e,0x6b,0x7d,0x8,0x1,0x58,0x4,0x65,0xcc,0xf1, + 0xac,0x8,0x6d,0x91,0xb7,0xa,0x2b,0x0,0xc4,0x91,0x7d,0xe9,0xbe,0x5,0xa0,0x7, + 0xaa,0xc7,0xa8,0x9f,0xd2,0xa0,0x92,0x44,0x1f,0x7a,0xcf,0x5,0x74,0xff,0x3f,0xfd, + 0x93,0xb6,0x0,0x3e,0x75,0xdd,0x4d,0x34,0x6a,0xcc,0xbb,0x8,0xa1,0x1,0x6c,0xc2, + 0x47,0xa1,0xfd,0xbf,0xfc,0x65,0x8f,0xfc,0xf8,0x1d,0xa1,0xfd,0x87,0xe,0x6b,0xa0, + 0xc6,0x23,0xa3,0xbd,0x2a,0x99,0x63,0x9a,0x36,0x6d,0xf2,0xaa,0xa9,0xa4,0x3c,0xac, + 0x80,0xc0,0xb8,0x80,0x1a,0x4f,0x72,0xa0,0xde,0xa8,0x3f,0x2c,0x97,0x64,0xa7,0x17, + 0xbf,0x0,0x1f,0xc0,0xeb,0x9f,0xfe,0x94,0xd7,0x4,0x70,0xa8,0x18,0xc8,0x88,0x3e, + 0xe9,0xbd,0xe7,0x36,0x3f,0x48,0x2e,0xb5,0x7f,0x26,0xc8,0x84,0x1c,0x28,0x93,0x1d, + 0x89,0xe5,0xa,0x5f,0x0,0xc,0xba,0xfd,0x76,0x93,0x77,0x2a,0x99,0xa,0xa3,0x65, + 0x2b,0x60,0x67,0x6a,0xe2,0xf,0x58,0x0,0x9e,0x10,0x48,0xdd,0x34,0x48,0xa4,0x91, + 0xe8,0xd2,0xc7,0xdc,0x76,0xed,0xb5,0xfa,0xeb,0x6b,0xcf,0xbd,0x42,0xcb,0x5f,0x99, + 0xa1,0xdb,0xed,0x33,0x66,0x78,0x87,0x48,0xd3,0x3d,0x57,0xf0,0x39,0x58,0xe2,0x73, + 0xef,0xbd,0x41,0x5f,0xc0,0xa7,0xfe,0xf4,0x63,0x14,0xeb,0xaa,0x4d,0x8d,0x87,0xe7, + 0x25,0xb7,0xed,0xb6,0x59,0x79,0xf1,0xbb,0x3a,0xfd,0x7a,0xc3,0x8f,0x81,0xa2,0x3a, + 0x5a,0xb6,0xeb,0x69,0xc4,0x3f,0xf3,0xd8,0xaf,0xe8,0x41,0x45,0xfe,0x8f,0x39,0xed, + 0x5f,0xd1,0x90,0x9e,0x7e,0xf6,0xee,0xcb,0x76,0xbf,0xfc,0xce,0xda,0x3f,0x24,0x1b, + 0x4f,0xd9,0x23,0xbb,0x5,0xc0,0xb0,0x5b,0x7,0xa3,0x82,0xb1,0x1,0xac,0x49,0x4f, + 0x6c,0xda,0xea,0xe5,0x0,0xf8,0xd9,0xcf,0xbc,0xf6,0xb8,0x52,0xd1,0xa7,0x8e,0x58, + 0x44,0x7b,0xf,0xcd,0xa7,0x37,0xde,0xf0,0xc8,0xb,0xed,0xcd,0x44,0x6,0xba,0x13, + 0x8,0xf2,0x1c,0x80,0x35,0x3f,0x0,0xed,0x3f,0x76,0xec,0x30,0x9a,0x7b,0xec,0x24, + 0x9a,0xc5,0xf3,0x12,0xf8,0x77,0x16,0x57,0x42,0xc1,0x6b,0x6f,0x68,0x3f,0x0,0x9c, + 0x3e,0x3b,0x4d,0x92,0x4c,0x61,0x1,0x24,0x8c,0xf7,0x57,0x1f,0x37,0x7a,0x14,0xdd, + 0x77,0xd3,0x67,0x5d,0xdb,0xbf,0x2,0x1,0x4d,0x2d,0xad,0x0,0xc,0xea,0xe1,0xed, + 0x6c,0xf2,0x73,0x97,0x1f,0xb6,0xb1,0xf,0xc0,0x16,0xa,0xc,0x3b,0x4f,0x40,0xb9, + 0x22,0xaf,0xa9,0xc1,0x18,0xd2,0x11,0x8,0xb0,0x5,0x50,0x3f,0xb9,0x59,0x93,0xeb, + 0x4b,0x17,0x2f,0xd0,0xcd,0x80,0xf3,0xd5,0x83,0x7c,0xf5,0xd9,0x35,0x34,0x64,0xc0, + 0xc7,0xe8,0x37,0xbf,0xeb,0x4f,0x3f,0xfa,0x51,0x8a,0xc8,0x4c,0x6a,0x49,0xee,0xb0, + 0x25,0xf6,0xb3,0xb7,0xbf,0xbe,0xde,0xd3,0xfc,0xf8,0xbc,0xf8,0xa2,0x32,0xf3,0x9b, + 0xe2,0xf4,0xbf,0xaf,0xfd,0x4,0xcd,0xee,0xec,0xa7,0xf7,0xb3,0xf3,0x8f,0xcd,0xff, + 0xb8,0x99,0xb4,0x24,0x93,0xf9,0xcf,0x5a,0x20,0xa6,0x2c,0x5,0x68,0xff,0x7b,0x95, + 0xe0,0xfa,0xdc,0xf7,0xef,0x77,0xda,0xbf,0x42,0x61,0x77,0xff,0x41,0x8,0xe0,0xb3, + 0x62,0xc5,0x93,0xfe,0x7e,0x6e,0xef,0xc7,0xe3,0x31,0xfd,0xc1,0x3e,0x68,0xfe,0x4a, + 0xd4,0xfe,0x40,0x40,0x0,0xac,0x35,0x9a,0xd0,0x1f,0x4c,0xc3,0x9a,0x51,0xc6,0xd3, + 0x93,0xb0,0x0,0x2c,0xe9,0xd7,0xf6,0xce,0x66,0xdf,0xbc,0x46,0x33,0x0,0x56,0xc0, + 0x79,0xaa,0x8c,0x97,0x9f,0x39,0x48,0xf5,0x35,0x1f,0xa2,0x63,0xc7,0xc7,0xfa,0xd1, + 0x7c,0x68,0x66,0x41,0x9b,0x23,0x90,0x27,0xdb,0x92,0xcd,0x7d,0x90,0x5f,0xa2,0xb1, + 0x31,0x46,0x27,0x9d,0x74,0x36,0x35,0x1d,0x4a,0x65,0xc2,0xd,0x74,0x3,0x72,0xdb, + 0x5f,0x98,0xff,0xfa,0x5,0x10,0xe6,0xbf,0x76,0x73,0x98,0x7d,0xd0,0xfe,0x9f,0x57, + 0x75,0x2e,0x6f,0x79,0xee,0x90,0xd,0xf8,0xfd,0xc3,0x86,0xf2,0x82,0xdc,0x20,0xba, + 0x35,0xc5,0x85,0xbf,0xcf,0x46,0xa5,0x68,0x7f,0x20,0xd4,0x2,0xc8,0xe6,0xf0,0x4c, + 0x69,0xff,0xf4,0xa3,0xb4,0x25,0x60,0x34,0x2c,0x2,0x87,0x10,0x56,0x9c,0x34,0x42, + 0xa0,0x7f,0x7c,0xe,0xfd,0xf8,0x47,0x97,0x52,0x22,0x36,0x84,0xce,0x3a,0xcb,0xeb, + 0xd,0xe8,0xec,0x4c,0x5,0xf8,0x60,0x9d,0xdb,0xf5,0x72,0x29,0xc3,0x82,0xa1,0xf5, + 0x81,0xf5,0x6f,0xd6,0xd0,0xc9,0x27,0xcf,0xa3,0xdb,0xcf,0xf9,0x90,0x16,0x32,0x0, + 0x77,0x2e,0x40,0xfb,0x27,0x4d,0xf7,0x80,0x9e,0xb9,0x58,0x9a,0xff,0xa8,0x9b,0xfa, + 0x40,0xfb,0xe3,0x13,0x53,0x12,0x9e,0x85,0x1c,0xfa,0xff,0xff,0x7d,0xec,0x43,0x4e, + 0xfb,0x57,0x30,0x98,0xb0,0xf6,0x10,0x5f,0x80,0xb5,0xbc,0xfd,0xb1,0x51,0x49,0xe4, + 0x7,0x2,0x9,0x41,0xce,0xbd,0xe3,0x8e,0xd8,0xe1,0xaf,0x7f,0x5d,0xdf,0x59,0xe3, + 0xd6,0xad,0x3a,0x26,0xa0,0xdf,0xd6,0xad,0x81,0x74,0xdb,0x29,0xed,0x9f,0xf0,0xb6, + 0x27,0x44,0x17,0x1a,0xd6,0xf9,0xc1,0x74,0x7a,0x9a,0x76,0xa6,0x9,0xb9,0x9c,0xa5, + 0xd6,0xd7,0x25,0x67,0x50,0xeb,0xb0,0xe1,0xb4,0x64,0xd7,0x13,0xd4,0x54,0xbf,0x46, + 0xb,0x2,0x34,0xb,0x90,0x2c,0x4,0x23,0xfa,0xce,0x3e,0x3b,0x5c,0x8,0x80,0xf8, + 0xd8,0x7,0x6c,0xdb,0x3e,0x8a,0xa6,0x4e,0x99,0x45,0x5f,0x3e,0xeb,0xb2,0x50,0xf2, + 0x7,0xc0,0x59,0x81,0xb8,0x30,0x68,0x7f,0x25,0x0,0xb8,0xc9,0xd2,0xfe,0xf6,0x26, + 0xad,0xf1,0x1b,0x26,0x4f,0xd2,0xb1,0x0,0x2b,0x7f,0x30,0x94,0x3e,0x36,0xef,0x58, + 0x41,0xf,0xd4,0xa1,0xf4,0x1,0xf2,0x32,0x91,0x73,0xcd,0xc,0x54,0x69,0xc4,0x67, + 0xa4,0x65,0x4,0xc2,0x98,0x7a,0x38,0xd4,0xda,0x15,0xf9,0x39,0x9a,0x8e,0x4c,0x92, + 0x4d,0x4d,0xa6,0x4c,0x1d,0xa2,0x89,0x54,0x7,0x3f,0xb4,0x6d,0x7c,0xcc,0x58,0x6d, + 0x7e,0xa3,0x75,0xde,0x66,0xc2,0x8b,0x67,0x82,0x88,0x47,0x46,0x53,0xbf,0xa6,0x6b, + 0xe8,0xa5,0xa6,0x73,0x69,0xdb,0xfe,0x95,0x74,0xc3,0xd,0x1b,0xe9,0xc7,0x3f,0xf6, + 0xce,0x83,0x53,0x2f,0xad,0x58,0xe3,0xd5,0xdb,0xb2,0x65,0xb0,0xb2,0x16,0x4e,0xa1, + 0x21,0x8d,0x27,0x51,0xec,0xe9,0x67,0x69,0xe6,0xd9,0x97,0xeb,0xed,0x1,0xf2,0xc3, + 0xf1,0x28,0xfb,0x19,0xd9,0x61,0x40,0xc6,0xfc,0x17,0xed,0x7f,0xbd,0x1b,0x6d,0xff, + 0xc9,0x5e,0x20,0x10,0xf0,0x83,0xab,0x3e,0x48,0x4f,0xd2,0xfd,0xd9,0x9f,0x98,0x43, + 0x45,0xc0,0xb6,0x6,0x72,0x4d,0xa,0x5a,0x69,0x8,0x65,0x33,0xac,0x0,0xdd,0xbf, + 0x9,0xed,0xad,0xbe,0xb3,0x15,0xe0,0xb,0x0,0xf6,0xb8,0x1b,0xa2,0xeb,0x71,0xf5, + 0xc6,0x56,0x4f,0xf2,0xd0,0x4a,0xb5,0x1d,0x56,0x0,0x47,0xe2,0x1d,0x57,0x42,0x80, + 0xdb,0x1b,0x7c,0xd1,0xb5,0xea,0xa1,0xb6,0xd,0xdc,0x43,0x6f,0x36,0xec,0xa2,0x1f, + 0xff,0xe4,0x77,0xd4,0xda,0x7a,0x90,0x8e,0x1e,0x39,0xa1,0xf7,0xd,0x18,0x58,0xaf, + 0xda,0xf9,0x43,0x68,0xe4,0x8,0x25,0x48,0x6a,0x86,0xd1,0xa0,0x17,0x36,0xe8,0xe8, + 0x3c,0x20,0x93,0xe6,0x4f,0xd6,0x6,0xe5,0x99,0x3f,0x81,0x89,0xaa,0xa7,0x14,0x0, + 0x80,0x6e,0x2,0xc4,0xe2,0xba,0x19,0x0,0x7,0xe0,0xc3,0xa7,0x2f,0xa1,0xd1,0x4e, + 0xfb,0x97,0x5,0xdc,0xc4,0x20,0x1,0x14,0x54,0x72,0xa8,0xf,0x80,0x33,0xeb,0x88, + 0x30,0x41,0xbd,0xe0,0xd4,0x5a,0x76,0x2f,0x80,0x9e,0xbd,0x76,0xf4,0x18,0x3d,0xc6, + 0x5e,0x7,0x57,0x28,0xf2,0xeb,0x36,0x37,0x86,0x5a,0x1a,0x27,0x5c,0xd3,0x96,0x2d, + 0xda,0x4b,0x2f,0xa3,0xeb,0x61,0x69,0xf4,0x3b,0x32,0x92,0xe6,0xee,0x9d,0x4d,0xf7, + 0x5e,0xf9,0xd7,0xf4,0xe0,0x47,0x16,0xd3,0x79,0x67,0x5c,0x4b,0xe7,0x1f,0x9f,0x40, + 0x73,0xa6,0x7d,0x44,0x6f,0x1b,0xfa,0xe2,0x3e,0xfa,0x9b,0x33,0xdf,0xab,0xc9,0xf, + 0xe2,0x73,0xb8,0x6f,0x80,0xfc,0x10,0x3c,0x8a,0xfc,0x7c,0x2d,0x19,0xbd,0x68,0x77, + 0xfd,0xf9,0x37,0x1e,0xab,0x49,0xc5,0xd,0xec,0xdd,0x4b,0x1f,0xdf,0xf1,0xa7,0x39, + 0x3f,0x34,0x7,0x87,0x4a,0x41,0x68,0x52,0x50,0xe9,0xb,0x48,0x13,0x5d,0xe8,0x36, + 0x1b,0x39,0x52,0xb,0x1,0x9f,0xe8,0xa,0x49,0xb3,0xd4,0x9a,0x5f,0x2c,0x89,0x43, + 0x71,0x95,0x25,0x0,0x21,0x70,0xc,0x7e,0x5,0x45,0xda,0x63,0x93,0x27,0x6b,0x1, + 0x73,0xe6,0xe6,0xcd,0xd4,0xaa,0xd6,0x19,0xf7,0xa1,0x9b,0x80,0xbb,0xa,0x14,0xbe, + 0x7b,0xd3,0x67,0xfd,0x75,0x36,0xc2,0x58,0x88,0xc8,0x68,0x3f,0x80,0xad,0xd,0xdd, + 0x5c,0x11,0x89,0x4c,0xc2,0x62,0xb5,0xeb,0xa7,0xa8,0x76,0xff,0xdb,0xde,0xf9,0xff, + 0xb4,0x66,0x35,0xdd,0x76,0xea,0xac,0xb0,0x47,0xe1,0x50,0xe1,0xc8,0xd5,0xb4,0x2f, + 0xe7,0x78,0xff,0x6c,0xc8,0x69,0x6a,0x30,0xed,0xc,0x44,0x74,0x20,0xba,0xd6,0x30, + 0x34,0x78,0xe7,0x2e,0x2d,0x4,0x0,0x16,0x2,0xbc,0xe4,0x75,0xd,0x24,0x5d,0xb0, + 0xba,0xe2,0x9a,0x36,0x6f,0xf6,0xd7,0x41,0xe4,0x36,0x41,0xfe,0xee,0x90,0x46,0xfc, + 0xda,0xf4,0xea,0xeb,0x6b,0x99,0xb6,0x7f,0x26,0xed,0xaf,0xef,0xc9,0x34,0x1,0xe0, + 0x0,0xfc,0x62,0xa2,0x8b,0x7e,0x3a,0xf6,0x21,0xca,0x3c,0x50,0xd8,0xa1,0xd2,0x90, + 0xeb,0xc4,0x20,0xc8,0x1c,0xc4,0xc3,0x85,0x81,0x4a,0x13,0x4,0x19,0x5,0x0,0x42, + 0x83,0xb5,0x2f,0x0,0x5f,0xc4,0x4d,0xfb,0x41,0x35,0x22,0x16,0xd7,0x27,0x3c,0x5, + 0x5,0x82,0x6e,0x2,0x70,0x52,0x11,0x63,0x5,0x60,0x70,0xe,0x1c,0x75,0xb0,0x6, + 0xd8,0x6f,0x70,0x8c,0x73,0xf9,0x67,0xa9,0x68,0x7f,0xf6,0xf0,0xb,0xc7,0x9e,0x5f, + 0x27,0x53,0xb6,0xac,0x97,0x14,0x4a,0x88,0xf3,0x8f,0xd5,0xd6,0x5,0xce,0x41,0x4f, + 0x40,0x3b,0xe6,0x4,0x48,0x76,0x51,0x6c,0xd4,0x68,0xd7,0xfe,0xaf,0x22,0x48,0xf2, + 0x77,0xd7,0xb,0x70,0xe1,0x85,0x17,0xea,0xa5,0x14,0x4,0x95,0x24,0x4,0x72,0x9e, + 0x1c,0x94,0xbb,0x4,0xfd,0xde,0x0,0x6b,0x16,0x5e,0x40,0xf,0xb3,0xb4,0x2c,0x0, + 0xdb,0xa,0x88,0x73,0xdf,0xbc,0xfe,0xe2,0x91,0xb5,0x49,0xa4,0xf0,0xe,0x43,0xd2, + 0x90,0x1e,0x4b,0x2d,0x40,0xcc,0x79,0x4c,0xfc,0x80,0x95,0x61,0xac,0x2,0xdb,0x32, + 0xe1,0x2e,0x40,0x46,0xbb,0x8e,0x3,0x88,0xd3,0x63,0x4f,0x3d,0xad,0x87,0x30,0x17, + 0x8a,0x8f,0x5f,0xd8,0x5a,0x70,0x19,0x70,0xba,0xfe,0xec,0xa9,0x7e,0x5,0x97,0xe3, + 0x90,0x19,0x3d,0x9d,0x18,0x84,0x5,0x41,0xa9,0x3b,0x1d,0xf3,0x45,0x56,0x1,0x90, + 0x66,0x5,0xd8,0x5d,0x82,0x20,0xb8,0xe8,0x76,0xd3,0x8e,0x40,0xa2,0x80,0x5,0xe0, + 0xc3,0x6a,0xa7,0x27,0x2d,0x2d,0x2e,0xa7,0xf3,0x62,0xa2,0xcb,0x7d,0x7c,0xbc,0x3c, + 0x8f,0x89,0xcf,0xc1,0x3e,0x8c,0x80,0x10,0x22,0x4f,0x18,0x24,0x91,0x8,0x44,0x8, + 0x81,0x86,0x93,0x26,0xe9,0xc8,0x45,0x90,0xbf,0xbb,0xb9,0xf,0xc2,0x70,0xed,0xfc, + 0xf6,0x40,0x1d,0xa3,0x0,0xd2,0x97,0x49,0x41,0x82,0x7b,0xfd,0xd9,0xca,0x86,0x48, + 0xaf,0xe1,0x10,0x24,0x3f,0xa7,0x5,0xf,0xcb,0xfe,0xcb,0x39,0x3,0x98,0xfc,0x40, + 0xa5,0x4d,0xc,0x92,0xf7,0xf4,0xe0,0x3e,0x58,0x20,0x88,0x50,0x3d,0x26,0x9e,0x24, + 0x1f,0xc0,0x24,0xb5,0x97,0x12,0xb6,0x40,0x90,0xdf,0xd3,0xce,0x67,0xe1,0x13,0xa3, + 0xe0,0x50,0x5f,0x73,0x8e,0x74,0x44,0x6,0x84,0x91,0xc9,0x2,0xe4,0x8d,0x3,0xf0, + 0x7a,0x1,0x1e,0x7b,0xf4,0x51,0x6a,0x5c,0x9e,0x9b,0x23,0x8,0xa4,0xd7,0xb7,0x8e, + 0x5e,0xf,0x11,0x36,0xed,0x5d,0xda,0xcb,0x30,0xb3,0x6f,0xcb,0x56,0x1a,0x39,0x79, + 0x12,0xed,0xd9,0xb4,0x39,0x43,0x29,0x1e,0x70,0xc,0xd0,0x89,0xb2,0x32,0x1c,0x83, + 0x6b,0x40,0x20,0x38,0x41,0x10,0xd,0x32,0x4d,0xc,0xc2,0xe0,0xdf,0xd0,0xfe,0xe, + 0x21,0xc1,0x42,0x80,0x5,0x44,0xa5,0xc4,0x7,0x74,0x2b,0x0,0x60,0x5,0x1c,0xf9, + 0xc6,0x37,0x90,0x39,0x51,0x8f,0xf,0x68,0x34,0xf9,0xe6,0x39,0xc9,0x26,0x1c,0x82, + 0x3a,0xea,0x4f,0x99,0xde,0xb2,0x57,0xc0,0x17,0x2,0xc2,0x5c,0x67,0xd8,0x42,0xc0, + 0x16,0x8,0xf6,0x77,0xdf,0xbb,0x1f,0x22,0x4,0x6c,0xf2,0x4b,0xb3,0x9f,0xeb,0xa0, + 0xe3,0x0,0x84,0xf,0x40,0xb7,0xff,0x95,0x10,0x40,0x36,0xa0,0xe4,0xd6,0xec,0xcd, + 0xf,0x40,0x12,0x5f,0x2f,0x89,0x2f,0xe9,0x5d,0xd3,0x26,0x7b,0x77,0xe4,0xb7,0x8f, + 0x61,0x81,0x31,0x7c,0x52,0x33,0xc5,0x95,0x90,0xea,0xb2,0x2c,0xb,0x27,0x8,0x8a, + 0x3,0x90,0x98,0x49,0x2e,0xd3,0x82,0xc9,0x6c,0x41,0xdc,0xde,0xaf,0xea,0x89,0x41, + 0x2,0x37,0x6a,0xd6,0x99,0x78,0x2c,0x8,0x38,0x64,0x4f,0x92,0xce,0x6,0x13,0x58, + 0x6a,0xf4,0x30,0xc8,0x7d,0x72,0x19,0x20,0x3f,0xc0,0xbd,0x0,0x21,0xe,0x49,0x5b, + 0x8,0x30,0xfc,0x71,0x0,0xe6,0x7,0xdf,0xfb,0xf9,0x41,0x94,0x9,0x20,0x3e,0x9b, + 0xfa,0xfa,0x83,0x1c,0x83,0x66,0x4,0x21,0x34,0x3d,0x48,0x9b,0x46,0x76,0x19,0xc3, + 0x9c,0xed,0x23,0xc0,0x65,0xec,0xdb,0xec,0x95,0xb9,0x5f,0x95,0x8d,0xeb,0xd4,0x84, + 0x34,0x93,0x20,0x8,0xae,0x33,0x2,0xc9,0x21,0x77,0x64,0xd3,0xfe,0x4c,0x7e,0xf9, + 0x9e,0xf3,0xa4,0x21,0xc,0xfc,0xe6,0x3c,0x84,0x18,0x98,0x5f,0x21,0x13,0x83,0xe4, + 0x54,0xfb,0x17,0xbe,0xf6,0xb5,0xe4,0xac,0xb8,0x97,0x2f,0x5d,0x27,0xd,0x15,0xd1, + 0x80,0x3e,0x29,0x45,0xbf,0x7b,0xc0,0xf9,0x46,0x94,0x46,0x42,0xef,0xa0,0x44,0x70, + 0xb4,0x8f,0xd4,0x7a,0xf6,0x77,0x1b,0xf1,0xec,0x72,0xcb,0xbe,0xbe,0xdd,0x3,0xe0, + 0x47,0x1,0x26,0x13,0x54,0x7b,0xd5,0xfb,0xe9,0xc9,0xab,0x82,0xe1,0xbf,0xb6,0xc6, + 0xaf,0xc9,0xa0,0xe9,0xd3,0xea,0xdb,0x4d,0xbd,0x32,0x57,0x38,0xe4,0x19,0x18,0xf8, + 0x4d,0x5,0x78,0x9f,0xb1,0x22,0x5e,0x52,0x38,0x31,0x1f,0xa9,0x42,0x8b,0xa0,0x27, + 0x91,0x80,0x52,0x0,0x70,0xbb,0x5f,0x66,0xf3,0xe1,0x3c,0x81,0x80,0xcc,0x16,0xcc, + 0x24,0xe7,0xa4,0x21,0x77,0xdd,0x15,0xcc,0x8,0xd4,0x9d,0x15,0x50,0xea,0x91,0x80, + 0x39,0x9f,0xac,0x9b,0x1,0xe4,0x79,0xaa,0x1b,0x4d,0x4c,0x0,0x90,0x49,0x0,0x0, + 0xb6,0x10,0x8,0xd3,0xc8,0x1,0x14,0x40,0x22,0x9f,0xec,0xe8,0x2d,0x10,0xd6,0x88, + 0x1d,0x6,0xac,0xdb,0xff,0x46,0xe2,0x2f,0xdb,0xf4,0xe,0x1d,0xfd,0x5a,0x7f,0x1a, + 0x25,0xba,0x0,0x25,0xf9,0x6d,0xe2,0xa7,0xb5,0xed,0xc3,0x88,0xbf,0xa3,0x85,0x68, + 0xfc,0x44,0xa2,0x6d,0xdd,0x37,0x2d,0xfc,0xe3,0xc6,0x4f,0x34,0x37,0x21,0x4,0x80, + 0x25,0xc,0x58,0x10,0x24,0x4d,0x1e,0x46,0x46,0x35,0xa,0x81,0x9e,0x8,0x0,0xa9, + 0xbd,0xe5,0x64,0xa0,0x3c,0x33,0x10,0xa7,0x7,0x93,0x7d,0xfe,0xbc,0x9f,0x13,0x83, + 0x60,0xc8,0x30,0x26,0x7,0x91,0x65,0xad,0x58,0xb1,0x22,0x6b,0x5a,0xb0,0x52,0x17, + 0x0,0x39,0xb3,0x6d,0xad,0xd5,0xfe,0xf5,0xc3,0x83,0x2d,0x53,0x3e,0x13,0xc9,0x93, + 0x98,0x8f,0xcf,0x4,0xe7,0x30,0x59,0xe5,0x92,0x43,0x87,0xe5,0xf6,0x4c,0x8,0x3b, + 0x9f,0xaf,0x9,0xf2,0xa7,0xb5,0xfd,0xad,0x1c,0x80,0xc9,0x44,0x52,0x7f,0xae,0x52, + 0x3f,0x64,0x18,0xf9,0xe3,0x21,0xe4,0xf,0xac,0xdb,0x43,0x16,0x41,0x7a,0xac,0xe7, + 0x43,0x7e,0x80,0x8f,0xc3,0x12,0x1f,0x9c,0xcf,0x65,0xa1,0x79,0x23,0x4,0x8b,0x6e, + 0x6e,0x6c,0xde,0xe2,0xa5,0xb1,0x46,0x33,0xc4,0xbc,0x51,0xb8,0x5f,0xd7,0x24,0xc8, + 0xf,0x9c,0xa,0x9c,0x27,0x5,0xe1,0x26,0x0,0x4f,0x9,0x86,0xef,0x72,0x4a,0x30, + 0xce,0x16,0x4,0xf2,0x87,0xa1,0x9c,0x7d,0x1,0x79,0xab,0x5b,0x39,0xf3,0x6e,0x20, + 0xe5,0x96,0xe9,0xf3,0x67,0xf2,0xc9,0x98,0x0,0x6d,0x46,0x61,0x42,0xe,0xcc,0xc0, + 0x62,0xf9,0x8,0x6c,0x81,0xe1,0x87,0x16,0x2b,0x81,0x11,0xf6,0xb1,0x85,0x83,0xed, + 0xf4,0x43,0xdb,0x9e,0x89,0x1f,0xb,0xb1,0x26,0xf4,0x48,0xc0,0x78,0x4c,0xf,0x2, + 0xc2,0xcc,0x46,0xb,0x1e,0xfb,0x2c,0x7d,0xfe,0x77,0x5f,0xa2,0x7,0x3b,0x1f,0xf7, + 0xef,0xf,0x3f,0x7e,0x68,0xfb,0x5e,0x3f,0x31,0xd1,0x8e,0x7,0x69,0xed,0x68,0x44, + 0x26,0x35,0x1f,0x3,0xe7,0xe8,0xfe,0x83,0xfa,0xa3,0xd7,0xf,0x1e,0xf6,0xbe,0x63, + 0x69,0xd6,0xd3,0xfc,0x2,0x2c,0x10,0xc2,0x4,0xc1,0x96,0xad,0xfe,0xf3,0xad,0x71, + 0x42,0x20,0x6f,0xc8,0x6e,0x3f,0x4e,0x8,0xca,0x60,0xe2,0x33,0x64,0x66,0xe0,0xee, + 0x66,0x7,0x2a,0x57,0xe4,0x2c,0x0,0x30,0x3e,0x0,0xcb,0x5c,0xa5,0x5d,0xe0,0xb8, + 0x78,0x3c,0x94,0xf0,0x52,0x18,0x4,0x48,0x6c,0x4,0x6,0x5e,0x6c,0x7b,0xc9,0xfb, + 0x6d,0x2f,0xbf,0xdf,0xdc,0x30,0xc7,0xe8,0x2c,0xbf,0x56,0xfa,0xef,0x54,0xf2,0xd2, + 0x54,0x1e,0xf8,0x5f,0xdf,0xff,0x7d,0x9a,0x77,0xfb,0xed,0xf4,0x9b,0x33,0xcf,0xa4, + 0xd6,0x6d,0x2d,0x4,0x5d,0x90,0xd1,0xb1,0xc7,0x64,0x67,0x72,0x4a,0xd8,0xdb,0xa0, + 0xa5,0xf7,0xee,0xd7,0xf5,0x49,0x8c,0x1a,0xe1,0x7d,0xdf,0xbd,0xd7,0x9f,0xfe,0x38, + 0x31,0x62,0x98,0xbf,0xae,0x5,0x2,0x8e,0x35,0xc2,0xc2,0xbf,0xa6,0xb4,0xc,0x70, + 0x6d,0xa3,0xa9,0x20,0x4,0xf4,0x67,0x6b,0x8b,0x6f,0xa9,0x38,0x21,0x90,0x3f,0x78, + 0x1a,0x30,0xd6,0xfc,0xfc,0xce,0xf2,0x4c,0x40,0x76,0x76,0xe0,0x4a,0x23,0x3f,0x90, + 0xb3,0x0,0x38,0x62,0x6,0x7,0xf9,0x3e,0x0,0xb2,0xb2,0xee,0xc6,0x83,0xf1,0xf7, + 0xd2,0x3b,0x8a,0x21,0xc2,0x61,0xcd,0x2,0x5b,0xfb,0xb3,0xf6,0x86,0xc9,0xae,0xe7, + 0x20,0x54,0x5a,0xdc,0x5f,0xa2,0x9,0xa1,0x96,0xb6,0x4f,0x21,0xcc,0xb,0xab,0x8f, + 0x45,0xdd,0xc4,0x3e,0x26,0x7f,0xcc,0xc4,0x2,0x24,0xb7,0x6c,0xf5,0xf7,0x2f,0x33, + 0x5d,0x9b,0x6d,0x4a,0x0,0xc0,0xcc,0xf6,0x9d,0x9c,0xd2,0xd4,0x47,0x79,0x4c,0x46, + 0x80,0x9,0xcf,0x4b,0x26,0x3c,0x6b,0x79,0x90,0xbd,0xae,0x8e,0xe2,0x87,0x8e,0xe8, + 0xed,0x9a,0xf0,0x78,0x3e,0x43,0x7,0xeb,0xb2,0xb0,0x9f,0xd7,0x35,0x70,0x2c,0xce, + 0x67,0xab,0x1,0xeb,0x7c,0x6d,0xbe,0x1e,0x7f,0xdf,0xb5,0xdd,0xaf,0xfb,0x1e,0xd3, + 0x63,0xe0,0x90,0x3b,0x98,0xe8,0x72,0x5a,0x70,0x39,0x9,0xa8,0x4c,0x4,0x6a,0xb, + 0x83,0x5,0xb,0xd2,0x9b,0x1,0xe5,0xdc,0x13,0xd0,0xa3,0x37,0x27,0xb4,0x9,0x20, + 0xa0,0x89,0x89,0xa8,0x40,0x36,0xc7,0x6b,0xe2,0x1,0xe2,0x22,0x2a,0xcf,0x33,0xd7, + 0xe3,0x3e,0xb1,0xf5,0x7c,0x83,0xf0,0xcc,0x5b,0x1e,0xfb,0x54,0x4d,0x3d,0xa2,0xe8, + 0xfd,0xd2,0x2,0x30,0x8e,0x1a,0x29,0x4c,0x60,0x2d,0x60,0x68,0xb2,0x76,0x6,0x9a, + 0x1c,0x80,0x80,0x97,0x8,0x24,0xa6,0x9b,0x0,0x7a,0x2a,0x34,0xa5,0x41,0xaf,0x9c, + 0x34,0x99,0xbe,0x38,0x7f,0x3e,0x75,0x1d,0x3f,0x4e,0xb5,0x38,0x1e,0xe4,0xda,0xbb, + 0x5b,0xdd,0xe4,0x31,0x43,0x6c,0x75,0xfc,0xce,0x6d,0x1,0x6b,0x42,0xa,0x6,0x36, + 0xe1,0xfd,0x25,0x93,0x5d,0x11,0xda,0x9f,0x5,0x5,0x84,0x3f,0x70,0x28,0xb5,0x4, + 0x40,0x78,0x5e,0xc7,0x33,0x13,0xc2,0x40,0x93,0x1f,0xfb,0xb9,0x79,0xc0,0x96,0xc7, + 0xf6,0xad,0x9e,0x0,0x1a,0x3b,0x21,0x25,0xa4,0xd4,0x87,0x9b,0x5,0xb8,0xdf,0xcb, + 0xa7,0xbe,0x9d,0xdb,0x8f,0x58,0xa5,0x90,0x51,0x7d,0xb6,0xb3,0x8f,0x35,0xbc,0x9c, + 0x17,0x10,0x60,0xd2,0xe3,0x71,0x73,0x2,0xd1,0x4a,0x41,0x4e,0xa2,0xb,0xda,0x3f, + 0x69,0xa4,0x24,0x46,0x5,0xfa,0x1,0x41,0xa2,0x2b,0x50,0xb6,0x63,0xc3,0x3c,0xff, + 0x5a,0x10,0xe8,0x63,0x32,0xcf,0xc,0xc2,0x66,0x3a,0x67,0xec,0xe1,0x75,0xdf,0x74, + 0xf,0x83,0x49,0x43,0x6,0x81,0xc3,0x16,0x81,0xff,0xc3,0x9a,0x64,0x25,0xb0,0x40, + 0x58,0xb0,0x20,0xd,0x98,0x16,0x0,0x98,0xd0,0xd4,0x44,0xe1,0x2d,0x4f,0x74,0xd2, + 0x87,0x9e,0x59,0xe9,0x3d,0xe,0x26,0xba,0xbe,0x37,0xf5,0x51,0x82,0x84,0x76,0x9b, + 0xb1,0xf,0xc6,0xeb,0xef,0x99,0xe9,0x9e,0x20,0xe9,0x6e,0xa6,0x93,0xc4,0xd6,0x6d, + 0xde,0xa,0xb,0xd,0xd3,0x6b,0x10,0x1f,0x3f,0x56,0xef,0x8b,0x37,0x8f,0x4f,0x3f, + 0x49,0xd5,0x17,0x42,0x44,0xb,0x88,0xe,0x6f,0xc2,0x12,0x2d,0x54,0x18,0xd6,0xec, + 0x46,0x5a,0x20,0x28,0xc,0x1b,0xe7,0x9,0xc0,0x7f,0x5f,0xd5,0x98,0xb5,0x4e,0xe5, + 0x8e,0x42,0xbb,0x1,0xf9,0x3c,0x7e,0x57,0xec,0x99,0x80,0x33,0x59,0x1,0x78,0xec, + 0xf6,0xc4,0x20,0x5c,0x76,0x26,0x94,0x7a,0x2f,0x40,0x5e,0xa1,0xc0,0x7c,0x9b,0xdc, + 0xd,0x88,0xc0,0x18,0x8,0x6,0xbf,0x1b,0x10,0xed,0x5d,0xa5,0xd1,0xe5,0xd0,0x60, + 0x69,0xbe,0x33,0x6c,0xa2,0x7b,0xce,0xba,0x98,0xb6,0x18,0xda,0x56,0x3d,0x93,0x3a, + 0x4e,0x9,0x16,0xcc,0x3b,0xc8,0xdb,0xf4,0x1c,0x84,0xa6,0x37,0xc2,0x16,0xe,0x3c, + 0x63,0x31,0x20,0xbb,0x1f,0x53,0xe5,0x9b,0xfe,0x7f,0x38,0x7e,0xa0,0x31,0xe3,0xde, + 0xe0,0x22,0xd4,0xf9,0xa,0x65,0x5,0x5c,0xf1,0x7f,0x1f,0xa6,0x65,0x37,0x7c,0x32, + 0x45,0x2c,0xbd,0x54,0x9f,0x5d,0xea,0x1e,0x3a,0x91,0xc1,0x54,0x11,0xb1,0xbe,0x81, + 0x62,0x87,0x8f,0x28,0xed,0x5c,0x4b,0x89,0x21,0x83,0xb5,0xa9,0xaf,0xb5,0xbc,0x10, + 0x2,0x9a,0xf0,0xbe,0xd9,0xbe,0x99,0x68,0xfc,0xa4,0xe0,0xfa,0x2e,0xb5,0x7f,0x6c, + 0x33,0x25,0x7e,0xff,0x3f,0xfa,0x7b,0x62,0xdb,0x8e,0x54,0x10,0x15,0xb,0x3,0xcb, + 0x52,0xd0,0xfb,0xd8,0x37,0x0,0x6b,0x67,0xd8,0x10,0xff,0x8d,0xc2,0xf6,0x84,0xd9, + 0xbe,0x7f,0xed,0x1b,0x44,0xb3,0x4e,0xa5,0xcb,0x37,0xff,0x90,0x96,0x4f,0xfa,0x54, + 0x6e,0x3f,0x6a,0x95,0x82,0x1d,0x80,0xb2,0x9b,0xf,0x90,0x42,0x0,0xc0,0x3a,0xd2, + 0x83,0xdb,0xdd,0x7f,0x95,0x82,0xac,0xd2,0x43,0x6b,0x7e,0xac,0xa8,0x87,0xd5,0x28, + 0x35,0x3f,0x6b,0x43,0x85,0x9a,0xed,0x3b,0xbc,0xef,0xc6,0x4c,0xcd,0x14,0x7c,0x3, + 0xa4,0x8,0xf,0xc2,0x78,0x3,0x8b,0x92,0xc6,0x7c,0xe5,0x9a,0x84,0x55,0x48,0x4f, + 0xf9,0x65,0x52,0x78,0xc7,0x27,0x36,0xa7,0x26,0x73,0x14,0xc2,0x40,0x26,0x27,0xe5, + 0x69,0xbe,0xa4,0x5,0xc2,0x2,0x82,0xa3,0x0,0x59,0x8,0x68,0xc9,0xae,0x48,0xac, + 0xad,0x80,0x67,0x3d,0xf,0xb1,0xdf,0x7,0x6f,0xa6,0x47,0x8b,0x75,0x74,0x52,0xac, + 0xbd,0x5d,0x9,0xc,0x55,0x7e,0xa3,0x12,0x2,0xc7,0xdb,0xbc,0xf0,0x67,0x43,0x7c, + 0x49,0xfa,0x98,0x22,0x3a,0x3f,0x33,0x8d,0x7d,0x7,0x28,0x36,0x7c,0xa8,0x77,0x63, + 0x32,0xa0,0xd2,0x58,0x1f,0x49,0x16,0x10,0x7c,0x5d,0x58,0x18,0x93,0x9a,0x83,0xf, + 0x80,0x2d,0x2,0x90,0x5d,0x91,0x3f,0xae,0xca,0xb4,0x85,0x80,0x3e,0xbd,0xc5,0xf8, + 0x6,0x76,0x6f,0xa7,0xe5,0xe7,0xdc,0x19,0xf2,0x24,0x2b,0x3,0x3d,0x4d,0x9,0x26, + 0xad,0x0,0x8,0x0,0x9c,0xcb,0x7d,0xfb,0xc,0x26,0xbe,0x6c,0xd7,0x87,0xcd,0xc, + 0x94,0xeb,0x58,0x80,0xb2,0xb6,0x0,0xec,0x5b,0x93,0x1,0x40,0x8c,0x2e,0x65,0x76, + 0x72,0x5c,0xbe,0xd4,0xfe,0x81,0x6c,0xc1,0x24,0xc8,0xcf,0x61,0x97,0x5b,0x5a,0xfc, + 0xda,0xc7,0x40,0x6a,0xee,0xde,0x32,0xeb,0x58,0x32,0x62,0xf6,0x52,0x67,0x23,0x4e, + 0x68,0x41,0x52,0x8f,0x51,0x7d,0xa2,0xc9,0x40,0xf2,0x18,0x79,0x2f,0x26,0x27,0x80, + 0xb4,0x3c,0xf4,0x76,0xd3,0x4e,0xbf,0x62,0xe2,0x24,0x65,0x5,0xfc,0x84,0x96,0x7d, + 0xf2,0x4f,0x2,0x3,0x9d,0x62,0x27,0x94,0x30,0xe9,0x4a,0x50,0xb2,0xbd,0x43,0x7d, + 0x8e,0x2a,0x72,0x9d,0x50,0xcb,0x76,0x8a,0xc1,0x57,0x60,0xb4,0xbf,0xbc,0x52,0x12, + 0x9a,0x7b,0xe4,0x70,0x22,0x76,0xe2,0xa9,0x75,0xfd,0x1c,0xf7,0xec,0xa3,0x18,0xb6, + 0x3,0x28,0x57,0x9,0xcc,0xe4,0xe8,0xf1,0x14,0xdb,0x61,0xda,0xef,0xca,0x2a,0xe0, + 0xf5,0x84,0x9c,0xfe,0xc8,0x8,0x4,0xed,0x17,0x80,0x65,0x20,0x2c,0x1,0xbd,0x2e, + 0x84,0xb1,0xff,0x96,0xa9,0x6d,0x97,0xff,0xfe,0xae,0x8a,0x16,0x2,0x3d,0x41,0xd8, + 0xc4,0x20,0xc,0x8,0x1,0x6f,0x52,0x90,0x58,0x4e,0x73,0x3,0x54,0xa,0x32,0x3a, + 0x1,0x11,0xfe,0xab,0xd3,0x80,0x1b,0xed,0x2f,0x9f,0x4a,0x6b,0x73,0x8a,0x9c,0xda, + 0x2,0x10,0xed,0x7f,0xdf,0xdc,0x57,0xe4,0xe4,0xb8,0x7b,0x24,0xde,0x0,0xf1,0x7d, + 0xcd,0xab,0x3e,0xd0,0xe4,0x4c,0x7e,0x30,0x4,0xdf,0x1b,0x2e,0xbc,0x40,0x47,0xe7, + 0x41,0x1b,0x2f,0x57,0x4b,0xbd,0xae,0x3e,0xf5,0x93,0x27,0xd1,0x52,0xb3,0x5c,0x62, + 0x96,0x98,0x9a,0x1c,0xe4,0x6f,0x37,0xcd,0x80,0x7e,0x6a,0x1d,0x42,0x47,0x13,0x1d, + 0xf5,0x36,0x3e,0x81,0x40,0xef,0x83,0xc8,0x5c,0xac,0xaf,0x2b,0xe6,0x2e,0x87,0x4f, + 0xe0,0x33,0xf,0x3f,0x42,0x63,0x5f,0x7f,0x3d,0x40,0x24,0xdd,0x6,0x87,0xd9,0x7f, + 0x50,0x11,0x1b,0xc9,0x4f,0x5b,0xb6,0x28,0x2d,0xbf,0xc5,0xb4,0xe5,0xd5,0x79,0x8a, + 0xd8,0xfa,0x50,0x45,0xc6,0xa4,0x21,0x29,0xc9,0xbe,0x7d,0xac,0xf3,0x76,0x1c,0xc7, + 0x9e,0x7e,0xd4,0x61,0x87,0x69,0x8a,0x18,0xf2,0xc3,0x1a,0xc0,0x3a,0xa7,0x54,0xf, + 0xf8,0x7,0xb8,0x99,0x61,0x7a,0x27,0x7c,0xad,0xf,0xeb,0x82,0x8c,0x15,0x82,0x7d, + 0x68,0x62,0x28,0xb,0x1,0x80,0x10,0x70,0x48,0x21,0x9f,0x89,0x41,0x58,0xb1,0x87, + 0x5,0xff,0x54,0xca,0x48,0x40,0x20,0xa3,0xf9,0x80,0x3c,0x0,0x8d,0x2d,0xa6,0xcb, + 0x2b,0x6c,0xca,0x14,0x3,0xce,0xbb,0xef,0x77,0xc9,0xe9,0x17,0xb4,0xc6,0x6f,0x9f, + 0xeb,0xac,0x3b,0xea,0x32,0x49,0xd3,0xd5,0xc6,0xa4,0xe7,0xd2,0x40,0x6c,0x59,0x91, + 0xd,0x23,0x86,0x53,0xa7,0x7a,0xd9,0xeb,0xb8,0x6f,0xd6,0xba,0x1e,0x28,0xb,0xfa, + 0x4c,0xdd,0xbb,0x8f,0xde,0x1a,0x3e,0x8c,0xa6,0xee,0xdb,0x4f,0x1f,0x5e,0xb4,0x48, + 0xb,0x1e,0x7d,0xbc,0x89,0x3,0x8,0x1b,0x87,0xa0,0x73,0x2,0x88,0xfa,0x11,0x3b, + 0x2f,0x79,0x48,0x6e,0x53,0x7f,0xba,0x6f,0xd6,0x29,0xf4,0x95,0x7f,0xf2,0xe6,0x22, + 0x8b,0x81,0xfc,0xed,0x27,0x28,0xa6,0xc8,0xaf,0xcb,0xdf,0xef,0x91,0xdd,0x27,0x37, + 0x5a,0x8,0xaa,0x1e,0x5a,0xe3,0xb3,0x66,0x56,0xa8,0x33,0x69,0xcf,0x12,0x20,0xaa, + 0x79,0x49,0x3a,0x4c,0xcf,0x89,0xb7,0xc3,0x44,0x55,0xc2,0x8c,0xe7,0xba,0x8d,0x6d, + 0x4e,0xed,0xb3,0x9a,0x1,0x89,0xcd,0x5b,0x53,0xdf,0x11,0xa,0x8c,0x66,0x0,0x2c, + 0x8d,0x80,0xc3,0x92,0x3c,0x7f,0x2,0x0,0x21,0x80,0xfa,0xa8,0xe3,0x2a,0xd1,0xa, + 0x28,0x34,0x2b,0x30,0xde,0x53,0xe9,0x10,0xcc,0x7,0xf9,0x92,0xbf,0xd4,0x9b,0x0, + 0xa1,0x16,0xc0,0x11,0x93,0x16,0xbc,0x55,0xbe,0xb4,0x12,0x8,0x9f,0x44,0xe6,0xdd, + 0xed,0xa9,0xf0,0x5d,0xdf,0xd1,0xf6,0xce,0x66,0xff,0x3b,0xc8,0x8f,0xae,0x36,0x54, + 0x11,0xb5,0xac,0x31,0xc4,0x5f,0x66,0xb4,0x3b,0x3e,0x7f,0x54,0x84,0xc7,0xe7,0x31, + 0xf5,0x82,0x3f,0x36,0x71,0x2,0xbd,0xd9,0xbf,0x3f,0x6d,0x6c,0x68,0xa0,0x75,0x6a, + 0xa9,0x3f,0x4d,0x58,0x36,0x6a,0x87,0xa3,0x8e,0x24,0x24,0xef,0xe1,0xbf,0xff,0xb3, + 0x5e,0x8a,0xf0,0xab,0xd4,0xf2,0xdb,0x90,0xde,0xe8,0xfa,0x53,0x1f,0x3b,0xa0,0x8, + 0xf0,0xfd,0x12,0xa3,0xc7,0x4,0x9f,0x9c,0x65,0x5,0xa0,0xfc,0x93,0xdb,0xda,0xa8, + 0xe,0x1a,0x1f,0x9a,0xd9,0x84,0x10,0x27,0xb5,0xe5,0xe0,0x39,0x3c,0xf5,0xf7,0x23, + 0xc7,0x3c,0xf2,0x1f,0x38,0xe8,0x6b,0xfc,0x7a,0x45,0x7a,0x10,0xbf,0x6,0x59,0x93, + 0x10,0x5c,0x82,0x2e,0x4e,0x75,0x78,0x97,0xe9,0x72,0xac,0x35,0xb1,0x13,0xb5,0xdc, + 0x8c,0x62,0x27,0x24,0x96,0xd8,0x61,0xcc,0x7f,0x68,0x7d,0x9f,0xec,0x5d,0xc6,0x39, + 0x28,0x7d,0x2,0x6c,0xfa,0x9b,0x75,0x9f,0xfc,0x2d,0xd6,0xc8,0x4a,0x75,0x5f,0xb5, + 0xaf,0xbc,0x16,0xfe,0xfb,0x95,0x31,0x24,0xf9,0x7b,0xa,0x9e,0x18,0x24,0x6c,0x86, + 0xa0,0x4c,0xe0,0xe3,0x39,0x7c,0xb8,0x52,0x10,0xea,0x3,0xc0,0xed,0xf9,0xdd,0x7c, + 0x61,0x41,0x26,0x32,0x2b,0x10,0x5,0xf3,0xee,0x73,0x1b,0x5b,0x7b,0xdb,0x15,0xf9, + 0x35,0xc9,0xd0,0xa6,0xc7,0x77,0x65,0x66,0x2f,0x53,0xe6,0x3d,0x5e,0x59,0x68,0x7a, + 0x2c,0x5f,0x6d,0xf4,0x52,0x60,0xad,0x1d,0x34,0x98,0xf6,0xef,0xd8,0x41,0xc7,0x4f, + 0x78,0xf3,0x2,0xf4,0x6f,0xf0,0x6,0xb8,0x5c,0xd0,0xcf,0x5b,0x42,0x10,0xe8,0xba, + 0x99,0x87,0xdf,0x2e,0xe6,0x19,0xb0,0x11,0x1f,0xe5,0xd,0x51,0x66,0xc2,0xdb,0x11, + 0x83,0xd0,0xe6,0x1,0x5f,0x0,0x37,0x5f,0x3a,0x3a,0x55,0x5b,0x7b,0x1f,0x2d,0xbe, + 0xff,0x7e,0xba,0xfd,0x8b,0x5f,0xf4,0x9a,0x6,0x70,0x0,0x2a,0xc2,0x27,0x3b,0xb8, + 0xf9,0xa0,0x9a,0x17,0x3,0x9b,0x28,0xb9,0x2f,0x65,0xca,0x83,0xf8,0x9,0x78,0xe7, + 0xd5,0x67,0x42,0xb2,0x8d,0x9a,0x3b,0xf,0x50,0x6c,0xcf,0x26,0x6a,0x6d,0x3b,0x48, + 0x7,0xe,0x1c,0x57,0xad,0x7,0xed,0xc6,0xa4,0x21,0x83,0xeb,0x68,0xe8,0xe0,0xc1, + 0xd4,0xb0,0x7d,0x28,0xb5,0x8c,0x99,0x4e,0x5b,0x68,0x9a,0x47,0x7e,0x58,0x2,0xc6, + 0xe2,0x81,0x16,0x47,0x17,0xa1,0x1f,0x43,0x0,0x2b,0xc4,0x8f,0x29,0x30,0x5d,0x8f, + 0x21,0xea,0x24,0x3e,0x61,0x5c,0xca,0x2,0x10,0x2f,0xe8,0x65,0x97,0x55,0xd6,0xb, + 0x1b,0x15,0xdc,0xc4,0x20,0x1e,0x42,0xcd,0x87,0xc3,0x66,0xe4,0x9f,0x2f,0x4,0x42, + 0x5e,0x38,0x39,0xe5,0x96,0x4c,0xb8,0x21,0x9d,0x7d,0xda,0x99,0x47,0x9e,0x35,0xb0, + 0xa4,0xf3,0x84,0xe,0xb3,0x5d,0x3f,0x7a,0x14,0xad,0x57,0xa4,0x46,0x26,0x9c,0x67, + 0x5a,0xdb,0xe9,0x58,0x87,0x22,0x57,0xac,0x93,0xba,0xd4,0xbf,0xe9,0x33,0xea,0xe8, + 0xa5,0x17,0xdb,0xe8,0x94,0x53,0x30,0x31,0x48,0x3f,0x6a,0xa8,0x1f,0xac,0x2e,0x31, + 0x48,0x29,0xb3,0x1,0xaa,0x59,0xdc,0x48,0xe3,0x95,0x9,0xdf,0xa4,0x4,0x4,0xae, + 0x3a,0xf3,0x78,0x2b,0xdd,0xa8,0x48,0x8a,0x59,0x88,0x3f,0xab,0x96,0x98,0x87,0x90, + 0xbb,0x22,0xed,0xe4,0x20,0x36,0x64,0x7d,0xdb,0x95,0xc5,0x92,0xdc,0xb6,0xcd,0x6f, + 0x6,0x24,0x7,0xf,0xa2,0x7b,0x95,0xc6,0x7d,0x66,0xc6,0xc,0x7a,0xe5,0x8c,0xb9, + 0x74,0x42,0x9,0xb5,0xa3,0xb1,0x38,0x75,0x1c,0x3d,0xec,0x37,0x17,0x8,0xdd,0x7f, + 0xa,0xd0,0xfa,0x7a,0xae,0x3,0xb5,0x7d,0x46,0xd7,0x21,0x9a,0x1e,0xdf,0x46,0x5b, + 0x37,0xad,0xa5,0x8d,0x1b,0xbd,0xc3,0xc0,0xdd,0x29,0x53,0x88,0xde,0x7c,0x93,0xf4, + 0x3d,0x35,0x36,0x7a,0x5c,0xc6,0x7,0x7e,0xbe,0xda,0xf8,0x64,0x3a,0x32,0xf3,0x42, + 0x1a,0xab,0xc,0x8e,0x5f,0x4c,0x3d,0x99,0x68,0xf4,0x78,0xaf,0xfd,0x7f,0xfa,0x6c, + 0x53,0x51,0xd3,0x1c,0xc0,0xf5,0x60,0x69,0x40,0x8,0xa0,0xe,0x22,0x3d,0x9b,0x7f, + 0x4f,0x2d,0xa9,0xe8,0xc0,0xd8,0x4e,0x6f,0x4e,0x46,0xed,0xb,0x18,0x3e,0x94,0x92, + 0x77,0xfc,0x5d,0x45,0xbe,0xc0,0x20,0x67,0xa9,0x47,0xe1,0x95,0x7a,0x13,0x20,0xcd, + 0x2,0x80,0xf9,0xef,0xcf,0x4,0xa4,0x8,0xc5,0x9a,0x5e,0x2e,0xbd,0xcb,0xa6,0xcc, + 0x6b,0xf9,0x23,0x78,0xed,0xfe,0xcd,0x1e,0xf9,0xd1,0xcd,0xa6,0xb6,0x49,0xf2,0xaf, + 0x69,0xa8,0xa7,0x67,0x8f,0x1d,0xa3,0x49,0xa7,0x8e,0xa6,0xe6,0xc4,0x76,0xda,0xb1, + 0xe3,0x38,0x9d,0x7e,0xba,0xf7,0xae,0x7f,0xf9,0xcb,0x5d,0xa2,0x26,0x6d,0xe6,0xb3, + 0x4b,0x4f,0x13,0xde,0x34,0x70,0x2,0xc5,0xa6,0x4e,0xa3,0x83,0x35,0xaa,0x19,0xa1, + 0xda,0xbf,0xeb,0x5e,0x7a,0x49,0x1f,0xf5,0x59,0x23,0x4,0xbe,0x70,0xcd,0x35,0xde, + 0x69,0x71,0x93,0xba,0x5c,0xd5,0x35,0x3e,0x62,0x64,0xaa,0x38,0x21,0x18,0xd8,0xa, + 0x48,0xcd,0x69,0x98,0x6a,0x6,0xc4,0x8e,0x1c,0xa5,0x59,0x8a,0xd8,0xff,0x7a,0xe5, + 0xe5,0xda,0x7,0xd0,0xa0,0x3e,0x75,0x6a,0xff,0x6e,0x34,0xb,0x6,0xd,0xf2,0xc9, + 0xf,0xad,0x8f,0xda,0x7e,0x78,0x68,0x3,0x25,0xf,0xad,0xa5,0x4d,0x5b,0x5e,0xa3, + 0xdd,0xca,0x58,0x51,0xb7,0x46,0xc8,0x98,0x8e,0xf9,0xe,0x1,0x4c,0x6f,0x1e,0x6, + 0x55,0x65,0xea,0xdf,0x7f,0x13,0xd5,0xb5,0x6d,0xa2,0xce,0xfa,0xf3,0xe8,0xe3,0x6b, + 0xe,0xd0,0xa5,0xe3,0x9b,0xe9,0x2f,0xf0,0x93,0xc0,0x51,0xc8,0xfe,0x81,0xf1,0x13, + 0x29,0x51,0x6b,0xcc,0x7b,0x43,0x7a,0x74,0x3,0xda,0x6f,0x94,0xb6,0x0,0x8c,0x10, + 0x48,0x8e,0x99,0x40,0xf4,0xc6,0x1a,0xdd,0xc0,0xab,0x7d,0x75,0x75,0x78,0x5,0xca, + 0x1c,0xf9,0x98,0xef,0x95,0x82,0x62,0xf4,0x46,0xa4,0x9,0x0,0x4c,0xd7,0x35,0xb3, + 0xb9,0x59,0x6b,0x7f,0xce,0xf6,0x13,0x10,0x2,0x48,0x1,0x26,0xbb,0x9e,0x0,0x31, + 0xdc,0x36,0x60,0xfa,0xb7,0x78,0x51,0x70,0x3e,0xf9,0xeb,0xeb,0xe8,0x37,0x87,0xf6, + 0xd1,0xac,0xd3,0x7,0xd2,0xe8,0xd1,0x6b,0xb5,0xb2,0x3,0x11,0x18,0x98,0x29,0x78, + 0xcd,0x9a,0xd4,0x92,0x63,0x6c,0x1e,0x7e,0x18,0xdf,0xe1,0x90,0x6c,0xa1,0x7f,0xfe, + 0xfe,0x34,0x8a,0xf,0x99,0x4e,0x89,0x85,0xb,0xf5,0xc,0x46,0x4f,0xde,0x7d,0xb7, + 0x16,0x2,0x48,0xa5,0xd9,0x88,0xb1,0xdc,0x1c,0x36,0x2b,0xc7,0xe9,0xdb,0xc9,0x47, + 0x28,0xd5,0xf,0xaf,0x93,0x83,0x6e,0xdd,0x1a,0xb8,0x1f,0x4,0xfb,0xdc,0xf4,0xf0, + 0x23,0x74,0xf7,0x67,0xfe,0xd2,0xcb,0x2,0xa4,0x8e,0xec,0x37,0x64,0x10,0xb5,0xed, + 0xf7,0x82,0x73,0xa0,0xf9,0xe1,0xa7,0x9f,0x4e,0xc7,0xa8,0xf3,0xe0,0xab,0xf4,0xfc, + 0x33,0x6f,0x13,0xe6,0x4c,0x3d,0x59,0x29,0xf1,0x31,0x63,0x82,0xa4,0xcf,0x74,0x4f, + 0x98,0xf,0x11,0xdf,0xdb,0xda,0x30,0x41,0xea,0x73,0x34,0x70,0xd0,0x29,0xb4,0x6f, + 0xd7,0x2b,0xf4,0xaf,0xa3,0xcf,0xa0,0xbf,0xb0,0xa3,0xb,0x61,0x5,0x20,0xc4,0x78, + 0xf8,0x30,0xdf,0x6b,0xe3,0x3b,0x2,0xf9,0x10,0x19,0x8b,0x80,0x1e,0x5,0x44,0xe, + 0xee,0x3f,0xa8,0xeb,0x5f,0xf7,0xd1,0x8f,0xd2,0x6f,0x6f,0xb9,0xc5,0xbb,0xef,0xa, + 0xb2,0x4,0x4a,0x5d,0xfb,0x47,0x89,0x62,0x75,0x45,0xa6,0x35,0xa3,0x67,0x59,0x7d, + 0xca,0x7e,0xfa,0x2d,0x3,0x2d,0x14,0xd8,0x19,0xa6,0x4c,0x72,0xdb,0xf4,0xd7,0xa7, + 0xc2,0xd9,0x67,0xcc,0xff,0x65,0x4a,0xfb,0xb3,0xe6,0x5f,0x7e,0x64,0x2f,0x8d,0x3f, + 0xa9,0x5d,0x91,0x7f,0x17,0x7d,0xe1,0xb,0x1e,0x51,0x40,0xc,0xfe,0x0,0x72,0x9, + 0xcb,0x40,0x7e,0xc7,0xe7,0xe6,0x9b,0x36,0xd0,0x27,0xae,0x5f,0x43,0x5d,0xc7,0xdf, + 0xa2,0x27,0x8f,0x1e,0xa5,0x5,0x28,0xc8,0x0,0xb3,0xd,0xe9,0xf0,0x5e,0xc5,0x32, + 0x9d,0x2e,0x1c,0xd6,0x8a,0xe9,0x52,0xf3,0x33,0xff,0xe2,0x3b,0xf,0x5b,0x56,0xf7, + 0xa1,0x85,0x96,0x89,0x39,0xd0,0x31,0x1,0x88,0xc,0x8c,0xd5,0x68,0x66,0xc6,0xf1, + 0x3d,0xe6,0xd,0x1d,0x1e,0x1a,0x4b,0xb5,0xf7,0x51,0xe2,0x8c,0xe4,0x51,0x3a,0x35, + 0xbe,0x8e,0x9e,0xfc,0xed,0xdb,0x34,0x70,0xa0,0x6a,0x92,0xcc,0xa4,0x1e,0xdd,0xd3, + 0xbc,0x79,0x44,0x37,0xde,0xa8,0xda,0xea,0x57,0xbc,0x49,0xeb,0x37,0x3c,0x4e,0xdb, + 0x5b,0x7e,0xcf,0x4f,0xd1,0x6f,0x2,0xe8,0x18,0xb,0x10,0x7a,0xdc,0x4,0xaf,0x17, + 0x40,0x99,0xf5,0xda,0xa,0x10,0x64,0xd6,0x5d,0x86,0x1c,0x20,0xc5,0x3d,0xa,0x33, + 0x4f,0xf5,0x6e,0x59,0x35,0x65,0x2a,0x8d,0x2c,0x95,0x76,0x3f,0xd9,0x90,0x85,0xfc, + 0x5,0x3f,0x84,0x50,0x27,0x20,0xb7,0xfd,0xa1,0xed,0xd3,0xb4,0xbf,0xbe,0x6c,0x2c, + 0x6d,0x7e,0x40,0xed,0x54,0x5b,0xf5,0x8c,0xdf,0x6d,0xc7,0xbd,0x2,0xa8,0xe1,0x9a, + 0xfa,0x5a,0x5a,0x7e,0x78,0xf,0x5d,0xf6,0xbe,0xe,0x6a,0x6b,0xed,0xa2,0x87,0x1e, + 0xca,0xbf,0xa2,0x3c,0x45,0xb8,0xa7,0x49,0xb7,0x28,0xcb,0xa1,0x83,0xe0,0xa7,0x8b, + 0x4d,0x3c,0x9f,0x66,0xe,0x18,0xe0,0x1f,0x77,0x7c,0xe2,0x44,0xea,0x2f,0x66,0x1f, + 0x2,0x74,0xdd,0xed,0x7c,0x82,0xa8,0xdb,0xc8,0x51,0xd4,0x4f,0x11,0x5b,0xb,0x2f, + 0x6e,0x6,0x98,0x7a,0x77,0xa8,0x7b,0x9c,0xfe,0xd2,0xcb,0xf4,0xe6,0x39,0xf3,0xbc, + 0x48,0x44,0x3c,0xac,0xcd,0x5e,0x94,0x5f,0x73,0xb2,0x9d,0x66,0xd7,0xbd,0x45,0xcf, + 0x3f,0xbf,0x85,0x2e,0xbd,0xd4,0x3b,0xad,0xd0,0x7b,0x2,0x6e,0xbd,0xf5,0x6d,0xba, + 0xef,0xbe,0xdf,0xd1,0xcf,0x4f,0x9d,0x4b,0x1f,0x19,0x32,0xdb,0x4b,0x2e,0x22,0x2, + 0x82,0xf4,0x60,0x20,0x13,0x4,0xe5,0xb,0x1,0x7d,0x23,0xe9,0xef,0x81,0xe,0xd3, + 0x56,0xcd,0x0,0x74,0x3f,0xea,0x66,0xc0,0x7b,0x2e,0x32,0x87,0x56,0xf,0x71,0x2a, + 0x1,0x99,0xc8,0x8f,0xee,0xcf,0x28,0x42,0x93,0xd3,0x2c,0x0,0x69,0x20,0xfa,0xed, + 0x7d,0x4a,0xb7,0x4,0x0,0xf6,0xb2,0x73,0xb0,0xf,0x82,0x79,0xf4,0x87,0xbc,0x76, + 0x3f,0xb4,0x3f,0xbc,0xfd,0x4f,0xb7,0x1f,0xa1,0x31,0xcd,0x27,0xe8,0x73,0xb7,0x76, + 0x69,0x73,0xbe,0x27,0x0,0x51,0x40,0x18,0x0,0x84,0xd9,0xb4,0x69,0x7,0x9d,0xe8, + 0x78,0x96,0x9e,0x7f,0xfd,0xa9,0xd0,0xc9,0x4c,0xe5,0x48,0x45,0x99,0x65,0x18,0xf7, + 0xc4,0xf7,0xc5,0xdd,0x83,0x7e,0x4,0xa1,0x71,0xb0,0x29,0xea,0xd0,0xac,0xdd,0x7b, + 0xe8,0xe4,0x57,0x5e,0x49,0xab,0x47,0x42,0x9,0x8c,0x4b,0x47,0xef,0xa3,0x17,0x5e, + 0xd8,0x44,0xe8,0xa8,0x80,0xc6,0x8f,0xea,0x9e,0xda,0xdb,0xc1,0xed,0x8d,0xf4,0x8b, + 0x5f,0xfe,0x80,0x9e,0x3c,0xd1,0x91,0x3a,0x10,0x82,0x60,0x9c,0xd2,0xea,0xa3,0xcd, + 0xa8,0xcb,0xb1,0x13,0x82,0x83,0x81,0x32,0xc1,0x4,0x9,0x81,0xf2,0x77,0x3f,0xf4, + 0xa3,0x8a,0x48,0x62,0x59,0x4d,0xc8,0x44,0x7e,0xee,0x8e,0x5c,0xb1,0x62,0x45,0xc1, + 0xed,0xb9,0x80,0x0,0x38,0x22,0x27,0x4,0x8d,0xc5,0x52,0xb3,0xec,0x9a,0x6e,0xbf, + 0x40,0x8f,0x0,0x88,0xb2,0xcb,0x13,0xa,0xfe,0x80,0x1c,0x8e,0xeb,0x47,0xc8,0x2a, + 0x79,0x2f,0xde,0x8b,0x3,0xea,0x68,0xe2,0xf4,0x5a,0x9a,0x3e,0x2d,0xbf,0xfe,0x5b, + 0x26,0xc6,0xab,0xaf,0xa6,0xb6,0x81,0x30,0xbc,0xf,0x84,0xb9,0xed,0xf3,0x1d,0x34, + 0x63,0xce,0x3e,0x5a,0xd1,0xba,0x3f,0x35,0xd3,0x2f,0x1f,0x1c,0x42,0x10,0x39,0x7b, + 0xb0,0xbe,0x79,0x99,0x8b,0x80,0xa3,0x1b,0x45,0x0,0x52,0xd2,0x22,0x4b,0x42,0x35, + 0x5,0x66,0x27,0xf6,0xd3,0xf8,0x51,0xff,0xa3,0xfd,0x81,0xec,0xe8,0x8b,0xf2,0x9e, + 0x6e,0xb8,0x81,0x68,0xe2,0xc4,0x57,0x69,0xe7,0x8e,0xa7,0x52,0xf7,0xc0,0xda,0x5f, + 0xfa,0x6,0x4c,0x53,0x20,0x70,0x9f,0xf6,0x3d,0xf3,0xef,0xa5,0xb6,0x2f,0x85,0x13, + 0x93,0x2a,0xcb,0x7,0x50,0xea,0x28,0x44,0xd8,0x66,0x23,0x3f,0x10,0xd5,0xef,0x98, + 0x66,0x1,0x70,0xde,0x7f,0x40,0x6a,0x4b,0x69,0x1,0xf8,0xe6,0xbf,0xb9,0xc1,0x13, + 0x88,0xf6,0xdb,0xda,0x42,0x4b,0x13,0x9d,0xda,0xf1,0xb7,0xac,0xa3,0xdd,0xef,0xeb, + 0x7f,0xae,0xf5,0x30,0x8d,0x1b,0xb7,0xdf,0x6f,0x1b,0x67,0x3,0x48,0xc0,0xe4,0x90, + 0x99,0xb6,0x98,0x38,0x70,0x9a,0xd9,0xfb,0xde,0x5c,0xbb,0x8e,0x96,0x3d,0xfb,0x78, + 0x2a,0xbb,0xab,0xfa,0x1c,0x9f,0x3c,0xd9,0x5b,0x57,0x64,0xe,0x68,0x7f,0x61,0x5, + 0xf8,0x30,0xe1,0xc1,0xc9,0x44,0x78,0xe4,0x61,0x60,0x9b,0xba,0xdf,0x91,0x5d,0x2d, + 0xf4,0xc0,0x3,0x5e,0x9b,0xbf,0x18,0xf7,0xd4,0xbf,0xbf,0x7a,0x84,0x2d,0x44,0x8f, + 0xfe,0xfc,0x27,0x29,0x61,0xb,0x1,0x0,0xed,0xf,0xe1,0x24,0xb5,0x7f,0x18,0xe1, + 0x6d,0xf0,0xa0,0x21,0xf5,0x81,0x15,0xe0,0x1d,0xe6,0xac,0x80,0x62,0xa3,0x98,0xe4, + 0xe7,0xf2,0xcd,0x77,0x33,0x6c,0xb5,0x67,0x8,0x8,0x0,0x68,0xbc,0x40,0x9c,0x3f, + 0x2c,0x80,0x9d,0x3b,0xc3,0x63,0x1,0x4c,0x48,0x6d,0xfb,0xdb,0xef,0x50,0xfd,0x49, + 0x93,0x75,0xd,0xde,0x37,0xf9,0xa4,0x40,0x36,0xdb,0x97,0x9b,0x1a,0x68,0xec,0xa4, + 0x4e,0xed,0x77,0xb,0x23,0x8a,0xd4,0x88,0xf8,0x40,0x1b,0xe2,0x58,0xac,0xc3,0x59, + 0x86,0x25,0xbe,0x63,0x3b,0xd6,0x51,0x6,0xef,0x63,0xe2,0x80,0x84,0x17,0xce,0xdf, + 0x4f,0xdf,0x3f,0x76,0xd0,0x8b,0x39,0x30,0x4f,0x83,0x85,0x80,0x9c,0x7c,0xc4,0xbf, + 0x27,0x39,0x1f,0x81,0xbc,0x2d,0x2b,0xc3,0x6f,0x5c,0x10,0xec,0xf8,0xde,0x7d,0x74, + 0x72,0xe2,0x18,0x8d,0x68,0x7c,0x8b,0x86,0xf,0xa7,0xa2,0xde,0xd3,0xa7,0x3f,0xad, + 0x4,0xcc,0x29,0x6f,0xd3,0x5f,0x1d,0xdf,0x14,0x7c,0xde,0x36,0x2c,0x2b,0x0,0x5d, + 0x81,0x12,0x3a,0x7a,0x72,0xdf,0x1,0xed,0x7,0xe8,0x3c,0xfd,0x34,0x53,0x8c,0x23, + 0x7f,0xb1,0xc1,0xcf,0x98,0x13,0x8c,0xe4,0xf3,0xc8,0x73,0x21,0x3f,0x80,0x6c,0xc4, + 0x16,0x7a,0x24,0x4,0xba,0xb5,0x0,0x52,0x5e,0xbd,0x94,0xe3,0x2f,0x36,0x2a,0x38, + 0x97,0x9e,0x4e,0xb5,0x6d,0x46,0xf1,0x2d,0xd1,0x91,0x7e,0x31,0xda,0xa8,0xb4,0xff, + 0xb3,0x6d,0x47,0x68,0xf2,0xe4,0xf6,0xd0,0xbe,0x70,0x26,0x7,0xbf,0xf4,0xb0,0x6e, + 0xb1,0x8e,0x76,0x35,0xaf,0x63,0x89,0xef,0x58,0x67,0xf2,0x30,0x51,0xba,0x44,0xc8, + 0xc0,0xda,0xd7,0x77,0x51,0xbc,0x61,0x8f,0xff,0x5d,0x3e,0x6f,0xce,0xed,0x1f,0xf0, + 0x1,0x98,0x24,0xa6,0x3a,0x86,0x61,0xa4,0xd7,0xd5,0x99,0x35,0xe9,0x88,0xc2,0x61, + 0xa5,0x96,0x87,0x75,0x1e,0x24,0x3c,0x2,0x98,0xfe,0xc5,0xbc,0x27,0x58,0x3,0x90, + 0xbb,0x1f,0xd8,0xb2,0x44,0x7f,0xd7,0x29,0xc1,0x4d,0x28,0xb4,0x2f,0x60,0x4d,0x12, + 0x10,0x19,0x10,0xe4,0x27,0x1f,0x31,0xd0,0x4d,0x18,0x25,0x20,0xd0,0x73,0x51,0xf7, + 0xea,0x6a,0x47,0xfe,0x5e,0x40,0x6f,0x90,0x3f,0x4b,0xd9,0x79,0xb,0x81,0x40,0x2f, + 0x0,0xc8,0xf,0xb,0xa0,0x71,0x9b,0xe9,0xbf,0x37,0xed,0x7f,0x6,0x88,0xef,0x9b, + 0xff,0xbe,0xa6,0xf4,0xf2,0xa9,0x83,0xfc,0x68,0x2,0xc4,0x45,0x3d,0xc6,0x4f,0x19, + 0xac,0xb4,0xdd,0xe1,0xc0,0x5,0xf9,0x85,0x7,0x11,0xb0,0x8e,0xa5,0x6c,0xda,0xda, + 0xfd,0xe5,0xac,0x21,0xd9,0x8c,0x96,0xe4,0x2,0x10,0x24,0xa4,0xd1,0x6f,0xf,0xad, + 0xed,0x9c,0x46,0x33,0x11,0x28,0x43,0xde,0xa0,0x21,0xaf,0x2a,0x19,0x7c,0x1,0x66, + 0x2a,0x33,0xe,0x8,0xe2,0xee,0xc0,0x24,0xf,0x80,0xe2,0xd3,0xc5,0x7a,0xff,0xc4, + 0x41,0x82,0x61,0x71,0xe8,0x50,0xe0,0x90,0xa2,0xdc,0x13,0x3a,0x36,0x36,0x6f,0x7f, + 0x5,0xc1,0x6,0xfa,0x5e,0x32,0xcd,0x37,0x28,0x93,0x88,0xa2,0x2b,0x50,0x86,0x3, + 0x6b,0x6b,0x48,0x3d,0x8f,0x8e,0x49,0x93,0xa8,0x6e,0xcb,0x16,0x5a,0x72,0xe8,0x30, + 0x9d,0x91,0xae,0x39,0x1c,0x8a,0x80,0xb0,0x61,0xc5,0xd9,0x10,0x1,0xf9,0x7b,0x84, + 0x80,0x5,0xa0,0xc9,0xf,0x2,0x70,0xce,0xff,0xb1,0xc1,0xc1,0x33,0x20,0xbf,0xa7, + 0xfd,0x83,0x57,0x4f,0x9a,0xaf,0xb,0x6b,0xeb,0xb5,0xf6,0x7,0xd6,0xf6,0x6f,0x54, + 0xef,0xe4,0x51,0xbd,0xde,0x5d,0x3b,0x59,0x42,0x12,0x85,0xbf,0xf3,0x3a,0x48,0xa6, + 0xeb,0x25,0xb4,0x3f,0x34,0x31,0x34,0xe6,0xaf,0x1f,0x7f,0x5e,0x93,0x1f,0xc8,0x46, + 0xfe,0x6c,0xf0,0x9d,0x98,0x61,0x50,0x65,0xcf,0x68,0x3e,0x4c,0x6c,0x20,0x15,0xfb, + 0x9e,0x50,0xf5,0xf6,0x23,0x26,0x3f,0x80,0xd1,0xfa,0x3c,0x39,0x88,0x6f,0xd,0x28, + 0x2b,0x40,0x26,0x6,0xb1,0xeb,0x9b,0xd3,0x36,0x87,0xa2,0xa0,0x98,0xe4,0x47,0x86, + 0xa2,0xa8,0x10,0x10,0x0,0x7e,0xb6,0x1f,0x19,0x4,0xc4,0x41,0x3f,0x86,0xfc,0x49, + 0x64,0xbb,0xb5,0xaf,0x6f,0x12,0x78,0xa0,0xdb,0xf,0x80,0xf3,0xf,0x38,0x69,0x4a, + 0x6b,0x46,0x53,0x59,0x97,0x9f,0x21,0x9d,0x9e,0xbd,0x1d,0x64,0x63,0xed,0x2a,0xf7, + 0x43,0x53,0x7e,0xdb,0x1b,0xb9,0x4b,0x97,0x5e,0xd6,0x91,0xde,0x13,0x60,0x97,0xcb, + 0x6d,0x7f,0xe9,0x8d,0xe3,0x64,0xa3,0xb1,0xec,0xb9,0xfd,0x80,0xcd,0x9b,0x76,0xd2, + 0xb0,0x61,0x99,0xcd,0xff,0xb0,0xba,0xfb,0xd7,0xce,0xf3,0x9e,0xe0,0x27,0xd8,0xbb, + 0xef,0x1d,0xff,0xf8,0xd0,0x39,0xa,0x76,0xb4,0xf8,0x59,0x82,0x7c,0x18,0x61,0x81, + 0x70,0xe0,0x24,0xc7,0x9,0x8,0x70,0x57,0x20,0x6b,0x28,0xf7,0x29,0xce,0x27,0x57, + 0xf4,0x25,0xf9,0x75,0x79,0xf2,0x4b,0x1b,0x1c,0x80,0xa8,0xbd,0xb4,0x0,0xd8,0xbb, + 0x6e,0xcc,0xff,0x18,0x72,0xdc,0x5b,0x12,0x80,0xb3,0xf8,0xd8,0x1d,0x7d,0x33,0x67, + 0xb4,0xf9,0xeb,0xb6,0x99,0x9b,0xd,0xac,0x5d,0x59,0x2b,0x72,0x28,0x2d,0x8f,0x87, + 0x61,0x80,0x88,0xdc,0x24,0x7e,0xe4,0xe1,0x54,0x53,0x83,0x6b,0xd7,0xa,0x7b,0x1d, + 0xdf,0xb3,0x64,0x2f,0xe,0x20,0xce,0x9d,0x97,0x29,0xc8,0x6f,0x93,0x27,0xc7,0x69, + 0xe8,0xd0,0xd4,0xf7,0x62,0xde,0x13,0xb6,0xfd,0xe1,0xf,0xa9,0x1d,0xc3,0x45,0x86, + 0xa4,0xc0,0x3d,0xc8,0x80,0x20,0xff,0x1e,0x48,0x87,0x3,0xc7,0x86,0xa7,0x2a,0xeb, + 0x3a,0xff,0x4a,0xf,0x7d,0x4d,0x7e,0x20,0x3d,0x12,0x50,0xe6,0xfb,0x13,0x23,0xfe, + 0x82,0x16,0x80,0x17,0x1b,0x87,0x1e,0x0,0xa6,0x88,0xe,0xa7,0xb5,0x92,0x7b,0xbc, + 0xf0,0xfb,0x3a,0xba,0xf4,0x52,0x2f,0xa0,0x45,0xbe,0xe4,0xdd,0x21,0x8c,0x58,0x61, + 0xdb,0xa0,0x29,0x59,0x99,0x7f,0xf8,0xa3,0x3,0xbd,0x71,0xc,0x31,0xaf,0x11,0x22, + 0x85,0x91,0x9c,0xbf,0xc0,0x16,0x2,0xb9,0x60,0xf7,0xab,0xaf,0x69,0xc1,0x98,0x48, + 0x8e,0xa2,0x75,0xeb,0x52,0x8e,0xb6,0x62,0xde,0x13,0xb6,0x9d,0x7f,0x41,0x33,0xfd, + 0xc6,0x6c,0xe7,0xd9,0x8a,0xfc,0xd1,0x80,0x36,0x78,0xa0,0x10,0xb2,0xd,0x6f,0xdb, + 0xe1,0x85,0x3,0x63,0x40,0x90,0xc8,0x26,0x8c,0xe9,0xc4,0x16,0x2f,0x5e,0x9c,0x7b, + 0xa5,0x1d,0x7a,0x1d,0xbd,0x49,0x7e,0x5d,0x6e,0xe8,0xd6,0x2c,0x16,0x80,0x47,0x2d, + 0xaf,0x32,0xd,0x53,0x4e,0x4a,0x9d,0x22,0xda,0xcf,0xac,0x6d,0x6e,0xf8,0xf3,0x77, + 0xfb,0xdb,0xc2,0xcc,0xdd,0x42,0x0,0x53,0x99,0xb5,0xff,0xcb,0x2f,0x83,0x8c,0xe3, + 0x68,0x16,0x37,0x57,0xac,0x63,0xed,0xa8,0x40,0x7f,0xbb,0x1c,0xc7,0x10,0xf7,0xce, + 0x8c,0x25,0x32,0x7,0x2c,0xad,0xdf,0x32,0x90,0x26,0x89,0x1c,0x9e,0xc5,0xbc,0xa7, + 0x75,0xeb,0x54,0x9b,0x7f,0xdc,0x34,0x7f,0x5f,0x57,0xb6,0xd9,0x92,0x85,0xdd,0x29, + 0x13,0x83,0x48,0xb,0x20,0x9e,0x8f,0x5d,0xea,0xd0,0x27,0xe8,0x6d,0xf2,0xeb,0xb2, + 0xed,0xd,0x32,0xe,0xc0,0x7,0xe2,0xca,0xd9,0x1,0x88,0xc9,0x3b,0x46,0x8e,0x8, + 0xee,0x4e,0x24,0xb5,0x5,0x80,0x38,0x80,0x24,0x25,0x7d,0xa1,0xf1,0xc8,0xff,0xf5, + 0x12,0x63,0x66,0x32,0x77,0x7b,0xa,0xf6,0xfc,0xd7,0xd7,0xa7,0xb6,0x75,0x9e,0x18, + 0xad,0x2d,0x0,0xbe,0xa9,0xa6,0x4d,0x9b,0x7c,0x41,0x10,0x98,0xc1,0xa8,0x1b,0x64, + 0x33,0x95,0xaf,0x79,0xff,0x79,0x7a,0x5c,0x3f,0x50,0xec,0x7b,0x42,0x57,0x61,0x6c, + 0xf0,0x38,0x1a,0x86,0x81,0x55,0x4a,0xeb,0x7,0x66,0xff,0x11,0x64,0xf6,0x33,0x4, + 0x5b,0xe0,0x4,0xa3,0x12,0xae,0x19,0x50,0xba,0xe8,0xb,0xf2,0xeb,0xf2,0xed,0xd, + 0x32,0xe,0x40,0xc3,0x98,0x96,0x29,0xb,0x40,0x51,0x7c,0xcf,0x5e,0x79,0x80,0x3a, + 0xc4,0xd3,0x4e,0x75,0xec,0xa5,0x36,0x7e,0x84,0xba,0xd7,0x77,0xd0,0x8c,0x19,0x1e, + 0x41,0xf2,0x69,0x2f,0x77,0x7,0xf6,0xfc,0x43,0x29,0x42,0xfb,0xa3,0xcc,0xf,0x4c, + 0x99,0x13,0x30,0xff,0x31,0x32,0x10,0x42,0x20,0xd,0x56,0xfa,0x72,0xaf,0xba,0x26, + 0x59,0xa9,0xce,0xb8,0x83,0x14,0x5d,0xe1,0xf,0x7d,0xe5,0x8b,0x87,0x68,0xdf,0x3e, + 0xea,0x95,0x7b,0x1a,0x3b,0x96,0xe8,0xd9,0x5f,0x9a,0x1c,0x84,0x61,0xda,0x9f,0x85, + 0x40,0x2c,0x16,0xf4,0x1,0x18,0xf8,0x23,0x2,0xf9,0x7b,0xe1,0x55,0x74,0x28,0x12, + 0xfa,0x8a,0xfc,0xfa,0x1a,0xf6,0x86,0x36,0xb6,0x0,0x32,0x34,0x3,0xf4,0xd2,0xb2, + 0x0,0xe2,0xc8,0x8e,0xab,0x18,0xf1,0x4b,0x75,0x23,0x57,0x61,0x9a,0x2d,0xc5,0x88, + 0x53,0x8e,0xb7,0x52,0x63,0x5b,0x3f,0x7a,0xf4,0x97,0x93,0x35,0x41,0x40,0x1a,0xc0, + 0xef,0xb7,0xcf,0x3,0x7c,0xe,0x96,0xf8,0xdc,0x7b,0x6f,0x30,0x1d,0xc1,0x47,0xaf, + 0x1e,0x4d,0x8d,0x47,0x47,0x7,0x52,0xef,0x37,0x99,0xdc,0x7b,0xd0,0xfe,0xa1,0xde, + 0x7f,0x9,0xf1,0x9c,0xb5,0x77,0x3c,0x3,0x5d,0x1e,0x3d,0x90,0xa4,0xcb,0x17,0x2d, + 0xf4,0xbb,0xf1,0x8a,0x75,0x4f,0xa8,0xe6,0xa2,0x4f,0x2e,0xa0,0x87,0xff,0xee,0x1e, + 0x9d,0xb7,0x60,0x7f,0xcb,0xb6,0x60,0xfb,0x9f,0xe7,0x27,0xb4,0xd3,0x81,0x8b,0x75, + 0x64,0x5,0x72,0x28,0x7d,0xf4,0x25,0xf9,0xf5,0x75,0xe4,0x97,0x8c,0x3,0xc,0x4c, + 0x13,0xc0,0x5b,0xa7,0xc0,0x50,0xe0,0x6,0x93,0x9e,0x1b,0x67,0x2e,0x6c,0x9e,0x48, + 0xb1,0x11,0x23,0x28,0xd6,0xd9,0xa9,0x93,0x74,0xc4,0x12,0x31,0x7a,0xfd,0x95,0x19, + 0xfa,0x3d,0x5d,0xbf,0xde,0x7b,0xd1,0xa1,0xe9,0xf8,0xa5,0x7,0xba,0x23,0x8f,0x3c, + 0x7,0x90,0x29,0xf3,0xa1,0x29,0x61,0x32,0xef,0x6e,0x99,0x46,0xa7,0x26,0xbc,0xf6, + 0x7c,0x82,0x8c,0x10,0x40,0x72,0x10,0x21,0x25,0xa4,0xf9,0x9f,0x96,0xc2,0xc,0xcf, + 0x9a,0x13,0x86,0x10,0xe9,0x58,0x6,0x6d,0x49,0x48,0x53,0xdb,0x3c,0x9a,0xa7,0xd6, + 0x8f,0xa0,0x5f,0xfe,0x92,0x8a,0x7a,0x4f,0xd3,0xa7,0x13,0x2d,0xff,0x79,0xd,0xd, + 0x55,0x56,0xc,0xcc,0xff,0x61,0xdc,0x3,0x80,0x83,0x50,0x27,0x44,0x1,0xee,0xe8, + 0x86,0xe0,0xd6,0x6f,0x19,0xb,0xd9,0xe6,0xd0,0xb7,0xe8,0x6b,0xf2,0xeb,0x6b,0xc9, + 0x2f,0xeb,0xb2,0xbc,0x20,0xa9,0xf0,0xdf,0xa4,0xb7,0x2e,0xe,0xe5,0x14,0xe0,0x98, + 0xa8,0x83,0xd3,0x73,0x37,0x98,0x88,0xba,0x8f,0x8d,0x3f,0x97,0x36,0x6f,0xbb,0x88, + 0x96,0x2d,0x43,0xe6,0x9b,0xd4,0x4b,0xcf,0x4,0x90,0x44,0x8,0x5b,0x62,0x3f,0xf7, + 0xf5,0x83,0xec,0x9c,0x91,0x9b,0x63,0xee,0xdf,0xff,0xc1,0x99,0xf4,0x8f,0x73,0xbc, + 0x41,0xf9,0x68,0x8a,0xfb,0x66,0xbf,0xd4,0x8a,0x56,0x62,0x53,0x3b,0x4f,0x60,0xd6, + 0x0,0x20,0x3,0x25,0x4e,0xf4,0xc3,0x5a,0xfe,0x54,0x2b,0x4d,0x9b,0xfe,0x51,0x6a, + 0x6d,0xa5,0xa2,0xdc,0x13,0x6,0x3,0xd,0x1b,0x7a,0x6,0xfd,0xe4,0x7f,0xfd,0xb3, + 0x3f,0xb6,0xc1,0xbf,0x13,0x1c,0xc4,0xc4,0x97,0xa6,0x7f,0xb6,0xa0,0x1f,0xd1,0x3c, + 0x58,0x38,0x78,0x50,0xb7,0xf7,0xe9,0x50,0x7c,0x60,0x2c,0x3f,0xf,0xe9,0x65,0xf4, + 0x5,0xf9,0x81,0x80,0x4d,0x7c,0xee,0x1d,0x77,0xc4,0x8e,0x20,0x21,0xa8,0x95,0x70, + 0xd2,0x4f,0x6,0x12,0xf0,0x5,0x90,0x76,0x8,0x2,0xfe,0x3c,0x7d,0x27,0x79,0x3e, + 0x80,0x2f,0x5d,0xbc,0x80,0xbe,0xfd,0xb3,0x9f,0xd1,0x7d,0xca,0xa,0xb8,0xf5,0xbe, + 0xfb,0xe9,0x93,0x5f,0xfe,0x30,0x4d,0x9d,0xe,0x77,0xf9,0x21,0x9a,0x3b,0x97,0xe8, + 0xb5,0xd7,0x30,0x5,0x93,0xa7,0xf9,0xee,0xbe,0x3b,0xfb,0x92,0x4d,0xe3,0x30,0xeb, + 0x7d,0xca,0x94,0x1a,0x5a,0x38,0xfe,0x52,0xaa,0x3f,0xd2,0x10,0x30,0xda,0xb5,0x3, + 0xd0,0x3e,0x21,0xc3,0xd4,0x65,0x5a,0x68,0xe9,0x1d,0x9,0x6f,0xf2,0x12,0x75,0xef, + 0x3a,0x8b,0x91,0x6a,0xe6,0x2c,0xfd,0xf4,0x5f,0x7a,0xe7,0x26,0x3d,0x49,0xd9,0x39, + 0x61,0x2,0xb5,0x8d,0x1c,0x46,0x3f,0xed,0x1c,0x40,0x9f,0x6a,0xd9,0x43,0x97,0x5d, + 0xe6,0x4d,0x25,0x76,0xc6,0x19,0x44,0x48,0x1d,0x50,0xc8,0x3d,0xb1,0x72,0x3f,0xe3, + 0xcc,0x29,0x34,0xf5,0xcf,0x2f,0xd0,0xda,0x1f,0xd8,0xc7,0x1,0x40,0x2c,0x25,0x58, + 0xfb,0x87,0x74,0x7,0x6,0xe6,0x25,0xa4,0xd4,0x70,0x66,0x9d,0xb5,0x58,0xcf,0x63, + 0xe0,0x2c,0x80,0xbe,0x82,0x9c,0xbf,0x80,0x23,0x3b,0xed,0x71,0x3,0xbd,0x4d,0x7e, + 0x20,0xaf,0xc9,0x41,0x79,0xb4,0x9c,0x2f,0x4,0x84,0xa0,0xd0,0xc9,0x40,0x95,0x10, + 0x58,0xba,0x75,0x8b,0x9e,0xa8,0x3,0x80,0x15,0x70,0xe3,0x8d,0x37,0x29,0xde,0x27, + 0x69,0x4c,0xed,0xd5,0xb4,0x64,0xd9,0x23,0x6a,0xeb,0x71,0x3a,0xeb,0x2c,0xcf,0x89, + 0x86,0xe2,0x20,0x10,0xde,0x78,0x83,0x8,0xd9,0xc0,0xa1,0xd,0xed,0xf4,0x7d,0x72, + 0x80,0x1e,0x67,0xd0,0x81,0x99,0x8c,0xa0,0x9c,0x89,0x63,0x2f,0xa4,0xb3,0x8f,0x8c, + 0xd3,0x4,0xc6,0x23,0xd5,0xda,0x9f,0xf3,0xed,0x53,0x86,0xc8,0x3f,0xa2,0xe0,0x64, + 0xa1,0x68,0xcc,0xb,0xf3,0x5f,0xef,0x57,0x9f,0x3a,0x41,0x96,0x4,0x52,0x90,0xc3, + 0xa2,0x99,0x35,0x9b,0xd6,0xe2,0xd8,0xf1,0x63,0x69,0xc8,0xdb,0xc7,0xe9,0xe3,0x75, + 0x9d,0x34,0x6e,0xdc,0x73,0x74,0xfc,0xb8,0x27,0x4,0x7a,0x72,0x4f,0xfc,0x58,0x57, + 0xaf,0x26,0x3a,0xef,0xfc,0x89,0xd4,0x70,0xfd,0x5d,0x74,0xf7,0xb9,0xd7,0x68,0x81, + 0x93,0xe6,0xa0,0xc1,0x8c,0x44,0xe3,0x27,0xea,0x5c,0x80,0x7a,0x14,0xa0,0x8,0xda, + 0xf2,0x2a,0x6e,0xda,0xff,0x3b,0x52,0x33,0x37,0xeb,0xa4,0x20,0xf0,0x87,0x98,0x7c, + 0xf6,0xc1,0x38,0x0,0x27,0x10,0x8a,0x85,0xd4,0xcc,0x42,0x17,0xeb,0x65,0xc2,0x72, + 0xe4,0x96,0x2,0xf9,0xf5,0x75,0xc3,0x36,0xb6,0x59,0x5d,0x81,0x3a,0x25,0x18,0x72, + 0x1,0x82,0x5c,0x72,0x44,0xa0,0x99,0x9a,0x5b,0x2f,0xd5,0xa7,0x7e,0x52,0xb3,0x47, + 0x7e,0x75,0xb3,0xb7,0x5d,0x7b,0x2d,0xdd,0xa3,0xac,0x0,0x24,0xed,0x84,0x26,0x3a, + 0xf7,0xc0,0xc9,0x34,0x6a,0xff,0x75,0x74,0xee,0xbb,0x27,0x70,0x9a,0x3e,0x3a,0xf3, + 0x4c,0x2f,0x39,0x26,0xbe,0xaf,0x36,0xc9,0x6b,0x99,0x18,0x72,0xc9,0xe6,0x3e,0x80, + 0xe3,0x66,0xcc,0xec,0x47,0x7f,0xbb,0xe8,0x2f,0xe8,0x81,0x1,0xb3,0xf4,0x36,0x26, + 0xff,0x31,0xa3,0x35,0x33,0xc1,0xcf,0x60,0x2c,0xe6,0x2c,0xf4,0xe7,0x24,0x14,0xda, + 0x7f,0xdd,0xa4,0x89,0xf4,0x9b,0x4b,0x2f,0xa5,0x1d,0xd7,0x7e,0x82,0x76,0x8c,0x1a, + 0xa7,0xc7,0xd4,0x77,0x8e,0xf7,0xa6,0xe9,0x8a,0x8f,0x51,0xf7,0x3d,0x74,0x30,0x3d, + 0x76,0xd6,0x2,0x7a,0x62,0xe4,0x2d,0x74,0xc7,0x9d,0x27,0xeb,0x34,0xe0,0xc8,0xf, + 0x0,0x59,0x82,0x7b,0x82,0x93,0x10,0xbf,0x37,0x77,0xe9,0x85,0xdd,0x93,0x5f,0xa7, + 0x84,0xf7,0x8,0xe7,0xbd,0xeb,0x64,0x3a,0x7e,0xe9,0x6d,0xf4,0x9f,0xef,0xb9,0xc6, + 0x73,0x49,0x90,0x15,0xfe,0xb,0xad,0x8f,0xcc,0x40,0x6a,0x69,0xa7,0x3,0xf3,0x47, + 0x1,0x72,0x1c,0x84,0xec,0x1,0xc0,0x60,0x21,0x23,0x28,0xce,0x9c,0x9c,0x8a,0xdb, + 0x70,0x28,0x1e,0x6c,0xf2,0xdb,0xbe,0xb5,0x52,0x21,0x3f,0x90,0xd9,0x2,0x10,0xd3, + 0x4e,0x5,0xf2,0x2,0x92,0x1c,0x14,0x24,0xe,0xd7,0x93,0x75,0xa6,0xde,0x70,0x90, + 0x1f,0x8e,0x40,0xbd,0xcf,0x7c,0xce,0x3d,0x78,0x32,0xed,0x7f,0xfb,0x6a,0x8a,0xcd, + 0x79,0x95,0x9e,0x7c,0x61,0x85,0x56,0xcc,0xc8,0x80,0x3,0x21,0x80,0x53,0xa1,0xd9, + 0x6d,0xb0,0xe0,0x4,0xf1,0xc1,0xc1,0x69,0xd3,0xa6,0xd3,0x9f,0xcc,0x5d,0x48,0x67, + 0x1d,0x18,0x4d,0xed,0xca,0x1a,0xee,0xc7,0x6d,0x7e,0x55,0x40,0x7f,0xa5,0xa5,0xa1, + 0xfd,0x59,0xf3,0xcb,0x69,0xcb,0xf5,0x68,0x39,0x9e,0x25,0x58,0x9,0x2b,0xcc,0x60, + 0xa4,0x9b,0x2e,0x38,0x16,0xfb,0x6b,0xbc,0xa6,0x40,0xb2,0xb1,0x91,0x3a,0xa7,0x4c, + 0xa1,0xa7,0xbe,0xf4,0x37,0x5e,0xb9,0x33,0x67,0x50,0x4c,0x69,0xfc,0x24,0x48,0x36, + 0x7b,0x86,0x17,0x61,0x8,0x89,0xa5,0xc8,0xf8,0x43,0x1a,0x47,0x8b,0xfe,0xf6,0x3f, + 0xa8,0xdf,0xd7,0xff,0x92,0x7e,0xfe,0xf3,0x97,0xe9,0xcf,0xfe,0xc,0xe3,0xb4,0xbd, + 0xe1,0xc2,0x1c,0x20,0x14,0x36,0xaf,0x8a,0x54,0x6,0x78,0x6,0x7,0x8e,0x9e,0x4a, + 0x5d,0x8b,0xff,0x8d,0x56,0x4c,0x3d,0xdd,0xd7,0xfc,0x9a,0xfc,0xda,0x1,0x10,0xf7, + 0x96,0x48,0x9,0xa6,0x2c,0x80,0xf8,0x21,0x64,0xf6,0x89,0x5,0xf3,0x16,0x60,0x14, + 0xa0,0xcc,0xa,0xcc,0x3d,0x0,0xa2,0xfd,0x7f,0x87,0xaa,0x94,0xcb,0x6,0x54,0x5c, + 0xf0,0xf3,0xc5,0x94,0xe2,0x99,0x66,0x10,0x2a,0x25,0xf2,0x3,0x69,0x57,0x3f,0x6c, + 0xa6,0x5,0xeb,0x67,0x4d,0xa,0xe2,0xd,0xc,0x22,0xbf,0xdd,0xef,0x87,0x6,0x23, + 0x33,0x30,0x4f,0xc4,0x39,0x2a,0x95,0x46,0x5c,0x17,0x6e,0xde,0x74,0x4c,0x31,0xc6, + 0x73,0xfa,0x69,0xef,0x7a,0x4d,0x17,0xfd,0x61,0xd0,0x26,0xfa,0xca,0x7d,0x3f,0xa6, + 0x4b,0x3f,0xe8,0x85,0xa,0xff,0xea,0x57,0xe4,0xcf,0xc5,0x9,0x60,0xf2,0xc,0x5c, + 0x1a,0x72,0x6,0x41,0x31,0xfb,0xb7,0xd6,0xd1,0x3f,0xdc,0x7a,0x3,0xcd,0x3b,0x3c, + 0x99,0xfa,0xff,0x71,0xab,0x8e,0xf3,0x6f,0x54,0x6d,0xdb,0x63,0x93,0x26,0xf9,0xa6, + 0xbf,0xae,0x57,0x6,0xf3,0xdf,0x6e,0xfb,0xfb,0xd3,0x84,0xb7,0x6c,0x4b,0xcd,0x53, + 0xd8,0xd5,0x41,0x6f,0x9c,0x7f,0x1e,0xfd,0xea,0xaa,0xf,0xd0,0x4b,0x1f,0xbd,0xda, + 0xdb,0xa8,0xc8,0x1e,0xdf,0xb8,0xc1,0x2b,0x63,0xfa,0x29,0x81,0x67,0x35,0x72,0x62, + 0x33,0xed,0x51,0xe7,0xf,0x9d,0x30,0x9e,0xae,0x7e,0xe6,0x3f,0xe8,0xd8,0x43,0xdf, + 0xa4,0xce,0x13,0x6b,0x73,0x6a,0x6a,0xc3,0x4a,0x98,0x38,0x75,0xa,0xd,0xb9,0xe6, + 0x66,0x5a,0xfa,0xa1,0x4f,0x53,0x6d,0x7d,0x9d,0x96,0xc,0x1c,0xf0,0xa3,0x5,0x40, + 0x4d,0xdc,0x7f,0xde,0xba,0x50,0xa4,0x5,0xc3,0x30,0x66,0x39,0x35,0x18,0x79,0x6d, + 0x7f,0x39,0x14,0x58,0xa7,0x5,0xe7,0x59,0x8b,0x5e,0x79,0x4d,0x5b,0x60,0xb7,0xcf, + 0x9e,0xdd,0x7d,0xa5,0x1c,0x7a,0x4,0x49,0x7c,0xc0,0x36,0xf7,0x19,0xc5,0x20,0x7f, + 0xa1,0x13,0x85,0xa4,0x59,0x0,0xfe,0x40,0x1a,0x45,0x5a,0x39,0x3a,0x30,0x35,0x15, + 0x58,0x2a,0x30,0x48,0xc2,0xf7,0xac,0xe3,0x25,0x36,0x63,0x8,0x30,0x67,0xdf,0x4d, + 0xca,0xa,0xc0,0xec,0xc2,0xc7,0x8c,0x10,0xd0,0xe6,0x6d,0x57,0x8d,0x6e,0x12,0xac, + 0xf8,0x93,0xbf,0xa7,0x97,0x9b,0x76,0x53,0x6b,0xd3,0x2e,0x7a,0x26,0xfe,0x5f,0x34, + 0xf5,0x9c,0x26,0xa5,0x9c,0xf,0xea,0xb6,0x74,0x5d,0xc3,0x10,0x65,0x6d,0x8c,0x54, + 0xd2,0x64,0x38,0x7d,0xf2,0xcc,0x73,0xe9,0xcc,0x63,0xea,0x7a,0x7,0x3c,0x4b,0x42, + 0x93,0xdf,0x68,0x7e,0xad,0xf5,0x45,0x1b,0x3f,0x40,0x7c,0xf3,0x43,0xc8,0x29,0xc1, + 0x0,0x9f,0xfc,0x5b,0xbc,0xf9,0x0,0xf0,0xc3,0x74,0xaa,0xfb,0xec,0x18,0x30,0x80, + 0xda,0x14,0x51,0x56,0x5f,0xb1,0xd0,0x2b,0xc3,0xdc,0xbb,0xce,0xc7,0x8f,0x4a,0xed, + 0x50,0x5a,0x76,0xbc,0xa7,0x89,0x91,0xa2,0xb,0x24,0xc5,0x10,0x5d,0xf4,0x3e,0x3c, + 0x7a,0xc1,0x35,0xb4,0x7f,0xf2,0xf9,0x74,0xd5,0xb6,0xb5,0x74,0xd9,0xc1,0xc7,0xa8, + 0xbe,0x75,0xb,0x3d,0xf1,0xd8,0xcb,0x94,0xc0,0x34,0x61,0xc9,0xe,0x5a,0xbd,0x26, + 0x46,0x4d,0x4d,0x8d,0x34,0x6c,0xf4,0x68,0x6a,0xbe,0xea,0x23,0x34,0xe7,0xce,0x45, + 0xf4,0xbb,0xa9,0x67,0x7a,0x55,0x35,0x73,0x14,0xf8,0xf1,0xfe,0xfc,0x23,0x6c,0x37, + 0x66,0xff,0xb6,0x2d,0xfe,0x3d,0xf9,0x93,0x82,0x64,0xa,0xed,0x95,0xed,0x7f,0x16, + 0x14,0xea,0x3e,0x32,0x99,0xa3,0xe,0xd1,0x21,0x13,0xf1,0x81,0x52,0xd3,0xfc,0x8c, + 0xd0,0x5a,0xa0,0x27,0x0,0xaf,0x49,0xa3,0x98,0x30,0xc3,0xcf,0x9,0x68,0xd,0xe, + 0xa,0x4c,0xbf,0xc5,0xd9,0x77,0x20,0x2c,0x94,0xe9,0x9d,0x18,0x39,0x42,0x6b,0xa2, + 0xe3,0x13,0x26,0xf8,0xdd,0x73,0xdc,0x4e,0xd7,0x4d,0x89,0x90,0x8a,0xac,0x15,0x2f, + 0xa8,0x1d,0xdb,0xdf,0x28,0xca,0xd0,0xe5,0x19,0x22,0x24,0x2d,0x3b,0x9b,0x13,0x7e, + 0xe8,0x2a,0x99,0xfa,0xc9,0xf9,0xb,0x1,0x3d,0x7b,0xd1,0xd6,0xad,0x3a,0xe7,0x3f, + 0xae,0xbe,0xa4,0x36,0x4e,0xaf,0x9e,0x33,0x8f,0x7e,0xbb,0x68,0x11,0xbd,0xb0,0xf0, + 0x7d,0x5e,0xd9,0x7a,0x7e,0xaf,0x13,0x5e,0xe3,0xbe,0xb6,0x2e,0x95,0xa7,0x5f,0x3a, + 0xd,0xd5,0xfa,0x48,0xd3,0x4f,0xdf,0xc9,0xb3,0xc,0xe7,0x1,0x26,0x3e,0xca,0xdb, + 0x3,0x81,0x84,0xa8,0xca,0x44,0xd2,0xab,0x3f,0x84,0xce,0x9e,0xd4,0x73,0xc7,0xe4, + 0x20,0xba,0x1e,0xe6,0x22,0xac,0xf9,0x79,0x5d,0x36,0x1,0xf4,0x50,0x60,0xf5,0x1d, + 0x89,0x40,0xae,0x18,0x38,0x80,0xbe,0xf0,0xa7,0x7f,0xe6,0x3d,0x4b,0x27,0x0,0x7a, + 0x1d,0xc5,0x24,0x7f,0xe4,0x16,0x0,0x80,0x97,0x24,0x6e,0xcd,0xaa,0x13,0x98,0x15, + 0x28,0xc4,0x2,0xb0,0xc1,0x13,0x71,0xa0,0x19,0xd0,0xb4,0xd9,0x8b,0x62,0x83,0x15, + 0x90,0x49,0x10,0xf0,0x6b,0x79,0xa6,0x3a,0x96,0x87,0xf1,0xca,0x57,0xb5,0xd1,0x38, + 0xf9,0x70,0x7e,0x58,0x37,0x9f,0x6c,0xf7,0xdb,0x5e,0x7f,0x4d,0x7e,0xdd,0x8d,0x56, + 0x13,0x98,0xbb,0xd0,0x9f,0xba,0x2c,0xd9,0x45,0x27,0x94,0x79,0xff,0xd6,0x59,0x67, + 0xd1,0x8b,0xf0,0xe6,0xa1,0x8d,0x8f,0x36,0x88,0x4e,0xbc,0xa1,0xe,0x38,0xa2,0xda, + 0xdd,0x43,0x86,0xa6,0x2,0x86,0x88,0x52,0x42,0x0,0xce,0x39,0x34,0x5,0x94,0xe6, + 0x1e,0x3e,0xa9,0x99,0xe2,0xca,0x64,0xcf,0x3a,0x70,0x87,0x52,0xbf,0x10,0x9e,0x31, + 0xb4,0xc6,0x3e,0x45,0xfc,0x21,0xca,0x32,0xf0,0x53,0x7e,0xe9,0x64,0x0,0x5e,0xd8, + 0x75,0xc0,0xd3,0xaf,0xaf,0x9d,0xf4,0x4b,0x8,0xb4,0xfd,0x71,0x2f,0x3b,0x44,0xb3, + 0x8d,0x5,0xb5,0xfa,0x38,0xf2,0xf7,0x1d,0x4a,0x55,0xf3,0x33,0x42,0x6b,0x73,0xd8, + 0xa4,0x7,0x7,0x41,0xfa,0xa1,0xb,0x29,0x26,0x26,0x9,0x11,0x93,0x83,0x64,0x4, + 0xcf,0xc6,0x63,0x86,0xde,0xc6,0x44,0x54,0x5e,0x60,0xb4,0x9d,0x11,0x2e,0x2c,0x18, + 0x40,0x70,0x1c,0x5,0xb2,0xb3,0x99,0xcf,0xa4,0xd7,0x4b,0x33,0xc5,0x36,0x60,0x6b, + 0x7d,0x20,0x53,0xb7,0x9f,0xad,0xfd,0xb5,0x10,0x50,0xc7,0xb2,0x0,0x58,0x3a,0x64, + 0x10,0xfd,0xfc,0xca,0x2b,0xe8,0x91,0xab,0xaf,0xd6,0xc4,0x4f,0x22,0xe7,0x77,0x63, + 0xa3,0x97,0xe9,0x8,0x53,0x74,0x37,0xd,0xf0,0x4,0xc2,0xce,0x6d,0x5e,0x3f,0xbc, + 0xe9,0x8e,0xf3,0x2d,0x82,0x10,0x70,0xf6,0x9e,0xae,0x10,0xab,0x80,0x85,0xab,0x67, + 0xee,0x7b,0x51,0x87,0x49,0x2e,0xb,0x16,0xc7,0xb1,0x63,0x14,0x6b,0x3d,0xa6,0x2d, + 0x81,0x98,0xb2,0x8,0x12,0x7a,0x64,0x50,0xcc,0x9b,0x24,0x54,0xf4,0xff,0x63,0xe4, + 0x9f,0x9c,0x15,0x98,0x7,0x0,0x25,0x31,0x65,0x98,0x3a,0x6,0xfd,0xff,0x57,0xc, + 0x1a,0xe8,0x4,0x40,0x1f,0x42,0xa7,0xcb,0xc3,0x14,0x76,0x4a,0x0,0xe4,0x9b,0x26, + 0x2c,0x17,0x14,0x6a,0x1,0x64,0x3c,0x98,0x9d,0x81,0xa8,0x71,0x3f,0x13,0x57,0x1f, + 0xc8,0x11,0x28,0xee,0xc4,0x6e,0x6,0xf8,0xa9,0xc4,0xad,0xf1,0xf7,0x4c,0x7e,0xbb, + 0x59,0x60,0xb,0x1,0xb9,0xe4,0xfd,0x38,0x47,0xa,0x12,0x86,0x3f,0xe3,0xf,0x2f, + 0x77,0xa5,0xc2,0x94,0x6d,0xc7,0x1f,0xe0,0xf7,0xfd,0x9b,0xc9,0x4b,0xd1,0xed,0x97, + 0x50,0xe7,0x7d,0xe2,0x9e,0x7b,0xe8,0x44,0x53,0x53,0xaa,0x60,0x5c,0xb3,0xb1,0xc1, + 0xb3,0x34,0xe0,0x88,0x43,0xf2,0x50,0x9c,0x7,0x8d,0xcf,0x9,0x39,0x79,0xb6,0xde, + 0x6e,0x34,0x7e,0xb7,0x40,0x19,0x10,0x9a,0xed,0xad,0x9e,0xf9,0x7f,0xfc,0x98,0xe, + 0x22,0xc0,0xe4,0xa4,0xf8,0x68,0x21,0x84,0x9f,0xaa,0x36,0x38,0xea,0xc8,0x9e,0xf, + 0x50,0x37,0x87,0xf0,0xbb,0x28,0xf3,0x1f,0xa6,0x3f,0xe8,0xfe,0xbb,0x5b,0x6f,0xd5, + 0xfb,0x1d,0xf9,0x7b,0x1f,0xc5,0x26,0x3f,0x50,0xa8,0x0,0x8,0xcf,0x7,0xa0,0x30, + 0xe8,0xf6,0xdb,0x63,0x49,0xce,0x3d,0x7,0xa8,0xa5,0xce,0xa8,0x6b,0x26,0xc,0x95, + 0x2f,0x7d,0x20,0xb4,0xd6,0x74,0xc3,0x49,0x62,0x32,0x92,0x22,0x48,0x87,0x9d,0x77, + 0xfa,0x63,0xba,0xf0,0x70,0x2e,0xb4,0x3c,0xb6,0xb1,0x99,0xcf,0x4d,0x5,0x8c,0x2f, + 0x8,0xd3,0xfa,0xf6,0x75,0x19,0x19,0xc9,0x6f,0x12,0x98,0xf2,0x3d,0xe0,0x69,0xfd, + 0x9f,0xd3,0x4f,0xf7,0xc9,0x9f,0x60,0x13,0x1a,0xfb,0x8e,0xb5,0x52,0xac,0xcb,0x8c, + 0x2e,0xd8,0x6d,0x84,0xdf,0xb8,0xe6,0x94,0x99,0xd,0xe1,0xc0,0x21,0x7d,0x85,0x7c, + 0x0,0x78,0xfc,0x1b,0xfb,0x7b,0x96,0x46,0x43,0x23,0xc5,0xfa,0x35,0x62,0x4a,0x64, + 0x4a,0xe,0x1c,0xa8,0x5,0x11,0xc5,0x63,0xe9,0x82,0x46,0x92,0x5f,0xaf,0xa4,0x84, + 0xb3,0xa4,0xbb,0x23,0x7f,0xdf,0x20,0x9b,0x53,0xb0,0x54,0x90,0x85,0x51,0x5e,0x13, + 0x0,0x2f,0xf,0x7a,0x4,0x0,0x9e,0x29,0xc8,0x9f,0x20,0x34,0xd3,0xd,0x9a,0xe8, + 0x3a,0xdd,0x5c,0x60,0x81,0xb0,0xdd,0xe4,0xe5,0x37,0x24,0x8d,0xf1,0x8,0x43,0xb9, + 0x34,0xc4,0xd2,0xeb,0x26,0x30,0xa7,0x89,0xbb,0x23,0xcd,0x77,0x3e,0x56,0x9a,0xfb, + 0x7a,0x1d,0x64,0x50,0xc7,0x80,0xf8,0xdc,0xe6,0xb7,0xc9,0xef,0x9d,0xac,0x9a,0x33, + 0x66,0xa,0xb3,0xe5,0x89,0x4e,0xda,0x30,0x7c,0x18,0xad,0xba,0xfe,0x7a,0xbd,0xb, + 0xe4,0x8f,0x9b,0x63,0x98,0x98,0xb1,0x43,0x87,0x4d,0x9c,0x2e,0x15,0x39,0x94,0x36, + 0xe6,0x69,0x7f,0x3c,0x6,0x8,0x3,0xae,0x3b,0x2c,0x81,0xd6,0x13,0xe2,0x98,0x84, + 0xd6,0xfc,0xb6,0xd9,0xaf,0x2d,0x16,0x38,0x9,0xe1,0xf9,0x37,0xbf,0xb,0xb4,0xbf, + 0x23,0x7f,0x74,0xc8,0xe7,0x59,0xca,0xb6,0x7f,0xb1,0xb4,0x7f,0x14,0xc8,0x1a,0xa, + 0x3c,0xf0,0x6f,0xff,0x36,0xf6,0xc2,0xd7,0xbe,0x96,0x9c,0x69,0xc2,0xd5,0x98,0xf8, + 0x7e,0x50,0x90,0x8,0xb2,0x1,0xfc,0xa6,0x0,0x6b,0x48,0x4e,0x2f,0x66,0xd6,0xb9, + 0x27,0x1,0xc2,0x20,0x31,0x76,0xac,0x26,0x6e,0x62,0x5c,0x6a,0x99,0xb,0xfc,0x63, + 0x59,0xe3,0xb3,0x16,0x6,0x64,0xf3,0xc4,0x44,0xfb,0xf9,0x3,0x95,0x90,0xf4,0xd3, + 0xec,0x66,0xb,0x0,0xf1,0xfe,0x8f,0x5d,0x76,0x19,0xb5,0x63,0x7a,0x5f,0x9,0x4c, + 0xb8,0xd1,0xd4,0x48,0xf1,0xc3,0x47,0xbd,0xb6,0x37,0x12,0x6f,0x22,0x17,0x22,0x7c, + 0x0,0xb8,0x5f,0xee,0x9a,0x1b,0xef,0x9,0x46,0x5f,0x10,0x66,0x9b,0xa6,0x2b,0xc, + 0xd2,0xa2,0x41,0xdb,0xff,0xe0,0x41,0xaf,0x99,0x84,0xa6,0xc5,0x89,0x76,0xf5,0x31, + 0x4d,0x0,0x34,0x41,0xe0,0x90,0x50,0x2,0x2b,0xb1,0x6b,0x4f,0xba,0xe6,0x97,0xf7, + 0xaf,0xae,0x5b,0xab,0x84,0xa6,0x23,0x7f,0xb4,0xc8,0xf7,0x59,0x96,0xcb,0xb3,0xcf, + 0x49,0x2e,0x1d,0xfd,0xe6,0x37,0x93,0x9,0x13,0xe9,0xd7,0x8f,0x63,0x3,0xb8,0x7b, + 0xd0,0x38,0x5,0x93,0x7b,0xf6,0xf8,0x3d,0x3,0x61,0x91,0x82,0x1,0x64,0x19,0x76, + 0xc,0xa4,0x62,0xe,0x28,0xad,0xf7,0x21,0x55,0xf3,0xd4,0x7a,0xfa,0x5c,0x5,0x1e, + 0xbc,0x9c,0x85,0x94,0x12,0x48,0x5b,0x5b,0xbc,0x29,0xcb,0xbb,0xbc,0xc,0xc2,0xf, + 0x5c,0x7e,0x19,0xfd,0xf6,0x96,0x5b,0xf4,0x21,0xbe,0xf6,0x97,0x75,0x91,0xd7,0x83, + 0xe6,0xe5,0x14,0xdc,0x72,0x72,0xe,0xe9,0x13,0x90,0x53,0x76,0xb1,0x0,0xcc,0x36, + 0x52,0xf,0xe7,0xf2,0x3a,0x8e,0x85,0xb3,0x71,0xdf,0x3e,0x8a,0xb7,0xb6,0x91,0x9c, + 0x8,0x24,0xd9,0xde,0x4e,0xc9,0x83,0x87,0x4c,0x54,0xa0,0x77,0xbc,0x4d,0x7e,0x7d, + 0x65,0xd5,0xf6,0xaf,0x55,0x4d,0x28,0x90,0xdf,0x1e,0x6a,0x1a,0x8e,0xf2,0x78,0x49, + 0xfb,0x1a,0xde,0x4f,0xe1,0x8d,0xa3,0x58,0xb5,0x6a,0x55,0x5e,0xe4,0xe6,0xdf,0xa1, + 0x58,0x16,0x40,0xd1,0x7c,0x0,0x12,0x3,0x94,0x25,0x80,0xa1,0xc2,0x49,0xe,0x5c, + 0x37,0x23,0xcb,0xfc,0xe6,0x0,0xae,0x6a,0x6,0x8,0x79,0x64,0x34,0xfd,0xf7,0xbb, + 0xf7,0x98,0x65,0x70,0x2a,0x71,0x8,0x8b,0x40,0x30,0xb,0xaf,0x9b,0xf,0x8f,0x3c, + 0xf4,0xd7,0x75,0x4d,0x43,0x92,0x5f,0x10,0x5,0x52,0x95,0x31,0x1,0x41,0x7c,0x7c, + 0x74,0xce,0x42,0x5d,0x57,0xf5,0x5f,0x91,0x3f,0xde,0x3c,0xc1,0x7f,0x42,0xf,0x5c, + 0x71,0x79,0x80,0xfc,0x69,0xb0,0xb7,0xa1,0x1f,0xfe,0xc0,0xa1,0x54,0x20,0x8e,0x1c, + 0x9a,0x8b,0x25,0x93,0xd9,0xbe,0xaf,0xb0,0x32,0xe5,0x58,0xfe,0x31,0xe3,0x4d,0xcf, + 0x9e,0x12,0x40,0xca,0xa2,0x89,0xb7,0x9f,0xa0,0x44,0xff,0xc6,0xd4,0xfd,0x74,0x29, + 0x1,0x70,0xac,0x95,0xe2,0xda,0xb1,0x9a,0xd4,0x81,0x3e,0x7e,0x77,0x9f,0x14,0x78, + 0x22,0x3a,0x30,0x37,0xf2,0x3b,0xe4,0x2,0xe6,0x3a,0xf,0xa2,0x2a,0x17,0xcd,0x9e, + 0x2b,0x72,0x1e,0xd,0x88,0xa1,0xc2,0xba,0x39,0x80,0x91,0x71,0x68,0x6f,0xaa,0x6d, + 0xfd,0xc4,0x78,0x81,0x0,0xe2,0x31,0x2f,0xe6,0x3e,0x96,0x22,0xbb,0x1c,0x44,0x94, + 0x4a,0x31,0x3e,0x2a,0x60,0x39,0x4,0xb4,0x61,0xd8,0x3a,0x7,0x6,0xed,0xd9,0x93, + 0xfa,0xae,0xdb,0xbe,0xde,0xb5,0xda,0xdf,0xde,0x64,0x12,0x95,0x7a,0xc4,0x68,0xdf, + 0xb4,0x59,0x13,0x9f,0x28,0x25,0xe9,0xa0,0xfd,0x61,0xfa,0xff,0xf6,0xe6,0x9b,0xf5, + 0xf7,0x84,0xe9,0x86,0xcb,0x49,0x6c,0x1a,0x72,0x43,0x10,0xe8,0x66,0x82,0x6d,0x11, + 0x30,0xb1,0xa5,0x65,0x90,0x29,0x71,0x7,0xb,0x8c,0x5d,0x8a,0xf4,0x7,0x44,0x6e, + 0x7f,0xc4,0x60,0x1c,0x6f,0xf5,0xfd,0x1e,0x7a,0xa9,0x9a,0x4,0x89,0x9d,0xea,0x79, + 0xed,0x14,0x83,0x7e,0xf8,0x59,0xa0,0xdd,0x6f,0x32,0xff,0xd6,0x29,0xeb,0xac,0xe3, + 0xbf,0xfe,0x8b,0x16,0xab,0x8f,0x43,0xb4,0xb8,0xf3,0xce,0x3b,0xfb,0xba,0xa,0x45, + 0x41,0x4e,0x16,0x0,0x3,0x42,0x0,0x96,0xc0,0x1b,0xea,0x85,0xc4,0xeb,0xf7,0x4a, + 0x73,0xb3,0xf6,0x3,0x70,0xd0,0x8f,0x86,0x24,0xae,0xb7,0x81,0x62,0x23,0x47,0xea, + 0xa5,0x16,0x4,0x8a,0xbc,0x9c,0x53,0x10,0x16,0x42,0xd0,0x72,0xb0,0xca,0x10,0xeb, + 0xbc,0x9f,0xcf,0x91,0x1a,0x1f,0x60,0x8d,0x8f,0x8,0x3f,0xdc,0x55,0x72,0x5b,0x8b, + 0x47,0x7e,0x10,0xd6,0x94,0xb1,0x6c,0xd3,0x3b,0xf4,0xdf,0xcd,0xe3,0x69,0x63,0xbf, + 0x6,0x6a,0xda,0xbf,0xdf,0xd7,0xfc,0x99,0xc8,0x6f,0xcf,0xb5,0xc7,0xf7,0xa5,0xc9, + 0xa,0x8b,0x40,0x69,0xdd,0xb8,0x89,0xb8,0xb,0xd4,0x59,0x5a,0x6,0x61,0x60,0x6b, + 0xc2,0x9c,0xaf,0x47,0xf7,0x1d,0x38,0x94,0xba,0x5f,0x2e,0xf,0x61,0xc8,0x68,0xf3, + 0xe3,0x3e,0x79,0x80,0x8f,0x7d,0x2d,0x7c,0x57,0x65,0xd4,0x1b,0xf2,0x3b,0x38,0xe4, + 0x83,0x1e,0xb5,0x4c,0x60,0x9,0xe8,0x93,0xd5,0x8b,0x38,0xb,0x5d,0x78,0x2f,0xbd, + 0xac,0x85,0x40,0xfc,0x8d,0xb5,0xbe,0x53,0xd0,0x37,0xc1,0xc3,0xa0,0xbd,0xea,0x5e, + 0x76,0x61,0x69,0x19,0x64,0x5e,0x87,0xc6,0x4f,0x6,0x34,0x1f,0xc3,0x9f,0x9b,0x0, + 0x56,0xc7,0xd6,0x54,0xb6,0x1c,0x46,0xdc,0x68,0x68,0x68,0xfe,0x75,0xea,0x7a,0xc7, + 0xe7,0xcd,0xa3,0x77,0xdd,0x78,0x23,0xd5,0xd7,0xd7,0xd3,0x65,0x3c,0x2e,0xf9,0xe8, + 0x31,0x22,0xd5,0xc6,0xd6,0x41,0x35,0x86,0xf4,0x3a,0xca,0x8e,0x3,0x6d,0x44,0xc8, + 0xad,0x86,0x11,0x2,0x6c,0x9,0xa4,0x21,0x99,0xf4,0x87,0xec,0xea,0x25,0xcc,0xf3, + 0x2c,0x3e,0xc,0x2e,0xc3,0x2f,0x93,0x44,0x7a,0x6f,0x58,0x28,0xb6,0xb3,0x8f,0x84, + 0xe6,0x57,0x65,0x2f,0x1e,0x3c,0xd8,0xe5,0xfb,0x2f,0x32,0xb8,0x4b,0x4f,0x26,0xf6, + 0xc8,0x5,0x15,0xe1,0x3,0xb0,0x1,0x4b,0xe0,0x79,0x75,0x47,0xcf,0xa9,0xf5,0x75, + 0xea,0xc1,0xbc,0x74,0xe6,0x19,0xda,0x12,0x40,0x3e,0x40,0x49,0x7e,0x98,0xe4,0x5e, + 0x7b,0x7c,0x93,0x3e,0xcf,0x77,0xca,0xc5,0xbd,0x21,0xae,0xda,0x74,0x37,0x61,0xac, + 0x9e,0x19,0xcf,0x26,0xfe,0x5e,0x7f,0xe,0x42,0x2d,0x8,0x62,0x14,0xd4,0x7c,0x8a, + 0x30,0x81,0xb2,0x42,0xc8,0x1f,0xd3,0x4e,0x3d,0x8f,0xfc,0xcb,0xd,0xf9,0xa1,0xf9, + 0x41,0xfe,0x1,0x3,0x7,0x52,0x7d,0x43,0x3,0xad,0x44,0xdf,0xff,0x6f,0x7e,0x43, + 0xb4,0xfe,0xd,0x4f,0xdb,0xa2,0x6b,0xcd,0xd4,0x47,0x13,0x50,0x34,0x3d,0x2,0xd6, + 0x0,0xf7,0xc,0xc,0x1d,0xec,0x1f,0xc3,0x26,0xbc,0x6f,0x1d,0x48,0xf2,0x73,0x19, + 0x62,0x1e,0x3f,0x9c,0xab,0xcf,0x17,0x4d,0x9,0xff,0x58,0xbe,0x8f,0x10,0xf2,0x83, + 0xf8,0x49,0xf3,0xbd,0xf6,0x95,0xd7,0x34,0xf9,0x1d,0x1c,0x7a,0x8a,0x82,0xe5,0x12, + 0xac,0x81,0x7,0x5f,0x7f,0x9d,0xbe,0x37,0x77,0xae,0xb6,0x4,0x74,0xe6,0x99,0x7d, + 0xfb,0xe8,0xc4,0x3b,0x9b,0x3c,0x87,0x49,0x9a,0xa6,0x8b,0x2b,0xe1,0x30,0x29,0xbb, + 0x85,0x90,0x5,0x59,0x35,0xbe,0xf1,0xbc,0x73,0x9b,0x3e,0x36,0x61,0xbc,0x36,0xfb, + 0xd7,0x1a,0xf2,0x7f,0xf2,0x27,0xf,0x9b,0x6a,0xa4,0xb4,0x36,0x4,0xc5,0xfc,0x5f, + 0xfc,0xc2,0xfb,0x82,0xec,0x39,0x63,0x26,0x84,0x5f,0xd8,0xdc,0x8b,0x9e,0x79,0xc7, + 0xb6,0x8,0x72,0x81,0x6d,0x35,0x84,0xa8,0x4,0x3b,0xb2,0xf,0x89,0x3d,0xfc,0xb1, + 0xfd,0xb2,0xcd,0xaf,0xd6,0x6d,0x6f,0xbf,0xb3,0x0,0x8a,0x8b,0x4a,0xb5,0x0,0xf2, + 0x4b,0x9,0x16,0x2,0x58,0x3,0x7f,0x76,0xed,0xb5,0x49,0x58,0x2,0xf,0xbc,0xf0, + 0x3c,0x4d,0x6d,0x6b,0xa7,0x2f,0x9f,0x3a,0x9b,0xea,0x4f,0x9a,0x4c,0x27,0x8c,0xe6, + 0xd7,0xe1,0xa9,0x9a,0xfb,0x1e,0x69,0xdb,0x8d,0x46,0xd7,0xed,0x75,0x31,0x91,0x8, + 0xb,0x84,0x30,0xe1,0x20,0x35,0x7e,0xc3,0xe4,0x49,0xd4,0xf6,0xf4,0xb3,0x14,0x6b, + 0x9e,0xe0,0x9,0x1,0xd3,0x33,0xe1,0x11,0x5f,0x47,0xec,0xd0,0x72,0x4c,0x54,0xaa, + 0xc8,0xff,0x98,0x21,0x6a,0xf2,0x82,0xf7,0x84,0xd6,0x1f,0xc2,0x60,0xe5,0x87,0x3f, + 0x4c,0xff,0xa8,0x2c,0x81,0x25,0x22,0x81,0x6,0x7,0x26,0x61,0x92,0x4d,0x26,0x23, + 0xc0,0x56,0x2,0x9b,0xe8,0xba,0x89,0xc0,0x4d,0x5,0xb3,0xc,0x5,0x3b,0xf,0xcd, + 0x3a,0x23,0x70,0x8e,0xf5,0x96,0x68,0xed,0xcf,0x9a,0x5f,0x64,0x0,0x7a,0xee,0x9a, + 0x6b,0xe8,0xc4,0x89,0x13,0xe4,0xe0,0x50,0x28,0x22,0x93,0x4b,0xdf,0xf9,0xfa,0xd7, + 0x93,0xaf,0xad,0x59,0x43,0x37,0xce,0x99,0x43,0xf,0x3e,0xf8,0x0,0xbd,0x5f,0x69, + 0xb3,0xf,0xce,0x9f,0x4f,0x1d,0xf0,0xc4,0x9b,0x1,0x6c,0x9,0xa9,0xb1,0x39,0xaa, + 0x8f,0x49,0xcc,0x15,0x9a,0x30,0xc1,0x6b,0x1e,0x58,0xdb,0x92,0x2d,0x2d,0xc1,0x63, + 0x6d,0xb2,0x50,0x50,0xeb,0x3,0x92,0xfc,0x37,0x7c,0xe6,0x33,0x7a,0x5d,0xc7,0x33, + 0x64,0x10,0xc7,0xdf,0xfe,0xed,0x6f,0x69,0xc9,0xb1,0x63,0xde,0x17,0x33,0xad,0x96, + 0x7f,0xa4,0xa9,0xaf,0x3d,0xe1,0x46,0xd4,0x8,0x98,0xfc,0xb0,0xa6,0xd0,0x2c,0x40, + 0x5d,0x20,0x0,0x8c,0xb0,0x4a,0x55,0x29,0xe9,0x6b,0x24,0x67,0x1,0x14,0x17,0x95, + 0x6a,0x1,0x44,0x5a,0x2d,0x8,0x1,0xdc,0xe9,0xea,0x7,0xbe,0xaf,0xbf,0xc3,0x1a, + 0x98,0xa5,0xda,0xf3,0x57,0x4c,0x9a,0xac,0x33,0xef,0x50,0x6,0x2,0x17,0xd2,0xb3, + 0xca,0x39,0xfc,0x51,0xa,0x6,0xf6,0x60,0x1d,0xed,0xfd,0xd,0xca,0xe4,0x4f,0xbe, + 0xe7,0x42,0x3a,0xc3,0x4c,0xcb,0xbb,0xaf,0xad,0x4d,0x13,0x66,0xc1,0x82,0x5,0xde, + 0xd1,0x19,0xfa,0x73,0x71,0xfe,0x3f,0xda,0x82,0x20,0xc6,0x76,0x85,0xb1,0xc,0x84, + 0x75,0xa0,0xbd,0xf3,0x66,0x89,0x7d,0xc9,0x6e,0x7e,0x69,0x2e,0x47,0x7e,0x27,0x2e, + 0x5b,0x6c,0xb7,0x89,0x9f,0x29,0xba,0xcf,0x9,0x80,0xde,0x41,0xa5,0xa,0x80,0x82, + 0x9b,0x0,0x12,0x7f,0x7d,0xfb,0xed,0xfa,0xe2,0x5a,0x10,0x28,0xd,0xb6,0xfa,0xfb, + 0xf7,0xd3,0x46,0xa5,0x85,0xd7,0x1e,0x3f,0x4a,0xb3,0xba,0x3a,0xe8,0x3,0xca,0x74, + 0xef,0x30,0x24,0x91,0x82,0x20,0xac,0xc6,0x99,0x84,0x82,0xaf,0xbd,0xcd,0xf,0xc2, + 0x6d,0x71,0x68,0x7d,0xec,0xf1,0xb5,0xbe,0x22,0xff,0x4d,0xb3,0x67,0xd3,0xe3,0x88, + 0xa2,0xa3,0x14,0xe1,0xbb,0xb,0xe4,0xc0,0xde,0x2f,0xbd,0xf7,0xbd,0xf4,0x25,0x32, + 0x16,0x81,0x31,0xbd,0xf5,0x59,0x23,0x86,0x79,0x4,0x8f,0x79,0xe3,0x15,0x62,0xbb, + 0x8c,0x63,0x70,0x67,0xf6,0x7b,0x49,0xbb,0x7,0x79,0x3d,0x55,0x7e,0xc,0xde,0x7c, + 0x38,0xf7,0xc4,0x4c,0xbe,0x1a,0x6a,0x1b,0x13,0x3f,0x97,0xba,0x3b,0x38,0xe4,0x8b, + 0x48,0x5,0x0,0x43,0xa,0x82,0xd5,0xaa,0x39,0xb0,0x41,0x11,0x6a,0xe3,0xd3,0xab, + 0x68,0xdd,0x1b,0xaf,0x6b,0x92,0xcc,0x40,0x5f,0x3e,0xa5,0x48,0x7e,0x95,0xd5,0x54, + 0x48,0x9a,0x90,0xdd,0x50,0xb1,0xe9,0x13,0xdf,0x73,0xd6,0x2d,0x35,0xe6,0xfe,0xfa, + 0x10,0xad,0xff,0x6b,0x68,0x7d,0xe,0xf4,0xe9,0x81,0x8,0xe,0x8,0x2,0x65,0x11, + 0xc0,0xeb,0xde,0x69,0x6,0x46,0x25,0xa1,0x9d,0x45,0x10,0xe,0x51,0x6e,0xa2,0x17, + 0x4e,0xbc,0x98,0x3c,0x7,0x42,0x5,0xe5,0xa8,0xf2,0x74,0xfe,0x3e,0xb3,0xfd,0xfa, + 0x79,0xf3,0xe8,0x4f,0xdf,0xed,0xcd,0xae,0xec,0x88,0xef,0x50,0x2c,0x14,0x45,0x0, + 0x30,0x20,0x8,0xee,0xbc,0xf3,0xce,0xe4,0xb0,0x86,0x6,0x7a,0x55,0xbd,0xc4,0x6f, + 0x99,0xb6,0xff,0x86,0x67,0x9e,0xd6,0x64,0x41,0x13,0x61,0x43,0x63,0x3f,0x5a,0xf, + 0xc1,0x40,0xec,0x2c,0x4c,0xd2,0x4c,0x65,0x2d,0x40,0x28,0x30,0xd0,0xa3,0x0,0xa7, + 0x22,0xf0,0x98,0x32,0xa9,0xb4,0xf0,0x50,0xc4,0x5f,0x3f,0x6a,0x24,0x91,0x20,0xfe, + 0xe9,0x8a,0xf8,0xd8,0x7,0x73,0xdf,0x8f,0xda,0x33,0x65,0x14,0x42,0x21,0x8,0x82, + 0xaf,0xd6,0xd5,0x51,0x47,0x47,0x7,0xbd,0xf7,0x7b,0xdf,0xd3,0xdb,0x74,0x4,0x1, + 0xae,0xc1,0xce,0xb9,0x64,0xd2,0xb7,0x12,0x34,0xb0,0x5d,0xf8,0x11,0xfc,0xeb,0x83, + 0xf0,0xc6,0xac,0xd7,0xe7,0xf,0x1b,0x42,0xb,0x9b,0x9a,0x68,0x89,0x5a,0xef,0x38, + 0x63,0xae,0x16,0x2a,0x2b,0x3e,0xf4,0x21,0x53,0xa4,0x23,0xbe,0x43,0x71,0x51,0x54, + 0x1,0xc0,0xd8,0xaf,0xcc,0xf0,0x89,0x98,0xf0,0x8e,0xbc,0x90,0xca,0xef,0x7d,0xeb, + 0x5b,0xf4,0xea,0x6b,0xaf,0xd1,0x5b,0xd8,0xa0,0x9a,0xa,0x6f,0x21,0xfc,0x55,0x9, + 0x5,0x0,0x42,0xe0,0x8f,0x13,0x27,0x68,0xa1,0x0,0xe1,0x0,0x4c,0x6b,0x6d,0xa3, + 0x8d,0x6f,0x6f,0xa4,0xa9,0x58,0xaa,0x7d,0xdc,0x16,0xd7,0xa6,0x7d,0x6,0xe2,0x3, + 0x51,0x36,0xbb,0x3a,0x4c,0xba,0x62,0x8c,0x1f,0x68,0x6c,0x6c,0xa4,0xd6,0xd6,0x56, + 0x5f,0x18,0xf0,0x75,0x3a,0x60,0x1d,0xb0,0x40,0x40,0xdf,0xbe,0x21,0x7a,0x98,0x5f, + 0xe0,0x5d,0x6a,0xdb,0xff,0x18,0x1,0xb1,0xa4,0x5f,0x7d,0x80,0xf8,0xe,0xe,0xbd, + 0x85,0x5e,0x11,0x0,0xb6,0x83,0xeb,0x16,0x4c,0x8e,0x67,0xf0,0xbd,0x7f,0xf8,0x7, + 0xbd,0xff,0x35,0xd1,0x37,0x1e,0x53,0xc2,0x0,0xfd,0xf6,0x31,0xa3,0x0,0x37,0xf6, + 0xeb,0xa7,0x89,0x84,0x6d,0x9,0xd3,0x9d,0x37,0x57,0x91,0xfe,0x80,0x69,0xdf,0x63, + 0xe9,0x9d,0x18,0x3d,0xf1,0xc3,0x0,0xf2,0x3,0x3c,0x98,0x8,0xb8,0x4c,0x9,0x83, + 0x3a,0x91,0xb2,0x8c,0xe4,0xba,0x40,0x87,0x99,0x74,0xe5,0x7f,0xf0,0x7,0xf7,0xac, + 0x84,0x84,0x23,0xbe,0x43,0x5f,0xa1,0x57,0x4,0x40,0x36,0x42,0x9e,0x66,0xda,0xb9, + 0x73,0xcd,0x52,0xe3,0xd3,0x9f,0x4e,0x2f,0xc3,0x90,0x7b,0x5,0x66,0xde,0xa0,0x14, + 0xe9,0xa5,0x79,0x5d,0x6c,0xe2,0x87,0xd5,0x87,0xf1,0x5b,0xe3,0xa8,0xcb,0x5,0xce, + 0xb4,0x77,0x28,0x15,0xf4,0x8a,0x0,0x28,0x6,0xa4,0x55,0xd1,0x9b,0xc4,0xf7,0xaf, + 0x9f,0xa9,0x1b,0xd1,0x1e,0xae,0x5c,0xe1,0x64,0xbf,0x72,0xe1,0x95,0xbd,0x7a,0xbd, + 0xa5,0x4b,0x96,0xf6,0xea,0xf5,0x2a,0x1d,0x45,0x17,0x0,0x69,0x83,0x3,0x7b,0x88, + 0xb4,0xf9,0xd5,0x4a,0x34,0x99,0x45,0xef,0x13,0xbe,0xef,0x9e,0x43,0x6f,0x93,0x9f, + 0xaf,0xe9,0x84,0x40,0x74,0xe8,0xd1,0x60,0x20,0x7,0x87,0xbe,0x20,0x7f,0x29,0x5c, + 0xbb,0xd2,0xe0,0x4,0x80,0x43,0xde,0x70,0x4,0xac,0x1c,0x94,0xad,0xf,0xc0,0x21, + 0x3f,0xf4,0x6,0x69,0x8b,0x65,0x9a,0x87,0xd5,0x3d,0xea,0xfb,0xa9,0xd6,0x66,0x45, + 0xd9,0x58,0x0,0xec,0x5c,0x2b,0xa4,0x8d,0xcd,0xe7,0xf6,0x24,0x2a,0xb0,0x9c,0x51, + 0xce,0xe4,0xef,0x2d,0x54,0xab,0x55,0x53,0x56,0x16,0x40,0x50,0x8,0xe4,0x47,0xe2, + 0xaa,0x27,0x7f,0xb1,0x7c,0x85,0xb1,0xe2,0x93,0x1f,0xe5,0xf7,0xc6,0x7d,0x5c,0x79, + 0xe5,0x95,0xb4,0x74,0x69,0x79,0xb,0xb2,0x7c,0x51,0x36,0x16,0x0,0x13,0xb8,0xbb, + 0xd1,0x7c,0x51,0x9f,0x5b,0x11,0x28,0xe2,0xed,0xf6,0x96,0xe6,0xd7,0xd7,0x29,0xe6, + 0xcf,0x56,0x65,0xaf,0x4,0xa3,0xac,0x2c,0x0,0x26,0x2e,0xcf,0x75,0xdf,0xd3,0xf3, + 0xab,0x9,0xe7,0x9e,0x73,0x4e,0x51,0xcb,0xef,0x4d,0x8d,0x89,0x6b,0x2d,0x5e,0x1c, + 0x7d,0x76,0x5e,0x7e,0x2d,0xa0,0x20,0xaa,0xcd,0x2,0x28,0x2b,0x1,0xe0,0xd0,0x73, + 0x44,0x2d,0xfb,0xb8,0x25,0x5,0x42,0x86,0x8c,0x49,0x2f,0xa,0x6c,0xf2,0x47,0x75, + 0x4f,0x50,0xc,0xa5,0x36,0x6d,0x77,0x6f,0xa1,0x6c,0x9a,0x0,0xe,0x3d,0x3,0x93, + 0xd3,0x9a,0x7b,0xa5,0xa0,0x4f,0xfa,0x35,0x8a,0x9f,0x33,0x3f,0x8c,0xfc,0x51,0xdd, + 0xb,0xc8,0xff,0x77,0x7f,0x77,0x27,0x5d,0x74,0xd1,0x45,0x45,0xbf,0x8f,0x52,0x83, + 0xb3,0x0,0xaa,0x0,0x10,0x2,0xf9,0x66,0xb2,0xe9,0xe,0x98,0xf4,0x12,0xe8,0xd, + 0x9f,0xaa,0x4d,0xfe,0x44,0x22,0xa9,0x9d,0xb9,0x17,0x5f,0xbc,0x20,0xb2,0x6b,0xc4, + 0xb3,0xcd,0x3c,0x5d,0xc1,0x28,0x2b,0x1,0xc0,0x1e,0xfc,0xf9,0x22,0x57,0x0,0xcf, + 0xd8,0x92,0x53,0xba,0xaf,0x32,0x3f,0xbf,0x10,0x44,0xa9,0xdd,0xc2,0x84,0x49,0x6f, + 0x58,0x1,0x0,0xc8,0xcf,0x1a,0xbb,0x5a,0x49,0x1b,0x25,0xca,0x46,0x0,0x80,0x3c, + 0x20,0x46,0x36,0x7,0x20,0xb4,0x12,0xf6,0xf3,0xb1,0x95,0x74,0x7e,0xa9,0xc1,0x9b, + 0x6f,0x25,0xd5,0x1d,0x5b,0x4c,0x4b,0x20,0x35,0xe7,0xaa,0x23,0x7f,0xd4,0x28,0x9b, + 0xa7,0x98,0x59,0xab,0xf2,0x27,0x96,0xf5,0xd8,0x72,0x3f,0xbf,0x94,0x0,0x6b,0xc2, + 0x23,0x61,0xf1,0xc9,0x2f,0xcb,0x77,0xe4,0x8f,0x1e,0x65,0x63,0x1,0xe4,0x82,0x42, + 0x83,0x7c,0xca,0xfd,0xfc,0xde,0x4,0x48,0x18,0xb5,0x5f,0x21,0xd7,0xeb,0x3a,0x44, + 0x87,0x8a,0x12,0x0,0xe,0x99,0xf1,0xa9,0x37,0x7f,0xa9,0x97,0x3f,0xdc,0x67,0xe6, + 0x15,0x38,0xaf,0x70,0x2b,0xa3,0x1a,0xbd,0xe6,0x95,0x6,0x27,0x4e,0xab,0x0,0x4c, + 0xfe,0x0,0x9e,0x2b,0x1f,0x6b,0xc3,0xa1,0x78,0x70,0x2,0xa0,0xc2,0x11,0x4a,0x7e, + 0x86,0x13,0x2,0x55,0xf,0x27,0x0,0x1c,0x1c,0xaa,0x18,0xce,0x7,0x50,0xe1,0xf0, + 0xdb,0xfc,0x8c,0xdd,0xa5,0xdd,0xc3,0xe0,0xd0,0xbb,0x70,0x16,0x80,0x83,0x43,0x15, + 0xc3,0x9,0x80,0x4a,0x47,0x36,0x6f,0xbf,0x9b,0x8e,0xa0,0xea,0xe1,0x4,0x40,0x35, + 0x20,0x4c,0x8,0x38,0xf2,0x3b,0x90,0xf3,0x1,0x54,0xf,0x22,0xe8,0xf7,0x77,0xa8, + 0x3c,0x94,0x8d,0x5,0x90,0x4b,0x94,0x5c,0xb6,0xb4,0x5f,0xe5,0x7e,0xbe,0x83,0x43, + 0x31,0x50,0x56,0x16,0x40,0x18,0x31,0xe4,0x40,0x91,0x4c,0xc7,0x54,0xca,0xf9,0xe, + 0xe,0x51,0xa3,0x6c,0x2c,0x0,0x26,0xc8,0xca,0x95,0x2b,0x33,0x1e,0x93,0x6d,0x38, + 0x6d,0xb9,0x9f,0xef,0xe0,0x50,0xc,0x14,0x5d,0xdd,0x2c,0x5e,0x7c,0xa7,0x7e,0x9b, + 0xf9,0x9d,0xe6,0xf1,0xef,0x8c,0xbe,0x18,0x50,0x52,0x49,0x78,0xea,0xa9,0x95,0x7a, + 0xd9,0x5b,0x69,0xb9,0xaa,0x15,0x89,0x44,0x42,0x2f,0xf3,0x7d,0x5f,0x59,0xe0,0x17, + 0xcb,0xb0,0xb,0xf9,0xdd,0xf3,0xba,0x52,0xd9,0x58,0x0,0xe,0xe9,0x48,0xa5,0x49, + 0xef,0xe3,0x8a,0x38,0x94,0x2d,0xca,0xca,0x7,0xe0,0x90,0x2,0x93,0xdf,0x4b,0xca, + 0x91,0xd2,0x50,0xe,0xe,0xf9,0xc0,0x59,0x0,0x65,0xc,0xf6,0x15,0x2c,0x5e,0xbc, + 0xb8,0x6f,0x2b,0xe2,0xd0,0x27,0x28,0xd4,0xfc,0x7,0x9c,0x5,0x50,0xa6,0x90,0x73, + 0x24,0xa0,0x5d,0xea,0x1c,0x87,0xbd,0x83,0x4a,0xeb,0xa5,0x29,0x49,0x1,0x10,0xe5, + 0xcb,0x9c,0xcf,0xf,0x96,0xcb,0x75,0xa3,0x2c,0x2f,0x8a,0xb2,0xca,0x21,0x7f,0x60, + 0x25,0x21,0x2c,0xd7,0x63,0x5f,0x20,0xa,0xed,0xf,0xd4,0x14,0x5e,0x95,0xec,0x98, + 0x3f,0x7f,0xfe,0x62,0xeb,0xbb,0xbf,0xe,0xf,0x69,0xb1,0x73,0xe1,0x45,0xfd,0x3, + 0x45,0x59,0x5e,0xd4,0x65,0xe5,0xfa,0xe9,0xcd,0xb2,0x8a,0x51,0x5e,0xa9,0xdd,0x6f, + 0xb6,0x6b,0x6c,0xda,0xb4,0xc9,0x1c,0x93,0xf3,0xad,0xe5,0x84,0x95,0x2b,0xd3,0x7a, + 0x23,0x7a,0xd4,0xd,0xd4,0x67,0x16,0x80,0xec,0xf,0x47,0x9e,0x37,0x90,0x9f,0x1f, + 0xe4,0x85,0x17,0x5e,0x18,0xd9,0x75,0x36,0x6c,0xd8,0x90,0xf3,0xb1,0xd3,0xa6,0x4d, + 0xeb,0xd5,0xf2,0xaa,0xa1,0xac,0x62,0x94,0x17,0x75,0x99,0x85,0x94,0xb5,0x6a,0xd5, + 0x2a,0xe1,0x90,0xed,0x1d,0x47,0x6c,0x54,0xda,0xbf,0xa0,0x13,0x73,0x85,0x1d,0x7, + 0xc0,0x16,0x40,0x98,0x44,0x7d,0xcf,0x7b,0xde,0xe3,0xaf,0x47,0xf1,0x3,0xe7,0x53, + 0x46,0x77,0x65,0x45,0x5d,0x5e,0x35,0x94,0x55,0x8c,0xf2,0xa2,0x2e,0x33,0x8a,0xb2, + 0x9e,0x7e,0xfa,0x69,0xad,0xc0,0xc2,0x2c,0xd8,0xa8,0xe3,0x0,0x32,0xc4,0x7b,0xf4, + 0xb8,0xf4,0xa2,0x5a,0x0,0x4c,0x7e,0x6,0x3f,0x20,0xd6,0xf8,0x52,0xeb,0xe7,0x4a, + 0x7e,0xf9,0x90,0xf9,0xdc,0xb7,0xde,0x7a,0x8b,0xa6,0x4f,0x9f,0xee,0x6f,0xc7,0x77, + 0xde,0xcf,0x65,0x5,0xa7,0x16,0x4f,0xfd,0x88,0xd8,0x7e,0xeb,0xad,0xb7,0xea,0xf5, + 0xef,0x7e,0xf7,0xbb,0xa1,0xd7,0x8c,0xb2,0xbc,0x6a,0x28,0xab,0x18,0xe5,0x95,0xf2, + 0xfd,0x22,0x39,0x2a,0x37,0x67,0x8b,0xe9,0x8f,0x89,0x9a,0xfc,0x40,0xd1,0x4,0x40, + 0x36,0xf2,0x33,0xf8,0x81,0x73,0x76,0xd9,0x37,0xdf,0x7c,0xd3,0xdf,0xd7,0xd3,0x1f, + 0x25,0xdb,0xf,0x6b,0xc3,0xde,0xce,0xe7,0x48,0x9,0x1f,0x65,0x79,0xd5,0x50,0x56, + 0x31,0xca,0x8b,0xba,0xcc,0xa8,0xca,0xb2,0xdf,0xe5,0x62,0x3a,0x8,0x8b,0x41,0x7e, + 0xa0,0x28,0x2,0xc0,0x26,0x3f,0x7,0xab,0x5c,0x72,0xc9,0x25,0x7a,0x29,0x35,0x3f, + 0x93,0x1f,0x3f,0xa,0x3f,0xc0,0x9e,0xfe,0x28,0xf6,0x80,0x9a,0x6c,0xa6,0x24,0x1f, + 0xc3,0x42,0x24,0xc,0xf2,0x45,0x29,0xb4,0xbc,0x6a,0x28,0xab,0x18,0xe5,0x45,0x5d, + 0x66,0x54,0x65,0x75,0x37,0x3f,0x41,0x39,0x90,0x1f,0x88,0x3c,0x10,0xa8,0xa7,0xe4, + 0x97,0xc0,0x8f,0x82,0xcf,0xd4,0xa9,0x53,0xfd,0xf,0x6f,0xeb,0xee,0x7,0xce,0xd5, + 0xeb,0x2b,0xcb,0x88,0xc5,0x53,0xdf,0xb1,0xf,0x81,0x35,0xf8,0x60,0x3d,0x97,0x89, + 0x28,0x72,0x29,0xaf,0x1a,0xca,0x8a,0xb2,0xbc,0xbb,0xee,0xba,0xab,0x24,0x7f,0x87, + 0xcf,0x7d,0xee,0x73,0x69,0xef,0x18,0xcc,0x7f,0xe9,0x3,0xe0,0xfd,0x51,0x4c,0xa0, + 0x5a,0x4c,0xf2,0x3,0x91,0x5a,0x0,0x3d,0x21,0x7f,0x3e,0x8,0xfb,0x51,0x92,0xea, + 0x1a,0xf8,0x8e,0x66,0x0,0x3b,0x16,0x1f,0x7e,0xf8,0xe1,0xc0,0xf1,0xc,0xbe,0xfe, + 0x75,0xd7,0x5d,0xa7,0x7f,0x48,0x2e,0xc3,0xc6,0xf5,0xd7,0x5f,0xef,0x97,0x1,0xfc, + 0xf4,0xa7,0x3f,0x2d,0xa8,0xbc,0x4f,0x7c,0xe2,0x13,0x15,0x5f,0x56,0x31,0x9e,0x99, + 0x2c,0xaf,0xd4,0xee,0x97,0xc1,0x4e,0xbe,0x72,0x24,0x3f,0x10,0x59,0x1c,0x40,0x21, + 0xe4,0xbf,0xe5,0x96,0x5b,0xf4,0x12,0x3f,0xca,0x9a,0x35,0x6b,0xe8,0xf5,0xd7,0x5f, + 0xd7,0x4b,0xfe,0xac,0x5e,0xbd,0x5a,0x6f,0x9b,0x33,0x67,0x4e,0xf0,0x47,0x11,0x57, + 0x5c,0xb8,0x70,0x61,0x56,0xf2,0x4b,0x9c,0x76,0xda,0x69,0xfa,0xf8,0xa5,0x4b,0x97, + 0xea,0x32,0xf4,0xb1,0xa6,0xac,0x7d,0xfb,0xf6,0xe9,0xeb,0xe1,0x85,0x8e,0xaa,0xbc, + 0xb9,0x73,0xe7,0xfa,0xf7,0x57,0xa9,0x65,0xf1,0x33,0x8b,0xa2,0xbc,0xfd,0xfb,0xf7, + 0xeb,0xf2,0xb0,0x2d,0xaa,0x32,0xf9,0x7e,0xb,0xf9,0x4d,0xf5,0xf1,0xea,0xff,0xe7, + 0x6e,0xf5,0xde,0xc1,0xee,0xc8,0x1f,0xcf,0x22,0x38,0xba,0x43,0x6f,0x90,0x1f,0x88, + 0xa4,0x9,0x50,0x8,0xf9,0xd9,0xfc,0xef,0xee,0x47,0xe1,0x87,0x7c,0xdf,0x7d,0xf7, + 0x79,0xdf,0x13,0xf9,0x7b,0x5b,0xf9,0x47,0x4c,0xbb,0x46,0x1,0x8e,0xdb,0x5c,0xca, + 0x93,0xf7,0x9f,0x4b,0x79,0xdd,0x95,0x95,0x4f,0xdd,0x7a,0xab,0xac,0x8c,0xc7,0x15, + 0x50,0x5e,0x3e,0x49,0x52,0xa2,0xfc,0x5d,0x43,0xcb,0x32,0x58,0xba,0x64,0xa9,0x5e, + 0x56,0x2,0xf9,0x23,0x29,0xb4,0xa7,0xe4,0x67,0xe2,0x67,0x7b,0x9,0xf9,0x3c,0x8, + 0x7,0xac,0xb3,0x9,0xc7,0x4d,0x0,0x5f,0x18,0xe4,0x51,0x6,0x80,0x72,0x70,0xe, + 0x5b,0x13,0x8c,0x73,0xce,0x39,0xc7,0xd7,0x38,0xf9,0xd6,0x2b,0x53,0x79,0x40,0x2e, + 0x65,0xda,0xc8,0x54,0x16,0xae,0x15,0xe6,0x71,0xce,0x54,0xcf,0x6c,0xf5,0x8a,0xa2, + 0xac,0x73,0xcf,0x3d,0xd7,0x3f,0x3f,0x8a,0xfb,0x7c,0xd7,0xbb,0xce,0xd5,0x4b,0x7e, + 0x8f,0xb8,0xcc,0x6c,0xa,0x42,0x5e,0xdf,0xae,0x63,0x2e,0xef,0x88,0x2c,0x37,0xec, + 0x37,0x65,0xcd,0x5f,0x69,0xe4,0x2f,0xb8,0xe0,0x62,0x92,0xdf,0xaf,0xa0,0xf8,0x61, + 0xe4,0xf,0x9c,0xeb,0xf,0x6b,0x97,0xc1,0x2f,0x32,0xbf,0x58,0x10,0x26,0x3d,0x21, + 0xaa,0x2c,0x53,0x9e,0x2b,0xcb,0xcb,0xb7,0x4c,0x3e,0x8e,0x35,0x10,0xca,0x2,0xc1, + 0xe4,0xf9,0x3d,0x21,0x59,0x29,0x96,0x15,0x76,0x9f,0xda,0x62,0x4f,0xe6,0x57,0xa6, + 0xfd,0x3b,0xb0,0x50,0x43,0x99,0xf9,0xbc,0x23,0x76,0x59,0x52,0xe1,0xe0,0x7d,0xd3, + 0x4d,0x1,0xaa,0x2c,0xf2,0x3,0x3d,0x76,0x2,0x16,0xea,0xed,0xb7,0xbb,0x63,0xb2, + 0xf5,0xf3,0xf3,0xf,0xc9,0x42,0x80,0xbf,0xe7,0x5b,0x46,0x26,0xb3,0x8e,0x5f,0xb4, + 0x9e,0xd6,0x2b,0xca,0x32,0xed,0x40,0x13,0x9b,0xc,0x85,0x94,0x57,0xaa,0x65,0xa5, + 0xca,0xcc,0x5f,0xa0,0xf0,0x7b,0xc6,0x4e,0x48,0xbe,0xb6,0x2c,0x3f,0x9f,0x98,0x92, + 0xb0,0xdf,0xb4,0x52,0xc9,0xf,0xf4,0xc8,0x7,0x10,0x35,0xf9,0x6d,0x84,0x6d,0xc7, + 0xf,0x2c,0xbd,0xb8,0x3d,0x29,0x83,0xcf,0x67,0x47,0x10,0x3e,0xf2,0x7,0xef,0x69, + 0xbd,0x64,0x79,0xb2,0x19,0xd1,0x93,0x32,0xa5,0x16,0x62,0x2d,0x5b,0x68,0x79,0xf8, + 0x3d,0x4a,0xb1,0x2c,0x80,0xef,0x93,0xbb,0xd1,0x50,0x26,0x97,0x8b,0x32,0x41,0xde, + 0x8d,0x1b,0x37,0xea,0xf,0xd6,0x65,0x94,0x28,0xca,0x80,0x76,0xe,0xeb,0x12,0xe6, + 0xf2,0x7b,0xfa,0x9b,0xa2,0x1b,0x12,0xd1,0xa5,0x1c,0x61,0x5a,0x89,0xe4,0x7,0xf2, + 0xb6,0x0,0xa,0x21,0xbf,0x2d,0x79,0xc3,0xc0,0xe7,0x66,0xea,0xe7,0x2f,0xb4,0xc, + 0x59,0x3f,0x5b,0xcb,0x14,0x52,0x26,0x23,0xaa,0x32,0xa3,0x2e,0x4f,0x36,0x7b,0x4a, + 0xa9,0x2c,0x89,0x42,0x4,0xa,0x9f,0xcf,0x3,0x72,0x78,0x7f,0x14,0xf5,0xaa,0x54, + 0xf2,0x3,0x79,0x59,0x0,0x7d,0xd1,0xcf,0xcf,0xdf,0x73,0xf5,0xa4,0x67,0x2b,0x43, + 0xee,0x8f,0xaa,0x5e,0xbc,0x3f,0xdf,0x72,0xb3,0x95,0x69,0x9b,0xaa,0x51,0x95,0x57, + 0xca,0x65,0x49,0x81,0x82,0x4f,0x5f,0x5,0x83,0xd9,0x4e,0xc9,0x4a,0x26,0x3f,0x90, + 0xb3,0x5,0x10,0x5,0xf9,0xf3,0xe,0xbe,0x8,0x79,0xff,0xa3,0x8,0x6,0xe1,0x32, + 0xf8,0x9c,0x52,0x2c,0x93,0xdb,0xb4,0x51,0x96,0x57,0xaa,0x65,0xd9,0x1,0x3f,0xd9, + 0x10,0x46,0xdc,0xa8,0x82,0xc1,0xf8,0x9d,0x63,0xb3,0x9f,0x33,0x2d,0x55,0x2a,0xf9, + 0x81,0x9c,0x2,0x81,0x7a,0xa3,0x9f,0x1f,0xb0,0x83,0x2f,0x18,0xec,0xc0,0x2b,0x34, + 0x28,0xa7,0x18,0x1,0x26,0xc5,0xa,0x5a,0x89,0x32,0xb0,0x6,0xe5,0x61,0x7f,0xa9, + 0x95,0xc5,0xcf,0xe,0x40,0x90,0x17,0xb,0x94,0xbc,0x82,0xc1,0x0,0x53,0xde,0x95, + 0x57,0x5e,0x59,0x58,0xbd,0x28,0xe5,0xf0,0xab,0x6,0xf2,0x3,0xdd,0x5a,0x0,0x85, + 0xb6,0xf9,0xf9,0x1,0x4a,0x7,0x1e,0x20,0x9d,0x40,0xbc,0x6e,0xff,0x60,0xd9,0xbc, + 0xec,0x36,0x32,0x95,0x51,0x48,0x80,0x49,0x5f,0x97,0x19,0x65,0x79,0xf9,0x34,0xa1, + 0x72,0x29,0x2b,0x57,0x64,0x2b,0xcb,0xf6,0xf8,0xe7,0x13,0xc,0xa6,0x9b,0x85,0x89, + 0xe0,0x3d,0x75,0xff,0xac,0xf4,0xdf,0xb4,0x63,0x7d,0xf2,0x2f,0xa9,0x2e,0xf2,0x3, + 0x59,0x5,0x40,0x14,0xe,0xbf,0x4c,0xc8,0xd4,0x7d,0x93,0x16,0xf1,0x27,0xca,0xc9, + 0x45,0x88,0xd8,0xe7,0xf0,0x3a,0x2,0x4c,0xf2,0x78,0x6f,0xd3,0xee,0xaf,0xb7,0xca, + 0x94,0x81,0x35,0x51,0x94,0xc7,0x31,0x9,0xb9,0xb6,0xdd,0xf9,0xbc,0x6c,0x65,0x71, + 0x79,0xf6,0xef,0xd1,0x5d,0x99,0x72,0x3d,0xdf,0xfb,0xe4,0x6b,0xf6,0xc4,0x87,0x93, + 0xba,0x76,0x7a,0xbd,0xaa,0x99,0xfc,0x59,0x2f,0x9e,0x2f,0xf9,0xb,0xe9,0xe3,0x87, + 0xc9,0x26,0x2d,0x5,0xec,0xef,0x49,0xf0,0x6,0x43,0x6,0xe5,0xf4,0x24,0x60,0xc5, + 0x16,0x2c,0x76,0xe0,0x50,0x31,0xca,0xcc,0x37,0x78,0xa8,0x98,0xe5,0xc9,0x73,0xa2, + 0xe,0x20,0x2a,0xf4,0x3e,0xed,0xa8,0xcb,0x9e,0x46,0x83,0x2,0x2c,0xc0,0xaa,0xa9, + 0xcd,0x9f,0x53,0x5,0xa2,0x24,0x3f,0x1f,0xf,0x84,0x79,0x70,0xed,0x20,0x9f,0x4c, + 0xe5,0xe4,0x23,0x44,0xa2,0x88,0xca,0xcb,0x46,0x88,0x62,0x96,0x59,0x2a,0xe5,0x65, + 0x2b,0xb,0xc8,0x37,0xe8,0xc7,0x16,0x0,0x85,0xdc,0x67,0xbe,0x4a,0xc2,0x2e,0xc3, + 0xb3,0x24,0x88,0xae,0xbb,0xee,0x13,0x55,0x4d,0x7e,0x20,0xad,0x9,0xd0,0x53,0xf2, + 0x17,0xda,0x1f,0x1c,0x55,0x90,0xf,0x7,0xe4,0xe0,0x98,0x42,0x5f,0x5c,0x19,0x3d, + 0xc8,0x8e,0xa5,0xa8,0xcb,0xc4,0xb1,0xdd,0x5,0xf,0xf5,0x45,0x79,0xfc,0xc,0xd9, + 0x54,0x8f,0x22,0x80,0xa8,0xd0,0x7a,0xd9,0xe5,0x63,0x99,0x6f,0x19,0x7f,0xff,0xf7, + 0x7f,0xef,0x97,0xc3,0xc4,0xac,0x56,0xf2,0x3,0x1,0x1,0x50,0xcc,0x7e,0x7e,0x9b, + 0xfc,0x61,0xdd,0x37,0x51,0x6,0x95,0xd8,0xd6,0x0,0xd0,0x53,0xc1,0x22,0xad,0x8b, + 0x62,0x94,0x59,0x8a,0xe5,0xc9,0x2e,0xc8,0xa8,0x82,0x7e,0xa,0x15,0xf2,0xdc,0xfd, + 0x58,0x48,0x19,0x76,0xfe,0xc8,0x6a,0x26,0x3f,0xe0,0xb,0x80,0x9e,0x92,0x3f,0xaa, + 0xfe,0xe0,0x5c,0x90,0x4d,0x88,0xb0,0x86,0xc0,0x4b,0xc2,0x75,0xe1,0x17,0x2e,0x8a, + 0xc8,0x37,0xde,0x1f,0x75,0x99,0xa5,0x5a,0x1e,0xef,0x2f,0x34,0x18,0xa9,0x18,0x42, + 0x3e,0x2a,0x45,0x51,0xed,0xe4,0x7,0x74,0x24,0x60,0xa1,0xa3,0xfa,0xa2,0x1a,0xcb, + 0xf,0xe2,0xe2,0xf3,0xc8,0x23,0x8f,0x4,0x3e,0xbc,0xd,0xe5,0xd8,0x91,0x5b,0x36, + 0xb8,0x2e,0x85,0xbe,0xb8,0x81,0xef,0x21,0x5e,0xf6,0x42,0xcb,0x2c,0xf5,0xf2,0xc2, + 0x7c,0x38,0x51,0xfc,0x3e,0x85,0xd4,0x2b,0x9f,0xae,0x4c,0xbb,0xc,0x7c,0xa0,0x80, + 0xaa,0xbd,0xcd,0x6f,0xa3,0x36,0x2a,0xb3,0x9f,0x1d,0x2b,0x21,0x7b,0xfc,0xfd,0x12, + 0x2c,0x4,0x20,0x14,0x70,0x8d,0x1e,0xf5,0x1,0x9b,0x1f,0x96,0xb5,0x8c,0x37,0xa4, + 0x34,0xf8,0xe2,0x46,0x61,0x9d,0x94,0x4b,0xa4,0x5f,0x94,0xe5,0xf1,0x3d,0xb3,0xd9, + 0xdd,0xd3,0xdf,0xc7,0x46,0x14,0x96,0x62,0x4f,0xcb,0xe0,0x20,0x1f,0x28,0xae,0xed, + 0xdb,0xb7,0x57,0x3d,0xf9,0x81,0x1a,0x39,0x75,0x17,0x2b,0x90,0x5c,0xc9,0x7f,0xf3, + 0xcd,0x37,0xeb,0xfd,0x88,0xd4,0x2,0xb2,0x9,0x67,0x44,0x5e,0xa1,0xbc,0x65,0xcb, + 0x96,0x5,0xb6,0x73,0xf4,0x16,0xca,0x60,0x21,0x62,0x7f,0xf0,0xfc,0xb0,0x8f,0x23, + 0xd0,0xf8,0x87,0xd4,0x26,0x65,0x22,0xd5,0xaf,0xcc,0x75,0x6,0xa2,0x8e,0xf4,0x8b, + 0xb2,0xcc,0x62,0x44,0xfa,0x15,0x23,0x25,0x17,0x1f,0x7,0xf4,0xe4,0xf7,0xe1,0xf2, + 0xd8,0xf2,0xeb,0x49,0xbd,0xa,0x2d,0x23,0x6,0xee,0xc5,0x82,0xfd,0xfc,0x47,0x8e, + 0x1c,0x71,0xe4,0x37,0xf0,0x7d,0x0,0xf9,0x92,0x3f,0x75,0x9e,0x9c,0x11,0x25,0xb3, + 0x76,0x80,0x6,0x81,0x56,0x61,0xd,0xc1,0xde,0xf4,0xf4,0x20,0x91,0xf4,0x32,0xc2, + 0x82,0x53,0xf4,0x77,0x8b,0xfc,0x91,0x21,0xcf,0xe0,0x9e,0x3e,0x29,0xb3,0x97,0xca, + 0x2b,0xe4,0xf7,0xe9,0x6b,0xf0,0xfb,0xcb,0xe4,0xbf,0xe2,0x8a,0x2b,0x2,0x75,0xac, + 0x76,0xf2,0x3,0x59,0x23,0x1,0xf1,0xb0,0x30,0x4f,0x5f,0xd8,0x9c,0x67,0x18,0x9f, + 0x8d,0xfd,0xb9,0x48,0xe4,0x30,0xf0,0x9c,0xf6,0xb9,0x4c,0xcd,0xc4,0xce,0x23,0x5c, + 0x4b,0xa,0x11,0x60,0xc9,0x92,0x25,0xa1,0xe7,0xe4,0x3b,0xe5,0x53,0x58,0xb4,0x9a, + 0x5d,0x76,0xd4,0x65,0x96,0x7a,0x79,0xb9,0x96,0x99,0xe9,0xf7,0xe1,0xb2,0xa,0xa9, + 0x57,0xb6,0x6d,0xb9,0x94,0xc1,0xd6,0x8,0xc8,0xff,0x95,0xaf,0x7c,0x45,0xaf,0xe3, + 0x7d,0xe6,0xd4,0xe0,0xd5,0x4c,0x7e,0x20,0x66,0xcf,0xdd,0xb7,0x60,0xc1,0x2,0x7f, + 0xa7,0x9c,0xae,0xcb,0xc1,0xa1,0xdc,0xc0,0x24,0x87,0xd9,0xf,0x80,0xf8,0x10,0xc, + 0x8e,0xfc,0x29,0xa4,0xe5,0x3,0xe8,0xad,0x19,0x4e,0x1d,0x1c,0x7a,0x3,0xd0,0xfc, + 0x12,0x8e,0xfc,0x41,0x84,0x36,0x1,0xba,0xba,0xba,0xf2,0x36,0xe9,0x1d,0x1c,0x4a, + 0xd,0xac,0xf9,0x1,0x56,0x6c,0xd2,0xb7,0x55,0xc8,0x3b,0x5e,0x9,0xe4,0x7,0x42, + 0x5,0x0,0xcf,0xde,0x8b,0x6c,0x28,0x3c,0x9d,0xb7,0x83,0x43,0x39,0x60,0xd5,0xaa, + 0x55,0xfe,0x7a,0x58,0x48,0x32,0x0,0xed,0x9f,0xb9,0xdb,0xba,0x7b,0x54,0xa,0xf9, + 0x81,0x50,0x1,0x20,0x1d,0x2e,0x9c,0x12,0xc9,0xc1,0xa1,0x1c,0xc0,0x26,0x3e,0x34, + 0x7e,0x4d,0x4d,0x4d,0xa0,0x49,0x9b,0x6b,0x20,0x51,0x36,0x54,0x12,0xf9,0x81,0x40, + 0x1c,0x0,0x30,0x79,0xf2,0x64,0x7f,0xdd,0x35,0x3,0x1c,0xca,0x9,0x6c,0xb9,0x2, + 0x76,0x18,0x33,0xbf,0xcb,0x2b,0x56,0xac,0xe8,0xb1,0xf6,0xaf,0x34,0xf2,0x3,0xdd, + 0x66,0x4,0x72,0x42,0xc0,0xa1,0xd4,0x21,0xb5,0x7e,0x26,0x14,0x1a,0xa3,0x50,0x89, + 0xe4,0x7,0x22,0x9d,0x1d,0xd8,0xc1,0xa1,0xb7,0x1,0xf2,0xe7,0xd3,0x73,0xd5,0x13, + 0x85,0x56,0xa9,0xe4,0x7,0x22,0x99,0x1c,0xd4,0xc1,0xa1,0xaf,0x50,0xec,0x6e,0xeb, + 0x4a,0x26,0x3f,0xe0,0x4,0x80,0x83,0x43,0x6,0x54,0x3a,0xf9,0x1,0x27,0x0,0x1c, + 0x1c,0x42,0x50,0xd,0xe4,0x7,0x9c,0x0,0x70,0x70,0xb0,0x50,0x2d,0xe4,0x7,0x9c, + 0x0,0x70,0x70,0x10,0xa8,0x26,0xf2,0x3,0x4e,0x0,0x38,0x38,0x18,0x54,0x1b,0xf9, + 0x81,0x34,0x1,0xe0,0x5,0x49,0x54,0xf4,0x3d,0x3b,0x54,0x21,0xba,0x7b,0xaf,0xab, + 0x91,0xfc,0x80,0xb3,0x0,0x1c,0xaa,0x1e,0xd5,0x4a,0x7e,0x0,0x37,0x59,0x5a,0x69, + 0x5c,0x1c,0x1c,0xfa,0x1e,0x55,0x41,0x7e,0xc0,0x9,0x0,0x7,0x87,0x20,0xaa,0x86, + 0xfc,0x80,0x13,0x0,0xe,0xe,0x29,0x54,0x15,0xf9,0x1,0x27,0x0,0x1c,0x1c,0x3c, + 0x54,0x1d,0xf9,0x81,0xff,0xf,0xed,0x9e,0x33,0x9f,0x0,0x0,0x0,0x14,0x1a,0xfe, + 0xb8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,0x28,0x0,0x0, + 0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x40,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0xb1,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xc1,0x7,0xff,0xff,0x80,0x3,0xff, + 0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff, + 0xff,0x80,0x1,0xff,0xff,0xc0,0x3,0xff,0xff,0x80,0x7,0xff,0xff,0x0,0x7f,0xff, + 0xff,0x0,0x73,0xff,0xff,0x0,0x61,0xff,0xff,0x0,0x1,0xff,0xff,0x80,0x3,0xff, + 0xff,0xc1,0x7,0xff,0xff,0x28,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x30,0x0,0x0, + 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x60,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d,0xff,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x28,0x28,0xe9, + 0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef,0xff,0x47,0x47,0xf0, + 0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa,0xff,0x7b,0x7b,0x3, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x3f,0x3f,0xed, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x98,0x98,0xdf, + 0xff,0x98,0x98,0xdf,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x0,0xdc,0xdc, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff, + 0xff,0x6b,0xff,0xff,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xa0,0xa0,0x69, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0xb1,0xff,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xe3,0xe3,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x67, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0,0xff,0xa8,0xa8,0x9, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0xf0,0x8,0x7,0xff,0xe0,0x0,0x3,0xff,0xc0,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0xc0,0x0,0x1,0xff,0xe0,0x0,0x3,0xff,0xe0,0x0,0x7, + 0xff,0xc0,0x0,0xf,0xff,0x80,0x3,0xff,0xff,0x80,0x3,0xff,0xff,0x80,0x3,0xe3, + 0xff,0x80,0x1,0xc1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0xc0,0x0,0x3, + 0xff,0xe0,0x8,0x7,0xff,0xf0,0x1c,0xf,0xff,0xff,0xff,0xff,0xff,0x28,0x0,0x0, + 0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x80,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x0,0xb9,0xb9,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x25,0xff,0xff,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff, + 0xff,0x25,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x0,0xb9,0xb9,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x7f,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x1f,0x80,0x0,0x0,0xf,0xc0,0x0,0x0,0x7,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0, + 0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0, + 0x1,0xc0,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0xc0,0x0,0x0, + 0x3,0x80,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0xc0,0x0,0x0,0x3,0xf0,0x0,0x0, + 0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf8,0x0,0x0,0x3,0xfc,0x0,0x0, + 0x3,0xfe,0x0,0x0,0x7,0x28,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0, + 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x80,0x25,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0x79, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x75, + 0xff,0xd1,0xd1,0xd1,0xff,0xe0,0xe0,0xe0,0xff,0xfb,0xfb,0xfb,0xff,0xfc,0xfc,0xfc, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x5,0x5,0x5,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8a,0x8a,0x8a,0xff,0xd1,0xd1,0xd1,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x24,0x24,0x24, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x77,0x77,0x77,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0x68, + 0xff,0x8a,0x8a,0x8a,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0x68, + 0xff,0x92,0x92,0x92,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xca,0xca,0xca,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x75,0x75,0x75, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x55,0x55,0x55,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x57,0x57,0x57, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x46,0x46,0x46,0xff,0xc7,0xc7,0xcc, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x66,0x68, + 0xff,0x8e,0x8e,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x93,0x93,0x91,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0xcb,0xcb,0xd0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d,0xff,0xca,0xca,0xca, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x28,0x28,0xe9, + 0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef,0xff,0x47,0x47,0xf0, + 0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa,0xff,0x7b,0x7b,0x3, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xc3,0xc3,0xc3, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6e,0x6e,0x6e, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x3f,0x3f,0xed, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x98,0x98,0xdf, + 0xff,0x98,0x98,0xdf,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x5,0x5,0x5,0xff,0x5,0x5,0x5, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4,0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4, + 0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a,0xff,0x60,0x60,0x60, + 0xff,0xc,0xc,0xc,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x32,0x32,0x34,0xff,0x32,0x32,0x32, + 0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31, + 0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x2f,0x2f,0x2f, + 0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x2f,0x2f,0x2f, + 0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x14,0x14,0x14,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x0,0xdc,0xdc, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf, + 0xff,0x1b,0x1b,0x1b,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff, + 0xff,0x48,0xff,0xff,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xc7, + 0xff,0xc8,0xc8,0xc8,0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x1b,0x1b,0x1b, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xa0,0xa0,0x69, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0xb1,0xff,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0xfa,0xfa,0xfa, + 0xff,0xc5,0xc5,0xc5,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xe3,0xe3,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfa,0xfa,0xfa, + 0xff,0xc6,0xc6,0xc6,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x1,0x1,0x1, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0xc8,0xc8,0xc8, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xcc,0xcc,0xcc,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc9,0xc9,0xc9,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x67, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0xc8,0xc8,0xc8, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xca,0xca,0xca,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0,0xff,0xa8,0xa8,0x9, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0xb9,0xb9, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xc8,0xc8,0xc8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x7,0x7,0x7,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x79,0x79,0x88,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0x0,0x0,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfb,0xfb,0xfb, + 0xff,0xc7,0xc7,0xc7,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x72,0x72,0x67,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xc5,0xc5,0xc5,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x76,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0xf4,0xf4,0xf4, + 0xff,0xc3,0xc3,0xc3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3, + 0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x75,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5, + 0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5,0xff,0xb6,0xb6,0xb6, + 0xff,0xb4,0xb4,0xb4,0xff,0xb1,0xb1,0xb1,0xff,0xbb,0xbb,0xbb,0xff,0xc2,0xc2,0xc2, + 0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xc1,0xc1,0xc1,0xff,0xc4,0xc4,0xc4, + 0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x85,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x85, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0x87,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0x4c,0x4c,0x4c,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7c,0x7c,0x7c,0xff,0x77,0x77,0x77, + 0xff,0x75,0x75,0x75,0xff,0x7d,0x7d,0x7d,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x1f,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xc0,0x0, + 0x0,0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x1f,0xff,0xff,0x28,0x0,0x0, + 0x0,0x48,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x60,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x3f,0x40,0x40, + 0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbe,0xbe,0xbe,0xff,0xda,0xda,0xda, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd9,0xd9,0xd9, + 0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8f,0x8f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xc0,0xc0,0xc0,0xff,0xf8,0xf8,0xf8, + 0xff,0xfe,0xfe,0xfe,0xff,0xe2,0xe2,0xe2,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xdd,0xdd,0xdd,0xff,0xeb,0xeb,0xeb,0xff,0xe2,0xe2,0xe2,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xe7,0xe7,0xe7,0xff,0xdf,0xdf,0xdf,0xff,0xfe,0xfe,0xfe, + 0xff,0xed,0xed,0xed,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xde,0xde,0xde, + 0xff,0xc1,0xc1,0xc1,0xff,0xfe,0xfe,0xfe,0xff,0xe7,0xe7,0xe7,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xde,0xde,0xde,0xff,0xc1,0xc1,0xc1,0xff,0xfa,0xfa,0xfa, + 0xff,0xdb,0xdb,0xdb,0xff,0xd3,0xd3,0xd3,0xff,0xdb,0xdb,0xdb,0xff,0xd1,0xd1,0xd1, + 0xff,0xdf,0xdf,0xdf,0xff,0xf5,0xf5,0xf5,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xe2,0xe2,0xe2,0xff,0xc1,0xc1,0xc1,0xff,0xfe,0xfe,0xfe,0xff,0xed,0xed,0xed, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd,0xff,0xeb,0xeb,0xeb, + 0xff,0xe7,0xe7,0xe7,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xe1,0xe1,0xe1, + 0xff,0xcd,0xcd,0xcd,0xff,0xdd,0xdd,0xdd,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0x84,0x84,0x84,0xff,0x9d,0x9d,0x9d,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40, + 0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xef,0x9f,0x9f,0x9f,0xff,0x9c,0x9c,0x9c, + 0xff,0x10,0x10,0x10,0xff,0x8c,0x8c,0x8c,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e, + 0xff,0xb3,0xb3,0xb3,0xff,0x57,0x57,0x57,0xff,0xa8,0xa8,0xa8,0xff,0x7e,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0x9c,0x9c,0x9c,0xff,0x4b,0x4b,0x4b,0xff,0x88,0x88,0x88, + 0xff,0xab,0xab,0xab,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x9a,0x9a,0x9a, + 0xff,0x48,0x48,0x48,0xff,0x81,0x81,0x81,0xff,0xbb,0xbb,0xbb,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x9a,0x9a,0x9a,0xff,0x48,0x48,0x48,0xff,0x8c,0x8c,0x8c, + 0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95,0xff,0xa6,0xa6,0xa6,0xff,0x6c,0x6c,0x6c, + 0xff,0x60,0x61,0x60,0xff,0xb3,0xb3,0xb3,0xff,0x9a,0x9a,0x9a,0xff,0x95,0x95,0x95, + 0xff,0xad,0xad,0xad,0xff,0x48,0x48,0x48,0xff,0x83,0x83,0x83,0xff,0xab,0xab,0xab, + 0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0xae,0xae,0xae,0xff,0x48,0x48,0x48, + 0xff,0xb2,0xb2,0xb2,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9c, + 0xff,0x5a,0x5a,0x5a,0xff,0xb3,0xb3,0xb3,0xff,0x95,0x95,0x95,0xff,0x94,0x94,0x94, + 0xff,0x87,0x87,0x87,0xff,0x2a,0x2a,0x2a,0xff,0x9d,0x9d,0x9d,0xff,0xa6,0xa7,0xa7, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7e,0x7f,0x7f,0xff,0x9f,0x9f,0x9f, + 0xff,0xaa,0xaa,0xaa,0xff,0x7c,0x7c,0x7c,0xff,0xba,0xba,0xba,0xff,0xba,0xba,0xba, + 0xff,0xbe,0xbe,0xbe,0xff,0x54,0x54,0x54,0xff,0xc1,0xc1,0xc1,0xff,0xd0,0xd0,0xd0, + 0xff,0xcc,0xcc,0xcc,0xff,0xc5,0xc5,0xc5,0xff,0x6c,0x6c,0x6c,0xff,0xc5,0xc5,0xc5, + 0xff,0x95,0x95,0x95,0xff,0xd5,0xd5,0xd5,0xff,0xc0,0xc0,0xc0,0xff,0xcc,0xcc,0xcc, + 0xff,0x68,0x68,0x68,0xff,0xa4,0xa4,0xa4,0xff,0x9c,0x9c,0x9c,0xff,0xd0,0xd0,0xd0, + 0xff,0xc0,0xc0,0xc0,0xff,0xcc,0xcc,0xcc,0xff,0x68,0x68,0x68,0xff,0xa4,0xa4,0xa4, + 0xff,0xc2,0xc2,0xc2,0xff,0xc4,0xc4,0xc4,0xff,0xc0,0xc0,0xc0,0xff,0xc9,0xc9,0xc9, + 0xff,0x89,0x89,0x89,0xff,0x88,0x88,0x88,0xff,0xce,0xce,0xce,0xff,0xc0,0xc0,0xc0, + 0xff,0xc6,0xc6,0xc6,0xff,0x84,0x84,0x84,0xff,0xb1,0xb1,0xb1,0xff,0xa4,0xa4,0xa4, + 0xff,0xd5,0xd5,0xd5,0xff,0xcc,0xcc,0xcc,0xff,0xd0,0xd0,0xd0,0xff,0x6c,0x6c,0x6c, + 0xff,0xbf,0xbf,0xbf,0xff,0xd0,0xd0,0xd0,0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0, + 0xff,0x84,0x84,0x84,0xff,0xc4,0xc4,0xc4,0xff,0xc9,0xc9,0xc9,0xff,0xc0,0xc0,0xc0, + 0xff,0xc7,0xc7,0xc7,0xff,0x78,0x78,0x78,0xff,0x34,0x34,0x34,0xff,0xaf,0xaf,0xaf, + 0xff,0xa9,0xa9,0xa9,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x80,0x80,0x3f,0x7e,0x7f,0x7f, + 0xef,0x9f,0x9f,0x9f,0xff,0xa9,0xa9,0xa9,0xff,0x8b,0x8b,0x8b,0xff,0xc6,0xc6,0xc6, + 0xff,0xcc,0xcc,0xcc,0xff,0xb4,0xb4,0xb4,0xff,0xa6,0xa6,0xa6,0xff,0xb1,0xb1,0xb1, + 0xff,0xd0,0xd0,0xd0,0xff,0xbf,0xbf,0xbf,0xff,0xaa,0xaa,0xaa,0xff,0x8d,0x8d,0x8d, + 0xff,0x85,0x85,0x85,0xff,0x78,0x78,0x78,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xac,0xac,0xac,0xff,0xa6,0xa6,0xa6,0xff,0x69,0x69,0x69,0xff,0x85,0x85,0x85, + 0xff,0xca,0xca,0xca,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xa6,0xa6,0xa6, + 0xff,0x67,0x67,0x67,0xff,0x9f,0x9f,0x9f,0xff,0xc2,0xc2,0xc2,0xff,0xac,0xac,0xac, + 0xff,0x9a,0x9a,0x9a,0xff,0xb2,0xb2,0xb2,0xff,0x65,0x65,0x65,0xff,0xca,0xca,0xca, + 0xff,0xab,0xab,0xab,0xff,0xab,0xab,0xab,0xff,0xb3,0xb3,0xb3,0xff,0x67,0x67,0x67, + 0xff,0xa7,0xa7,0xa7,0xff,0xbe,0xbe,0xbe,0xff,0xbc,0xbc,0xbc,0xff,0xb5,0xb5,0xb5, + 0xff,0x90,0x90,0x90,0xff,0x7e,0x7e,0x7e,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xa5,0xa5,0xa5,0xff,0xb3,0xb3,0xb3,0xff,0x7e,0x7e,0x7e,0xff,0xc1,0xc1,0xc1, + 0xff,0xab,0xab,0xab,0xff,0xa4,0xa4,0xa4,0xff,0xa0,0xa0,0xa0,0xff,0x48,0x48,0x48, + 0xff,0xaf,0xaf,0xaf,0xff,0xa6,0xa7,0xa7,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x2f,0x7e,0x7f,0x7f,0xe9,0x97,0x97,0x97,0xff,0xb0,0xb0,0xb0,0xff,0x31,0x31,0x31, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78, + 0xff,0x7e,0x7e,0x7e,0xff,0xb3,0xb3,0xb3,0xff,0xac,0xac,0xac,0xff,0xba,0xba,0xba, + 0xff,0x6c,0x6d,0x6c,0xff,0x7c,0x7c,0x7c,0xff,0xa0,0xa0,0xa0,0xff,0xb1,0xb1,0xb1, + 0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9,0xff,0x54,0x54,0x54,0xff,0x83,0x83,0x83, + 0xff,0xa4,0xa4,0xa4,0xff,0xb1,0xb1,0xb1,0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9, + 0xff,0x51,0x51,0x51,0xff,0x96,0x96,0x96,0xff,0xb6,0xb6,0xb6,0xff,0xab,0xab,0xab, + 0xff,0xab,0xab,0xab,0xff,0xa8,0xa8,0xa8,0xff,0x51,0x51,0x51,0xff,0xc2,0xc2,0xc2, + 0xff,0xb1,0xb1,0xb1,0xff,0xab,0xab,0xab,0xff,0xbd,0xbd,0xbd,0xff,0x51,0x51,0x51, + 0xff,0x9e,0x9e,0x9e,0xff,0xbc,0xbc,0xbc,0xff,0xac,0xac,0xac,0xff,0xb7,0xb7,0xb7, + 0xff,0x78,0x78,0x78,0xff,0x6f,0x70,0x6f,0xff,0xab,0xab,0xab,0xff,0xbf,0xbf,0xbf, + 0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0x63,0x63,0x63,0xff,0xc0,0xc0,0xc0, + 0xff,0xb1,0xb1,0xb1,0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9,0xff,0x51,0x51,0x51, + 0xff,0x52,0x52,0x52,0xff,0x9b,0x9b,0x9b,0xff,0xaf,0xaf,0xaf,0xff,0x82,0x83,0x83, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x4f,0x50,0x50, + 0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x80,0x80,0x1c,0x7e,0x7f,0x7f,0xe9,0x94,0x94,0x94,0xff,0xb0,0xb0,0xb0, + 0xff,0x5d,0x5d,0x5d,0xff,0xb7,0xb7,0xb7,0xff,0xc0,0xc0,0xc0,0xff,0xd9,0xd9,0xd9, + 0xff,0x99,0x99,0x99,0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,0xff,0xc0,0xc0,0xc0, + 0xff,0xc1,0xc1,0xc1,0xff,0xa5,0xa5,0xa5,0xff,0x9c,0x9c,0x9c,0xff,0xae,0xae,0xae, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xb9,0xb9,0xb9,0xff,0x9b,0x9b,0x9b, + 0xff,0x9a,0x9a,0x9a,0xff,0xb8,0xb8,0xb8,0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6, + 0xff,0xa8,0xa8,0xa8,0xff,0xcf,0xcf,0xcf,0xff,0x8c,0x8c,0x8c,0xff,0xc2,0xc2,0xc2, + 0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0,0xff,0xa8,0xa8,0xa8,0xff,0x90,0x90,0x90, + 0xff,0xb8,0xb8,0xb8,0xff,0xc0,0xc0,0xc0,0xff,0xc8,0xc8,0xc8,0xff,0xa8,0xa8,0xa8, + 0xff,0xaf,0xaf,0xaf,0xff,0xa4,0xa4,0xa4,0xff,0xc4,0xc4,0xc4,0xff,0xc0,0xc0,0xc0, + 0xff,0xd9,0xd9,0xd9,0xff,0xa8,0xa8,0xa8,0xff,0x84,0x84,0x84,0xff,0xa6,0xa6,0xa6, + 0xff,0xcc,0xcc,0xcc,0xff,0xd0,0xd0,0xd0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0, + 0xff,0xca,0xca,0xca,0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xa8,0xa8,0xa8, + 0xff,0x99,0x99,0x99,0xff,0x5e,0x5e,0x5e,0xff,0xaa,0xaa,0xaa,0xff,0xaf,0xaf,0xaf, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x2f,0x7e,0x7f,0x7f,0xe9,0x97,0x97,0x97, + 0xff,0xb0,0xb0,0xb0,0xff,0x3f,0x3f,0x3f,0xff,0xad,0xad,0xad,0xff,0xab,0xab,0xab, + 0xff,0xa0,0xa0,0xa0,0xff,0x9c,0x9c,0x9c,0xff,0x63,0x63,0x63,0xff,0xca,0xca,0xca, + 0xff,0x94,0x94,0x94,0xff,0x86,0x86,0x86,0xff,0x95,0x95,0x95,0xff,0x4b,0x4b,0x4b, + 0xff,0xb3,0xb3,0xb3,0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95,0xff,0x9a,0x9a,0x9a, + 0xff,0x6c,0x6c,0x6c,0xff,0x5e,0x5e,0x5e,0xff,0xca,0xca,0xca,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9c,0xff,0x4b,0x4b,0x4b,0xff,0xc2,0xc2,0xc2, + 0xff,0x9a,0x9a,0x9a,0xff,0x95,0x95,0x95,0xff,0xad,0xad,0xad,0xff,0x48,0x48,0x48, + 0xff,0x82,0x82,0x82,0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95,0xff,0xa6,0xa6,0xa6, + 0xff,0x6c,0x6c,0x6c,0xff,0x5e,0x5e,0x5e,0xff,0xbb,0xbb,0xbb,0xff,0x9a,0x9a,0x9a, + 0xff,0x95,0x95,0x95,0xff,0xad,0xad,0xad,0xff,0x48,0x48,0x48,0xff,0x7f,0x80,0x80, + 0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0xae,0xae,0xae, + 0xff,0x51,0x51,0x51,0xff,0xa5,0xa5,0xa5,0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95, + 0xff,0x9c,0x9c,0x9c,0xff,0x63,0x64,0x63,0xff,0x40,0x40,0x40,0xff,0x9b,0x9b,0x9b, + 0xff,0xaf,0xaf,0xaf,0xff,0x82,0x83,0x83,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x80,0x80,0x1c,0x7e,0x7f,0x7f, + 0xe9,0x94,0x94,0x94,0xff,0xb0,0xb0,0xb0,0xff,0x7c,0x7c,0x7c,0xff,0xcc,0xcc,0xcc, + 0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0,0xff,0x84,0x84,0x84,0xff,0xe0,0xe0,0xe0, + 0xff,0xd2,0xd2,0xd2,0xff,0xcd,0xcd,0xcd,0xff,0xc6,0xc6,0xc6,0xff,0x6c,0x6c,0x6c, + 0xff,0xd4,0xd4,0xd4,0xff,0xdb,0xdb,0xdb,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xa8,0xa8,0xa8,0xff,0x84,0x84,0x84,0xff,0xda,0xda,0xda,0xff,0xd2,0xd2,0xd2, + 0xff,0xcc,0xcc,0xcc,0xff,0xc5,0xc5,0xc5,0xff,0x6c,0x6c,0x6c,0xff,0xdb,0xdb,0xdb, + 0xff,0xd5,0xd5,0xd5,0xff,0xcc,0xcc,0xcc,0xff,0xcf,0xcf,0xcf,0xff,0x78,0x78,0x78, + 0xff,0xa7,0xa7,0xa7,0xff,0xdb,0xdb,0xdb,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xa8,0xa8,0xa8,0xff,0x84,0x84,0x84,0xff,0xd9,0xd9,0xd9,0xff,0xd5,0xd5,0xd5, + 0xff,0xcc,0xcc,0xcc,0xff,0xcf,0xcf,0xcf,0xff,0x6c,0x6c,0x6c,0xff,0xc7,0xc7,0xc7, + 0xff,0xd8,0xd8,0xd8,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xd0,0xd0,0xd0, + 0xff,0x6c,0x6c,0x6c,0xff,0xc6,0xc6,0xc6,0xff,0xdb,0xdb,0xdb,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0x90,0x91,0x90,0xff,0x99,0x99,0x99,0xff,0x25,0x25,0x25, + 0xff,0xbf,0xbf,0xbf,0xff,0xa9,0xa9,0xa9,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x80,0x80, + 0x4f,0x7e,0x7f,0x7f,0xff,0xd2,0xd2,0xd2,0xff,0xcb,0xcb,0xcb,0xff,0xdf,0xdf,0xdf, + 0xff,0xdb,0xdb,0xdb,0xff,0xdb,0xdb,0xdb,0xff,0xdd,0xdd,0xdd,0xff,0xee,0xee,0xee, + 0xff,0xdb,0xdb,0xdb,0xff,0xc9,0xc9,0xc9,0xff,0xcd,0xcd,0xcd,0xff,0xc2,0xc2,0xc2, + 0xff,0xee,0xee,0xee,0xff,0xe9,0xe9,0xe9,0xff,0xcf,0xcf,0xcf,0xff,0xc9,0xc9,0xc9, + 0xff,0xd2,0xd2,0xd2,0xff,0xc9,0xc9,0xc9,0xff,0xee,0xee,0xee,0xff,0xdb,0xdb,0xdb, + 0xff,0xc9,0xc9,0xc9,0xff,0xcf,0xcf,0xcf,0xff,0xc2,0xc2,0xc2,0xff,0xee,0xee,0xee, + 0xff,0xe4,0xe4,0xe4,0xff,0xc9,0xc9,0xc9,0xff,0xcb,0xcb,0xcb,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0xe9,0xe9,0xe9,0xff,0xcf,0xcf,0xcf,0xff,0xc9,0xc9,0xc9, + 0xff,0xd2,0xd2,0xd2,0xff,0xc9,0xc9,0xc9,0xff,0xee,0xee,0xee,0xff,0xe4,0xe4,0xe4, + 0xff,0xc9,0xc9,0xc9,0xff,0xcb,0xcb,0xcb,0xff,0xc0,0xc0,0xc0,0xff,0xe7,0xe7,0xe7, + 0xff,0xee,0xee,0xee,0xff,0xe1,0xe1,0xe1,0xff,0xc9,0xc9,0xc9,0xff,0xcc,0xcc,0xcc, + 0xff,0xc0,0xc0,0xc0,0xff,0xe7,0xe7,0xe7,0xff,0xe9,0xe9,0xe9,0xff,0xcd,0xcd,0xcd, + 0xff,0xc9,0xc9,0xc9,0xff,0xc9,0xc9,0xc9,0xff,0xd2,0xd2,0xd2,0xff,0xd2,0xd2,0xd2, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xc5,0xc5,0xc5,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x14,0x15,0x15,0xff,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f,0xff,0xb9,0xb9,0xb9, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b, + 0xff,0xb3,0xb3,0xb3,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x6e,0x6e,0x6e,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x94,0x94,0x94, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7e,0x7e,0x7e, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x94,0x94,0x94,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40,0xff,0x94,0x94,0x94, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40, + 0xff,0x94,0x94,0x94,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x18,0x0,0xff,0x0,0xb5,0x0, + 0xff,0x0,0x8f,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40,0xff,0x94,0x94,0x94, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40, + 0xff,0x94,0x94,0x94,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x16,0x1b,0xc,0xff,0xa1,0xc6,0x5b, + 0xff,0x0,0xa0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x93,0x93,0x93, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7e,0x7e,0x7e, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x93,0x93,0x93,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x15,0x15,0x15,0xff,0x8e,0x8f,0x8f,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x78,0x78,0x78,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f,0xff,0xb9,0xb9,0xb9, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b, + 0xff,0xb3,0xb3,0xb3,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x7,0x8,0x8,0xff,0x5f,0x5f,0x5f, + 0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70, + 0xff,0x7f,0x7f,0x7f,0xff,0x77,0x77,0x77,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x37,0x38,0x38,0xff,0x7e,0x7f,0x7f,0xff,0x7b,0x7b,0x7b,0xff,0x6f,0x70,0x70, + 0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x5b,0x5b,0x5b, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xa9,0xa9,0xa9,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x9b,0x9b,0x9b,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x16,0x16,0x16,0xff,0x5b,0x5b,0x5b, + 0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b, + 0xff,0x5b,0x5b,0x5b,0xff,0x33,0x33,0x33,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x6,0x6,0x6,0xff,0x4c,0x4d,0x4d,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b, + 0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x60,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x94,0x94,0x94,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1e,0x1e,0x1e, + 0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24, + 0xff,0x2a,0x2b,0x2a,0xff,0x49,0x4a,0x49,0xff,0x2a,0x2b,0x2a,0xff,0x24,0x25,0x24, + 0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24, + 0xff,0x36,0x37,0x36,0xff,0x49,0x4a,0x49,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24, + 0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x16,0x17,0x16, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x94,0x94,0x94,0xff,0x7f,0x80,0x7f,0xff,0x7f,0x80,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1e,0x1e,0x1e,0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30, + 0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30, + 0xff,0x30,0x31,0x30,0xff,0x18,0x18,0x18,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x6c,0x7c, + 0x4f,0x65,0x65,0x77,0xff,0x6e,0x6e,0xa8,0xff,0x38,0x38,0x8f,0xff,0x1d,0x1d,0xa0, + 0xff,0x1d,0x1c,0xaf,0xff,0x1e,0x1e,0xa3,0xff,0x3a,0x3a,0x92,0xff,0x6a,0x6a,0x7c, + 0xff,0x80,0x80,0x81,0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb5,0xb5,0xac,0xff,0x97,0x97,0x71,0xff,0x86,0x86,0x3c, + 0xff,0x6b,0x6c,0x1,0xff,0x70,0x71,0x1,0xff,0x71,0x72,0x1,0xff,0x75,0x76,0x3, + 0xff,0x89,0x8a,0x34,0xff,0xa1,0xa1,0x87,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x7c,0x91,0x8d,0x2c,0x2b,0x92, + 0xff,0x19,0x18,0xe2,0xff,0xa,0x7,0xf5,0xff,0x9,0x6,0xf5,0xff,0xc,0xa,0xf5, + 0xff,0x9,0x6,0xf5,0xff,0x9,0x6,0xf5,0xff,0xb,0x8,0xf5,0xff,0x9,0x7,0xc6, + 0xff,0x3b,0x3b,0x81,0xff,0x89,0x89,0x8b,0xff,0xbe,0xbe,0xbe,0xff,0xb9,0xb9,0xb5, + 0xff,0x95,0x95,0x5d,0xff,0x79,0x7a,0x6,0xff,0x86,0x87,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0x89,0x89,0x0,0xff,0x89,0x8a,0x0,0xff,0x89,0x8a,0x0,0xff,0x89,0x8a,0x0, + 0xff,0x86,0x87,0x0,0xff,0x7c,0x7d,0x0,0xff,0x7c,0x7c,0x20,0xff,0xb6,0xb6,0xaa, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x15,0x78,0x78,0xb4,0xaf,0x4f,0x4e,0xe1,0xff,0x2e,0x2c,0xf9, + 0xff,0x2b,0x29,0xf8,0xff,0x34,0x32,0xfa,0xff,0x3b,0x3a,0xfb,0xff,0x41,0x3f,0xfc, + 0xff,0x3f,0x3e,0xfc,0xff,0x35,0x34,0xfa,0xff,0x1c,0x1a,0xf6,0xff,0x9,0x5,0xf5, + 0xff,0x8,0x6,0xdf,0xff,0x34,0x33,0x93,0xff,0xb5,0xb5,0xad,0xff,0x95,0x95,0x28, + 0xff,0x96,0x95,0x0,0xff,0x9c,0x9b,0x0,0xff,0xaa,0xa9,0x1,0xff,0xb1,0xb1,0x1, + 0xff,0xb4,0xb5,0x1,0xff,0xb7,0xb7,0x1,0xff,0xb6,0xb7,0x1,0xff,0xb6,0xb6,0x1, + 0xff,0xb1,0xb1,0x1,0xff,0x9f,0x9e,0x0,0xff,0x85,0x86,0x0,0xff,0x7f,0x80,0x10, + 0xff,0x83,0x83,0x5c,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe5, + 0x2f,0x7b,0x7b,0xea,0xe9,0x67,0x66,0xf7,0xff,0x47,0x46,0xfd,0xff,0x46,0x45,0xfd, + 0xff,0x4a,0x48,0xfd,0xff,0x4c,0x4b,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x56,0x55,0xfd, + 0xff,0x54,0x53,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x47,0x46,0xfd,0xff,0x38,0x36,0xfb, + 0xff,0x20,0x1d,0xf6,0xff,0x10,0xe,0xf0,0xff,0x45,0x45,0x69,0xff,0xb4,0xb4,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xb3,0xb2,0x1,0xff,0xba,0xbb,0x1,0xff,0xc2,0xc3,0x0, + 0xff,0xcd,0xce,0x0,0xff,0xd2,0xd2,0x0,0xff,0xcf,0xd0,0x0,0xff,0xc8,0xc9,0x0, + 0xff,0xbf,0xc0,0x0,0xff,0xb5,0xb5,0x1,0xff,0xa4,0xa4,0x0,0xff,0x88,0x89,0x0, + 0xff,0x7d,0x7e,0x0,0xff,0x4b,0x4b,0x1,0xff,0x44,0x44,0x44,0xff,0x40,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x66,0x67,0x67,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0xf1, + 0xe9,0x60,0x5f,0xfc,0xff,0x56,0x55,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfd, + 0xff,0x5d,0x5c,0xfc,0xff,0x62,0x61,0xfc,0xff,0x67,0x67,0xfb,0xff,0x69,0x69,0xfb, + 0xff,0x6c,0x6c,0xfb,0xff,0x67,0x67,0xfb,0xff,0x5a,0x59,0xfc,0xff,0x4e,0x4d,0xfd, + 0xff,0x3d,0x3d,0xfb,0xff,0x2e,0x2c,0xf8,0xff,0x11,0xf,0xe7,0xff,0x86,0x86,0x26, + 0xff,0xb6,0xb6,0x1,0xff,0xb9,0xba,0x0,0xff,0xd7,0xd6,0x0,0xff,0xdb,0xda,0x0, + 0xff,0xdd,0xdc,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd8,0xd8,0x0,0xff,0xc8,0xc8,0x0,0xff,0xb7,0xb7,0x1,0xff,0xab,0xaa,0x1, + 0xff,0x8f,0x8f,0x0,0xff,0x78,0x7a,0x0,0xff,0x8d,0x8d,0x60,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb4,0xb4,0xb4,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x94,0x6c,0x6c,0xf9, + 0xff,0x55,0x54,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x53,0x52,0xfe,0xff,0x64,0x63,0xfb, + 0xff,0x6d,0x6d,0xf9,0xff,0x75,0x75,0xf7,0xff,0x7d,0x7d,0xf5,0xff,0x7e,0x7e,0xea, + 0xff,0x79,0x79,0xf6,0xff,0x6d,0x6d,0xf9,0xff,0x68,0x68,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x4e,0x4d,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x1c,0x19,0xf6,0xff,0x39,0x38,0x91, + 0xff,0xc2,0xc2,0x5,0xff,0xd2,0xd2,0x0,0xff,0xd5,0xd4,0x0,0xff,0xdc,0xdc,0x2, + 0xff,0xe6,0xe5,0x7,0xff,0xee,0xed,0xc,0xff,0xef,0xef,0xd,0xff,0xee,0xed,0xd, + 0xff,0xe1,0xe1,0x6,0xff,0xcb,0xcc,0x0,0xff,0xbd,0xbe,0x0,0xff,0xb3,0xb3,0x2, + 0xff,0xa7,0xa6,0x0,0xff,0x8b,0x8b,0x0,0xff,0x6c,0x6d,0x12,0xff,0xb7,0xb7,0xb5, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x94,0x94,0x94,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf4,0xff,0x66,0x66,0xfb, + 0xff,0x54,0x53,0xfd,0xff,0x49,0x48,0xfd,0xff,0x4c,0x4b,0xfd,0xff,0x5d,0x5d,0xe6, + 0xff,0x83,0x83,0xf3,0xff,0x5a,0x83,0xc4,0xff,0x13,0x54,0x5b,0xff,0x2,0x38,0x38, + 0xff,0x1d,0x46,0x54,0xff,0x62,0x7b,0xc4,0xff,0x72,0x72,0xf8,0xff,0x67,0x67,0xfb, + 0xff,0x56,0x55,0xfd,0xff,0x49,0x49,0xfd,0xff,0x2d,0x2c,0xf9,0xff,0x6,0x4,0xe8, + 0xff,0x89,0x88,0x44,0xff,0xc6,0xc6,0x0,0xff,0xcd,0xcd,0x0,0xff,0xd6,0xda,0x14, + 0xff,0x5f,0x9f,0x56,0xff,0x10,0x68,0x64,0xff,0x1,0x4d,0x4d,0xff,0x34,0x6e,0x4a, + 0xff,0xc5,0xd2,0x27,0xff,0xe7,0xe7,0x9,0xff,0xd5,0xd5,0x0,0xff,0xb9,0xba,0x0, + 0xff,0xb0,0xaf,0x1,0xff,0x9d,0x9c,0x0,0xff,0x74,0x75,0x0,0xff,0x7e,0x7e,0x64, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0xa2,0xa2,0xa2,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8f,0x8f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xc9,0xf,0x75,0x75,0xf7,0xff,0x63,0x63,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x3f,0x3e,0xfc,0xff,0x33,0x32,0xf4,0xff,0x45,0x46,0xbd, + 0xff,0x42,0xa4,0xc2,0xff,0x1,0x78,0x78,0xff,0x0,0x60,0x60,0xff,0x0,0x69,0x69, + 0xff,0x0,0x5a,0x5a,0xff,0x0,0x46,0x46,0xff,0x4c,0x69,0x9f,0xff,0x77,0x77,0xf6, + 0xff,0x65,0x65,0xfa,0xff,0x52,0x51,0xfd,0xff,0x3d,0x3c,0xfb,0xff,0xb,0x8,0xf5, + 0xff,0xf,0xe,0xb4,0xff,0x71,0x72,0xe,0xff,0x89,0x90,0x19,0xff,0x28,0xa3,0x8c, + 0xff,0x0,0x78,0x78,0xff,0x0,0x66,0x66,0xff,0x0,0x69,0x69,0xff,0x0,0x5d,0x5d, + 0xff,0xc,0x53,0x4e,0xff,0xab,0xc1,0x30,0xff,0xe2,0xe1,0x5,0xff,0xce,0xce,0x0, + 0xff,0xb5,0xb5,0x1,0xff,0xa5,0xa4,0x0,0xff,0x82,0x83,0x0,0xff,0x5c,0x5c,0x20, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x4b,0x4b,0x4b,0xff,0x7f,0x7f,0x7f,0xff,0xaf,0xaf,0xaf, + 0xff,0x8a,0x8b,0x8b,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x3f,0x70,0x70,0xf9,0xff,0x5b,0x5b,0xfc, + 0xff,0x46,0x45,0xfd,0xff,0x36,0x34,0xfa,0xff,0x26,0x24,0xe8,0xff,0x22,0x47,0x8c, + 0xff,0x0,0xc0,0xc0,0xff,0x0,0xab,0xab,0xff,0x0,0xbf,0xbf,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xab,0xab,0xff,0x0,0x7b,0x7b,0xff,0x6,0x45,0x46,0xff,0x83,0x88,0xe8, + 0xff,0x73,0x73,0xf7,0xff,0x5a,0x59,0xfd,0xff,0x47,0x47,0xfd,0xff,0x18,0x16,0xf6, + 0xff,0x5,0x2,0xde,0xff,0x51,0x52,0x20,0xff,0x2d,0x8e,0x75,0xff,0x0,0xb8,0xb8, + 0xff,0x0,0xae,0xae,0xff,0x0,0xbf,0xbf,0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab, + 0xff,0x0,0x72,0x72,0xff,0xf,0x4e,0x4d,0xff,0xdf,0xe1,0x12,0xff,0xd9,0xd8,0x0, + 0xff,0xbf,0xc0,0x1,0xff,0xac,0xab,0x1,0xff,0x89,0x8a,0x0,0xff,0x5d,0x5d,0x3, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x10,0x10,0x10, + 0xff,0xaa,0xaa,0xaa,0xff,0x85,0x85,0x85,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xf3,0x3f,0x6c,0x6c,0xfa,0xff,0x55,0x54,0xfd, + 0xff,0x46,0x45,0xfd,0xff,0x2f,0x2d,0xf8,0xff,0x9,0x7,0xcc,0xff,0x12,0x5c,0x8a, + 0xff,0x0,0xdf,0xdf,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcc,0xcc, + 0xff,0x0,0xcb,0xcb,0xff,0x0,0xbe,0xbe,0xff,0x0,0x64,0x64,0xff,0x63,0x7b,0xbc, + 0xff,0x7d,0x7d,0xf4,0xff,0x66,0x66,0xfb,0xff,0x51,0x50,0xfc,0xff,0x26,0x24,0xf8, + 0xff,0x4,0x2,0xde,0xff,0x54,0x55,0x21,0xff,0xd,0x87,0x86,0xff,0x0,0xd8,0xd8, + 0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcc,0xcc,0xff,0x0,0xcb,0xcb, + 0xff,0x0,0xb2,0xb2,0xff,0x0,0x59,0x59,0xff,0xc0,0xd5,0x29,0xff,0xdd,0xdd,0x1, + 0xff,0xc5,0xc6,0x0,0xff,0xae,0xad,0x1,0xff,0x89,0x89,0x0,0xff,0x5d,0x5d,0x3, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x17,0x18,0x18, + 0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa,0xff,0x8a,0x8b,0x8b,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x72,0x72,0xf8,0x3f,0x6d,0x6d,0xfa,0xff,0x54,0x53,0xfd, + 0xff,0x46,0x45,0xfd,0xff,0x2e,0x2c,0xf9,0xff,0x6,0x4,0xce,0xff,0xc,0x37,0x74, + 0xff,0x0,0xf1,0xf1,0xff,0x0,0xce,0xce,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcd,0xcd, + 0xff,0x0,0xcf,0xcf,0xff,0x0,0xcd,0xcd,0xff,0x0,0x8e,0x8e,0xff,0x65,0x7e,0xc2, + 0xff,0x77,0x77,0xf6,0xff,0x68,0x68,0xfb,0xff,0x59,0x58,0xfd,0xff,0x2b,0x29,0xf9, + 0xff,0x4,0x2,0xde,0xff,0x5c,0x5e,0x25,0xff,0x7,0x60,0x5f,0xff,0x0,0xe6,0xe6, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcd,0xcd,0xff,0x0,0xcf,0xcf, + 0xff,0x0,0xcb,0xcb,0xff,0x0,0x7d,0x7d,0xff,0xb9,0xd3,0x2a,0xff,0xe1,0xe1,0x4, + 0xff,0xc6,0xc6,0x0,0xff,0xac,0xab,0x1,0xff,0x88,0x88,0x0,0xff,0x5c,0x5c,0x3, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x1f,0x20,0x20,0xff,0x15,0x15,0x15,0xff,0xaa,0xaa,0xaa,0xff,0x85,0x85,0x85, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x3f,0x6e,0x6e,0xf9,0xff,0x59,0x58,0xfd, + 0xff,0x4f,0x4e,0xfd,0xff,0x37,0x36,0xfb,0xff,0xd,0xb,0xea,0xff,0x8,0x12,0x84, + 0xff,0x1,0xb2,0xb2,0xff,0x0,0xef,0xef,0xff,0x0,0xe1,0xe1,0xff,0x0,0xd5,0xd5, + 0xff,0x0,0xdb,0xdb,0xff,0x0,0xde,0xde,0xff,0xd,0xa9,0xa9,0xff,0x82,0x85,0xe1, + 0xff,0x70,0x70,0xf8,0xff,0x64,0x64,0xfb,0xff,0x59,0x58,0xfc,0xff,0x2c,0x2a,0xf9, + 0xff,0x4,0x2,0xde,0xff,0x63,0x65,0x29,0xff,0x21,0x4c,0x34,0xff,0x0,0xc2,0xc2, + 0xff,0x0,0xed,0xed,0xff,0x0,0xe1,0xe1,0xff,0x0,0xd5,0xd5,0xff,0x0,0xdb,0xdb, + 0xff,0x0,0xdd,0xdd,0xff,0xd,0x9c,0x9c,0xff,0xd2,0xd7,0x13,0xff,0xd9,0xd9,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xa5,0xa4,0x0,0xff,0x85,0x85,0x0,0xff,0x65,0x65,0x25, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xa2,0xa3,0xa3,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x77,0x78,0x78,0xff,0x1f,0x1f,0x1f,0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa, + 0xff,0x55,0x55,0x55,0xdf,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf3,0xff,0x60,0x5f,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x42,0x41,0xfc,0xff,0x21,0x1e,0xf6,0xff,0x8,0x6,0xdd, + 0xff,0xd,0x2b,0x5d,0xff,0x2,0xa1,0xa2,0xff,0x0,0xed,0xed,0xff,0x0,0xee,0xee, + 0xff,0x0,0xea,0xea,0xff,0xb,0xc8,0xc7,0xff,0x56,0x7a,0xa4,0xff,0x7f,0x7f,0xf4, + 0xff,0x62,0x61,0xfc,0xff,0x5c,0x5c,0xfc,0xff,0x51,0x50,0xfd,0xff,0x19,0x16,0xf7, + 0xff,0xa,0x8,0xce,0xff,0x77,0x79,0x1e,0xff,0x56,0x5b,0xd,0xff,0x13,0x4f,0x45, + 0xff,0x0,0xb5,0xb5,0xff,0x0,0xed,0xed,0xff,0x0,0xee,0xee,0xff,0x0,0xea,0xea, + 0xff,0xb,0xbd,0xbd,0xff,0x87,0x9d,0x4d,0xff,0xcd,0xce,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xb6,0xb7,0x1,0xff,0xa1,0x9f,0x0,0xff,0x7c,0x7d,0x0,0xff,0x96,0x96,0x76, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2f,0x30,0x30,0xff,0x10,0x10,0x10, + 0xff,0x5f,0x5f,0x5f,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0xf5,0xc6,0x66,0x66,0xfb, + 0xff,0x68,0x68,0xfb,0xff,0x4d,0x4d,0xfc,0xff,0x3c,0x3b,0xfc,0xff,0x12,0x10,0xf5, + 0xff,0x5,0x3,0xc9,0xff,0x14,0x1a,0x66,0xff,0xc,0x33,0x40,0xff,0x6,0x53,0x56, + 0xff,0x18,0x4d,0x5e,0xff,0x2d,0x32,0x5c,0xff,0x4b,0x4b,0xbb,0xff,0x59,0x58,0xfd, + 0xff,0x53,0x53,0xfd,0xff,0x51,0x51,0xfd,0xff,0x43,0x42,0xfc,0xff,0xa,0x7,0xf5, + 0xff,0x40,0x41,0x86,0xff,0x8d,0x8e,0x9,0xff,0x7a,0x7b,0x0,0xff,0x59,0x5d,0xf, + 0xff,0x27,0x43,0x27,0xff,0x8,0x3a,0x38,0xff,0x0,0x55,0x55,0xff,0x17,0x5d,0x50, + 0xff,0x6b,0x79,0x30,0xff,0xb0,0xb0,0x0,0xff,0xbc,0xbd,0x1,0xff,0xb7,0xb7,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xa1,0x9f,0x0,0xff,0x7f,0x80,0x15,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x7f,0x7f,0x7f,0xff,0xaf,0xaf,0xaf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x1c,0x1c,0x1c, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xe8,0x55,0x74,0x74,0xf7, + 0xff,0x6c,0x6c,0xfa,0xff,0x5d,0x5c,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x30,0x2e,0xf9, + 0xff,0x1c,0x1a,0xf6,0xff,0xe,0xc,0xe8,0xff,0x13,0x12,0xc5,0xff,0x13,0x12,0xa4, + 0xff,0x18,0x17,0xac,0xff,0x1d,0x1c,0xbb,0xff,0x2e,0x2d,0xdb,0xff,0x41,0x40,0xfc, + 0xff,0x46,0x46,0xfc,0xff,0x49,0x48,0xfd,0xff,0x25,0x23,0xf8,0xff,0xe,0xc,0xe6, + 0xff,0xa4,0xa6,0x1b,0xff,0xae,0xae,0x0,0xff,0x87,0x88,0x0,0xff,0x7b,0x7c,0x0, + 0xff,0x6b,0x6b,0x1,0xff,0x63,0x64,0x1,0xff,0x6c,0x6d,0x0,0xff,0x78,0x79,0x0, + 0xff,0x89,0x8a,0x0,0xff,0xa0,0x9f,0x0,0xff,0xad,0xac,0x1,0xff,0xb5,0xb5,0x1, + 0xff,0xb6,0xb6,0x1,0xff,0x9d,0x9b,0x0,0xff,0x52,0x8c,0x39,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x69,0xd5,0xd5,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x63,0x63,0x63,0xff,0x2b,0x2c,0x2c, + 0xff,0x3f,0x3f,0x3f,0xff,0x2f,0x30,0x30,0xff,0x5f,0x5f,0x5f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf3, + 0xa9,0x76,0x76,0xf7,0xff,0x64,0x63,0xfb,0xff,0x4e,0x4e,0xfd,0xff,0x41,0x41,0xfc, + 0xff,0x3e,0x3d,0xfc,0xff,0x30,0x2e,0xf9,0xff,0x1f,0x1d,0xf7,0xff,0x11,0xf,0xf6, + 0xff,0x18,0x16,0xf7,0xff,0x28,0x26,0xf8,0xff,0x35,0x33,0xfa,0xff,0x40,0x40,0xfc, + 0xff,0x44,0x44,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x11,0xe,0xf5,0xff,0x4d,0x4d,0x89, + 0xff,0xc1,0xc3,0x0,0xff,0xbf,0xc1,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb2,0xb2,0x1, + 0xff,0xa6,0xa5,0x1,0xff,0x94,0x93,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0xa5,0xa4,0x0,0xff,0xb3,0xb2,0x1,0xff,0xb5,0xb6,0x1,0xff,0xbb,0xbc,0x0, + 0xff,0xc2,0xc3,0x0,0xff,0xc7,0xc7,0x4,0xff,0x17,0xb1,0x99,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xcc,0xcc,0xcc,0xff,0xce,0xce,0xce,0xff,0xaa,0xaa,0xaa, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0xe,0xe,0xe,0xff,0x9f,0x9f,0x9f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xe5, + 0x2f,0x83,0x83,0xf3,0xff,0x68,0x68,0xfb,0xff,0x4f,0x4f,0xfd,0xff,0x46,0x46,0xfc, + 0xff,0x40,0x40,0xfc,0xff,0x45,0x45,0xfc,0xff,0x44,0x44,0xfc,0xff,0x42,0x41,0xfc, + 0xff,0x41,0x41,0xfd,0xff,0x3f,0x3f,0xfc,0xff,0x43,0x43,0xfc,0xff,0x44,0x44,0xfd, + 0xff,0x42,0x41,0xfc,0xff,0x38,0x37,0xfa,0xff,0x1b,0x19,0xf5,0xff,0x98,0x98,0x50, + 0xff,0xdd,0xdc,0x5,0xff,0xd9,0xd8,0x0,0xff,0xcb,0xcc,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xba,0xbb,0x0,0xff,0xb6,0xb7,0x1,0xff,0xb6,0xb6,0x1, + 0xff,0xb7,0xb7,0x1,0xff,0xb9,0xba,0x0,0xff,0xc8,0xc9,0x0,0xff,0xd8,0xd7,0x1, + 0xff,0xe8,0xe7,0x8,0xff,0xa2,0xe0,0x48,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe9,0xe9,0xe9,0xff,0xc2,0xc2,0xc2,0xff,0xbb,0xbb,0xbb, + 0xff,0xaa,0xaa,0xaa,0xff,0x9b,0x9b,0x9b,0xff,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xdd, + 0x54,0x79,0x79,0xf6,0xff,0x64,0x64,0xfb,0xff,0x52,0x51,0xfd,0xff,0x44,0x44,0xfc, + 0xff,0x47,0x47,0xfc,0xff,0x4e,0x4d,0xfd,0xff,0x4f,0x4f,0xfd,0xff,0x51,0x50,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x51,0x50,0xfd,0xff,0x50,0x50,0xfd,0xff,0x47,0x46,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x3c,0x3b,0xfc,0xff,0x25,0x23,0xf1,0xff,0x1e,0xb3,0xae, + 0xff,0xdc,0xf1,0x24,0xff,0xeb,0xeb,0xb,0xff,0xdd,0xdc,0x2,0xff,0xd8,0xd7,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xcb,0xcc,0x0,0xff,0xc9,0xca,0x0,0xff,0xcb,0xcc,0x0, + 0xff,0xd0,0xd0,0x0,0xff,0xd8,0xd7,0x0,0xff,0xe4,0xe3,0x6,0xff,0xf4,0xf4,0x11, + 0xff,0xb9,0xe7,0x3b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe1,0xe1,0xe1,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaa,0xaa,0xaa,0xff,0x5c,0x5c,0x5c,0xff,0x6f,0x6f,0x6f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x9f,0x6e,0x6e,0xf9,0xff,0x58,0x58,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x4e,0x4d,0xfd, + 0xff,0x59,0x59,0xfd,0xff,0x62,0x62,0xfb,0xff,0x67,0x67,0xfb,0xff,0x66,0x66,0xfb, + 0xff,0x65,0x65,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x58,0x57,0xfd,0xff,0x52,0x51,0xfd, + 0xff,0x4b,0x4b,0xfd,0xff,0x42,0x41,0xfc,0xff,0x2f,0x2e,0xf9,0xff,0xc,0x91,0xbd, + 0xff,0x0,0xb9,0xb9,0xff,0x5d,0xd0,0x7a,0xff,0xb9,0xe8,0x3c,0xff,0xee,0xed,0xc, + 0xff,0xe6,0xe5,0x7,0xff,0xe3,0xe2,0x5,0xff,0xe1,0xe1,0x4,0xff,0xe5,0xe4,0x7, + 0xff,0xec,0xeb,0xb,0xff,0xf2,0xf2,0xf,0xff,0xb9,0xe7,0x3b,0xff,0x52,0xcd,0x81, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,0xff,0xf2,0xf2,0xf2,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xca,0xca,0xca,0xff,0x5f,0x5f,0x5f,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf1,0x1c,0x81,0x81,0xf3, + 0xff,0x60,0x5f,0xfc,0xff,0x52,0x51,0xfd,0xff,0x46,0x46,0xfc,0xff,0x53,0x53,0xfd, + 0xff,0x5e,0x5e,0xfc,0xff,0x6b,0x6b,0xf9,0xff,0x7a,0x7a,0xf6,0xff,0x7d,0x7d,0xf5, + 0xff,0x7a,0x7a,0xf6,0xff,0x6f,0x6f,0xf9,0xff,0x66,0x65,0xfb,0xff,0x5d,0x5c,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x3f,0x3e,0xfc,0xff,0x33,0x31,0xf9,0xff,0x1e,0x75,0xd2, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x52,0xcd,0x81,0xff,0x52,0xcd,0x81,0xff,0x52,0xcd,0x81,0xff,0x52,0xcd,0x81, + 0xff,0x52,0xcd,0x81,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc8,0xc8,0xc8,0xff,0xf3,0xf3,0xf3, + 0xff,0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe8,0xaa,0x76,0x76,0xf7, + 0xff,0x56,0x55,0xfd,0xff,0x44,0x44,0xfc,0xff,0x42,0x42,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x76,0x76,0xf7,0xff,0x7c,0x85,0xe1,0xff,0x4f,0x6a,0x9b,0xff,0x33,0x47,0x69, + 0xff,0x47,0x56,0x87,0xff,0x73,0x75,0xc6,0xff,0x7b,0x7b,0xf5,0xff,0x67,0x67,0xfb, + 0xff,0x58,0x57,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x30,0x2e,0xf9,0xff,0x2d,0x57,0xe1, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xa7,0xa7,0xa7, + 0xff,0x8f,0x8f,0x8f,0xff,0xb2,0xb2,0xb2,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xd7,0x2f,0x81,0x81,0xf3,0xff,0x64,0x64,0xfa, + 0xff,0x50,0x4f,0xfd,0xff,0x3f,0x3e,0xfd,0xff,0x3c,0x3c,0xfc,0xff,0x67,0x66,0xe4, + 0xff,0x61,0x9b,0xba,0xff,0xa,0x75,0x78,0xff,0x0,0x60,0x60,0xff,0x0,0x69,0x69, + 0xff,0x0,0x5a,0x5a,0xff,0x7,0x49,0x49,0xff,0x61,0x6f,0xae,0xff,0x7e,0x7e,0xf4, + 0xff,0x62,0x61,0xfb,0xff,0x48,0x47,0xfd,0xff,0x32,0x30,0xf9,0xff,0x2c,0x33,0xe2, + 0xff,0x4,0x9f,0xaa,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x63,0x63,0x63,0xff,0x2b,0x2c,0x2c, + 0xff,0x3f,0x3f,0x3f,0xff,0x23,0x24,0x24,0xff,0x5f,0x5f,0x5f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x54,0x79,0x79,0xf6,0xff,0x61,0x60,0xfb, + 0xff,0x4f,0x4e,0xfd,0xff,0x3a,0x39,0xfb,0xff,0x34,0x33,0xfa,0xff,0x6e,0x85,0xb8, + 0xff,0x7,0xbc,0xbc,0xff,0x0,0xab,0xab,0xff,0x0,0xbf,0xbf,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xab,0xab,0xff,0x0,0x7b,0x7b,0xff,0x14,0x4e,0x53,0xff,0x86,0x86,0xea, + 0xff,0x70,0x70,0xf8,0xff,0x56,0x55,0xfd,0xff,0x39,0x38,0xfb,0xff,0x30,0x2e,0xf8, + 0xff,0x35,0x5f,0xa2,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xcc,0xcc,0xcc,0xff,0xce,0xce,0xce,0xff,0xa4,0xa4,0xa4, + 0xff,0x94,0x94,0x94,0xff,0x89,0x89,0x89,0xff,0xe,0xe,0xe,0xff,0x9f,0x9f,0x9f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xf3,0x7f,0x71,0x71,0xf8,0xff,0x5e,0x5d,0xfc, + 0xff,0x51,0x50,0xfd,0xff,0x2c,0x2b,0xf9,0xff,0x25,0x23,0xec,0xff,0x39,0x7d,0xa0, + 0xff,0x0,0xdf,0xdf,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcc,0xcc, + 0xff,0x0,0xcb,0xcb,0xff,0x0,0xbe,0xbe,0xff,0x0,0x64,0x64,0xff,0x6c,0x80,0xc5, + 0xff,0x76,0x76,0xf6,0xff,0x5d,0x5c,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x2d,0x2c,0xf8, + 0xff,0x3e,0x3e,0xca,0xff,0x5,0x9b,0xa8,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe9,0xe9,0xe9,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x9b,0x9b,0x9b,0xff,0x54,0x55,0x55,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x7f,0x6e,0x6e,0xfa,0xff,0x61,0x61,0xfb, + 0xff,0x50,0x4f,0xfd,0xff,0x20,0x1f,0xf9,0xff,0xd,0xb,0xdb,0xff,0x13,0x41,0x67, + 0xff,0x0,0xf1,0xf1,0xff,0x0,0xcf,0xcf,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcd,0xcd, + 0xff,0x0,0xcf,0xcf,0xff,0x0,0xcd,0xcd,0xff,0x0,0x8f,0x8f,0xff,0x5d,0x7c,0xb6, + 0xff,0x78,0x78,0xf7,0xff,0x5e,0x5d,0xfc,0xff,0x42,0x42,0xfc,0xff,0x30,0x2f,0xfa, + 0xff,0x34,0x34,0xb7,0xff,0x7,0x92,0xa3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x7,0xb0,0xaa,0xff,0x1c,0x97,0x7d,0xff,0x15,0x9f,0x8c,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe1,0xe1,0xe1,0xff,0xd3,0xd3,0xd3,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xa4,0xa4,0xa4,0xff,0x4d,0x4e,0x4e,0xff,0x6f,0x6f,0x6f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xf4,0x5f,0x6d,0x6d,0xfa,0xff,0x62,0x62,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x27,0x25,0xf9,0xff,0x6,0x3,0xf1,0xff,0xb,0x16,0x79, + 0xff,0x0,0xb1,0xb1,0xff,0x0,0xf0,0xf0,0xff,0x0,0xe1,0xe1,0xff,0x0,0xd6,0xd6, + 0xff,0x0,0xdb,0xdb,0xff,0x0,0xde,0xde,0xff,0x5,0xaa,0xa9,0xff,0x7e,0x88,0xd4, + 0xff,0x74,0x74,0xf7,0xff,0x58,0x57,0xfd,0xff,0x46,0x46,0xfd,0xff,0x33,0x32,0xfa, + 0xff,0x2c,0x2b,0xc0,0xff,0x7,0x92,0xa3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x7,0xb0,0xaa, + 0xff,0x46,0x68,0x26,0xff,0x68,0x68,0x2,0xff,0x65,0x65,0x2,0xff,0x1c,0x97,0x7d, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,0xff,0xf2,0xf2,0xf2,0xff,0xca,0xca,0xca, + 0xff,0xbf,0xbf,0xbf,0xff,0xd2,0xd2,0xd2,0xff,0x4f,0x4f,0x4f,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf3,0x3f,0x7a,0x7a,0xf6,0xff,0x65,0x65,0xfb, + 0xff,0x52,0x51,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x13,0x10,0xf7,0xff,0xb,0xa,0xc2, + 0xff,0x7,0x32,0x46,0xff,0x0,0xc2,0xc2,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf2,0xf2,0xff,0x0,0xe1,0xe1,0xff,0x32,0x76,0x8f,0xff,0x7c,0x7c,0xf1, + 0xff,0x66,0x65,0xfb,0xff,0x4f,0x4e,0xfd,0xff,0x42,0x42,0xfc,0xff,0x26,0x24,0xf8, + 0xff,0x22,0x21,0xc5,0xff,0x12,0x8e,0x8c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0xa0,0x8b,0xff,0x4a,0x5f,0x19, + 0xff,0x63,0x63,0x2,0xff,0x7b,0x7d,0x0,0xff,0x7a,0x7b,0x0,0xff,0x44,0x6d,0x2c, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xce,0xce,0xce,0xff,0xf3,0xf3,0xf3, + 0xff,0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf4,0xe9,0x6b,0x6b,0xfb, + 0xff,0x5a,0x59,0xfd,0xff,0x48,0x47,0xfd,0xff,0x32,0x31,0xfb,0xff,0x14,0x12,0xf7, + 0xff,0x12,0x12,0xb2,0xff,0xb,0x22,0x4c,0xff,0x2,0x58,0x5a,0xff,0x0,0x70,0x70, + 0xff,0x5,0x6a,0x71,0xff,0x19,0x4a,0x69,0xff,0x42,0x45,0xa9,0xff,0x5c,0x5b,0xfc, + 0xff,0x54,0x53,0xfd,0xff,0x46,0x45,0xfc,0xff,0x37,0x36,0xfb,0xff,0x1e,0x1c,0xf7, + 0xff,0x39,0x38,0x82,0xff,0x57,0x57,0x4,0xff,0x41,0x6f,0x31,0xff,0x2f,0x80,0x53, + 0xff,0x1c,0x97,0x7c,0xff,0x15,0xa0,0x8b,0xff,0x15,0xa0,0x8b,0xff,0x15,0xa0,0x8b, + 0xff,0x1f,0x93,0x75,0xff,0x38,0x76,0x40,0xff,0x5b,0x5b,0x3,0xff,0x64,0x64,0x2, + 0xff,0x7c,0x7d,0x0,0xff,0x93,0x93,0x0,0xff,0x9a,0x99,0x0,0xff,0x5a,0x69,0x12, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x71,0x76,0x76,0xf7, + 0xff,0x65,0x65,0xfb,0xff,0x54,0x53,0xfd,0xff,0x43,0x43,0xfc,0xff,0x30,0x2f,0xfa, + 0xff,0x13,0x10,0xf7,0xff,0x10,0xd,0xf2,0xff,0x16,0x14,0xbb,0xff,0x1b,0x1a,0x9e, + 0xff,0x22,0x21,0xb7,0xff,0x26,0x25,0xc6,0xff,0x46,0x45,0xfc,0xff,0x4a,0x4a,0xfc, + 0xff,0x42,0x41,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x22,0x1f,0xf8,0xff,0x16,0x15,0xe2, + 0xff,0x80,0x80,0x26,0xff,0x80,0x81,0x0,0xff,0x6f,0x6f,0x1,0xff,0x64,0x64,0x2, + 0xff,0x5d,0x5d,0x3,0xff,0x56,0x56,0x4,0xff,0x57,0x57,0x4,0xff,0x54,0x54,0x4, + 0xff,0x56,0x56,0x4,0xff,0x63,0x63,0x2,0xff,0x75,0x76,0x0,0xff,0x8c,0x8d,0x0, + 0xff,0xa3,0xa3,0x0,0xff,0xb5,0xb5,0x2,0xff,0xb0,0xb0,0x1,0xff,0x72,0x9a,0x29, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf4, + 0xdf,0x6d,0x6d,0xfa,0xff,0x5f,0x5e,0xfc,0xff,0x52,0x51,0xfd,0xff,0x45,0x45,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x22,0x20,0xf8,0xff,0x14,0x12,0xf7,0xff,0x24,0x22,0xf8, + 0xff,0x33,0x31,0xfa,0xff,0x40,0x3f,0xfd,0xff,0x40,0x40,0xfc,0xff,0x41,0x40,0xfd, + 0xff,0x3e,0x3d,0xfc,0xff,0x2b,0x2a,0xf9,0xff,0x14,0x11,0xf7,0xff,0x55,0x55,0x6f, + 0xff,0xb7,0xb7,0x1,0xff,0xa7,0xa6,0x1,0xff,0x9f,0x9e,0x0,0xff,0x94,0x93,0x0, + 0xff,0x87,0x87,0x0,0xff,0x7f,0x80,0x0,0xff,0x7f,0x80,0x0,0xff,0x7c,0x7d,0x5, + 0xff,0x84,0x83,0x0,0xff,0x8f,0x8e,0x0,0xff,0x9f,0x9f,0x0,0xff,0xb1,0xb1,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xc4,0xc5,0x0,0xff,0xdc,0xdd,0x5,0xff,0x40,0xbc,0x7b, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x2f,0x81,0x81,0xf5,0xe9,0x6c,0x6c,0xfa,0xff,0x61,0x60,0xfc,0xff,0x55,0x54,0xfd, + 0xff,0x4d,0x4c,0xfd,0xff,0x45,0x44,0xfc,0xff,0x3c,0x3b,0xfc,0xff,0x42,0x41,0xfd, + 0xff,0x43,0x42,0xfd,0xff,0x46,0x46,0xfd,0xff,0x48,0x47,0xfd,0xff,0x46,0x45,0xfc, + 0xff,0x3c,0x3a,0xfb,0xff,0x29,0x27,0xf8,0xff,0x40,0x3e,0xae,0xff,0xcb,0xcb,0xd, + 0xff,0xd4,0xd4,0x0,0xff,0xc7,0xc8,0x0,0xff,0xba,0xba,0x1,0xff,0xb4,0xb4,0x1, + 0xff,0xb0,0xb0,0x1,0xff,0xac,0xab,0x1,0xff,0xad,0xac,0x0,0xff,0xb0,0xaf,0x1, + 0xff,0xb4,0xb4,0x1,0xff,0xb7,0xb7,0x1,0xff,0xb8,0xb9,0x1,0xff,0xc4,0xc5,0x0, + 0xff,0xd1,0xd1,0x1,0xff,0xed,0xed,0xc,0xff,0xba,0xe9,0x3e,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x1c,0x84,0x84,0xf4,0xe9,0x6e,0x6e,0xfa,0xff,0x67,0x67,0xfb, + 0xff,0x5c,0x5b,0xfd,0xff,0x58,0x57,0xfd,0xff,0x55,0x54,0xfd,0xff,0x52,0x51,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x57,0x56,0xfd,0xff,0x5c,0x5b,0xfc,0xff,0x57,0x56,0xfd, + 0xff,0x5c,0x5b,0xfc,0xff,0x59,0x58,0xf2,0xff,0x95,0xc3,0x6f,0xff,0xeb,0xeb,0xa, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xd5,0xd5,0x0,0xff,0xc6,0xc7,0x0, + 0xff,0xbf,0xc0,0x0,0xff,0xba,0xbb,0x0,0xff,0xbb,0xbc,0x1,0xff,0xbd,0xbe,0x0, + 0xff,0xc2,0xc3,0x0,0xff,0xc8,0xc9,0x0,0xff,0xd3,0xd3,0x0,0xff,0xe4,0xe3,0x4, + 0xff,0xf6,0xf6,0x13,0xff,0xdd,0xf1,0x27,0xff,0x14,0xbe,0xab,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x2f,0x87,0x87,0xf4,0xaa,0x79,0x79,0xf7, + 0xff,0x6d,0x6d,0xfa,0xff,0x68,0x68,0xfb,0xff,0x68,0x68,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x6a,0x69,0xfa,0xff,0x72,0x72,0xf9,0xff,0x77,0x77,0xf7,0xff,0x79,0x79,0xf7, + 0xff,0x7e,0x7e,0xf0,0xff,0x37,0x94,0xbb,0xff,0x0,0xb9,0xb9,0xff,0x6b,0xd3,0x6f, + 0xff,0xdf,0xee,0x1f,0xff,0xed,0xec,0xb,0xff,0xe7,0xe6,0x7,0xff,0xe1,0xe0,0x2, + 0xff,0xe0,0xdf,0x1,0xff,0xde,0xdd,0x0,0xff,0xdb,0xdb,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xe3,0xe2,0x3,0xff,0xeb,0xeb,0xa,0xff,0xf2,0xf2,0xf,0xff,0xe2,0xf1,0x20, + 0xff,0x7a,0xd7,0x65,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xba,0xba,0xba,0xff,0x5a,0x5a,0x5a,0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x77,0x77,0x77, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xe9, + 0x54,0x86,0x86,0xea,0xff,0x82,0x82,0xf5,0xff,0x82,0x82,0xf5,0xff,0x83,0x83,0xf4, + 0xff,0x86,0x86,0xf0,0xff,0x86,0x86,0xef,0xff,0x90,0x90,0xe4,0xff,0x9f,0x9f,0xd3, + 0xff,0x8b,0x8b,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x63,0xcf,0x70,0xff,0xbe,0xe7,0x37,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf6,0xf6,0x13,0xff,0xf6,0xf5,0x12,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xa3,0xe0,0x49,0xff,0x63,0xcf,0x70,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0x9f,0x9f,0x9f,0xff,0x99,0x99,0x99, + 0xff,0x9c,0x9c,0x9c,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf3,0x2f,0x98,0x98,0xb1,0xff,0xd0,0xd0,0xeb, + 0xff,0xb1,0xb1,0xc5,0xff,0xbb,0xbb,0xc4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x27,0xc1,0x9b,0xff,0x3e,0xc9,0x90,0xff,0x3e,0xc9,0x90,0xff,0x2d,0xc3,0x98, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xb7,0xb7,0xb7,0xff,0xa3,0xa3,0xa3, + 0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x7f,0x7f,0x7f,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xb5,0xb5,0xb5, + 0xff,0xa2,0xa2,0xa2,0xff,0x9f,0x9f,0x9f,0xff,0x85,0x86,0x86,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xba,0xba,0xba,0xff,0xa3,0xa3,0xa3,0xff,0x8e,0x8f,0x8f,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x66,0x66,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xbb,0xcc,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb5,0xb5,0xb5,0xff,0xa3,0xa3,0xa3,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb8,0xb8,0xb8,0xff,0x4f,0x4f,0x4f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x3f,0x3f,0xff,0xa8,0xa8,0xa8,0xff,0xd2,0xd2,0xd2,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xe9,0xe9,0xe9,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xcf,0xcf,0xcf,0xff,0x6f,0x6f,0x6f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x97,0x97,0xef,0xf3,0xf3,0xf3, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xce,0xce,0xce,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x9b,0x9b,0x9b, + 0xff,0xcf,0xcf,0xcf,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xe3,0xe3,0xe3,0xff,0xd3,0xd3,0xd3,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e, + 0x3f,0x8b,0x8b,0x8b,0xef,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x86,0x86,0x86,0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xde,0xde,0xde, + 0xff,0xbe,0xbe,0xbe,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e,0x3f,0x8b,0x8b,0x8b,0xef,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xe6,0xe6,0xe6,0xff,0xbd,0xbd,0xbd,0xff,0x7e,0x7f,0x7f,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x86,0x86,0x86, + 0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xe8,0xe8,0xe8,0xff,0xbe,0xbe,0xbe,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e, + 0x3f,0x87,0x87,0x87,0xef,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0xa9,0xa9,0xa9,0xef,0x7e,0x7e,0x7e, + 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1f,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1f,0xff,0xff,0xff,0x28,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xdf,0xdf,0xdf,0xff,0xcf,0xcf,0xcf,0xff,0xc1,0xc1,0xc1, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xc0,0xc0,0xc0,0xff,0xdf,0xdf,0xdf,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0x7f,0x7f,0x7f,0xff,0x72,0x72,0x72, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xc1,0xc1,0xc1,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0xa2,0xa2,0xa2,0xff,0x94,0x94,0x94, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0xbe,0xbe,0xbe,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x94,0x94,0x94,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x90,0x90,0x90,0xff,0x48,0x48,0x48,0xff,0x75,0x75,0x75,0xff,0xbe,0xbe,0xbe, + 0xff,0xcb,0xcb,0xcb,0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0,0xff,0xcb,0xcb,0xcb,0xff,0xab,0xab,0xab, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0, + 0xff,0xcb,0xcb,0xcb,0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0,0xff,0xbe,0xbe,0xbe,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x94,0x94,0x94,0xff,0xb4,0xb4,0xb4,0xff,0x75,0x75,0x75,0xff,0xbe,0xbe,0xbe, + 0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x12,0x12,0x12, + 0xff,0x54,0x54,0x54,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x6c,0x6c,0x6c,0xff,0xab,0xab,0xab, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0x71,0x71,0x71,0xff,0x7e,0x7e,0x7e,0xff,0xc2,0xc2,0xc2,0xff,0x95,0x95,0x95, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xac,0xac,0xac, + 0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0xac,0xac,0xac,0xff,0xc2,0xc2,0xc2, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a, + 0xff,0xac,0xac,0xac,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xb4,0xb4,0xb4,0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x49,0x49,0x49, + 0xff,0x12,0x12,0x12,0xff,0x96,0x96,0x96,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x36,0x36,0x36,0xff,0xc2,0xc2,0xc2, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x90,0x90,0x90, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0xda,0xda,0xda,0xff,0x95,0x95,0x95,0xff,0xac,0xac,0xac,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c,0xff,0xac,0xac,0xac, + 0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5, + 0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48, + 0xff,0xb5,0xb5,0xb5,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x6d,0x6d,0x6d,0xff,0x36,0x36,0x36,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0xda,0xda,0xda, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5, + 0xff,0xd9,0xd9,0xd9,0xff,0xd0,0xd0,0xd0,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91, + 0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3, + 0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xff,0x95,0x95,0x95, + 0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95, + 0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3, + 0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95, + 0xff,0xd9,0xd9,0xd9,0xff,0xd0,0xd0,0xd0,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91, + 0xff,0xc2,0xc2,0xc2,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4, + 0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0xc3,0xc3,0xc3,0xff,0xc2,0xc2,0xc2,0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91, + 0xff,0x91,0x91,0x91,0xff,0x36,0x36,0x36,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x66,0x66,0x66, + 0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3, + 0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0x91,0x91,0x91,0xff,0x7e,0x7e,0x7e, + 0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e, + 0xff,0xda,0xda,0xda,0xff,0x63,0x63,0x63,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0xac,0xac,0xac,0xff,0x91,0x91,0x91, + 0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95, + 0xff,0xac,0xac,0xac,0xff,0x91,0x91,0x91,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda,0xff,0x63,0x63,0x63, + 0xff,0x95,0x95,0x95,0xff,0xc3,0xc3,0xc3,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0x91,0x91,0x91,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x90,0x90,0x90,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0x36,0x36,0x36, + 0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80, + 0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x30,0x30,0x30,0xff,0xa3,0xa3,0xa3,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95, + 0xff,0xac,0xac,0xac,0xff,0x90,0x90,0x90,0xff,0xb5,0xb5,0xb5,0xff,0xd9,0xd9,0xd9, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0x95,0x95,0x95, + 0xff,0x7f,0x7f,0x7f,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0x71,0x71,0x71,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac, + 0xff,0x90,0x90,0x90,0xff,0x48,0x48,0x48,0xff,0x55,0x56,0x56,0xff,0x7e,0x7e,0x7e, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70, + 0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0x90,0x90,0x90,0xff,0x48,0x48,0x48, + 0xff,0x55,0x55,0x55,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70,0xff,0xac,0xac,0xac, + 0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0x91,0x91,0x91,0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0xa3,0xa3,0xa3, + 0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48, + 0xff,0x7a,0x7a,0x7a,0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x95,0x95,0x95, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xac,0xac,0xac, + 0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0xac,0xac,0xac,0xff,0xc2,0xc2,0xc2, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4, + 0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0x95,0x95,0x95, + 0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48, + 0xff,0x90,0x90,0x90,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x49,0x4a,0x49,0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x6d,0x6d,0x6d, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48, + 0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c,0xff,0xac,0xac,0xac, + 0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5, + 0xff,0xac,0xac,0xac,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x6c,0x6c,0x6c,0xff,0xab,0xab,0xab,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e, + 0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0xda,0xda,0xda,0xff,0xd8,0xd8,0xd8,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30, + 0xff,0xa3,0xa3,0xa3,0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5, + 0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91, + 0xff,0xab,0xab,0xab,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4, + 0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0xb5,0xb5,0xb5, + 0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xff,0x95,0x95,0x95, + 0xff,0xac,0xac,0xac,0xff,0x87,0x87,0x87,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0x87,0x87,0x87,0xff,0x95,0x95,0x95, + 0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9, + 0xff,0x70,0x70,0x70,0xff,0xc3,0xc3,0xc3,0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91, + 0xff,0x90,0x90,0x90,0xff,0x9e,0x9e,0x9e,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda, + 0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0x87,0x87,0x87, + 0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0xd0,0xd0,0xd0,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9,0xff,0x90,0x90,0x90, + 0xff,0xac,0xac,0xac,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0x56,0x56,0x56,0xff,0x36,0x36,0x36, + 0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80, + 0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x30,0x30,0x30,0xff,0x36,0x36,0x36,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xc3,0xc3,0xc3, + 0xff,0xac,0xac,0xac,0xff,0x90,0x90,0x90,0xff,0xb5,0xb5,0xb5,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0xb5,0xb5,0xb5,0xff,0x55,0x55,0x55, + 0xff,0x87,0x87,0x87,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xc3,0xc3,0xc3,0xff,0x95,0x95,0x95, + 0xff,0xb5,0xb5,0xb5,0xff,0x55,0x55,0x55,0xff,0x70,0x70,0x70,0xff,0xc3,0xc3,0xc3, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0x6c,0x6c,0x6c,0xff,0x63,0x63,0x63, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xb4,0xb4,0xb4, + 0xff,0x55,0x55,0x55,0xff,0x70,0x70,0x70,0xff,0xab,0xab,0xab,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x63,0x63,0x63,0xff,0x7e,0x7e,0x7e, + 0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0x6c,0x6c,0x6c, + 0xff,0x63,0x63,0x63,0xff,0x7e,0x7f,0x7f,0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9, + 0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0x95,0x95,0x95,0xff,0xb4,0xb4,0xb4,0xff,0x6c,0x6c,0x6c,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c, + 0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0xa3,0xa3,0xa3, + 0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xab,0xab,0xab, + 0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0x63,0x63,0x63,0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91, + 0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xab,0xab,0xab,0xff,0xab,0xab,0xab, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x63,0x63,0x63, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0x63,0x63,0x63,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x49,0x4a,0x49,0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x6d,0x6d,0x6d, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xd8,0xd8,0xd8,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac, + 0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2, + 0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xc2,0xc2,0xc2, + 0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48, + 0xff,0x91,0x91,0x91,0xff,0xc2,0xc2,0xc2,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xc2,0xc2,0xc2,0xff,0xd9,0xd9,0xd9, + 0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x91,0x91,0x91, + 0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x91,0x91,0x91,0xff,0x95,0x95,0x95,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0xc2,0xc2,0xc2,0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x91,0x91,0x91,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30, + 0xff,0xa2,0xa2,0xa2,0xff,0xcf,0xcf,0xcf,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5, + 0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x90,0x90,0x90, + 0xff,0xeb,0xeb,0xeb,0xff,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x91,0x91,0x91,0xff,0xeb,0xeb,0xeb,0xff,0xf4,0xf4,0xf4,0xff,0xd8,0xd8,0xd8, + 0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91,0xff,0xeb,0xeb,0xeb, + 0xff,0xe1,0xe1,0xe1,0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0xd9,0xd9,0xd9,0xff,0xf4,0xf4,0xf4,0xff,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf, + 0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91,0xff,0xeb,0xeb,0xeb,0xff,0xe1,0xe1,0xe1, + 0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9, + 0xff,0xfe,0xfe,0xfe,0xff,0xe1,0xe1,0xe1,0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5, + 0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4, + 0xff,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91, + 0xff,0xeb,0xeb,0xeb,0xff,0xe1,0xe1,0xe1,0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5, + 0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1, + 0xff,0xee,0xee,0xee,0xff,0xf4,0xf4,0xf4,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0xd8,0xd8,0xd8,0xff,0xe1,0xe1,0xe1, + 0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4,0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5, + 0xff,0xb4,0xb4,0xb4,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4, + 0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9,0xff,0x90,0x90,0x90, + 0xff,0xeb,0xeb,0xeb,0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4,0xff,0xe1,0xe1,0xe1, + 0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9,0xff,0x90,0x90,0x90,0xff,0xeb,0xeb,0xeb, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9, + 0xff,0x90,0x90,0x90,0xff,0xeb,0xeb,0xeb,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xf4,0xf4,0xf4,0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9, + 0xff,0x90,0x90,0x90,0xff,0xeb,0xeb,0xeb,0xff,0xfe,0xfe,0xfe,0xff,0xaf,0xaf,0xaf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xce,0xce,0xce,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd4,0xd4,0xd4, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9e,0x9e,0x9e, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x31,0x0, + 0xff,0x1,0xc6,0x0,0xff,0x0,0xb0,0x0,0xff,0x0,0x2c,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0xc6,0x0, + 0xff,0x1,0xc6,0x0,0xff,0x0,0xb0,0x0,0xff,0x0,0xb0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xb0,0xd9,0x64, + 0xff,0xb0,0xd9,0x64,0xff,0x1,0xc6,0x0,0xff,0x1,0xc6,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x2c,0x36,0x19, + 0xff,0xb0,0xd9,0x64,0xff,0x1,0xc6,0x0,0xff,0x0,0x31,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x8f,0x8f,0x8f,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7f,0x7f,0xff,0x9e,0x9f,0x9f,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1f,0x20,0x20, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1f,0x20,0x20, + 0xff,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x1f,0x20,0x20,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xa0,0xa0,0xa0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x12,0x12,0x12, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x36,0x37,0x36,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x12,0x12,0x12, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x12,0x12,0x12,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x24,0x25,0x24, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x12,0x12,0x12,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x12,0x12,0x12,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x12,0x12,0x12,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x12,0x12,0x12,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xa2,0xa2,0xa7, + 0xff,0x8b,0x8b,0x90,0xff,0x7c,0x7d,0x90,0xff,0x6d,0x6e,0x91,0xff,0x6e,0x6e,0x91, + 0xff,0x6e,0x6e,0x91,0xff,0x6c,0x6c,0x70,0xff,0x81,0x81,0x84,0xff,0x80,0x80,0x7f, + 0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x89,0x89,0x62,0xff,0x89,0x89,0x62,0xff,0x89,0x89,0x62,0xff,0x89,0x89,0x62, + 0xff,0x89,0x89,0x62,0xff,0x97,0x97,0x5f,0xff,0x9b,0x9b,0x5f,0xff,0xab,0xab,0x8f, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x83, + 0xff,0x6c,0x6c,0x70,0xff,0x7e,0x7e,0x94,0xff,0x38,0x38,0x6b,0xff,0x39,0x39,0x6a, + 0xff,0x18,0x19,0x74,0xff,0x14,0x14,0x7e,0xff,0x2d,0x2c,0xb8,0xff,0x25,0x24,0xb7, + 0xff,0x2d,0x2c,0xb9,0xff,0xf,0xf,0x88,0xff,0x13,0x14,0x7e,0xff,0x44,0x44,0x76, + 0xff,0x79,0x79,0x80,0xff,0x81,0x81,0x83,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0x8a,0x8a,0x63,0xff,0x7c,0x7c,0x30,0xff,0x61,0x61,0x2, + 0xff,0x68,0x68,0x1,0xff,0x78,0x79,0x0,0xff,0x78,0x79,0x0,0xff,0x78,0x79,0x0, + 0xff,0x78,0x79,0x0,0xff,0x74,0x74,0x0,0xff,0x73,0x74,0xe,0xff,0x7e,0x80,0x12, + 0xff,0x8c,0x8d,0x2f,0xff,0xab,0xab,0x8f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x90,0x3f,0x62,0x62,0x80,0xbf,0x29,0x2a,0x6a, + 0xff,0x1c,0x1c,0xa5,0xff,0x16,0x15,0xc9,0xff,0x3,0x1,0xd2,0xff,0x14,0x12,0xe6, + 0xff,0x14,0x11,0xf6,0xff,0xd,0xa,0xf6,0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf5, + 0xff,0x7,0x4,0xf5,0xff,0x7,0x4,0xf6,0xff,0x14,0x11,0xf7,0xff,0x11,0x10,0xd3, + 0xff,0xc,0xc,0x92,0xff,0x46,0x46,0x6d,0xff,0x79,0x79,0x8f,0xff,0x80,0x80,0x7e, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xa1,0xff,0x85,0x85,0x42, + 0xff,0x6c,0x6c,0x1,0xff,0x78,0x79,0x0,0xff,0x7c,0x7d,0x0,0xff,0x80,0x82,0x0, + 0xff,0x80,0x82,0x0,0xff,0x80,0x82,0x1,0xff,0x80,0x82,0x1,0xff,0x80,0x82,0x1, + 0xff,0x80,0x82,0x1,0xff,0x7c,0x7d,0x0,0xff,0x80,0x82,0x1,0xff,0x78,0x79,0x0, + 0xff,0x70,0x71,0x1,0xff,0x69,0x6a,0x2,0xff,0x89,0x89,0x48,0xff,0xa4,0xa4,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x75,0x75,0x7f,0xbf,0x50,0x51,0x87,0xff,0x1c,0x1c,0xa4,0xff,0x19,0x17,0xe5, + 0xff,0x14,0x11,0xf6,0xff,0x6,0x3,0xf5,0xff,0x6,0x3,0xf5,0xff,0xd,0xa,0xf5, + 0xff,0x6,0x3,0xf5,0xff,0x14,0x11,0xf5,0xff,0x6,0x3,0xf5,0xff,0xd,0xa,0xf5, + 0xff,0xd,0xa,0xf5,0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf5,0xff,0x7,0x4,0xf5, + 0xff,0x5,0x3,0xe4,0xff,0xe,0xd,0xb7,0xff,0x24,0x24,0x75,0xff,0x60,0x61,0x79, + 0xff,0x9f,0x9f,0x9f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xad,0xad,0xa1,0xff,0x85,0x85,0x42,0xff,0x77,0x78,0x0,0xff,0x80,0x82,0x0, + 0xff,0x80,0x82,0x0,0xff,0x8d,0x8d,0x0,0xff,0x95,0x94,0x0,0xff,0x95,0x94,0x0, + 0xff,0x8d,0x8d,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x7f,0x81,0x1,0xff,0x7c,0x7d,0x0,0xff,0x73,0x74,0x0, + 0xff,0x7c,0x7c,0x31,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x66,0x83, + 0xbf,0x5f,0x5f,0xc7,0xff,0x3a,0x39,0xdf,0xff,0x28,0x26,0xf8,0xff,0x21,0x1f,0xf6, + 0xff,0x21,0x1e,0xf6,0xff,0x22,0x20,0xf7,0xff,0x29,0x27,0xf7,0xff,0x30,0x2f,0xf9, + 0xff,0x38,0x37,0xfb,0xff,0x38,0x37,0xfb,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x30,0x2f,0xf9,0xff,0x28,0x27,0xf7,0xff,0x14,0x11,0xf5,0xff,0x6,0x3,0xf5, + 0xff,0x7,0x4,0xf5,0xff,0x7,0x4,0xf6,0xff,0xa,0x9,0xd3,0xff,0x13,0x13,0x7e, + 0xff,0x7d,0x7d,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xab,0xab,0x8f, + 0xff,0x75,0x76,0x12,0xff,0x8e,0x8e,0x0,0xff,0x8d,0x8d,0x0,0xff,0x94,0x93,0x0, + 0xff,0x9b,0x99,0x0,0xff,0xa1,0xa0,0x0,0xff,0xa8,0xa7,0x1,0xff,0xae,0xae,0x1, + 0xff,0xae,0xae,0x1,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xb8,0xb9,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xae,0x1, + 0xff,0xa7,0xa6,0x1,0xff,0x9c,0x9a,0x0,0xff,0x86,0x87,0x0,0xff,0x80,0x82,0x1, + 0xff,0x78,0x79,0x0,0xff,0x85,0x85,0x31,0xff,0xa4,0xa4,0x91,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xc9,0x3f,0x84,0x84,0xac,0xff,0x79,0x79,0xe2, + 0xff,0x55,0x54,0xfd,0xff,0x38,0x37,0xfb,0xff,0x30,0x2f,0xf9,0xff,0x30,0x2f,0xf9, + 0xff,0x38,0x37,0xfb,0xff,0x40,0x3f,0xfd,0xff,0x46,0x44,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x45,0x44,0xfd,0xff,0x45,0x43,0xfd,0xff,0x44,0x43,0xfd,0xff,0x44,0x43,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb,0xff,0x21,0x1f,0xf6, + 0xff,0xd,0xa,0xf5,0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf5,0xff,0x5,0x2,0xe5, + 0xff,0x11,0x11,0x87,0xff,0x9b,0x9b,0xa9,0xff,0xbb,0xbb,0x8e,0xff,0x93,0x93,0x0, + 0xff,0xa2,0xa0,0x0,0xff,0x9b,0x99,0x0,0xff,0xa1,0xa0,0x0,0xff,0xa7,0xa6,0x1, + 0xff,0xae,0xad,0x1,0xff,0xb4,0xb4,0x2,0xff,0xbc,0xbd,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xb8,0xb8,0x1,0xff,0xb7,0xb8,0x1,0xff,0xbb,0xbc,0x1,0xff,0xb8,0xb8,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xbc,0xbd,0x1,0xff,0xb8,0xb8,0x1, + 0xff,0xb8,0xb8,0x1,0xff,0xb5,0xb5,0x2,0xff,0x9b,0x99,0x0,0xff,0x86,0x87,0x0, + 0xff,0x80,0x82,0x1,0xff,0x7c,0x7e,0x0,0xff,0x6c,0x6d,0x1,0xff,0x7c,0x7c,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x3f,0x85,0x85,0xde,0xff,0x7f,0x7f,0xeb,0xff,0x60,0x5f,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd, + 0xff,0x3f,0x3e,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x44,0x43,0xfd,0xff,0x4a,0x49,0xfd, + 0xff,0x4f,0x4e,0xfd,0xff,0x54,0x53,0xfe,0xff,0x55,0x54,0xfe,0xff,0x54,0x53,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x3f,0x3e,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x30,0x2f,0xf9,0xff,0x29,0x27,0xf7,0xff,0x14,0x11,0xf5,0xff,0x6,0x3,0xf5, + 0xff,0xb,0x9,0xe5,0xff,0x13,0x13,0x7e,0xff,0xaf,0xaf,0x4,0xff,0xb5,0xb5,0x0, + 0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xad,0x1,0xff,0xb5,0xb5,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb8,0x1,0xff,0xb7,0xb8,0x1,0xff,0xbf,0xc0,0x0, + 0xff,0xc2,0xc4,0x0,0xff,0xc9,0xca,0x0,0xff,0xc9,0xca,0x0,0xff,0xc2,0xc4,0x0, + 0xff,0xc2,0xc4,0x0,0xff,0xc2,0xc4,0x0,0xff,0xba,0xbb,0x1,0xff,0xbb,0xbc,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb3,0xb3,0x2,0xff,0xa0,0x9f,0x0, + 0xff,0x86,0x87,0x0,0xff,0x80,0x82,0x1,0xff,0x81,0x83,0x1,0xff,0x74,0x74,0x0, + 0xff,0x46,0x46,0x2,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x3f,0x85,0x85,0xe7,0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb,0xff,0x59,0x59,0xfd, + 0xff,0x4a,0x49,0xfd,0xff,0x44,0x43,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x4f,0x4e,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x54,0x53,0xfe,0xff,0x54,0x53,0xfe, + 0xff,0x53,0x52,0xfe,0xff,0x59,0x58,0xfd,0xff,0x53,0x52,0xfe,0xff,0x59,0x59,0xfd, + 0xff,0x53,0x52,0xfe,0xff,0x54,0x53,0xfe,0xff,0x55,0x54,0xfe,0xff,0x4a,0x49,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb,0xff,0x30,0x2f,0xf9,0xff,0x20,0x1e,0xf6, + 0xff,0x14,0x11,0xf6,0xff,0x3,0x1,0xd3,0xff,0x51,0x50,0x4f,0xff,0xb4,0xb4,0x1, + 0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb5,0x2,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xb7,0xb8,0x1,0xff,0xbf,0xc0,0x0,0xff,0xc9,0xca,0x0,0xff,0xc9,0xca,0x0, + 0xff,0xd6,0xd6,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdd,0xdc,0x0, + 0xff,0xdd,0xdc,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd0,0xd0,0x0,0xff,0xc9,0xca,0x0, + 0xff,0xc1,0xc2,0x0,0xff,0xb7,0xb8,0x1,0xff,0xb1,0xb1,0x2,0xff,0xa8,0xa7,0x1, + 0xff,0x9f,0x9e,0x0,0xff,0x8d,0x8d,0x0,0xff,0x7f,0x81,0x1,0xff,0x81,0x83,0x1, + 0xff,0x74,0x74,0x0,0xff,0x79,0x79,0x52,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf3,0x3f,0x85,0x85,0xe7, + 0xff,0x63,0x63,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x4e,0x4e,0xfd,0xff,0x54,0x53,0xfe,0xff,0x53,0x52,0xfe,0xff,0x53,0x52,0xfe, + 0xff,0x58,0x58,0xfd,0xff,0x57,0x56,0xfd,0xff,0x63,0x63,0xfc,0xff,0x63,0x63,0xfc, + 0xff,0x6a,0x6a,0xfc,0xff,0x6a,0x6a,0xfc,0xff,0x6a,0x6a,0xfc,0xff,0x6a,0x6a,0xfc, + 0xff,0x6a,0x6a,0xfc,0xff,0x63,0x63,0xfc,0xff,0x58,0x57,0xfd,0xff,0x53,0x52,0xfe, + 0xff,0x54,0x53,0xfe,0xff,0x3c,0x3c,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x20,0x1d,0xf5,0xff,0x1a,0x18,0xf6,0xff,0xf,0xd,0xc9,0xff,0x72,0x72,0x34, + 0xff,0xb4,0xb4,0x1,0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb4,0xb5,0x1, + 0xff,0xc9,0xca,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd6,0xd6,0x0,0xff,0xdd,0xdc,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd3,0xd2,0x0,0xff,0xc8,0xc8,0x0,0xff,0xbf,0xbf,0x1,0xff,0xb3,0xb2,0x1, + 0xff,0xb2,0xb2,0x2,0xff,0xa0,0x9f,0x0,0xff,0x94,0x93,0x0,0xff,0x7f,0x81,0x1, + 0xff,0x78,0x79,0x0,0xff,0x68,0x68,0x1,0xff,0xa4,0xa4,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf1,0xbf,0x77,0x77,0xf7, + 0xff,0x64,0x64,0xfb,0xff,0x59,0x59,0xfd,0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x59,0x58,0xfd,0xff,0x5e,0x5d,0xfc,0xff,0x64,0x64,0xfb, + 0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x71,0x71,0xf8,0xff,0x69,0x69,0xfb, + 0xff,0x70,0x70,0xf8,0xff,0x70,0x70,0xf8,0xff,0x70,0x70,0xf8,0xff,0x70,0x70,0xf9, + 0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x58,0x57,0xfd,0xff,0x55,0x54,0xfe,0xff,0x42,0x42,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x19,0x17,0xf5,0xff,0x5,0x2,0xf6,0xff,0x1a,0x19,0x94, + 0xff,0xb1,0xb1,0x3,0xff,0xb4,0xb4,0x1,0xff,0xb6,0xb7,0x1,0xff,0xc1,0xc2,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xd6,0xd6,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd6,0xd6,0x0,0xff,0xcb,0xcc,0x0,0xff,0xbf,0xc0,0x0,0xff,0xb7,0xb7,0x1, + 0xff,0xb3,0xb3,0x2,0xff,0xb5,0xb5,0x2,0xff,0xa7,0xa6,0x1,0xff,0x94,0x93,0x0, + 0xff,0x7f,0x81,0x1,0xff,0x78,0x79,0x0,0xff,0x52,0x52,0x4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x7f,0x7f,0x7f,0xf4,0xff,0x69,0x69,0xfb, + 0xff,0x5f,0x5e,0xfc,0xff,0x54,0x53,0xfe,0xff,0x55,0x54,0xfe,0xff,0x4e,0x4e,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x59,0x58,0xfd,0xff,0x64,0x64,0xfb,0xff,0x69,0x69,0xfb, + 0xff,0x71,0x71,0xf8,0xff,0x68,0x68,0xfc,0xff,0x77,0x77,0xf6,0xff,0x7f,0x7f,0xf4, + 0xff,0x7f,0x7f,0xf4,0xff,0x77,0x77,0xf7,0xff,0x7f,0x7f,0xf5,0xff,0x7f,0x7f,0xf4, + 0xff,0x77,0x77,0xf6,0xff,0x68,0x68,0xfc,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x57,0x56,0xfd,0xff,0x59,0x58,0xfd,0xff,0x55,0x54,0xfe,0xff,0x42,0x42,0xfc, + 0xff,0x3f,0x3e,0xfd,0xff,0x27,0x25,0xf7,0xff,0xd,0xa,0xf5,0xff,0x9,0x7,0xd2, + 0xff,0x6b,0x6b,0x56,0xff,0xc4,0xc3,0x1,0xff,0xd5,0xd4,0x0,0xff,0xd1,0xd0,0x0, + 0xff,0xd5,0xd6,0x0,0xff,0xd5,0xd5,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdb,0xdb,0x5, + 0xff,0xe1,0xe0,0x4,0xff,0xe9,0xe8,0x9,0xff,0xf8,0xf8,0x13,0xff,0xf7,0xf7,0x12, + 0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x13,0xff,0xf0,0xf0,0xf,0xff,0xe2,0xe1,0x5, + 0xff,0xdf,0xde,0x4,0xff,0xcf,0xcf,0x0,0xff,0xbd,0xbf,0x0,0xff,0xbd,0xbf,0x0, + 0xff,0xb9,0xba,0x1,0xff,0xb4,0xb4,0x2,0xff,0xae,0xae,0x1,0xff,0xa1,0xa0,0x0, + 0xff,0x8d,0x8d,0x0,0xff,0x7b,0x7d,0x0,0xff,0x69,0x69,0x1,0xff,0x8c,0x8c,0x74, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0xbf,0x77,0x77,0xf6,0xff,0x6a,0x6a,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x48,0x48,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x59,0x58,0xfd,0xff,0x49,0x48,0xe0,0xff,0x78,0x78,0xf6, + 0xff,0x77,0x77,0xf6,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf3,0xff,0x76,0x8f,0xd8, + 0xff,0x49,0x67,0xa1,0xff,0x44,0x71,0x93,0xff,0x51,0x74,0xa0,0xff,0x6e,0x80,0xc3, + 0xff,0x7f,0x7f,0xf5,0xff,0x7f,0x7f,0xf4,0xff,0x67,0x67,0xfc,0xff,0x6a,0x6a,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x57,0x56,0xfd,0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x38,0x37,0xfb,0xff,0x13,0x10,0xf5,0xff,0x6,0x4,0xf6, + 0xff,0x16,0x15,0xb0,0xff,0xaa,0xaa,0x2d,0xff,0xdd,0xdc,0x0,0xff,0xd4,0xd4,0x0, + 0xff,0xcf,0xcf,0x0,0xff,0xd5,0xd4,0x0,0xff,0xda,0xd9,0x0,0xff,0xf1,0xf1,0xe, + 0xff,0xf1,0xf1,0xe,0xff,0xc2,0xd8,0x41,0xff,0x93,0xbc,0x45,0xff,0x7c,0xa6,0x33, + 0xff,0x7e,0x92,0x1f,0xff,0xa0,0xb4,0x32,0xff,0xeb,0xef,0x23,0xff,0xf8,0xf8,0x13, + 0xff,0xf0,0xf0,0xf,0xff,0xd8,0xd8,0x0,0xff,0xd3,0xd2,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xbd,0xbf,0x0,0xff,0xb4,0xb3,0x2,0xff,0xae,0xad,0x1,0xff,0xae,0xad,0x1, + 0xff,0xa1,0xa0,0x0,0xff,0x86,0x87,0x0,0xff,0x74,0x75,0x0,0xff,0x55,0x55,0x16, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x49,0x48,0xfd,0xff,0x44,0x43,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x5b,0x5b,0xdc,0xff,0x7f,0x7f,0xf5, + 0xff,0x87,0x87,0xf2,0xff,0x6f,0x95,0xe0,0xff,0x1a,0x6d,0x79,0xff,0x0,0x66,0x66, + 0xff,0x0,0x27,0x27,0xff,0x0,0x25,0x25,0xff,0x0,0x27,0x27,0xff,0x0,0x33,0x33, + 0xff,0x1a,0x4a,0x56,0xff,0x60,0x79,0xc4,0xff,0x7f,0x7f,0xf5,0xff,0x6f,0x6f,0xf9, + 0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb,0xff,0x57,0x56,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x48,0x48,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x28,0x26,0xf7,0xff,0x6,0x3,0xf5, + 0xff,0x5,0x3,0xe3,0xff,0x43,0x44,0x79,0xff,0xd9,0xd8,0x1,0xff,0xc1,0xc1,0x0, + 0xff,0xbb,0xbb,0x0,0xff,0xce,0xcf,0x0,0xff,0xe4,0xe3,0x5,0xff,0xb5,0xc3,0x30, + 0xff,0x33,0x8b,0x75,0xff,0x0,0x6a,0x6a,0xff,0x0,0x55,0x55,0xff,0x0,0x57,0x57, + 0xff,0x0,0x57,0x57,0xff,0x0,0x56,0x56,0xff,0x8,0x48,0x47,0xff,0x6b,0x8f,0x41, + 0xff,0xec,0xef,0x21,0xff,0xf9,0xf9,0x14,0xff,0xda,0xd9,0x0,0xff,0xdd,0xdc,0x0, + 0xff,0xce,0xcf,0x0,0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xae,0xad,0x1, + 0xff,0xa1,0xa0,0x0,0xff,0x8d,0x8d,0x0,0xff,0x7c,0x7e,0x0,0xff,0x59,0x59,0x3, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x8e,0x8e,0x8e,0xff,0xaf,0xaf,0xaf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xf5,0xff,0x6a,0x6a,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x44,0x43,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x36,0x35,0xfa,0xff,0x3f,0x3e,0xe9,0xff,0x3f,0x3f,0xc2,0xff,0x68,0x68,0xba, + 0xff,0x56,0x97,0xc5,0xff,0x7,0x90,0x8f,0xff,0x0,0x77,0x77,0xff,0x0,0x54,0x54, + 0xff,0x0,0x49,0x49,0xff,0x0,0x57,0x57,0xff,0x0,0x57,0x57,0xff,0x0,0x4a,0x4a, + 0xff,0x0,0x3e,0x3e,0xff,0x2,0x3d,0x3d,0xff,0x44,0x69,0x98,0xff,0x87,0x87,0xf2, + 0xff,0x77,0x77,0xf6,0xff,0x6a,0x6a,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x4e,0x4e,0xfd,0xff,0x3e,0x3d,0xfc,0xff,0x30,0x2e,0xf9,0xff,0xd,0xa,0xf5, + 0xff,0x6,0x3,0xf5,0xff,0xa,0x8,0xb7,0xff,0x72,0x73,0x3a,0xff,0x82,0x83,0x6, + 0xff,0x7d,0x7c,0x1,0xff,0xb1,0xb1,0x0,0xff,0x89,0xb1,0x56,0xff,0x8,0x83,0x83, + 0xff,0x0,0x8e,0x8e,0xff,0x0,0x6c,0x6c,0xff,0x0,0x56,0x56,0xff,0x0,0x57,0x57, + 0xff,0x0,0x57,0x57,0xff,0x0,0x57,0x57,0xff,0x0,0x58,0x58,0xff,0x0,0x56,0x56, + 0xff,0x34,0x63,0x4e,0xff,0xe3,0xe9,0x26,0xff,0xf1,0xf1,0xf,0xff,0xda,0xd9,0x0, + 0xff,0xce,0xce,0x0,0xff,0xc5,0xc6,0x0,0xff,0xb8,0xb8,0x1,0xff,0xad,0xad,0x1, + 0xff,0xa8,0xa7,0x1,0xff,0x94,0x93,0x0,0xff,0x80,0x82,0x0,0xff,0x65,0x66,0x2, + 0xff,0x61,0x61,0x35,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x3f,0x77,0x77,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x4a,0x49,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x2f,0x2e,0xf9,0xff,0x38,0x38,0xe0,0xff,0x48,0x48,0xb6,0xff,0x51,0x7a,0xa5, + 0xff,0x3,0xc2,0xc2,0xff,0x0,0x5d,0x5d,0xff,0x0,0x7d,0x7d,0xff,0x0,0x71,0x71, + 0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x72,0x72, + 0xff,0x0,0x56,0x56,0xff,0x0,0x58,0x58,0xff,0x0,0x2c,0x2c,0xff,0x67,0x88,0xc6, + 0xff,0x87,0x87,0xf2,0xff,0x6f,0x6f,0xf9,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd,0xff,0x41,0x40,0xfd,0xff,0x12,0xf,0xf5, + 0xff,0x6,0x3,0xf5,0xff,0x5,0x3,0xe4,0xff,0x2d,0x2d,0x6c,0xff,0x6a,0x6b,0xd, + 0xff,0x59,0x59,0x2,0xff,0x6d,0x84,0x4c,0xff,0xf,0xab,0xaa,0xff,0x0,0xad,0xad, + 0xff,0x0,0x7c,0x7c,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71, + 0xff,0x0,0x71,0x71,0xff,0x0,0x72,0x72,0xff,0x0,0x55,0x55,0xff,0x0,0x58,0x58, + 0xff,0x0,0x3d,0x3d,0xff,0x2f,0x6b,0x5c,0xff,0xf1,0xf1,0xd,0xff,0xe9,0xe9,0x9, + 0xff,0xdc,0xdb,0x0,0xff,0xd0,0xd0,0x0,0xff,0xbb,0xbc,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xae,0xad,0x1,0xff,0x9c,0x9a,0x0,0xff,0x80,0x82,0x0,0xff,0x68,0x68,0x1, + 0xff,0x5a,0x5a,0x29,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x60,0x60,0x60,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x7f,0x78,0x78,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x4f,0x4e,0xfd,0xff,0x44,0x43,0xfd,0xff,0x41,0x40,0xfd,0xff,0x31,0x2f,0xf9, + 0xff,0x17,0x15,0xe3,0xff,0x30,0x2f,0xc2,0xff,0x34,0x35,0x90,0xff,0x1a,0xa9,0xa8, + 0xff,0x0,0xb5,0xb5,0xff,0x0,0x8d,0x8d,0xff,0x0,0xab,0xab,0xff,0x0,0xab,0xab, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x8d,0x8d, + 0xff,0x0,0x6f,0x6f,0xff,0x0,0x55,0x55,0xff,0x0,0x4a,0x4a,0xff,0x14,0x4a,0x4b, + 0xff,0x85,0x87,0xe9,0xff,0x87,0x87,0xf1,0xff,0x69,0x69,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x59,0x58,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x3f,0x3f,0xfc,0xff,0x28,0x26,0xf7, + 0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf6,0xff,0xe,0xe,0x89,0xff,0x6a,0x6c,0xd, + 0xff,0x53,0x53,0x2,0xff,0x2a,0xa6,0x9a,0xff,0x0,0xd3,0xd3,0xff,0x0,0x8d,0x8d, + 0xff,0x0,0x8d,0x8d,0xff,0x0,0xab,0xab,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab,0xff,0x0,0x8d,0x8d,0xff,0x0,0x53,0x53, + 0xff,0x0,0x57,0x57,0xff,0x0,0x3c,0x3c,0xff,0x96,0xb6,0x44,0xff,0xf1,0xf1,0xd, + 0xff,0xda,0xd9,0x0,0xff,0xd6,0xd6,0x0,0xff,0xca,0xcb,0x0,0xff,0xb4,0xb4,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0x9c,0x9a,0x0,0xff,0x7f,0x81,0x1,0xff,0x79,0x7a,0x0, + 0xff,0x53,0x53,0x5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0, + 0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0x7f,0x70,0x70,0xf8,0xff,0x6b,0x6b,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4a,0x49,0xfd,0xff,0x45,0x44,0xfd,0xff,0x41,0x40,0xfd,0xff,0x20,0x1d,0xf5, + 0xff,0x29,0x28,0xf8,0xff,0xa,0x9,0x9d,0xff,0x1d,0x2d,0x5b,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab,0xff,0x0,0x55,0x55,0xff,0x0,0x31,0x31, + 0xff,0x6d,0x85,0xbb,0xff,0x87,0x87,0xf3,0xff,0x77,0x77,0xf6,0xff,0x69,0x69,0xfb, + 0xff,0x5e,0x5d,0xfc,0xff,0x54,0x53,0xfe,0xff,0x44,0x44,0xfc,0xff,0x30,0x2e,0xf9, + 0xff,0xd,0xa,0xf5,0xff,0x6,0x3,0xf5,0xff,0xe,0xe,0x89,0xff,0x6a,0x6c,0xd, + 0xff,0x57,0x69,0x3c,0xff,0x0,0xab,0xab,0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0x70,0x70,0xff,0x0,0x4a,0x4a,0xff,0x2a,0x63,0x5e,0xff,0xf8,0xf8,0x12, + 0xff,0xe9,0xe9,0xa,0xff,0xdd,0xdc,0x0,0xff,0xcf,0xd0,0x0,0xff,0xb7,0xb7,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0x9b,0x99,0x0,0xff,0x86,0x87,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x54,0x54,0x5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30, + 0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0x7f,0x69,0x69,0xfb,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4a,0x49,0xfd,0xff,0x40,0x3e,0xfd,0xff,0x38,0x37,0xfb,0xff,0x21,0x1f,0xf6, + 0xff,0xa,0x8,0xd1,0xff,0xb,0xa,0x9d,0xff,0x1f,0x4e,0x6f,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70,0xff,0x0,0x49,0x49, + 0xff,0x50,0x80,0xab,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf1,0xff,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x59,0x58,0xfd,0xff,0x49,0x49,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x14,0x11,0xf5,0xff,0x5,0x3,0xf5,0xff,0xe,0xe,0x89,0xff,0x6a,0x6c,0xd, + 0xff,0x3a,0x57,0x2b,0xff,0x0,0x8b,0x8b,0xff,0x0,0xde,0xde,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xab,0xab,0xff,0x0,0x54,0x54,0xff,0x18,0x69,0x68,0xff,0xe9,0xe9,0x8, + 0xff,0xe8,0xe8,0x9,0xff,0xdc,0xdb,0x0,0xff,0xcf,0xd0,0x0,0xff,0xbb,0xbc,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xa1,0xa0,0x0,0xff,0x89,0x89,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x53,0x53,0x5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x77,0x77,0xf7,0x7f,0x6a,0x6a,0xfb,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4a,0x49,0xfd,0xff,0x45,0x43,0xfd,0xff,0x41,0x40,0xfd,0xff,0x1a,0x17,0xf6, + 0xff,0xa,0x8,0xd2,0xff,0xb,0xa,0x9d,0xff,0x10,0x47,0x69,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xc6,0xc6,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd4,0xd4, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xab,0xab,0xff,0x0,0x54,0x54, + 0xff,0x46,0x6f,0xa4,0xff,0x87,0x87,0xf2,0xff,0x7f,0x7f,0xf4,0xff,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x4e,0x4e,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x13,0x10,0xf5,0xff,0x6,0x4,0xf5,0xff,0xe,0xe,0x89,0xff,0x82,0x84,0x18, + 0xff,0x2b,0x57,0x2e,0xff,0x0,0x93,0x93,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde, + 0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xdf,0xdf,0xff,0x0,0xc7,0xc7, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70,0xff,0x1,0x5c,0x5c,0xff,0xe9,0xe9,0x8, + 0xff,0xf0,0xf0,0xf,0xff,0xdc,0xdb,0x0,0xff,0xcf,0xd0,0x0,0xff,0xbb,0xbc,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0x9b,0x99,0x0,0xff,0x82,0x82,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x53,0x53,0x4,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x77,0x77,0xf6,0x7f,0x71,0x71,0xf8,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x44,0x43,0xfd,0xff,0x41,0x40,0xfd,0xff,0x21,0x1e,0xf6, + 0xff,0x4,0x2,0xe3,0xff,0x1,0x0,0xaf,0xff,0x17,0x29,0x58,0xff,0x0,0x98,0x98, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xde,0xde,0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70, + 0xff,0x5b,0x75,0xa1,0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf7,0xff,0x69,0x69,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x55,0x54,0xfe,0xff,0x3f,0x3f,0xfd, + 0xff,0x19,0x16,0xf5,0xff,0x6,0x4,0xf5,0xff,0xe,0xe,0x89,0xff,0x82,0x84,0x18, + 0xff,0x3a,0x57,0x2b,0xff,0x0,0x52,0x52,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde, + 0xff,0x0,0xdf,0xdf,0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9,0xff,0x0,0xd4,0xd4, + 0xff,0x0,0xc7,0xc7,0xff,0x0,0xd4,0xd4,0xff,0x0,0xc6,0xc6,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xc8,0xc8,0xff,0x0,0xab,0xab,0xff,0x1a,0x78,0x78,0xff,0xe9,0xe9,0x8, + 0xff,0xf1,0xf1,0xf,0xff,0xdc,0xdb,0x0,0xff,0xd6,0xd6,0x0,0xff,0xb7,0xb7,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0x9c,0x9a,0x0,0xff,0x7f,0x81,0x1,0xff,0x79,0x7a,0x0, + 0xff,0x52,0x52,0x4,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0, + 0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf2,0x7f,0x70,0x70,0xf8,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x41,0x40,0xfd,0xff,0x27,0x26,0xf7, + 0xff,0x13,0x11,0xf6,0xff,0x2,0x0,0xc0,0xff,0xf,0x12,0x6c,0xff,0x1,0x69,0x69, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xdd,0xdd,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc6,0xc6,0xff,0x0,0xd3,0xd3,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xde,0xde,0xff,0x0,0xde,0xde,0xff,0x0,0xc8,0xc8,0xff,0x5,0x9a,0x99, + 0xff,0x79,0x82,0xbe,0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf7,0xff,0x6a,0x6a,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x5e,0x5e,0xfc,0xff,0x4e,0x4d,0xfd,0xff,0x45,0x44,0xfd, + 0xff,0x1a,0x18,0xf7,0xff,0x6,0x4,0xf5,0xff,0xe,0xe,0x89,0xff,0x82,0x84,0x18, + 0xff,0x51,0x59,0x1b,0xff,0x0,0x45,0x45,0xff,0x0,0xc1,0xc1,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xea,0xea,0xff,0x0,0xdd,0xdd,0xff,0x0,0xc6,0xc6,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc6,0xc6,0xff,0x0,0xde,0xde,0xff,0x0,0xde,0xde, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x4c,0x99,0x7e,0xff,0xe2,0xe2,0x5, + 0xff,0xda,0xd9,0x0,0xff,0xdc,0xdb,0x0,0xff,0xc9,0xca,0x0,0xff,0xbc,0xbd,0x1, + 0xff,0xae,0xad,0x1,0xff,0x9c,0x9a,0x0,0xff,0x80,0x82,0x0,0xff,0x6c,0x6d,0x1, + 0xff,0x64,0x65,0x27,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30, + 0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x7f,0x70,0x70,0xf8,0xff,0x65,0x64,0xfb,0xff,0x59,0x58,0xfd, + 0xff,0x5a,0x59,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x3e,0x3e,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0xb,0x8,0xe3,0xff,0xc,0xa,0xe5,0xff,0x5,0x5,0xa6,0xff,0xd,0x32,0x41, + 0xff,0x0,0xb6,0xb6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xe9,0xe9,0xff,0x0,0xea,0xea,0xff,0x0,0xdd,0xdd,0xff,0x0,0xd1,0xd1, + 0xff,0x0,0xea,0xea,0xff,0x0,0xdd,0xdd,0xff,0x0,0xdf,0xdf,0xff,0x31,0x63,0x65, + 0xff,0x86,0x86,0xf3,0xff,0x7f,0x7f,0xf4,0xff,0x68,0x68,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x64,0x64,0xfb,0xff,0x65,0x64,0xfb,0xff,0x55,0x54,0xfe,0xff,0x40,0x3f,0xfd, + 0xff,0x13,0x10,0xf5,0xff,0x5,0x3,0xf5,0xff,0xf,0xf,0x88,0xff,0x82,0x84,0x18, + 0xff,0x6a,0x6c,0xe,0xff,0x1a,0x4c,0x41,0xff,0x0,0x67,0x67,0xff,0x0,0xea,0xea, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xdd,0xdd, + 0xff,0x0,0xdd,0xdd,0xff,0x0,0xde,0xde,0xff,0x0,0xe9,0xe9,0xff,0x0,0xea,0xea, + 0xff,0x0,0xdd,0xdd,0xff,0x0,0x98,0x98,0xff,0x97,0xac,0x3e,0xff,0xdb,0xda,0x0, + 0xff,0xd4,0xd4,0x0,0xff,0xd6,0xd6,0x0,0xff,0xc2,0xc4,0x0,0xff,0xb4,0xb4,0x2, + 0xff,0xa7,0xa6,0x1,0xff,0x9c,0x9a,0x0,0xff,0x80,0x82,0x0,0xff,0x65,0x66,0x2, + 0xff,0x71,0x71,0x45,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf6,0xff,0x64,0x64,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x44,0x43,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x22,0x20,0xf7,0xff,0xc,0x9,0xf6,0xff,0x4,0x2,0xd2,0xff,0xf,0x11,0x6c, + 0xff,0x3,0x58,0x58,0xff,0x0,0xcd,0xcd,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xdc,0xdc,0xff,0x0,0xea,0xea,0xff,0x17,0x99,0x99,0xff,0x71,0x75,0xa6, + 0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x64,0x64,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x4e,0x4e,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x5,0x2,0xf5,0xff,0x7,0x4,0xf6,0xff,0x1f,0x20,0x76,0xff,0x82,0x84,0x19, + 0xff,0x6a,0x6b,0xf,0xff,0x4a,0x57,0x21,0xff,0x8,0x2d,0x2d,0xff,0x0,0x98,0x98, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xe9,0xe9,0xff,0x0,0xe9,0xe9, + 0xff,0x0,0xd5,0xd5,0xff,0x3a,0x72,0x73,0xff,0xcf,0xcf,0x2f,0xff,0xd5,0xd5,0x0, + 0xff,0xce,0xce,0x0,0xff,0xc9,0xca,0x0,0xff,0xbb,0xbc,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xa8,0xa7,0x1,0xff,0x9c,0x9a,0x0,0xff,0x7b,0x7d,0x0,0xff,0x61,0x61,0x2, + 0xff,0xa7,0xa7,0xa2,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf,0xbf,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe7,0xff,0x69,0x69,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x5f,0x5e,0xfc,0xff,0x59,0x58,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x3f,0x3f,0xfc, + 0xff,0x27,0x25,0xf7,0xff,0x1a,0x17,0xf5,0xff,0xd,0xa,0xf6,0xff,0x8,0x6,0xb7, + 0xff,0x15,0x18,0x54,0xff,0x8,0x35,0x36,0xff,0x0,0x8e,0x8e,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xea,0xea, + 0xff,0x0,0xdf,0xdf,0xff,0x23,0x90,0x8f,0xff,0x69,0x70,0x84,0xff,0x69,0x69,0xce, + 0xff,0x7f,0x7f,0xf4,0xff,0x69,0x69,0xfb,0xff,0x5e,0x5e,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x59,0x58,0xfd,0xff,0x53,0x52,0xfe,0xff,0x43,0x43,0xfc,0xff,0x21,0x1f,0xf7, + 0xff,0x6,0x3,0xf5,0xff,0x5,0x3,0xe4,0xff,0x4c,0x4d,0x51,0xff,0x81,0x83,0x19, + 0xff,0x78,0x7a,0x8,0xff,0x59,0x59,0x3,0xff,0x3f,0x52,0x29,0xff,0x8,0x27,0x26, + 0xff,0x0,0x68,0x68,0xff,0x0,0xb6,0xb6,0xff,0x0,0xdf,0xdf,0xff,0x0,0xea,0xea, + 0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xea,0xea,0xff,0x0,0xb7,0xb7, + 0xff,0x2d,0x7e,0x7f,0xff,0x9b,0xa2,0x47,0xff,0xc1,0xc3,0x0,0xff,0xcf,0xcf,0x0, + 0xff,0xc4,0xc4,0x0,0xff,0xbf,0xc0,0x0,0xff,0xb7,0xb8,0x1,0xff,0xb5,0xb5,0x2, + 0xff,0xa1,0xa0,0x0,0xff,0x94,0x93,0x0,0xff,0x83,0x84,0x0,0xff,0x5d,0x5e,0x3, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0xf5,0xbf,0x6a,0x6a,0xf9,0xff,0x64,0x64,0xfb, + 0xff,0x65,0x64,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x54,0x53,0xfe,0xff,0x42,0x42,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x28,0x26,0xf7,0xff,0xc,0xa,0xf5,0xff,0x5,0x2,0xe4, + 0xff,0x6,0x5,0xa5,0xff,0x19,0x1a,0x58,0xff,0x1a,0x2b,0x3e,0xff,0x4,0x25,0x28, + 0xff,0x2,0x58,0x58,0xff,0x0,0x70,0x70,0xff,0x7,0x82,0x81,0xff,0x15,0x66,0x66, + 0xff,0x2e,0x46,0x52,0xff,0x39,0x3a,0x58,0xff,0x4f,0x4f,0xb5,0xff,0x4d,0x4d,0xbe, + 0xff,0x5f,0x5e,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x4d,0x4c,0xfd,0xff,0x55,0x54,0xfe, + 0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x13,0x10,0xf5, + 0xff,0x5,0x2,0xf5,0xff,0x16,0x15,0xc7,0xff,0x75,0x77,0x25,0xff,0x86,0x87,0x11, + 0xff,0x7c,0x7e,0x0,0xff,0x74,0x75,0x0,0xff,0x59,0x59,0x3,0xff,0x4b,0x57,0x2b, + 0xff,0x1b,0x44,0x39,0xff,0x0,0x23,0x23,0xff,0x0,0x2e,0x2e,0xff,0x0,0x6f,0x6f, + 0xff,0x0,0x7b,0x7b,0xff,0x0,0x81,0x81,0xff,0x8,0x4e,0x4e,0xff,0x3d,0x64,0x53, + 0xff,0x81,0x84,0x3d,0xff,0xaa,0xaa,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc5,0xc5,0x0, + 0xff,0xbb,0xbc,0x1,0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xa1,0xa0,0x0,0xff,0x95,0x94,0x0,0xff,0x73,0x74,0x0,0xff,0xb4,0xb5,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x7f,0x77,0x77,0xf6,0xff,0x6a,0x6a,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x58,0x57,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x3e,0x3d,0xfd,0xff,0x30,0x2e,0xf9,0xff,0x1a,0x17,0xf5,0xff,0x13,0x11,0xf5, + 0xff,0xd,0xa,0xf7,0xff,0x2,0x0,0xc1,0xff,0xa,0xa,0x9d,0xff,0x18,0x18,0x74, + 0xff,0x1e,0x1f,0x45,0xff,0x16,0x16,0x3c,0xff,0x19,0x19,0x41,0xff,0x1c,0x1d,0x5f, + 0xff,0x18,0x18,0x77,0xff,0x17,0x18,0x76,0xff,0x46,0x46,0xc0,0xff,0x3f,0x3f,0xc2, + 0xff,0x55,0x54,0xfe,0xff,0x4e,0x4d,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x4e,0x4e,0xfd,0xff,0x44,0x44,0xfd,0xff,0x28,0x26,0xf7,0xff,0x5,0x2,0xf5, + 0xff,0xa,0x7,0xf5,0xff,0x51,0x52,0x78,0xff,0xbf,0xc1,0x0,0xff,0xa9,0xa9,0x0, + 0xff,0x85,0x87,0x0,0xff,0x7b,0x7c,0x0,0xff,0x74,0x74,0x0,0xff,0x69,0x69,0x1, + 0xff,0x52,0x52,0x4,0xff,0x4b,0x52,0x17,0xff,0x33,0x45,0x1c,0xff,0x29,0x36,0xe, + 0xff,0x32,0x3d,0xe,0xff,0x3f,0x4b,0x1c,0xff,0x6b,0x6d,0x7,0xff,0x7c,0x7e,0x0, + 0xff,0x8d,0x8d,0x0,0xff,0xae,0xae,0x1,0xff,0xb3,0xb2,0x2,0xff,0xb3,0xb3,0x2, + 0xff,0xb3,0xb3,0x2,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xa1,0xa0,0x0,0xff,0x8e,0x8e,0x0,0xff,0x60,0x60,0x2,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x60,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xe9,0xff,0x70,0x70,0xf9, + 0xff,0x6a,0x6a,0xfb,0xff,0x72,0x72,0xf8,0xff,0x6b,0x6b,0xfb,0xff,0x53,0x52,0xfe, + 0xff,0x42,0x42,0xfc,0xff,0x3f,0x3f,0xfd,0xff,0x30,0x2e,0xf9,0xff,0x20,0x1e,0xf5, + 0xff,0x13,0x11,0xf5,0xff,0xc,0x9,0xf5,0xff,0x1a,0x18,0xf7,0xff,0x11,0xf,0xd3, + 0xff,0x19,0x18,0xd5,0xff,0xb,0xa,0x9c,0xff,0xa,0xa,0x9d,0xff,0x1a,0x1a,0xb0, + 0xff,0x1a,0x1a,0xb0,0xff,0x1a,0x1a,0xaf,0xff,0x25,0x24,0xcc,0xff,0x2d,0x2c,0xe7, + 0xff,0x3e,0x3e,0xfd,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x55,0x54,0xfe, + 0xff,0x43,0x42,0xfc,0xff,0x37,0x36,0xfb,0xff,0x12,0x10,0xf5,0xff,0x6,0x3,0xf5, + 0xff,0x9,0x6,0xe4,0xff,0x94,0x96,0x28,0xff,0xbe,0xc0,0x0,0xff,0xae,0xaf,0x1, + 0xff,0x8f,0x90,0x0,0xff,0x7f,0x81,0x0,0xff,0x80,0x81,0x1,0xff,0x77,0x78,0x0, + 0xff,0x70,0x70,0x0,0xff,0x69,0x69,0x1,0xff,0x62,0x62,0x2,0xff,0x61,0x61,0x2, + 0xff,0x75,0x75,0x0,0xff,0x74,0x74,0x0,0xff,0x7b,0x7d,0x0,0xff,0x86,0x87,0x0, + 0xff,0x94,0x93,0x0,0xff,0x99,0x97,0x0,0xff,0xae,0xad,0x1,0xff,0xa6,0xa5,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb8,0x1, + 0xff,0xa1,0xa0,0x0,0xff,0x82,0x83,0x0,0xff,0x7d,0x7e,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x3f,0x3f,0xff,0x30,0x30,0x30, + 0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x7f,0x86,0x86,0xf2, + 0xff,0x70,0x70,0xf8,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x58,0x57,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x42,0x42,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x27,0x25,0xf7,0xff,0x21,0x1f,0xf5,0xff,0x13,0x10,0xf5,0xff,0xc,0x9,0xf5, + 0xff,0x5,0x2,0xf5,0xff,0xc,0xa,0xf6,0xff,0x13,0x11,0xf6,0xff,0x13,0x11,0xf6, + 0xff,0x13,0x11,0xf6,0xff,0x21,0x1f,0xf6,0xff,0x20,0x1e,0xf6,0xff,0x30,0x2e,0xf9, + 0xff,0x37,0x36,0xfb,0xff,0x3e,0x3e,0xfc,0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd, + 0xff,0x3f,0x3f,0xfc,0xff,0x28,0x26,0xf7,0xff,0x6,0x3,0xf5,0xff,0x5,0x2,0xf5, + 0xff,0x52,0x52,0x7c,0xff,0xc2,0xc4,0x0,0xff,0xbf,0xc1,0x0,0xff,0xba,0xbb,0x0, + 0xff,0xb0,0xb0,0x0,0xff,0xac,0xac,0x0,0xff,0x99,0x9a,0x1,0xff,0x94,0x94,0x1, + 0xff,0x8e,0x8e,0x0,0xff,0x7a,0x7b,0x0,0xff,0x77,0x78,0x0,0xff,0x7b,0x7d,0x0, + 0xff,0x7b,0x7c,0x0,0xff,0x7f,0x81,0x1,0xff,0x85,0x86,0x0,0xff,0x8d,0x8d,0x0, + 0xff,0x93,0x92,0x0,0xff,0x99,0x98,0x0,0xff,0xa7,0xa6,0x1,0xff,0xac,0xac,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xb7,0xb7,0x1,0xff,0xbf,0xc1,0x0,0xff,0xb8,0xb8,0x1, + 0xff,0xa7,0xa6,0x1,0xff,0x8d,0x8d,0x0,0xff,0x20,0xab,0x8a,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0x30,0x30,0x30,0xff,0x6f,0x70,0x70, + 0xff,0xb0,0xb0,0xb0,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x5f,0x5f,0x5f, + 0xff,0x1f,0x20,0x20,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x7f,0x86,0x86,0xf2,0xff,0x70,0x70,0xf8,0xff,0x6a,0x6a,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd, + 0xff,0x3f,0x3e,0xfc,0xff,0x38,0x37,0xfb,0xff,0x38,0x37,0xfb,0xff,0x30,0x2f,0xf9, + 0xff,0x29,0x26,0xf7,0xff,0x1a,0x18,0xf7,0xff,0x1a,0x18,0xf7,0xff,0x21,0x1f,0xf7, + 0xff,0x2a,0x28,0xf9,0xff,0x30,0x2e,0xf9,0xff,0x38,0x37,0xfb,0xff,0x3f,0x3e,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x3d,0x3d,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x1a,0x17,0xf5,0xff,0x6,0x3,0xf5,0xff,0xb,0x8,0xe5, + 0xff,0xaa,0xac,0x12,0xff,0xc1,0xc3,0x0,0xff,0xc1,0xc3,0x0,0xff,0xc5,0xc7,0x0, + 0xff,0xbe,0xc0,0x0,0xff,0xb5,0xb6,0x1,0xff,0xb6,0xb7,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0xa8,0xa7,0x1,0xff,0xa0,0xa0,0x1,0xff,0x9b,0x99,0x0, + 0xff,0x94,0x93,0x0,0xff,0x94,0x93,0x0,0xff,0x99,0x99,0x0,0xff,0xa8,0xa7,0x1, + 0xff,0xae,0xad,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb2,0xb2,0x2, + 0xff,0xba,0xbb,0x1,0xff,0xbe,0xc0,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc5,0xc5,0x0, + 0xff,0xd2,0xd3,0x4,0xff,0x9c,0xc9,0x32,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xde,0xde,0xde,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x6f,0x6f,0x6f,0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0xff,0x7f,0x7f,0xf4,0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x42,0x42,0xfc,0xff,0x43,0x42,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd, + 0xff,0x45,0x44,0xfd,0xff,0x3f,0x3f,0xfc,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x3d,0x3d,0xfc,0xff,0x48,0x48,0xfd,0xff,0x3d,0x3d,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x43,0x42,0xfd,0xff,0x43,0x43,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x38,0x37,0xfb,0xff,0x21,0x1e,0xf6,0xff,0xc,0x9,0xf5,0xff,0x42,0x41,0x92, + 0xff,0xd1,0xd2,0x5,0xff,0xcf,0xcf,0x0,0xff,0xd9,0xd8,0x0,0xff,0xd5,0xd5,0x0, + 0xff,0xce,0xce,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc1,0xc3,0x0,0xff,0xbd,0xbf,0x0, + 0xff,0xb5,0xb6,0x1,0xff,0xbb,0xbc,0x1,0xff,0xb2,0xb2,0x2,0xff,0xb4,0xb4,0x2, + 0xff,0xb8,0xb8,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb7,0xb8,0x1,0xff,0xb3,0xb3,0x2, + 0xff,0xb7,0xb8,0x1,0xff,0xb6,0xb7,0x1,0xff,0xb5,0xb5,0x1,0xff,0xc2,0xc4,0x0, + 0xff,0xc7,0xc8,0x0,0xff,0xd0,0xd0,0x0,0xff,0xdc,0xdb,0x0,0xff,0xe3,0xe2,0x5, + 0xff,0xf7,0xf7,0x12,0xff,0x37,0xc2,0x8a,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xaf,0xaf,0xaf,0xff,0x8e,0x8e,0x8e,0xff,0xb0,0xb0,0xb0,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7e,0x7e,0xff,0x4f,0x50,0x50,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xe4,0xbf,0x86,0x86,0xf2,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x53,0x52,0xfe,0xff,0x55,0x54,0xfe,0xff,0x3c,0x3c,0xfc,0xff,0x49,0x48,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd,0xff,0x43,0x43,0xfd, + 0xff,0x43,0x43,0xfd,0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x43,0x42,0xfc,0xff,0x3d,0x3d,0xfc,0xff,0x41,0x40,0xfd, + 0xff,0x30,0x2e,0xf9,0xff,0x20,0x1d,0xf5,0xff,0x21,0x1f,0xf7,0xff,0x74,0x74,0x8c, + 0xff,0xdc,0xdc,0x1d,0xff,0xf1,0xf1,0xe,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xdb,0xda,0x0,0xff,0xd5,0xd5,0x0,0xff,0xce,0xce,0x0,0xff,0xcf,0xcf,0x0, + 0xff,0xc8,0xc9,0x0,0xff,0xc0,0xc2,0x0,0xff,0xbe,0xbf,0x0,0xff,0xbe,0xc0,0x0, + 0xff,0xb5,0xb6,0x1,0xff,0xb2,0xb2,0x2,0xff,0xb7,0xb7,0x1,0xff,0xb5,0xb6,0x1, + 0xff,0xbd,0xbf,0x0,0xff,0xbc,0xbd,0x0,0xff,0xc8,0xc9,0x0,0xff,0xce,0xcf,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xe3,0xe2,0x5,0xff,0xea,0xe9,0xa,0xff,0xf7,0xf7,0x12, + 0xff,0xba,0xe8,0x3c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb0,0xb0,0xb0,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f, + 0xff,0xb0,0xb0,0xb0,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xe8,0xff,0x78,0x78,0xf6,0xff,0x6a,0x6a,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x55,0x54,0xfe,0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd,0xff,0x3c,0x3c,0xfc, + 0xff,0x43,0x43,0xfd,0xff,0x48,0x48,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3e,0x3e,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7,0xff,0x20,0x1f,0xe6,0xff,0x2,0xab,0xb3, + 0xff,0x3e,0xc9,0x8f,0xff,0xf8,0xf8,0x11,0xff,0xf8,0xf8,0x14,0xff,0xe1,0xe1,0x5, + 0xff,0xe1,0xe1,0x5,0xff,0xda,0xd9,0x0,0xff,0xdb,0xda,0x0,0xff,0xd4,0xd3,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xcf,0xcf,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc0,0xc2,0x0, + 0xff,0xc0,0xc2,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc7,0xc8,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xce,0xcf,0x0,0xff,0xd5,0xd5,0x0,0xff,0xdb,0xda,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xe9,0xe9,0xa,0xff,0xf8,0xf8,0x14,0xff,0xf7,0xf7,0x12,0xff,0xba,0xe8,0x3c, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0xb0,0xb0,0xb0, + 0xff,0x9f,0x9f,0x9f,0xff,0x60,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xdd, + 0x7f,0x86,0x86,0xf2,0xff,0x69,0x69,0xfb,0xff,0x65,0x64,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd,0xff,0x4e,0x4d,0xfd, + 0xff,0x59,0x58,0xfd,0xff,0x53,0x52,0xfe,0xff,0x59,0x58,0xfd,0xff,0x59,0x58,0xfd, + 0xff,0x5f,0x5e,0xfc,0xff,0x5f,0x5f,0xfc,0xff,0x58,0x57,0xfd,0xff,0x58,0x57,0xfd, + 0xff,0x52,0x51,0xfe,0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x54,0x53,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x43,0x43,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x27,0x25,0xf7,0xff,0x28,0x26,0xf8,0xff,0x1e,0x93,0xc2, + 0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x8f,0xff,0xba,0xe8,0x3b,0xff,0xf8,0xf8,0x12, + 0xff,0xef,0xef,0xe,0xff,0xe9,0xe9,0xa,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xdb,0xda,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdb,0xda,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xe9,0xe9,0xa,0xff,0xf8,0xf8,0x13, + 0xff,0xf7,0xf7,0x11,0xff,0xf7,0xf7,0x12,0xff,0x7c,0xd8,0x65,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee,0xff,0xcf,0xcf,0xcf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x6f,0x6f,0x6f,0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0xbf,0x7f,0x7f,0xf4,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x4e,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x55,0x54,0xfe,0xff,0x53,0x52,0xfe, + 0xff,0x57,0x56,0xfd,0xff,0x64,0x64,0xfb,0xff,0x64,0x64,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x64,0x64,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x51,0x50,0xfe,0xff,0x59,0x58,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x42,0x42,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7,0xff,0x0,0x5c,0xb4, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x8f, + 0xff,0xba,0xe8,0x3b,0xff,0xf7,0xf7,0x11,0xff,0xf7,0xf7,0x13,0xff,0xf0,0xf0,0xe, + 0xff,0xe9,0xe8,0xa,0xff,0xe1,0xe1,0x5,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xe9,0xe9,0xa,0xff,0xf0,0xf0,0xd, + 0xff,0xef,0xef,0xd,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x11, + 0xff,0x7c,0xd8,0x65,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xee,0xee,0xee,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xdf,0xdf,0xdf,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x3f,0x85,0x85,0xf2, + 0xff,0x78,0x78,0xf7,0xff,0x65,0x64,0xfb,0xff,0x53,0x52,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x54,0x53,0xfe,0xff,0x5e,0x5d,0xfc, + 0xff,0x5e,0x5d,0xfc,0xff,0x64,0x64,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb, + 0xff,0x69,0x69,0xfc,0xff,0x69,0x69,0xfb,0xff,0x69,0x69,0xfc,0xff,0x69,0x69,0xfb, + 0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x64,0x64,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x52,0x51,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x3e,0x3d,0xfd,0xff,0x41,0x40,0xfd,0xff,0x27,0x25,0xf7,0xff,0x45,0x44,0xe9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x7c,0xd8,0x65,0xff,0x7b,0xd8,0x65, + 0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12, + 0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12, + 0xff,0xf7,0xf7,0x11,0xff,0x7b,0xd8,0x65,0xff,0x7c,0xd8,0x65,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xdf,0xdf,0xdf, + 0xff,0xde,0xde,0xde,0xff,0xdf,0xdf,0xdf,0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee, + 0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf1,0xbf,0x86,0x86,0xf3, + 0xff,0x6a,0x6a,0xfb,0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd, + 0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd,0xff,0x54,0x53,0xfe,0xff,0x58,0x57,0xfd, + 0xff,0x64,0x63,0xfb,0xff,0x68,0x68,0xfb,0xff,0x77,0x77,0xf6,0xff,0x7f,0x7f,0xf4, + 0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf2, + 0xff,0x77,0x77,0xf7,0xff,0x70,0x70,0xf9,0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x52,0x51,0xfe,0xff,0x48,0x48,0xfd,0xff,0x3d,0x3d,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x28,0x26,0xf7,0xff,0x44,0x44,0xfd, + 0xff,0x2,0xab,0xb3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xde,0xde,0xde, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xc9,0x3f,0x85,0x85,0xf2,0xff,0x78,0x78,0xf7, + 0xff,0x6b,0x6b,0xfb,0xff,0x4e,0x4d,0xfd,0xff,0x49,0x48,0xfd,0xff,0x42,0x42,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x4e,0x4d,0xfd,0xff,0x57,0x56,0xfd, + 0xff,0x71,0x71,0xf8,0xff,0x7f,0x7f,0xf4,0xff,0x87,0x87,0xf3,0xff,0x7e,0x7e,0xe0, + 0xff,0x86,0x86,0xdf,0xff,0x60,0x60,0xaa,0xff,0x7b,0x7b,0xc4,0xff,0x6c,0x6c,0xc4, + 0xff,0x86,0x86,0xe9,0xff,0x87,0x87,0xf2,0xff,0x7f,0x7f,0xf3,0xff,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe,0xff,0x3c,0x3c,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x29,0x26,0xf8,0xff,0x25,0x24,0xdd, + 0xff,0x35,0x92,0xda,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe4,0xbf,0x86,0x86,0xf2,0xff,0x71,0x71,0xf9, + 0xff,0x5f,0x5e,0xfc,0xff,0x54,0x53,0xfe,0xff,0x43,0x43,0xfd,0xff,0x44,0x44,0xfd, + 0xff,0x3e,0x3e,0xfd,0xff,0x3c,0x3c,0xfc,0xff,0x53,0x52,0xfe,0xff,0x72,0x72,0xf9, + 0xff,0x87,0x87,0xf2,0xff,0x86,0x87,0xe9,0xff,0x65,0x88,0xb4,0xff,0x32,0x74,0x80, + 0xff,0x7,0x2e,0x2e,0xff,0x0,0x26,0x26,0xff,0x7,0x2f,0x2e,0xff,0x1c,0x3b,0x3b, + 0xff,0x39,0x4b,0x6d,0xff,0x5f,0x60,0xa0,0xff,0x87,0x87,0xf3,0xff,0x7f,0x7f,0xf3, + 0xff,0x68,0x68,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x4e,0x4e,0xfd, + 0xff,0x3f,0x3e,0xfd,0xff,0x38,0x37,0xfb,0xff,0x20,0x1d,0xf5,0xff,0x36,0x35,0xfa, + 0xff,0x25,0x71,0xd3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x3f,0x85,0x85,0xf2,0xff,0x78,0x78,0xf6,0xff,0x6a,0x6a,0xfb, + 0xff,0x53,0x52,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x3f,0x3e,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x5f,0x5e,0xfc,0xff,0x86,0x86,0xde, + 0xff,0x7c,0x86,0xb5,0xff,0x2b,0x85,0x8f,0xff,0x0,0x77,0x77,0xff,0x0,0x54,0x54, + 0xff,0x0,0x49,0x49,0xff,0x0,0x57,0x57,0xff,0x0,0x57,0x57,0xff,0x0,0x4a,0x4a, + 0xff,0x0,0x3e,0x3e,0xff,0x16,0x46,0x46,0xff,0x72,0x78,0xb6,0xff,0x87,0x87,0xf3, + 0xff,0x7f,0x7f,0xf3,0xff,0x69,0x69,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x5a,0x59,0xfd, + 0xff,0x3d,0x3d,0xfc,0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7,0xff,0x28,0x26,0xf7, + 0xff,0x1a,0x38,0xbc,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x60,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x60,0x60,0x60,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xde,0x7f,0x86,0x86,0xf2,0xff,0x71,0x71,0xf8,0xff,0x65,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x37,0x36,0xfb,0xff,0x4a,0x49,0xfd,0xff,0x62,0x62,0xd0,0xff,0x8a,0x95,0xab, + 0xff,0x1f,0xb7,0xb7,0xff,0x0,0x5d,0x5d,0xff,0x0,0x7d,0x7d,0xff,0x0,0x71,0x71, + 0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x72,0x72, + 0xff,0x0,0x56,0x56,0xff,0x0,0x58,0x58,0xff,0xe,0x33,0x33,0xff,0x80,0x8a,0xdc, + 0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf6,0xff,0x64,0x63,0xfc,0xff,0x58,0x57,0xfd, + 0xff,0x48,0x48,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x28,0x26,0xf7,0xff,0x21,0x1f,0xf6, + 0xff,0x4f,0x4f,0xdf,0xff,0xe,0x6b,0x8d,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x6f,0x6f,0x6f,0xff,0x0,0x0,0x0,0xff,0x1f,0x20,0x20, + 0xff,0x8f,0x90,0x90,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20, + 0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0x7f,0x7e,0x7e,0xf4,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x2f,0x2e,0xf9,0xff,0x3e,0x3e,0xdf,0xff,0x86,0x86,0xb8,0xff,0x55,0xbb,0xb3, + 0xff,0x0,0xb4,0xb4,0xff,0x0,0x8d,0x8d,0xff,0x0,0xab,0xab,0xff,0x0,0xab,0xab, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x8d,0x8d, + 0xff,0x0,0x6f,0x6f,0xff,0x0,0x55,0x55,0xff,0x0,0x4a,0x4a,0xff,0x3b,0x60,0x70, + 0xff,0x86,0x86,0xe9,0xff,0x87,0x87,0xf1,0xff,0x68,0x68,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x3e,0x3d,0xfd,0xff,0x38,0x37,0xfb,0xff,0x1f,0x1d,0xf6, + 0xff,0x40,0x3f,0xf9,0xff,0x36,0x37,0x86,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0x90,0x90,0x90,0xff,0xb0,0xb0,0xb0, + 0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0xff,0x7f,0x7f,0xf4,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x30,0x2e,0xf9, + 0xff,0x30,0x2e,0xf9,0xff,0x36,0x35,0xc9,0xff,0x79,0x81,0x91,0xff,0xe,0xcc,0xcc, + 0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab,0xff,0x0,0x55,0x55,0xff,0x1,0x35,0x34, + 0xff,0x7e,0x8b,0xdc,0xff,0x87,0x87,0xf2,0xff,0x6f,0x6f,0xf9,0xff,0x64,0x63,0xfc, + 0xff,0x5a,0x59,0xfd,0xff,0x3e,0x3d,0xfd,0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7, + 0xff,0x30,0x2f,0xf9,0xff,0x4d,0x4c,0xed,0xff,0x28,0x85,0xa7,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x8e,0x8e,0x8e,0xff,0x9f,0x9f,0x9f,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0xff,0x70,0x70,0xf9,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x38,0x37,0xfb,0xff,0x19,0x17,0xf6, + 0xff,0x20,0x1e,0xf7,0xff,0x34,0x34,0xcc,0xff,0x5a,0x82,0x93,0xff,0x0,0xde,0xde, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70,0xff,0x0,0x49,0x49, + 0xff,0x5f,0x87,0xb0,0xff,0x87,0x87,0xf3,0xff,0x78,0x78,0xf6,0xff,0x64,0x64,0xfb, + 0xff,0x5a,0x59,0xfd,0xff,0x3d,0x3d,0xfc,0xff,0x41,0x40,0xfd,0xff,0x30,0x2f,0xf9, + 0xff,0x29,0x27,0xf8,0xff,0x20,0x1f,0xd1,0xff,0x36,0x37,0x7d,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x8e,0x8e,0x8e,0xff,0x9f,0x9f,0x9f,0xff,0xc1,0xc1,0xc1, + 0xff,0x7f,0x7f,0x7f,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0xff,0x72,0x72,0xf9,0xff,0x65,0x65,0xfb,0xff,0x60,0x5f,0xfc, + 0xff,0x5a,0x59,0xfd,0xff,0x4b,0x4a,0xfd,0xff,0x39,0x38,0xfb,0xff,0x14,0x12,0xf7, + 0xff,0x1b,0x19,0xf7,0xff,0x22,0x22,0x9d,0xff,0x30,0x64,0x68,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd4,0xd4, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xac,0xac,0xff,0x0,0x57,0x57, + 0xff,0x43,0x70,0x93,0xff,0x87,0x87,0xf4,0xff,0x78,0x78,0xf7,0xff,0x6a,0x6a,0xfb, + 0xff,0x5a,0x59,0xfd,0xff,0x44,0x43,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x31,0x2f,0xfa, + 0xff,0x36,0x35,0xfa,0xff,0x2d,0x2d,0xc2,0xff,0x38,0x38,0x7d,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb0,0xb0,0xb0,0xff,0x9f,0x9f,0x9f, + 0xff,0x7e,0x7e,0x7e,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0xff,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x50,0x4f,0xfd,0xff,0x32,0x31,0xfb,0xff,0xd,0xb,0xf7, + 0xff,0xd,0xb,0xf7,0xff,0xc,0xa,0x9d,0xff,0x13,0x29,0x4b,0xff,0x0,0x9a,0x9a, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xde,0xde,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0x73,0x73, + 0xff,0x4c,0x6f,0x8f,0xff,0x87,0x87,0xf4,0xff,0x78,0x78,0xf7,0xff,0x6b,0x6b,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x44,0x43,0xfc,0xff,0x44,0x44,0xfc,0xff,0x38,0x37,0xfb, + 0xff,0x29,0x28,0xf8,0xff,0x3a,0x3a,0xc3,0xff,0x35,0x36,0x92,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0x9f,0x8c, + 0xff,0x2a,0x86,0x5f,0xff,0x2a,0x86,0x5f,0xff,0x2a,0x86,0x5f,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x1f,0x20,0x20,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x4b,0x4a,0xfd,0xff,0x39,0x38,0xfb,0xff,0xe,0xb,0xf7, + 0xff,0x7,0x4,0xf7,0xff,0x4,0x1,0xc1,0xff,0x15,0x1f,0x56,0xff,0x0,0x67,0x67, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xde,0xde,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc7,0xc7,0xff,0x0,0xd3,0xd3,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xde,0xde,0xff,0x0,0xde,0xde,0xff,0x0,0xc8,0xc8,0xff,0x0,0x9b,0x9b, + 0xff,0x6e,0x8b,0xab,0xff,0x87,0x87,0xf4,0xff,0x78,0x78,0xf7,0xff,0x65,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x49,0x49,0xfd,0xff,0x44,0x44,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x36,0x34,0xfa,0xff,0x36,0x34,0xcc,0xff,0x19,0x1a,0x77,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0x9f,0x8c,0xff,0x54,0x54,0x6, + 0xff,0x5b,0x5b,0x4,0xff,0x62,0x62,0x3,0xff,0x5b,0x5b,0x4,0xff,0x3f,0x6d,0x32, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x5f,0x5f,0x5f,0xff,0x0,0x0,0x0,0xff,0x8f,0x8f,0x8f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x7f,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x4b,0x4a,0xfd,0xff,0x41,0x40,0xfd,0xff,0x15,0x13,0xf8, + 0xff,0x7,0x4,0xf7,0xff,0x8,0x5,0xf7,0xff,0xe,0xd,0x93,0xff,0x3,0x2a,0x2b, + 0xff,0x0,0xb7,0xb7,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xea,0xea,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xdf,0xdf,0xff,0x16,0x67,0x64, + 0xff,0x85,0x87,0xde,0xff,0x87,0x87,0xf3,0xff,0x70,0x70,0xf9,0xff,0x65,0x64,0xfb, + 0xff,0x4f,0x4e,0xfd,0xff,0x49,0x49,0xfd,0xff,0x44,0x44,0xfd,0xff,0x31,0x2f,0xfa, + 0xff,0x29,0x28,0xf8,0xff,0x3b,0x3a,0xea,0xff,0x19,0x1a,0x78,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x15,0x9f,0x8c,0xff,0x54,0x54,0x6,0xff,0x5b,0x5b,0x4, + 0xff,0x71,0x71,0x0,0xff,0x75,0x75,0x0,0xff,0x75,0x75,0x0,0xff,0x5b,0x5b,0x4, + 0xff,0x15,0x9f,0x8c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xee,0xee,0xee,0xff,0xfe,0xfe,0xfe,0xff,0xee,0xee,0xee, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xee,0xee,0xee, + 0xff,0xfe,0xfe,0xfe,0xff,0x6f,0x6f,0x6f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x7f,0x80,0x80,0xf5,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x50,0x4f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0xd,0xb,0xf7,0xff,0x7,0x4,0xf7,0xff,0x9,0x6,0xb7,0xff,0x13,0x1c,0x4f, + 0xff,0x0,0x53,0x53,0xff,0x0,0xce,0xce,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xde,0xde,0xff,0x0,0xea,0xea,0xff,0x1,0x9a,0x9a,0xff,0x5e,0x75,0x94, + 0xff,0x86,0x86,0xe9,0xff,0x70,0x70,0xfa,0xff,0x64,0x64,0xfc,0xff,0x5f,0x5f,0xfc, + 0xff,0x4f,0x4e,0xfd,0xff,0x49,0x49,0xfd,0xff,0x3f,0x3f,0xfd,0xff,0x29,0x27,0xf8, + 0xff,0x22,0x20,0xf8,0xff,0x27,0x25,0xd6,0xff,0x19,0x1a,0x78,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x2a,0x87,0x5e,0xff,0x54,0x54,0x6,0xff,0x54,0x54,0x6,0xff,0x69,0x69,0x1, + 0xff,0x79,0x7a,0x0,0xff,0x79,0x7a,0x0,0xff,0x7d,0x7e,0x0,0xff,0x69,0x69,0x1, + 0xff,0x2a,0x86,0x5f,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xee,0xee,0xee,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xde,0xde,0xde,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x60,0x5f,0xfc,0xff,0x55,0x54,0xfe,0xff,0x4a,0x49,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x2a,0x29,0xfa,0xff,0x7,0x4,0xf7,0xff,0x7,0x4,0xf7,0xff,0x20,0x20,0xa6, + 0xff,0x11,0x1d,0x3c,0xff,0x0,0x2a,0x2a,0xff,0x0,0x90,0x90,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xea,0xea,0xff,0x0,0xdf,0xdf,0xff,0x0,0xea,0xea, + 0xff,0x0,0xdf,0xdf,0xff,0x2,0x92,0x92,0xff,0x3b,0x64,0x64,0xff,0x65,0x65,0xc7, + 0xff,0x73,0x72,0xf8,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x54,0x53,0xfe, + 0xff,0x49,0x49,0xfd,0xff,0x43,0x43,0xfc,0xff,0x41,0x40,0xfd,0xff,0x21,0x1f,0xf7, + 0xff,0x29,0x28,0xf9,0xff,0x19,0x17,0xd4,0xff,0x36,0x36,0x3e,0xff,0x3f,0x6d,0x31, + 0xff,0x15,0xa0,0x8b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0xa0,0x8b,0xff,0x3f,0x6e,0x31, + 0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x6,0xff,0x69,0x69,0x1,0xff,0x79,0x7a,0x0, + 0xff,0x7d,0x7e,0x0,0xff,0x87,0x88,0x0,0xff,0x87,0x88,0x0,0xff,0x69,0x69,0x1, + 0xff,0x54,0x54,0x6,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7,0xff,0x6b,0x6b,0xfb, + 0xff,0x60,0x5f,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x43,0x43,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x21,0x1f,0xf7,0xff,0x7,0x4,0xf7,0xff,0x6,0x3,0xe5, + 0xff,0x1d,0x1d,0xa6,0xff,0x16,0x1f,0x49,0xff,0x5,0x22,0x28,0xff,0x0,0x20,0x20, + 0xff,0x0,0x52,0x52,0xff,0x0,0x6f,0x6f,0xff,0x0,0x78,0x78,0xff,0x0,0x5b,0x5b, + 0xff,0xf,0x4d,0x4c,0xff,0x29,0x41,0x60,0xff,0x3f,0x40,0x89,0xff,0x41,0x41,0xc1, + 0xff,0x5a,0x59,0xfd,0xff,0x53,0x52,0xfe,0xff,0x54,0x53,0xfe,0xff,0x49,0x49,0xfd, + 0xff,0x44,0x43,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x29,0x27,0xf8,0xff,0x22,0x20,0xf8, + 0xff,0x21,0x1f,0xf7,0xff,0x1f,0x1c,0xd5,0xff,0x5e,0x5f,0x4,0xff,0x54,0x54,0x4, + 0xff,0x54,0x54,0x4,0xff,0x54,0x55,0x4,0xff,0x3f,0x6e,0x31,0xff,0x2a,0x87,0x5e, + 0xff,0x15,0xa0,0x8b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x2a,0x87,0x5e,0xff,0x3f,0x6e,0x31,0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x5, + 0xff,0x62,0x62,0x2,0xff,0x69,0x69,0x1,0xff,0x7d,0x7e,0x0,0xff,0x7d,0x7e,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x9c,0x9a,0x0,0xff,0x9c,0x9a,0x0,0xff,0x7f,0x7f,0x0, + 0xff,0x5b,0x5b,0x4,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x7f,0x80,0x80,0xf5,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x41,0x40,0xfd,0xff,0x21,0x1f,0xf7,0xff,0x7,0x4,0xf7, + 0xff,0x7,0x4,0xf7,0xff,0x18,0x16,0xcb,0xff,0x1d,0x1d,0xa7,0xff,0x14,0x1b,0x60, + 0xff,0xe,0x15,0x45,0xff,0xc,0xf,0x3e,0xff,0xe,0x15,0x45,0xff,0x14,0x1b,0x60, + 0xff,0x19,0x1a,0x78,0xff,0x17,0x17,0x81,0xff,0x2a,0x2a,0xc4,0xff,0x40,0x3f,0xea, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x44,0x44,0xfd, + 0xff,0x40,0x3f,0xfc,0xff,0x39,0x37,0xfb,0xff,0x21,0x1f,0xf7,0xff,0x14,0x12,0xf7, + 0xff,0x13,0x11,0xe5,0xff,0x54,0x55,0x62,0xff,0x7b,0x7c,0x0,0xff,0x69,0x69,0x1, + 0xff,0x69,0x69,0x1,0xff,0x54,0x54,0x6,0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x4, + 0xff,0x54,0x54,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4, + 0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4, + 0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x4,0xff,0x5b,0x5b,0x4,0xff,0x70,0x70,0x0, + 0xff,0x74,0x75,0x0,0xff,0x79,0x7a,0x0,0xff,0x83,0x84,0x0,0xff,0x95,0x94,0x0, + 0xff,0xae,0xae,0x1,0xff,0xb5,0xb5,0x2,0xff,0xae,0xae,0x1,0xff,0x95,0x94,0x0, + 0xff,0x4d,0x7b,0x2f,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7, + 0xff,0x65,0x65,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5a,0x59,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x49,0x49,0xfd,0xff,0x3e,0x3e,0xfc,0xff,0x41,0x40,0xfd,0xff,0x29,0x27,0xf9, + 0xff,0xd,0xb,0xf7,0xff,0x7,0x4,0xf7,0xff,0x7,0x4,0xf7,0xff,0x13,0x11,0xe5, + 0xff,0x18,0x16,0xcb,0xff,0x23,0x23,0xc1,0xff,0x1c,0x1a,0xba,0xff,0x26,0x24,0xcd, + 0xff,0x26,0x25,0xcd,0xff,0x36,0x35,0xea,0xff,0x44,0x44,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x49,0x49,0xfd,0xff,0x43,0x43,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x40,0x3f,0xfd, + 0xff,0x41,0x40,0xfd,0xff,0x29,0x27,0xf8,0xff,0x14,0x12,0xf7,0xff,0x1b,0x19,0xf7, + 0xff,0x16,0x15,0xca,0xff,0x95,0x94,0x32,0xff,0x8d,0x8d,0x0,0xff,0x7f,0x81,0x1, + 0xff,0x83,0x83,0x0,0xff,0x78,0x79,0x0,0xff,0x70,0x70,0x0,0xff,0x69,0x69,0x1, + 0xff,0x62,0x62,0x2,0xff,0x5b,0x5b,0x4,0xff,0x5b,0x5b,0x4,0xff,0x54,0x54,0x5, + 0xff,0x5b,0x5b,0x4,0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x5,0xff,0x54,0x54,0x5, + 0xff,0x5b,0x5b,0x4,0xff,0x69,0x69,0x1,0xff,0x70,0x70,0x0,0xff,0x7c,0x7d,0x0, + 0xff,0x83,0x83,0x0,0xff,0x95,0x94,0x0,0xff,0xa2,0xa0,0x0,0xff,0xb5,0xb5,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xae,0x1, + 0xff,0x4e,0xa9,0x5c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x7f,0x80,0x80,0xf5, + 0xff,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd,0xff,0x44,0x44,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x31,0x2f,0xfa,0xff,0x1a,0x18,0xf7,0xff,0xd,0xb,0xf7,0xff,0x7,0x4,0xf7, + 0xff,0xd,0xb,0xf7,0xff,0x1b,0x19,0xf7,0xff,0x29,0x27,0xf8,0xff,0x39,0x37,0xfb, + 0xff,0x39,0x37,0xfb,0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd,0xff,0x3f,0x3f,0xfc, + 0xff,0x45,0x44,0xfd,0xff,0x3f,0x3f,0xfd,0xff,0x41,0x40,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0x29,0x27,0xf8,0xff,0x1a,0x18,0xf7,0xff,0xe,0xb,0xf7,0xff,0x1a,0x18,0xe6, + 0xff,0x5a,0x59,0x3b,0xff,0xae,0xae,0x1,0xff,0xae,0xae,0x1,0xff,0x93,0x92,0x0, + 0xff,0x94,0x93,0x0,0xff,0x95,0x94,0x0,0xff,0x8d,0x8d,0x0,0xff,0x87,0x88,0x0, + 0xff,0x7f,0x7f,0x0,0xff,0x78,0x79,0x0,0xff,0x74,0x74,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x74,0x75,0x0,0xff,0x70,0x71,0x14,0xff,0x75,0x75,0x0,0xff,0x70,0x70,0x0, + 0xff,0x78,0x79,0x0,0xff,0x77,0x78,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8d,0x8d,0x0, + 0xff,0xa2,0xa0,0x0,0xff,0xae,0xae,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb5,0xb5,0x2, + 0xff,0xbc,0xbd,0x1,0xff,0xbc,0xbd,0x1,0xff,0xd1,0xd1,0x0,0xff,0xcd,0xcd,0x0, + 0xff,0x2d,0xb8,0x8b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0xff,0x80,0x80,0xf5,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x49,0x49,0xfd,0xff,0x3f,0x3f,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x39,0x37,0xfb,0xff,0x29,0x27,0xf8,0xff,0x1b,0x19,0xf7, + 0xff,0x22,0x20,0xf8,0xff,0x1a,0x18,0xf7,0xff,0x31,0x2f,0xfa,0xff,0x39,0x37,0xfb, + 0xff,0x41,0x40,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x3f,0x3f,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0x21,0x1f,0xf7,0xff,0xd,0xb,0xf7,0xff,0x1b,0x19,0xf7,0xff,0x21,0x22,0x9d, + 0xff,0xc1,0xc1,0x1,0xff,0xbe,0xc0,0x0,0xff,0xb7,0xb7,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xae,0xae,0x1,0xff,0xae,0xae,0x1,0xff,0xa1,0x9f,0x0,0xff,0x9b,0x99,0x0, + 0xff,0x94,0x93,0x0,0xff,0x8d,0x8d,0x0,0xff,0x8d,0x8d,0x0,0xff,0x86,0x87,0x0, + 0xff,0x87,0x88,0x0,0xff,0x87,0x88,0x0,0xff,0x86,0x87,0x0,0xff,0x95,0x94,0x0, + 0xff,0x94,0x93,0x0,0xff,0xa2,0xa0,0x0,0xff,0xa1,0x9f,0x0,0xff,0xae,0xae,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xca,0xcb,0x0,0xff,0xd7,0xd7,0x0,0xff,0xf2,0xf2,0xf,0xff,0xad,0xdb,0x33, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x3f,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x59,0x58,0xfd,0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x45,0x44,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0x39,0x37,0xfb,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd,0xff,0x3e,0x3e,0xfc,0xff,0x49,0x49,0xfd, + 0xff,0x3e,0x3e,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd,0xff,0x21,0x1f,0xf7, + 0xff,0x22,0x20,0xf8,0xff,0x1a,0x18,0xe5,0xff,0x31,0x31,0xba,0xff,0xa7,0xa7,0x34, + 0xff,0xd7,0xd7,0x0,0xff,0xd7,0xd7,0x0,0xff,0xc2,0xc4,0x0,0xff,0xbf,0xc0,0x0, + 0xff,0xbb,0xbc,0x1,0xff,0xb3,0xb3,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xad,0x1, + 0xff,0xae,0xae,0x1,0xff,0xa1,0xa0,0x0,0xff,0xa1,0xa0,0x0,0xff,0xa2,0xa0,0x0, + 0xff,0xa2,0xa0,0x0,0xff,0xa8,0xa7,0x1,0xff,0xa8,0xa7,0x1,0xff,0xae,0xad,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb8,0x1,0xff,0xb7,0xb8,0x1, + 0xff,0xbb,0xbc,0x1,0xff,0xb8,0xb9,0x1,0xff,0xc0,0xc1,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xf2,0xf2,0xf,0xff,0xf9,0xf9,0x15,0xff,0x3e,0xc9,0x90, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0xff,0x71,0x71,0xf9,0xff,0x6a,0x6a,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd,0xff,0x46,0x45,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x46,0x45,0xfd, + 0xff,0x4b,0x4a,0xfd,0xff,0x49,0x49,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x49,0x49,0xfd, + 0xff,0x4a,0x49,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x45,0x44,0xfd,0xff,0x39,0x38,0xfb, + 0xff,0x29,0x28,0xf8,0xff,0x1f,0x1d,0xdb,0xff,0x95,0x95,0x40,0xff,0xd3,0xd2,0x0, + 0xff,0xdd,0xdc,0x0,0xff,0xd7,0xd6,0x0,0xff,0xde,0xdd,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xc3,0xc5,0x0,0xff,0xbf,0xc1,0x0,0xff,0xb8,0xb8,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xb8,0xb9,0x1,0xff,0xb5,0xb5,0x2,0xff,0xbb,0xbc,0x1,0xff,0xb8,0xb8,0x1, + 0xff,0xb8,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb9,0x1,0xff,0xbf,0xc1,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xd1,0xd1,0x0,0xff,0xd7,0xd7,0x0,0xff,0xe4,0xe4,0x5, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xba,0xe9,0x3e,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0xff,0x80,0x80,0xf5, + 0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x60,0x5f,0xfc, + 0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x50,0x4f,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe,0xff,0x5a,0x59,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe,0xff,0x48,0x47,0xfc, + 0xff,0x4d,0x4c,0xf7,0xff,0x89,0x89,0xa8,0xff,0xf9,0xf9,0x15,0xff,0xf2,0xf2,0xf, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xd1,0xd1,0x0,0xff,0xca,0xcb,0x0,0xff,0xc0,0xc1,0x0, + 0xff,0xb8,0xb9,0x1,0xff,0xbc,0xbd,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xb8,0xb9,0x1,0xff,0xbc,0xbd,0x1,0xff,0xb8,0xb9,0x1,0xff,0xbc,0xbd,0x1, + 0xff,0xc0,0xc1,0x0,0xff,0xc4,0xc6,0x0,0xff,0xc6,0xc7,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xde,0xdd,0x0,0xff,0xf2,0xf2,0xf,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xba,0xe9,0x3e,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4, + 0xff,0x80,0x80,0xf5,0xff,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x65,0x65,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x60,0x5f,0xfc,0xff,0x5a,0x59,0xfd, + 0xff,0x60,0x5f,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe,0xff,0x5a,0x59,0xfd, + 0xff,0x60,0x5f,0xfc,0xff,0x65,0x65,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x65,0x65,0xfb,0xff,0x65,0x65,0xfb,0xff,0x65,0x65,0xfb,0xff,0x72,0x72,0xf9, + 0xff,0x86,0x86,0xdf,0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x90,0xff,0xf9,0xf9,0x15, + 0xff,0xf2,0xf2,0xf,0xff,0xe4,0xe4,0x5,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xd7,0xd7,0x0,0xff,0xd1,0xd1,0x0, + 0xff,0xd1,0xd1,0x0,0xff,0xd1,0xd1,0x0,0xff,0xcd,0xcd,0x0,0xff,0xd1,0xd1,0x0, + 0xff,0xca,0xcb,0x0,0xff,0xd1,0xd1,0x0,0xff,0xd1,0xd1,0x0,0xff,0xd1,0xd1,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xd7,0xd7,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xeb,0xeb,0xa,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0x7c,0xd9,0x67,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x3f,0x87,0x87,0xf3,0xbf,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x72,0x72,0xf9,0xff,0x79,0x79,0xf7, + 0xff,0x79,0x79,0xf7,0xff,0x79,0x79,0xf7,0xff,0x87,0x87,0xf4,0xff,0x86,0x86,0xe9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0xb4,0xe2,0x38,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xeb,0xeb,0xa, + 0xff,0xeb,0xeb,0xa,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xeb,0xeb,0xa,0xff,0xeb,0xeb,0xa,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xb4,0xe2,0x38,0xff,0x3e,0xc9,0x90, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x86,0x86,0xe9,0xff,0x87,0x87,0xf4, + 0xff,0x79,0x79,0xf7,0xff,0x72,0x72,0xf9,0xff,0x72,0x72,0xf9,0xff,0x72,0x72,0xf9, + 0xff,0x72,0x72,0xf9,0xff,0x72,0x72,0xf9,0xff,0x79,0x79,0xf7,0xff,0x79,0x79,0xf7, + 0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4, + 0xff,0x86,0x86,0xe9,0xff,0x86,0x86,0xe9,0xff,0xa3,0xa3,0xcf,0xff,0x21,0x21,0x32, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x90,0xff,0xb4,0xe2,0x38,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf2,0xf2,0xf,0xff,0xf2,0xf2,0xf, + 0xff,0xf2,0xf2,0xf,0xff,0xeb,0xeb,0xa,0xff,0xeb,0xeb,0xa,0xff,0xe4,0xe4,0x5, + 0xff,0xe4,0xe4,0x5,0xff,0xeb,0xeb,0xa,0xff,0xeb,0xeb,0xa,0xff,0xf2,0xf2,0xf, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf2,0xf2,0xf, + 0xff,0xba,0xe9,0x3e,0xff,0x37,0xc2,0x8a,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0x9f,0x9f,0x9f,0xff,0x7f,0x7f,0x7f,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0x7f,0x7f,0x7f,0xff,0x8f,0x90,0x90,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xe6, + 0xbf,0x86,0x86,0xe9,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4, + 0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x86,0x86,0xe9, + 0xff,0x87,0x87,0xf4,0xff,0x86,0x86,0xe9,0xff,0x86,0x86,0xe9,0xff,0xa3,0xa3,0xcf, + 0xff,0xa3,0xa3,0xcf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x75,0xd2,0x61,0xff,0xb4,0xe2,0x38,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0x75,0xd2,0x61,0xff,0x75,0xd2,0x61,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f,0xff,0xb0,0xb0,0xb0,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0x7f,0x83,0x83,0xaf, + 0xff,0xa3,0xa3,0xd9,0xff,0xc2,0xc2,0xf9,0xff,0xa3,0xa3,0xcf,0xff,0xa3,0xa3,0xc5, + 0xff,0xa3,0xa3,0xda,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x37,0xc2,0x8a,0xff,0x7c,0xd9,0x67,0xff,0x7c,0xd9,0x67,0xff,0x7c,0xd9,0x67, + 0xff,0x7c,0xd9,0x67,0xff,0x7c,0xd9,0x67,0xff,0x37,0xc2,0x8a,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f,0xff,0x8e,0x8e,0x8e, + 0xff,0x9f,0x9f,0x9f,0xff,0xc1,0xc1,0xc1,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0, + 0xff,0xb0,0xb0,0xb0,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7e,0x7e,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0x8f,0x8f,0x8f,0xff,0xb0,0xb0,0xb0, + 0xff,0x9f,0x9f,0x9f,0xff,0x7f,0x7f,0x7f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0xb0,0xb0,0xb0, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x9f,0x9f,0x9f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc1,0xc1,0xc1,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x8a,0x8a,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xad,0xd2,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x9f,0x9f,0x9f,0xff,0xa0,0xa0,0xa0,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x60,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x8f,0x8f,0x8f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0x3f,0x3f,0x3f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0xde,0xde,0xde,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe, + 0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f, + 0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe, + 0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f, + 0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0x7e,0x7f,0x7f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0xae,0xae,0xae,0xff,0xde,0xde,0xde, + 0xff,0x9e,0x9e,0x9e,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xfe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xe0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xfc,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x80, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xc0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xe0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xfc, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff, + 0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_disabled.ico + 0x0,0x0,0x4,0x1e, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x57,0xb1,0x4e,0x1c,0x31,0x10,0x1d,0xe0,0x0,0xa1, + 0x14,0x5c,0x41,0x24,0x3a,0xae,0x4c,0x99,0x3f,0xc8,0xa1,0x44,0x69,0xb9,0x82,0xed, + 0x22,0x25,0x55,0x94,0xaf,0x0,0x87,0x8a,0x2e,0xf9,0x84,0x53,0x2a,0x64,0xa4,0xa4, + 0x4d,0xc5,0xf1,0x13,0xfb,0x13,0x57,0x44,0x34,0xd7,0x20,0xc1,0xc4,0xdc,0x32,0xac, + 0x77,0xd6,0x63,0x8f,0xf7,0x16,0x2c,0x59,0xef,0xbc,0x67,0xcf,0xbc,0x19,0x8f,0x67, + 0x6c,0x80,0x35,0x18,0xc0,0x70,0x8,0xe,0x47,0xf0,0x6d,0x0,0xf0,0x11,0x0,0xf6, + 0xf6,0xaa,0xf1,0xdf,0x2d,0x80,0xdf,0xee,0xdb,0xfe,0x7e,0x35,0x3e,0xdf,0x1,0xf8, + 0xfa,0xa,0x60,0x34,0xaa,0xc6,0x17,0x6e,0xdd,0x3f,0x37,0xf7,0x8d,0x5b,0xe3,0x7e, + 0xba,0x2f,0xd5,0xf7,0x87,0x36,0x1e,0x40,0x4e,0xc3,0x0,0xfa,0x5d,0x5c,0x73,0x7a, + 0x7a,0xba,0xc4,0x93,0x93,0x13,0x7f,0xec,0x3a,0x7a,0xbd,0x29,0x83,0xe6,0x12,0x5e, + 0x5f,0x5f,0x2f,0x71,0x36,0x9b,0x39,0x34,0x4f,0xeb,0xe8,0x7f,0x5f,0x6,0x7d,0x43, + 0xc4,0x20,0xd2,0xfa,0x4a,0x16,0xc9,0x68,0x72,0xa0,0xb9,0x24,0xab,0x9a,0xb,0x70, + 0x75,0x75,0xe5,0xe9,0xa7,0xef,0x4d,0x1b,0xe2,0x6b,0xb9,0xc,0xea,0x66,0xb9,0x9e, + 0xaf,0x9,0xaf,0xf5,0x65,0x54,0x9d,0x7c,0xac,0xd7,0x5f,0x23,0xfd,0x1f,0xd3,0x2f, + 0x21,0xd7,0xd5,0xb7,0x7e,0x1e,0x7,0x1c,0xf9,0x3c,0x5f,0x3f,0xd7,0x9b,0xb2,0xc5, + 0xd7,0x4f,0x6b,0xa4,0x18,0x22,0xa4,0x79,0x31,0xfb,0x29,0x76,0x21,0x7c,0x86,0x1a, + 0xff,0x4b,0xfe,0x97,0xec,0xf,0xf9,0x5f,0x9a,0x4b,0x31,0xc2,0xd1,0x5f,0x7b,0xf7, + 0x1e,0x71,0xfe,0x1d,0xb1,0x1c,0x20,0x5a,0xe3,0x70,0x58,0x61,0x71,0xe8,0xd0,0x3a, + 0x2c,0x22,0x78,0x89,0xf8,0x90,0x67,0x5c,0xba,0x59,0xe6,0x1b,0xca,0x33,0x3f,0xb7, + 0xa0,0x4b,0xb,0xf9,0x2a,0xd4,0x93,0x32,0x74,0xf9,0x27,0x9c,0x87,0xa8,0x69,0xf3, + 0x91,0x77,0xe,0x45,0x99,0x3c,0x3e,0xdb,0x71,0x58,0xc9,0xab,0x74,0x84,0x64,0xd6, + 0xf2,0xc2,0x7c,0x78,0x9c,0xd6,0xf9,0xaa,0x8a,0x57,0x5f,0x66,0x3b,0x6f,0xa6,0xce, + 0x2b,0xc9,0x6b,0x9e,0x1,0x92,0x19,0xce,0xa3,0xe9,0x3c,0x86,0xd,0x99,0x64,0x7b, + 0x28,0xaf,0x4a,0xbc,0xe2,0xf9,0x35,0x9e,0x67,0x75,0xb6,0x9b,0x56,0xf,0xe5,0x5d, + 0x1d,0xbf,0x76,0x8e,0xd1,0xe4,0xc1,0xd4,0xde,0xf0,0x5c,0x17,0xca,0x4b,0xda,0x7c, + 0xc8,0x63,0xe9,0xa5,0xf9,0xa5,0x72,0xbf,0x94,0x2b,0x43,0xfc,0x72,0x6b,0x81,0xcf, + 0xef,0xe6,0xe6,0x26,0x18,0x7f,0xa9,0xda,0x20,0xf9,0x5b,0xe3,0x3f,0x10,0x6a,0x5, + 0xa1,0xa6,0xee,0x69,0x6b,0x68,0xf3,0xcc,0x35,0x74,0x89,0xb5,0x9c,0xd7,0x10,0x63, + 0x4c,0x92,0x1f,0x35,0xed,0xbe,0x4a,0xb8,0x54,0x32,0x79,0x87,0xb7,0xd3,0x3,0x5c, + 0x1c,0xee,0xe2,0x7c,0xfa,0x3,0xcb,0xf,0x47,0x68,0x7f,0xed,0x62,0xe9,0xc6,0x76, + 0xba,0x8b,0xc5,0xe4,0xc0,0xd5,0xa5,0x3f,0xae,0x2e,0x7d,0x66,0x78,0xd4,0x18,0x97, + 0xe,0xe7,0x76,0xb6,0xac,0x5b,0xee,0xa,0xd,0x6f,0xa1,0xae,0x5b,0x5f,0x76,0x38, + 0xf3,0xac,0x16,0xdb,0x3f,0xde,0xb3,0x64,0x92,0xaf,0x39,0x42,0x66,0x4d,0xf3,0x1b, + 0x97,0x45,0xb1,0x50,0xc7,0x44,0x33,0x47,0x53,0xd3,0xe8,0xe0,0xf1,0x15,0x93,0xed, + 0xe5,0x68,0x5a,0x1a,0xd5,0x91,0x92,0x5d,0xa1,0x79,0x92,0x5b,0xcb,0x33,0xf8,0x68, + 0xab,0xf7,0x2d,0x5c,0xa7,0xb9,0x4c,0xe9,0x3d,0x41,0xbc,0x7d,0x1d,0xcd,0x71,0xfb, + 0x5c,0x71,0xd9,0x61,0xff,0xd7,0xf2,0x9b,0x1c,0xb8,0x4d,0x10,0x91,0xa1,0xdb,0xdb, + 0xb0,0x8e,0x34,0x7f,0x49,0xb6,0xa4,0xa3,0xee,0x7a,0xd9,0xf9,0x71,0xd4,0x8e,0x27, + 0x89,0x27,0xdf,0xd3,0xb8,0xe,0xde,0x1b,0x67,0x30,0xc9,0x5f,0x17,0xb3,0x21,0xdd, + 0x32,0xff,0x5c,0x3b,0x24,0x8e,0x9a,0xbd,0xed,0x6a,0x87,0x86,0xbf,0x56,0xc7,0x2a, + 0xfc,0xbb,0xda,0x11,0xe3,0x2f,0xe5,0x64,0x9,0xa5,0xf5,0x5d,0xfc,0xfa,0x1c,0xfe, + 0xcf,0x45,0xd,0x7f,0xed,0x7d,0x49,0x5a,0x9f,0xc3,0x1f,0x12,0xf7,0xa7,0x55,0xe2, + 0x27,0xb5,0xb7,0xa4,0x23,0xc2,0x29,0xb9,0xc7,0x29,0x1d,0x31,0xfe,0xd4,0x72,0x63, + 0x52,0x61,0x17,0x60,0xb9,0x8d,0xf7,0x76,0x3,0xef,0x8e,0xd7,0xf0,0xf6,0x62,0x84, + 0x8b,0x9,0xe0,0xfc,0xe2,0x1c,0xcb,0xc9,0x18,0xad,0x1b,0x97,0xee,0xbb,0xb5,0xeb, + 0xee,0x7e,0xb5,0xe9,0xd0,0x3a,0x2c,0x54,0x58,0x3a,0x9c,0xdb,0xcb,0xe5,0x3d,0x6c, + 0xe4,0xfa,0x18,0xea,0x7b,0x98,0x19,0x72,0xcb,0x3a,0xb5,0x54,0x5c,0xf8,0xf3,0x78, + 0xef,0x45,0x67,0xc2,0xbf,0x8f,0xdd,0x4,0x7a,0x27,0x1e,0xd1,0x7c,0xc3,0xd0,0xd3, + 0x25,0xd5,0x4f,0xa3,0xe6,0x90,0x97,0x63,0xfc,0xfb,0xb,0x6,0x1b,0xab,0xe3,0x51, + 0xe,0xf9,0x35,0xc9,0x84,0x74,0x34,0xce,0x2c,0xbb,0xcf,0x89,0xfa,0x57,0xd3,0x6d, + 0xb8,0x9e,0x2c,0xe,0xda,0x7a,0xdf,0xc4,0xb6,0x4e,0x89,0x43,0x4c,0x7f,0xee,0x5d, + 0x23,0x6e,0x7f,0x98,0x83,0xa4,0x7f,0xb5,0x7a,0x26,0xd9,0xdf,0xe6,0x10,0xd2,0xbf, + 0x6a,0x2d,0xe5,0xfa,0xc3,0x7b,0x15,0xdc,0xa7,0x27,0xfb,0xb5,0xf7,0xa3,0xd5,0x39, + 0xe8,0x7d,0xaf,0xbd,0xaf,0x87,0xce,0x7f,0x38,0xff,0xe9,0x7d,0xdf,0xed,0xae,0x6d, + 0x2,0xb9,0xa6,0x9d,0x93,0xbc,0x37,0xa3,0xca,0xf7,0xb9,0x1c,0x7c,0x1e,0x7e,0xa3, + 0xff,0xfc,0x7c,0x90,0x6b,0x7f,0x4e,0x3c,0x84,0xde,0x37,0x5c,0xbe,0x46,0x66,0x57, + 0xe,0xe9,0xbc,0x91,0xb6,0xbf,0x2f,0xe,0x92,0xfc,0x1c,0x59,0x5d,0x39,0xf4,0x61, + 0x7f,0xdf,0x7e,0x58,0xe5,0x9d,0x92,0xcb,0xa1,0x4f,0xfb,0xfb,0xf2,0x43,0x1f,0xef, + 0x34,0x2d,0x87,0xe7,0xb0,0x7f,0x55,0x3f,0x68,0xec,0xef,0xeb,0xbd,0x21,0x71,0x88, + 0xd9,0xff,0xdc,0xf8,0x12,0xef,0xf4,0x14,0x6a,0xec,0x97,0xf6,0x37,0x17,0xfb,0xb0, + 0x1f,0xea,0x3b,0x43,0x16,0xf6,0x19,0xff,0x1d,0xde,0xba,0xbd,0xd9,0xdf,0x35,0xfe, + 0x63,0xf6,0x4b,0x1c,0x5e,0xd2,0x7e,0x6a,0x7d,0x9d,0xf7,0xc,0x6e,0x80,0x8b,0x4f, + 0x7,0x68,0xa7,0xdb,0x58,0x8c,0x37,0xee,0xad,0x59,0xbb,0x2b,0xe,0xf,0x6f,0xad, + 0x99,0x2e,0x8a,0xc1,0x64,0x6e,0xcf,0x46,0x65,0xb1,0x39,0xb4,0xf6,0xcc,0x94,0xee, + 0xbb,0x75,0xff,0x17,0xc5,0x78,0xcd,0xda,0xe9,0x7a,0x51,0x1c,0xbf,0xb6,0xae,0x15, + 0xae,0x75,0xc1,0xd2,0xe1,0xdc,0xda,0xcb,0xff,0x9d,0xc4,0xbb,0x8, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty_active.ico + 0x0,0x0,0x3,0xb1, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x57,0xb1,0x4e,0x1c,0x31,0x10,0x9d,0x3,0x2,0x42, + 0x29,0xa0,0x20,0x12,0x1d,0x57,0xa6,0xcc,0x1f,0xe4,0xa2,0x48,0x69,0x43,0xc1,0x76, + 0x91,0x92,0xa,0xe5,0x2b,0x60,0xd3,0xa5,0xcc,0x27,0x5c,0x89,0x8c,0x94,0xb4,0xa9, + 0x38,0x7e,0x62,0x7f,0x62,0x8b,0x88,0xe6,0x1a,0x24,0x70,0xe6,0x7c,0x18,0x7c,0x83, + 0xc7,0x33,0xf6,0xfa,0x18,0xb4,0x7a,0xec,0x9e,0x3d,0xf3,0xc6,0x1e,0xcf,0x8c,0x1, + 0x46,0xb0,0x5,0xfb,0xfb,0x80,0x38,0x86,0xef,0x5b,0x0,0x9f,0x0,0xe0,0xe0,0x60, + 0xf9,0xfe,0x77,0x1b,0xe0,0x37,0x7e,0x3b,0x3c,0x5c,0xbe,0xff,0xdc,0x5,0x38,0x7d, + 0xd,0x30,0x1e,0x2f,0xdf,0x2f,0x70,0xde,0x3f,0x1c,0xfb,0x16,0xe7,0xe0,0xbf,0xf8, + 0x65,0xf9,0x7d,0x21,0x93,0x2d,0xc8,0x11,0x1b,0xc1,0xf0,0x61,0xe7,0x9c,0x9f,0x9f, + 0x3b,0x3c,0x3b,0x3b,0xb,0xdf,0x2d,0xb4,0xc1,0x43,0x74,0xf8,0xb1,0x1e,0xaf,0xaf, + 0xaf,0x1d,0xce,0x66,0x33,0x37,0x7e,0x21,0x10,0xfe,0x5,0x3a,0xfc,0x1c,0x37,0x26, + 0x82,0xd2,0xfc,0x70,0xac,0xd7,0xe5,0xec,0xa2,0x5c,0x5d,0x5d,0x89,0xf6,0x93,0x73, + 0x89,0xe,0x2f,0x7e,0x3e,0x9d,0x13,0x9d,0x1b,0xe8,0xf0,0x8f,0x5f,0x63,0xb5,0xfd, + 0x0,0xfd,0xef,0x29,0xfb,0x1c,0x52,0x5b,0xb5,0xed,0xd3,0x38,0xa0,0x48,0xc7,0x85, + 0xf6,0xa9,0x5d,0xc9,0x97,0xd0,0xbe,0x9f,0xc3,0xc5,0x90,0x47,0x3f,0x2e,0xe5,0xbf, + 0x8f,0x5d,0x88,0x9f,0xa1,0x95,0xdf,0xb9,0xf5,0xe7,0xfc,0x8f,0xad,0x3f,0x37,0xd6, + 0xc7,0x8,0xc5,0x70,0xee,0xdd,0x47,0x6b,0xfb,0x1f,0xd6,0x76,0xa8,0xd9,0xb4,0x4f, + 0xd8,0x7c,0x40,0x34,0x88,0x4d,0x2,0x2f,0xad,0x5d,0xe4,0x19,0x4c,0x37,0x2e,0xdf, + 0xf8,0x3c,0xf3,0x6b,0x1b,0x4a,0x44,0xca,0x37,0xa9,0xbc,0xb3,0xa2,0x43,0x95,0x7f, + 0x98,0x3c,0xe4,0x25,0x3b,0x1f,0x31,0x79,0xc5,0x91,0x22,0xf1,0xf9,0x2c,0xe,0x33, + 0xf4,0x45,0xf9,0x0,0x89,0x53,0xa5,0x3e,0xed,0x79,0xcd,0xe1,0xc7,0x9d,0xc5,0x58, + 0x2e,0x94,0xf4,0xd1,0x33,0x97,0x44,0x92,0x5f,0xa5,0x3c,0xab,0xf2,0x3d,0x12,0x2f, + 0xb1,0xbc,0xab,0xe2,0x7,0xcf,0x73,0x8c,0x26,0xf,0x4a,0x7b,0x43,0x73,0x5d,0x2c, + 0x2f,0x69,0xf3,0x21,0x8d,0xa5,0x97,0xe6,0x27,0xe5,0x7e,0x2e,0x57,0xc6,0xf8,0xe5, + 0xd6,0x82,0x90,0xdf,0xcd,0xcd,0x4d,0x34,0xfe,0xa4,0xda,0xc0,0xad,0xb7,0x66,0xfd, + 0x80,0xa9,0x15,0x1e,0x35,0x75,0x4f,0x5b,0x43,0xfd,0xbc,0x48,0x9d,0x62,0x6b,0x39, + 0xad,0x21,0x6d,0xdb,0x8a,0xfc,0xbc,0x68,0xf7,0x95,0x43,0x67,0xe4,0xf8,0xbd,0xbd, + 0x9d,0x1e,0xd9,0xf9,0x64,0xcf,0xf6,0xd3,0x3d,0xdb,0x21,0x9a,0x0,0x9b,0xe3,0x23, + 0xac,0x4b,0x7f,0xb0,0x2e,0x7d,0x25,0xf8,0x79,0xe5,0xbd,0x43,0xec,0xcd,0xcc,0xd5, + 0x2d,0x6c,0xa1,0xe1,0x1d,0x3c,0xd5,0xad,0x6f,0xbb,0x94,0x79,0x96,0xa4,0xf6,0x8f, + 0x3e,0x59,0x3a,0xfd,0x5a,0x53,0x84,0xcc,0x9a,0x16,0xa,0xd5,0xe5,0x63,0xe1,0x31, + 0x26,0xbc,0x2e,0x65,0x8d,0x5b,0x21,0x4d,0xe2,0x2b,0xa6,0x9b,0xcd,0xff,0x82,0xd, + 0x49,0xb7,0xc3,0x42,0xfd,0x9c,0x6e,0x7a,0xbe,0x4b,0xf4,0x73,0xba,0xa3,0xeb,0x9f, + 0xa9,0x9f,0xdb,0xc3,0xd4,0xde,0xe,0xe5,0xcf,0xe9,0xd6,0xd8,0x78,0xd0,0x25,0xea, + 0xd6,0xc6,0x11,0x53,0xf3,0x9d,0xa,0x8e,0x27,0xdd,0xd3,0x94,0x8d,0xc8,0xf9,0xa, + 0xcf,0xa0,0xc8,0x5f,0x15,0xb3,0x31,0xdb,0x9,0xfe,0xb9,0x7e,0x70,0x1c,0x35,0x7b, + 0x5b,0xea,0x87,0x86,0xbf,0xd6,0xc6,0x10,0xfe,0xa5,0x7e,0xa4,0xf8,0x73,0x39,0x99, + 0x43,0x6e,0x7e,0xc9,0xba,0xae,0x63,0xfd,0x73,0x51,0xc3,0x5f,0xdb,0x2f,0x71,0xf3, + 0x73,0xf8,0x83,0xd0,0x3f,0xd,0x89,0x1f,0x69,0x6f,0xbd,0x8d,0x4,0x27,0x71,0x8f, + 0x25,0x1b,0x29,0xfe,0x5e,0x72,0x63,0x52,0xe1,0x17,0xd8,0x6e,0xc7,0xde,0x9b,0x4d, + 0x7b,0x77,0x32,0xb2,0xb7,0x17,0x60,0xe7,0xc7,0x60,0x7b,0xc4,0xe,0xd1,0x2c,0x10, + 0xbf,0x1b,0xb3,0x81,0xfd,0xd5,0x2b,0x44,0x83,0xd8,0xa8,0xb0,0x43,0xec,0xcd,0xa5, + 0xeb,0xc3,0xc6,0xf8,0x4c,0xe0,0xa9,0xf,0x6b,0xf7,0xa9,0x67,0x45,0x22,0xc5,0x45, + 0x38,0x8e,0x3e,0x55,0x6c,0xa,0xeb,0xbb,0x7c,0xf8,0xfe,0x2d,0x97,0x47,0x32,0xdf, + 0x10,0xb4,0x62,0x7f,0xa7,0xec,0x23,0x33,0x6c,0x2e,0x51,0xd3,0x7b,0x28,0xfb,0x4c, + 0xe7,0x74,0x6e,0x4d,0xaa,0x68,0x7f,0xad,0xb6,0x5,0xe,0xda,0x7a,0xbf,0x82,0x95, + 0xec,0xe7,0xf6,0x1a,0x35,0xfd,0x1f,0x54,0xcf,0x6,0xda,0x1f,0x5a,0x4b,0x6b,0xf8, + 0xaf,0xed,0x8f,0xd6,0x11,0xff,0x52,0x2f,0xa3,0xe2,0x50,0x68,0x5f,0x6b,0x3b,0x87, + 0x3,0xc7,0x23,0xbc,0x47,0xc,0xe9,0x73,0x24,0xe,0xc9,0xfb,0xb,0x3e,0x8f,0x7b, + 0xa6,0xe8,0x43,0x8b,0x38,0x3c,0xc4,0x43,0xec,0x7e,0x43,0xf5,0x6b,0x74,0x96,0x72, + 0x10,0xf3,0x86,0xc2,0xff,0x5a,0x1c,0x38,0xfd,0x39,0xba,0x4a,0x39,0xd4,0xf0,0xbf, + 0xf6,0x3a,0xc,0xb9,0xa7,0xe4,0x72,0xa8,0xe9,0x7f,0xad,0x75,0xa8,0x71,0x4f,0xd3, + 0x72,0x58,0x87,0xff,0x43,0xd7,0x41,0xe3,0x7f,0xad,0xfb,0x6,0xc7,0x21,0xe5,0xff, + 0xba,0xf1,0x25,0xee,0xe9,0x12,0x6a,0xfc,0xe7,0xf6,0x37,0x17,0x6b,0xf8,0xf,0xe4, + 0x1e,0xa4,0xc5,0x9a,0xf1,0x5f,0x70,0xd7,0xad,0xe6,0x7f,0x69,0xfc,0xa7,0xfc,0xe7, + 0x38,0xbc,0xa4,0xff,0x5e,0x6a,0x9d,0xf7,0xc,0x6e,0x60,0xe7,0x5f,0x8e,0xac,0x99, + 0xee,0xd8,0x66,0xb2,0x79,0x6f,0xda,0xd1,0x5d,0x33,0x19,0xdd,0x9a,0x16,0xe6,0xd, + 0x40,0x8f,0xd8,0x21,0x1a,0x87,0x93,0x11,0xe2,0xa8,0x71,0x38,0xdd,0x68,0x9a,0x93, + 0x37,0x6,0xa5,0x41,0x29,0xc1,0xe,0xb1,0x37,0xe6,0xf2,0x3f,0xce,0xed,0xd5,0xd6, + + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty.ico + 0x0,0x0,0x2,0x4e, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x6e,0xc2,0x30,0x10,0xbd,0x4a,0x8,0x9, + 0x75,0x61,0x60,0x60,0xcc,0xd8,0xb1,0x9f,0xc0,0xd4,0x3f,0x88,0x3a,0xb6,0x53,0xd5, + 0x1f,0xe8,0xdc,0x8c,0x1d,0xfb,0x9,0xc,0x1d,0x2a,0x23,0xc1,0x5a,0x75,0xa8,0xf8, + 0x9,0x7e,0x82,0x4a,0xdd,0xba,0xb0,0xb8,0x17,0x42,0x4a,0x70,0x6d,0xe7,0x6c,0x1f, + 0xe,0xd0,0x9c,0x84,0x1e,0x76,0xf0,0xdd,0xbb,0xc4,0x7e,0x77,0x1,0xe0,0xc,0x3a, + 0xd0,0xef,0x3,0x62,0x2,0xf7,0x1d,0x80,0x2b,0x0,0x18,0xc,0x8a,0xf1,0x5b,0x17, + 0x60,0x8a,0x73,0xc3,0x61,0x31,0x7e,0xea,0x1,0xdc,0x9d,0x3,0x24,0x49,0x31,0x7e, + 0xc5,0x75,0x5f,0xf8,0xdb,0xb,0x5c,0x83,0x5f,0x71,0xa6,0x98,0xcf,0x6d,0xd4,0x1, + 0x9d,0xc9,0x40,0x84,0x2c,0xcb,0xa4,0xf,0xe6,0x3e,0xca,0xef,0x2f,0xe3,0xb1,0x15, + 0x25,0x5a,0x15,0x2b,0x3e,0x80,0xea,0x63,0x3e,0x9f,0xef,0x20,0x57,0xfc,0xd2,0x9f, + 0xba,0x46,0xcd,0x57,0xbd,0x6e,0x8b,0x5f,0xbd,0xbf,0x3a,0x1f,0x94,0xf8,0xaa,0x35, + 0x10,0x7f,0x7,0x5d,0xe2,0xd7,0x21,0x25,0x7e,0x1d,0x52,0xe2,0x9b,0xae,0xbb,0x3c, + 0x7f,0xdb,0xfd,0xa9,0xf3,0x6f,0xda,0x43,0xba,0xfd,0xef,0x83,0x69,0x2a,0xa5,0x10, + 0xf2,0x2f,0x2e,0xa4,0x9c,0x2c,0xb,0xd4,0x5e,0xdf,0x60,0xae,0x33,0x28,0x37,0x6b, + 0xbd,0x29,0x75,0xe6,0xb9,0xb,0x3a,0xb,0xd5,0x19,0x36,0xdd,0x9,0xd1,0x21,0x93, + 0x96,0x94,0x18,0xb2,0x2f,0x55,0x8d,0x29,0xb1,0x9a,0x33,0xd5,0x67,0x6c,0x7e,0xbe, + 0xe7,0x38,0xe4,0x5c,0xd7,0xe9,0xab,0xcb,0x39,0x87,0x1a,0xbd,0xf3,0xe1,0xa7,0xda, + 0x1,0xf2,0xdb,0xc1,0x10,0x7e,0x31,0x75,0x3b,0x84,0x1f,0x55,0xef,0x29,0xfc,0xea, + 0xf4,0xfd,0x94,0xf9,0x51,0xf6,0x9f,0x45,0x6f,0xad,0xd7,0xf5,0x75,0xea,0x6,0xeb, + 0xcd,0xec,0x17,0x17,0xca,0x38,0x7d,0x40,0x5c,0x6d,0xb0,0x3a,0xaf,0xc1,0x9,0x62, + 0x5e,0xaf,0xb0,0x85,0x86,0x4b,0xd8,0xd6,0xad,0xdb,0x1e,0xe8,0x4c,0x7b,0x56,0x18, + 0x91,0xad,0x8e,0x71,0xd4,0x35,0xaa,0xe6,0x73,0x9c,0x63,0x53,0x8d,0xf2,0xe9,0xcf, + 0x43,0xf8,0xfb,0xc6,0x38,0x14,0xfe,0x5c,0x3a,0xca,0xa1,0xfb,0xae,0x3a,0xe2,0xc2, + 0x5f,0x35,0x4e,0xfe,0x26,0xe3,0xe0,0xf,0x4a,0xed,0x2e,0x8d,0xa3,0x6f,0x89,0xc1, + 0x3f,0xc6,0xfd,0x57,0xef,0xd5,0x3e,0xf6,0x4f,0x8c,0xfd,0x4f,0xe5,0xe2,0xc3,0x9f, + 0xda,0xef,0xfa,0xf0,0x57,0x7d,0x53,0x7b,0x8b,0x96,0x7f,0xf3,0xfa,0x49,0xe8,0x3, + 0xb4,0xbf,0xa3,0xac,0x4f,0xf1,0x45,0x5f,0xe0,0x8b,0xbe,0x15,0x3f,0x10,0x1f,0x15, + 0xa4,0xac,0xfb,0x14,0xeb,0x3e,0x2c,0xc1,0xcf,0x8,0xb6,0x7d,0x58,0xd6,0x7,0x9d, + 0xc9,0x86,0x71,0x6f,0x7d,0x5a,0x8c,0x3e,0xce,0xa4,0x53,0x75,0xb8,0xf,0x9d,0x35, + 0xf5,0x34,0x31,0xfe,0x5f,0x68,0xf3,0xf7,0xcf,0x9f,0x8b,0xc3,0xb1,0xe6,0x7f,0x4a, + 0xcf,0xdf,0xb5,0x1e,0x85,0xe4,0xef,0x5a,0x37,0x39,0xea,0xa8,0x8e,0xbf,0xf,0x87, + 0x90,0xfc,0xc1,0xb3,0xef,0xe7,0xc8,0xdf,0x14,0xdb,0x95,0x43,0x60,0xfe,0x56,0xfb, + 0x7,0xf9,0x37,0xf6,0xfc,0x2d,0x1c,0xa2,0x9f,0xff,0xa,0x87,0xe8,0xe7,0xff,0x10, + 0xf4,0x2f,0x14,0x39,0xf2,0xe7,0xd0,0xcf,0x63,0xd6,0x7f,0xea,0x7b,0x61,0x9b,0x7f, + 0x9b,0xff,0x29,0xe5,0xcf,0x79,0xfe,0x3d,0xde,0x5b,0xb5,0xeb,0x7c,0xfc,0xa5,0x68, + 0x2,0x8d,0x8e,0x8b,0x54,0x4c,0x96,0x22,0xbd,0xfe,0x4e,0xc5,0x6c,0x55,0x60,0x3e, + 0xce,0xe7,0x9d,0xfc,0x20,0x4e,0xdf,0xc5,0xf,0x12,0x27,0x59,0xe6, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_and_cdrom_drives.ico + 0x0,0x0,0x5,0xec, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xbd,0x6e,0x1b,0x47,0x10,0x1e,0x42,0x82,0x5, + 0x23,0x5,0x55,0xb8,0x70,0x27,0x95,0x29,0xfd,0x6,0x72,0x15,0xe4,0x31,0x52,0x5, + 0x11,0xd9,0x2b,0x54,0xc3,0x3b,0xaa,0x4a,0x99,0xc7,0x48,0x15,0x38,0x85,0x44,0xba, + 0x21,0x9,0xe8,0xe7,0x39,0xc,0x3f,0x40,0x90,0xd2,0x85,0xe1,0xc9,0xce,0xfe,0xdd, + 0xec,0xee,0xcc,0xde,0x9d,0x7e,0x92,0x25,0x6,0xc7,0xe3,0xdd,0x7c,0xdf,0xec,0xf2, + 0xf6,0x9b,0xd9,0x3d,0x80,0x9,0x1c,0xc2,0xf1,0x31,0x98,0xe3,0x29,0xfc,0x72,0x8, + 0xf0,0x3,0x0,0xbc,0x79,0xe3,0xce,0x37,0xaf,0x0,0xfe,0x34,0xbf,0xbd,0x7d,0xeb, + 0xce,0x7f,0x7b,0xd,0xf0,0xf3,0x77,0x0,0xa7,0xa7,0xee,0xfc,0xf,0xe3,0xf7,0xb7, + 0xb9,0xf7,0x7b,0xe3,0x63,0xbe,0x9a,0x5f,0xdc,0xef,0xd4,0xde,0x1f,0xc2,0x63,0x1a, + 0x66,0x36,0xac,0xb5,0x2d,0x5a,0xc3,0xae,0x1,0xe,0xc4,0x31,0x7e,0xee,0xfe,0xce, + 0xa2,0x3f,0x7d,0xd9,0xfc,0x58,0xc7,0xf0,0xdc,0xc8,0x7c,0xe3,0x77,0xe3,0x2b,0xf8, + 0x77,0x71,0xb1,0xb8,0x23,0x46,0xc0,0xb,0xbe,0x21,0x2e,0x73,0xff,0xc7,0x4b,0xc0, + 0xcd,0x2,0x70,0xd9,0x34,0xd6,0xa2,0x6f,0x88,0x93,0xce,0x39,0x36,0xef,0x97,0xf7, + 0xc7,0xcf,0x1f,0x70,0xb7,0xdf,0xe3,0xde,0x58,0x1c,0xb3,0xc0,0x23,0xf9,0x87,0xa3, + 0xf9,0x6d,0x73,0xe9,0xae,0xc5,0x3e,0xfa,0x38,0xc1,0x8f,0x57,0x8c,0x81,0xf7,0x85, + 0xe1,0x52,0xec,0xf8,0xf9,0x2f,0xdc,0x6e,0x77,0xde,0xb6,0xfe,0x1e,0x88,0xfe,0xfc, + 0xbf,0xc0,0x34,0x26,0xd8,0x5c,0x3a,0x7f,0xbc,0x3b,0x4f,0x62,0x88,0xbe,0x99,0x7f, + 0xc4,0xc8,0xfd,0xef,0x67,0x6,0x63,0xe6,0x8e,0xc6,0x78,0xcc,0x89,0x7f,0xf6,0xfc, + 0x24,0xfe,0x74,0xcc,0x2c,0xfe,0x9f,0xc1,0xb2,0x16,0xfc,0x69,0x1c,0xa0,0x7c,0xd6, + 0x23,0x76,0x18,0x67,0xcd,0x7f,0x6d,0xfc,0xdb,0xd5,0xa,0x97,0xcb,0x25,0x36,0x4d, + 0x6b,0x8f,0x43,0xfc,0xd7,0x7e,0xfc,0xe9,0xfa,0xd5,0xd5,0x95,0xf3,0x79,0x98,0x63, + 0xeb,0xc7,0xb8,0xcf,0xdf,0xc6,0xb0,0x70,0xcf,0xd1,0xca,0xf8,0x13,0xc6,0x6a,0x75, + 0x85,0x8d,0xf1,0xa7,0x73,0xba,0x46,0xbe,0xde,0xbf,0x68,0x38,0x45,0xfc,0x7a,0x80, + 0xf8,0x65,0xe2,0xac,0x5,0x1a,0x63,0x66,0x13,0x6f,0xe6,0x1e,0x98,0xa6,0xd6,0x9e, + 0x20,0x92,0xce,0x18,0xb9,0xb1,0x7a,0x13,0x74,0xe6,0xf7,0x57,0x12,0xd3,0xa0,0x26, + 0xfe,0x7,0xa3,0x51,0x34,0xed,0xf1,0xfa,0x31,0xa,0xb7,0xaa,0x45,0x9d,0x1e,0xf5, + 0x6a,0x52,0x86,0x55,0x6a,0x53,0x86,0x95,0x3e,0xef,0xf2,0xf8,0x8,0x3a,0x27,0x6a, + 0x65,0x39,0x7f,0x20,0xe8,0x16,0x1d,0xa3,0x6e,0xe5,0xba,0xc7,0xe7,0x73,0xa2,0x2b, + 0x58,0x60,0xba,0xe7,0xf8,0x83,0x9b,0x87,0xb9,0xce,0x70,0xcc,0x9a,0x1e,0x32,0xbc, + 0x8f,0x7e,0x5e,0xd1,0xf7,0x5d,0xd0,0x45,0x1,0xd3,0x5e,0xdf,0xed,0xdd,0x3d,0x5c, + 0xbf,0x73,0x9d,0xbb,0x54,0xe2,0xb,0xfd,0x64,0x5a,0x1d,0xff,0x13,0x21,0x1f,0x44, + 0xdd,0xf5,0xf3,0x16,0x1f,0x66,0x56,0x37,0xb9,0x6e,0x27,0xe3,0x94,0xf5,0x37,0x62, + 0x6b,0xf1,0xdd,0x75,0xf1,0x15,0x58,0xe1,0x7f,0xcd,0x9e,0x6f,0xc8,0x31,0x23,0x9e, + 0xd3,0x8e,0xed,0x76,0x6f,0xad,0x1c,0xef,0x8a,0xc6,0xf3,0x31,0x0,0xae,0xf3,0xb3, + 0xa8,0xf5,0x12,0x5e,0x55,0xf3,0x25,0xbc,0xfb,0x79,0xa2,0xfd,0x1d,0x66,0x1a,0x5b, + 0x8e,0x97,0xcf,0x8d,0x2,0x4f,0xc8,0x1,0x3c,0x36,0x2c,0x71,0x92,0xb9,0xcb,0xf1, + 0xec,0x7f,0x4d,0xb1,0x29,0xf3,0x4f,0xc8,0x31,0x6a,0x9e,0x20,0xbc,0xb5,0xc7,0xa3, + 0x7c,0xd1,0xb6,0x5a,0xce,0x98,0x3b,0xee,0x9e,0xbc,0x41,0xb9,0xc2,0x62,0x9b,0x63, + 0xd0,0x7e,0x90,0x72,0x88,0x39,0xf,0xf7,0x8a,0xf1,0xf5,0xe2,0xcd,0x46,0xe1,0x5, + 0xcc,0xf5,0xa2,0xab,0x91,0x28,0x1f,0xa9,0x39,0x8a,0xdd,0x2b,0x61,0xe1,0xa,0xf1, + 0x1b,0x34,0xf8,0x15,0xce,0xf0,0xb,0x9c,0x98,0x3c,0x75,0x62,0xee,0x9b,0x2a,0x76, + 0xe2,0xed,0xcc,0x58,0x93,0xe6,0x33,0x63,0xed,0xc4,0xe5,0x2d,0x53,0x42,0xc3,0x3b, + 0xe8,0xf2,0xd6,0x4f,0xaf,0x25,0xe6,0x51,0xed,0x79,0xf2,0x57,0xde,0xb8,0x6,0xb1, + 0xf9,0x84,0x61,0x9e,0x3c,0x43,0x9e,0x94,0xb0,0x23,0x7e,0xd0,0xc7,0x27,0xe6,0xcd, + 0x21,0x39,0x54,0xc9,0xa3,0xf2,0xdc,0x53,0x74,0x41,0x8a,0x5d,0xc3,0x5f,0x5f,0x0, + 0xde,0x5c,0xb8,0x67,0x2f,0xa9,0xe1,0x85,0xbc,0x2a,0xea,0x59,0x1e,0x7b,0xa6,0x4d, + 0xd7,0x17,0x9d,0xe,0xdb,0x3c,0xb5,0xdb,0x27,0xda,0x5f,0x70,0x64,0x5a,0x22,0x62, + 0x33,0xfc,0xa0,0x3,0xe0,0xf3,0x96,0x9a,0x77,0xc3,0x6f,0xc2,0x38,0xd6,0xf2,0xfa, + 0xcd,0xaf,0x3c,0x8f,0xec,0xf4,0x3c,0xec,0xb1,0x69,0xfd,0xd0,0xd9,0xae,0x37,0xcf, + 0x3b,0xfc,0x34,0xef,0x15,0xd8,0x2c,0xf6,0xbc,0xd,0xc3,0x77,0x79,0x8b,0xe7,0xe9, + 0xc2,0x9e,0x1a,0xff,0xad,0x5c,0x57,0xc4,0xb9,0x33,0x24,0x7e,0xa1,0xce,0xa8,0xc5, + 0x5f,0xad,0x35,0xb2,0x9a,0x43,0x1b,0xcf,0x3c,0xfe,0x70,0x6f,0xf9,0xcc,0xf9,0x4f, + 0x9e,0xeb,0x78,0x5f,0x32,0x6c,0x7a,0x3e,0xd3,0xf8,0xbb,0x3a,0x24,0xc7,0x56,0x73, + 0x33,0x3b,0x4f,0x38,0x72,0x7c,0x8a,0xff,0x36,0x5f,0x83,0x66,0x75,0x44,0xa5,0x96, + 0x48,0x38,0x98,0x3e,0x74,0xf1,0xcf,0xdd,0x33,0x7a,0xeb,0xac,0x58,0x23,0x33,0x6c, + 0x9,0x3f,0x99,0xe3,0x35,0xfc,0x1,0x75,0x8b,0x86,0x2f,0xe9,0x33,0xc7,0xb7,0x5a, + 0x74,0xe7,0x6a,0xad,0x42,0x4b,0x59,0x6d,0x5a,0xe0,0x57,0x72,0x99,0x86,0xbf,0x5c, + 0x36,0xd6,0x9a,0xc6,0x59,0xab,0xd5,0x4a,0xc4,0x6b,0x7c,0x9,0xa7,0xf,0xdf,0x7e, + 0xb7,0xe3,0x34,0xb7,0xf5,0x12,0x19,0xe1,0xd2,0xd1,0xce,0x2d,0xbb,0x77,0x30,0xef, + 0xce,0xe3,0xb8,0xea,0xf8,0x9d,0x3e,0x7b,0x7c,0x5f,0x77,0xc9,0xf8,0xe7,0x96,0x23, + 0xc1,0xf7,0xf7,0x13,0x8e,0x18,0xff,0x0,0xfc,0x36,0x9b,0xb7,0xe9,0xda,0xdf,0x3d, + 0x17,0x37,0x17,0x7a,0xde,0xa5,0x6b,0xd7,0x3e,0x87,0x11,0x7,0x19,0xd5,0x56,0x4d, + 0xdb,0xe1,0x87,0x7e,0x58,0xf3,0xd7,0x6e,0x7c,0xee,0xbb,0xae,0x60,0xe3,0xa7,0xc6, + 0x2e,0xf4,0xbf,0xc1,0x91,0xa9,0xbd,0xe,0x4c,0xdd,0x75,0x60,0xee,0x9d,0x78,0x13, + 0xf2,0xb2,0xb5,0x70,0xfd,0xc0,0xdb,0x91,0x58,0xa3,0xb5,0xa6,0x3e,0xa3,0x3a,0xec, + 0xd4,0xd8,0x7b,0xe8,0xea,0xb0,0xf6,0x58,0x8b,0xe6,0xc9,0xed,0x65,0xea,0xb3,0x5a, + 0x53,0xb4,0x12,0xb9,0xa6,0xbe,0x54,0x2c,0x4a,0xde,0x4a,0xf9,0xb1,0xaf,0xf6,0x7a, + 0x11,0x6e,0x95,0x3f,0xd3,0xc7,0xe7,0xe4,0x4e,0x75,0x58,0xe1,0x16,0x34,0xfa,0x31, + 0xdc,0xb5,0x1c,0x20,0xf1,0x57,0xf4,0x7c,0x1c,0x77,0x4f,0xdd,0x9a,0xe4,0xba,0x1a, + 0xf7,0x63,0x62,0xa8,0xd5,0xb5,0xc1,0x84,0xfa,0x61,0x4,0x7f,0x45,0x73,0x20,0xc5, + 0xcc,0x63,0x48,0xd7,0xe6,0xb2,0x4f,0x85,0x9f,0xef,0x97,0xf1,0xfd,0xfe,0x90,0xdf, + 0xb4,0xba,0x18,0x79,0xbf,0xa1,0xf3,0xb,0xfb,0xb2,0x31,0x86,0x9e,0x31,0x88,0xeb, + 0x7d,0xbf,0x3f,0x9e,0xb7,0x6a,0xdd,0x2c,0xd5,0x9e,0x84,0xf1,0x30,0x1b,0x16,0x3, + 0xa4,0xfb,0x71,0xe4,0x47,0xef,0x2a,0xdc,0x7a,0x66,0x67,0xad,0xea,0xef,0xf9,0xdd, + 0xbd,0xce,0x2f,0xee,0x1f,0x2c,0x86,0xf1,0x17,0xef,0x9,0xb4,0xfe,0x57,0xf8,0x93, + 0xe6,0xf7,0x9b,0x86,0xf6,0x9f,0xef,0x8f,0x84,0x5a,0x3c,0xbc,0x2f,0xe9,0xde,0x99, + 0x8,0x73,0x8d,0xd5,0xfe,0x61,0x4d,0x41,0x56,0xec,0xef,0x68,0xeb,0xaa,0xbc,0xff, + 0x77,0xc3,0xfb,0x2f,0xad,0xd,0xf2,0xfe,0x7,0xee,0xea,0x73,0x94,0x8c,0xbf,0xdc, + 0x7f,0x3e,0x6,0xa2,0xae,0xf4,0xcc,0x3f,0xc,0x31,0xb,0xdc,0x34,0xff,0xfa,0xfa, + 0x1f,0xfc,0xd4,0x3d,0x53,0xfa,0xc6,0xde,0x85,0x49,0xf3,0x5e,0x8c,0x21,0xe7,0xef, + 0xe9,0x7f,0x8d,0xbb,0xba,0x97,0xa9,0xc5,0x30,0xa2,0xff,0xe5,0x73,0x0,0xa3,0xf9, + 0x79,0xc,0x5c,0x7b,0xcb,0xfe,0xef,0xbd,0xed,0xa,0xe3,0x6b,0xa3,0x84,0x7b,0x20, + 0x7f,0xce,0x2d,0xf1,0xf3,0xf7,0x8d,0xfa,0x38,0xc8,0x7d,0xef,0xe5,0x17,0x72,0x5e, + 0xc9,0xdf,0x6f,0xc9,0xda,0x6d,0x28,0xbf,0x92,0x6f,0xb,0x7e,0x1e,0xc7,0xbd,0x6e, + 0xc9,0x3a,0x4b,0xe3,0x1f,0x50,0x7f,0x96,0xfc,0xf2,0xfb,0xd6,0x9a,0x69,0xeb,0xbf, + 0x1a,0xaf,0xc6,0x1f,0xf6,0xd0,0xc5,0x7d,0xf9,0x8a,0xf1,0x35,0x5b,0x6d,0x7f,0x7d, + 0xc,0x7f,0xbe,0xd6,0xd,0xeb,0xdd,0xb8,0xde,0xa2,0x9c,0x2f,0xec,0xed,0x3f,0x85, + 0xdf,0x9e,0x2b,0x6b,0xc9,0xb8,0x3e,0x7d,0x98,0xd9,0x7c,0xd5,0xf0,0xdf,0xfe,0x53, + 0xfe,0x73,0x1b,0xc3,0xff,0xc7,0xff,0x7c,0xfd,0xe7,0xef,0x5b,0x42,0xdd,0x10,0x6a, + 0x98,0xd1,0xfc,0xde,0x8f,0x6c,0xbd,0x18,0xd8,0xff,0x11,0xfc,0xd2,0x7e,0x42,0xb2, + 0xa7,0x10,0xf8,0x9,0x67,0xd1,0xcf,0xcd,0x63,0x58,0x2f,0xd2,0x3a,0x98,0x4c,0xda, + 0x6b,0xe0,0xcf,0x7f,0xdb,0x76,0x7b,0xe,0xfc,0x5d,0xcf,0x7a,0x4,0x37,0xd2,0xb, + 0xa0,0xf0,0xf2,0xe7,0x1f,0x98,0xe2,0x27,0x38,0xc2,0xbd,0xdd,0x90,0x98,0x90,0xb5, + 0xb4,0x7d,0xa0,0xb7,0x9,0xb3,0x3,0x63,0x47,0xc6,0xa6,0xc6,0x4e,0x8c,0x9d,0x41, + 0x55,0x33,0x26,0x76,0xcf,0xe3,0x5f,0x22,0xb4,0x2f,0xcf, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/storage_controllers.ico + 0x0,0x0,0x2,0x7c, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xbd,0x4e,0x3,0x31,0xc,0x76,0x45,0xd5,0xaa, + 0x62,0x68,0x87,0xe,0xdd,0xe8,0xc8,0xc8,0x1b,0xd0,0x89,0xe7,0x60,0x42,0x3c,0x45, + 0xef,0x46,0x46,0x1e,0x83,0x89,0x99,0xad,0x7d,0x94,0x3e,0x1,0xe2,0x1,0x10,0x25, + 0x1f,0xc5,0xaa,0xeb,0xe6,0xee,0x9c,0xbb,0xdc,0xb5,0x82,0x58,0xb2,0x42,0x7c,0x89, + 0x3f,0x27,0xfe,0x89,0xb,0x51,0x8f,0xfa,0x34,0x99,0x90,0x1b,0xe7,0xf4,0xd8,0x27, + 0xba,0x23,0xa2,0xe9,0x74,0x37,0x7f,0x1b,0x10,0xbd,0x3a,0xd9,0x6c,0xb6,0x9b,0x3f, + 0x8d,0x88,0x1e,0x2e,0x89,0xe6,0xf3,0xdd,0xfc,0xc5,0xed,0x7b,0x77,0x6b,0xaf,0xdd, + 0x1e,0xf7,0xa7,0x93,0xec,0xe4,0xa0,0x45,0x9f,0xaa,0x68,0x6b,0x64,0xef,0xbe,0x3c, + 0xcf,0x4d,0x2c,0xf5,0x48,0xf9,0x7a,0xbd,0x36,0xb1,0xd4,0x83,0x11,0x4,0xb9,0x95, + 0x58,0x87,0xdc,0xf,0xb2,0x9e,0x5f,0xad,0x4f,0xe7,0xff,0x23,0xe7,0xb7,0xda,0x2f, + 0xcf,0xaf,0xed,0x97,0xb6,0x14,0x8d,0xea,0x1e,0x88,0xcf,0x15,0x62,0x3f,0x58,0x27, + 0xa1,0xf5,0xfe,0xe4,0x9e,0xcd,0xd0,0xd9,0xd3,0xc3,0x59,0xf6,0x5c,0x35,0x67,0x19, + 0xf6,0xa2,0xce,0xb8,0x72,0xf3,0x53,0x6f,0xb8,0xce,0x3c,0xf,0x3c,0x15,0xa2,0x5d, + 0x32,0xc7,0xae,0x62,0xaf,0x9e,0xe5,0x72,0xb9,0xcd,0xb2,0x2c,0x98,0xa5,0x5e,0x96, + 0x41,0x97,0xbc,0xfb,0xd5,0x6a,0x55,0xc9,0xbc,0x96,0xf7,0xb3,0x4d,0x52,0x87,0xd5, + 0xd7,0x9a,0xd9,0x4e,0xa9,0xaf,0x2e,0x69,0x7d,0x32,0x2f,0xea,0xb0,0xda,0x9f,0xfc, + 0x91,0xfc,0x71,0x32,0x7f,0x60,0x8c,0xe1,0xf,0x69,0x1f,0x13,0x6a,0x3f,0xe6,0xd6, + 0x7b,0xe4,0xb5,0xd2,0x1f,0xfa,0xfe,0x18,0xf,0x84,0xf3,0x97,0x8d,0xbc,0x4e,0xde, + 0x1f,0x7c,0x12,0xe3,0xbc,0x4d,0xde,0xa5,0xb2,0x77,0xa,0xfa,0x37,0x94,0x6d,0x73, + 0xba,0x72,0xf2,0xf1,0x1,0x5b,0x65,0x2c,0x87,0x1e,0xbc,0x57,0xae,0x85,0xa6,0x1b, + 0xda,0xbf,0x5b,0xf7,0x23,0xcf,0x8b,0x70,0x3a,0x6a,0xfa,0x96,0x95,0xea,0xb4,0xf6, + 0x3a,0x9e,0x9e,0xad,0xf0,0xdd,0xac,0xd3,0xcb,0x31,0xc7,0xec,0xf,0xad,0x58,0x6c, + 0xb3,0x8c,0xdd,0xba,0x39,0xe0,0xc3,0xd0,0xfa,0x25,0x85,0xde,0xbf,0xc6,0xaa,0xea, + 0x5f,0x43,0xe3,0xa7,0xa8,0xbf,0x95,0x3e,0x88,0x15,0x3f,0x42,0x96,0xe2,0x27,0xc5, + 0x4f,0x8a,0x9f,0x13,0xc4,0x4f,0xa8,0xcd,0x96,0xf8,0xd1,0xeb,0x43,0x46,0x1f,0x16, + 0xf4,0xfb,0xb0,0x63,0x8c,0xac,0x1f,0x3e,0x2e,0xba,0xf3,0x3a,0x3a,0xe5,0x79,0xf4, + 0x23,0x19,0xcb,0xbf,0x9e,0xf7,0xf7,0x88,0x42,0xfd,0x5b,0xa4,0x7,0xd8,0x9f,0x74, + 0xeb,0x7a,0xa6,0xa1,0xeb,0x9d,0x7a,0xc7,0x79,0xef,0x64,0x21,0x72,0xfe,0x6,0x7d, + 0xd0,0x8b,0x3e,0x6c,0xee,0x78,0x41,0xfb,0x3e,0x2c,0x9f,0x58,0x4e,0x78,0x68,0x66, + 0x24,0xae,0x85,0x19,0x5a,0xcb,0x2c,0x35,0xae,0xa,0xb7,0xcd,0xba,0xa4,0x6b,0xa0, + 0xc4,0x8e,0x8d,0x69,0xa9,0x91,0x0,0xee,0xa,0xd7,0x67,0x7,0x9f,0x5b,0xe7,0xe1, + 0xb9,0xe0,0xc7,0xa2,0x10,0x7c,0x49,0xb1,0xe2,0xdf,0x67,0x8b,0xef,0x9d,0xd1,0x98, + 0xb1,0xf2,0xdf,0x67,0x8b,0xc6,0x8f,0xd1,0xcb,0x84,0xf4,0x38,0x20,0x99,0x3,0x5d, + 0xe7,0xbf,0xee,0xb3,0x52,0xfe,0x9f,0x1f,0x7e,0xca,0xff,0x94,0xff,0x29,0xff,0x53, + 0xfe,0xff,0xd7,0xfc,0x6f,0x23,0xfe,0xab,0xf2,0xdf,0xe7,0x83,0x18,0xa3,0xb6,0x5, + 0x44,0xbf,0xbf,0x83,0x35,0x6e,0x2c,0xcc,0x32,0x5b,0xf8,0xfc,0xd2,0xe7,0x5d,0x60, + 0xeb,0x11,0x35,0xa0,0x4b,0x1b,0x24,0x8e,0xfc,0x1,0xe4,0x8b,0xff,0xd8,0x98,0x2c, + 0xd3,0xd8,0x3e,0x3b,0xda,0xca,0xff,0x22,0xdc,0x2a,0x5b,0x9a,0x70,0x19,0xc6,0x17, + 0x51,0xf6,0x41,0x34,0x5e,0x13,0x5d,0xe4,0xf8,0x57,0x41,0x1,0xe1,0x5b,0x93,0xef, + 0x72,0x1d,0xb0,0x80,0x9,0xec,0x6f,0x83,0xa,0xb0,0x25, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_disabled.ico + 0x0,0x0,0x4,0xa2, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x5a,0xb1,0x8e,0x13,0x31,0x10,0xf5,0x71,0x81,0x13, + 0xa2,0xb8,0x14,0x20,0xd1,0x5d,0x4a,0x4a,0xfe,0x80,0x3b,0x81,0x68,0xb9,0x2,0x2b, + 0xd,0x52,0xa8,0x10,0x3f,0x81,0x6e,0xb9,0x8a,0xe,0x3e,0x21,0x42,0x14,0x27,0x47, + 0x22,0x2d,0x15,0x77,0x3f,0xb1,0x3d,0x75,0xa,0x44,0xc1,0x36,0x2b,0x25,0xc3,0x24, + 0x8b,0xb3,0xb6,0x77,0xc6,0x63,0x6f,0x2,0x23,0x59,0x73,0xeb,0xac,0xe7,0xbd,0xf1, + 0xda,0xcf,0xb3,0xab,0x53,0xea,0x40,0xd,0xd4,0x70,0xa8,0xd0,0x8f,0xd4,0xdb,0x81, + 0x52,0xcf,0x95,0x52,0xf7,0xef,0x37,0xd7,0xdf,0xee,0x28,0xf5,0x15,0xfb,0x1e,0x3e, + 0x6c,0xae,0x3f,0xdc,0x55,0xea,0xcd,0x3d,0xa5,0x46,0xa3,0xe6,0xfa,0xa,0xc7,0xfd, + 0xc4,0x7b,0x1f,0xe1,0x18,0xfc,0x13,0x7b,0x9a,0xfe,0xb5,0x9d,0xe,0x54,0x8e,0x1, + 0xe1,0xdd,0xd6,0xb1,0xa2,0x28,0x36,0xfd,0x37,0x37,0x37,0x1b,0xf,0x68,0x6b,0xff, + 0x65,0x3a,0xfd,0x3b,0x6,0x9c,0xe6,0xc7,0x8,0xc7,0x5a,0xdf,0x8c,0x2d,0xb6,0xe3, + 0xec,0x7d,0x6e,0xc,0x6e,0xac,0xc5,0xb7,0xe3,0x9b,0xfb,0x0,0x9a,0xdf,0x7d,0xe, + 0x69,0xf8,0xb6,0xdf,0xcf,0xc1,0x8e,0xd,0x63,0xf8,0xfd,0x5,0xf8,0xf9,0x6f,0x7e, + 0x83,0x70,0x6c,0xe8,0x2d,0x46,0x13,0xb3,0xd8,0x36,0x8b,0x21,0x8c,0x55,0x6e,0x8c, + 0x90,0x9f,0x8b,0x1f,0x72,0x4e,0x7d,0x3e,0xd4,0x58,0x37,0xbe,0xdb,0x6f,0x9f,0x7, + 0x85,0x1f,0x8e,0xfd,0xbb,0x66,0x3a,0x63,0x89,0x18,0xe2,0xd8,0x70,0x3d,0xb4,0xeb, + 0xa2,0xb5,0x30,0x2f,0x8e,0xb3,0x33,0x96,0x8d,0x61,0xf1,0xc3,0xb1,0xe1,0xbc,0x50, + 0x16,0xce,0x7,0x35,0x67,0xdc,0x58,0x2e,0x6,0xb1,0x1e,0xb6,0xb6,0x7c,0xa,0xb0, + 0x78,0xf,0x50,0xe,0x0,0x4c,0x81,0x7e,0xd8,0x78,0x7d,0x6,0x30,0x33,0xe8,0x4b, + 0xbc,0x5e,0x7b,0x8d,0x7e,0x86,0xbf,0xa3,0x5f,0xa0,0xaf,0xc6,0x0,0xf5,0x35,0xc0, + 0x5a,0x67,0x50,0x6e,0x36,0x7a,0x63,0x75,0xe6,0xd3,0x1d,0x89,0x21,0x69,0x92,0xde, + 0xb0,0xba,0x13,0xe6,0xcd,0xe8,0x40,0xb0,0xff,0x68,0x1d,0x4a,0x8b,0x45,0xe9,0x91, + 0x62,0x63,0x72,0xeb,0xa0,0x7d,0xa6,0xbe,0x2e,0x75,0x63,0x76,0x75,0x8a,0x8b,0xe9, + 0xf3,0xb3,0xf7,0xc7,0x75,0x93,0xdb,0x5b,0x21,0x3f,0x7f,0x3d,0xd1,0x3a,0xca,0xed, + 0x35,0x4e,0xb,0xfd,0x79,0xf6,0xe7,0x8f,0xd3,0x73,0x42,0xa3,0xbc,0x98,0x31,0x9d, + 0xe5,0xf6,0x39,0x61,0xe0,0xea,0x2d,0xa5,0xbb,0xfc,0xf3,0xcc,0x5b,0x53,0xfd,0xf9, + 0x45,0x39,0xc4,0x62,0x45,0xf9,0x51,0x67,0x10,0x77,0x4e,0x10,0x39,0x93,0x31,0x28, + 0x2d,0x4a,0xd5,0xfe,0x70,0x9d,0xc6,0x74,0x8d,0xe3,0x29,0xed,0xc1,0xd8,0xdc,0x48, + 0x67,0x52,0xce,0x3a,0xb0,0x63,0x73,0x63,0xb9,0xcf,0x95,0x8b,0x99,0xbe,0x9f,0xe3, + 0x3a,0x4a,0xc5,0xde,0x47,0x2c,0x8e,0x6f,0xec,0x7c,0xb2,0x6,0xe7,0x4f,0xa0,0x9e, + 0x9e,0x40,0x75,0x76,0xc,0x8b,0xe9,0x47,0x28,0x9f,0xbd,0x0,0xf3,0xf9,0x18,0x4a, + 0xbc,0x36,0xd3,0x63,0xd0,0xbf,0x4e,0xc0,0xd4,0x73,0xd0,0xd5,0xa4,0xf1,0x1a,0xbd, + 0xb9,0xc6,0xf3,0x6a,0x2,0x8b,0x8d,0xbf,0x40,0xf,0xb0,0xc4,0xf3,0x6b,0x35,0x6f, + 0xce,0x2d,0x2c,0xa1,0xd5,0x63,0xd5,0x9e,0x5b,0xaf,0xef,0xe6,0x66,0xe2,0x53,0x8c, + 0xf8,0xb0,0x25,0x19,0x57,0xbf,0xd8,0xb5,0xa3,0x32,0xcf,0x34,0xd7,0xb8,0xf5,0x15, + 0xd6,0xcc,0x4d,0x4f,0x6b,0x29,0x18,0x39,0xb1,0x1d,0x8d,0xb6,0xb7,0x44,0x31,0xa4, + 0xfd,0xe1,0xd7,0xeb,0x85,0x13,0x8f,0xc2,0xf0,0xe3,0x4b,0xb1,0xbb,0xfc,0xdd,0xbd, + 0x41,0x5d,0xb7,0xf1,0x39,0x7d,0xa7,0x7d,0x1b,0xdf,0xc7,0xe,0x73,0xa2,0xb5,0x56, + 0xd6,0x38,0x77,0xfe,0x29,0xc,0x9e,0x3f,0xa7,0xaf,0xce,0xbd,0x24,0x46,0xdb,0xe4, + 0xd8,0x91,0xb3,0x25,0xb0,0x70,0x1d,0x75,0x9f,0x75,0xc2,0x39,0x24,0xec,0x95,0x2, + 0xba,0x2d,0x7e,0xce,0x26,0x9c,0xdd,0xd6,0xa2,0xcf,0xcb,0xe5,0x9f,0x5b,0x6b,0x6c, + 0xd9,0xcb,0xe3,0x77,0xe6,0x9f,0x53,0x37,0x64,0x60,0x78,0x7b,0xae,0x4f,0x1d,0x21, + 0xad,0x51,0x6e,0x2d,0xa7,0xd4,0x15,0x5c,0x4d,0x90,0x91,0xaf,0xa8,0xd,0x7d,0x6b, + 0x84,0x14,0xfe,0x7d,0x63,0xbb,0xeb,0x86,0xc3,0x90,0xea,0xb7,0x3e,0xb1,0x25,0x8c, + 0x7d,0xc4,0xe,0x31,0x52,0xeb,0xa9,0x9c,0xd8,0x12,0x46,0xee,0xfe,0xee,0x83,0x95, + 0x52,0x6f,0x59,0x83,0xf2,0x8,0x56,0xe6,0x10,0x96,0x2f,0xf,0xa0,0xbe,0x1a,0x41, + 0x75,0x3e,0x84,0xc5,0xd5,0x7,0x28,0xcf,0x4f,0xc1,0xe0,0x75,0x89,0xfd,0xe6,0xfb, + 0x2d,0xd0,0x17,0xb7,0xc1,0xac,0xc,0x7a,0xdd,0xf8,0x77,0xe8,0xcd,0xc,0xeb,0x2e, + 0xeb,0xc7,0x58,0x7f,0xcd,0xa1,0xc2,0x7a,0xac,0xc6,0x7a,0x6c,0x89,0xf5,0x18,0xcc, + 0x9a,0x3a,0x6c,0x84,0xed,0x54,0xb5,0x75,0x58,0x31,0xdc,0x35,0xe3,0x86,0xba,0xe0, + 0xdd,0xfb,0xc2,0xd6,0xcb,0x24,0xd,0xe8,0x7e,0xf,0x5d,0x37,0xf2,0x7c,0xc9,0xe6, + 0x21,0xe9,0x4e,0x17,0xdb,0x62,0x71,0xe7,0x67,0x91,0xcc,0x21,0x55,0x33,0xec,0xb7, + 0x9,0xb7,0xce,0xa0,0x2c,0x38,0xc7,0xa3,0x1c,0xf2,0xb0,0x37,0x33,0x45,0x61,0x78, + 0xba,0x1c,0xd4,0x73,0x2c,0x7e,0x2a,0x76,0xbb,0x97,0xfd,0x7a,0x34,0xac,0x1b,0xdd, + 0x3d,0x2f,0x71,0xc8,0xd5,0xeb,0xee,0xdc,0xbb,0xba,0xd3,0xe5,0x10,0xc3,0x4f,0xd5, + 0x43,0x29,0x7f,0x5f,0xfb,0x7c,0xe,0x1c,0x7e,0xae,0x26,0x4b,0xf9,0x33,0xf9,0x92, + 0xf9,0x73,0xef,0x63,0xe9,0x67,0x8f,0x8f,0x4f,0x73,0x24,0x79,0x6e,0xf3,0xe7,0xd6, + 0x35,0xc7,0xa1,0xab,0xf9,0xa9,0x1c,0xf8,0xb9,0x4f,0xe5,0x40,0xd7,0x5d,0xd4,0xfe, + 0xb,0x9b,0x3c,0xf7,0x12,0x7,0x97,0x77,0x60,0x5b,0xe,0x3e,0x8f,0xae,0x26,0xb9, + 0xf3,0x93,0xf2,0x7c,0x2d,0x76,0x5a,0xdd,0x5c,0x78,0x3c,0x7c,0xfd,0x2b,0x42,0x6c, + 0xb1,0x8e,0x26,0xe6,0x5c,0xb2,0xed,0x7a,0x88,0xbd,0xdf,0xe4,0xe4,0xef,0xf2,0x4d, + 0x21,0x90,0x9a,0xd3,0xbf,0xcc,0x3f,0x23,0xa7,0x1c,0xec,0xff,0x9e,0x7f,0xfa,0x3b, + 0xb3,0x8f,0x9d,0xae,0x5d,0xe9,0xd8,0xd2,0x3c,0xf4,0xa8,0xab,0x59,0xe,0xbb,0xbe, + 0xf3,0x49,0x1c,0x5c,0x6c,0x2e,0x4f,0x8e,0x77,0xea,0xbb,0x61,0x2,0x87,0xce,0xdc, + 0xa5,0x62,0xe7,0x9d,0x8f,0xdd,0xfb,0x15,0xf1,0xc,0x73,0xf3,0xee,0xcb,0xe1,0x7f, + 0x62,0x47,0x38,0x74,0x4c,0x7a,0x5f,0xdf,0x17,0x87,0x98,0x71,0xef,0xf3,0xbb,0x62, + 0x53,0x6b,0x4e,0xe2,0x20,0x61,0xe7,0x72,0xc8,0xb1,0x7d,0x7d,0x73,0xe8,0x83,0x2d, + 0x71,0xe8,0xa3,0x6f,0xbb,0x5a,0x8f,0xef,0xa,0x7b,0xc3,0x96,0xb8,0xf4,0xf9,0xfe, + 0x60,0xd,0xaa,0x57,0x27,0x60,0xa6,0x47,0xa0,0x4f,0xf,0x57,0xa6,0x38,0x58,0xea, + 0xb3,0xb3,0xda,0x14,0xd3,0x4a,0xf,0xce,0x17,0xe6,0x72,0x54,0xea,0xdb,0x43,0x63, + 0x2e,0x8b,0x12,0xfb,0xd,0xfe,0xae,0xc7,0x37,0x7,0x66,0xfe,0xe3,0x96,0x9e,0xfc, + 0x7e,0x60,0xe6,0xb5,0xd1,0x93,0x4a,0x6f,0xfc,0x18,0xfd,0x6c,0x61,0x4a,0xad,0xb5, + 0x31,0x66,0xb6,0xf6,0x8b,0xc6,0x8f,0xd1,0xcf,0x2b,0xad,0x27,0xb5,0x31,0xd7,0x4b, + 0xad,0x2f,0x56,0xeb,0x7f,0x7c,0x58,0xff,0xc3,0x43,0x3d,0x87,0x3f,0xfd,0xeb,0x8e, + 0x6f, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty.ico + 0x0,0x0,0x2,0x99, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x4e,0xc3,0x30,0x10,0x3d,0xa4,0xaa,0x52, + 0xc5,0xd2,0x81,0x81,0xb1,0x23,0x23,0x9f,0xc0,0xc4,0x1f,0x64,0x86,0x9,0xf1,0x15, + 0x49,0xda,0x89,0x91,0x4f,0xe8,0xc0,0x80,0x5a,0x9,0x56,0xa6,0x26,0x3f,0xc1,0x6f, + 0xf0,0xb,0xc1,0x4d,0x73,0x4d,0x73,0xc9,0xd9,0x67,0xc7,0x69,0xa9,0xb0,0xa5,0xea, + 0xd9,0x89,0xed,0x7b,0x97,0x26,0x77,0xef,0xc,0x70,0x1,0x23,0x98,0x4e,0x41,0xe1, + 0xc,0x9e,0x47,0x0,0xf7,0x0,0x70,0x75,0xb5,0x1b,0x7f,0x8d,0x1,0x3e,0xd4,0xb5, + 0xeb,0xeb,0xdd,0xf8,0x65,0x2,0xf0,0x74,0x9,0x30,0x9b,0xed,0xc6,0xef,0x6a,0xdd, + 0x8f,0x9a,0x7b,0xa3,0xd6,0xa8,0xae,0xba,0xb2,0xbb,0xbe,0x6d,0x77,0x23,0xd0,0xb5, + 0xc2,0x11,0x21,0x4d,0xd3,0xb2,0x1f,0x27,0x49,0x89,0x9,0x83,0x78,0x1f,0xe7,0x6f, + 0xf7,0xc0,0xfe,0xdb,0x72,0x59,0x62,0xa1,0x9a,0x4,0xf,0xf6,0x80,0x3c,0xcf,0xcb, + 0x7e,0x86,0x98,0x65,0xc,0xe6,0xd,0x5b,0xbe,0xed,0x6f,0x36,0x59,0x85,0x1b,0x6, + 0xb3,0x81,0xed,0x53,0x1e,0x14,0xfb,0xfb,0x8f,0xf3,0xba,0xec,0xe3,0x3d,0x29,0x76, + 0xd9,0xc7,0xbd,0x38,0xd4,0xd9,0x3f,0x7c,0xaf,0xba,0x90,0xee,0xd1,0x65,0xbf,0xde, + 0x7f,0x5e,0xbd,0xbb,0xcd,0x3d,0x25,0xf6,0x17,0x8b,0x45,0x63,0xd,0x5e,0xb7,0xb1, + 0x3f,0x9f,0x2f,0x5a,0x73,0x39,0xfb,0xd8,0x47,0x9c,0x57,0xf6,0x91,0x47,0x42,0xee, + 0x1f,0xae,0xfd,0x8e,0x8a,0x62,0xb5,0x2a,0x8a,0xc8,0x5,0xd7,0x45,0xb1,0x8d,0x33, + 0x2a,0xdc,0x94,0xf1,0x6,0xe3,0xcc,0xeb,0x18,0x74,0xcd,0x35,0xce,0x38,0xc7,0x1d, + 0x97,0x38,0x84,0xb1,0x82,0x8f,0x25,0x4,0xdb,0xef,0xe0,0xfe,0xff,0x96,0x7e,0xd3, + 0xdc,0xb7,0xd6,0xc5,0xcf,0x1c,0x6b,0x8,0x56,0x3c,0x3,0xbf,0x73,0xe1,0x67,0x8a, + 0xe5,0x4,0x33,0xfe,0xfd,0xb3,0xcd,0x2d,0x12,0x7e,0xae,0xa8,0xe3,0x67,0x8a,0xfd, + 0x5c,0x9e,0xd1,0xf1,0x3,0x61,0x3c,0x91,0xc4,0x75,0x9c,0x13,0xc7,0x34,0xae,0x54, + 0x71,0x28,0x8e,0x3b,0x79,0xea,0xf8,0xe1,0x5a,0x9a,0xbb,0x24,0x71,0x9f,0xe3,0x87, + 0x7b,0x22,0xd2,0xeb,0x3e,0xf8,0x49,0x9e,0x1f,0xcd,0x37,0x88,0x34,0x1f,0xed,0xf9, + 0x6a,0xf3,0xd4,0x83,0xca,0x3b,0x9f,0x2a,0xef,0xf8,0xc0,0xac,0xcc,0x5b,0x4a,0x42, + 0xc3,0x2d,0xd4,0x79,0xeb,0x71,0x2,0xba,0x66,0xf5,0x3e,0x59,0x60,0xcb,0x5f,0xdb, + 0x7c,0x36,0x84,0xbe,0xee,0xa3,0xff,0xac,0x73,0xe7,0x0,0xfa,0xbc,0xf,0x7f,0xeb, + 0xdc,0x30,0x80,0xbe,0xf,0xfc,0xcf,0x99,0x7f,0x4e,0xfc,0x90,0xa2,0x3c,0x2e,0xf, + 0xc9,0xdf,0x17,0xea,0xf8,0xff,0x5,0x1d,0xe1,0xa2,0x2b,0xe8,0x18,0x84,0x71,0x5e, + 0x52,0xbf,0x52,0xfb,0x6d,0x9d,0xd1,0xd4,0x1b,0x38,0x46,0x1b,0x2e,0xfc,0x4d,0xfa, + 0x83,0xd3,0xc,0x12,0xfe,0x74,0xef,0x96,0x1e,0x61,0x6c,0x6,0xfe,0x35,0x72,0x67, + 0x7,0x2e,0x3a,0x8b,0xfa,0x61,0x9a,0xb7,0x6d,0xdf,0xaa,0xd0,0x5f,0xa9,0x82,0x3f, + 0x1a,0x4,0xd7,0xa5,0xe,0x9b,0xa9,0xdf,0x1d,0xd4,0x3a,0x2c,0x9d,0x82,0xae,0x59, + 0x7d,0x77,0x1e,0xd1,0x9b,0x4e,0x93,0xea,0x37,0x9d,0x8e,0xeb,0xaf,0xb5,0x64,0x1a, + 0x4c,0x57,0x6f,0xf4,0xcd,0xa5,0xa6,0x1c,0xd5,0xf5,0x1d,0x1,0xf9,0xd6,0xdc,0xb5, + 0x82,0x4c,0x43,0xf8,0xac,0xa7,0x7d,0xf8,0x4f,0xef,0x5,0xff,0x83,0xff,0xc1,0xff, + 0xe0,0xff,0xff,0xf5,0x3f,0x27,0xcf,0xa1,0x2f,0xda,0xeb,0xc4,0x53,0xfa,0x3f,0x34, + 0x1e,0xa3,0x4e,0x3c,0x65,0x1d,0xe9,0xc3,0x7f,0xd7,0x7a,0xd3,0x54,0x7f,0xba,0xf8, + 0xf,0x8e,0xfa,0x96,0xe3,0xa0,0xf3,0x9f,0x72,0xe2,0xeb,0x55,0xc4,0x94,0x60,0xd2, + 0xe0,0xe0,0xc3,0x7f,0x5a,0xdb,0x98,0xea,0x42,0xe4,0xe0,0xc3,0x7f,0xce,0x36,0xad, + 0x1b,0x3b,0xf6,0xe,0xfe,0x7,0xff,0x8f,0xe2,0x3f,0x62,0xcd,0x4d,0xee,0x3f,0x77, + 0xce,0x60,0x3a,0x47,0xa0,0xcf,0x41,0x7a,0xfe,0x40,0xce,0x21,0xa2,0x95,0x6a,0xd1, + 0x69,0x70,0xfd,0xb,0x11,0x29,0x56,0x33, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_active.ico + 0x0,0x0,0x3,0x67, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x58,0x3b,0x6e,0xdb,0x40,0x10,0x1d,0x42,0x82,0xd, + 0x23,0x1,0xa2,0xc2,0x85,0x3b,0xab,0x9,0x90,0x32,0x37,0x88,0xab,0x9c,0x23,0x55, + 0x90,0x63,0x6c,0xba,0x54,0x41,0x8e,0x11,0xa4,0x70,0x9d,0x92,0x87,0xf0,0x1,0x74, + 0x82,0x40,0xa5,0xa,0xc3,0xcc,0x2c,0xc9,0xa5,0x97,0xcb,0x9d,0xdf,0x6a,0x19,0x38, + 0x1b,0x3c,0x44,0xa2,0x39,0xef,0x8d,0x65,0xee,0x7b,0xb3,0x2,0x68,0x60,0xb,0xbb, + 0x1d,0xe0,0xff,0x7b,0xf8,0xb2,0x5,0xf8,0x8,0x0,0xd7,0xd7,0xc3,0xfb,0xdf,0x17, + 0x0,0xf7,0x78,0xed,0xe6,0x66,0x78,0xff,0xed,0xa,0xe0,0xf3,0x2b,0x80,0xfd,0x7e, + 0x78,0xff,0x13,0xeb,0xfe,0xe0,0xbd,0xef,0xb0,0x6,0x5f,0xe2,0x95,0xe1,0xba,0x5f, + 0x77,0x5b,0xd0,0xae,0x4e,0x1,0xb2,0xae,0x7b,0xfb,0x6b,0x81,0xfe,0x67,0x2e,0x42, + 0xc2,0x31,0xbb,0xff,0xfb,0xc3,0xc,0xfe,0x7e,0xbf,0x20,0xfe,0x17,0x71,0xf4,0x35, + 0xf,0xc7,0x1,0xbe,0x26,0xbc,0x1e,0xa1,0xae,0xf7,0xb5,0xfe,0x35,0xae,0xb6,0x6d, + 0x27,0x70,0xf5,0x54,0x2d,0xc5,0x11,0x16,0x55,0x1f,0xd7,0xe6,0x38,0x2,0xc2,0x67, + 0x2a,0xe9,0xa7,0x1c,0xf1,0xbd,0x5a,0xfd,0x98,0x43,0x53,0xcf,0x71,0xb0,0xf5,0xe1, + 0x77,0xe0,0x10,0xdd,0x97,0xad,0xd7,0x82,0xaa,0x4f,0x9e,0x9d,0x5,0xb8,0xfa,0xa8, + 0x3f,0x6a,0xdf,0x48,0x9f,0x5f,0xa8,0x77,0xce,0x2d,0x90,0xab,0x5f,0xec,0x9d,0x11, + 0xb9,0x7a,0x8f,0x64,0x4f,0xc2,0x69,0xd3,0x75,0x87,0x6,0xff,0x36,0x48,0xed,0x46, + 0x80,0x12,0xe,0xeb,0xbc,0xcf,0xa0,0xdd,0xf4,0x7e,0x13,0x7c,0xe6,0xc7,0x85,0xda, + 0x67,0x2c,0x7e,0xc3,0xf9,0xce,0x8c,0x47,0xe5,0x3f,0x84,0xf,0x65,0x3f,0x4f,0x8d, + 0x1f,0x65,0x7c,0x65,0xe2,0x4a,0x9f,0x9d,0x1a,0x7c,0x31,0x87,0xc6,0xef,0x24,0xdf, + 0x8b,0x9e,0xeb,0xd8,0x2f,0x48,0xff,0xd3,0xf0,0x25,0x7e,0x62,0xe1,0x93,0xb8,0x24, + 0x7f,0x65,0x7d,0x56,0xe9,0x95,0xb9,0xe7,0x85,0xf3,0x2d,0xc9,0x3b,0x17,0x1e,0x2a, + 0xf8,0xa0,0xe4,0xa5,0xa5,0x7c,0x6a,0x8f,0x37,0xf0,0xa9,0x3c,0x5f,0xf2,0x6d,0xc9, + 0xfb,0x73,0xfb,0xf1,0xdc,0x1c,0xd0,0xe6,0x82,0x26,0x1b,0x72,0xfb,0x9c,0xcb,0x39, + 0x21,0x2b,0x26,0x3f,0x53,0xfe,0x3d,0xb8,0xec,0xc8,0x66,0x48,0x2e,0x47,0x94,0x59, + 0x24,0xf0,0xd1,0x5e,0xca,0x64,0x13,0x95,0x51,0x7e,0x3d,0xc1,0x87,0xee,0x4,0xb7, + 0xdd,0x1,0xde,0x60,0x56,0xd,0x70,0x23,0xc0,0x0,0x87,0x1c,0x2d,0x72,0xf9,0xbc, + 0xc2,0x11,0x1a,0xde,0xc3,0x73,0x6e,0x7d,0xba,0x12,0xd2,0x85,0x5e,0x5c,0x56,0x59, + 0x33,0x6c,0xc1,0x49,0xed,0x3,0x30,0x64,0xda,0x8c,0x58,0xc8,0xb7,0x90,0x49,0x3d, + 0x14,0x99,0xb4,0xe0,0x16,0xf6,0x21,0xeb,0xff,0x8c,0x86,0x76,0x8f,0x97,0xf0,0xb3, + 0xdc,0x96,0x7c,0xd5,0xe6,0x6c,0x69,0xde,0x5a,0xf8,0x33,0x67,0x99,0x6a,0xfc,0xcc, + 0x59,0x47,0xd2,0xe8,0xaf,0x2b,0x66,0x90,0xb0,0x24,0x8d,0x5c,0xe6,0x8b,0x39,0x13, + 0xf1,0x4a,0x1a,0x8b,0x19,0x40,0x91,0x63,0x69,0xe,0x72,0x1a,0x8b,0x8c,0x54,0xf2, + 0x5b,0x34,0x4a,0xf9,0xb5,0x1a,0xe7,0xf0,0x6b,0x34,0xce,0xe5,0x97,0x34,0x4c,0xfc, + 0x96,0x59,0x85,0xf2,0xd8,0xda,0x73,0xcb,0x4b,0xe3,0xd7,0xce,0x4a,0xd4,0xd9,0x48, + 0xda,0xbf,0xb1,0xdf,0xb,0xf3,0x13,0xa4,0x33,0x8a,0x91,0x5f,0x9a,0x57,0x38,0xfe, + 0xac,0xc7,0xd5,0xe3,0xa7,0x33,0xdd,0x30,0x6f,0xa5,0x33,0x57,0xcc,0xdd,0x7d,0xbd, + 0xec,0x1e,0x61,0x83,0xb3,0x57,0xd3,0x1d,0xf1,0xed,0x1,0xd1,0x22,0xdc,0x84,0xc6, + 0x72,0x76,0x9f,0xe0,0xeb,0x5a,0xe4,0xf5,0x73,0xd8,0x1e,0x71,0x7,0xcf,0x73,0x98, + 0xdb,0xe5,0x26,0xb,0xf3,0xd2,0x7e,0x8f,0x50,0x3a,0x9f,0xb1,0x9a,0x92,0x1f,0x4c, + 0xf7,0xd2,0xf3,0x9b,0xa5,0x8f,0xa5,0x26,0xb3,0x77,0x67,0xba,0x54,0xf6,0x2b,0xe6, + 0xc8,0x5e,0x58,0xa9,0x39,0x69,0x6b,0x66,0xf,0xc5,0x9c,0x39,0x69,0x1b,0xbd,0xad, + 0x96,0xfe,0xea,0xda,0x4c,0xf,0x2a,0xed,0x8c,0xc7,0xd6,0xd0,0x17,0xb5,0x47,0xad, + 0x5c,0xfe,0xae,0xae,0x4f,0xe4,0x7e,0x2d,0x7d,0x8d,0x36,0x35,0xdf,0xad,0xaa,0x3f, + 0xce,0xb3,0xd2,0x8c,0x69,0xee,0x41,0xfb,0xd9,0x47,0xfa,0x52,0xf,0xa5,0xfa,0x9c, + 0x76,0x3c,0xd3,0x59,0x7a,0xa0,0xfa,0x98,0x7e,0x26,0x9d,0x23,0xa2,0xdf,0xbd,0xa4, + 0x7,0xf6,0x3b,0x4b,0xcd,0x39,0x23,0xf3,0xdc,0x59,0x7a,0x60,0xcf,0x37,0xda,0x39, + 0x8f,0x39,0x8b,0x68,0x7b,0x20,0x67,0x7c,0xa3,0xfe,0xb9,0x3d,0xd4,0xd0,0x3f,0xa7, + 0x87,0x5a,0xfa,0xa5,0x3d,0xd4,0xd4,0x2f,0xe9,0xa1,0xb6,0xbe,0xb5,0x87,0x35,0xf4, + 0x2d,0x3d,0xac,0xa5,0xaf,0xed,0xa1,0x48,0x3f,0x78,0x60,0xd,0x10,0xdc,0xa2,0xfe, + 0x9a,0xf8,0x1f,0xf4,0xad,0x67,0x6d,0xed,0x19,0x5c,0xf9,0xfc,0xa5,0xd7,0xa0,0xe0, + 0x3c,0xd8,0x6b,0x14,0x3e,0xff,0xe9,0x35,0xcd,0x79,0x57,0x75,0xc6,0x7e,0x41,0xfa, + 0xe4,0xc,0xf4,0x6f,0xf4,0xe7,0x67,0xf,0x1,0x25,0xfa,0xb9,0xef,0x20,0x66,0xdf, + 0x43,0x1c,0x5f,0xdf,0x76,0xe,0x2e,0x9f,0x0,0x36,0x8f,0x0,0xcd,0x9,0x71,0xc4, + 0xeb,0x7,0x44,0x3b,0xc2,0xd,0x68,0x3c,0x72,0x67,0xb6,0x92,0xe5,0xb9,0x90,0x7b, + 0xf3,0x17,0xf3,0xb7,0x3,0x2b, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/network_empty.ico + 0x0,0x0,0x3,0x76, + 0x0, + 0x0,0x1b,0x26,0x78,0x9c,0xed,0x58,0x3d,0x6f,0xdb,0x30,0x10,0x7d,0xb2,0x6c,0x4a, + 0x6e,0x62,0x20,0x29,0x32,0x64,0xcc,0xd8,0xb1,0x3f,0xa1,0x53,0xa7,0xc,0x5d,0x84, + 0x8c,0x5e,0x8b,0xfc,0x8,0x2b,0x40,0xfe,0x48,0xc6,0x42,0x2,0xea,0x4e,0xce,0xe8, + 0x8c,0x9d,0x3,0x18,0x99,0x8a,0xee,0x1e,0x5a,0x2f,0x5e,0x2,0x4,0xec,0xf1,0x8e, + 0x14,0x49,0x49,0x49,0xd1,0x6e,0x45,0x75,0x7,0xe7,0x74,0x9f,0xa4,0x84,0xe0,0x3d, + 0x4a,0x40,0x82,0x31,0x8e,0x8e,0x40,0x36,0xc7,0xc7,0x9,0xf0,0x1e,0xc0,0xc9,0x89, + 0xf8,0xb9,0x2,0x3e,0x53,0xec,0xf4,0x54,0xfc,0xaf,0xe4,0xaf,0xe,0x80,0xb3,0x33, + 0xf1,0x3f,0xe5,0xc0,0xe2,0x35,0xf0,0x86,0x7a,0x68,0x4,0x28,0xcc,0xf1,0x97,0xe4, + 0x88,0x16,0x3b,0x3e,0x3e,0xc6,0xf9,0xf9,0x39,0x2e,0x2f,0x2f,0xb1,0x58,0x2c,0x50, + 0x96,0x25,0xae,0xae,0xae,0x70,0x7d,0x7d,0x8d,0xd5,0x6a,0x85,0xf5,0x7a,0x8d,0xbb, + 0xbb,0x3b,0x6c,0x36,0x1b,0x68,0xad,0x5f,0x9c,0x37,0xc8,0x20,0x83,0xfc,0x2b,0x92, + 0xb4,0xdd,0x31,0x87,0xc6,0x48,0x8d,0x3b,0xc1,0x21,0xb9,0x19,0xbb,0xa9,0xab,0xc8, + 0x28,0x68,0xdc,0xb1,0x54,0x80,0x2e,0x25,0x90,0x99,0xac,0xe4,0xc7,0x32,0x41,0x91, + 0x4a,0xf9,0x58,0xf2,0x33,0x2a,0x97,0xc0,0xa1,0xe4,0x67,0xa4,0x26,0x70,0x28,0xf3, + 0x13,0x3b,0xc1,0x34,0x64,0x26,0x7f,0x80,0x57,0xf4,0xcb,0x58,0x61,0xfa,0x9,0x4, + 0x29,0x60,0x45,0x51,0xf1,0x94,0x2,0x23,0x17,0x98,0x71,0x7f,0x90,0x9f,0xb1,0x26, + 0x3e,0x60,0x74,0xe2,0xdc,0xef,0x17,0x40,0x55,0x3,0x45,0x1,0x6c,0x2b,0xe0,0x1b, + 0xd9,0xaa,0x12,0xbf,0xb1,0x26,0x6f,0xea,0x8,0xf6,0x8a,0x32,0xb6,0x6,0x67,0x9, + 0x9a,0xd9,0xfe,0xe,0x67,0x1d,0xbe,0x86,0xb8,0x6a,0x30,0xf5,0xfe,0xfe,0x7e,0xc0, + 0xd5,0x41,0x6,0xf9,0x7f,0x65,0xc4,0xca,0x32,0xe5,0xb,0x83,0xa6,0x4d,0x70,0xc4, + 0xc0,0xa2,0xe8,0xaf,0xc1,0xb6,0x91,0x1,0x4a,0xc9,0xa6,0x16,0x2e,0x13,0xf6,0xb9, + 0xc6,0xa4,0x5c,0x9d,0x5,0x3d,0x83,0xab,0xb9,0xd5,0x91,0x47,0xca,0xd4,0xba,0x1c, + 0x4a,0xad,0xe6,0xdc,0x68,0xeb,0xa6,0xb6,0xce,0x2d,0xc2,0x75,0x53,0xd6,0x94,0xd1, + 0x2e,0x91,0x69,0x69,0xa3,0x23,0xb7,0x3f,0x2f,0xca,0x33,0x87,0xaf,0x53,0x3e,0x3f, + 0x65,0xaa,0x18,0x87,0x4d,0x42,0x25,0x93,0x78,0x8e,0x6c,0xa6,0x53,0x97,0xfa,0xf1, + 0x2e,0xe8,0x76,0x88,0x6e,0x65,0x23,0x7a,0xbf,0x43,0x5d,0x7d,0x21,0x7c,0xff,0x40, + 0x38,0x2f,0xf6,0x47,0x75,0x83,0x7,0xf6,0x6f,0xa2,0xb8,0xb1,0x9b,0x62,0x87,0x6a, + 0xb9,0xc3,0x66,0xde,0xb5,0xdb,0xf5,0x8e,0xf1,0x9f,0x8e,0xe4,0x78,0x8b,0xbf,0xe7, + 0x81,0x81,0x3,0x6,0x19,0x64,0x10,0xb,0xee,0x56,0xdc,0xd9,0x36,0x62,0x4,0xc3, + 0x9,0xe6,0x38,0xac,0x18,0x29,0x1d,0x5,0xc0,0xf3,0x82,0xf,0x37,0x70,0x2c,0x98, + 0x9b,0x4,0x6a,0xc1,0x5b,0xc2,0x59,0x10,0xe,0x38,0x22,0xb3,0x9,0x25,0x2b,0x38, + 0x20,0xcd,0xb8,0x2e,0xe3,0x4,0xd7,0xe7,0x7c,0xae,0x76,0x89,0x11,0xd7,0x33,0x5f, + 0x28,0xfb,0xe,0xe0,0x66,0x27,0xae,0x5e,0x34,0xeb,0xee,0xc7,0xad,0x90,0x75,0xb7, + 0x89,0x28,0x81,0xb0,0x3e,0xe5,0x7b,0x8,0x48,0xcf,0xad,0xe0,0x12,0xa9,0x7b,0x9e, + 0xc2,0x37,0xca,0xf6,0xc2,0x8f,0x99,0x90,0x4a,0x47,0x20,0x6,0xcb,0x27,0x5c,0xaf, + 0xda,0xdc,0xe3,0xd2,0xad,0x7a,0xc7,0xa4,0x9d,0x84,0xdf,0x51,0x24,0xaa,0xd1,0x56, + 0xa2,0x87,0xdf,0xf4,0x53,0x89,0x7a,0xbb,0x24,0x5e,0xba,0x20,0x5e,0xaa,0xc9,0x16, + 0xf8,0x49,0xf6,0x81,0x6c,0x45,0x2f,0x2c,0x45,0x64,0x6b,0xe2,0x2d,0x67,0x4d,0xfd, + 0x92,0x6c,0x49,0x56,0x93,0xd5,0x8d,0xdd,0x92,0xdd,0x93,0x7d,0xac,0x35,0xf3,0xd8, + 0x19,0xfd,0xde,0xe1,0xcf,0x79,0xec,0xf6,0xf6,0x76,0xe0,0xb1,0x41,0x6,0x19,0xa4, + 0x4f,0x52,0x8f,0xd9,0x5d,0x51,0xcc,0x23,0xad,0x97,0x7,0xff,0x59,0x47,0x48,0x46, + 0x78,0x28,0xf5,0xf5,0x19,0x1c,0x7a,0x7a,0xa,0x69,0x50,0xb4,0x4b,0x85,0xad,0x2, + 0x47,0x89,0xdd,0x82,0x66,0xc7,0x7e,0xdf,0x2f,0xf4,0xc7,0xdc,0xa9,0xfc,0x3d,0xb8, + 0xfe,0x3c,0xe0,0xd0,0x86,0xd0,0x7c,0x7f,0x6e,0xbf,0x6e,0x85,0xcb,0x44,0xcf,0x2d, + 0xb7,0xc4,0xe9,0x67,0x4,0xd4,0x20,0x44,0x97,0x44,0xbb,0x48,0x1c,0x1f,0xb,0xa9, + 0xe4,0xd1,0x68,0xdb,0x1f,0xb2,0x4e,0x27,0x8d,0x0,0xfa,0xfd,0x2,0xad,0xfe,0x34, + 0x58,0x20,0x6f,0x36,0xd8,0xf4,0xc7,0x9a,0x4,0x33,0xec,0xd8,0xf8,0x1e,0xdc,0x87, + 0xbf,0xe0,0xa5,0xb5,0xfd,0xdf,0x93,0xf1,0x77,0x41,0xf4,0xf5,0x77,0xa8,0x32,0xbc, + 0x41,0xd5,0x33,0x2f,0xd8,0x9a,0xe2,0x5f,0xf,0xf7,0xca,0x41,0xc1,0x9d,0x6c,0x3a, + 0xfd,0xe0,0x3,0x83,0x9c,0x24,0x7a,0xfb,0x27,0xf6,0x44,0xf1,0xcc,0xfa,0xbe,0xff, + 0x19,0xee,0xf7,0x85,0xbd,0xfd,0xfe,0x65,0x3a,0xed,0xdf,0x60,0xa8,0x9d,0x34,0xa2, + 0x7,0xd4,0xd3,0xdf,0x7e,0xc4,0x91,0x68,0xbd,0x29,0xb5,0xae,0xd6,0xfb,0xb2,0x98, + 0x6f,0xe9,0x60,0x41,0xe7,0x8d,0xb,0xb2,0xf5,0xd3,0xbe,0x28,0x1e,0xe9,0x22,0xb4, + 0x74,0x1e,0xa9,0x28,0x1f,0xda,0xda,0xd4,0x93,0x5d,0xd2,0xf9,0x64,0x4e,0x76,0x4d, + 0xb6,0x24,0x57,0x6f,0x8a,0xb9,0x7e,0xce,0x6e,0xc9,0xee,0xc9,0x3e,0x56,0x6b,0xfd, + 0xb,0xb9,0x67,0x10,0x20, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk_active.ico + 0x0,0x0,0x3,0xd6, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xbb,0x6e,0x53,0x41,0x10,0x1d,0x2b,0x56,0xa2, + 0x88,0x2,0x17,0x29,0xd2,0xd9,0xd,0x12,0x25,0x7f,0x40,0x2a,0xbe,0x3,0xb9,0x40, + 0x48,0xfc,0x1,0xd5,0x2d,0x29,0xf9,0x84,0x14,0x14,0x11,0x5,0x35,0x74,0xa6,0xe1, + 0x3b,0x22,0x21,0xb9,0x44,0x29,0x29,0x22,0x86,0xdd,0x6b,0x26,0x3e,0x3e,0xcc,0x3e, + 0xee,0xc3,0x89,0x91,0xd8,0x68,0x14,0xfb,0xfa,0xce,0x39,0x73,0xf7,0xee,0x9e,0x99, + 0x59,0x91,0x89,0x4c,0x65,0x36,0x93,0xf0,0x7f,0x21,0xaf,0xa7,0x22,0x2f,0x44,0xe4, + 0xec,0x6c,0xf3,0xfd,0xf3,0xb1,0xc8,0xa7,0x70,0xed,0xfc,0x7c,0xf3,0xfd,0xdd,0xa9, + 0xc8,0xab,0x47,0x22,0x8b,0xc5,0xe6,0xfb,0x55,0xf0,0xfb,0x11,0xee,0x7d,0x1a,0x7c, + 0xc2,0xc7,0x70,0x65,0x73,0x3d,0x8e,0x8b,0xa9,0xc,0x1d,0xa,0xd6,0xdd,0xb7,0x1, + 0xdb,0xc5,0xd0,0xac,0x85,0xfb,0xe3,0x10,0xfc,0xfb,0x83,0xb1,0x5c,0x2e,0x8b,0x56, + 0xf2,0xff,0x70,0x79,0xa9,0x4d,0xd3,0xb4,0x16,0x3f,0xb3,0xd5,0xfa,0xc7,0xff,0xeb, + 0xf5,0xba,0xbd,0x77,0xb5,0x5a,0xdd,0x7d,0x8f,0x9f,0xd,0xc3,0x6,0xfb,0xc7,0x7b, + 0xa2,0xd9,0x88,0xd7,0x10,0x27,0xe2,0xe3,0xfc,0xb5,0xcf,0x45,0xfe,0xc6,0x65,0x3e, + 0x76,0xcd,0xfc,0xe3,0xbd,0x16,0x67,0xc9,0xdf,0xac,0x8b,0xbf,0xc5,0x6f,0x7e,0x7f, + 0xc5,0xff,0xf6,0x4b,0xd2,0x3f,0x5e,0x67,0x5e,0x8b,0x27,0xfe,0xf6,0xe4,0xa3,0xea, + 0x9b,0x6f,0xda,0x62,0xa4,0xfc,0x19,0xc3,0x7c,0xcd,0x22,0x86,0x3d,0x3,0xfb,0xf7, + 0x31,0x5b,0xc3,0x35,0x6b,0xd0,0x5d,0x97,0x7,0x30,0xf4,0x7b,0x78,0x49,0x5f,0x55, + 0xe3,0xf2,0x94,0x4a,0x6b,0x26,0xdb,0x75,0x1c,0x75,0x26,0xc8,0x4d,0xab,0x37,0xa6, + 0x33,0xef,0x8f,0xc7,0xb,0xcf,0xb1,0xfe,0x58,0x8d,0x63,0x5d,0x74,0x28,0xa7,0x47, + 0x3d,0x74,0x29,0xab,0x4f,0x5,0x9d,0x4a,0x69,0x55,0x52,0xaf,0x2a,0x74,0xcf,0xf6, + 0x6c,0x1c,0xb6,0xf7,0xfa,0xe0,0x99,0xe,0xd8,0x1e,0xb6,0xcf,0xc6,0xd1,0x5,0xf, + 0x75,0x9,0x7,0xea,0xab,0xe9,0xa9,0x37,0x52,0x3a,0xcb,0x98,0x9e,0x76,0x7b,0xeb, + 0x25,0xa7,0x9b,0xac,0xbf,0xa8,0x85,0xa8,0xa1,0xa8,0x41,0x29,0x3c,0x9c,0x3b,0xc6, + 0x42,0x4d,0x65,0x4d,0xce,0xe1,0xe1,0xdc,0xb1,0x56,0xd7,0xe2,0xe1,0xfb,0xc5,0x77, + 0xcc,0xf1,0xa2,0xde,0x97,0xf0,0xc,0x93,0xb1,0x52,0xfa,0x5f,0x83,0xe7,0xe5,0x82, + 0x54,0x3e,0xc8,0xbd,0x8f,0xa1,0x66,0x78,0x51,0x5c,0x8c,0x67,0xa8,0xa1,0x66,0xf5, + 0xcd,0x3d,0x87,0x96,0x87,0x4a,0x43,0x7f,0x3e,0x57,0xbd,0x99,0x87,0x3c,0xf5,0x38, + 0xc4,0xdb,0xdd,0xa2,0xdf,0x4a,0xe6,0x3b,0x79,0x2b,0x94,0xd0,0xf2,0x4c,0xb6,0x79, + 0xeb,0xe5,0xe9,0x7e,0x42,0x77,0x6c,0x3c,0xec,0x72,0x4e,0xeb,0x37,0xc,0x2b,0xa3, + 0xd1,0x3b,0x71,0x74,0xb1,0x9c,0xfe,0xf,0xc8,0xa3,0x55,0xf9,0x94,0xf0,0x4d,0x4b, + 0x78,0x8f,0xf1,0x3e,0xde,0xd9,0x7f,0x3,0xf0,0xb9,0xce,0xc7,0x7c,0x81,0x75,0x7e, + 0x1f,0x7c,0xac,0xbb,0x31,0x97,0x71,0xde,0x18,0x82,0x8f,0xd8,0x9c,0x93,0x30,0x27, + 0xe7,0x38,0xda,0xeb,0xb2,0x8b,0xcf,0x39,0x99,0xe3,0x47,0xec,0x9a,0x9c,0x6f,0xba, + 0xcb,0xf8,0xc8,0xe1,0xf5,0x39,0xc8,0x6b,0x6b,0xc9,0xab,0x1,0x72,0xf8,0x5e,0x9e, + 0x65,0x6c,0xcc,0xb5,0x9c,0x17,0x72,0xf8,0x98,0x77,0x71,0xae,0xbc,0x7e,0x11,0x71, + 0x53,0x79,0xce,0x5b,0x3f,0x18,0x37,0xae,0x27,0xf,0x3b,0xe6,0xe3,0x5c,0x9e,0x67, + 0x7c,0x34,0xac,0x1f,0xbc,0x3a,0xc4,0x72,0x7e,0x2e,0xef,0x97,0xf6,0x97,0xe1,0xe3, + 0xfe,0xc2,0x79,0x89,0x1c,0xd1,0x6a,0xe2,0xcf,0xd5,0x16,0xfc,0x7b,0x4a,0x9b,0x52, + 0xf3,0x3f,0xa6,0x71,0x1d,0x33,0x46,0xcd,0xe1,0x3d,0x9f,0xe5,0x80,0x7d,0x71,0x60, + 0x8e,0x19,0xa3,0xce,0xf9,0x17,0xeb,0x9e,0x87,0x1e,0xaa,0x27,0xaa,0xbf,0x8e,0x54, + 0x6f,0x27,0xa1,0x86,0xea,0x98,0xe7,0xc9,0xa2,0xff,0x4a,0xe0,0xf0,0x40,0x37,0x75, + 0xd8,0x22,0xd8,0x85,0x6c,0xeb,0xb0,0x66,0x76,0x5f,0x4f,0xd7,0x8e,0x7d,0xd6,0x67, + 0x65,0xde,0x74,0xfd,0xb6,0xcf,0x38,0xb4,0x58,0xdf,0xf9,0x75,0xe4,0xa0,0xf7,0x6f, + 0xbc,0xc5,0xda,0xc3,0xa9,0x33,0x47,0xdb,0xf3,0x3,0xf8,0xbd,0x3c,0x90,0xab,0x19, + 0xb9,0x76,0xec,0xc4,0x4d,0x31,0xe4,0xf8,0xf9,0xcc,0x94,0x6b,0xb3,0xaa,0x73,0xa1, + 0x9e,0xfc,0xde,0x79,0x45,0xaa,0x36,0x1c,0x9b,0x9f,0x6b,0x8,0x8c,0xc1,0x3b,0xcf, + 0x1e,0x93,0xdf,0xab,0x8f,0x72,0x75,0x71,0xf1,0xdc,0xab,0x3,0x7f,0xaa,0x56,0xe6, + 0xf3,0x36,0x5e,0x17,0x9d,0x63,0x0,0x2d,0xf2,0xf8,0x4b,0xf5,0xba,0x77,0xa6,0x33, + 0x94,0x9f,0xfb,0x19,0xae,0xe7,0x79,0xef,0x71,0xc,0xb8,0xe,0x52,0x71,0xdc,0xfd, + 0x6,0x7d,0x4,0xf2,0x33,0x37,0xd7,0xc6,0xac,0x9,0xde,0x7c,0x99,0xc6,0x7a,0xc3, + 0xeb,0x33,0x98,0xdf,0x3b,0x27,0x2b,0xf1,0x7b,0xf3,0xe4,0xe5,0x1f,0xaf,0xf,0x19, + 0x8b,0x1f,0xfb,0x38,0xae,0xc7,0x73,0x7d,0xd0,0x50,0x7e,0xe4,0x4e,0x9d,0x79,0xe6, + 0xfa,0xa4,0x1c,0x3f,0xee,0x37,0x6f,0xfd,0xe1,0x9c,0xe7,0xce,0x70,0x39,0x6e,0x8f, + 0x1f,0xf7,0x9f,0x8d,0x54,0x4f,0xcb,0xeb,0xae,0x96,0xbb,0x86,0x1f,0xb9,0xf9,0x2c, + 0xdd,0x7b,0x3f,0xac,0xcb,0xc8,0x8f,0xfd,0x63,0xd,0x7f,0x4a,0x83,0x72,0xdc,0xde, + 0xf9,0x34,0xf6,0x98,0x1c,0x43,0xd7,0xf3,0xe5,0x1a,0xfe,0x14,0x37,0xf7,0xb8,0xb5, + 0xfc,0x18,0x43,0xcd,0xb3,0xa7,0xb8,0xb9,0x7,0xee,0xc2,0xef,0xd5,0x1f,0x1e,0x6f, + 0x4d,0xef,0xdd,0x97,0xdf,0x7b,0x1f,0x7d,0x7a,0xf3,0x5c,0x9f,0x6e,0xfc,0xf7,0x69, + 0xc8,0x6f,0x35,0x68,0x9f,0x3e,0x7a,0x88,0x21,0xff,0x43,0xc5,0xc0,0x7d,0xc8,0x3e, + 0xce,0x2,0xfe,0x9f,0x13,0x1c,0xf6,0x50,0xbd,0x9d,0xab,0xde,0x9c,0xa8,0x5e,0x1f, + 0x35,0xf1,0xa8,0x60,0x63,0xa3,0x8f,0x80,0x2d,0xab,0x60,0xd7,0xb2,0x7b,0x50,0xf1, + 0x1b,0x84,0xda,0xd9,0x3, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty_active.ico + 0x0,0x0,0x4,0xe, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xbd,0x6e,0x14,0x31,0x10,0x9e,0x44,0x21,0x52, + 0x44,0x91,0x14,0x41,0x4a,0xc7,0x95,0x94,0x3c,0xc2,0xd1,0x50,0x53,0xc4,0x35,0x54, + 0x88,0xa7,0xc8,0x6d,0x49,0x99,0x47,0xb8,0x82,0x22,0xda,0x48,0xd0,0x45,0x74,0xbc, + 0x41,0xba,0x7d,0x85,0x94,0xbc,0xc2,0xe2,0xdd,0xbd,0xe1,0xec,0x39,0x7f,0x33,0xe3, + 0xbd,0x23,0x38,0xb2,0xbe,0x78,0x6d,0xcf,0x8f,0x7f,0xe6,0xc7,0x47,0x74,0x44,0x27, + 0x74,0x71,0x41,0x11,0x17,0xf4,0xe5,0x84,0xe8,0x3d,0x11,0x5d,0x5e,0x4e,0xed,0x9f, + 0xa7,0x44,0xdf,0xe3,0xb7,0xab,0xab,0xa9,0xfd,0xf5,0x8c,0xe8,0xf3,0x4b,0xa2,0xc5, + 0x62,0x6a,0xdf,0xc5,0x79,0xbf,0xe3,0xd8,0x37,0x71,0x4e,0xfc,0x37,0x7e,0x99,0xbe, + 0xf,0x65,0x79,0x42,0x5a,0xe9,0x1d,0x28,0xeb,0x58,0x9a,0xa6,0xc9,0xc6,0x72,0x5b, + 0x60,0x4f,0x4d,0x52,0x37,0x34,0x78,0xcc,0xe3,0xe3,0x63,0x86,0xdf,0xd6,0xeb,0x2d, + 0xc6,0xf1,0x43,0xa1,0xf4,0x6f,0x4b,0x63,0xec,0x4c,0xf9,0x3d,0x3c,0x3c,0x8c,0xf8, + 0xf4,0xf4,0x34,0xc9,0x65,0xcc,0x4f,0x69,0x48,0x39,0x46,0x5a,0x95,0xfc,0x79,0x2e, + 0xf3,0x1f,0xdb,0x1b,0x1a,0x5c,0x78,0xbe,0x94,0x99,0x31,0xe3,0x9f,0xc8,0xc1,0x35, + 0x59,0x73,0xa8,0x3f,0xa2,0xc9,0x6b,0x5b,0xe2,0xf,0xf6,0x6e,0x87,0x76,0x89,0xbf, + 0xd4,0x1b,0xe9,0x52,0xe2,0xcf,0x63,0x98,0x16,0x42,0x9e,0x5b,0xe2,0x2f,0xf9,0x25, + 0xfb,0x9b,0xd1,0x48,0xfb,0x91,0x7e,0xac,0xc3,0x6a,0xb5,0xca,0x68,0xf0,0xdc,0x94, + 0x3f,0x3a,0xc3,0x3c,0x97,0x51,0xee,0x53,0x69,0x7d,0x25,0xd,0x79,0xb7,0x34,0xfe, + 0x12,0x57,0x2,0x65,0xff,0x50,0xba,0x77,0x7d,0xdf,0x36,0x7d,0x1f,0x68,0xc2,0x6e, + 0x83,0x61,0xf8,0xde,0x46,0xc,0x5,0xbc,0xdf,0xe2,0x60,0x67,0xa2,0xb9,0x19,0xed, + 0xd,0xdb,0x99,0xdb,0x53,0xd2,0x8a,0xc7,0xce,0x30,0xa2,0x9a,0xe9,0xcd,0xdf,0x8c, + 0xb3,0x9b,0xdb,0x1f,0xa7,0x1d,0x72,0xdb,0xa3,0xa,0xbb,0xe0,0xb2,0x4f,0x95,0x76, + 0x2a,0xbb,0x7b,0x7b,0xca,0x27,0xef,0xb1,0x87,0x1e,0xd2,0xf1,0x90,0xf2,0x21,0x7b, + 0x52,0xb2,0xaf,0x5e,0x3b,0x2b,0x91,0xf7,0x59,0xda,0xdb,0x39,0x76,0x57,0x9e,0x1d, + 0x74,0xa6,0x4a,0xf2,0xa1,0xb1,0x68,0x7d,0x4b,0xb6,0x45,0x9e,0x15,0xcb,0xb6,0x4b, + 0xd4,0xec,0x74,0xe6,0xdb,0xa,0xba,0xcb,0x7e,0xcd,0x6e,0x7b,0x51,0xd2,0xac,0xb1, + 0xe3,0x4,0xec,0x8c,0xa4,0xa9,0xad,0x9f,0xa4,0x79,0x73,0x73,0x93,0x21,0xba,0x9b, + 0x25,0xf9,0x24,0x4d,0xf6,0x11,0xc8,0xde,0xd7,0xf8,0x1d,0xcb,0xff,0x78,0x7c,0x8, + 0xa2,0x35,0x47,0xbe,0xb9,0xfe,0x29,0xf3,0x53,0x1f,0x5e,0xf7,0xed,0xfa,0xbc,0xf, + 0xcb,0xf3,0x11,0xbb,0xd,0x72,0x3b,0xc,0xfd,0xed,0x8f,0xe8,0x97,0x3e,0x2a,0xf8, + 0xeb,0x2f,0xe,0xfe,0x2a,0x86,0xd0,0xf4,0x96,0xb6,0x7e,0xeb,0xd3,0x19,0x69,0x45, + 0x3d,0x47,0x6,0xca,0x9a,0xf6,0x57,0xdf,0xcb,0x6c,0xf,0xb0,0x4f,0x1b,0xfb,0xe5, + 0x7e,0xa2,0xfd,0xcd,0xfc,0xdb,0x38,0x70,0x43,0x6b,0xf,0x9f,0x24,0x6d,0x94,0xcb, + 0x9f,0x18,0x7e,0x5,0xd9,0x49,0xa6,0x6d,0xfa,0x97,0x82,0xe,0x55,0xbe,0xeb,0x40, + 0xf2,0x23,0xda,0x30,0xdf,0x70,0xf8,0x49,0xe4,0x7f,0x9e,0x63,0xfd,0x25,0x6f,0x8d, + 0xc7,0x46,0xde,0x9d,0xf3,0xe3,0xf5,0xcd,0xe9,0x19,0x55,0x7c,0x3e,0xa5,0xf2,0xcb, + 0xbc,0xc5,0x5a,0xab,0x9d,0x7b,0x90,0xdf,0x2f,0xd5,0x4f,0x58,0xbe,0xdb,0xf2,0xe1, + 0x9e,0xb8,0x60,0xae,0xcd,0xf0,0xf8,0xb9,0x5a,0xf9,0xd1,0x3e,0x69,0xf2,0x5b,0xf6, + 0xc7,0x3a,0xb,0x25,0xf9,0xb9,0xaf,0x36,0xae,0x40,0x67,0x81,0xa,0xe7,0x1f,0xc5, + 0x3d,0x4,0xec,0xbf,0xe4,0xa1,0xc5,0x41,0x56,0x9e,0xc0,0x71,0x6,0xca,0x49,0xe5, + 0x3e,0x95,0xe4,0x47,0xb4,0xa5,0x7f,0x97,0x31,0x83,0xa4,0x5d,0x23,0xbf,0x15,0x43, + 0xa0,0xf3,0x95,0xac,0xa5,0xe9,0x63,0x2c,0xf9,0x3d,0xb4,0xad,0xb5,0xf2,0xc6,0x40, + 0x9e,0xf5,0xb7,0xe2,0x2b,0x4b,0xfe,0x9a,0x38,0x4b,0xc6,0x5b,0xa8,0x5d,0x8c,0xbb, + 0xc2,0x8b,0x18,0x2f,0x1d,0xf7,0xe1,0xfa,0xa8,0x6f,0xef,0x28,0xc6,0x59,0x94,0xe3, + 0xf0,0x7d,0xe8,0x1f,0xc7,0xb5,0x11,0x83,0x8a,0x5d,0xd6,0xbe,0x1f,0xe3,0xb0,0x45, + 0xac,0x4b,0xda,0xc6,0x61,0xcd,0x5,0x69,0x45,0xbd,0x6f,0x33,0x51,0xd6,0xd2,0xb8, + 0x72,0xfc,0xa5,0xac,0x9f,0x81,0x53,0xc5,0xf1,0x5b,0x9a,0x6b,0xba,0xcf,0x11,0xb2, + 0xa7,0x2,0x7b,0x33,0xbe,0x6b,0x76,0x64,0x80,0xf9,0x3,0xf2,0x7,0xd5,0xb9,0x3f, + 0x8e,0x71,0x4c,0xfd,0x2d,0xff,0x52,0x15,0xfb,0x38,0xe3,0xdc,0xda,0x3d,0xa9,0xe2, + 0xed,0x94,0xc1,0x8b,0xd5,0x6b,0xaf,0xc4,0x99,0xff,0x43,0x7f,0xcb,0x37,0x3e,0xa7, + 0xfe,0x32,0x6,0xf1,0xca,0x70,0x48,0xfd,0x8b,0x79,0x8f,0x72,0x2f,0x3c,0x71,0xb9, + 0xf7,0xec,0x21,0xfd,0x51,0x6c,0xe4,0x7e,0x3b,0xc5,0xfc,0xcd,0x38,0x52,0xca,0xa0, + 0xbe,0xb9,0x25,0x79,0x43,0x89,0x6f,0x9a,0x47,0xd4,0xd8,0x3f,0xf4,0xbb,0x7,0x92, + 0x41,0xcd,0x5f,0x62,0x9d,0x13,0x47,0x5b,0xfd,0xde,0xfc,0xc6,0x93,0x27,0x58,0x6f, + 0x9,0x96,0xc,0xde,0x9c,0xe0,0x5f,0xea,0x2f,0xbf,0x23,0x1d,0x4b,0x7d,0xfb,0xe6, + 0x62,0x56,0x8e,0x36,0x47,0x7f,0xeb,0xfc,0xd7,0xae,0x53,0x4d,0x9e,0x28,0xcf,0xbf, + 0xf5,0xee,0xed,0x3e,0xa3,0xe,0xff,0xef,0xb2,0x3d,0xb4,0xeb,0x37,0x90,0xdd,0xf4, + 0xfc,0xce,0x58,0x9b,0x67,0x4a,0xb4,0x64,0xd0,0xf2,0x8,0xcb,0xf7,0x58,0x79,0x29, + 0x23,0x92,0x41,0xd3,0x1f,0xad,0xb9,0xe4,0x2d,0xf3,0x55,0x46,0xf9,0x5e,0x6e,0xd9, + 0x6e,0x4d,0x7f,0xc4,0x1b,0xe5,0xb5,0x28,0x77,0x43,0xeb,0xa0,0xe9,0x6f,0xbd,0x81, + 0x21,0xde,0x28,0xb7,0xf3,0xfc,0xbe,0x21,0xe5,0x42,0xef,0x23,0xb5,0xfa,0xef,0x73, + 0xff,0x6b,0x79,0x5b,0x6f,0xb,0x25,0xfd,0xa5,0xc,0x87,0xda,0xff,0x39,0xbc,0xbd, + 0xf1,0x6e,0xed,0xfe,0xcf,0xb9,0xff,0x73,0x65,0xa0,0x19,0xfb,0x5f,0xeb,0xc7,0xd0, + 0xfb,0x82,0xf5,0xee,0x50,0x90,0x95,0xba,0x70,0xfd,0xaa,0x6d,0xd7,0xc7,0x21,0x2c, + 0x8f,0xda,0xb6,0x21,0xc6,0x2e,0x10,0x4d,0x6d,0xc6,0xb4,0x7f,0x18,0x3f,0xcc,0x6b, + 0xdb,0x10,0x4b,0xd,0x76,0x79,0xfb,0xfe,0xf,0x46,0x43,0x54,0x4d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty.ico + 0x0,0x0,0x3,0x4b, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x5a,0xbd,0x6e,0x1b,0x31,0xc,0x66,0x81,0x20,0x40, + 0xd0,0xc5,0x43,0x86,0x8c,0x1e,0x3b,0xf6,0x11,0x32,0xb5,0x63,0x27,0x21,0xa3,0x3b, + 0x15,0x7d,0xa,0x9f,0xc7,0x8e,0x7d,0x8c,0x42,0x6,0xea,0x35,0x93,0xed,0x97,0xf0, + 0x4b,0x78,0x28,0xbc,0x78,0x31,0xe0,0xa8,0x94,0xaf,0x44,0xce,0xac,0x28,0x51,0x3f, + 0x17,0x1,0xc1,0x97,0xbb,0x88,0xe4,0xc7,0x1f,0x51,0x3c,0x20,0x0,0xef,0xe0,0x6, + 0x26,0x13,0x40,0x9c,0xc2,0xf7,0x1b,0x80,0x4f,0x0,0x70,0x7f,0xdf,0x3f,0x3f,0xdf, + 0x2,0xfc,0xc6,0x77,0xf,0xf,0xfd,0xf3,0x8f,0x3b,0x80,0x6f,0xef,0x1,0xa6,0xd3, + 0xfe,0xf9,0x17,0xca,0xfd,0xc1,0xbd,0x1f,0x50,0x6,0x7f,0xc5,0x37,0xfd,0x7b,0xbf, + 0x1e,0x6f,0x20,0x67,0x39,0x1,0x93,0x32,0x5d,0xd7,0x5d,0x70,0x3e,0x9f,0x5f,0x3d, + 0xc7,0x74,0xd0,0x5e,0xc2,0xed,0x76,0x7b,0xc1,0xcd,0x66,0x73,0xf5,0x4c,0x7f,0xf, + 0xc9,0x3a,0x5c,0x31,0x24,0x5d,0x21,0x1d,0xb4,0x87,0xfe,0x46,0x7b,0xd7,0xeb,0xf5, + 0x15,0xd2,0xfb,0xa1,0x2f,0x5a,0x59,0x42,0xf2,0xc5,0x8b,0x72,0x99,0x94,0x2c,0xd9, + 0x1a,0xc4,0x34,0xdb,0xfe,0xd0,0x7,0xc9,0xbe,0x84,0xdc,0x56,0x6b,0xfb,0xbc,0xe, + 0x38,0x86,0x72,0xc8,0xf3,0xcb,0xed,0x48,0x38,0xb4,0xcf,0xe3,0x2b,0x21,0xed,0x8b, + 0xf9,0x3f,0xcc,0x6f,0x8,0x35,0xf9,0x97,0xfc,0xf,0xc5,0x5f,0xda,0x4b,0x35,0xc2, + 0x71,0x28,0x7b,0x9e,0x39,0xb7,0x5f,0x39,0xb7,0x7b,0x72,0xce,0x2e,0x11,0xd,0xa2, + 0x75,0xce,0x68,0x10,0xf7,0xfb,0x3e,0x83,0xed,0xe6,0xd2,0x6f,0xa8,0xcf,0xfc,0xbc, + 0x85,0x92,0x55,0xd2,0x6f,0x82,0x3a,0x4a,0xfa,0xf,0x5f,0xda,0x7e,0xa4,0xd1,0xcd, + 0xeb,0x53,0x42,0x8d,0x4e,0x89,0x4f,0xaa,0x5e,0x87,0xfd,0x82,0xeb,0x4a,0x9d,0x57, + 0x7e,0x36,0x62,0x3a,0xa5,0xb3,0x98,0xd2,0x19,0x38,0x33,0xff,0xd9,0xd3,0x62,0x48, + 0xa7,0xd4,0x3f,0xb4,0x3c,0x69,0x5f,0xa8,0xef,0x96,0xf2,0xd3,0xf4,0xc1,0x5c,0x7e, + 0xa1,0xbe,0xa4,0xed,0x87,0xbc,0x96,0xde,0x9a,0x5f,0xaa,0xf7,0x4b,0xbd,0x32,0xc4, + 0x2f,0xf7,0x2e,0x18,0xf2,0x3b,0x1c,0xe,0xc1,0x7a,0x4f,0xdd,0xd,0x52,0xbc,0x35, + 0xf1,0x3,0xb9,0xff,0x25,0xe3,0xa7,0xbd,0x3b,0xf8,0x1d,0x12,0x3b,0x73,0x9c,0x1f, + 0xbf,0x43,0x16,0x8b,0x45,0x92,0x1f,0x2d,0x6d,0x5e,0x25,0xbc,0x18,0xc1,0xfb,0xe9, + 0x84,0xf7,0xcd,0xd1,0x74,0x6e,0x6f,0x37,0x78,0x4f,0x75,0x78,0xf,0x79,0x9c,0x21, + 0xae,0xf0,0x3e,0x92,0xf0,0xcb,0xd5,0xb3,0xdf,0xef,0xe5,0xfd,0x7d,0x85,0x23,0x34, + 0x7c,0x84,0xd7,0x7b,0xeb,0xeb,0x1d,0x67,0x9e,0xb5,0xa4,0xfc,0x55,0xeb,0xa4,0x58, + 0x73,0xac,0xb1,0xc5,0x75,0x51,0x2d,0x70,0xc,0xd8,0x4a,0x93,0x66,0xf5,0xa5,0x45, + 0x8d,0x8d,0x52,0xdd,0x1e,0xff,0xf9,0x22,0xda,0x90,0x74,0x4b,0xe7,0x3c,0xc7,0xf, + 0x49,0x26,0x15,0x7f,0x8d,0xd,0x49,0x47,0xa9,0xee,0x41,0xce,0x45,0xfe,0xa5,0xba, + 0x63,0x3d,0x87,0xeb,0xae,0xc9,0x35,0xa9,0x96,0x78,0x6a,0x73,0xc9,0xf7,0x87,0x62, + 0x94,0xe2,0x5f,0x73,0x1e,0x52,0x71,0xd6,0xda,0x28,0xe1,0x5f,0x1a,0xab,0x1c,0xfe, + 0x5a,0x1b,0x35,0xfc,0x4b,0xfd,0x88,0xf1,0x97,0x7a,0xb2,0x84,0xb1,0x33,0x56,0x5b, + 0xe7,0x2d,0xe2,0x9f,0x8b,0x1a,0xfe,0xda,0x79,0x49,0x92,0xcf,0xe1,0xf,0x89,0xf9, + 0xa9,0xa6,0x7e,0x52,0xb9,0x25,0x1b,0x11,0x4e,0xc9,0x1c,0xa7,0x6c,0xc4,0xf8,0xd3, + 0xca,0xad,0x49,0x85,0x5f,0xe0,0x76,0xce,0xbd,0xe0,0xbc,0x74,0xc6,0xb9,0xe9,0x84, + 0xf3,0xd3,0xd1,0x7c,0xc6,0xf9,0x69,0x89,0x73,0x94,0xc1,0x79,0x8a,0xd0,0xe2,0x7c, + 0x95,0x87,0x5e,0xce,0xeb,0xf1,0x73,0xd8,0x14,0x7f,0x1e,0xe1,0x75,0xe,0x5b,0x4c, + 0xb8,0x67,0x45,0x2b,0x55,0x17,0x63,0xac,0x2b,0x1b,0xda,0xba,0x69,0x69,0x5b,0x7b, + 0x5e,0x5a,0x72,0xa9,0xed,0x31,0x35,0x1c,0x5a,0xf7,0xce,0x1c,0xe,0x63,0xf6,0xed, + 0x5a,0xdb,0xb9,0xbd,0x36,0x87,0x43,0xee,0xac,0x51,0xba,0x2f,0xc4,0xa1,0xf5,0x7d, + 0x96,0x9a,0xcb,0xc7,0xb4,0x5d,0xc2,0x41,0x3b,0x1f,0xb5,0xe2,0x30,0xcc,0x41,0x6a, + 0x96,0x69,0x7d,0x1e,0x86,0xfe,0x6b,0x6d,0x8f,0xc9,0xa1,0xd5,0xf7,0x61,0x49,0xe, + 0x72,0xfd,0x6f,0x15,0x87,0x9c,0x39,0xb5,0x96,0x43,0x8d,0xff,0xad,0x73,0x51,0xe2, + 0x7f,0x2d,0x87,0x16,0xfe,0xb7,0x8e,0x43,0xcd,0x77,0x4a,0x2e,0x87,0x96,0xfe,0xb7, + 0x8a,0x43,0x8b,0xef,0x34,0x2d,0x87,0x31,0xfc,0xaf,0x8d,0x83,0xc6,0xff,0x56,0xdf, + 0x1b,0x12,0x87,0x98,0xff,0x63,0x63,0x8b,0xfc,0xd7,0xa2,0xc6,0xff,0xd4,0xbc,0xa7, + 0xc5,0x16,0xfe,0x43,0xfa,0xdb,0x2b,0x88,0x2d,0xeb,0xbf,0xe0,0x5b,0xb7,0x99,0xff, + 0xa5,0xf5,0xaf,0x99,0xc1,0xf8,0x9e,0xb7,0xf4,0x9f,0x56,0xab,0xf3,0x9e,0xc1,0xd, + 0xdc,0x71,0xd6,0xff,0xc3,0x81,0x31,0xdd,0x8b,0xb5,0x9b,0xb3,0x31,0xb3,0x93,0xb5, + 0xab,0xa3,0x31,0x4f,0x7b,0x6b,0x97,0x3b,0x44,0xdb,0xa3,0xf1,0x68,0x7a,0xb4,0xb5, + 0xe8,0xf5,0x79,0xfd,0x7f,0x1,0x3e,0x2f,0xae,0x2a, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/acpi_shutdown.ico + 0x0,0x0,0x3,0x74, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x5a,0x3b,0x6e,0x1b,0x41,0xc,0x7d,0x82,0x5,0xb, + 0x46,0xa,0xa9,0x70,0xe1,0x4e,0x2a,0x53,0xe6,0x6,0x76,0x95,0x73,0xa4,0xa,0x2, + 0xf8,0x10,0x56,0xba,0x94,0x39,0x46,0xaa,0xd4,0x49,0xa7,0xa3,0xe8,0x4,0x81,0x4a, + 0x1,0x31,0x3c,0x99,0xd1,0x7a,0xbd,0xf3,0x21,0x39,0xe4,0xec,0x2a,0x71,0x11,0x2, + 0x84,0xad,0x5d,0xf2,0x3d,0xee,0xcc,0xf0,0xb3,0xb2,0x81,0x19,0xe6,0x58,0xad,0xe0, + 0x7f,0x6e,0xf0,0x69,0xe,0xbc,0x7,0x70,0x7d,0xdd,0x7d,0xfe,0x71,0x9,0x7c,0xf7, + 0xd7,0x6e,0x6e,0xba,0xcf,0x5f,0xae,0x80,0x8f,0x6f,0x80,0xcd,0xa6,0xfb,0xfc,0xcd, + 0xfb,0xfd,0xf2,0xb6,0x6f,0xbd,0x8f,0xff,0xd5,0x5f,0xe9,0xae,0x7,0xb9,0x9b,0x43, + 0x2b,0x8e,0x51,0xa5,0xdf,0x4f,0x46,0x25,0x9c,0xd8,0xce,0x31,0x9a,0xe0,0x24,0xbe, + 0xf7,0xf7,0x9c,0x2d,0x85,0x99,0x63,0xc4,0xfe,0x9d,0x7d,0x2e,0x29,0x4e,0xec,0x9f, + 0x73,0xe3,0xd9,0x3e,0x5d,0xbb,0x1,0x23,0x8f,0x21,0xf6,0xa7,0xec,0xb8,0x7b,0x35, + 0xff,0x72,0xed,0x6d,0xfe,0xc8,0x9e,0xfd,0x6f,0xf8,0xbb,0x97,0x6b,0xa5,0x7f,0xbe, + 0x8f,0xdc,0x1e,0xa4,0x6b,0x1e,0xf3,0x77,0x5a,0xdb,0xff,0xf4,0x59,0xe8,0xfd,0xe0, + 0xcf,0x20,0x15,0x47,0xcf,0x3b,0xdc,0x97,0x73,0xa0,0xb7,0xcb,0x35,0xda,0xcb,0x8a, + 0xb0,0xf9,0x57,0xc8,0x71,0xed,0xdc,0x7e,0xe1,0xdc,0xee,0xc2,0xb9,0xed,0xac,0x53, + 0x2e,0xff,0xfa,0xfb,0xc1,0x36,0xf8,0x4,0xdf,0x50,0x67,0x7c,0xb9,0x39,0xd5,0x9b, + 0xbe,0xce,0x7c,0xbd,0xac,0x47,0x98,0x9,0xb1,0x5e,0xaa,0x7a,0xc3,0xe0,0xb4,0xd4, + 0x1f,0x9,0x47,0x55,0x8f,0xc4,0x3d,0x2d,0xcf,0x2e,0xa5,0xb5,0x3a,0xd7,0xe1,0xe5, + 0xf9,0x72,0xf8,0xed,0x48,0xe5,0xf3,0xa5,0x8e,0x85,0x6c,0x2f,0x74,0x98,0x69,0x1e, + 0xe,0xf6,0x74,0x3d,0x4b,0x6d,0xe4,0x9c,0xa6,0xf9,0x4b,0xcc,0xd2,0x8e,0xae,0x53, + 0x75,0x2c,0xce,0x56,0x8b,0xc7,0xed,0x6d,0x2b,0x1e,0x57,0x8f,0xfe,0x1d,0x5e,0x6a, + 0x47,0xe1,0x49,0xfb,0x21,0x9d,0x17,0x19,0x8f,0xc6,0xa2,0xcf,0x73,0xd,0xaf,0x25, + 0x47,0x64,0x3c,0x9,0x6b,0xc0,0xb3,0xf4,0x1b,0x6b,0xdf,0x88,0xf3,0x6b,0xd0,0xf6, + 0x3e,0x32,0xbe,0x1f,0xd1,0xb8,0x9a,0xfe,0xd4,0xcb,0x53,0xe8,0x37,0xbe,0xf7,0xec, + 0xf1,0xe0,0x76,0xb8,0x3d,0xe9,0x16,0xeb,0x93,0x2,0x4b,0x52,0xfb,0xfb,0xbd,0x7d, + 0xf0,0xd,0x18,0x1,0x2b,0xf4,0x2b,0x3f,0x42,0xe3,0x1d,0x86,0xbe,0xf5,0xe1,0xca, + 0xfe,0x24,0xcf,0x42,0xac,0x77,0x53,0xff,0x62,0x30,0xab,0xfd,0xcc,0xc8,0xc5,0xd5, + 0xa6,0x5c,0xb,0x2e,0x15,0x76,0x7d,0x16,0xa7,0x78,0x35,0x1c,0x39,0x76,0x87,0xc3, + 0x9,0xdd,0x57,0xf9,0x1c,0xa2,0xe6,0x78,0x8d,0xb4,0xd4,0x90,0x12,0xa3,0x7c,0x5f, + 0xd0,0x73,0x94,0x33,0x78,0x89,0x4b,0x9f,0x1d,0x9a,0x43,0x87,0x2f,0x9f,0xa1,0x81, + 0x47,0xc6,0xe7,0xb1,0xcb,0x73,0xc4,0x9d,0x51,0x89,0xe3,0xb5,0xe0,0x4b,0xb3,0xde, + 0x14,0xf8,0x5c,0xff,0x78,0x4d,0xf8,0x12,0x47,0x89,0xd1,0xf7,0x3c,0x89,0xb7,0x7e, + 0xfe,0xe5,0xfe,0x4f,0xdb,0xd6,0xe7,0xa,0x2b,0xbe,0x3e,0x7f,0x53,0xe,0xd,0xbe, + 0xae,0x96,0xd2,0x1c,0xb6,0xf9,0x88,0xc3,0xae,0x71,0x48,0xf8,0x5a,0x6c,0x89,0x43, + 0x5a,0x6b,0xb,0x76,0xca,0xa1,0x9d,0xa7,0xe4,0xd9,0x8c,0xe7,0xd0,0xcf,0x57,0x2d, + 0x33,0x16,0xcd,0x65,0xc5,0x74,0x9f,0x9d,0x7b,0xf4,0xb3,0xd3,0xd1,0xcf,0x51,0x7, + 0x3f,0x53,0xed,0xb1,0xf0,0xb3,0xd4,0x85,0x9f,0xab,0x66,0x2f,0x8a,0x62,0x6d,0x3a, + 0x8d,0x6d,0x82,0x4f,0xf0,0xd,0x18,0x1,0x2b,0x60,0x6,0xec,0x30,0x87,0x6d,0xbc, + 0xde,0x61,0x98,0xc3,0xb6,0xab,0x71,0x4f,0xdb,0x87,0x5e,0xd1,0x73,0x48,0x84,0xcf, + 0xad,0xf9,0xd8,0xd9,0x4d,0xe2,0xd5,0xcc,0x74,0x54,0x3f,0x1a,0x13,0x7,0xcf,0xc9, + 0x9f,0x6b,0x2e,0x16,0x7b,0xe,0xe5,0x78,0x7c,0xfe,0xd0,0xf9,0x36,0xb6,0x46,0xe4, + 0xdc,0x31,0xf,0x27,0x79,0x2c,0xd3,0xd4,0xc0,0xb4,0xf,0x6b,0xc5,0x1e,0xc3,0x74, + 0xdc,0x6d,0x31,0x50,0x73,0x15,0xcd,0xd,0x26,0xf7,0x75,0x31,0x68,0x7a,0x28,0xcd, + 0x3d,0x70,0xc9,0xb9,0x6f,0x8f,0x21,0xff,0x3b,0x85,0x6,0x43,0xce,0x37,0xd9,0xdf, + 0xc6,0xaf,0xe3,0x96,0xd7,0x8f,0xe7,0xaf,0xaf,0xfd,0xf4,0xfc,0x71,0xc,0x53,0x3f, + 0xbb,0x75,0xd,0xda,0xf8,0x75,0xb5,0xf7,0x3c,0xfc,0x54,0xd,0xd6,0xd4,0x8e,0xe9, + 0x9e,0xbf,0x7c,0x37,0xf9,0xcf,0x3f,0x5,0xbf,0x2d,0x77,0xb4,0xf7,0x25,0x9b,0xb6, + 0xfa,0x33,0x96,0x7f,0x6c,0xfd,0x95,0xf8,0xc7,0xd6,0x5f,0x7d,0xfc,0x5a,0xfe,0x29, + 0x7a,0x60,0x2b,0xbf,0x8e,0x9b,0xe2,0x4f,0xb1,0x5a,0xf8,0x6d,0xf3,0x87,0x1c,0x83, + 0x95,0xdf,0xce,0xad,0x8b,0xc1,0xc2,0x6f,0xe7,0xae,0xc5,0x60,0xd9,0xe3,0x56,0xee, + 0x34,0x6,0xa9,0xb7,0xa5,0xca,0xbf,0xa7,0xd8,0xb9,0x87,0x18,0xe2,0x38,0x34,0xdf, + 0xfb,0xd1,0xef,0x29,0x63,0x85,0x7e,0xc7,0x39,0xef,0x77,0xb,0xf5,0x58,0x68,0xb5, + 0x89,0x3b,0x2c,0x4f,0xff,0x7c,0xf0,0x4,0x3c,0x3c,0x2,0xb7,0x47,0x60,0x7d,0x0, + 0x96,0x7b,0x60,0xb1,0x3,0x2e,0x82,0x6e,0x81,0x59,0xaf,0x35,0xbc,0xd8,0xb6,0xf7, + 0xf,0x58,0x1,0x33,0x60,0x7,0x8e,0xc0,0x75,0xfa,0x87,0x7,0xcf,0xfd,0x7,0xbd, + 0x87,0xe1,0x91, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cad.ico + 0x0,0x0,0x3,0xf6, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x40,0xc,0xa6,0xe1,0x20,0x46, + 0xd0,0xc1,0x1e,0x32,0x64,0xb3,0xc7,0x8e,0x7d,0x83,0x64,0xea,0x73,0x64,0x2a,0xfa, + 0x16,0xb9,0x0,0x45,0xd1,0xb1,0x8f,0xd1,0xa9,0x73,0xb2,0xf9,0x51,0x82,0x3e,0x40, + 0xe0,0x4e,0xd,0x50,0xc7,0x57,0x9e,0x54,0x46,0x14,0x45,0x9e,0x78,0x92,0xdc,0x2e, + 0x21,0x40,0xc4,0x3a,0x91,0xdf,0x77,0xba,0x3b,0xf1,0x27,0x2,0x98,0xc1,0x9,0xac, + 0x56,0x80,0x7f,0x37,0xf0,0xf1,0x4,0xe0,0x3d,0x0,0x9c,0x9f,0xd7,0xd7,0x77,0xa7, + 0x0,0xdf,0x71,0xec,0xe2,0xa2,0xbe,0xfe,0x72,0x6,0xf0,0xe1,0xd,0xc0,0x66,0x53, + 0x5f,0x7f,0x43,0xbf,0x47,0xb4,0x7d,0x8b,0x3e,0xf8,0x13,0x47,0xea,0xf1,0x24,0x57, + 0x27,0x30,0x44,0xa2,0xd0,0x22,0xbf,0x10,0xda,0xea,0xc1,0xe1,0xf6,0xf7,0xf7,0x6d, + 0x15,0x38,0xa6,0x7f,0x8c,0x8d,0xf,0x17,0xc2,0xb0,0xfc,0x35,0x5f,0x89,0x63,0x61, + 0x84,0x10,0xa2,0xf4,0x97,0x5a,0xe2,0xcf,0xf9,0xc6,0xf8,0x93,0x8f,0x67,0xfe,0xdb, + 0xed,0xf6,0x5,0x43,0xfa,0xf9,0xd6,0x2f,0x30,0x7f,0xed,0xf9,0x6b,0x15,0xfe,0x9d, + 0x33,0x46,0xfb,0x4c,0xf6,0xa4,0x6c,0xff,0x5f,0xf8,0xa0,0x3a,0x67,0x21,0xd2,0x6f, + 0xba,0x6,0xfd,0xfc,0x75,0xe6,0x9b,0x24,0x3d,0x77,0xfd,0xec,0xd,0x9e,0x36,0x7e, + 0xc,0xff,0x74,0x9f,0x24,0xfd,0x26,0x7f,0x6d,0xdc,0x5e,0xf3,0xc0,0xd7,0x20,0x3b, + 0xce,0x25,0x2e,0x63,0xdc,0xcf,0x63,0x7c,0x9a,0xd5,0xba,0xc3,0x65,0x7e,0xe0,0x9a, + 0xc6,0x50,0x3f,0xa1,0xd,0x2c,0xdb,0xfa,0x79,0x1d,0x63,0x8a,0x33,0x18,0x6e,0xaa, + 0x78,0x43,0x71,0xe6,0xeb,0xa9,0xc6,0xe4,0x12,0x79,0xe,0x4a,0x63,0x4e,0xb,0x47, + 0xee,0x7d,0x49,0xc,0x22,0x91,0xb1,0x48,0x9e,0x47,0x71,0x26,0x7b,0xe3,0x5a,0x3b, + 0xb6,0xe8,0xf3,0x23,0x9b,0x92,0x38,0x47,0x58,0x9a,0x90,0x9d,0x37,0xee,0x91,0x5d, + 0x12,0xb6,0x56,0x2f,0x63,0x1e,0x4c,0xf9,0xac,0x64,0xa7,0xed,0x45,0x29,0x9e,0x5c, + 0x7f,0xc9,0x51,0x82,0xa7,0xed,0x81,0xb6,0xe,0x5e,0x3c,0xee,0xc3,0xfd,0x78,0xdc, + 0x1b,0x83,0x47,0xbe,0xcd,0x5c,0xcb,0xf7,0x98,0xef,0xad,0x26,0x7c,0x9f,0x4,0x56, + 0xeb,0x2c,0x48,0x4e,0xf1,0x6e,0xb5,0xec,0xe4,0x79,0x96,0x71,0xbb,0xd1,0xf6,0xbe, + 0x5a,0xef,0x87,0xcc,0x21,0x32,0xde,0xf2,0xb8,0x6b,0xe5,0x12,0x2b,0xa7,0xf4,0xe1, + 0x35,0xf3,0xce,0xc6,0x17,0x28,0xc5,0xcb,0xdd,0xff,0x17,0x78,0x3c,0xdf,0x90,0x58, + 0xf9,0x48,0xde,0xd7,0xcf,0x9b,0xdc,0xdb,0x7c,0x7e,0xca,0xe6,0xa9,0xdb,0x18,0xf, + 0x70,0x13,0xf7,0x70,0x19,0x9f,0x60,0x5d,0xe9,0xe,0x93,0x90,0xa6,0xe9,0x5e,0x40, + 0x5,0xb4,0x5,0xf4,0x49,0xc7,0x9c,0xeb,0xed,0x6d,0x9d,0xb7,0xb0,0x84,0x86,0x77, + 0xd0,0xe4,0xad,0xeb,0x33,0x8d,0xb9,0x48,0xa6,0xca,0x5f,0x2a,0xee,0x14,0xf9,0x2c, + 0x87,0x6b,0xd5,0xac,0x53,0xe4,0x4d,0x2b,0x77,0xca,0xf8,0xed,0xc9,0xa3,0x84,0xef, + 0xc9,0xa5,0x56,0x1e,0x1a,0x82,0x6d,0x49,0x29,0x87,0x65,0xcf,0xe3,0x2f,0xa9,0xc6, + 0xe1,0xcd,0xe3,0x72,0xf,0x9,0x53,0xcb,0xbf,0x5e,0xe,0xb,0x9f,0xef,0x9f,0xc6, + 0x3b,0x14,0x3f,0x77,0x5e,0xc6,0xe2,0xf7,0xd5,0x5f,0x63,0xf1,0xad,0xdc,0x2d,0x9f, + 0x6f,0x2a,0x7c,0x2d,0xcf,0x69,0x35,0x82,0xf7,0xc,0x71,0x7c,0x8d,0xa7,0x0,0x3b, + 0x5b,0x37,0xd0,0x98,0x5c,0x2b,0xfe,0x3e,0xf0,0x73,0x55,0x52,0x47,0xf0,0x33,0xd9, + 0x57,0x9f,0x68,0x73,0xa7,0x3c,0xda,0xe5,0xb0,0xcf,0xa3,0xd4,0x5c,0xef,0x4b,0xf8, + 0x49,0xba,0xb9,0x1a,0x4c,0x1e,0xad,0xa7,0xce,0xd5,0x31,0x3a,0x7e,0xf3,0x2c,0xce, + 0xfa,0xc8,0xac,0x43,0x72,0xf8,0xcd,0xda,0x59,0x31,0xba,0xb1,0x1b,0x83,0xef,0xb1, + 0xb3,0xf0,0xad,0xda,0x46,0xab,0xa7,0x72,0x76,0x1a,0xbe,0xe6,0xc3,0x7d,0x9,0xdf, + 0x63,0x27,0xf1,0x89,0x23,0xa7,0xa5,0x76,0x5c,0xe2,0xc3,0xd,0xbe,0xdc,0x6b,0xac, + 0xbd,0x16,0x58,0x7b,0xcd,0x2b,0x7d,0x82,0x59,0xa5,0x3b,0xbc,0xad,0x69,0xba,0x17, + 0x50,0x1,0x6d,0x6b,0x5d,0xa0,0x2e,0x3b,0x1a,0xae,0xd7,0x55,0x1d,0xb6,0x41,0xbd, + 0x82,0xa6,0xe,0xb,0x2b,0x6d,0x26,0x93,0xc8,0xb1,0xea,0x33,0x17,0xa7,0xa3,0x7e, + 0x9b,0x74,0x2e,0x56,0x1c,0xb2,0xf2,0xb6,0xb7,0xf6,0xf2,0x72,0x5b,0x31,0xcb,0xca, + 0xe5,0xde,0xfa,0x6c,0x28,0xb7,0xd6,0xef,0xe7,0x6a,0x8a,0xa9,0xb9,0x65,0xce,0x3c, + 0x1c,0xe,0x6a,0xcd,0x31,0x74,0xe,0x7d,0xdc,0x39,0x99,0x62,0xe,0x39,0x8c,0x24, + 0xcf,0xbf,0x1e,0xd5,0xf7,0xcf,0x9a,0x43,0x1,0x7f,0xab,0xae,0xf0,0xd6,0xbe,0xed, + 0x1a,0xf8,0xd0,0x99,0x83,0xaf,0x57,0x8,0x59,0xee,0x5c,0x6d,0xdc,0x57,0x63,0xfa, + 0x7a,0x89,0x60,0xee,0x9f,0x57,0x8f,0xc5,0xdf,0xd7,0xef,0x1d,0x93,0xdf,0xdb,0xf, + 0x1e,0x8b,0xdf,0xaa,0x67,0xff,0x27,0x7f,0x9e,0xfb,0x79,0x14,0xbf,0xf5,0xee,0x70, + 0xd9,0xff,0xfc,0xd1,0xa9,0x33,0xab,0xeb,0xe7,0xdf,0x83,0xdf,0x7f,0xf,0x3f,0x28, + 0x71,0x26,0xd7,0xbf,0xc,0xe1,0xe7,0xdf,0xcd,0xac,0x98,0x23,0xe7,0xc1,0xe7,0xa6, + 0xc5,0x6,0x2f,0x3f,0xaf,0x1b,0xe5,0x1c,0x64,0x6f,0x23,0xeb,0xd,0x2b,0x2e,0x95, + 0xc4,0x7e,0xab,0xf7,0xf2,0xd4,0x1b,0xb9,0x78,0xa4,0x50,0x59,0xf5,0x5b,0xa7,0x86, + 0x1a,0x1a,0xf,0x73,0x7d,0x4e,0xbd,0x5e,0xbd,0x35,0x74,0xab,0xdf,0xc9,0xc5,0x3d, + 0x2d,0x4e,0x5a,0x6b,0x6e,0xf7,0xa1,0x6d,0x6e,0xd9,0xaf,0x68,0xb5,0x8e,0xd5,0xdf, + 0xfd,0x7d,0x76,0x73,0x8f,0x49,0x64,0x7f,0xe5,0xed,0xc7,0x7a,0xea,0xdf,0xde,0x33, + 0x36,0x96,0xbf,0xa4,0x2f,0x7c,0xe5,0x7f,0xe5,0xd7,0xf8,0xfb,0x7a,0x74,0xcf,0xff, + 0xb,0x34,0x7b,0xf,0x7f,0xe,0x8b,0x63,0x12,0x7f,0x89,0x7d,0x1f,0x3f,0xcd,0xc1, + 0xa3,0x43,0xed,0x73,0x12,0xd3,0x7,0x20,0xfa,0xf8,0x93,0x3e,0xf2,0x3c,0xc0,0x22, + 0x6e,0x61,0x5e,0xfd,0xa3,0x1,0xf5,0x0,0x30,0xdb,0xa3,0x9d,0xa1,0x33,0xa6,0x73, + 0xb4,0x5d,0x84,0x15,0x2c,0xf1,0xd6,0x1a,0xf5,0x12,0x7a,0xf2,0x49,0xb8,0x98,0xc5, + 0x3f,0x90,0xe1,0x92,0xe0, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/run.ico + 0x0,0x0,0x2,0x9f, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x57,0x31,0x6e,0xdc,0x30,0x10,0x5c,0x41,0x7,0xb, + 0x86,0x8b,0xbb,0xc2,0x85,0x3b,0x5d,0x99,0xd2,0x3f,0x90,0xab,0xbc,0x23,0x55,0xe0, + 0x5f,0x48,0xae,0x92,0x32,0x3f,0x48,0x9b,0x2a,0xb5,0xdd,0x5,0xc8,0x3,0xfc,0x84, + 0xfb,0x41,0x9e,0x10,0x65,0x64,0xf1,0x7c,0x4,0x41,0x51,0xbb,0xe4,0xae,0x42,0x63, + 0x70,0x16,0xa1,0x99,0xe1,0x91,0x87,0x9d,0x25,0x51,0x45,0x3b,0x3a,0x1c,0x8,0x9f, + 0x47,0x7a,0xdc,0x11,0x7d,0x24,0xa2,0xdb,0xdb,0xf9,0xf9,0xf9,0x8a,0xe8,0x27,0xe6, + 0xee,0xee,0xe6,0xe7,0xaf,0xd7,0x44,0x9f,0x6f,0x88,0x8e,0xc7,0xf9,0xf9,0x7,0x78, + 0x7f,0xf0,0xee,0x7,0x70,0xf0,0x2f,0x66,0xe6,0xf9,0x69,0x3c,0xec,0x68,0x69,0x8c, + 0xe,0x79,0x63,0x0,0x77,0x78,0xd7,0x90,0xeb,0x4c,0xdc,0xd1,0x69,0xe4,0xe8,0x9c, + 0xf9,0x2f,0xe,0x52,0x9d,0x90,0x1f,0xd7,0x91,0xf3,0x7d,0x9d,0xd4,0x5a,0xd6,0xf8, + 0x6b,0xdf,0x89,0xc3,0x4f,0x7d,0x27,0x9,0xff,0xfc,0x37,0x8,0xf9,0x3e,0xcf,0xe7, + 0x72,0xf8,0x4b,0xbc,0x35,0x7e,0x6c,0xad,0x1c,0x7e,0x6a,0xad,0x29,0xbe,0x94,0x17, + 0xf2,0xa5,0x3c,0x9f,0x9f,0xc3,0xc3,0xf8,0x3e,0x8e,0xe3,0x17,0xe0,0x9,0x18,0x7a, + 0xa0,0x3,0xf6,0x40,0xd,0x54,0xe,0xb5,0x9b,0xeb,0xe6,0x77,0x9e,0x1c,0x67,0xe2, + 0x4e,0x75,0x6,0xe5,0xe6,0xad,0xde,0x9c,0xeb,0xcc,0xb7,0xab,0x45,0xbb,0xb2,0x3a, + 0x13,0x8e,0xd2,0xba,0x13,0xd3,0x2b,0xa9,0x43,0x4b,0x7a,0xb9,0x75,0x69,0x4d,0xaf, + 0x54,0x97,0x53,0xb7,0x38,0xf5,0x8f,0xab,0xc7,0xad,0x87,0x52,0x3d,0xee,0x1e,0x48, + 0xf4,0x38,0x7b,0x90,0xa3,0x97,0xda,0x83,0x12,0xbd,0x58,0xfd,0xc8,0xd1,0x4b,0xd5, + 0xcc,0xdc,0x9c,0x90,0xd6,0x6d,0x69,0xfd,0xe7,0xea,0x71,0xf3,0x60,0x4d,0xaf,0xb4, + 0xce,0x97,0xea,0x84,0x7a,0xa5,0x3a,0xa1,0x5e,0xa9,0x8e,0xaf,0xa7,0xa1,0x43,0x91, + 0x9c,0x6a,0xbd,0x9c,0xa2,0x9,0x3d,0xd0,0x3a,0xf4,0xf3,0xdc,0x39,0xb7,0xda,0x78, + 0x6e,0xa1,0x85,0xa6,0x7b,0xba,0xe4,0xd6,0xa7,0xeb,0x45,0x7b,0xdd,0xdc,0xa,0x87, + 0x76,0x8e,0xc5,0xf4,0x35,0x73,0x6d,0x49,0x5f,0x2b,0xe7,0xd6,0xf4,0xb5,0x7d,0x64, + 0x39,0xa8,0x97,0xdb,0xa5,0x79,0x2b,0xd5,0x97,0xe6,0x6f,0xae,0xbe,0x74,0xcf,0x4a, + 0x73,0xd4,0x22,0xf7,0x25,0x67,0xa3,0xa1,0x9f,0x3a,0x1b,0x4d,0x7d,0xad,0x3e,0x41, + 0x92,0xad,0xa5,0x7d,0x8d,0x56,0x1f,0x21,0xd5,0xcd,0xd5,0x97,0x66,0xa8,0xa4,0xf, + 0x92,0xf4,0x2f,0x5c,0x7d,0xad,0x3e,0x44,0x5b,0x77,0x49,0x5f,0x4b,0x37,0xd4,0xd7, + 0xd6,0xd,0xf5,0xb5,0x75,0x7d,0x7d,0x3,0xdd,0xd3,0xe9,0x34,0x46,0xfb,0xae,0xc6, + 0xef,0xbb,0x3a,0x60,0xf,0x34,0x40,0xe5,0xd0,0xb8,0xb9,0xee,0xd2,0x87,0x35,0xb1, + 0x3e,0xec,0xef,0x5b,0x1f,0x76,0x4,0x1e,0xe8,0xd2,0x87,0xd,0x87,0xe4,0xb2,0x6c, + 0x7b,0xb1,0xb5,0x61,0xdd,0xab,0x71,0xfc,0x2d,0x7b,0x39,0xae,0xbf,0x24,0x7f,0x2d, + 0xfd,0x39,0xf9,0xbc,0x85,0x7f,0x2a,0xbf,0xb7,0xf4,0xb7,0x3e,0x13,0x49,0x16,0x5a, + 0xac,0xc3,0xba,0x17,0xb5,0xf0,0xd7,0xfc,0x8d,0x6a,0xf5,0xb2,0xd6,0x77,0x19,0xab, + 0x33,0xd1,0xec,0x85,0x73,0xce,0x44,0xdb,0x5f,0x7a,0x26,0x56,0xfe,0xdc,0x33,0xb1, + 0xf4,0xe7,0x9c,0xc9,0x16,0xfe,0x56,0x77,0x19,0x89,0xaf,0xe6,0x5d,0x87,0xeb,0x6d, + 0x71,0x17,0x2a,0xd9,0x6b,0x4b,0xff,0xdc,0x5e,0x5f,0xeb,0xae,0xac,0x7d,0xd7,0xb2, + 0xd8,0x6b,0x2d,0x7f,0xcd,0x7b,0x95,0xc4,0xdf,0xe2,0x3e,0xc7,0xf1,0xb7,0xba,0x47, + 0x72,0xfc,0x2d,0xef,0x99,0x29,0x7f,0x8d,0xdf,0x56,0x8e,0xbf,0xe5,0x5e,0xa7,0xfc, + 0xb7,0xf6,0xd,0xfd,0xb7,0xf6,0xf5,0xfd,0xff,0x83,0xef,0xeb,0x38,0x8e,0xbf,0x81, + 0x5f,0x13,0x3a,0xa0,0x5,0x1a,0xa0,0x2,0xa8,0x7,0x5a,0x60,0xf,0xd4,0x0,0x4d, + 0xe8,0x81,0x16,0x68,0x80,0xda,0xa1,0x71,0x73,0xfd,0xfc,0x4e,0xed,0x38,0xed,0xac, + 0x51,0x39,0xcd,0xd6,0x79,0x38,0xcf,0xc9,0xfb,0x1f,0xb,0x8d,0x4a,0x30, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_reset.ico + 0x0,0x0,0x3,0xbd, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x5a,0x3d,0x4e,0x5b,0x41,0x10,0x1e,0xcb,0x8,0x84, + 0x52,0x40,0x41,0x41,0x67,0x97,0x29,0x73,0x3,0xa8,0x72,0x8e,0x54,0x51,0x6e,0x81, + 0xd3,0xa5,0xcc,0x31,0x52,0xa5,0xe,0x1d,0x47,0xb1,0x72,0x0,0x44,0xaa,0x20,0x5, + 0xfc,0xb2,0x63,0x6b,0xf1,0x30,0xfe,0xe6,0x67,0xf7,0xd9,0x62,0xa5,0x11,0xd8,0x6f, + 0xe7,0xfb,0xe6,0xed,0x9b,0xf9,0x66,0x6c,0x99,0x68,0x42,0x47,0x74,0x7e,0x4e,0xe5, + 0xef,0x9c,0xbe,0x1c,0x11,0x7d,0x24,0xa2,0x8b,0x8b,0xcd,0xeb,0x5f,0xc7,0x44,0x3f, + 0xcb,0x7b,0x97,0x97,0x9b,0xd7,0xdf,0x4e,0x89,0x3e,0xbf,0x23,0x9a,0xcf,0x37,0xaf, + 0x7f,0x14,0xbf,0xfb,0xb2,0xf7,0x7d,0xf1,0x29,0xff,0x96,0x77,0x36,0xef,0xf3,0xba, + 0x3e,0xa2,0xec,0x1a,0xc,0x4b,0xf9,0x2d,0x16,0xd8,0x3c,0x1c,0xb9,0xef,0xf6,0x96, + 0x86,0x61,0xd8,0x35,0x85,0xf3,0xca,0x97,0xaf,0xb3,0x5f,0xf5,0x45,0xfc,0x75,0x8f, + 0xc6,0x90,0xd7,0xaa,0x2f,0x5a,0x75,0x9f,0xf4,0x47,0xb8,0xbc,0xf4,0xd9,0x59,0x18, + 0x3a,0x76,0xf9,0xbe,0x3e,0xbb,0xc8,0x5f,0x9f,0x97,0xc6,0xf4,0xfc,0xd1,0x99,0xa1, + 0xfb,0xb2,0xfc,0xe5,0x1e,0xb9,0xaf,0x5a,0xab,0x7f,0xdd,0xbb,0x8d,0x25,0x7e,0x6, + 0xf2,0xec,0xd1,0x92,0xe7,0x8a,0x9e,0xbf,0x8c,0x9,0xe5,0x7f,0xcd,0x4d,0x2f,0x7, + 0xe5,0x99,0xa1,0xf3,0xac,0x71,0x7a,0x35,0x80,0x72,0x5f,0xe5,0xbf,0xbb,0x9c,0xfa, + 0xdb,0x59,0x8f,0xb3,0x61,0x58,0x9e,0xc,0xc3,0xdd,0xb4,0x9c,0xed,0x64,0x63,0x7c, + 0x7c,0xc8,0xea,0x75,0xde,0xcb,0x3e,0xec,0xcb,0x3a,0x53,0xe4,0x66,0xad,0x37,0x55, + 0x67,0xbe,0x1f,0x47,0x11,0xee,0xac,0x5e,0xbd,0x81,0x38,0x3d,0xfa,0xe3,0xe1,0xd4, + 0x3a,0xd2,0xd6,0xa3,0x6b,0x96,0xb6,0xe9,0x7a,0x45,0x39,0x56,0xf1,0x32,0x5a,0x67, + 0xe9,0x4a,0x6,0xcb,0x5a,0x11,0xa6,0x75,0x5d,0xd6,0x5f,0x35,0x84,0x69,0xe9,0xaa, + 0x3e,0x73,0xf4,0x9c,0x23,0x4c,0xb,0x4f,0x9e,0x37,0xe2,0xc9,0xe2,0x79,0xcf,0xb3, + 0x15,0x2f,0xea,0x5f,0xad,0x78,0x96,0xb6,0xea,0xf8,0x7b,0xf1,0x90,0x6e,0x21,0xcd, + 0xb6,0x9e,0xb1,0xc4,0x43,0xb8,0x19,0x2c,0x84,0x57,0xe3,0xd6,0xf7,0x2e,0xf3,0x51, + 0x3e,0x77,0xaf,0x46,0x64,0x8e,0x44,0xfd,0xc1,0xc2,0x92,0x78,0x28,0x3f,0xb4,0xe9, + 0xdc,0x8a,0x34,0x6,0xe1,0x4a,0xeb,0xed,0x23,0x63,0xfb,0x91,0x85,0x9b,0xe9,0x4f, + 0x75,0xad,0xb8,0xdf,0x94,0xde,0xb3,0xa4,0x9b,0xe1,0x8e,0xae,0xd6,0xb6,0xa0,0xd9, + 0xda,0x88,0xce,0xa0,0xd5,0xeb,0x75,0x3f,0xfb,0x32,0x6,0x63,0x71,0xbf,0x2a,0x23, + 0x34,0x7d,0xa0,0x6d,0xdf,0xfa,0x74,0xda,0x7a,0x27,0x2f,0x6b,0x5f,0xfd,0xb,0x62, + 0x26,0xfa,0x59,0x13,0x97,0x95,0x67,0x96,0x2e,0x5a,0xb9,0x6c,0x61,0x5b,0x39,0x68, + 0x69,0xa3,0x57,0x2f,0x19,0x6c,0x34,0xbf,0x7a,0x1a,0xdc,0x8a,0xad,0x35,0x68,0xb5, + 0x5a,0x41,0x4d,0xce,0xf6,0xd9,0x6c,0xbf,0x45,0x3a,0x9d,0xe9,0xbb,0x5a,0xa3,0x9f, + 0xff,0xde,0xc3,0xfc,0xb4,0x38,0x32,0xf8,0x5e,0x2f,0x7e,0xdd,0x93,0x57,0xa9,0x1e, + 0x10,0xe5,0xa0,0x75,0xad,0xde,0x87,0x75,0xf,0x11,0xbe,0x67,0xbd,0xf8,0xd1,0x7c, + 0x37,0x6,0x3f,0x3b,0xef,0xf5,0xe2,0x5b,0xfd,0xf2,0x90,0xf8,0x3e,0xf6,0x73,0x98, + 0xa3,0xde,0x6c,0xc2,0xeb,0xe9,0xcf,0x6f,0x3c,0x9f,0x3c,0xff,0x6b,0xce,0x7f,0x3d, + 0xab,0xe8,0x3a,0xf2,0xe6,0x95,0x16,0x7c,0x59,0x53,0x9a,0x47,0x72,0xa3,0xda,0x88, + 0x34,0x48,0xd7,0x14,0xea,0x27,0x56,0xdd,0xf5,0x68,0x28,0xea,0x27,0x5e,0xbd,0x21, + 0xec,0x2c,0x47,0x54,0xcb,0x1e,0xb6,0xe6,0xc8,0xce,0x53,0xde,0x6c,0xe6,0x71,0x64, + 0xe7,0xab,0x9e,0x19,0xcb,0xe2,0x6a,0xc5,0x1c,0xbe,0x96,0xfa,0x29,0xb3,0xd3,0x63, + 0x99,0xa3,0x1e,0xca,0x4c,0xb5,0xa4,0x93,0x32,0x4b,0x4d,0xcb,0x5c,0x35,0x79,0x31, + 0x22,0x82,0x26,0xf7,0xb0,0xf,0xfb,0x32,0x6,0x63,0x31,0x26,0x63,0xf3,0x1c,0x36, + 0x2f,0x76,0x4d,0xdb,0x39,0x6c,0x71,0x3e,0xe6,0x6e,0xb7,0xa1,0x7,0x76,0x88,0x15, + 0xce,0x6c,0x63,0x67,0x37,0x8f,0x37,0x33,0xd3,0xa1,0x5a,0x1c,0x13,0x47,0xb,0x67, + 0x14,0x4b,0x6b,0xc,0x63,0x7a,0xfb,0xbe,0x34,0xc2,0xc3,0xb3,0xea,0x3a,0xd2,0xc8, + 0x28,0x86,0x88,0x1b,0xe9,0x7,0x9a,0x15,0xbc,0xef,0x43,0xac,0x18,0x32,0xdc,0xba, + 0x7,0xa2,0x65,0xcd,0x2c,0x51,0xc,0x91,0x4f,0xc4,0x8b,0xe2,0xc8,0x7e,0x1e,0xc9, + 0xc4,0x8b,0x16,0x89,0x5a,0x1f,0x13,0x43,0x2b,0x7f,0xe5,0x44,0xb5,0x9e,0x89,0xa1, + 0x85,0x5f,0xed,0x37,0x67,0x8,0x19,0x47,0xb,0x7f,0xb6,0xd6,0xb3,0x7a,0xd4,0x1a, + 0xc3,0xa1,0xb4,0xe6,0xad,0xf8,0x51,0xc,0xbd,0xfc,0x3d,0x3a,0xb7,0x2f,0xfe,0x8c, + 0xce,0x1d,0x92,0xdf,0xab,0xfb,0xd6,0x7a,0x7d,0x4b,0xfe,0x8,0xbf,0x95,0xdf,0xea, + 0x31,0xf5,0x79,0x65,0xee,0x3d,0xa3,0x1,0xd1,0xfd,0xeb,0xf9,0x1a,0xf5,0x88,0x31, + 0xfa,0xeb,0xf1,0xeb,0x38,0x50,0x6f,0x6a,0xe9,0x81,0x19,0xfe,0x28,0x96,0x2c,0x37, + 0xe2,0x47,0x31,0x20,0xcd,0xf7,0x7a,0x5d,0x8d,0xb1,0xee,0x6d,0xe1,0xf6,0xce,0x40, + 0x6a,0x3e,0x98,0x6b,0x53,0x9f,0x6d,0x33,0xfc,0xbd,0xbd,0x28,0xdb,0x97,0x22,0xee, + 0xd6,0x18,0x5a,0x2d,0xc3,0x7d,0xa8,0x18,0x5a,0xb8,0x75,0xc,0x63,0xe2,0xe8,0xfd, + 0xc,0x2f,0x63,0xd0,0x3a,0x93,0xe5,0x94,0x9a,0xd4,0xc3,0x8d,0xe2,0xd0,0xb1,0x1c, + 0xf2,0xbb,0x85,0x4c,0x2c,0xc8,0x5a,0xf1,0x86,0x87,0xb3,0xf5,0x8f,0xf,0x56,0x44, + 0x37,0x4f,0x44,0x57,0x8f,0x44,0xb3,0x7,0xa2,0xb3,0x25,0xd1,0xc9,0x1d,0xd1,0x94, + 0x6d,0x41,0x34,0xa9,0x16,0xc6,0x27,0xf6,0x56,0x7f,0xc6,0x62,0x4c,0xc6,0x66,0xe, + 0xe6,0x5a,0xff,0xe0,0xa1,0x70,0xff,0x7,0xb6,0x51,0x38,0xcc, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/pause.ico + 0x0,0x0,0x1,0x66, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0x3,0x31,0x10,0x7d,0x11,0xab,0xa0, + 0x88,0x66,0x8b,0x14,0xe9,0xd8,0x92,0x92,0x1b,0x90,0x8a,0x73,0x50,0x45,0x9c,0x21, + 0x55,0x24,0x1a,0x2a,0xc4,0x31,0x10,0x5,0x35,0xe9,0xc8,0x1d,0x38,0x0,0x27,0xa0, + 0x4e,0x37,0x99,0xc5,0x8a,0x62,0x60,0xd6,0xf6,0x64,0xf9,0x8,0xf4,0x2c,0x8d,0x12, + 0x7b,0xe6,0xbd,0xe7,0xcd,0x7a,0x67,0x26,0xb,0xc,0x50,0xa1,0xae,0xa1,0x9f,0xd, + 0x2e,0x2b,0xe0,0x1c,0xc0,0x78,0x1c,0xe6,0x8f,0x43,0xe0,0x41,0xd7,0x26,0x93,0x30, + 0xbf,0x1e,0x1,0xb3,0x23,0xa0,0x69,0xc2,0xfc,0x4e,0x71,0xaf,0x1a,0x7b,0xa2,0x18, + 0xfd,0xaa,0x2b,0x61,0xbd,0x1d,0xd3,0xa,0xa9,0x21,0x86,0x95,0xf8,0xc2,0x98,0x2f, + 0xe5,0x9d,0xc5,0x31,0x29,0x5f,0x14,0x73,0xf3,0x2c,0x82,0x7b,0x31,0xf1,0x9d,0x3e, + 0xe2,0x89,0xff,0x47,0xf8,0xad,0x59,0x78,0xd3,0x17,0xc5,0x18,0xcf,0x59,0xd6,0xb7, + 0xba,0x12,0xe9,0x63,0x6d,0x9e,0xd1,0x74,0xf3,0x96,0x6f,0xb6,0x79,0xe6,0x76,0xf8, + 0x69,0x77,0xf1,0xc8,0xe7,0x12,0x4f,0x6c,0x49,0x6e,0xf1,0xc4,0x96,0xdc,0x2b,0x4f, + 0x2c,0xf9,0xc8,0x47,0x3e,0xf2,0xfd,0x31,0xbe,0x64,0xad,0xf1,0xc4,0xa6,0xea,0x92, + 0x23,0x76,0xb5,0x3e,0x93,0xaf,0xb4,0xb6,0x5e,0x69,0xb,0x8d,0x53,0xec,0xea,0xd6, + 0xc5,0xa8,0x73,0x67,0x80,0x5d,0x8b,0x52,0xb5,0xcb,0x87,0xb3,0xaf,0x3d,0xcf,0x5f, + 0x8a,0x8b,0xef,0x7d,0xc9,0x59,0xf1,0xe2,0xc8,0x4f,0x7e,0xf2,0x93,0x9f,0xfc,0xe4, + 0x27,0x7f,0xb6,0xaf,0xca,0xf6,0x56,0x5e,0x9c,0xd5,0x7,0xa4,0x7a,0xad,0x42,0xdc, + 0x93,0x1c,0xc8,0x77,0x5a,0xdb,0x87,0x35,0x6a,0x53,0xec,0xfa,0xb0,0x45,0x9d,0xdd, + 0x75,0x57,0x4f,0x55,0xda,0x93,0xf5,0xe3,0xe9,0xfa,0xcd,0x4a,0xcf,0x4c,0x5f,0x9e, + 0x8f,0x67,0xce,0x7b,0x66,0xfb,0xf2,0x50,0x9f,0xfa,0xd4,0xa7,0x3e,0xf5,0xa9,0x4f, + 0x7d,0xea,0x53,0x9f,0xfa,0xd4,0xa7,0x3e,0xf5,0x7f,0x54,0xdf,0xb2,0x7d,0xf4,0xdd, + 0x3c,0xa9,0xff,0xad,0xf3,0x82,0x77,0xe,0x7b,0xf0,0xbc,0x1c,0xaf,0xf,0x7f,0xd3, + 0x36,0x70,0xc3,0x6a,0x9c, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/settings.ico + 0x0,0x0,0x4,0x53, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x59,0xbd,0x6e,0x1b,0x31,0xc,0xa6,0x7b,0x41,0x8c, + 0x20,0x1,0x9c,0x21,0x83,0x87,0x0,0xf6,0xd8,0xb1,0x40,0x1f,0xc0,0x99,0xfa,0x1c, + 0x99,0x8a,0x3e,0x45,0xad,0x14,0x5,0xda,0xb1,0x8f,0xd1,0xa9,0x73,0xc7,0x7b,0x80, + 0x3e,0x40,0xb7,0x5e,0x5f,0xa0,0xf0,0xe8,0xc1,0x30,0x4b,0xf9,0x2c,0x9b,0x47,0x53, + 0x12,0x75,0xe7,0x84,0x0,0x71,0x27,0xdd,0xf1,0xe3,0x8f,0x4e,0x24,0x65,0x3,0x8c, + 0xe0,0x2,0x6e,0x6f,0x81,0xae,0x73,0xf8,0x70,0x1,0xf0,0xe,0x0,0xee,0xee,0xda, + 0xf1,0xcf,0x4b,0x80,0x1f,0x34,0x37,0x9d,0xb6,0xe3,0xaf,0x57,0x0,0xef,0xaf,0x1, + 0xe6,0xf3,0x76,0xfc,0x9d,0xe4,0xfe,0xd1,0xbb,0xaf,0x49,0x86,0x6e,0x69,0xa6,0x9d, + 0xf7,0xf4,0x70,0x1,0xa5,0x84,0xec,0xca,0x39,0x4f,0xce,0xe1,0x8e,0xfd,0xfb,0xe1, + 0x9e,0xcf,0x65,0x64,0x3d,0x81,0xe7,0xfd,0xfd,0x61,0xbc,0x9f,0x4b,0x62,0x30,0x79, + 0xc,0xef,0x4b,0x9c,0x14,0x46,0x90,0x97,0xef,0x8,0xbb,0x14,0x79,0x4c,0xbe,0x93, + 0x78,0xe6,0x68,0xec,0x98,0x9d,0x8a,0xaf,0xed,0x7d,0x44,0xd6,0x53,0x5d,0xd7,0xf1, + 0x78,0x5,0xd9,0x8c,0x7c,0xf0,0xfb,0x4,0x23,0x11,0xbb,0x20,0xef,0xf8,0x3c,0xc3, + 0x38,0x60,0x5,0xdf,0x22,0xba,0x9d,0x12,0xaf,0x93,0xef,0xa6,0xbd,0x2,0x97,0xf7, + 0xb2,0x81,0x19,0x6,0x86,0x67,0x27,0xb8,0x42,0x3e,0xe8,0xe7,0x18,0x1c,0x37,0x25, + 0x1f,0xc3,0x8,0xb1,0xb4,0xc8,0x73,0xc,0x4e,0x4e,0x89,0x57,0xe,0x83,0x73,0x98, + 0x4b,0xc9,0x6c,0xbf,0x20,0x6e,0x2a,0xc4,0xf5,0x88,0x98,0x16,0x77,0xfd,0x88,0xd8, + 0x10,0xd7,0x34,0x76,0x7b,0xfe,0x4c,0xcf,0x2f,0xc7,0x64,0xc7,0xac,0x65,0x47,0x5c, + 0x2f,0x10,0xff,0x2e,0x11,0x7d,0x9e,0xa1,0x74,0xb3,0xcb,0x37,0x21,0xcf,0x7c,0xbb, + 0xb4,0x58,0x9b,0xa5,0xf2,0x9c,0x93,0x92,0x2f,0xcd,0x41,0x9c,0xa4,0x2c,0xdf,0x4b, + 0xb9,0x5c,0xa2,0x60,0xc9,0x7d,0xc5,0xf7,0x96,0xb2,0xc7,0xcc,0xb9,0x92,0x5f,0x31, + 0x86,0x59,0x9a,0x7f,0xd9,0xde,0xd5,0x74,0x95,0xe4,0xe2,0x6c,0x4e,0x8c,0xe3,0x1d, + 0xd6,0x30,0xab,0x3f,0x93,0xa3,0x3b,0xfb,0x43,0xe4,0x39,0x35,0xf6,0x91,0x9c,0x1b, + 0xb0,0xc2,0x1e,0x97,0xb9,0x37,0x1a,0xfb,0x84,0xaf,0x5a,0x1e,0xd1,0x6a,0x57,0x27, + 0x5e,0x99,0xb5,0x90,0x98,0x9e,0x62,0xbe,0x63,0x21,0x96,0x25,0xdf,0x6b,0x39,0x3f, + 0xe6,0xab,0x29,0xff,0x87,0xf9,0x93,0xcf,0x4c,0xcf,0xc1,0xa5,0xf5,0x40,0xe2,0xc5, + 0x30,0x13,0x75,0x27,0x89,0x19,0xb3,0x33,0x61,0x77,0x96,0x34,0x4c,0x6e,0x7b,0x9, + 0x96,0xf4,0x3d,0x10,0xb7,0xbd,0x4,0x4b,0xfa,0xce,0x6b,0x53,0x98,0xb7,0xc8,0xe3, + 0xca,0x2b,0x5e,0xe2,0x96,0x78,0x43,0x45,0x68,0x3,0x13,0xba,0x9f,0xe0,0xe6,0x66, + 0x82,0xcd,0xcd,0xc,0x6b,0x58,0xa0,0xa3,0x79,0xcf,0xfe,0xfe,0x89,0xde,0x1b,0x7d, + 0x22,0x11,0x5f,0xb7,0xa8,0x7e,0x39,0xe2,0x86,0xee,0x9b,0x9,0xe2,0xea,0x4f,0x5b, + 0xb7,0xa8,0x85,0x86,0x37,0x70,0xac,0x5b,0x8f,0x57,0xa5,0x5e,0xe5,0xcd,0x16,0x7c, + 0xe,0xac,0xe3,0x78,0x48,0x4d,0xe3,0x74,0x8a,0x31,0xac,0xc6,0x9,0x6c,0x94,0x38, + 0xc,0x3b,0x95,0x6f,0xac,0xd8,0x28,0xb1,0xc4,0x58,0xd1,0x61,0xd3,0x15,0xa9,0xad, + 0xa6,0x1a,0x6b,0xf5,0x27,0xa6,0x83,0xe1,0xa8,0xfe,0x15,0xd6,0xf1,0x64,0x9c,0xcb, + 0xea,0x7a,0xbc,0x16,0x67,0xf0,0x73,0xef,0x15,0xd6,0x66,0xd5,0xfe,0xd2,0x5a,0x6d, + 0xfa,0x4e,0xf8,0x5e,0x30,0x60,0x6b,0xbd,0x40,0xf2,0x3b,0xc9,0xc4,0x26,0x56,0x33, + 0xe4,0x37,0xa2,0xae,0x87,0x31,0x86,0xb1,0x1a,0x92,0x5b,0xf,0xe9,0x9f,0x15,0x5b, + 0xab,0xf5,0xea,0x7a,0x48,0xdd,0x6,0xec,0x14,0x7e,0xc7,0xde,0x63,0x2d,0xe2,0x7b, + 0x16,0x7a,0xe1,0xef,0x75,0x70,0x2e,0xe9,0x33,0x32,0x3d,0x40,0xa7,0x7f,0x29,0xa9, + 0xe9,0xb2,0x96,0xc7,0x7a,0x19,0xd9,0xcf,0x94,0xea,0x28,0xe9,0x6d,0xfa,0xf4,0x38, + 0xb9,0x78,0x49,0xff,0xfa,0x60,0xc7,0xf0,0xf9,0x3e,0x88,0x7d,0x87,0xa5,0xf8,0x9c, + 0x64,0x3f,0x64,0xed,0x89,0x52,0x3a,0xb4,0x5e,0xab,0xf,0xe1,0x76,0x86,0xf8,0x8b, + 0x9a,0x26,0x47,0xbc,0xeb,0xb9,0x46,0xc4,0xe0,0x3,0x80,0xdb,0xca,0xe1,0x8a,0xb8, + 0xa9,0x9e,0xa8,0xe7,0xaa,0xa8,0xf7,0x1a,0xed,0x78,0x77,0x5f,0x8f,0x11,0xea,0x9, + 0x42,0xb3,0xc4,0xf6,0xf5,0x25,0x3d,0x5b,0xe2,0x8a,0xee,0x57,0x23,0xe2,0xb7,0x88, + 0xeb,0x65,0xdb,0x87,0xcd,0x89,0x1f,0xe0,0xd8,0x87,0xb9,0xdb,0x21,0x16,0xdb,0x5d, + 0x53,0xf8,0xa5,0xe8,0xb4,0x77,0x1b,0xd2,0xbf,0xe5,0x74,0xc5,0x7a,0x47,0xec,0xd6, + 0x89,0x33,0xdb,0xd0,0xcd,0xab,0x91,0xde,0x12,0x9f,0x43,0xbf,0xa8,0xad,0xb9,0xde, + 0x33,0x55,0xbb,0xfa,0xe8,0xe6,0x3e,0x9d,0xe8,0x88,0xcc,0x47,0x6c,0x18,0xd4,0x6f, + 0xf7,0xbd,0x1e,0x6c,0x38,0x63,0x4f,0xde,0xcb,0x86,0xbe,0x6b,0x62,0xb0,0xc1,0x62, + 0xe3,0x50,0xfd,0x51,0xec,0x44,0x6f,0x1f,0x5d,0xb,0xa3,0x5e,0x63,0x5f,0x6b,0xb2, + 0xd5,0xa8,0xbf,0x73,0x1e,0x28,0xc6,0x4a,0xf5,0xae,0xe9,0xbc,0x78,0xe8,0x89,0xdc, + 0x90,0x58,0xe6,0xcf,0x31,0x6a,0x4f,0x28,0x7b,0x26,0xeb,0x77,0x2f,0x70,0x4d,0xfd, + 0xbf,0xd4,0xed,0x49,0x3b,0xb,0xe4,0x74,0x77,0x6c,0x50,0xce,0x1e,0xc9,0x38,0x19, + 0xf4,0xcb,0x1e,0x3b,0xbb,0xb7,0x4a,0xd7,0x2a,0xa1,0xbf,0x13,0x3,0xe3,0xf7,0x60, + 0x8a,0x53,0x4f,0x1b,0x82,0x1d,0xe7,0xd6,0x9d,0xd3,0xef,0xa9,0xd3,0xfb,0x65,0x6c, + 0x40,0x65,0x3e,0xe5,0xb7,0xf1,0xbc,0x12,0x4,0xd2,0x7e,0xca,0xb3,0x9d,0x21,0xe6, + 0x31,0xdd,0xb9,0x33,0x9f,0xaa,0x5b,0xf9,0xed,0xba,0x4f,0xcc,0x73,0x67,0x42,0x8d, + 0x4e,0xfc,0x3c,0xe6,0x3a,0x95,0x2c,0xfa,0x63,0x67,0x46,0xb5,0xd7,0x2c,0x3c,0x17, + 0x58,0xf5,0xe7,0xce,0x94,0x43,0xce,0x7d,0x1f,0x9f,0xba,0xb1,0xb4,0x9e,0x33,0xcf, + 0x7d,0xf6,0xcc,0xed,0x83,0xe7,0xb6,0x41,0xda,0xf3,0x52,0xba,0x53,0x31,0x89,0xe5, + 0x22,0xed,0xd9,0x4b,0xe9,0xd6,0xd6,0xe9,0x5c,0xba,0x73,0xfa,0xb9,0x1e,0x9e,0xbb, + 0xce,0xa5,0x5b,0xda,0x20,0x49,0xfa,0x79,0xa8,0x7,0xcf,0x40,0x7c,0xbf,0x77,0x6a, + 0xcf,0x19,0x9,0x71,0xb5,0x44,0x6c,0x16,0xb8,0x79,0x9c,0xe1,0xa,0x66,0xd8,0xec, + 0xfe,0xe8,0xb9,0x26,0xf6,0x3f,0x38,0x0,0x8d,0x5b,0x76,0xf7,0xb0,0x81,0x7b,0x58, + 0xc1,0xfd,0x88,0x86,0xe3,0xba,0xe5,0x8a,0xd8,0x8f,0x2b,0x3f,0xe7,0xa6,0x30,0x81, + 0xe9,0xab,0x19,0xdc,0x57,0xb,0x1a,0x62,0xcb,0xed,0xef,0x17,0xbf,0xe9,0xba,0xa1, + 0xf1,0x1a,0x26,0xb8,0x7e,0x35,0xc3,0x4d,0xb5,0xc0,0xed,0x18,0xf1,0x3f,0xa2,0xa8, + 0xec,0x3d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cae.ico + 0x0,0x0,0x3,0xeb, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x40,0xc,0xa6,0x90,0x20,0x41, + 0x90,0x2,0xce,0x10,0xa0,0x1e,0xa,0xc8,0x63,0xc7,0xbe,0x41,0x32,0xf5,0x39,0x3c, + 0x15,0x7d,0x8b,0xc8,0x4b,0xda,0xb1,0x8f,0xd1,0xa9,0x73,0x47,0x3f,0x40,0x1f,0x22, + 0x4f,0x50,0x78,0xcc,0x60,0x98,0xe5,0x49,0x3e,0x99,0xa2,0x78,0x3c,0x9e,0xec,0x14, + 0x5,0x1a,0x2,0xc4,0x49,0x27,0xf2,0x23,0xef,0x8f,0xe4,0xd9,0x0,0x15,0x9c,0xc3, + 0xcd,0xd,0x50,0xbb,0x80,0xcf,0xe7,0x0,0x1f,0x1,0xe0,0xf6,0xb6,0x7b,0xff,0x79, + 0x1,0xf0,0x83,0xfa,0xe6,0xf3,0xee,0xfd,0xeb,0x15,0xc0,0xa7,0x6b,0x80,0xc5,0xa2, + 0x7b,0xff,0x4e,0x7a,0xbf,0x49,0xf6,0x3d,0xe9,0xd0,0x23,0xf5,0x74,0xfd,0x81,0xee, + 0xcf,0xa1,0x94,0x90,0xb5,0x9c,0xf3,0xd4,0x34,0xd8,0x72,0x90,0x8f,0xcf,0xbc,0x2f, + 0xa3,0x1b,0x8,0x2,0xef,0x9f,0xfb,0xf7,0x7d,0x9f,0x89,0xc1,0xf4,0x31,0xca,0x4b, + 0x9c,0x34,0x46,0x2f,0x3b,0x92,0x11,0x7e,0x49,0xfd,0x86,0xd9,0x51,0x65,0x4a,0xf5, + 0x87,0x72,0xdd,0xb3,0xe1,0x7b,0xa3,0x8d,0x93,0x8d,0x3f,0x37,0x7f,0x41,0x7f,0xbd, + 0x5e,0xeb,0x18,0xbe,0xb9,0x6b,0x31,0xa4,0x1f,0x3d,0x56,0x1c,0xdb,0x58,0x57,0xdf, + 0x5f,0xe3,0x7d,0x3,0x7d,0xcb,0xc7,0x4c,0x3a,0xbd,0xdd,0x3d,0x46,0xaa,0x5f,0xf3, + 0x37,0x50,0x18,0x77,0x60,0xae,0xa7,0xf5,0xbf,0x84,0x7e,0xf8,0x1e,0xa9,0x9d,0xff, + 0xbd,0xbe,0xd6,0x6f,0xcd,0x39,0x1b,0xab,0xd9,0xcf,0x69,0xf7,0x5,0x71,0x7b,0x86, + 0xf8,0x5c,0x11,0xd3,0xe2,0x6e,0x96,0x88,0x4f,0x81,0xab,0x3,0x6f,0xe8,0xfb,0xe3, + 0x5b,0x5a,0xb7,0xd9,0x90,0x1f,0x6b,0xc4,0x10,0x67,0x28,0xdc,0xb4,0xf1,0x26,0xc6, + 0x99,0x6f,0x17,0x9a,0xa5,0x62,0x2a,0x8f,0x39,0x96,0x7e,0x69,0xc,0xe2,0x24,0x75, + 0xf9,0x59,0xf2,0xc4,0x23,0x81,0x25,0xcf,0x15,0x3f,0x5b,0xca,0x19,0xb3,0x70,0x7, + 0xf1,0x82,0xb7,0x98,0xc2,0xb4,0x62,0x47,0x3c,0x37,0xc2,0x47,0x64,0xba,0x86,0x9f, + 0x23,0xbc,0xc1,0x99,0x4f,0xc9,0xe7,0xbe,0x73,0xff,0x3c,0xf6,0x33,0x31,0x56,0xc3, + 0x33,0xe7,0x3e,0x13,0x73,0x53,0x78,0xc9,0xb9,0x77,0xee,0x1b,0x1e,0x8b,0x93,0x7e, + 0x3a,0xd7,0x82,0x63,0x6a,0xf1,0x59,0xdb,0x33,0x9,0x2c,0x79,0x26,0xf,0x32,0x89, + 0x78,0x9f,0x8a,0xf9,0x32,0x3e,0xab,0xf1,0x5b,0x70,0xff,0x5d,0x89,0x65,0x32,0xde, + 0xe6,0xe2,0x71,0x69,0x5c,0xff,0x1f,0xf0,0x78,0xbe,0x89,0x94,0xca,0x47,0xf2,0xbb, + 0xc4,0x8b,0x98,0x1a,0x7b,0xbf,0x73,0xc2,0x4d,0xd8,0x44,0xf,0xb8,0x23,0xde,0x42, + 0x4d,0xb9,0x6a,0x86,0x9b,0xc0,0x6f,0x2,0xd7,0xf4,0x7c,0x47,0x5c,0xb7,0xfc,0x4c, + 0xcf,0x2b,0x92,0x23,0x2d,0x95,0x57,0xab,0x2e,0x6f,0x51,0x9,0xd,0x1f,0xe0,0x90, + 0xb7,0x96,0x57,0x9a,0xe5,0xa3,0xe8,0xd8,0x1c,0xa6,0x61,0x1d,0xde,0x8f,0xc9,0x69, + 0x9c,0xc6,0x18,0xc7,0xe5,0x38,0x81,0x8d,0x12,0x87,0x61,0x7b,0x63,0x97,0x42,0xee, + 0xb8,0xa8,0xd8,0xc8,0xc7,0x72,0x23,0xb7,0xba,0x72,0x6c,0x26,0xb6,0xb7,0xf2,0x96, + 0xd,0x86,0xa3,0x8e,0xcf,0x83,0x6f,0xe7,0x4b,0x35,0x67,0x7a,0xd6,0x23,0x99,0x8b, + 0x33,0xf8,0x25,0xfe,0xbb,0x72,0xb3,0xe2,0x7f,0x69,0xae,0x76,0xed,0x13,0x7e,0x16, + 0x1c,0xfb,0x54,0xab,0x5,0xcc,0x7d,0x52,0x30,0x37,0x11,0x9f,0xd7,0x6,0x47,0x9c, + 0x3,0x73,0xc,0xb9,0x7a,0xe1,0x4,0x75,0xc3,0xa8,0x7e,0x48,0x9d,0x83,0xde,0x86, + 0xb3,0x8e,0x90,0xf5,0x84,0xba,0x1e,0x62,0x7c,0x56,0x5d,0xa1,0xd9,0x88,0x7d,0x7d, + 0xab,0xd4,0x2b,0x52,0x2e,0x85,0x1f,0x48,0xcb,0xd5,0x32,0x9f,0xe7,0xe4,0x5e,0xf1, + 0xa7,0xe1,0xa7,0x6a,0x1b,0x89,0x9f,0x93,0xd3,0xf0,0x35,0x1d,0xae,0x1b,0xf1,0x3d, + 0x72,0x12,0x3f,0xda,0xb0,0xb8,0x54,0x8e,0x13,0xee,0x6a,0xc4,0x5f,0x74,0xd9,0x6f, + 0xba,0x4b,0xff,0x16,0x2a,0xaa,0xaf,0xa0,0xe3,0xaa,0xd9,0xf3,0x8a,0xde,0xcf,0x88, + 0xab,0x96,0xb7,0xf4,0xdc,0xdc,0x5f,0x12,0xde,0xcc,0xe4,0x66,0x59,0xb7,0x75,0xd8, + 0x82,0xf8,0x1e,0xe,0x75,0x58,0x73,0xa3,0x79,0x72,0x72,0xd2,0xe3,0xd0,0xdf,0xa1, + 0x71,0xed,0xe6,0x88,0xc9,0x93,0x6d,0xa5,0x6a,0x47,0x1c,0xe6,0x89,0x13,0xfb,0x70, + 0xc8,0x9d,0xc3,0xf1,0xe9,0xf5,0xdf,0x29,0xed,0x8b,0xdc,0x9a,0xab,0x3d,0xf1,0x94, + 0xf6,0x45,0x2d,0x32,0xb2,0x91,0xe8,0x4f,0xf8,0x70,0x54,0xbd,0x3d,0xb5,0xed,0x7d, + 0x98,0x32,0x1f,0x46,0x9d,0x50,0xec,0x83,0x7f,0x4d,0x46,0xf5,0x5a,0xce,0x7,0x8f, + 0x8f,0xee,0x5a,0x52,0xd4,0x6,0xd9,0x35,0x10,0x75,0x5b,0xc1,0x7e,0x50,0xed,0xb7, + 0xb2,0xec,0xac,0x15,0x61,0x59,0xf2,0x25,0xf6,0x33,0x73,0x9e,0xb3,0x9f,0x94,0x2f, + 0xb4,0x5f,0x3c,0x97,0x8a,0x9e,0x90,0xcd,0xd6,0xc9,0x9e,0xf1,0x2b,0x3e,0xc,0x62, + 0x61,0xc9,0x9c,0x4f,0x1d,0xff,0xc0,0x7,0x16,0xb,0x5d,0xf3,0xe4,0xb0,0xcf,0xe7, + 0x20,0xeb,0xc3,0x94,0xb5,0x32,0xec,0xf,0xe6,0xc0,0x79,0xb6,0x5c,0xf3,0xe4,0x5c, + 0xff,0x58,0xbb,0x81,0xe6,0xcf,0xb,0xd9,0x8e,0xf6,0xad,0xba,0x31,0xe7,0x3,0x2a, + 0xfd,0xa5,0x71,0x3f,0x59,0x4f,0x3a,0xe3,0x20,0xfa,0x6d,0xe7,0xee,0x91,0x43,0x5d, + 0xeb,0x4c,0x8a,0x7a,0xa4,0x97,0xb3,0x7e,0x93,0x30,0xee,0x99,0xac,0x86,0x1e,0xde, + 0xf7,0xc4,0x99,0xe0,0xeb,0xd2,0x8,0x1f,0x20,0x51,0x83,0x47,0xfb,0xd1,0x3f,0xcb, + 0x36,0x6f,0xfb,0xf1,0x68,0xb5,0xa6,0x90,0xf7,0xac,0x71,0x24,0x79,0xbf,0x2a,0xbd, + 0x8f,0x79,0xee,0x65,0xaf,0xf6,0x5f,0xed,0xff,0x8b,0xf6,0x73,0x77,0x74,0x69,0xdf, + 0x2b,0xef,0xb1,0x6f,0x61,0x71,0xcc,0x68,0xbf,0x44,0x3e,0x67,0x3f,0xfa,0xe0,0xe1, + 0xa9,0xf2,0x16,0x21,0x6e,0x1e,0x10,0x9f,0xee,0x70,0xbb,0xec,0xfe,0xe4,0x79,0x22, + 0x5e,0xc3,0x35,0x71,0x45,0xc,0x3b,0x92,0xd9,0xb6,0xfc,0x2e,0x72,0x45,0xef,0x97, + 0x7b,0x3e,0x23,0xae,0xf6,0xed,0x25,0xc9,0xce,0x9a,0x39,0xd4,0x24,0x7e,0x7,0x8e, + 0x7c,0xd2,0xcc,0x2b,0xfc,0x3,0x9d,0x56,0xff,0xba, + +}; + +static const unsigned char qt_resource_name[] = { + // texture_vert.spv + 0x0,0x10, + 0xb,0x18,0x84,0x16, + 0x0,0x74, + 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x5f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x2e,0x0,0x73,0x0,0x70,0x0,0x76, + // menuicons + 0x0,0x9, + 0x5,0xbf,0x85,0xd3, + 0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73, + // settings + 0x0,0x8, + 0xc,0xbb,0xb,0xc3, + 0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73, + // texture_frag.spv + 0x0,0x10, + 0xf,0xf9,0x82,0x36, + 0x0,0x74, + 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x5f,0x0,0x66,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x2e,0x0,0x73,0x0,0x70,0x0,0x76, + // win + 0x0,0x3, + 0x0,0x0,0x7d,0xfe, + 0x0,0x77, + 0x0,0x69,0x0,0x6e, + // icons + 0x0,0x5, + 0x0,0x6f,0xa6,0x53, + 0x0,0x69, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73, + // cdrom.ico + 0x0,0x9, + 0x9,0x60,0x9c,0xff, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cartridge_empty.ico + 0x0,0x13, + 0x4,0x2c,0x17,0xbf, + 0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // ports.ico + 0x0,0x9, + 0x9,0xb6,0xa1,0x5f, + 0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // network_active.ico + 0x0,0x12, + 0xf,0xe0,0x43,0x7f, + 0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63, + 0x0,0x6f, + // mo_disabled.ico + 0x0,0xf, + 0x9,0xd7,0xb1,0xff, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cartridge.ico + 0x0,0xd, + 0x9,0xc7,0x3f,0xdf, + 0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette.ico + 0x0,0xc, + 0x6,0x99,0x1c,0x1f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525.ico + 0x0,0xe, + 0xe,0x9a,0xaa,0x9f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // hard_disk.ico + 0x0,0xd, + 0xd,0x8f,0x5,0x5f, + 0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette_empty_active.ico + 0x0,0x19, + 0x1,0xb0,0x48,0x5f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-green.ico + 0x0,0xf, + 0x9,0x97,0xdc,0x3f, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // network.ico + 0x0,0xb, + 0x6,0x67,0xd8,0x5f, + 0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_35_empty_active.ico + 0x0,0x1a, + 0x6,0xc3,0x3f,0x1f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-red.ico + 0x0,0xd, + 0xf,0xe5,0x99,0xff, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cdrom_empty.ico + 0x0,0xf, + 0x5,0x7f,0x59,0xff, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-gray.ico + 0x0,0xe, + 0xd,0xa9,0x26,0xbf, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525_empty_active.ico + 0x0,0x1b, + 0x2,0x5e,0xec,0x5f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // mo.ico + 0x0,0x6, + 0x7,0x42,0x4f,0x9f, + 0x0,0x6d, + 0x0,0x6f,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // mo_active.ico + 0x0,0xd, + 0x8,0x6e,0xbb,0x3f, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // sound.ico + 0x0,0x9, + 0xc,0x47,0xbb,0x5f, + 0x0,0x73, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_disabled.ico + 0x0,0x13, + 0xd,0xf,0xbc,0x1f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // other_peripherals.ico + 0x0,0x15, + 0x1,0x1d,0xb8,0xff, + 0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x5f,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x73, + 0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette_active.ico + 0x0,0x13, + 0x3,0x88,0xcb,0x5f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // input_devices.ico + 0x0,0x11, + 0xc,0xb2,0x89,0x5f, + 0x0,0x69, + 0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x5f,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + + // other_removable_devices.ico + 0x0,0x1b, + 0x8,0x86,0x3,0xdf, + 0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x5f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x5f,0x0,0x64, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cdrom_active.ico + 0x0,0x10, + 0xc,0xb8,0xd4,0xbf, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette_empty.ico + 0x0,0x12, + 0xa,0x90,0x58,0x1f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63, + 0x0,0x6f, + // cdrom_empty_active.ico + 0x0,0x16, + 0xf,0xd0,0x77,0xbf, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_35_active.ico + 0x0,0x14, + 0x0,0x33,0x70,0xff, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // display.ico + 0x0,0xb, + 0x2,0x5e,0x5b,0x7f, + 0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // mo_empty.ico + 0x0,0xc, + 0x9,0x32,0xf7,0x1f, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // zip.ico + 0x0,0x7, + 0x1,0x3,0x4e,0x9f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_35.ico + 0x0,0xd, + 0x8,0xc,0xa1,0xdf, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525_active.ico + 0x0,0x15, + 0x2,0x72,0x19,0x5f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65, + 0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // machine.ico + 0x0,0xb, + 0x0,0xa2,0xbc,0x7f, + 0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-yellow.ico + 0x0,0x10, + 0xe,0x11,0x6d,0xbf, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x79,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // zip_disabled.ico + 0x0,0x10, + 0x9,0xf6,0x21,0x3f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // zip_empty_active.ico + 0x0,0x14, + 0x6,0xbd,0xeb,0x9f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525_empty.ico + 0x0,0x14, + 0xa,0x93,0xcd,0x3f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_and_cdrom_drives.ico + 0x0,0x1b, + 0x2,0x82,0x2a,0x9f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x5f,0x0,0x63,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // storage_controllers.ico + 0x0,0x17, + 0xb,0x60,0xd4,0x7f, + 0x0,0x73, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x5f,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cdrom_disabled.ico + 0x0,0x12, + 0x3,0xb8,0x38,0x5f, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63, + 0x0,0x6f, + // floppy_35_empty.ico + 0x0,0x13, + 0x7,0xb7,0x23,0xbf, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // zip_active.ico + 0x0,0xe, + 0x0,0xe,0x9a,0xbf, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // network_empty.ico + 0x0,0x11, + 0xb,0x4d,0xd0,0x9f, + 0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + + // hard_disk_active.ico + 0x0,0x14, + 0x6,0xc7,0xe1,0x9f, + 0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // mo_empty_active.ico + 0x0,0x13, + 0x6,0x7d,0xa8,0xbf, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // zip_empty.ico + 0x0,0xd, + 0x5,0xb8,0xf5,0x1f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // acpi_shutdown.ico + 0x0,0x11, + 0xa,0x80,0x41,0x3f, + 0x0,0x61, + 0x0,0x63,0x0,0x70,0x0,0x69,0x0,0x5f,0x0,0x73,0x0,0x68,0x0,0x75,0x0,0x74,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + + // send_cad.ico + 0x0,0xc, + 0x6,0x4f,0xdb,0x3f, + 0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x5f,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // run.ico + 0x0,0x7, + 0x9,0xc1,0x4f,0x7f, + 0x0,0x72, + 0x0,0x75,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // hard_reset.ico + 0x0,0xe, + 0x8,0xd3,0x85,0xbf, + 0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // pause.ico + 0x0,0x9, + 0xc,0x98,0xa2,0x9f, + 0x0,0x70, + 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // settings.ico + 0x0,0xc, + 0xb,0xdf,0x39,0x9f, + 0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // send_cae.ico + 0x0,0xc, + 0x6,0x50,0xdb,0x3f, + 0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x5f,0x0,0x63,0x0,0x61,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + +}; + +static const unsigned char qt_resource_struct[] = { + // : + 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/menuicons + 0x0,0x0,0x0,0x26,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/texture_vert.spv + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, +0x0,0x0,0x1,0x86,0xdc,0x87,0x70,0xa1, + // :/settings + 0x0,0x0,0x0,0x3e,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/texture_frag.spv + 0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0xcc, +0x0,0x0,0x1,0x86,0xdc,0x87,0x70,0x9f, + // :/settings/win + 0x0,0x0,0x0,0x7a,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/settings/win/icons + 0x0,0x0,0x0,0x86,0x0,0x2,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x7, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/settings/win/icons/zip_active.ico + 0x0,0x0,0x7,0x22,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xf0,0x72, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x57, + // :/settings/win/icons/floppy_35_active.ico + 0x0,0x0,0x4,0xcc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc6,0xdd, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4b, + // :/settings/win/icons/machine.ico + 0x0,0x0,0x5,0x98,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xd7,0xe8, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x51, + // :/settings/win/icons/zip.ico + 0x0,0x0,0x5,0x34,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xcf,0xfc, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x57, + // :/settings/win/icons/other_peripherals.ico + 0x0,0x0,0x3,0x8a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xad,0x80, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x54, + // :/settings/win/icons/cassette_empty_active.ico + 0x0,0x0,0x1,0xc0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x24,0xd6, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/display.ico + 0x0,0x0,0x4,0xfa,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc9,0x7c, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4b, + // :/settings/win/icons/floppy_525_empty_active.ico + 0x0,0x0,0x2,0xd8,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x98,0x96, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4e, + // :/settings/win/icons/floppy_525_active.ico + 0x0,0x0,0x5,0x68,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xd5,0x52, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4d, + // :/settings/win/icons/floppy_and_cdrom_drives.ico + 0x0,0x0,0x6,0x5c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xe0,0xbf, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4e, + // :/settings/win/icons/cassette_active.ico + 0x0,0x0,0x3,0xba,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xb0,0x1b, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x48, + // :/settings/win/icons/cdrom_disabled.ico + 0x0,0x0,0x6,0xcc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xe9,0x2f, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4a, + // :/settings/win/icons/cartridge_empty.ico + 0x0,0x0,0x0,0xae,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x13, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x48, + // :/settings/win/icons/cdrom_empty.ico + 0x0,0x0,0x2,0x92,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x4,0x5e, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4a, + // :/settings/win/icons/zip_empty.ico + 0x0,0x0,0x7,0xc6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xff,0x43, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x58, + // :/settings/win/icons/network.ico + 0x0,0x0,0x2,0x1c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xb9,0x6b, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/mo_empty_active.ico + 0x0,0x0,0x7,0x9a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xfb,0x31, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/cassette.ico + 0x0,0x0,0x1,0x60,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1c,0x34, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x48, + // :/settings/win/icons/zip_empty_active.ico + 0x0,0x0,0x6,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xda,0xb8, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x58, + // :/settings/win/icons/floppy_35_empty_active.ico + 0x0,0x0,0x2,0x38,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xbe,0x59, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4c, + // :/settings/win/icons/hard_disk_active.ico + 0x0,0x0,0x7,0x6c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xf7,0x57, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x50, + // :/settings/win/icons/mo.ico + 0x0,0x0,0x3,0x14,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x9b,0x8c, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x51, + // :/settings/win/icons/floppy_35_empty.ico + 0x0,0x0,0x6,0xf6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xed,0xd5, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4c, + // :/settings/win/icons/floppy_35.ico + 0x0,0x0,0x5,0x48,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xd3,0x34, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4b, + // :/settings/win/icons/mo_active.ico + 0x0,0x0,0x3,0x26,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xa0,0x87, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x51, + // :/settings/win/icons/other_removable_devices.ico + 0x0,0x0,0x4,0xe,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xb7,0x4d, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x54, + // :/settings/win/icons/mo_empty.ico + 0x0,0x0,0x5,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xcc,0x76, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/cdrom.ico + 0x0,0x0,0x0,0x96,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xfc, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/86Box-green.ico + 0x0,0x0,0x1,0xf8,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x28,0x9, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x44, + // :/settings/win/icons/ports.ico + 0x0,0x0,0x0,0xda,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xb,0xee, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x55, + // :/settings/win/icons/cartridge.ico + 0x0,0x0,0x1,0x40,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1a,0x65, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x47, + // :/settings/win/icons/mo_disabled.ico + 0x0,0x0,0x1,0x1c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x15,0xdb, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/zip_disabled.ico + 0x0,0x0,0x5,0xda,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xd6,0x96, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x58, + // :/settings/win/icons/cassette_empty.ico + 0x0,0x0,0x4,0x70,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc0,0x37, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/floppy_525_empty.ico + 0x0,0x0,0x6,0x2e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xde,0x6d, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4d, + // :/settings/win/icons/network_empty.ico + 0x0,0x0,0x7,0x44,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xf3,0xdd, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x53, + // :/settings/win/icons/storage_controllers.ico + 0x0,0x0,0x6,0x98,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xe6,0xaf, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/settings/win/icons/sound.ico + 0x0,0x0,0x3,0x46,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xa5,0x7f, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/settings/win/icons/input_devices.ico + 0x0,0x0,0x3,0xe6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xb3,0x69, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x50, + // :/settings/win/icons/cdrom_active.ico + 0x0,0x0,0x4,0x4a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xbb,0xd6, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/floppy_disabled.ico + 0x0,0x0,0x3,0x5e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xa9,0xf, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4e, + // :/settings/win/icons/hard_disk.ico + 0x0,0x0,0x1,0xa0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x21,0x43, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4f, + // :/settings/win/icons/86Box-gray.ico + 0x0,0x0,0x2,0xb6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x8,0x1f, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x44, + // :/settings/win/icons/86Box-yellow.ico + 0x0,0x0,0x5,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xdb,0xd4, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x47, + // :/settings/win/icons/floppy_525.ico + 0x0,0x0,0x1,0x7e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1e,0xf9, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4d, + // :/settings/win/icons/cdrom_empty_active.ico + 0x0,0x0,0x4,0x9a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc2,0xa5, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4a, + // :/settings/win/icons/network_active.ico + 0x0,0x0,0x0,0xf2,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x11,0x24, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x53, + // :/settings/win/icons/86Box-red.ico + 0x0,0x0,0x2,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc1,0xc0, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x45, + // :/menuicons/win + 0x0,0x0,0x0,0x7a,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/menuicons/win/icons + 0x0,0x0,0x0,0x86,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x39, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/menuicons/win/icons/send_cad.ico + 0x0,0x0,0x8,0xe,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x6,0xa, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x55, + // :/menuicons/win/icons/send_cae.ico + 0x0,0x0,0x8,0x98,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x16,0x29, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/menuicons/win/icons/hard_reset.ico + 0x0,0x0,0x8,0x40,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0xc,0xa7, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x50, + // :/menuicons/win/icons/run.ico + 0x0,0x0,0x8,0x2c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0xa,0x4, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x55, + // :/menuicons/win/icons/acpi_shutdown.ico + 0x0,0x0,0x7,0xe6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x2,0x92, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x47, + // :/menuicons/win/icons/settings.ico + 0x0,0x0,0x8,0x7a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x11,0xd2, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/menuicons/win/icons/pause.ico + 0x0,0x0,0x8,0x62,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x10,0x68, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x54, + +}; + +#ifdef QT_NAMESPACE +# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name +# define QT_RCC_MANGLE_NAMESPACE0(x) x +# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b +# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) +# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ + QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) +#else +# define QT_RCC_PREPEND_NAMESPACE(name) name +# define QT_RCC_MANGLE_NAMESPACE(name) name +#endif + +#ifdef QT_NAMESPACE +namespace QT_NAMESPACE { +#endif + +bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); +bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); + +#if defined(__ELF__) || defined(__APPLE__) +static inline unsigned char qResourceFeatureZlib() +{ + extern const unsigned char qt_resourceFeatureZlib; + return qt_resourceFeatureZlib; +} +#else +unsigned char qResourceFeatureZlib(); +#endif + +#ifdef QT_NAMESPACE +} +#endif + +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_resources)(); +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_resources)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_resources)(); +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_resources)() +{ + int version = 3; + version += QT_RCC_PREPEND_NAMESPACE(qResourceFeatureZlib()); + QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +namespace { + struct initializer { + initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_resources)(); } + ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_resources)(); } + } dummy; +} diff --git a/src/build/src/qt/ui_autogen/deps b/src/build/src/qt/ui_autogen/deps new file mode 100644 index 000000000..385f0f413 --- /dev/null +++ b/src/build/src/qt/ui_autogen/deps @@ -0,0 +1,779 @@ +ui_autogen/timestamp: \ + C:/msys64/mingw32/include/GL/gl.h \ + C:/msys64/mingw32/include/_bsd_types.h \ + C:/msys64/mingw32/include/_mingw.h \ + C:/msys64/mingw32/include/_mingw_mac.h \ + C:/msys64/mingw32/include/_mingw_off_t.h \ + C:/msys64/mingw32/include/_mingw_secapi.h \ + C:/msys64/mingw32/include/_mingw_stat64.h \ + C:/msys64/mingw32/include/_mingw_stdarg.h \ + C:/msys64/mingw32/include/_mingw_unicode.h \ + C:/msys64/mingw32/include/_timeval.h \ + C:/msys64/mingw32/include/apiset.h \ + C:/msys64/mingw32/include/apisetcconv.h \ + C:/msys64/mingw32/include/assert.h \ + C:/msys64/mingw32/include/basetsd.h \ + C:/msys64/mingw32/include/bcrypt.h \ + C:/msys64/mingw32/include/bemapiset.h \ + C:/msys64/mingw32/include/c++/13.2.0/algorithm \ + C:/msys64/mingw32/include/c++/13.2.0/array \ + C:/msys64/mingw32/include/c++/13.2.0/atomic \ + C:/msys64/mingw32/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw32/include/c++/13.2.0/bit \ + C:/msys64/mingw32/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw32/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw32/include/c++/13.2.0/cctype \ + C:/msys64/mingw32/include/c++/13.2.0/clocale \ + C:/msys64/mingw32/include/c++/13.2.0/compare \ + C:/msys64/mingw32/include/c++/13.2.0/concepts \ + C:/msys64/mingw32/include/c++/13.2.0/cstddef \ + C:/msys64/mingw32/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw32/include/c++/13.2.0/cwchar \ + C:/msys64/mingw32/include/c++/13.2.0/cwctype \ + C:/msys64/mingw32/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw32/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw32/include/c++/13.2.0/exception \ + C:/msys64/mingw32/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw32/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw32/include/c++/13.2.0/functional \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw32/include/c++/13.2.0/i686-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw32/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw32/include/c++/13.2.0/ios \ + C:/msys64/mingw32/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw32/include/c++/13.2.0/iterator \ + C:/msys64/mingw32/include/c++/13.2.0/limits \ + C:/msys64/mingw32/include/c++/13.2.0/list \ + C:/msys64/mingw32/include/c++/13.2.0/map \ + C:/msys64/mingw32/include/c++/13.2.0/memory \ + C:/msys64/mingw32/include/c++/13.2.0/mutex \ + C:/msys64/mingw32/include/c++/13.2.0/new \ + C:/msys64/mingw32/include/c++/13.2.0/numbers \ + C:/msys64/mingw32/include/c++/13.2.0/numeric \ + C:/msys64/mingw32/include/c++/13.2.0/optional \ + C:/msys64/mingw32/include/c++/13.2.0/ostream \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw32/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw32/include/c++/13.2.0/streambuf \ + C:/msys64/mingw32/include/c++/13.2.0/string \ + C:/msys64/mingw32/include/c++/13.2.0/string_view \ + C:/msys64/mingw32/include/c++/13.2.0/tuple \ + C:/msys64/mingw32/include/c++/13.2.0/type_traits \ + C:/msys64/mingw32/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw32/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw32/include/c++/13.2.0/utility \ + C:/msys64/mingw32/include/c++/13.2.0/vector \ + C:/msys64/mingw32/include/cderr.h \ + C:/msys64/mingw32/include/cguid.h \ + C:/msys64/mingw32/include/combaseapi.h \ + C:/msys64/mingw32/include/commdlg.h \ + C:/msys64/mingw32/include/concurrencysal.h \ + C:/msys64/mingw32/include/corecrt.h \ + C:/msys64/mingw32/include/corecrt_startup.h \ + C:/msys64/mingw32/include/corecrt_stdio_config.h \ + C:/msys64/mingw32/include/corecrt_wstdlib.h \ + C:/msys64/mingw32/include/crtdefs.h \ + C:/msys64/mingw32/include/ctype.h \ + C:/msys64/mingw32/include/d3d9.h \ + C:/msys64/mingw32/include/d3d9caps.h \ + C:/msys64/mingw32/include/d3d9types.h \ + C:/msys64/mingw32/include/datetimeapi.h \ + C:/msys64/mingw32/include/dde.h \ + C:/msys64/mingw32/include/ddeml.h \ + C:/msys64/mingw32/include/debugapi.h \ + C:/msys64/mingw32/include/dlgs.h \ + C:/msys64/mingw32/include/dpapi.h \ + C:/msys64/mingw32/include/driverspecs.h \ + C:/msys64/mingw32/include/errhandlingapi.h \ + C:/msys64/mingw32/include/errno.h \ + C:/msys64/mingw32/include/excpt.h \ + C:/msys64/mingw32/include/fibersapi.h \ + C:/msys64/mingw32/include/fileapi.h \ + C:/msys64/mingw32/include/fltwinerror.h \ + C:/msys64/mingw32/include/guiddef.h \ + C:/msys64/mingw32/include/handleapi.h \ + C:/msys64/mingw32/include/heapapi.h \ + C:/msys64/mingw32/include/imm.h \ + C:/msys64/mingw32/include/inaddr.h \ + C:/msys64/mingw32/include/interlockedapi.h \ + C:/msys64/mingw32/include/ioapiset.h \ + C:/msys64/mingw32/include/jobapi.h \ + C:/msys64/mingw32/include/joystickapi.h \ + C:/msys64/mingw32/include/ktmtypes.h \ + C:/msys64/mingw32/include/libloaderapi.h \ + C:/msys64/mingw32/include/limits.h \ + C:/msys64/mingw32/include/locale.h \ + C:/msys64/mingw32/include/lzexpand.h \ + C:/msys64/mingw32/include/malloc.h \ + C:/msys64/mingw32/include/mciapi.h \ + C:/msys64/mingw32/include/mcx.h \ + C:/msys64/mingw32/include/memoryapi.h \ + C:/msys64/mingw32/include/minwinbase.h \ + C:/msys64/mingw32/include/minwindef.h \ + C:/msys64/mingw32/include/mmeapi.h \ + C:/msys64/mingw32/include/mmiscapi.h \ + C:/msys64/mingw32/include/mmiscapi2.h \ + C:/msys64/mingw32/include/mmsyscom.h \ + C:/msys64/mingw32/include/mmsystem.h \ + C:/msys64/mingw32/include/msxml.h \ + C:/msys64/mingw32/include/namedpipeapi.h \ + C:/msys64/mingw32/include/namespaceapi.h \ + C:/msys64/mingw32/include/nb30.h \ + C:/msys64/mingw32/include/ncrypt.h \ + C:/msys64/mingw32/include/oaidl.h \ + C:/msys64/mingw32/include/objbase.h \ + C:/msys64/mingw32/include/objidl.h \ + C:/msys64/mingw32/include/objidlbase.h \ + C:/msys64/mingw32/include/ole2.h \ + C:/msys64/mingw32/include/oleauto.h \ + C:/msys64/mingw32/include/oleidl.h \ + C:/msys64/mingw32/include/playsoundapi.h \ + C:/msys64/mingw32/include/poppack.h \ + C:/msys64/mingw32/include/process.h \ + C:/msys64/mingw32/include/processenv.h \ + C:/msys64/mingw32/include/processthreadsapi.h \ + C:/msys64/mingw32/include/processtopologyapi.h \ + C:/msys64/mingw32/include/profileapi.h \ + C:/msys64/mingw32/include/propidl.h \ + C:/msys64/mingw32/include/prsht.h \ + C:/msys64/mingw32/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw32/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw32/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw32/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw32/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw32/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw32/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw32/include/pshpack1.h \ + C:/msys64/mingw32/include/pshpack2.h \ + C:/msys64/mingw32/include/pshpack4.h \ + C:/msys64/mingw32/include/pshpack8.h \ + C:/msys64/mingw32/include/pthread.h \ + C:/msys64/mingw32/include/pthread_compat.h \ + C:/msys64/mingw32/include/pthread_signal.h \ + C:/msys64/mingw32/include/pthread_time.h \ + C:/msys64/mingw32/include/pthread_unistd.h \ + C:/msys64/mingw32/include/realtimeapiset.h \ + C:/msys64/mingw32/include/reason.h \ + C:/msys64/mingw32/include/rpc.h \ + C:/msys64/mingw32/include/rpcasync.h \ + C:/msys64/mingw32/include/rpcdce.h \ + C:/msys64/mingw32/include/rpcdcep.h \ + C:/msys64/mingw32/include/rpcndr.h \ + C:/msys64/mingw32/include/rpcnsi.h \ + C:/msys64/mingw32/include/rpcnsip.h \ + C:/msys64/mingw32/include/rpcnterr.h \ + C:/msys64/mingw32/include/rpcsal.h \ + C:/msys64/mingw32/include/sal.h \ + C:/msys64/mingw32/include/sdkddkver.h \ + C:/msys64/mingw32/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw32/include/sec_api/stdio_s.h \ + C:/msys64/mingw32/include/sec_api/stdlib_s.h \ + C:/msys64/mingw32/include/sec_api/stralign_s.h \ + C:/msys64/mingw32/include/sec_api/string_s.h \ + C:/msys64/mingw32/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw32/include/sec_api/wchar_s.h \ + C:/msys64/mingw32/include/securityappcontainer.h \ + C:/msys64/mingw32/include/securitybaseapi.h \ + C:/msys64/mingw32/include/servprov.h \ + C:/msys64/mingw32/include/shellapi.h \ + C:/msys64/mingw32/include/signal.h \ + C:/msys64/mingw32/include/specstrings.h \ + C:/msys64/mingw32/include/stdarg.h \ + C:/msys64/mingw32/include/stddef.h \ + C:/msys64/mingw32/include/stdint.h \ + C:/msys64/mingw32/include/stdio.h \ + C:/msys64/mingw32/include/stdlib.h \ + C:/msys64/mingw32/include/stralign.h \ + C:/msys64/mingw32/include/string.h \ + C:/msys64/mingw32/include/stringapiset.h \ + C:/msys64/mingw32/include/swprintf.inl \ + C:/msys64/mingw32/include/synchapi.h \ + C:/msys64/mingw32/include/sys/timeb.h \ + C:/msys64/mingw32/include/sys/types.h \ + C:/msys64/mingw32/include/sysinfoapi.h \ + C:/msys64/mingw32/include/systemtopologyapi.h \ + C:/msys64/mingw32/include/threadpoolapiset.h \ + C:/msys64/mingw32/include/threadpoollegacyapiset.h \ + C:/msys64/mingw32/include/time.h \ + C:/msys64/mingw32/include/timeapi.h \ + C:/msys64/mingw32/include/timezoneapi.h \ + C:/msys64/mingw32/include/tvout.h \ + C:/msys64/mingw32/include/unknwn.h \ + C:/msys64/mingw32/include/unknwnbase.h \ + C:/msys64/mingw32/include/urlmon.h \ + C:/msys64/mingw32/include/utilapiset.h \ + C:/msys64/mingw32/include/vadefs.h \ + C:/msys64/mingw32/include/virtdisk.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h264std.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h264std_decode.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h265std.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codec_h265std_decode.h \ + C:/msys64/mingw32/include/vk_video/vulkan_video_codecs_common.h \ + C:/msys64/mingw32/include/vulkan/vk_platform.h \ + C:/msys64/mingw32/include/vulkan/vulkan.h \ + C:/msys64/mingw32/include/vulkan/vulkan_core.h \ + C:/msys64/mingw32/include/wchar.h \ + C:/msys64/mingw32/include/wctype.h \ + C:/msys64/mingw32/include/winapifamily.h \ + C:/msys64/mingw32/include/winbase.h \ + C:/msys64/mingw32/include/wincon.h \ + C:/msys64/mingw32/include/wincrypt.h \ + C:/msys64/mingw32/include/windef.h \ + C:/msys64/mingw32/include/windows.h \ + C:/msys64/mingw32/include/winefs.h \ + C:/msys64/mingw32/include/winerror.h \ + C:/msys64/mingw32/include/wingdi.h \ + C:/msys64/mingw32/include/winioctl.h \ + C:/msys64/mingw32/include/winnetwk.h \ + C:/msys64/mingw32/include/winnls.h \ + C:/msys64/mingw32/include/winnt.h \ + C:/msys64/mingw32/include/winperf.h \ + C:/msys64/mingw32/include/winreg.h \ + C:/msys64/mingw32/include/winscard.h \ + C:/msys64/mingw32/include/winsmcrd.h \ + C:/msys64/mingw32/include/winsock.h \ + C:/msys64/mingw32/include/winspool.h \ + C:/msys64/mingw32/include/winsvc.h \ + C:/msys64/mingw32/include/winuser.h \ + C:/msys64/mingw32/include/winver.h \ + C:/msys64/mingw32/include/wnnc.h \ + C:/msys64/mingw32/include/wow64apiset.h \ + C:/msys64/mingw32/include/wtypes.h \ + C:/msys64/mingw32/include/wtypesbase.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/QAbstractNativeEventFilter \ + C:/msys64/mingw32/qt5-static/include/QtCore/QByteArray \ + C:/msys64/mingw32/qt5-static/include/QtCore/QEvent \ + C:/msys64/mingw32/qt5-static/include/QtCore/QList \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMap \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMargins \ + C:/msys64/mingw32/qt5-static/include/QtCore/QMimeData \ + C:/msys64/mingw32/qt5-static/include/QtCore/QObject \ + C:/msys64/mingw32/qt5-static/include/QtCore/QRect \ + C:/msys64/mingw32/qt5-static/include/QtCore/QScopedPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/QSharedDataPointer \ + C:/msys64/mingw32/qt5-static/include/QtCore/QString \ + C:/msys64/mingw32/qt5-static/include/QtCore/QTimer \ + C:/msys64/mingw32/qt5-static/include/QtCore/QTranslator \ + C:/msys64/mingw32/qt5-static/include/QtCore/QVector \ + C:/msys64/mingw32/qt5-static/include/QtCore/qabstractnativeeventfilter.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qarraydata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbasictimer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qchar.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qconfig.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreapplication.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qcoreevent.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdatastream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qdebug.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qeventloop.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfile.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qfiledevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qflags.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhash.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiodevice.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qiterator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qline.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlocale.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qlogging.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmap.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmargins.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmetatype.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qmimedata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnamespace.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qnumeric.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobject_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpair.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qpoint.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrect.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qrefcount.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qregexp.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qset.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qshareddata.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsize.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstring.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringlist.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringliteral.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qstringview.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsysinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qt_windows.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtcore-config.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtextstream.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtimer.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtranslator.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qurl.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvariant.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qvector.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversionnumber.h \ + C:/msys64/mingw32/qt5-static/include/QtCore/qversiontagging.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/QCursor \ + C:/msys64/mingw32/qt5-static/include/QtGui/QFocusEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/QImage \ + C:/msys64/mingw32/qt5-static/include/QtGui/QKeyEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/QMatrix3x3 \ + C:/msys64/mingw32/qt5-static/include/QtGui/QMatrix4x4 \ + C:/msys64/mingw32/qt5-static/include/QtGui/QMouseEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLBuffer \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLContext \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLExtraFunctions \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLFunctions \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLPixelTransferOptions \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShader \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLTexture \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLTextureBlitter \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLVertexArrayObject \ + C:/msys64/mingw32/qt5-static/include/QtGui/QOpenGLWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPaintDevice \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPaintDeviceWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QPainter \ + C:/msys64/mingw32/qt5-static/include/QtGui/QRasterWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QResizeEvent \ + C:/msys64/mingw32/qt5-static/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw32/qt5-static/include/QtGui/QVulkanWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/QWindow \ + C:/msys64/mingw32/qt5-static/include/QtGui/qbrush.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcolor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qcursor.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qevent.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfont.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontinfo.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qguiapplication.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qicon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qimage.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qinputmethod.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qkeysequence.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengl.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglbuffer.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglext.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglextrafunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglpixeltransferoptions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengltexture.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopengltextureblitter.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglvertexarrayobject.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qopenglwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpaintdevicewindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpainter.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpalette.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpen.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixelformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpixmap.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qpolygon.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qquaternion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrasterwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qregion.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgb.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qrgba64.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurface.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtextoption.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtgui-config.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qtransform.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector2d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector3d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvector4d.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvulkaninstance.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qvulkanwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw32/qt5-static/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/QLocalSocket \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qabstractsocket.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qlocalsocket.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qtnetwork-config.h \ + C:/msys64/mingw32/qt5-static/include/QtNetwork/qtnetworkglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtOpenGLExtensions/QOpenGLExtensions \ + C:/msys64/mingw32/qt5-static/include/QtOpenGLExtensions/qopenglextensions.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QApplication \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QDialog \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QLabel \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QMainWindow \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QStackedWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/QWidget \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qapplication.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qdialog.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qframe.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qlabel.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qmainwindow.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qstackedwidget.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtabwidget.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw32/qt5-static/include/QtWidgets/qwidget.h \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5Config.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5/Qt5ModuleLocation.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Core/Qt5CoreMacros.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5PacketProtocol/Qt5PacketProtocolConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QDebugMessageServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlPreviewServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QQuickProfilerAdapterFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5QmlModels/Qt5QmlModelsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboardConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardHangulPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardOpenWnnPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardPinyinPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardTCImePlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VirtualKeyboard/Qt5VirtualKeyboard_QtVirtualKeyboardThaiPlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5VulkanSupport/Qt5VulkanSupportConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin_Import.cpp \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfig.cmake \ + C:/msys64/mingw32/qt5-static/lib/cmake/Qt5WindowsUIAutomationSupport/Qt5WindowsUIAutomationSupportConfigVersion.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CMakeParseArguments.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CheckCSourceCompiles.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CheckIncludeFile.cmake \ + C:/msys64/mingw32/share/cmake/Modules/CheckLibraryExists.cmake \ + C:/msys64/mingw32/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \ + C:/msys64/mingw32/share/cmake/Modules/FindPackageMessage.cmake \ + C:/msys64/mingw32/share/cmake/Modules/FindThreads.cmake \ + C:/msys64/mingw32/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/build/src/qt/ui_autogen/moc_predefs.h \ + K:/emu_dev/86Box_clean_ex_k/src/include/86box/86box.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_cdrom.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddrive_common.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddrive_common.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_models_common.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_models_common.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings_bus_tracking.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings_bus_tracking.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_styleoverride.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_styleoverride.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_ui.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_util.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_util.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.ui \ + C:/msys64/mingw32/bin/cmake.exe diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_deviceconfig.h b/src/build/src/qt/ui_autogen/include/ui_qt_deviceconfig.h new file mode 100644 index 000000000..abb1be4a1 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_deviceconfig.h @@ -0,0 +1,77 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_deviceconfig.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_DEVICECONFIG_H +#define UI_QT_DEVICECONFIG_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_DeviceConfig +{ +public: + QVBoxLayout *verticalLayout; + QFormLayout *formLayout; + QFrame *line; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *DeviceConfig) + { + if (DeviceConfig->objectName().isEmpty()) + DeviceConfig->setObjectName(QString::fromUtf8("DeviceConfig")); + DeviceConfig->resize(400, 300); + verticalLayout = new QVBoxLayout(DeviceConfig); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + formLayout = new QFormLayout(); + formLayout->setObjectName(QString::fromUtf8("formLayout")); + + verticalLayout->addLayout(formLayout); + + line = new QFrame(DeviceConfig); + line->setObjectName(QString::fromUtf8("line")); + line->setFrameShape(QFrame::HLine); + line->setFrameShadow(QFrame::Sunken); + + verticalLayout->addWidget(line); + + buttonBox = new QDialogButtonBox(DeviceConfig); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + + retranslateUi(DeviceConfig); + QObject::connect(buttonBox, SIGNAL(accepted()), DeviceConfig, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), DeviceConfig, SLOT(reject())); + + QMetaObject::connectSlotsByName(DeviceConfig); + } // setupUi + + void retranslateUi(QDialog *DeviceConfig) + { + DeviceConfig->setWindowTitle(QCoreApplication::translate("DeviceConfig", "Dialog", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class DeviceConfig: public Ui_DeviceConfig {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_DEVICECONFIG_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_filefield.h b/src/build/src/qt/ui_autogen/include/ui_qt_filefield.h new file mode 100644 index 000000000..ee09d8ee7 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_filefield.h @@ -0,0 +1,80 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_filefield.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_FILEFIELD_H +#define UI_QT_FILEFIELD_H + +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_FileField +{ +public: + QHBoxLayout *horizontalLayout; + QLineEdit *label; + QPushButton *pushButton; + + void setupUi(QWidget *FileField) + { + if (FileField->objectName().isEmpty()) + FileField->setObjectName(QString::fromUtf8("FileField")); + FileField->resize(354, 25); + QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(FileField->sizePolicy().hasHeightForWidth()); + FileField->setSizePolicy(sizePolicy); + horizontalLayout = new QHBoxLayout(FileField); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + horizontalLayout->setContentsMargins(0, 0, 0, 0); + label = new QLineEdit(FileField); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy1); + + horizontalLayout->addWidget(label); + + pushButton = new QPushButton(FileField); + pushButton->setObjectName(QString::fromUtf8("pushButton")); + sizePolicy.setHeightForWidth(pushButton->sizePolicy().hasHeightForWidth()); + pushButton->setSizePolicy(sizePolicy); + + horizontalLayout->addWidget(pushButton); + + horizontalLayout->setStretch(0, 3); + horizontalLayout->setStretch(1, 1); + + retranslateUi(FileField); + + QMetaObject::connectSlotsByName(FileField); + } // setupUi + + void retranslateUi(QWidget *FileField) + { + FileField->setWindowTitle(QCoreApplication::translate("FileField", "Form", nullptr)); + pushButton->setText(QCoreApplication::translate("FileField", "&Specify...", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class FileField: public Ui_FileField {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_FILEFIELD_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_harddiskdialog.h b/src/build/src/qt/ui_autogen/include/ui_qt_harddiskdialog.h new file mode 100644 index 000000000..5d3bf9013 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_harddiskdialog.h @@ -0,0 +1,259 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_harddiskdialog.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_HARDDISKDIALOG_H +#define UI_QT_HARDDISKDIALOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "qt_filefield.hpp" + +QT_BEGIN_NAMESPACE + +class Ui_HarddiskDialog +{ +public: + QGridLayout *gridLayout; + FileField *fileField; + QLabel *label_7; + QLabel *label_9; + QComboBox *comboBoxSpeed; + QLabel *label_5; + QLabel *label_6; + QLineEdit *lineEditCylinders; + QLineEdit *lineEditSize; + QLabel *label_3; + QComboBox *comboBoxChannel; + QDialogButtonBox *buttonBox; + QSpacerItem *verticalSpacer; + QLabel *label_2; + QLineEdit *lineEditSectors; + QLabel *labelFormat; + QLabel *label_4; + QComboBox *comboBoxType; + QLabel *label_8; + QComboBox *comboBoxFormat; + QComboBox *comboBoxBlockSize; + QLineEdit *lineEditHeads; + QComboBox *comboBoxBus; + QLabel *labelBlockSize; + QLabel *label; + QProgressBar *progressBar; + + void setupUi(QDialog *HarddiskDialog) + { + if (HarddiskDialog->objectName().isEmpty()) + HarddiskDialog->setObjectName(QString::fromUtf8("HarddiskDialog")); + HarddiskDialog->resize(421, 269); + QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(HarddiskDialog->sizePolicy().hasHeightForWidth()); + HarddiskDialog->setSizePolicy(sizePolicy); + HarddiskDialog->setMinimumSize(QSize(421, 269)); + HarddiskDialog->setMaximumSize(QSize(421, 269)); + gridLayout = new QGridLayout(HarddiskDialog); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + fileField = new FileField(HarddiskDialog); + fileField->setObjectName(QString::fromUtf8("fileField")); + + gridLayout->addWidget(fileField, 0, 1, 1, 5); + + label_7 = new QLabel(HarddiskDialog); + label_7->setObjectName(QString::fromUtf8("label_7")); + + gridLayout->addWidget(label_7, 5, 4, 1, 1); + + label_9 = new QLabel(HarddiskDialog); + label_9->setObjectName(QString::fromUtf8("label_9")); + + gridLayout->addWidget(label_9, 6, 4, 1, 1); + + comboBoxSpeed = new QComboBox(HarddiskDialog); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxSpeed, 6, 5, 1, 1); + + label_5 = new QLabel(HarddiskDialog); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 3, 4, 1, 1); + + label_6 = new QLabel(HarddiskDialog); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout->addWidget(label_6, 4, 2, 1, 1); + + lineEditCylinders = new QLineEdit(HarddiskDialog); + lineEditCylinders->setObjectName(QString::fromUtf8("lineEditCylinders")); + sizePolicy.setHeightForWidth(lineEditCylinders->sizePolicy().hasHeightForWidth()); + lineEditCylinders->setSizePolicy(sizePolicy); + lineEditCylinders->setMaximumSize(QSize(64, 16777215)); + + gridLayout->addWidget(lineEditCylinders, 3, 1, 1, 1); + + lineEditSize = new QLineEdit(HarddiskDialog); + lineEditSize->setObjectName(QString::fromUtf8("lineEditSize")); + sizePolicy.setHeightForWidth(lineEditSize->sizePolicy().hasHeightForWidth()); + lineEditSize->setSizePolicy(sizePolicy); + lineEditSize->setMaximumSize(QSize(64, 16777215)); + + gridLayout->addWidget(lineEditSize, 4, 1, 1, 1); + + label_3 = new QLabel(HarddiskDialog); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 4, 0, 1, 1); + + comboBoxChannel = new QComboBox(HarddiskDialog); + comboBoxChannel->setObjectName(QString::fromUtf8("comboBoxChannel")); + comboBoxChannel->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxChannel, 5, 5, 1, 1); + + buttonBox = new QDialogButtonBox(HarddiskDialog); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 11, 0, 1, 6); + + verticalSpacer = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 9, 0, 1, 6); + + label_2 = new QLabel(HarddiskDialog); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 3, 0, 1, 1); + + lineEditSectors = new QLineEdit(HarddiskDialog); + lineEditSectors->setObjectName(QString::fromUtf8("lineEditSectors")); + sizePolicy.setHeightForWidth(lineEditSectors->sizePolicy().hasHeightForWidth()); + lineEditSectors->setSizePolicy(sizePolicy); + lineEditSectors->setMaximumSize(QSize(64, 16777215)); + lineEditSectors->setMaxLength(32767); + + gridLayout->addWidget(lineEditSectors, 3, 5, 1, 1); + + labelFormat = new QLabel(HarddiskDialog); + labelFormat->setObjectName(QString::fromUtf8("labelFormat")); + + gridLayout->addWidget(labelFormat, 6, 0, 1, 1); + + label_4 = new QLabel(HarddiskDialog); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 3, 2, 1, 1); + + comboBoxType = new QComboBox(HarddiskDialog); + comboBoxType->setObjectName(QString::fromUtf8("comboBoxType")); + comboBoxType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxType, 4, 3, 1, 3); + + label_8 = new QLabel(HarddiskDialog); + label_8->setObjectName(QString::fromUtf8("label_8")); + + gridLayout->addWidget(label_8, 5, 0, 1, 1); + + comboBoxFormat = new QComboBox(HarddiskDialog); + comboBoxFormat->setObjectName(QString::fromUtf8("comboBoxFormat")); + comboBoxFormat->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxFormat, 6, 1, 1, 3); + + comboBoxBlockSize = new QComboBox(HarddiskDialog); + comboBoxBlockSize->setObjectName(QString::fromUtf8("comboBoxBlockSize")); + comboBoxBlockSize->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxBlockSize, 7, 1, 1, 3); + + lineEditHeads = new QLineEdit(HarddiskDialog); + lineEditHeads->setObjectName(QString::fromUtf8("lineEditHeads")); + sizePolicy.setHeightForWidth(lineEditHeads->sizePolicy().hasHeightForWidth()); + lineEditHeads->setSizePolicy(sizePolicy); + lineEditHeads->setMaximumSize(QSize(64, 16777215)); + lineEditHeads->setMaxLength(32767); + + gridLayout->addWidget(lineEditHeads, 3, 3, 1, 1); + + comboBoxBus = new QComboBox(HarddiskDialog); + comboBoxBus->setObjectName(QString::fromUtf8("comboBoxBus")); + comboBoxBus->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxBus, 5, 1, 1, 3); + + labelBlockSize = new QLabel(HarddiskDialog); + labelBlockSize->setObjectName(QString::fromUtf8("labelBlockSize")); + + gridLayout->addWidget(labelBlockSize, 7, 0, 1, 1); + + label = new QLabel(HarddiskDialog); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + progressBar = new QProgressBar(HarddiskDialog); + progressBar->setObjectName(QString::fromUtf8("progressBar")); + progressBar->setVisible(false); + progressBar->setValue(0); + progressBar->setTextVisible(true); + + gridLayout->addWidget(progressBar, 8, 0, 1, 6); + + QWidget::setTabOrder(lineEditCylinders, lineEditHeads); + QWidget::setTabOrder(lineEditHeads, lineEditSectors); + QWidget::setTabOrder(lineEditSectors, lineEditSize); + QWidget::setTabOrder(lineEditSize, comboBoxType); + QWidget::setTabOrder(comboBoxType, comboBoxBus); + QWidget::setTabOrder(comboBoxBus, comboBoxChannel); + QWidget::setTabOrder(comboBoxChannel, comboBoxFormat); + QWidget::setTabOrder(comboBoxFormat, comboBoxBlockSize); + + retranslateUi(HarddiskDialog); + QObject::connect(buttonBox, SIGNAL(accepted()), HarddiskDialog, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), HarddiskDialog, SLOT(reject())); + + QMetaObject::connectSlotsByName(HarddiskDialog); + } // setupUi + + void retranslateUi(QDialog *HarddiskDialog) + { + HarddiskDialog->setWindowTitle(QCoreApplication::translate("HarddiskDialog", "Dialog", nullptr)); + label_7->setText(QCoreApplication::translate("HarddiskDialog", "Channel:", nullptr)); + label_9->setText(QCoreApplication::translate("HarddiskDialog", "Speed:", nullptr)); + label_5->setText(QCoreApplication::translate("HarddiskDialog", "Sectors:", nullptr)); + label_6->setText(QCoreApplication::translate("HarddiskDialog", "Type:", nullptr)); + label_3->setText(QCoreApplication::translate("HarddiskDialog", "Size (MB):", nullptr)); + label_2->setText(QCoreApplication::translate("HarddiskDialog", "Cylinders:", nullptr)); + labelFormat->setText(QCoreApplication::translate("HarddiskDialog", "Image Format:", nullptr)); + label_4->setText(QCoreApplication::translate("HarddiskDialog", "Heads:", nullptr)); + label_8->setText(QCoreApplication::translate("HarddiskDialog", "Bus:", nullptr)); + labelBlockSize->setText(QCoreApplication::translate("HarddiskDialog", "Block Size:", nullptr)); + label->setText(QCoreApplication::translate("HarddiskDialog", "File name:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class HarddiskDialog: public Ui_HarddiskDialog {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_HARDDISKDIALOG_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h b/src/build/src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h new file mode 100644 index 000000000..21d8c240a --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h @@ -0,0 +1,88 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_joystickconfiguration.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_JOYSTICKCONFIGURATION_H +#define UI_QT_JOYSTICKCONFIGURATION_H + +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_JoystickConfiguration +{ +public: + QGridLayout *gridLayout; + QGridLayout *ct; + QDialogButtonBox *buttonBox; + QComboBox *comboBoxDevice; + QLabel *label_2; + QSpacerItem *verticalSpacer; + + void setupUi(QDialog *JoystickConfiguration) + { + if (JoystickConfiguration->objectName().isEmpty()) + JoystickConfiguration->setObjectName(QString::fromUtf8("JoystickConfiguration")); + JoystickConfiguration->resize(400, 300); + gridLayout = new QGridLayout(JoystickConfiguration); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + ct = new QGridLayout(); + ct->setObjectName(QString::fromUtf8("ct")); + + gridLayout->addLayout(ct, 1, 0, 1, 2); + + buttonBox = new QDialogButtonBox(JoystickConfiguration); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 3, 1, 1, 1); + + comboBoxDevice = new QComboBox(JoystickConfiguration); + comboBoxDevice->setObjectName(QString::fromUtf8("comboBoxDevice")); + comboBoxDevice->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxDevice, 0, 1, 1, 1); + + label_2 = new QLabel(JoystickConfiguration); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 0, 0, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 2, 1, 1, 1); + + + retranslateUi(JoystickConfiguration); + QObject::connect(buttonBox, SIGNAL(accepted()), JoystickConfiguration, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), JoystickConfiguration, SLOT(reject())); + + QMetaObject::connectSlotsByName(JoystickConfiguration); + } // setupUi + + void retranslateUi(QDialog *JoystickConfiguration) + { + JoystickConfiguration->setWindowTitle(QCoreApplication::translate("JoystickConfiguration", "Joystick configuration", nullptr)); + label_2->setText(QCoreApplication::translate("JoystickConfiguration", "Device", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class JoystickConfiguration: public Ui_JoystickConfiguration {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_JOYSTICKCONFIGURATION_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_mainwindow.h b/src/build/src/qt/ui_autogen/include/ui_qt_mainwindow.h new file mode 100644 index 000000000..3e42fe443 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_mainwindow.h @@ -0,0 +1,652 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_mainwindow.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_MAINWINDOW_H +#define UI_QT_MAINWINDOW_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "qt_rendererstack.hpp" + +QT_BEGIN_NAMESPACE + +class Ui_MainWindow +{ +public: + QAction *actionAuto_pause; + QAction *actionKeyboard_requires_capture; + QAction *actionRight_CTRL_is_left_ALT; + QAction *actionHard_Reset; + QAction *actionCtrl_Alt_Del; + QAction *actionCtrl_Alt_Esc; + QAction *actionPause; + QAction *actionExit; + QAction *actionSettings; + QAction *actionFullscreen; + QAction *actionSoftware_Renderer; + QAction *actionHardware_Renderer_OpenGL; + QAction *actionHardware_Renderer_OpenGL_ES; + QAction *actionHide_status_bar; + QAction *actionResizable_window; + QAction *actionRemember_size_and_position; + QAction *actionSpecify_dimensions; + QAction *actionForce_4_3_display_ratio; + QAction *actionHiDPI_scaling; + QAction *actionCGA_PCjr_Tandy_EGA_S_VGA_overscan; + QAction *actionChange_contrast_for_monochrome_display; + QAction *action0_5x; + QAction *action1x; + QAction *action1_5x; + QAction *action2x; + QAction *action3x; + QAction *action4x; + QAction *action5x; + QAction *action6x; + QAction *action7x; + QAction *action8x; + QAction *actionNearest; + QAction *actionLinear; + QAction *actionFullScreen_stretch; + QAction *actionFullScreen_43; + QAction *actionFullScreen_keepRatio; + QAction *actionFullScreen_int; + QAction *actionFullScreen_int43; + QAction *actionInverted_VGA_monitor; + QAction *actionRGB_Color; + QAction *actionRGB_Grayscale; + QAction *actionAmber_monitor; + QAction *actionGreen_monitor; + QAction *actionWhite_monitor; + QAction *actionBT601_NTSC_PAL; + QAction *actionBT709_HDTV; + QAction *actionAverage; + QAction *actionAbout_Qt; + QAction *actionAbout_86Box; + QAction *actionDocumentation; + QAction *actionUpdate_status_bar_icons; + QAction *actionTake_screenshot; + QAction *actionSound_gain; + QAction *actionOpenGL_3_0_Core; + QAction *actionPreferences; + QAction *actionEnable_Discord_integration; + QAction *actionHide_tool_bar; + QAction *actionACPI_Shutdown; + QAction *actionBegin_trace; + QAction *actionEnd_trace; + QAction *actionRenderer_options; + QAction *actionVulkan; + QAction *actionMCA_devices; + QAction *actionDirect3D_9; + QAction *actionShow_non_primary_monitors; + QAction *actionVNC; + QAction *actionOpen_screenshots_folder; + QAction *actionApply_fullscreen_stretch_mode_when_maximized; + QAction *actionCursor_Puck; + QAction *actionPen; + QWidget *centralwidget; + QVBoxLayout *verticalLayout; + RendererStack *stackedWidget; + QMenuBar *menubar; + QMenu *menuAction; + QMenu *menuTablet_tool; + QMenu *menuTools; + QMenu *menuView; + QMenu *menuRenderer; + QMenu *menuWindow_scale_factor; + QMenu *menuFilter_method; + QMenu *menuFullscreen_stretch_mode; + QMenu *menuEGA_S_VGA_settings; + QMenu *menuVGA_screen_type; + QMenu *menuGrayscale_conversion_type; + QMenu *menuMedia; + QMenu *menuAbout; + QStatusBar *statusbar; + QToolBar *toolBar; + + void setupUi(QMainWindow *MainWindow) + { + if (MainWindow->objectName().isEmpty()) + MainWindow->setObjectName(QString::fromUtf8("MainWindow")); + MainWindow->resize(724, 427); + actionAuto_pause = new QAction(MainWindow); + actionAuto_pause->setObjectName(QString::fromUtf8("actionAuto_pause")); + actionAuto_pause->setCheckable(true); + actionKeyboard_requires_capture = new QAction(MainWindow); + actionKeyboard_requires_capture->setObjectName(QString::fromUtf8("actionKeyboard_requires_capture")); + actionKeyboard_requires_capture->setCheckable(true); + actionRight_CTRL_is_left_ALT = new QAction(MainWindow); + actionRight_CTRL_is_left_ALT->setObjectName(QString::fromUtf8("actionRight_CTRL_is_left_ALT")); + actionRight_CTRL_is_left_ALT->setCheckable(true); + actionHard_Reset = new QAction(MainWindow); + actionHard_Reset->setObjectName(QString::fromUtf8("actionHard_Reset")); + QIcon icon; + icon.addFile(QString::fromUtf8(":/menuicons/win/icons/hard_reset.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionHard_Reset->setIcon(icon); + actionHard_Reset->setIconVisibleInMenu(false); + actionCtrl_Alt_Del = new QAction(MainWindow); + actionCtrl_Alt_Del->setObjectName(QString::fromUtf8("actionCtrl_Alt_Del")); + QIcon icon1; + icon1.addFile(QString::fromUtf8(":/menuicons/win/icons/send_cad.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionCtrl_Alt_Del->setIcon(icon1); + actionCtrl_Alt_Del->setIconVisibleInMenu(false); + actionCtrl_Alt_Del->setShortcutVisibleInContextMenu(false); + actionCtrl_Alt_Esc = new QAction(MainWindow); + actionCtrl_Alt_Esc->setObjectName(QString::fromUtf8("actionCtrl_Alt_Esc")); + QIcon icon2; + icon2.addFile(QString::fromUtf8(":/menuicons/win/icons/send_cae.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionCtrl_Alt_Esc->setIcon(icon2); + actionCtrl_Alt_Esc->setIconVisibleInMenu(false); + actionPause = new QAction(MainWindow); + actionPause->setObjectName(QString::fromUtf8("actionPause")); + actionPause->setCheckable(true); + QIcon icon3; + icon3.addFile(QString::fromUtf8(":/menuicons/win/icons/pause.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionPause->setIcon(icon3); + actionPause->setIconVisibleInMenu(false); + actionExit = new QAction(MainWindow); + actionExit->setObjectName(QString::fromUtf8("actionExit")); + actionSettings = new QAction(MainWindow); + actionSettings->setObjectName(QString::fromUtf8("actionSettings")); + QIcon icon4; + icon4.addFile(QString::fromUtf8(":/menuicons/win/icons/settings.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionSettings->setIcon(icon4); + actionSettings->setMenuRole(QAction::NoRole); + actionSettings->setIconVisibleInMenu(false); + actionFullscreen = new QAction(MainWindow); + actionFullscreen->setObjectName(QString::fromUtf8("actionFullscreen")); + actionSoftware_Renderer = new QAction(MainWindow); + actionSoftware_Renderer->setObjectName(QString::fromUtf8("actionSoftware_Renderer")); + actionSoftware_Renderer->setCheckable(true); + actionSoftware_Renderer->setProperty("vid_api", QVariant(0)); + actionHardware_Renderer_OpenGL = new QAction(MainWindow); + actionHardware_Renderer_OpenGL->setObjectName(QString::fromUtf8("actionHardware_Renderer_OpenGL")); + actionHardware_Renderer_OpenGL->setCheckable(true); + actionHardware_Renderer_OpenGL->setProperty("vid_api", QVariant(1)); + actionHardware_Renderer_OpenGL_ES = new QAction(MainWindow); + actionHardware_Renderer_OpenGL_ES->setObjectName(QString::fromUtf8("actionHardware_Renderer_OpenGL_ES")); + actionHardware_Renderer_OpenGL_ES->setCheckable(true); + actionHardware_Renderer_OpenGL_ES->setProperty("vid_api", QVariant(2)); + actionHide_status_bar = new QAction(MainWindow); + actionHide_status_bar->setObjectName(QString::fromUtf8("actionHide_status_bar")); + actionHide_status_bar->setCheckable(true); + actionResizable_window = new QAction(MainWindow); + actionResizable_window->setObjectName(QString::fromUtf8("actionResizable_window")); + actionResizable_window->setCheckable(true); + actionRemember_size_and_position = new QAction(MainWindow); + actionRemember_size_and_position->setObjectName(QString::fromUtf8("actionRemember_size_and_position")); + actionRemember_size_and_position->setCheckable(true); + actionSpecify_dimensions = new QAction(MainWindow); + actionSpecify_dimensions->setObjectName(QString::fromUtf8("actionSpecify_dimensions")); + actionForce_4_3_display_ratio = new QAction(MainWindow); + actionForce_4_3_display_ratio->setObjectName(QString::fromUtf8("actionForce_4_3_display_ratio")); + actionForce_4_3_display_ratio->setCheckable(true); + actionHiDPI_scaling = new QAction(MainWindow); + actionHiDPI_scaling->setObjectName(QString::fromUtf8("actionHiDPI_scaling")); + actionHiDPI_scaling->setCheckable(true); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan = new QAction(MainWindow); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan->setObjectName(QString::fromUtf8("actionCGA_PCjr_Tandy_EGA_S_VGA_overscan")); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan->setCheckable(true); + actionChange_contrast_for_monochrome_display = new QAction(MainWindow); + actionChange_contrast_for_monochrome_display->setObjectName(QString::fromUtf8("actionChange_contrast_for_monochrome_display")); + actionChange_contrast_for_monochrome_display->setCheckable(true); + action0_5x = new QAction(MainWindow); + action0_5x->setObjectName(QString::fromUtf8("action0_5x")); + action0_5x->setCheckable(true); + action1x = new QAction(MainWindow); + action1x->setObjectName(QString::fromUtf8("action1x")); + action1x->setCheckable(true); + action1_5x = new QAction(MainWindow); + action1_5x->setObjectName(QString::fromUtf8("action1_5x")); + action1_5x->setCheckable(true); + action2x = new QAction(MainWindow); + action2x->setObjectName(QString::fromUtf8("action2x")); + action2x->setCheckable(true); + action3x = new QAction(MainWindow); + action3x->setObjectName(QString::fromUtf8("action3x")); + action3x->setCheckable(true); + action4x = new QAction(MainWindow); + action4x->setObjectName(QString::fromUtf8("action4x")); + action4x->setCheckable(true); + action5x = new QAction(MainWindow); + action5x->setObjectName(QString::fromUtf8("action5x")); + action5x->setCheckable(true); + action6x = new QAction(MainWindow); + action6x->setObjectName(QString::fromUtf8("action6x")); + action6x->setCheckable(true); + action7x = new QAction(MainWindow); + action7x->setObjectName(QString::fromUtf8("action7x")); + action7x->setCheckable(true); + action8x = new QAction(MainWindow); + action8x->setObjectName(QString::fromUtf8("action8x")); + action8x->setCheckable(true); + actionNearest = new QAction(MainWindow); + actionNearest->setObjectName(QString::fromUtf8("actionNearest")); + actionNearest->setCheckable(true); + actionLinear = new QAction(MainWindow); + actionLinear->setObjectName(QString::fromUtf8("actionLinear")); + actionLinear->setCheckable(true); + actionFullScreen_stretch = new QAction(MainWindow); + actionFullScreen_stretch->setObjectName(QString::fromUtf8("actionFullScreen_stretch")); + actionFullScreen_stretch->setCheckable(true); + actionFullScreen_43 = new QAction(MainWindow); + actionFullScreen_43->setObjectName(QString::fromUtf8("actionFullScreen_43")); + actionFullScreen_43->setCheckable(true); + actionFullScreen_keepRatio = new QAction(MainWindow); + actionFullScreen_keepRatio->setObjectName(QString::fromUtf8("actionFullScreen_keepRatio")); + actionFullScreen_keepRatio->setCheckable(true); + actionFullScreen_int = new QAction(MainWindow); + actionFullScreen_int->setObjectName(QString::fromUtf8("actionFullScreen_int")); + actionFullScreen_int->setCheckable(true); + actionFullScreen_int43 = new QAction(MainWindow); + actionFullScreen_int43->setObjectName(QString::fromUtf8("actionFullScreen_int43")); + actionFullScreen_int43->setCheckable(true); + actionInverted_VGA_monitor = new QAction(MainWindow); + actionInverted_VGA_monitor->setObjectName(QString::fromUtf8("actionInverted_VGA_monitor")); + actionInverted_VGA_monitor->setCheckable(true); + actionRGB_Color = new QAction(MainWindow); + actionRGB_Color->setObjectName(QString::fromUtf8("actionRGB_Color")); + actionRGB_Color->setCheckable(true); + actionRGB_Grayscale = new QAction(MainWindow); + actionRGB_Grayscale->setObjectName(QString::fromUtf8("actionRGB_Grayscale")); + actionRGB_Grayscale->setCheckable(true); + actionAmber_monitor = new QAction(MainWindow); + actionAmber_monitor->setObjectName(QString::fromUtf8("actionAmber_monitor")); + actionAmber_monitor->setCheckable(true); + actionGreen_monitor = new QAction(MainWindow); + actionGreen_monitor->setObjectName(QString::fromUtf8("actionGreen_monitor")); + actionGreen_monitor->setCheckable(true); + actionWhite_monitor = new QAction(MainWindow); + actionWhite_monitor->setObjectName(QString::fromUtf8("actionWhite_monitor")); + actionWhite_monitor->setCheckable(true); + actionBT601_NTSC_PAL = new QAction(MainWindow); + actionBT601_NTSC_PAL->setObjectName(QString::fromUtf8("actionBT601_NTSC_PAL")); + actionBT601_NTSC_PAL->setCheckable(true); + actionBT709_HDTV = new QAction(MainWindow); + actionBT709_HDTV->setObjectName(QString::fromUtf8("actionBT709_HDTV")); + actionBT709_HDTV->setCheckable(true); + actionAverage = new QAction(MainWindow); + actionAverage->setObjectName(QString::fromUtf8("actionAverage")); + actionAverage->setCheckable(true); + actionAbout_Qt = new QAction(MainWindow); + actionAbout_Qt->setObjectName(QString::fromUtf8("actionAbout_Qt")); + actionAbout_Qt->setVisible(false); + actionAbout_Qt->setMenuRole(QAction::AboutQtRole); + actionAbout_86Box = new QAction(MainWindow); + actionAbout_86Box->setObjectName(QString::fromUtf8("actionAbout_86Box")); + actionAbout_86Box->setMenuRole(QAction::AboutRole); + actionDocumentation = new QAction(MainWindow); + actionDocumentation->setObjectName(QString::fromUtf8("actionDocumentation")); + actionUpdate_status_bar_icons = new QAction(MainWindow); + actionUpdate_status_bar_icons->setObjectName(QString::fromUtf8("actionUpdate_status_bar_icons")); + actionUpdate_status_bar_icons->setCheckable(true); + actionTake_screenshot = new QAction(MainWindow); + actionTake_screenshot->setObjectName(QString::fromUtf8("actionTake_screenshot")); + actionTake_screenshot->setShortcutVisibleInContextMenu(false); + actionSound_gain = new QAction(MainWindow); + actionSound_gain->setObjectName(QString::fromUtf8("actionSound_gain")); + actionOpenGL_3_0_Core = new QAction(MainWindow); + actionOpenGL_3_0_Core->setObjectName(QString::fromUtf8("actionOpenGL_3_0_Core")); + actionOpenGL_3_0_Core->setCheckable(true); + actionOpenGL_3_0_Core->setProperty("vid_api", QVariant(3)); + actionPreferences = new QAction(MainWindow); + actionPreferences->setObjectName(QString::fromUtf8("actionPreferences")); + actionPreferences->setMenuRole(QAction::PreferencesRole); + actionEnable_Discord_integration = new QAction(MainWindow); + actionEnable_Discord_integration->setObjectName(QString::fromUtf8("actionEnable_Discord_integration")); + actionEnable_Discord_integration->setCheckable(true); + actionHide_tool_bar = new QAction(MainWindow); + actionHide_tool_bar->setObjectName(QString::fromUtf8("actionHide_tool_bar")); + actionHide_tool_bar->setCheckable(true); + actionACPI_Shutdown = new QAction(MainWindow); + actionACPI_Shutdown->setObjectName(QString::fromUtf8("actionACPI_Shutdown")); + actionACPI_Shutdown->setEnabled(true); + QIcon icon5; + icon5.addFile(QString::fromUtf8(":/menuicons/win/icons/acpi_shutdown.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionACPI_Shutdown->setIcon(icon5); + actionACPI_Shutdown->setVisible(true); + actionBegin_trace = new QAction(MainWindow); + actionBegin_trace->setObjectName(QString::fromUtf8("actionBegin_trace")); + actionBegin_trace->setVisible(false); + actionBegin_trace->setShortcutVisibleInContextMenu(false); + actionEnd_trace = new QAction(MainWindow); + actionEnd_trace->setObjectName(QString::fromUtf8("actionEnd_trace")); + actionEnd_trace->setVisible(false); + actionEnd_trace->setShortcutVisibleInContextMenu(false); + actionRenderer_options = new QAction(MainWindow); + actionRenderer_options->setObjectName(QString::fromUtf8("actionRenderer_options")); + actionVulkan = new QAction(MainWindow); + actionVulkan->setObjectName(QString::fromUtf8("actionVulkan")); + actionVulkan->setCheckable(true); + actionVulkan->setProperty("vid_api", QVariant(4)); + actionMCA_devices = new QAction(MainWindow); + actionMCA_devices->setObjectName(QString::fromUtf8("actionMCA_devices")); + actionDirect3D_9 = new QAction(MainWindow); + actionDirect3D_9->setObjectName(QString::fromUtf8("actionDirect3D_9")); + actionDirect3D_9->setCheckable(true); + actionDirect3D_9->setProperty("vid_api", QVariant(5)); + actionShow_non_primary_monitors = new QAction(MainWindow); + actionShow_non_primary_monitors->setObjectName(QString::fromUtf8("actionShow_non_primary_monitors")); + actionShow_non_primary_monitors->setCheckable(true); + actionVNC = new QAction(MainWindow); + actionVNC->setObjectName(QString::fromUtf8("actionVNC")); + actionVNC->setCheckable(true); + actionVNC->setProperty("vid_api", QVariant(6)); + actionOpen_screenshots_folder = new QAction(MainWindow); + actionOpen_screenshots_folder->setObjectName(QString::fromUtf8("actionOpen_screenshots_folder")); + actionApply_fullscreen_stretch_mode_when_maximized = new QAction(MainWindow); + actionApply_fullscreen_stretch_mode_when_maximized->setObjectName(QString::fromUtf8("actionApply_fullscreen_stretch_mode_when_maximized")); + actionApply_fullscreen_stretch_mode_when_maximized->setCheckable(true); + actionCursor_Puck = new QAction(MainWindow); + actionCursor_Puck->setObjectName(QString::fromUtf8("actionCursor_Puck")); + actionCursor_Puck->setCheckable(true); + actionPen = new QAction(MainWindow); + actionPen->setObjectName(QString::fromUtf8("actionPen")); + actionPen->setCheckable(true); + centralwidget = new QWidget(MainWindow); + centralwidget->setObjectName(QString::fromUtf8("centralwidget")); + QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(centralwidget->sizePolicy().hasHeightForWidth()); + centralwidget->setSizePolicy(sizePolicy); + verticalLayout = new QVBoxLayout(centralwidget); + verticalLayout->setSpacing(0); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + stackedWidget = new RendererStack(centralwidget); + stackedWidget->setObjectName(QString::fromUtf8("stackedWidget")); + sizePolicy.setHeightForWidth(stackedWidget->sizePolicy().hasHeightForWidth()); + stackedWidget->setSizePolicy(sizePolicy); + + verticalLayout->addWidget(stackedWidget); + + MainWindow->setCentralWidget(centralwidget); + menubar = new QMenuBar(MainWindow); + menubar->setObjectName(QString::fromUtf8("menubar")); + menubar->setGeometry(QRect(0, 0, 724, 23)); + menuAction = new QMenu(menubar); + menuAction->setObjectName(QString::fromUtf8("menuAction")); + menuTablet_tool = new QMenu(menuAction); + menuTablet_tool->setObjectName(QString::fromUtf8("menuTablet_tool")); + menuTools = new QMenu(menubar); + menuTools->setObjectName(QString::fromUtf8("menuTools")); + menuView = new QMenu(menubar); + menuView->setObjectName(QString::fromUtf8("menuView")); + menuRenderer = new QMenu(menuView); + menuRenderer->setObjectName(QString::fromUtf8("menuRenderer")); + menuWindow_scale_factor = new QMenu(menuView); + menuWindow_scale_factor->setObjectName(QString::fromUtf8("menuWindow_scale_factor")); + menuFilter_method = new QMenu(menuView); + menuFilter_method->setObjectName(QString::fromUtf8("menuFilter_method")); + menuFullscreen_stretch_mode = new QMenu(menuView); + menuFullscreen_stretch_mode->setObjectName(QString::fromUtf8("menuFullscreen_stretch_mode")); + menuEGA_S_VGA_settings = new QMenu(menuView); + menuEGA_S_VGA_settings->setObjectName(QString::fromUtf8("menuEGA_S_VGA_settings")); + menuVGA_screen_type = new QMenu(menuEGA_S_VGA_settings); + menuVGA_screen_type->setObjectName(QString::fromUtf8("menuVGA_screen_type")); + menuGrayscale_conversion_type = new QMenu(menuEGA_S_VGA_settings); + menuGrayscale_conversion_type->setObjectName(QString::fromUtf8("menuGrayscale_conversion_type")); + menuMedia = new QMenu(menubar); + menuMedia->setObjectName(QString::fromUtf8("menuMedia")); + menuAbout = new QMenu(menubar); + menuAbout->setObjectName(QString::fromUtf8("menuAbout")); + MainWindow->setMenuBar(menubar); + statusbar = new QStatusBar(MainWindow); + statusbar->setObjectName(QString::fromUtf8("statusbar")); + MainWindow->setStatusBar(statusbar); + toolBar = new QToolBar(MainWindow); + toolBar->setObjectName(QString::fromUtf8("toolBar")); + toolBar->setContextMenuPolicy(Qt::PreventContextMenu); + toolBar->setWindowTitle(QString::fromUtf8("toolBar")); + toolBar->setAutoFillBackground(true); + toolBar->setMovable(false); + toolBar->setAllowedAreas(Qt::TopToolBarArea); + toolBar->setIconSize(QSize(16, 16)); + toolBar->setToolButtonStyle(Qt::ToolButtonIconOnly); + toolBar->setFloatable(false); + MainWindow->addToolBar(Qt::TopToolBarArea, toolBar); + + menubar->addAction(menuAction->menuAction()); + menubar->addAction(menuView->menuAction()); + menubar->addAction(menuMedia->menuAction()); + menubar->addAction(menuTools->menuAction()); + menubar->addAction(menuAbout->menuAction()); + menuAction->addAction(actionAuto_pause); + menuAction->addSeparator(); + menuAction->addAction(actionKeyboard_requires_capture); + menuAction->addAction(actionRight_CTRL_is_left_ALT); + menuAction->addAction(menuTablet_tool->menuAction()); + menuAction->addSeparator(); + menuAction->addAction(actionPause); + menuAction->addSeparator(); + menuAction->addAction(actionHard_Reset); + menuAction->addAction(actionCtrl_Alt_Del); + menuAction->addSeparator(); + menuAction->addAction(actionCtrl_Alt_Esc); + menuAction->addSeparator(); + menuAction->addAction(actionExit); + menuTablet_tool->addAction(actionPen); + menuTablet_tool->addAction(actionCursor_Puck); + menuTools->addAction(actionSettings); + menuTools->addAction(actionUpdate_status_bar_icons); + menuTools->addSeparator(); + menuTools->addAction(actionEnable_Discord_integration); + menuTools->addSeparator(); + menuTools->addAction(actionTake_screenshot); + menuTools->addAction(actionSound_gain); + menuTools->addSeparator(); + menuTools->addAction(actionPreferences); + menuTools->addSeparator(); + menuTools->addAction(actionBegin_trace); + menuTools->addAction(actionEnd_trace); + menuTools->addSeparator(); + menuTools->addAction(actionMCA_devices); + menuTools->addSeparator(); + menuTools->addAction(actionOpen_screenshots_folder); + menuView->addAction(actionHide_tool_bar); + menuView->addAction(actionHide_status_bar); + menuView->addSeparator(); + menuView->addAction(actionShow_non_primary_monitors); + menuView->addAction(actionResizable_window); + menuView->addAction(actionRemember_size_and_position); + menuView->addSeparator(); + menuView->addAction(menuRenderer->menuAction()); + menuView->addAction(actionRenderer_options); + menuView->addSeparator(); + menuView->addAction(actionSpecify_dimensions); + menuView->addAction(actionForce_4_3_display_ratio); + menuView->addAction(menuWindow_scale_factor->menuAction()); + menuView->addAction(menuFilter_method->menuAction()); + menuView->addAction(actionHiDPI_scaling); + menuView->addSeparator(); + menuView->addAction(actionFullscreen); + menuView->addAction(menuFullscreen_stretch_mode->menuAction()); + menuView->addAction(actionApply_fullscreen_stretch_mode_when_maximized); + menuView->addAction(menuEGA_S_VGA_settings->menuAction()); + menuView->addSeparator(); + menuView->addAction(actionCGA_PCjr_Tandy_EGA_S_VGA_overscan); + menuView->addAction(actionChange_contrast_for_monochrome_display); + menuRenderer->addAction(actionSoftware_Renderer); + menuRenderer->addAction(actionHardware_Renderer_OpenGL); + menuRenderer->addAction(actionHardware_Renderer_OpenGL_ES); + menuRenderer->addAction(actionOpenGL_3_0_Core); + menuRenderer->addAction(actionVulkan); + menuRenderer->addAction(actionDirect3D_9); + menuRenderer->addAction(actionVNC); + menuWindow_scale_factor->addAction(action0_5x); + menuWindow_scale_factor->addAction(action1x); + menuWindow_scale_factor->addAction(action1_5x); + menuWindow_scale_factor->addAction(action2x); + menuWindow_scale_factor->addAction(action3x); + menuWindow_scale_factor->addAction(action4x); + menuWindow_scale_factor->addAction(action5x); + menuWindow_scale_factor->addAction(action6x); + menuWindow_scale_factor->addAction(action7x); + menuWindow_scale_factor->addAction(action8x); + menuFilter_method->addAction(actionNearest); + menuFilter_method->addAction(actionLinear); + menuFullscreen_stretch_mode->addAction(actionFullScreen_stretch); + menuFullscreen_stretch_mode->addAction(actionFullScreen_43); + menuFullscreen_stretch_mode->addAction(actionFullScreen_keepRatio); + menuFullscreen_stretch_mode->addAction(actionFullScreen_int); + menuFullscreen_stretch_mode->addAction(actionFullScreen_int43); + menuEGA_S_VGA_settings->addAction(actionInverted_VGA_monitor); + menuEGA_S_VGA_settings->addAction(menuVGA_screen_type->menuAction()); + menuEGA_S_VGA_settings->addAction(menuGrayscale_conversion_type->menuAction()); + menuVGA_screen_type->addAction(actionRGB_Color); + menuVGA_screen_type->addAction(actionRGB_Grayscale); + menuVGA_screen_type->addAction(actionAmber_monitor); + menuVGA_screen_type->addAction(actionGreen_monitor); + menuVGA_screen_type->addAction(actionWhite_monitor); + menuGrayscale_conversion_type->addAction(actionBT601_NTSC_PAL); + menuGrayscale_conversion_type->addAction(actionBT709_HDTV); + menuGrayscale_conversion_type->addAction(actionAverage); + menuAbout->addAction(actionDocumentation); + menuAbout->addAction(actionAbout_86Box); + menuAbout->addAction(actionAbout_Qt); + toolBar->addAction(actionPause); + toolBar->addAction(actionHard_Reset); + toolBar->addSeparator(); + toolBar->addAction(actionACPI_Shutdown); + toolBar->addSeparator(); + toolBar->addAction(actionCtrl_Alt_Del); + toolBar->addAction(actionCtrl_Alt_Esc); + toolBar->addSeparator(); + toolBar->addAction(actionSettings); + + retranslateUi(MainWindow); + + QMetaObject::connectSlotsByName(MainWindow); + } // setupUi + + void retranslateUi(QMainWindow *MainWindow) + { + MainWindow->setWindowTitle(QCoreApplication::translate("MainWindow", "86Box", nullptr)); + actionAuto_pause->setText(QCoreApplication::translate("MainWindow", "&Auto-pause on focus loss", nullptr)); + actionKeyboard_requires_capture->setText(QCoreApplication::translate("MainWindow", "&Keyboard requires capture", nullptr)); + actionRight_CTRL_is_left_ALT->setText(QCoreApplication::translate("MainWindow", "&Right CTRL is left ALT", nullptr)); + actionHard_Reset->setText(QCoreApplication::translate("MainWindow", "&Hard Reset...", nullptr)); + actionCtrl_Alt_Del->setText(QCoreApplication::translate("MainWindow", "&Ctrl+Alt+Del", nullptr)); +#if QT_CONFIG(tooltip) + actionCtrl_Alt_Del->setToolTip(QCoreApplication::translate("MainWindow", "Ctrl+Alt+Del", nullptr)); +#endif // QT_CONFIG(tooltip) +#if QT_CONFIG(shortcut) + actionCtrl_Alt_Del->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+F12", nullptr)); +#endif // QT_CONFIG(shortcut) + actionCtrl_Alt_Esc->setText(QCoreApplication::translate("MainWindow", "Ctrl+Alt+&Esc", nullptr)); + actionPause->setText(QCoreApplication::translate("MainWindow", "&Pause", nullptr)); + actionExit->setText(QCoreApplication::translate("MainWindow", "Exit", nullptr)); + actionSettings->setText(QCoreApplication::translate("MainWindow", "&Settings...", nullptr)); + actionFullscreen->setText(QCoreApplication::translate("MainWindow", "&Fullscreen", nullptr)); + actionSoftware_Renderer->setText(QCoreApplication::translate("MainWindow", "&Qt (Software)", nullptr)); + actionHardware_Renderer_OpenGL->setText(QCoreApplication::translate("MainWindow", "Qt (&OpenGL)", nullptr)); + actionHardware_Renderer_OpenGL_ES->setText(QCoreApplication::translate("MainWindow", "Qt (OpenGL &ES)", nullptr)); + actionHide_status_bar->setText(QCoreApplication::translate("MainWindow", "&Hide status bar", nullptr)); + actionResizable_window->setText(QCoreApplication::translate("MainWindow", "&Resizeable window", nullptr)); + actionRemember_size_and_position->setText(QCoreApplication::translate("MainWindow", "R&emember size && position", nullptr)); + actionSpecify_dimensions->setText(QCoreApplication::translate("MainWindow", "Specify dimensions...", nullptr)); + actionForce_4_3_display_ratio->setText(QCoreApplication::translate("MainWindow", "F&orce 4:3 display ratio", nullptr)); + actionHiDPI_scaling->setText(QCoreApplication::translate("MainWindow", "Hi&DPI scaling", nullptr)); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan->setText(QCoreApplication::translate("MainWindow", "CGA/PCjr/Tandy/E&GA/(S)VGA overscan", nullptr)); + actionChange_contrast_for_monochrome_display->setText(QCoreApplication::translate("MainWindow", "Change contrast for &monochrome display", nullptr)); + action0_5x->setText(QCoreApplication::translate("MainWindow", "&0.5x", nullptr)); + action1x->setText(QCoreApplication::translate("MainWindow", "&1x", nullptr)); + action1_5x->setText(QCoreApplication::translate("MainWindow", "1.&5x", nullptr)); + action2x->setText(QCoreApplication::translate("MainWindow", "&2x", nullptr)); + action3x->setText(QCoreApplication::translate("MainWindow", "&3x", nullptr)); + action4x->setText(QCoreApplication::translate("MainWindow", "&4x", nullptr)); + action5x->setText(QCoreApplication::translate("MainWindow", "&5x", nullptr)); + action6x->setText(QCoreApplication::translate("MainWindow", "&6x", nullptr)); + action7x->setText(QCoreApplication::translate("MainWindow", "&7x", nullptr)); + action8x->setText(QCoreApplication::translate("MainWindow", "&8x", nullptr)); + actionNearest->setText(QCoreApplication::translate("MainWindow", "&Nearest", nullptr)); + actionLinear->setText(QCoreApplication::translate("MainWindow", "&Linear", nullptr)); + actionFullScreen_stretch->setText(QCoreApplication::translate("MainWindow", "&Full screen stretch", nullptr)); + actionFullScreen_43->setText(QCoreApplication::translate("MainWindow", "&4:3", nullptr)); + actionFullScreen_keepRatio->setText(QCoreApplication::translate("MainWindow", "&Square pixels (Keep ratio)", nullptr)); + actionFullScreen_int->setText(QCoreApplication::translate("MainWindow", "&Integer scale", nullptr)); + actionFullScreen_int43->setText(QCoreApplication::translate("MainWindow", "4:&3 Integer scale", nullptr)); + actionInverted_VGA_monitor->setText(QCoreApplication::translate("MainWindow", "&Inverted VGA monitor", nullptr)); + actionRGB_Color->setText(QCoreApplication::translate("MainWindow", "RGB &Color", nullptr)); + actionRGB_Grayscale->setText(QCoreApplication::translate("MainWindow", "&RGB Grayscale", nullptr)); + actionAmber_monitor->setText(QCoreApplication::translate("MainWindow", "&Amber monitor", nullptr)); + actionGreen_monitor->setText(QCoreApplication::translate("MainWindow", "&Green monitor", nullptr)); + actionWhite_monitor->setText(QCoreApplication::translate("MainWindow", "&White monitor", nullptr)); + actionBT601_NTSC_PAL->setText(QCoreApplication::translate("MainWindow", "BT&601 (NTSC/PAL)", nullptr)); + actionBT709_HDTV->setText(QCoreApplication::translate("MainWindow", "BT&709 (HDTV)", nullptr)); + actionAverage->setText(QCoreApplication::translate("MainWindow", "&Average", nullptr)); + actionAbout_Qt->setText(QCoreApplication::translate("MainWindow", "About Qt", nullptr)); + actionAbout_86Box->setText(QCoreApplication::translate("MainWindow", "&About 86Box...", nullptr)); + actionDocumentation->setText(QCoreApplication::translate("MainWindow", "&Documentation...", nullptr)); + actionUpdate_status_bar_icons->setText(QCoreApplication::translate("MainWindow", "&Update status bar icons", nullptr)); + actionTake_screenshot->setText(QCoreApplication::translate("MainWindow", "Take s&creenshot", nullptr)); +#if QT_CONFIG(shortcut) + actionTake_screenshot->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+F11", nullptr)); +#endif // QT_CONFIG(shortcut) + actionSound_gain->setText(QCoreApplication::translate("MainWindow", "Sound &gain...", nullptr)); + actionOpenGL_3_0_Core->setText(QCoreApplication::translate("MainWindow", "Open&GL (3.0 Core)", nullptr)); + actionPreferences->setText(QCoreApplication::translate("MainWindow", "&Preferences...", nullptr)); + actionEnable_Discord_integration->setText(QCoreApplication::translate("MainWindow", "Enable &Discord integration", nullptr)); + actionHide_tool_bar->setText(QCoreApplication::translate("MainWindow", "Hide &toolbar", nullptr)); +#if QT_CONFIG(tooltip) + actionHide_tool_bar->setToolTip(QCoreApplication::translate("MainWindow", "Hide tool bar", nullptr)); +#endif // QT_CONFIG(tooltip) + actionACPI_Shutdown->setText(QCoreApplication::translate("MainWindow", "ACPI Shutdown", nullptr)); +#if QT_CONFIG(tooltip) + actionACPI_Shutdown->setToolTip(QCoreApplication::translate("MainWindow", "ACPI Shutdown", nullptr)); +#endif // QT_CONFIG(tooltip) + actionBegin_trace->setText(QCoreApplication::translate("MainWindow", "Begin trace", nullptr)); +#if QT_CONFIG(shortcut) + actionBegin_trace->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+T", nullptr)); +#endif // QT_CONFIG(shortcut) + actionEnd_trace->setText(QCoreApplication::translate("MainWindow", "End trace", nullptr)); +#if QT_CONFIG(shortcut) + actionEnd_trace->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+T", nullptr)); +#endif // QT_CONFIG(shortcut) + actionRenderer_options->setText(QCoreApplication::translate("MainWindow", "Renderer options...", nullptr)); + actionVulkan->setText(QCoreApplication::translate("MainWindow", "&Vulkan", nullptr)); + actionMCA_devices->setText(QCoreApplication::translate("MainWindow", "MCA devices...", nullptr)); + actionDirect3D_9->setText(QCoreApplication::translate("MainWindow", "Direct3D 9", nullptr)); + actionShow_non_primary_monitors->setText(QCoreApplication::translate("MainWindow", "Show non-primary monitors", nullptr)); + actionVNC->setText(QCoreApplication::translate("MainWindow", "VNC", nullptr)); + actionOpen_screenshots_folder->setText(QCoreApplication::translate("MainWindow", "Open screenshots folder...", nullptr)); + actionApply_fullscreen_stretch_mode_when_maximized->setText(QCoreApplication::translate("MainWindow", "Apply fullscreen stretch mode when maximized", nullptr)); + actionCursor_Puck->setText(QCoreApplication::translate("MainWindow", "Cursor/Puck", nullptr)); + actionPen->setText(QCoreApplication::translate("MainWindow", "Pen", nullptr)); + menuAction->setTitle(QCoreApplication::translate("MainWindow", "&Action", nullptr)); + menuTablet_tool->setTitle(QCoreApplication::translate("MainWindow", "Tablet tool", nullptr)); + menuTools->setTitle(QCoreApplication::translate("MainWindow", "&Tools", nullptr)); + menuView->setTitle(QCoreApplication::translate("MainWindow", "&View", nullptr)); + menuRenderer->setTitle(QCoreApplication::translate("MainWindow", "Re&nderer", nullptr)); + menuWindow_scale_factor->setTitle(QCoreApplication::translate("MainWindow", "&Window scale factor", nullptr)); + menuFilter_method->setTitle(QCoreApplication::translate("MainWindow", "Filter method", nullptr)); + menuFullscreen_stretch_mode->setTitle(QCoreApplication::translate("MainWindow", "Fullscreen &stretch mode", nullptr)); + menuEGA_S_VGA_settings->setTitle(QCoreApplication::translate("MainWindow", "E&GA/(S)VGA settings", nullptr)); + menuVGA_screen_type->setTitle(QCoreApplication::translate("MainWindow", "VGA screen &type", nullptr)); + menuGrayscale_conversion_type->setTitle(QCoreApplication::translate("MainWindow", "Grayscale &conversion type", nullptr)); + menuMedia->setTitle(QCoreApplication::translate("MainWindow", "&Media", nullptr)); + menuAbout->setTitle(QCoreApplication::translate("MainWindow", "&Help", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class MainWindow: public Ui_MainWindow {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_MAINWINDOW_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_mcadevicelist.h b/src/build/src/qt/ui_autogen/include/ui_qt_mcadevicelist.h new file mode 100644 index 000000000..cda6f618f --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_mcadevicelist.h @@ -0,0 +1,76 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_mcadevicelist.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_MCADEVICELIST_H +#define UI_QT_MCADEVICELIST_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_MCADeviceList +{ +public: + QVBoxLayout *verticalLayout; + QLabel *label; + QListWidget *listWidget; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *MCADeviceList) + { + if (MCADeviceList->objectName().isEmpty()) + MCADeviceList->setObjectName(QString::fromUtf8("MCADeviceList")); + MCADeviceList->resize(400, 300); + verticalLayout = new QVBoxLayout(MCADeviceList); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + label = new QLabel(MCADeviceList); + label->setObjectName(QString::fromUtf8("label")); + + verticalLayout->addWidget(label); + + listWidget = new QListWidget(MCADeviceList); + listWidget->setObjectName(QString::fromUtf8("listWidget")); + + verticalLayout->addWidget(listWidget); + + buttonBox = new QDialogButtonBox(MCADeviceList); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + + retranslateUi(MCADeviceList); + QObject::connect(buttonBox, SIGNAL(accepted()), MCADeviceList, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), MCADeviceList, SLOT(reject())); + + QMetaObject::connectSlotsByName(MCADeviceList); + } // setupUi + + void retranslateUi(QDialog *MCADeviceList) + { + MCADeviceList->setWindowTitle(QCoreApplication::translate("MCADeviceList", "MCA devices", nullptr)); + label->setText(QCoreApplication::translate("MCADeviceList", "List of MCA devices:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class MCADeviceList: public Ui_MCADeviceList {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_MCADEVICELIST_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_newfloppydialog.h b/src/build/src/qt/ui_autogen/include/ui_qt_newfloppydialog.h new file mode 100644 index 000000000..5574cb6ca --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_newfloppydialog.h @@ -0,0 +1,125 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_newfloppydialog.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_NEWFLOPPYDIALOG_H +#define UI_QT_NEWFLOPPYDIALOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include "qt_filefield.hpp" + +QT_BEGIN_NAMESPACE + +class Ui_NewFloppyDialog +{ +public: + QFormLayout *formLayout; + QLabel *label_2; + FileField *fileField; + QLabel *label; + QComboBox *comboBoxSize; + QLabel *labelRpm; + QComboBox *comboBoxRpm; + QSpacerItem *verticalSpacer; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *NewFloppyDialog) + { + if (NewFloppyDialog->objectName().isEmpty()) + NewFloppyDialog->setObjectName(QString::fromUtf8("NewFloppyDialog")); + NewFloppyDialog->resize(327, 200); + NewFloppyDialog->setMinimumSize(QSize(327, 200)); + NewFloppyDialog->setMaximumSize(QSize(327, 200)); + formLayout = new QFormLayout(NewFloppyDialog); + formLayout->setObjectName(QString::fromUtf8("formLayout")); + label_2 = new QLabel(NewFloppyDialog); + label_2->setObjectName(QString::fromUtf8("label_2")); + + formLayout->setWidget(0, QFormLayout::LabelRole, label_2); + + fileField = new FileField(NewFloppyDialog); + fileField->setObjectName(QString::fromUtf8("fileField")); + QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(fileField->sizePolicy().hasHeightForWidth()); + fileField->setSizePolicy(sizePolicy); + + formLayout->setWidget(0, QFormLayout::FieldRole, fileField); + + label = new QLabel(NewFloppyDialog); + label->setObjectName(QString::fromUtf8("label")); + + formLayout->setWidget(1, QFormLayout::LabelRole, label); + + comboBoxSize = new QComboBox(NewFloppyDialog); + comboBoxSize->setObjectName(QString::fromUtf8("comboBoxSize")); + comboBoxSize->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSize->sizePolicy().hasHeightForWidth()); + comboBoxSize->setSizePolicy(sizePolicy); + + formLayout->setWidget(1, QFormLayout::FieldRole, comboBoxSize); + + labelRpm = new QLabel(NewFloppyDialog); + labelRpm->setObjectName(QString::fromUtf8("labelRpm")); + + formLayout->setWidget(2, QFormLayout::LabelRole, labelRpm); + + comboBoxRpm = new QComboBox(NewFloppyDialog); + comboBoxRpm->setObjectName(QString::fromUtf8("comboBoxRpm")); + comboBoxRpm->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxRpm->sizePolicy().hasHeightForWidth()); + comboBoxRpm->setSizePolicy(sizePolicy1); + + formLayout->setWidget(2, QFormLayout::FieldRole, comboBoxRpm); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + formLayout->setItem(3, QFormLayout::LabelRole, verticalSpacer); + + buttonBox = new QDialogButtonBox(NewFloppyDialog); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + formLayout->setWidget(4, QFormLayout::SpanningRole, buttonBox); + + + retranslateUi(NewFloppyDialog); + QObject::connect(buttonBox, SIGNAL(accepted()), NewFloppyDialog, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), NewFloppyDialog, SLOT(reject())); + + QMetaObject::connectSlotsByName(NewFloppyDialog); + } // setupUi + + void retranslateUi(QDialog *NewFloppyDialog) + { + NewFloppyDialog->setWindowTitle(QCoreApplication::translate("NewFloppyDialog", "New Image", nullptr)); + label_2->setText(QCoreApplication::translate("NewFloppyDialog", "File name:", nullptr)); + label->setText(QCoreApplication::translate("NewFloppyDialog", "Disk size:", nullptr)); + labelRpm->setText(QCoreApplication::translate("NewFloppyDialog", "RPM mode:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class NewFloppyDialog: public Ui_NewFloppyDialog {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_NEWFLOPPYDIALOG_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h b/src/build/src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h new file mode 100644 index 000000000..a42e22f3e --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h @@ -0,0 +1,182 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_opengloptionsdialog.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_OPENGLOPTIONSDIALOG_H +#define UI_QT_OPENGLOPTIONSDIALOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_OpenGLOptionsDialog +{ +public: + QVBoxLayout *verticalLayout; + QGroupBox *groupBox; + QGridLayout *gridLayout_2; + QRadioButton *syncToFramerate; + QSpinBox *targetFps; + QCheckBox *vsync; + QRadioButton *syncWithVideo; + QSlider *fpsSlider; + QGroupBox *groupBox_2; + QGridLayout *gridLayout; + QPushButton *removeShader; + QSpacerItem *verticalSpacer; + QTextEdit *shader; + QPushButton *addShader; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *OpenGLOptionsDialog) + { + if (OpenGLOptionsDialog->objectName().isEmpty()) + OpenGLOptionsDialog->setObjectName(QString::fromUtf8("OpenGLOptionsDialog")); + OpenGLOptionsDialog->resize(400, 320); + verticalLayout = new QVBoxLayout(OpenGLOptionsDialog); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + groupBox = new QGroupBox(OpenGLOptionsDialog); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + gridLayout_2 = new QGridLayout(groupBox); + gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2")); + syncToFramerate = new QRadioButton(groupBox); + syncToFramerate->setObjectName(QString::fromUtf8("syncToFramerate")); + + gridLayout_2->addWidget(syncToFramerate, 1, 0, 1, 1); + + targetFps = new QSpinBox(groupBox); + targetFps->setObjectName(QString::fromUtf8("targetFps")); + targetFps->setEnabled(false); + targetFps->setMinimum(15); + targetFps->setMaximum(240); + targetFps->setValue(60); + + gridLayout_2->addWidget(targetFps, 2, 1, 1, 1); + + vsync = new QCheckBox(groupBox); + vsync->setObjectName(QString::fromUtf8("vsync")); + + gridLayout_2->addWidget(vsync, 3, 0, 1, 1); + + syncWithVideo = new QRadioButton(groupBox); + syncWithVideo->setObjectName(QString::fromUtf8("syncWithVideo")); + syncWithVideo->setChecked(true); + + gridLayout_2->addWidget(syncWithVideo, 0, 0, 1, 1); + + fpsSlider = new QSlider(groupBox); + fpsSlider->setObjectName(QString::fromUtf8("fpsSlider")); + fpsSlider->setEnabled(false); + fpsSlider->setMinimum(15); + fpsSlider->setMaximum(240); + fpsSlider->setValue(60); + fpsSlider->setOrientation(Qt::Horizontal); + fpsSlider->setInvertedAppearance(false); + fpsSlider->setTickPosition(QSlider::NoTicks); + + gridLayout_2->addWidget(fpsSlider, 2, 0, 1, 1); + + gridLayout_2->setColumnStretch(0, 3); + gridLayout_2->setColumnStretch(1, 1); + + verticalLayout->addWidget(groupBox); + + groupBox_2 = new QGroupBox(OpenGLOptionsDialog); + groupBox_2->setObjectName(QString::fromUtf8("groupBox_2")); + gridLayout = new QGridLayout(groupBox_2); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + removeShader = new QPushButton(groupBox_2); + removeShader->setObjectName(QString::fromUtf8("removeShader")); + + gridLayout->addWidget(removeShader, 2, 1, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 3, 1, 1, 1); + + shader = new QTextEdit(groupBox_2); + shader->setObjectName(QString::fromUtf8("shader")); + shader->setReadOnly(true); + + gridLayout->addWidget(shader, 1, 0, 3, 1); + + addShader = new QPushButton(groupBox_2); + addShader->setObjectName(QString::fromUtf8("addShader")); + + gridLayout->addWidget(addShader, 1, 1, 1, 1, Qt::AlignTop); + + gridLayout->setColumnStretch(0, 3); + gridLayout->setColumnStretch(1, 1); + + verticalLayout->addWidget(groupBox_2); + + buttonBox = new QDialogButtonBox(OpenGLOptionsDialog); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + QWidget::setTabOrder(syncWithVideo, syncToFramerate); + QWidget::setTabOrder(syncToFramerate, fpsSlider); + QWidget::setTabOrder(fpsSlider, targetFps); + QWidget::setTabOrder(targetFps, vsync); + QWidget::setTabOrder(vsync, shader); + QWidget::setTabOrder(shader, addShader); + QWidget::setTabOrder(addShader, removeShader); + + retranslateUi(OpenGLOptionsDialog); + QObject::connect(buttonBox, SIGNAL(accepted()), OpenGLOptionsDialog, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), OpenGLOptionsDialog, SLOT(reject())); + QObject::connect(syncToFramerate, SIGNAL(toggled(bool)), targetFps, SLOT(setEnabled(bool))); + QObject::connect(syncToFramerate, SIGNAL(toggled(bool)), fpsSlider, SLOT(setEnabled(bool))); + QObject::connect(fpsSlider, SIGNAL(valueChanged(int)), targetFps, SLOT(setValue(int))); + QObject::connect(targetFps, SIGNAL(valueChanged(int)), fpsSlider, SLOT(setValue(int))); + QObject::connect(removeShader, SIGNAL(clicked()), shader, SLOT(clear())); + + QMetaObject::connectSlotsByName(OpenGLOptionsDialog); + } // setupUi + + void retranslateUi(QDialog *OpenGLOptionsDialog) + { + OpenGLOptionsDialog->setWindowTitle(QCoreApplication::translate("OpenGLOptionsDialog", "OpenGL 3.0 renderer options", nullptr)); + groupBox->setTitle(QCoreApplication::translate("OpenGLOptionsDialog", "Render behavior", nullptr)); + syncToFramerate->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Use target framerate:", nullptr)); + targetFps->setSuffix(QCoreApplication::translate("OpenGLOptionsDialog", " fps", nullptr)); + vsync->setText(QCoreApplication::translate("OpenGLOptionsDialog", "VSync", nullptr)); +#if QT_CONFIG(tooltip) + syncWithVideo->setToolTip(QCoreApplication::translate("OpenGLOptionsDialog", "

Render each frame immediately, in sync with the emulated display.

This is the recommended option if the shaders in use don't utilize frametime for animated effects.

", nullptr)); +#endif // QT_CONFIG(tooltip) + syncWithVideo->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Synchronize with video", nullptr)); + groupBox_2->setTitle(QCoreApplication::translate("OpenGLOptionsDialog", "Shaders", nullptr)); + removeShader->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Remove", nullptr)); + shader->setPlaceholderText(QCoreApplication::translate("OpenGLOptionsDialog", "No shader selected", nullptr)); + addShader->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Browse...", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class OpenGLOptionsDialog: public Ui_OpenGLOptionsDialog {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_OPENGLOPTIONSDIALOG_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_progsettings.h b/src/build/src/qt/ui_autogen/include/ui_qt_progsettings.h new file mode 100644 index 000000000..05658f848 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_progsettings.h @@ -0,0 +1,170 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_progsettings.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_PROGSETTINGS_H +#define UI_QT_PROGSETTINGS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_ProgSettings +{ +public: + QGridLayout *gridLayout; + QComboBox *comboBox; + QLabel *label_3; + QLabel *label; + QPushButton *pushButton; + QSpacerItem *horizontalSpacer_3; + QDialogButtonBox *buttonBox; + QSlider *horizontalSlider; + QComboBox *comboBoxLanguage; + QLabel *label_2; + QPushButton *pushButtonLanguage; + QPushButton *pushButton_2; + QSpacerItem *horizontalSpacer_2; + QSpacerItem *horizontalSpacer; + QCheckBox *openDirUsrPath; + + void setupUi(QDialog *ProgSettings) + { + if (ProgSettings->objectName().isEmpty()) + ProgSettings->setObjectName(QString::fromUtf8("ProgSettings")); + ProgSettings->resize(458, 374); + ProgSettings->setMinimumSize(QSize(0, 0)); + ProgSettings->setMaximumSize(QSize(16777215, 16777215)); + gridLayout = new QGridLayout(ProgSettings); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setSizeConstraint(QLayout::SetFixedSize); + comboBox = new QComboBox(ProgSettings); + comboBox->addItem(QString()); + comboBox->setObjectName(QString::fromUtf8("comboBox")); + comboBox->setEditable(false); + comboBox->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBox, 1, 0, 1, 2); + + label_3 = new QLabel(ProgSettings); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 6, 0, 1, 1); + + label = new QLabel(ProgSettings); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 2); + + pushButton = new QPushButton(ProgSettings); + pushButton->setObjectName(QString::fromUtf8("pushButton")); + + gridLayout->addWidget(pushButton, 2, 1, 1, 1); + + horizontalSpacer_3 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout->addItem(horizontalSpacer_3, 8, 0, 1, 1); + + buttonBox = new QDialogButtonBox(ProgSettings); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 12, 0, 1, 2); + + horizontalSlider = new QSlider(ProgSettings); + horizontalSlider->setObjectName(QString::fromUtf8("horizontalSlider")); + horizontalSlider->setMinimum(10); + horizontalSlider->setMaximum(200); + horizontalSlider->setSingleStep(10); + horizontalSlider->setPageStep(20); + horizontalSlider->setValue(100); + horizontalSlider->setOrientation(Qt::Horizontal); + + gridLayout->addWidget(horizontalSlider, 7, 0, 1, 2); + + comboBoxLanguage = new QComboBox(ProgSettings); + comboBoxLanguage->addItem(QString()); + comboBoxLanguage->setObjectName(QString::fromUtf8("comboBoxLanguage")); + comboBoxLanguage->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxLanguage, 4, 0, 1, 2); + + label_2 = new QLabel(ProgSettings); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 3, 0, 1, 2); + + pushButtonLanguage = new QPushButton(ProgSettings); + pushButtonLanguage->setObjectName(QString::fromUtf8("pushButtonLanguage")); + + gridLayout->addWidget(pushButtonLanguage, 5, 1, 1, 1); + + pushButton_2 = new QPushButton(ProgSettings); + pushButton_2->setObjectName(QString::fromUtf8("pushButton_2")); + + gridLayout->addWidget(pushButton_2, 8, 1, 1, 1); + + horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout->addItem(horizontalSpacer_2, 5, 0, 1, 1); + + horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout->addItem(horizontalSpacer, 2, 0, 1, 1); + + openDirUsrPath = new QCheckBox(ProgSettings); + openDirUsrPath->setObjectName(QString::fromUtf8("openDirUsrPath")); + + gridLayout->addWidget(openDirUsrPath, 9, 0, 1, 1); + + + retranslateUi(ProgSettings); + QObject::connect(buttonBox, SIGNAL(accepted()), ProgSettings, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), ProgSettings, SLOT(reject())); + + QMetaObject::connectSlotsByName(ProgSettings); + } // setupUi + + void retranslateUi(QDialog *ProgSettings) + { + ProgSettings->setWindowTitle(QCoreApplication::translate("ProgSettings", "Preferences", nullptr)); + comboBox->setItemText(0, QCoreApplication::translate("ProgSettings", "(Default)", nullptr)); + + label_3->setText(QCoreApplication::translate("ProgSettings", "Mouse sensitivity:", nullptr)); + label->setText(QCoreApplication::translate("ProgSettings", "Icon set:", nullptr)); + pushButton->setText(QCoreApplication::translate("ProgSettings", "Default", nullptr)); + comboBoxLanguage->setItemText(0, QCoreApplication::translate("ProgSettings", "(System Default)", nullptr)); + + label_2->setText(QCoreApplication::translate("ProgSettings", "Language:", nullptr)); + pushButtonLanguage->setText(QCoreApplication::translate("ProgSettings", "Default", nullptr)); + pushButton_2->setText(QCoreApplication::translate("ProgSettings", "Default", nullptr)); +#if QT_CONFIG(tooltip) + openDirUsrPath->setToolTip(QCoreApplication::translate("ProgSettings", "

When selecting media images (CD-ROM, floppy, etc.) the open dialog will start in the same directory as the 86Box configuration file. This setting will likely only make a difference on macOS.

", nullptr)); +#endif // QT_CONFIG(tooltip) + openDirUsrPath->setText(QCoreApplication::translate("ProgSettings", "Select media images from program working directory", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class ProgSettings: public Ui_ProgSettings {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_PROGSETTINGS_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_rendererstack.h b/src/build/src/qt/ui_autogen/include/ui_qt_rendererstack.h new file mode 100644 index 000000000..c457d1ec9 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_rendererstack.h @@ -0,0 +1,46 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_rendererstack.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_RENDERERSTACK_H +#define UI_QT_RENDERERSTACK_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_RendererStack +{ +public: + + void setupUi(QStackedWidget *RendererStack) + { + if (RendererStack->objectName().isEmpty()) + RendererStack->setObjectName(QString::fromUtf8("RendererStack")); + RendererStack->resize(400, 300); + + retranslateUi(RendererStack); + + QMetaObject::connectSlotsByName(RendererStack); + } // setupUi + + void retranslateUi(QStackedWidget *RendererStack) + { + RendererStack->setWindowTitle(QCoreApplication::translate("RendererStack", "StackedWidget", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class RendererStack: public Ui_RendererStack {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_RENDERERSTACK_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settings.h b/src/build/src/qt/ui_autogen/include/ui_qt_settings.h new file mode 100644 index 000000000..4cb3c2344 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settings.h @@ -0,0 +1,104 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settings.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGS_H +#define UI_QT_SETTINGS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_Settings +{ +public: + QVBoxLayout *verticalLayout; + QWidget *widget; + QHBoxLayout *horizontalLayout; + QListView *listView; + QStackedWidget *stackedWidget; + QFrame *line; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *Settings) + { + if (Settings->objectName().isEmpty()) + Settings->setObjectName(QString::fromUtf8("Settings")); + Settings->resize(800, 570); + Settings->setMinimumSize(QSize(800, 570)); + Settings->setMaximumSize(QSize(800, 570)); + verticalLayout = new QVBoxLayout(Settings); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + widget = new QWidget(Settings); + widget->setObjectName(QString::fromUtf8("widget")); + horizontalLayout = new QHBoxLayout(widget); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + horizontalLayout->setContentsMargins(0, -1, 0, -1); + listView = new QListView(widget); + listView->setObjectName(QString::fromUtf8("listView")); + listView->setViewMode(QListView::ListMode); + + horizontalLayout->addWidget(listView); + + stackedWidget = new QStackedWidget(widget); + stackedWidget->setObjectName(QString::fromUtf8("stackedWidget")); + + horizontalLayout->addWidget(stackedWidget); + + horizontalLayout->setStretch(0, 1); + horizontalLayout->setStretch(1, 3); + + verticalLayout->addWidget(widget); + + line = new QFrame(Settings); + line->setObjectName(QString::fromUtf8("line")); + line->setFrameShape(QFrame::HLine); + line->setFrameShadow(QFrame::Sunken); + + verticalLayout->addWidget(line); + + buttonBox = new QDialogButtonBox(Settings); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + + retranslateUi(Settings); + QObject::connect(buttonBox, SIGNAL(accepted()), Settings, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), Settings, SLOT(reject())); + + stackedWidget->setCurrentIndex(-1); + + + QMetaObject::connectSlotsByName(Settings); + } // setupUi + + void retranslateUi(QDialog *Settings) + { + Settings->setWindowTitle(QCoreApplication::translate("Settings", "Settings", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class Settings: public Ui_Settings {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGS_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsdisplay.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsdisplay.h new file mode 100644 index 000000000..63a75217d --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsdisplay.h @@ -0,0 +1,160 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsdisplay.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSDISPLAY_H +#define UI_QT_SETTINGSDISPLAY_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsDisplay +{ +public: + QGridLayout *gridLayout; + QPushButton *pushButtonConfigure; + QCheckBox *checkBoxXga; + QLabel *label; + QComboBox *comboBoxVideo; + QPushButton *pushButtonConfigureVoodoo; + QLabel *label_2; + QCheckBox *checkBox8514; + QCheckBox *checkBoxVoodoo; + QPushButton *pushButtonConfigureXga; + QPushButton *pushButtonConfigureSecondary; + QComboBox *comboBoxVideoSecondary; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsDisplay) + { + if (SettingsDisplay->objectName().isEmpty()) + SettingsDisplay->setObjectName(QString::fromUtf8("SettingsDisplay")); + SettingsDisplay->resize(400, 300); + gridLayout = new QGridLayout(SettingsDisplay); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, 0); + pushButtonConfigure = new QPushButton(SettingsDisplay); + pushButtonConfigure->setObjectName(QString::fromUtf8("pushButtonConfigure")); + QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(pushButtonConfigure->sizePolicy().hasHeightForWidth()); + pushButtonConfigure->setSizePolicy(sizePolicy); + + gridLayout->addWidget(pushButtonConfigure, 1, 2, 1, 1); + + checkBoxXga = new QCheckBox(SettingsDisplay); + checkBoxXga->setObjectName(QString::fromUtf8("checkBoxXga")); + + gridLayout->addWidget(checkBoxXga, 6, 0, 1, 2); + + label = new QLabel(SettingsDisplay); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + comboBoxVideo = new QComboBox(SettingsDisplay); + comboBoxVideo->setObjectName(QString::fromUtf8("comboBoxVideo")); + comboBoxVideo->setMaxVisibleItems(30); + QSizePolicy sizePolicy2(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(comboBoxVideo->sizePolicy().hasHeightForWidth()); + comboBoxVideo->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxVideo, 1, 0, 1, 2); + + pushButtonConfigureVoodoo = new QPushButton(SettingsDisplay); + pushButtonConfigureVoodoo->setObjectName(QString::fromUtf8("pushButtonConfigureVoodoo")); + + gridLayout->addWidget(pushButtonConfigureVoodoo, 4, 2, 1, 1); + + label_2 = new QLabel(SettingsDisplay); + label_2->setObjectName(QString::fromUtf8("label_2")); + sizePolicy1.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth()); + label_2->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(label_2, 2, 0, 1, 1); + + checkBox8514 = new QCheckBox(SettingsDisplay); + checkBox8514->setObjectName(QString::fromUtf8("checkBox8514")); + + gridLayout->addWidget(checkBox8514, 5, 0, 1, 2); + + checkBoxVoodoo = new QCheckBox(SettingsDisplay); + checkBoxVoodoo->setObjectName(QString::fromUtf8("checkBoxVoodoo")); + + gridLayout->addWidget(checkBoxVoodoo, 4, 0, 1, 2); + + pushButtonConfigureXga = new QPushButton(SettingsDisplay); + pushButtonConfigureXga->setObjectName(QString::fromUtf8("pushButtonConfigureXga")); + + gridLayout->addWidget(pushButtonConfigureXga, 6, 2, 1, 1); + + pushButtonConfigureSecondary = new QPushButton(SettingsDisplay); + pushButtonConfigureSecondary->setObjectName(QString::fromUtf8("pushButtonConfigureSecondary")); + + gridLayout->addWidget(pushButtonConfigureSecondary, 3, 2, 1, 1); + + comboBoxVideoSecondary = new QComboBox(SettingsDisplay); + comboBoxVideoSecondary->setObjectName(QString::fromUtf8("comboBoxVideoSecondary")); + comboBoxVideoSecondary->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxVideoSecondary->sizePolicy().hasHeightForWidth()); + comboBoxVideoSecondary->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxVideoSecondary, 3, 0, 1, 2); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 7, 0, 1, 3); + + gridLayout->setColumnStretch(0, 2); + gridLayout->setColumnStretch(1, 1); + gridLayout->setColumnStretch(2, 1); + + retranslateUi(SettingsDisplay); + + QMetaObject::connectSlotsByName(SettingsDisplay); + } // setupUi + + void retranslateUi(QWidget *SettingsDisplay) + { + SettingsDisplay->setWindowTitle(QCoreApplication::translate("SettingsDisplay", "Form", nullptr)); + pushButtonConfigure->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + checkBoxXga->setText(QCoreApplication::translate("SettingsDisplay", "XGA", nullptr)); + label->setText(QCoreApplication::translate("SettingsDisplay", "Video:", nullptr)); + pushButtonConfigureVoodoo->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsDisplay", "Video #2:", nullptr)); + checkBox8514->setText(QCoreApplication::translate("SettingsDisplay", "8514/A", nullptr)); + checkBoxVoodoo->setText(QCoreApplication::translate("SettingsDisplay", "Voodoo Graphics", nullptr)); + pushButtonConfigureXga->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + pushButtonConfigureSecondary->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsDisplay: public Ui_SettingsDisplay {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSDISPLAY_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h new file mode 100644 index 000000000..79ffcead3 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h @@ -0,0 +1,196 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsfloppycdrom.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSFLOPPYCDROM_H +#define UI_QT_SETTINGSFLOPPYCDROM_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsFloppyCDROM +{ +public: + QVBoxLayout *verticalLayout; + QLabel *label; + QTableView *tableViewFloppy; + QHBoxLayout *horizontalLayout; + QLabel *label_2; + QComboBox *comboBoxFloppyType; + QCheckBox *checkBoxTurboTimings; + QCheckBox *checkBoxCheckBPB; + QSpacerItem *verticalSpacer; + QLabel *label_6; + QTableView *tableViewCDROM; + QGridLayout *gridLayout; + QLabel *label_3; + QLabel *label_7; + QLabel *label_4; + QLabel *label_5; + QComboBox *comboBoxBus; + QComboBox *comboBoxChannel; + QComboBox *comboBoxSpeed; + QComboBox *comboBoxCDROMType; + + void setupUi(QWidget *SettingsFloppyCDROM) + { + if (SettingsFloppyCDROM->objectName().isEmpty()) + SettingsFloppyCDROM->setObjectName(QString::fromUtf8("SettingsFloppyCDROM")); + SettingsFloppyCDROM->resize(544, 617); + verticalLayout = new QVBoxLayout(SettingsFloppyCDROM); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + label = new QLabel(SettingsFloppyCDROM); + label->setObjectName(QString::fromUtf8("label")); + + verticalLayout->addWidget(label); + + tableViewFloppy = new QTableView(SettingsFloppyCDROM); + tableViewFloppy->setObjectName(QString::fromUtf8("tableViewFloppy")); + tableViewFloppy->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewFloppy->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewFloppy->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewFloppy->setShowGrid(false); + tableViewFloppy->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewFloppy); + + horizontalLayout = new QHBoxLayout(); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + label_2 = new QLabel(SettingsFloppyCDROM); + label_2->setObjectName(QString::fromUtf8("label_2")); + + horizontalLayout->addWidget(label_2); + + comboBoxFloppyType = new QComboBox(SettingsFloppyCDROM); + comboBoxFloppyType->setObjectName(QString::fromUtf8("comboBoxFloppyType")); + comboBoxFloppyType->setMaxVisibleItems(30); + + horizontalLayout->addWidget(comboBoxFloppyType); + + checkBoxTurboTimings = new QCheckBox(SettingsFloppyCDROM); + checkBoxTurboTimings->setObjectName(QString::fromUtf8("checkBoxTurboTimings")); + + horizontalLayout->addWidget(checkBoxTurboTimings); + + checkBoxCheckBPB = new QCheckBox(SettingsFloppyCDROM); + checkBoxCheckBPB->setObjectName(QString::fromUtf8("checkBoxCheckBPB")); + + horizontalLayout->addWidget(checkBoxCheckBPB); + + + verticalLayout->addLayout(horizontalLayout); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + label_6 = new QLabel(SettingsFloppyCDROM); + label_6->setObjectName(QString::fromUtf8("label_6")); + + verticalLayout->addWidget(label_6); + + tableViewCDROM = new QTableView(SettingsFloppyCDROM); + tableViewCDROM->setObjectName(QString::fromUtf8("tableViewCDROM")); + tableViewCDROM->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewCDROM->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewCDROM->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewCDROM->setShowGrid(false); + tableViewCDROM->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewCDROM); + + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label_3 = new QLabel(SettingsFloppyCDROM); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 0, 0, 1, 1); + + label_7 = new QLabel(SettingsFloppyCDROM); + label_7->setObjectName(QString::fromUtf8("label_7")); + + gridLayout->addWidget(label_7, 0, 2, 1, 1); + + label_4 = new QLabel(SettingsFloppyCDROM); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 1, 0, 1, 1); + + label_5 = new QLabel(SettingsFloppyCDROM); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 2, 0, 1, 1); + + comboBoxBus = new QComboBox(SettingsFloppyCDROM); + comboBoxBus->setObjectName(QString::fromUtf8("comboBoxBus")); + comboBoxBus->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxBus, 0, 1, 1, 1); + + comboBoxChannel = new QComboBox(SettingsFloppyCDROM); + comboBoxChannel->setObjectName(QString::fromUtf8("comboBoxChannel")); + comboBoxChannel->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxChannel, 0, 3, 1, 1); + + comboBoxSpeed = new QComboBox(SettingsFloppyCDROM); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxSpeed, 1, 1, 1, 1); + + comboBoxCDROMType = new QComboBox(SettingsFloppyCDROM); + comboBoxCDROMType->setObjectName(QString::fromUtf8("comboBoxCDROMType")); + comboBoxCDROMType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxCDROMType, 2, 1, 1, 3); + + + verticalLayout->addLayout(gridLayout); + + + retranslateUi(SettingsFloppyCDROM); + + QMetaObject::connectSlotsByName(SettingsFloppyCDROM); + } // setupUi + + void retranslateUi(QWidget *SettingsFloppyCDROM) + { + SettingsFloppyCDROM->setWindowTitle(QCoreApplication::translate("SettingsFloppyCDROM", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Floppy drives:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Type:", nullptr)); + checkBoxTurboTimings->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Turbo timings", nullptr)); + checkBoxCheckBPB->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Check BPB", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsFloppyCDROM", "CD-ROM drives:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Bus:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Channel:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Speed:", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Type:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsFloppyCDROM: public Ui_SettingsFloppyCDROM {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSFLOPPYCDROM_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsharddisks.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsharddisks.h new file mode 100644 index 000000000..280e18844 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsharddisks.h @@ -0,0 +1,143 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsharddisks.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSHARDDISKS_H +#define UI_QT_SETTINGSHARDDISKS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsHarddisks +{ +public: + QVBoxLayout *verticalLayout; + QTableView *tableView; + QHBoxLayout *horizontalLayout_2; + QLabel *labelBus; + QComboBox *comboBoxBus; + QLabel *labelChannel; + QComboBox *comboBoxChannel; + QLabel *labelSpeed; + QComboBox *comboBoxSpeed; + QHBoxLayout *horizontalLayout; + QPushButton *pushButtonNew; + QPushButton *pushButtonExisting; + QPushButton *pushButtonRemove; + + void setupUi(QWidget *SettingsHarddisks) + { + if (SettingsHarddisks->objectName().isEmpty()) + SettingsHarddisks->setObjectName(QString::fromUtf8("SettingsHarddisks")); + SettingsHarddisks->resize(400, 300); + verticalLayout = new QVBoxLayout(SettingsHarddisks); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + tableView = new QTableView(SettingsHarddisks); + tableView->setObjectName(QString::fromUtf8("tableView")); + tableView->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableView->setSelectionMode(QAbstractItemView::SingleSelection); + tableView->setSelectionBehavior(QAbstractItemView::SelectRows); + tableView->setShowGrid(false); + tableView->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableView); + + horizontalLayout_2 = new QHBoxLayout(); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + labelBus = new QLabel(SettingsHarddisks); + labelBus->setObjectName(QString::fromUtf8("labelBus")); + + horizontalLayout_2->addWidget(labelBus); + + comboBoxBus = new QComboBox(SettingsHarddisks); + comboBoxBus->setObjectName(QString::fromUtf8("comboBoxBus")); + comboBoxBus->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxBus); + + labelChannel = new QLabel(SettingsHarddisks); + labelChannel->setObjectName(QString::fromUtf8("labelChannel")); + + horizontalLayout_2->addWidget(labelChannel); + + comboBoxChannel = new QComboBox(SettingsHarddisks); + comboBoxChannel->setObjectName(QString::fromUtf8("comboBoxChannel")); + comboBoxChannel->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxChannel); + + labelSpeed = new QLabel(SettingsHarddisks); + labelSpeed->setObjectName(QString::fromUtf8("labelSpeed")); + + horizontalLayout_2->addWidget(labelSpeed); + + comboBoxSpeed = new QComboBox(SettingsHarddisks); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxSpeed); + + + verticalLayout->addLayout(horizontalLayout_2); + + horizontalLayout = new QHBoxLayout(); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + pushButtonNew = new QPushButton(SettingsHarddisks); + pushButtonNew->setObjectName(QString::fromUtf8("pushButtonNew")); + + horizontalLayout->addWidget(pushButtonNew); + + pushButtonExisting = new QPushButton(SettingsHarddisks); + pushButtonExisting->setObjectName(QString::fromUtf8("pushButtonExisting")); + + horizontalLayout->addWidget(pushButtonExisting); + + pushButtonRemove = new QPushButton(SettingsHarddisks); + pushButtonRemove->setObjectName(QString::fromUtf8("pushButtonRemove")); + + horizontalLayout->addWidget(pushButtonRemove); + + + verticalLayout->addLayout(horizontalLayout); + + + retranslateUi(SettingsHarddisks); + + QMetaObject::connectSlotsByName(SettingsHarddisks); + } // setupUi + + void retranslateUi(QWidget *SettingsHarddisks) + { + SettingsHarddisks->setWindowTitle(QCoreApplication::translate("SettingsHarddisks", "Form", nullptr)); + labelBus->setText(QCoreApplication::translate("SettingsHarddisks", "Bus:", nullptr)); + labelChannel->setText(QCoreApplication::translate("SettingsHarddisks", "ID:", nullptr)); + labelSpeed->setText(QCoreApplication::translate("SettingsHarddisks", "Speed:", nullptr)); + pushButtonNew->setText(QCoreApplication::translate("SettingsHarddisks", "&New...", nullptr)); + pushButtonExisting->setText(QCoreApplication::translate("SettingsHarddisks", "&Existing...", nullptr)); + pushButtonRemove->setText(QCoreApplication::translate("SettingsHarddisks", "&Remove", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsHarddisks: public Ui_SettingsHarddisks {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSHARDDISKS_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsinput.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsinput.h new file mode 100644 index 000000000..8a00559cc --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsinput.h @@ -0,0 +1,133 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsinput.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSINPUT_H +#define UI_QT_SETTINGSINPUT_H + +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsInput +{ +public: + QGridLayout *gridLayout; + QPushButton *pushButtonJoystick2; + QLabel *label_2; + QPushButton *pushButtonJoystick4; + QLabel *label; + QPushButton *pushButtonJoystick3; + QSpacerItem *verticalSpacer; + QPushButton *pushButtonJoystick1; + QPushButton *pushButtonConfigureMouse; + QComboBox *comboBoxMouse; + QComboBox *comboBoxJoystick; + + void setupUi(QWidget *SettingsInput) + { + if (SettingsInput->objectName().isEmpty()) + SettingsInput->setObjectName(QString::fromUtf8("SettingsInput")); + SettingsInput->resize(400, 300); + gridLayout = new QGridLayout(SettingsInput); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, -1); + pushButtonJoystick2 = new QPushButton(SettingsInput); + pushButtonJoystick2->setObjectName(QString::fromUtf8("pushButtonJoystick2")); + + gridLayout->addWidget(pushButtonJoystick2, 2, 1, 1, 1); + + label_2 = new QLabel(SettingsInput); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 1, 0, 1, 1); + + pushButtonJoystick4 = new QPushButton(SettingsInput); + pushButtonJoystick4->setObjectName(QString::fromUtf8("pushButtonJoystick4")); + + gridLayout->addWidget(pushButtonJoystick4, 2, 3, 1, 1); + + label = new QLabel(SettingsInput); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + pushButtonJoystick3 = new QPushButton(SettingsInput); + pushButtonJoystick3->setObjectName(QString::fromUtf8("pushButtonJoystick3")); + + gridLayout->addWidget(pushButtonJoystick3, 2, 2, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 3, 0, 1, 1); + + pushButtonJoystick1 = new QPushButton(SettingsInput); + pushButtonJoystick1->setObjectName(QString::fromUtf8("pushButtonJoystick1")); + + gridLayout->addWidget(pushButtonJoystick1, 2, 0, 1, 1); + + pushButtonConfigureMouse = new QPushButton(SettingsInput); + pushButtonConfigureMouse->setObjectName(QString::fromUtf8("pushButtonConfigureMouse")); + QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(pushButtonConfigureMouse->sizePolicy().hasHeightForWidth()); + pushButtonConfigureMouse->setSizePolicy(sizePolicy); + + gridLayout->addWidget(pushButtonConfigureMouse, 0, 3, 1, 1); + + comboBoxMouse = new QComboBox(SettingsInput); + comboBoxMouse->setObjectName(QString::fromUtf8("comboBoxMouse")); + comboBoxMouse->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxMouse->sizePolicy().hasHeightForWidth()); + comboBoxMouse->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(comboBoxMouse, 0, 1, 1, 2); + + comboBoxJoystick = new QComboBox(SettingsInput); + comboBoxJoystick->setObjectName(QString::fromUtf8("comboBoxJoystick")); + comboBoxJoystick->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxJoystick, 1, 1, 1, 2); + + + retranslateUi(SettingsInput); + + QMetaObject::connectSlotsByName(SettingsInput); + } // setupUi + + void retranslateUi(QWidget *SettingsInput) + { + SettingsInput->setWindowTitle(QCoreApplication::translate("SettingsInput", "Form", nullptr)); + pushButtonJoystick2->setText(QCoreApplication::translate("SettingsInput", "Joystick 2...", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsInput", "Joystick:", nullptr)); + pushButtonJoystick4->setText(QCoreApplication::translate("SettingsInput", "Joystick 4...", nullptr)); + label->setText(QCoreApplication::translate("SettingsInput", "Mouse:", nullptr)); + pushButtonJoystick3->setText(QCoreApplication::translate("SettingsInput", "Joystick 3...", nullptr)); + pushButtonJoystick1->setText(QCoreApplication::translate("SettingsInput", "Joystick 1...", nullptr)); + pushButtonConfigureMouse->setText(QCoreApplication::translate("SettingsInput", "Configure", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsInput: public Ui_SettingsInput {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSINPUT_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsmachine.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsmachine.h new file mode 100644 index 000000000..bc9b1b390 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsmachine.h @@ -0,0 +1,306 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsmachine.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSMACHINE_H +#define UI_QT_SETTINGSMACHINE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsMachine +{ +public: + QVBoxLayout *vboxLayout; + QWidget *widget; + QGridLayout *gridLayout; + QLabel *label_5; + QComboBox *comboBoxMachineType; + QLabel *label_6; + QComboBox *comboBoxFPU; + QWidget *widget_4; + QHBoxLayout *horizontalLayout_3; + QComboBox *comboBoxWaitStates; + QLabel *label_8; + QComboBox *comboBoxPitMode; + QLabel *label_3; + QWidget *widget_2; + QHBoxLayout *horizontalLayout; + QComboBox *comboBoxCPU; + QLabel *label_7; + QComboBox *comboBoxSpeed; + QSpinBox *spinBoxRAM; + QWidget *widget_3; + QHBoxLayout *horizontalLayout_2; + QComboBox *comboBoxMachine; + QPushButton *pushButtonConfigure; + QLabel *label; + QLabel *label_2; + QLabel *label_4; + QCheckBox *checkBoxDynamicRecompiler; + QCheckBox *checkBoxFPUSoftfloat; + QGroupBox *groupBox; + QVBoxLayout *verticalLayout_2; + QRadioButton *radioButtonDisabled; + QRadioButton *radioButtonLocalTime; + QRadioButton *radioButtonUTC; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsMachine) + { + if (SettingsMachine->objectName().isEmpty()) + SettingsMachine->setObjectName(QString::fromUtf8("SettingsMachine")); + SettingsMachine->resize(458, 434); + vboxLayout = new QVBoxLayout(SettingsMachine); + vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); + vboxLayout->setContentsMargins(0, 0, 0, 0); + widget = new QWidget(SettingsMachine); + widget->setObjectName(QString::fromUtf8("widget")); + gridLayout = new QGridLayout(widget); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, 0); + label_5 = new QLabel(widget); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 4, 0, 1, 1); + + comboBoxMachineType = new QComboBox(widget); + comboBoxMachineType->setObjectName(QString::fromUtf8("comboBoxMachineType")); + comboBoxMachineType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMachineType, 0, 1, 1, 1); + + label_6 = new QLabel(widget); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout->addWidget(label_6, 5, 0, 1, 1); + + comboBoxFPU = new QComboBox(widget); + comboBoxFPU->setObjectName(QString::fromUtf8("comboBoxFPU")); + comboBoxFPU->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxFPU, 3, 1, 1, 1); + + widget_4 = new QWidget(widget); + widget_4->setObjectName(QString::fromUtf8("widget_4")); + horizontalLayout_3 = new QHBoxLayout(widget_4); + horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3")); + horizontalLayout_3->setContentsMargins(0, 0, 0, 0); + comboBoxWaitStates = new QComboBox(widget_4); + comboBoxWaitStates->setObjectName(QString::fromUtf8("comboBoxWaitStates")); + comboBoxWaitStates->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxWaitStates->sizePolicy().hasHeightForWidth()); + comboBoxWaitStates->setSizePolicy(sizePolicy); + + horizontalLayout_3->addWidget(comboBoxWaitStates); + + label_8 = new QLabel(widget_4); + label_8->setObjectName(QString::fromUtf8("label_8")); + + horizontalLayout_3->addWidget(label_8); + + comboBoxPitMode = new QComboBox(widget_4); + comboBoxPitMode->setObjectName(QString::fromUtf8("comboBoxPitMode")); + comboBoxPitMode->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxPitMode->sizePolicy().hasHeightForWidth()); + comboBoxPitMode->setSizePolicy(sizePolicy1); + + horizontalLayout_3->addWidget(comboBoxPitMode); + + + gridLayout->addWidget(widget_4, 4, 1, 1, 1); + + label_3 = new QLabel(widget); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 2, 0, 1, 1); + + widget_2 = new QWidget(widget); + widget_2->setObjectName(QString::fromUtf8("widget_2")); + horizontalLayout = new QHBoxLayout(widget_2); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + horizontalLayout->setContentsMargins(0, 0, 0, 0); + comboBoxCPU = new QComboBox(widget_2); + comboBoxCPU->setObjectName(QString::fromUtf8("comboBoxCPU")); + comboBoxCPU->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCPU->sizePolicy().hasHeightForWidth()); + comboBoxCPU->setSizePolicy(sizePolicy); + + horizontalLayout->addWidget(comboBoxCPU); + + label_7 = new QLabel(widget_2); + label_7->setObjectName(QString::fromUtf8("label_7")); + label_7->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter); + + horizontalLayout->addWidget(label_7); + + comboBoxSpeed = new QComboBox(widget_2); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxSpeed->sizePolicy().hasHeightForWidth()); + comboBoxSpeed->setSizePolicy(sizePolicy1); + + horizontalLayout->addWidget(comboBoxSpeed); + + + gridLayout->addWidget(widget_2, 2, 1, 1, 1); + + spinBoxRAM = new QSpinBox(widget); + spinBoxRAM->setObjectName(QString::fromUtf8("spinBoxRAM")); + QSizePolicy sizePolicy2(QSizePolicy::Maximum, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(spinBoxRAM->sizePolicy().hasHeightForWidth()); + spinBoxRAM->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(spinBoxRAM, 5, 1, 1, 1); + + widget_3 = new QWidget(widget); + widget_3->setObjectName(QString::fromUtf8("widget_3")); + horizontalLayout_2 = new QHBoxLayout(widget_3); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + horizontalLayout_2->setContentsMargins(0, 0, 0, 0); + comboBoxMachine = new QComboBox(widget_3); + comboBoxMachine->setObjectName(QString::fromUtf8("comboBoxMachine")); + comboBoxMachine->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxMachine); + + pushButtonConfigure = new QPushButton(widget_3); + pushButtonConfigure->setObjectName(QString::fromUtf8("pushButtonConfigure")); + sizePolicy2.setHeightForWidth(pushButtonConfigure->sizePolicy().hasHeightForWidth()); + pushButtonConfigure->setSizePolicy(sizePolicy2); + + horizontalLayout_2->addWidget(pushButtonConfigure); + + + gridLayout->addWidget(widget_3, 1, 1, 1, 1); + + label = new QLabel(widget); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + label_2 = new QLabel(widget); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 1, 0, 1, 1); + + label_4 = new QLabel(widget); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 3, 0, 1, 1); + + + vboxLayout->addWidget(widget); + + checkBoxDynamicRecompiler = new QCheckBox(SettingsMachine); + checkBoxDynamicRecompiler->setObjectName(QString::fromUtf8("checkBoxDynamicRecompiler")); + QSizePolicy sizePolicy3(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy3.setHorizontalStretch(2); + sizePolicy3.setVerticalStretch(2); + sizePolicy3.setHeightForWidth(checkBoxDynamicRecompiler->sizePolicy().hasHeightForWidth()); + checkBoxDynamicRecompiler->setSizePolicy(sizePolicy3); + + vboxLayout->addWidget(checkBoxDynamicRecompiler); + + checkBoxFPUSoftfloat = new QCheckBox(SettingsMachine); + checkBoxFPUSoftfloat->setObjectName(QString::fromUtf8("checkBoxFPUSoftfloat")); + QSizePolicy sizePolicy4(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy4.setHorizontalStretch(3); + sizePolicy4.setVerticalStretch(3); + sizePolicy4.setHeightForWidth(checkBoxFPUSoftfloat->sizePolicy().hasHeightForWidth()); + checkBoxFPUSoftfloat->setSizePolicy(sizePolicy4); + + vboxLayout->addWidget(checkBoxFPUSoftfloat); + + groupBox = new QGroupBox(SettingsMachine); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + QSizePolicy sizePolicy5(QSizePolicy::Maximum, QSizePolicy::Preferred); + sizePolicy5.setHorizontalStretch(0); + sizePolicy5.setVerticalStretch(0); + sizePolicy5.setHeightForWidth(groupBox->sizePolicy().hasHeightForWidth()); + groupBox->setSizePolicy(sizePolicy5); + verticalLayout_2 = new QVBoxLayout(groupBox); + verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2")); + radioButtonDisabled = new QRadioButton(groupBox); + radioButtonDisabled->setObjectName(QString::fromUtf8("radioButtonDisabled")); + + verticalLayout_2->addWidget(radioButtonDisabled); + + radioButtonLocalTime = new QRadioButton(groupBox); + radioButtonLocalTime->setObjectName(QString::fromUtf8("radioButtonLocalTime")); + + verticalLayout_2->addWidget(radioButtonLocalTime); + + radioButtonUTC = new QRadioButton(groupBox); + radioButtonUTC->setObjectName(QString::fromUtf8("radioButtonUTC")); + + verticalLayout_2->addWidget(radioButtonUTC); + + + vboxLayout->addWidget(groupBox); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + vboxLayout->addItem(verticalSpacer); + + + retranslateUi(SettingsMachine); + + QMetaObject::connectSlotsByName(SettingsMachine); + } // setupUi + + void retranslateUi(QWidget *SettingsMachine) + { + SettingsMachine->setWindowTitle(QCoreApplication::translate("SettingsMachine", "Form", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsMachine", "Wait states:", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsMachine", "Memory:", nullptr)); + label_8->setText(QCoreApplication::translate("SettingsMachine", "PIT Mode:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsMachine", "CPU type:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsMachine", "Speed:", nullptr)); + pushButtonConfigure->setText(QCoreApplication::translate("SettingsMachine", "Configure", nullptr)); + label->setText(QCoreApplication::translate("SettingsMachine", "Machine type:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsMachine", "Machine:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsMachine", "FPU:", nullptr)); + checkBoxDynamicRecompiler->setText(QCoreApplication::translate("SettingsMachine", "Dynamic Recompiler", nullptr)); + checkBoxFPUSoftfloat->setText(QCoreApplication::translate("SettingsMachine", "Softfloat FPU", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsMachine", "Time synchronization", nullptr)); + radioButtonDisabled->setText(QCoreApplication::translate("SettingsMachine", "Disabled", nullptr)); + radioButtonLocalTime->setText(QCoreApplication::translate("SettingsMachine", "Enabled (local time)", nullptr)); + radioButtonUTC->setText(QCoreApplication::translate("SettingsMachine", "Enabled (UTC)", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsMachine: public Ui_SettingsMachine {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSMACHINE_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsnetwork.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsnetwork.h new file mode 100644 index 000000000..d072e0866 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsnetwork.h @@ -0,0 +1,438 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsnetwork.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSNETWORK_H +#define UI_QT_SETTINGSNETWORK_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsNetwork +{ +public: + QVBoxLayout *verticalLayout; + QTabWidget *tabWidget; + QWidget *tab_1; + QGridLayout *gridLayout_3; + QLabel *label; + QComboBox *comboBoxNet1; + QLabel *label_2; + QComboBox *comboBoxIntf1; + QLabel *label_7; + QComboBox *comboBoxNIC1; + QPushButton *pushButtonConf1; + QLabel *label_3; + QLineEdit *socketVDENIC1; + QSpacerItem *verticalSpacer; + QWidget *tab_2; + QGridLayout *gridLayout; + QLabel *label_8; + QComboBox *comboBoxNet2; + QLabel *label_9; + QComboBox *comboBoxIntf2; + QLabel *label_10; + QComboBox *comboBoxNIC2; + QPushButton *pushButtonConf2; + QLabel *label_4; + QLineEdit *socketVDENIC2; + QSpacerItem *verticalSpacer_2; + QWidget *tab_3; + QGridLayout *gridLayout_2; + QLabel *label_11; + QComboBox *comboBoxNet3; + QLabel *label_12; + QComboBox *comboBoxIntf3; + QLabel *label_13; + QComboBox *comboBoxNIC3; + QPushButton *pushButtonConf3; + QLabel *label_5; + QLineEdit *socketVDENIC3; + QSpacerItem *verticalSpacer_3; + QWidget *tab_4; + QGridLayout *gridLayout_4; + QLabel *label_14; + QComboBox *comboBoxNet4; + QLabel *label_15; + QComboBox *comboBoxIntf4; + QLabel *label_16; + QComboBox *comboBoxNIC4; + QPushButton *pushButtonConf4; + QLineEdit *socketVDENIC4; + QLabel *label_6; + QSpacerItem *verticalSpacer_4; + + void setupUi(QWidget *SettingsNetwork) + { + if (SettingsNetwork->objectName().isEmpty()) + SettingsNetwork->setObjectName(QString::fromUtf8("SettingsNetwork")); + SettingsNetwork->resize(548, 488); + verticalLayout = new QVBoxLayout(SettingsNetwork); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + tabWidget = new QTabWidget(SettingsNetwork); + tabWidget->setObjectName(QString::fromUtf8("tabWidget")); + tab_1 = new QWidget(); + tab_1->setObjectName(QString::fromUtf8("tab_1")); + gridLayout_3 = new QGridLayout(tab_1); + gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3")); + label = new QLabel(tab_1); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(label, 0, 0, 1, 1); + + comboBoxNet1 = new QComboBox(tab_1); + comboBoxNet1->setObjectName(QString::fromUtf8("comboBoxNet1")); + comboBoxNet1->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxNet1->sizePolicy().hasHeightForWidth()); + comboBoxNet1->setSizePolicy(sizePolicy1); + + gridLayout_3->addWidget(comboBoxNet1, 0, 1, 1, 2); + + label_2 = new QLabel(tab_1); + label_2->setObjectName(QString::fromUtf8("label_2")); + sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth()); + label_2->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(label_2, 1, 0, 1, 1); + + comboBoxIntf1 = new QComboBox(tab_1); + comboBoxIntf1->setObjectName(QString::fromUtf8("comboBoxIntf1")); + comboBoxIntf1->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf1->sizePolicy().hasHeightForWidth()); + comboBoxIntf1->setSizePolicy(sizePolicy1); + + gridLayout_3->addWidget(comboBoxIntf1, 1, 1, 1, 2); + + label_7 = new QLabel(tab_1); + label_7->setObjectName(QString::fromUtf8("label_7")); + sizePolicy.setHeightForWidth(label_7->sizePolicy().hasHeightForWidth()); + label_7->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(label_7, 2, 0, 1, 1); + + comboBoxNIC1 = new QComboBox(tab_1); + comboBoxNIC1->setObjectName(QString::fromUtf8("comboBoxNIC1")); + comboBoxNIC1->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC1->sizePolicy().hasHeightForWidth()); + comboBoxNIC1->setSizePolicy(sizePolicy1); + comboBoxNIC1->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout_3->addWidget(comboBoxNIC1, 2, 1, 1, 1); + + pushButtonConf1 = new QPushButton(tab_1); + pushButtonConf1->setObjectName(QString::fromUtf8("pushButtonConf1")); + QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(pushButtonConf1->sizePolicy().hasHeightForWidth()); + pushButtonConf1->setSizePolicy(sizePolicy2); + + gridLayout_3->addWidget(pushButtonConf1, 2, 2, 1, 1); + + label_3 = new QLabel(tab_1); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout_3->addWidget(label_3, 3, 0, 1, 1); + + socketVDENIC1 = new QLineEdit(tab_1); + socketVDENIC1->setObjectName(QString::fromUtf8("socketVDENIC1")); + socketVDENIC1->setMaxLength(127); + + gridLayout_3->addWidget(socketVDENIC1, 3, 1, 1, 2); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_3->addItem(verticalSpacer, 4, 1, 1, 1); + + tabWidget->addTab(tab_1, QString()); + tab_2 = new QWidget(); + tab_2->setObjectName(QString::fromUtf8("tab_2")); + gridLayout = new QGridLayout(tab_2); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label_8 = new QLabel(tab_2); + label_8->setObjectName(QString::fromUtf8("label_8")); + sizePolicy.setHeightForWidth(label_8->sizePolicy().hasHeightForWidth()); + label_8->setSizePolicy(sizePolicy); + + gridLayout->addWidget(label_8, 0, 0, 1, 1); + + comboBoxNet2 = new QComboBox(tab_2); + comboBoxNet2->setObjectName(QString::fromUtf8("comboBoxNet2")); + comboBoxNet2->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNet2->sizePolicy().hasHeightForWidth()); + comboBoxNet2->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(comboBoxNet2, 0, 1, 1, 2); + + label_9 = new QLabel(tab_2); + label_9->setObjectName(QString::fromUtf8("label_9")); + sizePolicy.setHeightForWidth(label_9->sizePolicy().hasHeightForWidth()); + label_9->setSizePolicy(sizePolicy); + + gridLayout->addWidget(label_9, 1, 0, 1, 1); + + comboBoxIntf2 = new QComboBox(tab_2); + comboBoxIntf2->setObjectName(QString::fromUtf8("comboBoxIntf2")); + comboBoxIntf2->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf2->sizePolicy().hasHeightForWidth()); + comboBoxIntf2->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(comboBoxIntf2, 1, 1, 1, 2); + + label_10 = new QLabel(tab_2); + label_10->setObjectName(QString::fromUtf8("label_10")); + sizePolicy.setHeightForWidth(label_10->sizePolicy().hasHeightForWidth()); + label_10->setSizePolicy(sizePolicy); + + gridLayout->addWidget(label_10, 2, 0, 1, 1); + + comboBoxNIC2 = new QComboBox(tab_2); + comboBoxNIC2->setObjectName(QString::fromUtf8("comboBoxNIC2")); + comboBoxNIC2->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC2->sizePolicy().hasHeightForWidth()); + comboBoxNIC2->setSizePolicy(sizePolicy1); + comboBoxNIC2->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout->addWidget(comboBoxNIC2, 2, 1, 1, 1); + + pushButtonConf2 = new QPushButton(tab_2); + pushButtonConf2->setObjectName(QString::fromUtf8("pushButtonConf2")); + + gridLayout->addWidget(pushButtonConf2, 2, 2, 1, 1); + + label_4 = new QLabel(tab_2); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 3, 0, 1, 1); + + socketVDENIC2 = new QLineEdit(tab_2); + socketVDENIC2->setObjectName(QString::fromUtf8("socketVDENIC2")); + socketVDENIC2->setMaxLength(127); + + gridLayout->addWidget(socketVDENIC2, 3, 1, 1, 2); + + verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer_2, 4, 1, 1, 1); + + tabWidget->addTab(tab_2, QString()); + tab_3 = new QWidget(); + tab_3->setObjectName(QString::fromUtf8("tab_3")); + gridLayout_2 = new QGridLayout(tab_3); + gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2")); + label_11 = new QLabel(tab_3); + label_11->setObjectName(QString::fromUtf8("label_11")); + sizePolicy.setHeightForWidth(label_11->sizePolicy().hasHeightForWidth()); + label_11->setSizePolicy(sizePolicy); + + gridLayout_2->addWidget(label_11, 0, 0, 1, 1); + + comboBoxNet3 = new QComboBox(tab_3); + comboBoxNet3->setObjectName(QString::fromUtf8("comboBoxNet3")); + comboBoxNet3->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNet3->sizePolicy().hasHeightForWidth()); + comboBoxNet3->setSizePolicy(sizePolicy1); + + gridLayout_2->addWidget(comboBoxNet3, 0, 1, 1, 2); + + label_12 = new QLabel(tab_3); + label_12->setObjectName(QString::fromUtf8("label_12")); + sizePolicy.setHeightForWidth(label_12->sizePolicy().hasHeightForWidth()); + label_12->setSizePolicy(sizePolicy); + + gridLayout_2->addWidget(label_12, 1, 0, 1, 1); + + comboBoxIntf3 = new QComboBox(tab_3); + comboBoxIntf3->setObjectName(QString::fromUtf8("comboBoxIntf3")); + comboBoxIntf3->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf3->sizePolicy().hasHeightForWidth()); + comboBoxIntf3->setSizePolicy(sizePolicy1); + + gridLayout_2->addWidget(comboBoxIntf3, 1, 1, 1, 2); + + label_13 = new QLabel(tab_3); + label_13->setObjectName(QString::fromUtf8("label_13")); + sizePolicy.setHeightForWidth(label_13->sizePolicy().hasHeightForWidth()); + label_13->setSizePolicy(sizePolicy); + + gridLayout_2->addWidget(label_13, 2, 0, 1, 1); + + comboBoxNIC3 = new QComboBox(tab_3); + comboBoxNIC3->setObjectName(QString::fromUtf8("comboBoxNIC3")); + comboBoxNIC3->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC3->sizePolicy().hasHeightForWidth()); + comboBoxNIC3->setSizePolicy(sizePolicy1); + comboBoxNIC3->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout_2->addWidget(comboBoxNIC3, 2, 1, 1, 1); + + pushButtonConf3 = new QPushButton(tab_3); + pushButtonConf3->setObjectName(QString::fromUtf8("pushButtonConf3")); + sizePolicy2.setHeightForWidth(pushButtonConf3->sizePolicy().hasHeightForWidth()); + pushButtonConf3->setSizePolicy(sizePolicy2); + + gridLayout_2->addWidget(pushButtonConf3, 2, 2, 1, 1); + + label_5 = new QLabel(tab_3); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout_2->addWidget(label_5, 3, 0, 1, 1); + + socketVDENIC3 = new QLineEdit(tab_3); + socketVDENIC3->setObjectName(QString::fromUtf8("socketVDENIC3")); + socketVDENIC3->setMaxLength(127); + + gridLayout_2->addWidget(socketVDENIC3, 3, 1, 1, 2); + + verticalSpacer_3 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_2->addItem(verticalSpacer_3, 4, 1, 1, 1); + + tabWidget->addTab(tab_3, QString()); + tab_4 = new QWidget(); + tab_4->setObjectName(QString::fromUtf8("tab_4")); + gridLayout_4 = new QGridLayout(tab_4); + gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4")); + label_14 = new QLabel(tab_4); + label_14->setObjectName(QString::fromUtf8("label_14")); + sizePolicy.setHeightForWidth(label_14->sizePolicy().hasHeightForWidth()); + label_14->setSizePolicy(sizePolicy); + + gridLayout_4->addWidget(label_14, 0, 0, 1, 1); + + comboBoxNet4 = new QComboBox(tab_4); + comboBoxNet4->setObjectName(QString::fromUtf8("comboBoxNet4")); + comboBoxNet4->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNet4->sizePolicy().hasHeightForWidth()); + comboBoxNet4->setSizePolicy(sizePolicy1); + + gridLayout_4->addWidget(comboBoxNet4, 0, 1, 1, 2); + + label_15 = new QLabel(tab_4); + label_15->setObjectName(QString::fromUtf8("label_15")); + sizePolicy.setHeightForWidth(label_15->sizePolicy().hasHeightForWidth()); + label_15->setSizePolicy(sizePolicy); + + gridLayout_4->addWidget(label_15, 1, 0, 1, 1); + + comboBoxIntf4 = new QComboBox(tab_4); + comboBoxIntf4->setObjectName(QString::fromUtf8("comboBoxIntf4")); + comboBoxIntf4->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf4->sizePolicy().hasHeightForWidth()); + comboBoxIntf4->setSizePolicy(sizePolicy1); + + gridLayout_4->addWidget(comboBoxIntf4, 1, 1, 1, 2); + + label_16 = new QLabel(tab_4); + label_16->setObjectName(QString::fromUtf8("label_16")); + sizePolicy.setHeightForWidth(label_16->sizePolicy().hasHeightForWidth()); + label_16->setSizePolicy(sizePolicy); + + gridLayout_4->addWidget(label_16, 2, 0, 1, 1); + + comboBoxNIC4 = new QComboBox(tab_4); + comboBoxNIC4->setObjectName(QString::fromUtf8("comboBoxNIC4")); + comboBoxNIC4->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC4->sizePolicy().hasHeightForWidth()); + comboBoxNIC4->setSizePolicy(sizePolicy1); + comboBoxNIC4->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout_4->addWidget(comboBoxNIC4, 2, 1, 1, 1); + + pushButtonConf4 = new QPushButton(tab_4); + pushButtonConf4->setObjectName(QString::fromUtf8("pushButtonConf4")); + sizePolicy2.setHeightForWidth(pushButtonConf4->sizePolicy().hasHeightForWidth()); + pushButtonConf4->setSizePolicy(sizePolicy2); + + gridLayout_4->addWidget(pushButtonConf4, 2, 2, 1, 1); + + socketVDENIC4 = new QLineEdit(tab_4); + socketVDENIC4->setObjectName(QString::fromUtf8("socketVDENIC4")); + socketVDENIC4->setMaxLength(127); + + gridLayout_4->addWidget(socketVDENIC4, 3, 1, 1, 2); + + label_6 = new QLabel(tab_4); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout_4->addWidget(label_6, 3, 0, 1, 1); + + verticalSpacer_4 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_4->addItem(verticalSpacer_4, 4, 1, 1, 1); + + tabWidget->addTab(tab_4, QString()); + + verticalLayout->addWidget(tabWidget); + + + retranslateUi(SettingsNetwork); + + tabWidget->setCurrentIndex(0); + + + QMetaObject::connectSlotsByName(SettingsNetwork); + } // setupUi + + void retranslateUi(QWidget *SettingsNetwork) + { + SettingsNetwork->setWindowTitle(QCoreApplication::translate("SettingsNetwork", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf1->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_1), QCoreApplication::translate("SettingsNetwork", "Network Card #1", nullptr)); + label_8->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_9->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_10->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf2->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_2), QCoreApplication::translate("SettingsNetwork", "Network Card #2", nullptr)); + label_11->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_12->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_13->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf3->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_3), QCoreApplication::translate("SettingsNetwork", "Network Card #3", nullptr)); + label_14->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_15->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_16->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf4->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_4), QCoreApplication::translate("SettingsNetwork", "Network Card #4", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsNetwork: public Ui_SettingsNetwork {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSNETWORK_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h new file mode 100644 index 000000000..d81dbd722 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h @@ -0,0 +1,218 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsotherperipherals.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSOTHERPERIPHERALS_H +#define UI_QT_SETTINGSOTHERPERIPHERALS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsOtherPeripherals +{ +public: + QVBoxLayout *verticalLayout; + QHBoxLayout *horizontalLayout; + QLabel *label; + QComboBox *comboBoxRTC; + QPushButton *pushButtonConfigureRTC; + QGroupBox *groupBox; + QGridLayout *gridLayout; + QPushButton *pushButtonConfigureCard2; + QComboBox *comboBoxCard2; + QPushButton *pushButtonConfigureCard3; + QLabel *label_3; + QLabel *label_4; + QPushButton *pushButtonConfigureCard1; + QComboBox *comboBoxCard1; + QLabel *label_2; + QComboBox *comboBoxCard3; + QComboBox *comboBoxCard4; + QPushButton *pushButtonConfigureCard4; + QLabel *label_5; + QHBoxLayout *horizontalLayout_2; + QCheckBox *checkBoxISABugger; + QCheckBox *checkBoxPOSTCard; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsOtherPeripherals) + { + if (SettingsOtherPeripherals->objectName().isEmpty()) + SettingsOtherPeripherals->setObjectName(QString::fromUtf8("SettingsOtherPeripherals")); + SettingsOtherPeripherals->resize(421, 458); + verticalLayout = new QVBoxLayout(SettingsOtherPeripherals); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + horizontalLayout = new QHBoxLayout(); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + label = new QLabel(SettingsOtherPeripherals); + label->setObjectName(QString::fromUtf8("label")); + + horizontalLayout->addWidget(label); + + comboBoxRTC = new QComboBox(SettingsOtherPeripherals); + comboBoxRTC->setObjectName(QString::fromUtf8("comboBoxRTC")); + comboBoxRTC->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxRTC->sizePolicy().hasHeightForWidth()); + comboBoxRTC->setSizePolicy(sizePolicy); + + horizontalLayout->addWidget(comboBoxRTC); + + pushButtonConfigureRTC = new QPushButton(SettingsOtherPeripherals); + pushButtonConfigureRTC->setObjectName(QString::fromUtf8("pushButtonConfigureRTC")); + + horizontalLayout->addWidget(pushButtonConfigureRTC); + + + verticalLayout->addLayout(horizontalLayout); + + groupBox = new QGroupBox(SettingsOtherPeripherals); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + gridLayout = new QGridLayout(groupBox); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + pushButtonConfigureCard2 = new QPushButton(groupBox); + pushButtonConfigureCard2->setObjectName(QString::fromUtf8("pushButtonConfigureCard2")); + + gridLayout->addWidget(pushButtonConfigureCard2, 1, 2, 1, 1); + + comboBoxCard2 = new QComboBox(groupBox); + comboBoxCard2->setObjectName(QString::fromUtf8("comboBoxCard2")); + comboBoxCard2->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard2->sizePolicy().hasHeightForWidth()); + comboBoxCard2->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard2, 1, 1, 1, 1); + + pushButtonConfigureCard3 = new QPushButton(groupBox); + pushButtonConfigureCard3->setObjectName(QString::fromUtf8("pushButtonConfigureCard3")); + + gridLayout->addWidget(pushButtonConfigureCard3, 2, 2, 1, 1); + + label_3 = new QLabel(groupBox); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 1, 0, 1, 1); + + label_4 = new QLabel(groupBox); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 2, 0, 1, 1); + + pushButtonConfigureCard1 = new QPushButton(groupBox); + pushButtonConfigureCard1->setObjectName(QString::fromUtf8("pushButtonConfigureCard1")); + + gridLayout->addWidget(pushButtonConfigureCard1, 0, 2, 1, 1); + + comboBoxCard1 = new QComboBox(groupBox); + comboBoxCard1->setObjectName(QString::fromUtf8("comboBoxCard1")); + comboBoxCard1->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard1->sizePolicy().hasHeightForWidth()); + comboBoxCard1->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard1, 0, 1, 1, 1); + + label_2 = new QLabel(groupBox); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 0, 0, 1, 1); + + comboBoxCard3 = new QComboBox(groupBox); + comboBoxCard3->setObjectName(QString::fromUtf8("comboBoxCard3")); + comboBoxCard3->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard3->sizePolicy().hasHeightForWidth()); + comboBoxCard3->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard3, 2, 1, 1, 1); + + comboBoxCard4 = new QComboBox(groupBox); + comboBoxCard4->setObjectName(QString::fromUtf8("comboBoxCard4")); + comboBoxCard4->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard4->sizePolicy().hasHeightForWidth()); + comboBoxCard4->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard4, 3, 1, 1, 1); + + pushButtonConfigureCard4 = new QPushButton(groupBox); + pushButtonConfigureCard4->setObjectName(QString::fromUtf8("pushButtonConfigureCard4")); + + gridLayout->addWidget(pushButtonConfigureCard4, 3, 2, 1, 1); + + label_5 = new QLabel(groupBox); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 3, 0, 1, 1); + + + verticalLayout->addWidget(groupBox); + + horizontalLayout_2 = new QHBoxLayout(); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + checkBoxISABugger = new QCheckBox(SettingsOtherPeripherals); + checkBoxISABugger->setObjectName(QString::fromUtf8("checkBoxISABugger")); + + horizontalLayout_2->addWidget(checkBoxISABugger); + + checkBoxPOSTCard = new QCheckBox(SettingsOtherPeripherals); + checkBoxPOSTCard->setObjectName(QString::fromUtf8("checkBoxPOSTCard")); + + horizontalLayout_2->addWidget(checkBoxPOSTCard); + + + verticalLayout->addLayout(horizontalLayout_2); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + + retranslateUi(SettingsOtherPeripherals); + + QMetaObject::connectSlotsByName(SettingsOtherPeripherals); + } // setupUi + + void retranslateUi(QWidget *SettingsOtherPeripherals) + { + SettingsOtherPeripherals->setWindowTitle(QCoreApplication::translate("SettingsOtherPeripherals", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsOtherPeripherals", "ISA RTC:", nullptr)); + pushButtonConfigureRTC->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsOtherPeripherals", "ISA Memory Expansion", nullptr)); + pushButtonConfigureCard2->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + pushButtonConfigureCard3->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 2:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 3:", nullptr)); + pushButtonConfigureCard1->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 1:", nullptr)); + pushButtonConfigureCard4->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 4:", nullptr)); + checkBoxISABugger->setText(QCoreApplication::translate("SettingsOtherPeripherals", "ISABugger device", nullptr)); + checkBoxPOSTCard->setText(QCoreApplication::translate("SettingsOtherPeripherals", "POST card", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsOtherPeripherals: public Ui_SettingsOtherPeripherals {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSOTHERPERIPHERALS_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h new file mode 100644 index 000000000..00005c783 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h @@ -0,0 +1,189 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsotherremovable.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSOTHERREMOVABLE_H +#define UI_QT_SETTINGSOTHERREMOVABLE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsOtherRemovable +{ +public: + QVBoxLayout *verticalLayout; + QLabel *label; + QTableView *tableViewMO; + QGridLayout *gridLayout; + QLabel *label_2; + QLabel *label_7; + QComboBox *comboBoxMOBus; + QComboBox *comboBoxMOChannel; + QLabel *label_4; + QComboBox *comboBoxMOType; + QSpacerItem *verticalSpacer; + QLabel *label_6; + QTableView *tableViewZIP; + QHBoxLayout *horizontalLayout_2; + QLabel *label_3; + QComboBox *comboBoxZIPBus; + QLabel *label_5; + QComboBox *comboBoxZIPChannel; + QCheckBox *checkBoxZIP250; + + void setupUi(QWidget *SettingsOtherRemovable) + { + if (SettingsOtherRemovable->objectName().isEmpty()) + SettingsOtherRemovable->setObjectName(QString::fromUtf8("SettingsOtherRemovable")); + SettingsOtherRemovable->resize(418, 433); + verticalLayout = new QVBoxLayout(SettingsOtherRemovable); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + label = new QLabel(SettingsOtherRemovable); + label->setObjectName(QString::fromUtf8("label")); + + verticalLayout->addWidget(label); + + tableViewMO = new QTableView(SettingsOtherRemovable); + tableViewMO->setObjectName(QString::fromUtf8("tableViewMO")); + tableViewMO->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewMO->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewMO->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewMO->setShowGrid(false); + tableViewMO->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewMO); + + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label_2 = new QLabel(SettingsOtherRemovable); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 0, 0, 1, 1); + + label_7 = new QLabel(SettingsOtherRemovable); + label_7->setObjectName(QString::fromUtf8("label_7")); + + gridLayout->addWidget(label_7, 0, 2, 1, 1); + + comboBoxMOBus = new QComboBox(SettingsOtherRemovable); + comboBoxMOBus->setObjectName(QString::fromUtf8("comboBoxMOBus")); + comboBoxMOBus->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMOBus, 0, 1, 1, 1); + + comboBoxMOChannel = new QComboBox(SettingsOtherRemovable); + comboBoxMOChannel->setObjectName(QString::fromUtf8("comboBoxMOChannel")); + comboBoxMOChannel->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMOChannel, 0, 3, 1, 1); + + label_4 = new QLabel(SettingsOtherRemovable); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 1, 0, 1, 1); + + comboBoxMOType = new QComboBox(SettingsOtherRemovable); + comboBoxMOType->setObjectName(QString::fromUtf8("comboBoxMOType")); + comboBoxMOType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMOType, 1, 1, 1, 3); + + + verticalLayout->addLayout(gridLayout); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + label_6 = new QLabel(SettingsOtherRemovable); + label_6->setObjectName(QString::fromUtf8("label_6")); + + verticalLayout->addWidget(label_6); + + tableViewZIP = new QTableView(SettingsOtherRemovable); + tableViewZIP->setObjectName(QString::fromUtf8("tableViewZIP")); + tableViewZIP->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewZIP->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewZIP->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewZIP->setShowGrid(false); + tableViewZIP->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewZIP); + + horizontalLayout_2 = new QHBoxLayout(); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + label_3 = new QLabel(SettingsOtherRemovable); + label_3->setObjectName(QString::fromUtf8("label_3")); + + horizontalLayout_2->addWidget(label_3); + + comboBoxZIPBus = new QComboBox(SettingsOtherRemovable); + comboBoxZIPBus->setObjectName(QString::fromUtf8("comboBoxZIPBus")); + comboBoxZIPBus->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxZIPBus); + + label_5 = new QLabel(SettingsOtherRemovable); + label_5->setObjectName(QString::fromUtf8("label_5")); + + horizontalLayout_2->addWidget(label_5); + + comboBoxZIPChannel = new QComboBox(SettingsOtherRemovable); + comboBoxZIPChannel->setObjectName(QString::fromUtf8("comboBoxZIPChannel")); + comboBoxZIPChannel->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxZIPChannel); + + checkBoxZIP250 = new QCheckBox(SettingsOtherRemovable); + checkBoxZIP250->setObjectName(QString::fromUtf8("checkBoxZIP250")); + + horizontalLayout_2->addWidget(checkBoxZIP250); + + + verticalLayout->addLayout(horizontalLayout_2); + + + retranslateUi(SettingsOtherRemovable); + + QMetaObject::connectSlotsByName(SettingsOtherRemovable); + } // setupUi + + void retranslateUi(QWidget *SettingsOtherRemovable) + { + SettingsOtherRemovable->setWindowTitle(QCoreApplication::translate("SettingsOtherRemovable", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsOtherRemovable", "MO drives:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsOtherRemovable", "Bus:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsOtherRemovable", "Channel:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsOtherRemovable", "Type:", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsOtherRemovable", "ZIP drives:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsOtherRemovable", "Bus:", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsOtherRemovable", "Channel:", nullptr)); + checkBoxZIP250->setText(QCoreApplication::translate("SettingsOtherRemovable", "ZIP 250", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsOtherRemovable: public Ui_SettingsOtherRemovable {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSOTHERREMOVABLE_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsports.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsports.h new file mode 100644 index 000000000..b4cbfaa2e --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsports.h @@ -0,0 +1,254 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsports.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSPORTS_H +#define UI_QT_SETTINGSPORTS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsPorts +{ +public: + QGridLayout *gridLayout_4; + QFormLayout *formLayout; + QLabel *label; + QComboBox *comboBoxLpt1; + QLabel *label_2; + QComboBox *comboBoxLpt2; + QLabel *label_3; + QComboBox *comboBoxLpt3; + QLabel *label_4; + QComboBox *comboBoxLpt4; + QGridLayout *gridLayout; + QCheckBox *checkBoxParallel2; + QCheckBox *checkBoxParallel3; + QCheckBox *checkBoxSerial3; + QCheckBox *checkBoxSerial1; + QCheckBox *checkBoxParallel4; + QCheckBox *checkBoxSerial2; + QCheckBox *checkBoxParallel1; + QCheckBox *checkBoxSerial4; + QGridLayout *gridLayout_5; + QSpacerItem *horizontalSpacer; + QCheckBox *checkBoxSerialPassThru3; + QSpacerItem *verticalSpacer; + QPushButton *pushButtonSerialPassThru1; + QCheckBox *checkBoxSerialPassThru1; + QCheckBox *checkBoxSerialPassThru2; + QCheckBox *checkBoxSerialPassThru4; + QPushButton *pushButtonSerialPassThru2; + QPushButton *pushButtonSerialPassThru3; + QPushButton *pushButtonSerialPassThru4; + + void setupUi(QWidget *SettingsPorts) + { + if (SettingsPorts->objectName().isEmpty()) + SettingsPorts->setObjectName(QString::fromUtf8("SettingsPorts")); + SettingsPorts->resize(398, 341); + gridLayout_4 = new QGridLayout(SettingsPorts); + gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4")); + gridLayout_4->setContentsMargins(0, 0, 0, 0); + formLayout = new QFormLayout(); + formLayout->setObjectName(QString::fromUtf8("formLayout")); + label = new QLabel(SettingsPorts); + label->setObjectName(QString::fromUtf8("label")); + + formLayout->setWidget(0, QFormLayout::LabelRole, label); + + comboBoxLpt1 = new QComboBox(SettingsPorts); + comboBoxLpt1->setObjectName(QString::fromUtf8("comboBoxLpt1")); + comboBoxLpt1->setMaxVisibleItems(30); + + formLayout->setWidget(0, QFormLayout::FieldRole, comboBoxLpt1); + + label_2 = new QLabel(SettingsPorts); + label_2->setObjectName(QString::fromUtf8("label_2")); + + formLayout->setWidget(1, QFormLayout::LabelRole, label_2); + + comboBoxLpt2 = new QComboBox(SettingsPorts); + comboBoxLpt2->setObjectName(QString::fromUtf8("comboBoxLpt2")); + comboBoxLpt2->setMaxVisibleItems(30); + + formLayout->setWidget(1, QFormLayout::FieldRole, comboBoxLpt2); + + label_3 = new QLabel(SettingsPorts); + label_3->setObjectName(QString::fromUtf8("label_3")); + + formLayout->setWidget(2, QFormLayout::LabelRole, label_3); + + comboBoxLpt3 = new QComboBox(SettingsPorts); + comboBoxLpt3->setObjectName(QString::fromUtf8("comboBoxLpt3")); + comboBoxLpt3->setMaxVisibleItems(30); + + formLayout->setWidget(2, QFormLayout::FieldRole, comboBoxLpt3); + + label_4 = new QLabel(SettingsPorts); + label_4->setObjectName(QString::fromUtf8("label_4")); + + formLayout->setWidget(3, QFormLayout::LabelRole, label_4); + + comboBoxLpt4 = new QComboBox(SettingsPorts); + comboBoxLpt4->setObjectName(QString::fromUtf8("comboBoxLpt4")); + comboBoxLpt4->setMaxVisibleItems(30); + + formLayout->setWidget(3, QFormLayout::FieldRole, comboBoxLpt4); + + + gridLayout_4->addLayout(formLayout, 0, 0, 1, 1); + + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + checkBoxParallel2 = new QCheckBox(SettingsPorts); + checkBoxParallel2->setObjectName(QString::fromUtf8("checkBoxParallel2")); + + gridLayout->addWidget(checkBoxParallel2, 1, 1, 1, 1); + + checkBoxParallel3 = new QCheckBox(SettingsPorts); + checkBoxParallel3->setObjectName(QString::fromUtf8("checkBoxParallel3")); + + gridLayout->addWidget(checkBoxParallel3, 2, 1, 1, 1); + + checkBoxSerial3 = new QCheckBox(SettingsPorts); + checkBoxSerial3->setObjectName(QString::fromUtf8("checkBoxSerial3")); + + gridLayout->addWidget(checkBoxSerial3, 2, 0, 1, 1); + + checkBoxSerial1 = new QCheckBox(SettingsPorts); + checkBoxSerial1->setObjectName(QString::fromUtf8("checkBoxSerial1")); + + gridLayout->addWidget(checkBoxSerial1, 0, 0, 1, 1); + + checkBoxParallel4 = new QCheckBox(SettingsPorts); + checkBoxParallel4->setObjectName(QString::fromUtf8("checkBoxParallel4")); + + gridLayout->addWidget(checkBoxParallel4, 3, 1, 1, 1); + + checkBoxSerial2 = new QCheckBox(SettingsPorts); + checkBoxSerial2->setObjectName(QString::fromUtf8("checkBoxSerial2")); + + gridLayout->addWidget(checkBoxSerial2, 1, 0, 1, 1); + + checkBoxParallel1 = new QCheckBox(SettingsPorts); + checkBoxParallel1->setObjectName(QString::fromUtf8("checkBoxParallel1")); + + gridLayout->addWidget(checkBoxParallel1, 0, 1, 1, 1); + + checkBoxSerial4 = new QCheckBox(SettingsPorts); + checkBoxSerial4->setObjectName(QString::fromUtf8("checkBoxSerial4")); + + gridLayout->addWidget(checkBoxSerial4, 3, 0, 1, 1); + + + gridLayout_4->addLayout(gridLayout, 1, 0, 1, 1); + + gridLayout_5 = new QGridLayout(); + gridLayout_5->setObjectName(QString::fromUtf8("gridLayout_5")); + gridLayout_5->setSizeConstraint(QLayout::SetDefaultConstraint); + horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout_5->addItem(horizontalSpacer, 4, 0, 1, 1); + + checkBoxSerialPassThru3 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru3->setObjectName(QString::fromUtf8("checkBoxSerialPassThru3")); + + gridLayout_5->addWidget(checkBoxSerialPassThru3, 2, 0, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_5->addItem(verticalSpacer, 5, 0, 1, 2); + + pushButtonSerialPassThru1 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru1->setObjectName(QString::fromUtf8("pushButtonSerialPassThru1")); + + gridLayout_5->addWidget(pushButtonSerialPassThru1, 0, 1, 1, 1); + + checkBoxSerialPassThru1 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru1->setObjectName(QString::fromUtf8("checkBoxSerialPassThru1")); + + gridLayout_5->addWidget(checkBoxSerialPassThru1, 0, 0, 1, 1); + + checkBoxSerialPassThru2 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru2->setObjectName(QString::fromUtf8("checkBoxSerialPassThru2")); + + gridLayout_5->addWidget(checkBoxSerialPassThru2, 1, 0, 1, 1); + + checkBoxSerialPassThru4 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru4->setObjectName(QString::fromUtf8("checkBoxSerialPassThru4")); + + gridLayout_5->addWidget(checkBoxSerialPassThru4, 3, 0, 1, 1); + + pushButtonSerialPassThru2 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru2->setObjectName(QString::fromUtf8("pushButtonSerialPassThru2")); + + gridLayout_5->addWidget(pushButtonSerialPassThru2, 1, 1, 1, 1); + + pushButtonSerialPassThru3 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru3->setObjectName(QString::fromUtf8("pushButtonSerialPassThru3")); + + gridLayout_5->addWidget(pushButtonSerialPassThru3, 2, 1, 1, 1); + + pushButtonSerialPassThru4 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru4->setObjectName(QString::fromUtf8("pushButtonSerialPassThru4")); + + gridLayout_5->addWidget(pushButtonSerialPassThru4, 3, 1, 1, 1); + + + gridLayout_4->addLayout(gridLayout_5, 3, 0, 1, 1); + + + retranslateUi(SettingsPorts); + + QMetaObject::connectSlotsByName(SettingsPorts); + } // setupUi + + void retranslateUi(QWidget *SettingsPorts) + { + SettingsPorts->setWindowTitle(QCoreApplication::translate("SettingsPorts", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsPorts", "LPT1 Device:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsPorts", "LPT2 Device:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsPorts", "LPT3 Device:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsPorts", "LPT4 Device:", nullptr)); + checkBoxParallel2->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 2", nullptr)); + checkBoxParallel3->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 3", nullptr)); + checkBoxSerial3->setText(QCoreApplication::translate("SettingsPorts", "Serial port 3", nullptr)); + checkBoxSerial1->setText(QCoreApplication::translate("SettingsPorts", "Serial port 1", nullptr)); + checkBoxParallel4->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 4", nullptr)); + checkBoxSerial2->setText(QCoreApplication::translate("SettingsPorts", "Serial port 2", nullptr)); + checkBoxParallel1->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 1", nullptr)); + checkBoxSerial4->setText(QCoreApplication::translate("SettingsPorts", "Serial port 4", nullptr)); + checkBoxSerialPassThru3->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 3", nullptr)); + pushButtonSerialPassThru1->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + checkBoxSerialPassThru1->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 1", nullptr)); + checkBoxSerialPassThru2->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 2", nullptr)); + checkBoxSerialPassThru4->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 4", nullptr)); + pushButtonSerialPassThru2->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + pushButtonSerialPassThru3->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + pushButtonSerialPassThru4->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsPorts: public Ui_SettingsPorts {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSPORTS_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingssound.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingssound.h new file mode 100644 index 000000000..146dd60ce --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingssound.h @@ -0,0 +1,258 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingssound.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSSOUND_H +#define UI_QT_SETTINGSSOUND_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsSound +{ +public: + QGridLayout *gridLayout; + QLabel *label_3; + QLabel *label; + QPushButton *pushButtonConfigureSoundCard1; + QLabel *label_4; + QPushButton *pushButtonConfigureSoundCard2; + QLabel *label_5; + QPushButton *pushButtonConfigureSoundCard3; + QLabel *label_6; + QPushButton *pushButtonConfigureSoundCard4; + QComboBox *comboBoxMidiIn; + QLabel *label_2; + QCheckBox *checkBoxMPU401; + QPushButton *pushButtonConfigureMPU401; + QPushButton *pushButtonConfigureMidiIn; + QComboBox *comboBoxMidiOut; + QPushButton *pushButtonConfigureMidiOut; + QCheckBox *checkBoxFloat32; + QGroupBox *groupBox; + QVBoxLayout *verticalLayout_1; + QRadioButton *radioButtonNuked; + QRadioButton *radioButtonYMFM; + QSpacerItem *verticalSpacer; + QComboBox *comboBoxSoundCard1; + QComboBox *comboBoxSoundCard2; + QComboBox *comboBoxSoundCard3; + QComboBox *comboBoxSoundCard4; + + void setupUi(QWidget *SettingsSound) + { + if (SettingsSound->objectName().isEmpty()) + SettingsSound->setObjectName(QString::fromUtf8("SettingsSound")); + SettingsSound->resize(387, 332); + gridLayout = new QGridLayout(SettingsSound); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, 0); + label_3 = new QLabel(SettingsSound); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 5, 0, 1, 1); + + label = new QLabel(SettingsSound); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + pushButtonConfigureSoundCard1 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard1->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard1")); + + gridLayout->addWidget(pushButtonConfigureSoundCard1, 0, 3, 1, 1); + + label_4 = new QLabel(SettingsSound); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 1, 0, 1, 1); + + pushButtonConfigureSoundCard2 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard2->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard2")); + + gridLayout->addWidget(pushButtonConfigureSoundCard2, 1, 3, 1, 1); + + label_5 = new QLabel(SettingsSound); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 2, 0, 1, 1); + + pushButtonConfigureSoundCard3 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard3->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard3")); + + gridLayout->addWidget(pushButtonConfigureSoundCard3, 2, 3, 1, 1); + + label_6 = new QLabel(SettingsSound); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout->addWidget(label_6, 3, 0, 1, 1); + + pushButtonConfigureSoundCard4 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard4->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard4")); + + gridLayout->addWidget(pushButtonConfigureSoundCard4, 3, 3, 1, 1); + + comboBoxMidiIn = new QComboBox(SettingsSound); + comboBoxMidiIn->setObjectName(QString::fromUtf8("comboBoxMidiIn")); + comboBoxMidiIn->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxMidiIn->sizePolicy().hasHeightForWidth()); + comboBoxMidiIn->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxMidiIn, 5, 1, 1, 1); + + label_2 = new QLabel(SettingsSound); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 4, 0, 1, 1); + + checkBoxMPU401 = new QCheckBox(SettingsSound); + checkBoxMPU401->setObjectName(QString::fromUtf8("checkBoxMPU401")); + + gridLayout->addWidget(checkBoxMPU401, 6, 0, 1, 1); + + pushButtonConfigureMPU401 = new QPushButton(SettingsSound); + pushButtonConfigureMPU401->setObjectName(QString::fromUtf8("pushButtonConfigureMPU401")); + + gridLayout->addWidget(pushButtonConfigureMPU401, 6, 3, 1, 1); + + pushButtonConfigureMidiIn = new QPushButton(SettingsSound); + pushButtonConfigureMidiIn->setObjectName(QString::fromUtf8("pushButtonConfigureMidiIn")); + + gridLayout->addWidget(pushButtonConfigureMidiIn, 5, 3, 1, 1); + + comboBoxMidiOut = new QComboBox(SettingsSound); + comboBoxMidiOut->setObjectName(QString::fromUtf8("comboBoxMidiOut")); + comboBoxMidiOut->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxMidiOut->sizePolicy().hasHeightForWidth()); + comboBoxMidiOut->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxMidiOut, 4, 1, 1, 1); + + pushButtonConfigureMidiOut = new QPushButton(SettingsSound); + pushButtonConfigureMidiOut->setObjectName(QString::fromUtf8("pushButtonConfigureMidiOut")); + + gridLayout->addWidget(pushButtonConfigureMidiOut, 4, 3, 1, 1); + + checkBoxFloat32 = new QCheckBox(SettingsSound); + checkBoxFloat32->setObjectName(QString::fromUtf8("checkBoxFloat32")); + + gridLayout->addWidget(checkBoxFloat32, 10, 0, 1, 1); + + groupBox = new QGroupBox(SettingsSound); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + QSizePolicy sizePolicy1(QSizePolicy::Maximum, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(groupBox->sizePolicy().hasHeightForWidth()); + groupBox->setSizePolicy(sizePolicy1); + verticalLayout_1 = new QVBoxLayout(groupBox); + verticalLayout_1->setObjectName(QString::fromUtf8("verticalLayout_1")); + radioButtonNuked = new QRadioButton(groupBox); + radioButtonNuked->setObjectName(QString::fromUtf8("radioButtonNuked")); + + verticalLayout_1->addWidget(radioButtonNuked); + + radioButtonYMFM = new QRadioButton(groupBox); + radioButtonYMFM->setObjectName(QString::fromUtf8("radioButtonYMFM")); + + verticalLayout_1->addWidget(radioButtonYMFM); + + + gridLayout->addWidget(groupBox, 11, 0, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 12, 0, 1, 1); + + comboBoxSoundCard1 = new QComboBox(SettingsSound); + comboBoxSoundCard1->setObjectName(QString::fromUtf8("comboBoxSoundCard1")); + comboBoxSoundCard1->setMaxVisibleItems(30); + QSizePolicy sizePolicy2(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(comboBoxSoundCard1->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard1->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard1, 0, 1, 1, 1); + + comboBoxSoundCard2 = new QComboBox(SettingsSound); + comboBoxSoundCard2->setObjectName(QString::fromUtf8("comboBoxSoundCard2")); + comboBoxSoundCard2->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxSoundCard2->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard2->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard2, 1, 1, 1, 1); + + comboBoxSoundCard3 = new QComboBox(SettingsSound); + comboBoxSoundCard3->setObjectName(QString::fromUtf8("comboBoxSoundCard3")); + comboBoxSoundCard3->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxSoundCard3->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard3->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard3, 2, 1, 1, 1); + + comboBoxSoundCard4 = new QComboBox(SettingsSound); + comboBoxSoundCard4->setObjectName(QString::fromUtf8("comboBoxSoundCard4")); + comboBoxSoundCard4->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxSoundCard4->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard4->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard4, 3, 1, 1, 1); + + + retranslateUi(SettingsSound); + + QMetaObject::connectSlotsByName(SettingsSound); + } // setupUi + + void retranslateUi(QWidget *SettingsSound) + { + SettingsSound->setWindowTitle(QCoreApplication::translate("SettingsSound", "Form", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsSound", "MIDI In Device:", nullptr)); + label->setText(QCoreApplication::translate("SettingsSound", "Sound card #1:", nullptr)); + pushButtonConfigureSoundCard1->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsSound", "Sound card #2:", nullptr)); + pushButtonConfigureSoundCard2->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsSound", "Sound card #3:", nullptr)); + pushButtonConfigureSoundCard3->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsSound", "Sound card #4:", nullptr)); + pushButtonConfigureSoundCard4->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsSound", "MIDI Out Device:", nullptr)); + checkBoxMPU401->setText(QCoreApplication::translate("SettingsSound", "Standalone MPU-401", nullptr)); + pushButtonConfigureMPU401->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + pushButtonConfigureMidiIn->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + pushButtonConfigureMidiOut->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + checkBoxFloat32->setText(QCoreApplication::translate("SettingsSound", "Use FLOAT32 sound", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsSound", "FM synth driver", nullptr)); + radioButtonNuked->setText(QCoreApplication::translate("SettingsSound", "Nuked (more accurate)", nullptr)); + radioButtonYMFM->setText(QCoreApplication::translate("SettingsSound", "YMFM (faster)", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsSound: public Ui_SettingsSound {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSSOUND_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h b/src/build/src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h new file mode 100644 index 000000000..96d3be419 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h @@ -0,0 +1,279 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsstoragecontrollers.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSSTORAGECONTROLLERS_H +#define UI_QT_SETTINGSSTORAGECONTROLLERS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsStorageControllers +{ +public: + QVBoxLayout *verticalLayout; + QGridLayout *gridLayout; + QLabel *label; + QPushButton *pushButtonFD; + QLabel *label_2; + QLabel *label_7; + QComboBox *comboBoxCDInterface; + QPushButton *pushButtonCDInterface; + QComboBox *comboBoxHD; + QPushButton *pushButtonHD; + QComboBox *comboBoxFD; + QCheckBox *checkBoxTertiaryIDE; + QCheckBox *checkBoxQuaternaryIDE; + QPushButton *pushButtonTertiaryIDE; + QPushButton *pushButtonQuaternaryIDE; + QGroupBox *groupBox; + QGridLayout *gridLayout_3; + QPushButton *pushButtonSCSI2; + QPushButton *pushButtonSCSI4; + QLabel *label_6; + QComboBox *comboBoxSCSI1; + QPushButton *pushButtonSCSI1; + QComboBox *comboBoxSCSI2; + QComboBox *comboBoxSCSI3; + QComboBox *comboBoxSCSI4; + QLabel *label_3; + QLabel *label_4; + QLabel *label_5; + QPushButton *pushButtonSCSI3; + QCheckBox *checkBoxCassette; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsStorageControllers) + { + if (SettingsStorageControllers->objectName().isEmpty()) + SettingsStorageControllers->setObjectName(QString::fromUtf8("SettingsStorageControllers")); + SettingsStorageControllers->resize(496, 449); + verticalLayout = new QVBoxLayout(SettingsStorageControllers); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label = new QLabel(SettingsStorageControllers); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + pushButtonFD = new QPushButton(SettingsStorageControllers); + pushButtonFD->setObjectName(QString::fromUtf8("pushButtonFD")); + + gridLayout->addWidget(pushButtonFD, 1, 2, 1, 1); + + label_2 = new QLabel(SettingsStorageControllers); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 1, 0, 1, 1); + + label_7 = new QLabel(SettingsStorageControllers); + label_7->setObjectName(QString::fromUtf8("label_7")); + label_7->setVisible(false); + + gridLayout->addWidget(label_7, 2, 0, 1, 1); + + comboBoxCDInterface = new QComboBox(SettingsStorageControllers); + comboBoxCDInterface->setObjectName(QString::fromUtf8("comboBoxCDInterface")); + comboBoxCDInterface->setMaxVisibleItems(30); + comboBoxCDInterface->setVisible(false); + + gridLayout->addWidget(comboBoxCDInterface, 2, 1, 1, 1); + + pushButtonCDInterface = new QPushButton(SettingsStorageControllers); + pushButtonCDInterface->setObjectName(QString::fromUtf8("pushButtonCDInterface")); + pushButtonCDInterface->setVisible(false); + + gridLayout->addWidget(pushButtonCDInterface, 2, 2, 1, 1); + + comboBoxHD = new QComboBox(SettingsStorageControllers); + comboBoxHD->setObjectName(QString::fromUtf8("comboBoxHD")); + comboBoxHD->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxHD->sizePolicy().hasHeightForWidth()); + comboBoxHD->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxHD, 0, 1, 1, 1); + + pushButtonHD = new QPushButton(SettingsStorageControllers); + pushButtonHD->setObjectName(QString::fromUtf8("pushButtonHD")); + + gridLayout->addWidget(pushButtonHD, 0, 2, 1, 1); + + comboBoxFD = new QComboBox(SettingsStorageControllers); + comboBoxFD->setObjectName(QString::fromUtf8("comboBoxFD")); + comboBoxFD->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxFD, 1, 1, 1, 1); + + checkBoxTertiaryIDE = new QCheckBox(SettingsStorageControllers); + checkBoxTertiaryIDE->setObjectName(QString::fromUtf8("checkBoxTertiaryIDE")); + + gridLayout->addWidget(checkBoxTertiaryIDE, 3, 0, 1, 1); + + checkBoxQuaternaryIDE = new QCheckBox(SettingsStorageControllers); + checkBoxQuaternaryIDE->setObjectName(QString::fromUtf8("checkBoxQuaternaryIDE")); + + gridLayout->addWidget(checkBoxQuaternaryIDE, 4, 0, 1, 1); + + pushButtonTertiaryIDE = new QPushButton(SettingsStorageControllers); + pushButtonTertiaryIDE->setObjectName(QString::fromUtf8("pushButtonTertiaryIDE")); + pushButtonTertiaryIDE->setEnabled(false); + + gridLayout->addWidget(pushButtonTertiaryIDE, 3, 2, 1, 1); + + pushButtonQuaternaryIDE = new QPushButton(SettingsStorageControllers); + pushButtonQuaternaryIDE->setObjectName(QString::fromUtf8("pushButtonQuaternaryIDE")); + pushButtonQuaternaryIDE->setEnabled(false); + + gridLayout->addWidget(pushButtonQuaternaryIDE, 4, 2, 1, 1); + + + verticalLayout->addLayout(gridLayout); + + groupBox = new QGroupBox(SettingsStorageControllers); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + gridLayout_3 = new QGridLayout(groupBox); + gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3")); + pushButtonSCSI2 = new QPushButton(groupBox); + pushButtonSCSI2->setObjectName(QString::fromUtf8("pushButtonSCSI2")); + + gridLayout_3->addWidget(pushButtonSCSI2, 1, 3, 1, 1); + + pushButtonSCSI4 = new QPushButton(groupBox); + pushButtonSCSI4->setObjectName(QString::fromUtf8("pushButtonSCSI4")); + + gridLayout_3->addWidget(pushButtonSCSI4, 3, 3, 1, 1); + + label_6 = new QLabel(groupBox); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout_3->addWidget(label_6, 2, 0, 1, 1); + + comboBoxSCSI1 = new QComboBox(groupBox); + comboBoxSCSI1->setObjectName(QString::fromUtf8("comboBoxSCSI1")); + comboBoxSCSI1->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI1->sizePolicy().hasHeightForWidth()); + comboBoxSCSI1->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI1, 0, 2, 1, 1); + + pushButtonSCSI1 = new QPushButton(groupBox); + pushButtonSCSI1->setObjectName(QString::fromUtf8("pushButtonSCSI1")); + + gridLayout_3->addWidget(pushButtonSCSI1, 0, 3, 1, 1); + + comboBoxSCSI2 = new QComboBox(groupBox); + comboBoxSCSI2->setObjectName(QString::fromUtf8("comboBoxSCSI2")); + comboBoxSCSI2->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI2->sizePolicy().hasHeightForWidth()); + comboBoxSCSI2->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI2, 1, 2, 1, 1); + + comboBoxSCSI3 = new QComboBox(groupBox); + comboBoxSCSI3->setObjectName(QString::fromUtf8("comboBoxSCSI3")); + comboBoxSCSI3->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI3->sizePolicy().hasHeightForWidth()); + comboBoxSCSI3->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI3, 2, 2, 1, 1); + + comboBoxSCSI4 = new QComboBox(groupBox); + comboBoxSCSI4->setObjectName(QString::fromUtf8("comboBoxSCSI4")); + comboBoxSCSI4->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI4->sizePolicy().hasHeightForWidth()); + comboBoxSCSI4->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI4, 3, 2, 1, 1); + + label_3 = new QLabel(groupBox); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout_3->addWidget(label_3, 0, 0, 1, 1); + + label_4 = new QLabel(groupBox); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout_3->addWidget(label_4, 1, 0, 1, 1); + + label_5 = new QLabel(groupBox); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout_3->addWidget(label_5, 3, 0, 1, 1); + + pushButtonSCSI3 = new QPushButton(groupBox); + pushButtonSCSI3->setObjectName(QString::fromUtf8("pushButtonSCSI3")); + + gridLayout_3->addWidget(pushButtonSCSI3, 2, 3, 1, 1); + + + verticalLayout->addWidget(groupBox); + + checkBoxCassette = new QCheckBox(SettingsStorageControllers); + checkBoxCassette->setObjectName(QString::fromUtf8("checkBoxCassette")); + + verticalLayout->addWidget(checkBoxCassette); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + + retranslateUi(SettingsStorageControllers); + + QMetaObject::connectSlotsByName(SettingsStorageControllers); + } // setupUi + + void retranslateUi(QWidget *SettingsStorageControllers) + { + SettingsStorageControllers->setWindowTitle(QCoreApplication::translate("SettingsStorageControllers", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsStorageControllers", "HD Controller:", nullptr)); + pushButtonFD->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsStorageControllers", "FD Controller:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsStorageControllers", "CD-ROM Controller:", nullptr)); + pushButtonCDInterface->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + pushButtonHD->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + checkBoxTertiaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Tertiary IDE Controller", nullptr)); + checkBoxQuaternaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Quaternary IDE Controller", nullptr)); + pushButtonTertiaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + pushButtonQuaternaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsStorageControllers", "SCSI", nullptr)); + pushButtonSCSI2->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + pushButtonSCSI4->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 3:", nullptr)); + pushButtonSCSI1->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 1:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 2:", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 4:", nullptr)); + pushButtonSCSI3->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + checkBoxCassette->setText(QCoreApplication::translate("SettingsStorageControllers", "Cassette", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsStorageControllers: public Ui_SettingsStorageControllers {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSSTORAGECONTROLLERS_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_soundgain.h b/src/build/src/qt/ui_autogen/include/ui_qt_soundgain.h new file mode 100644 index 000000000..150e377c4 --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_soundgain.h @@ -0,0 +1,102 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_soundgain.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SOUNDGAIN_H +#define UI_QT_SOUNDGAIN_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SoundGain +{ +public: + QGridLayout *gridLayout; + QLabel *label; + QSlider *verticalSlider; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *SoundGain) + { + if (SoundGain->objectName().isEmpty()) + SoundGain->setObjectName(QString::fromUtf8("SoundGain")); + SoundGain->resize(200, 250); + QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(SoundGain->sizePolicy().hasHeightForWidth()); + SoundGain->setSizePolicy(sizePolicy); + SoundGain->setMinimumSize(QSize(200, 250)); + SoundGain->setMaximumSize(QSize(200, 250)); + gridLayout = new QGridLayout(SoundGain); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label = new QLabel(SoundGain); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy1); + label->setAlignment(Qt::AlignCenter); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + verticalSlider = new QSlider(SoundGain); + verticalSlider->setObjectName(QString::fromUtf8("verticalSlider")); + verticalSlider->setMaximum(18); + verticalSlider->setSingleStep(2); + verticalSlider->setPageStep(4); + verticalSlider->setOrientation(Qt::Vertical); + verticalSlider->setInvertedAppearance(false); + verticalSlider->setTickPosition(QSlider::TicksBothSides); + + gridLayout->addWidget(verticalSlider, 1, 0, 1, 1, Qt::AlignHCenter); + + buttonBox = new QDialogButtonBox(SoundGain); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Expanding); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(buttonBox->sizePolicy().hasHeightForWidth()); + buttonBox->setSizePolicy(sizePolicy2); + buttonBox->setOrientation(Qt::Vertical); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 0, 1, 2, 1); + + gridLayout->setColumnStretch(0, 1); + gridLayout->setColumnStretch(1, 1); + + retranslateUi(SoundGain); + QObject::connect(buttonBox, SIGNAL(accepted()), SoundGain, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), SoundGain, SLOT(reject())); + + QMetaObject::connectSlotsByName(SoundGain); + } // setupUi + + void retranslateUi(QDialog *SoundGain) + { + SoundGain->setWindowTitle(QCoreApplication::translate("SoundGain", "Sound Gain", nullptr)); + label->setText(QCoreApplication::translate("SoundGain", "Gain", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SoundGain: public Ui_SoundGain {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SOUNDGAIN_H diff --git a/src/build/src/qt/ui_autogen/include/ui_qt_specifydimensions.h b/src/build/src/qt/ui_autogen/include/ui_qt_specifydimensions.h new file mode 100644 index 000000000..dc5bf1cfd --- /dev/null +++ b/src/build/src/qt/ui_autogen/include/ui_qt_specifydimensions.h @@ -0,0 +1,97 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_specifydimensions.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SPECIFYDIMENSIONS_H +#define UI_QT_SPECIFYDIMENSIONS_H + +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SpecifyDimensions +{ +public: + QGridLayout *gridLayout; + QLabel *labelWidth; + QSpinBox *spinBoxWidth; + QLabel *labelHeight; + QSpinBox *spinBoxHeight; + QCheckBox *checkBox; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *SpecifyDimensions) + { + if (SpecifyDimensions->objectName().isEmpty()) + SpecifyDimensions->setObjectName(QString::fromUtf8("SpecifyDimensions")); + SpecifyDimensions->resize(388, 158); + gridLayout = new QGridLayout(SpecifyDimensions); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + labelWidth = new QLabel(SpecifyDimensions); + labelWidth->setObjectName(QString::fromUtf8("labelWidth")); + + gridLayout->addWidget(labelWidth, 0, 0, 1, 1); + + spinBoxWidth = new QSpinBox(SpecifyDimensions); + spinBoxWidth->setObjectName(QString::fromUtf8("spinBoxWidth")); + + gridLayout->addWidget(spinBoxWidth, 0, 1, 1, 1); + + labelHeight = new QLabel(SpecifyDimensions); + labelHeight->setObjectName(QString::fromUtf8("labelHeight")); + + gridLayout->addWidget(labelHeight, 0, 2, 1, 1); + + spinBoxHeight = new QSpinBox(SpecifyDimensions); + spinBoxHeight->setObjectName(QString::fromUtf8("spinBoxHeight")); + + gridLayout->addWidget(spinBoxHeight, 0, 3, 1, 1); + + checkBox = new QCheckBox(SpecifyDimensions); + checkBox->setObjectName(QString::fromUtf8("checkBox")); + + gridLayout->addWidget(checkBox, 1, 0, 1, 2); + + buttonBox = new QDialogButtonBox(SpecifyDimensions); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 2, 0, 1, 4); + + + retranslateUi(SpecifyDimensions); + QObject::connect(buttonBox, SIGNAL(accepted()), SpecifyDimensions, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), SpecifyDimensions, SLOT(reject())); + + QMetaObject::connectSlotsByName(SpecifyDimensions); + } // setupUi + + void retranslateUi(QDialog *SpecifyDimensions) + { + SpecifyDimensions->setWindowTitle(QCoreApplication::translate("SpecifyDimensions", "Specify Main Window Dimensions", nullptr)); + labelWidth->setText(QCoreApplication::translate("SpecifyDimensions", "Width:", nullptr)); + labelHeight->setText(QCoreApplication::translate("SpecifyDimensions", "Height:", nullptr)); + checkBox->setText(QCoreApplication::translate("SpecifyDimensions", "Lock to this size", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SpecifyDimensions: public Ui_SpecifyDimensions {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SPECIFYDIMENSIONS_H diff --git a/src/build/src/qt/ui_autogen/moc_predefs.h b/src/build/src/qt/ui_autogen/moc_predefs.h new file mode 100644 index 000000000..8979efb13 --- /dev/null +++ b/src/build/src/qt/ui_autogen/moc_predefs.h @@ -0,0 +1,478 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __FLT16_HAS_QUIET_NAN__ 1 +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 12 +#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16 +#define __INTMAX_C(c) c ## LL +#define __CHAR_BIT__ 8 +#define __MINGW32__ 1 +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define __WINT_MAX__ 0xffff +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define __BFLT16_MIN_10_EXP__ (-37) +#define QT_GUI_LIB 1 +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __WCHAR_MAX__ 0xffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 2 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define QT_OPENGL_LIB 1 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define __DEC64_MAX_EXP__ 385 +#define __pentium4 1 +#define __INT8_C(c) c +#define __LDBL_HAS_INFINITY__ 1 +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_attributes 200809L +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __BFLT16_MAX_10_EXP__ 38 +#define __BFLT16_MAX_EXP__ 128 +#define __LDBL_IS_IEC_60559__ 1 +#define __pentium4__ 1 +#define QT_NO_DEBUG 1 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __LAHF_SAHF__ 1 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define QT_FONTDATABASE_SUPPORT_LIB 1 +#define __UINTMAX_TYPE__ long long unsigned int +#define __cpp_nsdmi 200809L +#define __BFLT16_DECIMAL_DIG__ 4 +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 2 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 1 +#define _CRT_SECURE_NO_WARNINGS 1 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ 0 +#define QT_SVG_LIB 1 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __ATOMIC_SEQ_CST 5 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define CMAKE 1 +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 1 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 1 +#define __DEC32_MAX__ 9.999999E96DF +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT_WIDTH__ 32 +#define QT_VULKAN_SUPPORT_LIB 1 +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __cpp_return_type_deduction 201304L +#define __FLT16_MIN_EXP__ (-13) +#define __FLT64_MANT_DIG__ 53 +#define _REENTRANT 1 +#define __FLT64X_MANT_DIG__ 64 +#define __BFLT16_DIG__ 2 +#define __GNUC__ 13 +#define __GXX_RTTI 1 +#define __MMX__ 1 +#define NTDDI_VERSION 0x06010000 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 12 +#define QT_WINDOWSUIAUTOMATION_SUPPORT_LIB 1 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __SIZE_TYPE__ unsigned int +#define __FLT64_MAX_10_EXP__ 308 +#define __BFLT16_IS_IEC_60559__ 0 +#define __FLT16_MAX_10_EXP__ 4 +#define __cpp_delegating_constructors 200604L +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffff +#define __DBL_HAS_INFINITY__ 1 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_FLOAT__ 4 +#define __WINNT__ 1 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 32 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ short int +#define __STRICT_ANSI__ 1 +#define __LDBL_HAS_DENORM__ 1 +#define QT_WIDGETS_LIB 1 +#define __SEG_GS 1 +#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16 +#define __cplusplus 201703L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __FLT16_DECIMAL_DIG__ 5 +#define __ATOMIC_HLE_RELEASE 131072 +#define __WIN32__ 1 +#define __PTRDIFF_MAX__ 0x7fffffff +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 13 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 4 +#define __BFLT16_HAS_INFINITY__ 1 +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 2 +#define __FLT32X_DIG__ 15 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define DEV_BRANCH 1 +#define __FLT32_MAX_EXP__ 128 +#define DISCORD 1 +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1018 +#define __FLT_MIN_EXP__ (-125) +#define __GCC_HAVE_DWARF2_CFI_ASM 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long long int +#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 4 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __LDBL_MAX_EXP__ 16384 +#define __DECIMAL_BID_FORMAT__ 1 +#define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT16_MIN_10_EXP__ (-4) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __cdecl __attribute__((__cdecl__)) +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __i386 1 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "13.2.0" +#define __UINT64_C(c) c ## ULL +#define __cpp_unicode_characters 201411L +#define _WIN32 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define _X86_ 1 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define SIZEOF_DPTR (sizeof(void*)) +#define __FLT32X_MIN_EXP__ (-1021) +#define __cpp_aggregate_bases 201603L +#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16 +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define _INTEGRAL_MAX_BITS 64 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __code_model_32__ 1 +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __INT_FAST32_TYPE__ int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DEC128_MAX_EXP__ 6145 +#define __DBL_HAS_DENORM__ 1 +#define __i386__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 1 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __BFLT16_HAS_QUIET_NAN__ 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## ULL +#define __FLT16_DIG__ 3 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __cpp_constexpr 201603L +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __USER_LABEL_PREFIX__ _ +#define __SIZEOF_PTRDIFF_T__ 4 +#define __FLT64X_HAS_INFINITY__ 1 +#define __SIZEOF_LONG__ 4 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 1 +#define __FLT16_IS_IEC_60559__ 1 +#define __FLT16_MAX_EXP__ 16 +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __MSVCRT__ 1 +#define __INT_FAST16_MAX__ 0x7fff +#define __GCC_CONSTRUCTIVE_SIZE 64 +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#define __ILP32__ 1 +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define _ILP32 1 +#define __UINT_FAST16_TYPE__ short unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 32 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __DEC64_MANT_DIG__ 16 +#define QT_NETWORK_LIB 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffff +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __stdcall __attribute__((__stdcall__)) +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __GXX_MERGED_TYPEINFO_NAMES 0 +#define __UINT16_C(c) c +#define __PTRDIFF_WIDTH__ 32 +#define __LDBL_MANT_DIG__ 64 +#define __cpp_range_based_for 201603L +#define __INT_FAST16_WIDTH__ 16 +#define _WINSOCK_DEPRECATED_NO_WARNINGS 1 +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __FLT16_HAS_INFINITY__ 1 +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201411L +#define __DEC32_MANT_DIG__ 7 +#define __INTPTR_TYPE__ int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __UINTPTR_MAX__ 0xffffffffU +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_decltype 200707L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT32_HAS_INFINITY__ 1 +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define __cpp_inline_variables 201606L +#define __BFLT16_MIN_EXP__ (-125) +#define __INT_MAX__ 0x7fffffff +#define QT_EVENTDISPATCHER_SUPPORT_LIB 1 +#define QT_ACCESSIBILITY_SUPPORT_LIB 1 +#define __INT64_TYPE__ long long int +#define __FLT_MAX_EXP__ 128 +#define __DBL_MANT_DIG__ 53 +#define __cpp_inheriting_constructors 201511L +#define QT_CORE_LIB 1 +#define __SIZEOF_FLOAT128__ 16 +#define __BFLT16_MANT_DIG__ 8 +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ short unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __WINT_WIDTH__ 16 +#define __INT_LEAST64_WIDTH__ 64 +#define __FLT32X_MAX_10_EXP__ 308 +#define __cpp_namespace_attributes 201411L +#define __WIN32 1 +#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#define __FLT64X_IS_IEC_60559__ 1 +#define __WCHAR_UNSIGNED__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __INT_LEAST32_TYPE__ int +#define __thiscall __attribute__((__thiscall__)) +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __SIZEOF_WCHAR_T__ 2 +#define __GNUC_PATCHLEVEL__ 0 +#define __WINNT 1 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __INT_FAST8_TYPE__ signed char +#define __fastcall __attribute__((__fastcall__)) +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __STDCPP_THREADS__ 1 +#define __BFLT16_HAS_DENORM__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __FLT16_HAS_DENORM__ 1 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define QT_THEME_SUPPORT_LIB 1 +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __GCC_DESTRUCTIVE_SIZE 64 +#define __INTMAX_WIDTH__ 64 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __cpp_runtime_arrays 198712L +#define __FLT32_DIG__ 6 +#define __UINT64_TYPE__ long long unsigned int +#define __UINT32_C(c) c ## U +#define __cpp_alias_templates 200704L +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define USE_DYNAREC 1 +#define __FLT128_IS_IEC_60559__ 1 +#define USE_NEW_DYNAREC 1 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __INT32_MAX__ 0x7fffffff +#define __UINT_FAST32_TYPE__ unsigned int +#define __FLT16_MANT_DIG__ 11 +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define USE_RTMIDI 1 +#define __SSE2__ 1 +#define __cpp_deduction_guides 201703L +#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 2 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define _CRT_NONSTDC_NO_WARNINGS 1 +#define __INT16_C(c) c +#define __STDC__ 1 +#define __PTRDIFF_TYPE__ int +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201304L +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffff +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __SIZE_MAX__ 0xffffffffU +#define __UINT_FAST8_TYPE__ unsigned char +#define __cpp_init_captures 201304L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 +#define __declspec(x) __attribute__((x)) diff --git a/src/build/src/qt/ui_autogen/mocs_compilation.cpp b/src/build/src/qt/ui_autogen/mocs_compilation.cpp new file mode 100644 index 000000000..1d54728c8 --- /dev/null +++ b/src/build/src/qt/ui_autogen/mocs_compilation.cpp @@ -0,0 +1,37 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_qt_d3d9renderer.cpp" +#include "EWIEGA46WW/moc_qt_deviceconfig.cpp" +#include "EWIEGA46WW/moc_qt_filefield.cpp" +#include "EWIEGA46WW/moc_qt_harddiskdialog.cpp" +#include "EWIEGA46WW/moc_qt_hardwarerenderer.cpp" +#include "EWIEGA46WW/moc_qt_joystickconfiguration.cpp" +#include "EWIEGA46WW/moc_qt_machinestatus.cpp" +#include "EWIEGA46WW/moc_qt_mainwindow.cpp" +#include "EWIEGA46WW/moc_qt_mcadevicelist.cpp" +#include "EWIEGA46WW/moc_qt_mediahistorymanager.cpp" +#include "EWIEGA46WW/moc_qt_mediamenu.cpp" +#include "EWIEGA46WW/moc_qt_newfloppydialog.cpp" +#include "EWIEGA46WW/moc_qt_opengloptions.cpp" +#include "EWIEGA46WW/moc_qt_opengloptionsdialog.cpp" +#include "EWIEGA46WW/moc_qt_openglrenderer.cpp" +#include "EWIEGA46WW/moc_qt_progsettings.cpp" +#include "EWIEGA46WW/moc_qt_rendererstack.cpp" +#include "EWIEGA46WW/moc_qt_settings.cpp" +#include "EWIEGA46WW/moc_qt_settingsdisplay.cpp" +#include "EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp" +#include "EWIEGA46WW/moc_qt_settingsharddisks.cpp" +#include "EWIEGA46WW/moc_qt_settingsinput.cpp" +#include "EWIEGA46WW/moc_qt_settingsmachine.cpp" +#include "EWIEGA46WW/moc_qt_settingsnetwork.cpp" +#include "EWIEGA46WW/moc_qt_settingsotherperipherals.cpp" +#include "EWIEGA46WW/moc_qt_settingsotherremovable.cpp" +#include "EWIEGA46WW/moc_qt_settingsports.cpp" +#include "EWIEGA46WW/moc_qt_settingssound.cpp" +#include "EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp" +#include "EWIEGA46WW/moc_qt_softwarerenderer.cpp" +#include "EWIEGA46WW/moc_qt_soundgain.cpp" +#include "EWIEGA46WW/moc_qt_specifydimensions.cpp" +#include "EWIEGA46WW/moc_qt_unixmanagerfilter.cpp" +#include "EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp" +#include "EWIEGA46WW/moc_qt_winmanagerfilter.cpp" +#include "EWIEGA46WW/moc_qt_winrawinputfilter.cpp" diff --git a/src/build/src/qt/ui_autogen/timestamp b/src/build/src/qt/ui_autogen/timestamp new file mode 100644 index 000000000..e69de29bb diff --git a/src/build/src/scsi/cmake_install.cmake b/src/build/src/scsi/cmake_install.cmake new file mode 100644 index 000000000..3e07a4ee7 --- /dev/null +++ b/src/build/src/scsi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/scsi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/sio/cmake_install.cmake b/src/build/src/sio/cmake_install.cmake new file mode 100644 index 000000000..337b5b27e --- /dev/null +++ b/src/build/src/sio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/sound/cmake_install.cmake b/src/build/src/sound/cmake_install.cmake new file mode 100644 index 000000000..eb3f8bdbd --- /dev/null +++ b/src/build/src/sound/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/munt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/ymfm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build/src/sound/resid-fp/cmake_install.cmake") +endif() + diff --git a/src/build/src/sound/munt/cmake_install.cmake b/src/build/src/sound/munt/cmake_install.cmake new file mode 100644 index 000000000..04ff93510 --- /dev/null +++ b/src/build/src/sound/munt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound/munt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/sound/resid-fp/cmake_install.cmake b/src/build/src/sound/resid-fp/cmake_install.cmake new file mode 100644 index 000000000..ed237a22d --- /dev/null +++ b/src/build/src/sound/resid-fp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/sound/ymfm/cmake_install.cmake b/src/build/src/sound/ymfm/cmake_install.cmake new file mode 100644 index 000000000..218ee93c3 --- /dev/null +++ b/src/build/src/sound/ymfm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound/ymfm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build/src/video/cmake_install.cmake b/src/build/src/video/cmake_install.cmake new file mode 100644 index 000000000..19542272a --- /dev/null +++ b/src/build/src/video/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/video + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Release") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw32/bin/objdump.exe") +endif() + diff --git a/src/build64/.ninja_deps b/src/build64/.ninja_deps new file mode 100644 index 000000000..8e8f4997b Binary files /dev/null and b/src/build64/.ninja_deps differ diff --git a/src/build64/.ninja_log b/src/build64/.ninja_log new file mode 100644 index 000000000..f6304ee13 --- /dev/null +++ b/src/build64/.ninja_log @@ -0,0 +1,684 @@ +# ninja log v5 +28 222 7189554504291146 src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj c48ce5cd3f946d17 +30 237 7189554504341176 src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj 767aa902764fb968 +31 254 7189554504521229 src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj f56f97b0a44fe6ba +32 257 7189554504591230 src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj d8a664482e976aa +25 271 7189554504756391 src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj 6656b4310e96f711 +27 288 7189554504876388 src/chipset/CMakeFiles/chipset.dir/82c100.c.obj 6db2a3ba012de1e2 +26 290 7189554504906390 src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj 387df8ce83b4e421 +35 312 7189554505026380 src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj 3f56f97052a87ea0 +33 389 7189554505745629 src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj cdaf9c9e70acd49c +291 510 7189554506950859 src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj 1cb8f39cc0b790df +288 574 7189554507600890 src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj 7b69e7958f7586d2 +258 582 7189554507796041 src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj 4206eae59e4b0230 +224 586 7189554507776001 src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj ace38c3598da360b +390 645 7189554508486030 src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj 379ce10dc1506639 +255 657 7189554508406031 src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj 1da04a09d8366fd2 +22 671 7189554508656090 src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj 5fbeb06b8ee5652d +510 719 7189554509171232 src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj e5adc9ca4478f73 +271 730 7189554509181229 src/chipset/CMakeFiles/chipset.dir/headland.c.obj 4c8bb63703be07eb +312 751 7189554509411272 src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj 21c15c6bc2bb380f +24 962 7189554511333945 src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj f76162677f9ba9b8 +671 1000 7189554511919136 src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj 93e6c043d6e6857a +574 1023 7189554511829130 src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj 361737f640683e5a +237 1027 7189554512109134 src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj ceae95a54fd78fc5 +586 1163 7189554513624425 src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj 8f6cdbc82ce8ced2 +732 1170 7189554513524430 src/chipset/CMakeFiles/chipset.dir/opti283.c.obj 7dd317cb33fae03a +752 1210 7189554514049577 src/chipset/CMakeFiles/chipset.dir/opti291.c.obj 1a3fd634d1d546c +651 1216 7189554514219560 src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj f76f964779985a5b +727 1232 7189554514379565 src/chipset/CMakeFiles/chipset.dir/neat.c.obj 3751a1d8cb2be2d3 +21 1288 7189554514934812 src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj 94e2c40c51438da9 +963 1322 7189554515274808 src/chipset/CMakeFiles/chipset.dir/opti391.c.obj c48d039c5cbb14a +1023 1462 7189554516523275 src/chipset/CMakeFiles/chipset.dir/opti602.c.obj 14c077a264247917 +1019 1509 7189554516868430 src/chipset/CMakeFiles/chipset.dir/opti495.c.obj bc8bcd694da80894 +1171 1599 7189554517823654 src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj d45c8420e82359a5 +1233 1611 7189554517733666 src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj 29d14a535ec5c9b1 +1164 1616 7189554518023653 src/chipset/CMakeFiles/chipset.dir/opti895.c.obj ad4606b735009d6a +583 1622 7189554517993660 src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj 5ae00439ba700b0f +1027 1632 7189554518203655 src/chipset/CMakeFiles/chipset.dir/opti822.c.obj e793778a3af936e9 +658 1860 7189554520374112 src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj 12778e382b824d18 +1288 1870 7189554520364112 src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj 15718a810ea8b378 +1463 1922 7189554521117962 src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj 4033d1121fe0d45e +1322 1934 7189554521237956 src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj 13215fdaf3220bf +1617 2004 7189554521873192 src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj a82db64883bbb521 +1210 2033 7189554522273181 src/chipset/CMakeFiles/chipset.dir/scamp.c.obj 19778ac7c98c8ea7 +1628 2047 7189554522293174 src/chipset/CMakeFiles/chipset.dir/gc100.c.obj 927245aba00bb16b +1613 2054 7189554522453176 src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj 75f1738c9b2b60e3 +1600 2182 7189554523638481 src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj a8129c0bea5b60ed +1511 2196 7189554523943616 src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj 4289e9d7c1a7ae91 +2004 2318 7189554524998855 src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj 1f9712e4d661dbbb +1864 2328 7189554525008846 src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj cf763c2aee99d052 +1872 2338 7189554525088851 src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj d5cf783d3f587dc9 +2048 2366 7189554525724057 src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj fe0640c3cc9d2b7a +1632 2411 7189554526064079 src/chipset/CMakeFiles/chipset.dir/stpc.c.obj df2753309e77d72b +2218 2495 7189554526829270 src/cpu/CMakeFiles/cpu.dir/fpu.c.obj e0d6bbadf77f6ecd +2182 2512 7189554527059301 src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj 811207bcf8043868 +1219 2518 7189554526979296 src/chipset/CMakeFiles/chipset.dir/scat.c.obj 5b097b31a5df185a +2037 2575 7189554527649367 src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj 1705d9d8ad004109 +1931 2616 7189554528074517 src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj 62c48d0d93d286c3 +2319 2743 7189554529199732 src/cpu/CMakeFiles/cpu.dir/x86.c.obj b8a8599c53c846db +2497 2783 7189554529659816 src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj 56dc095fd996f489 +2514 2791 7189554529794945 src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj 159a46187f7eac6 +2744 2957 7189554531311977 src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj c7adcb737c721ba9 +2784 3146 7189554533172493 src/cpu/CMakeFiles/cpu.dir/8080.c.obj d8c15d5060175cd0 +2629 3179 7189554533292481 src/cpu/CMakeFiles/cpu.dir/x87.c.obj 49036f09e2866a92 +1934 3203 7189554533987711 src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj 8bc3ff7b69f43d0b +2964 3479 7189554536378122 src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj de8aefe4c7f7831b +3180 3546 7189554537433357 src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj fb3eafad520de2d3 +2063 3862 7189554540428954 src/cpu/CMakeFiles/cpu.dir/cpu.c.obj ac7ef61b565dac41 +2408 3930 7189554540529032 src/cpu/CMakeFiles/cpu.dir/386_common.c.obj c0cfe238cf412fc8 +3221 4019 7189554542081489 src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj 681a8749fbf73a87 +3175 4029 7189554542231492 src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj 981a859135c9b03b +2577 4104 7189554543006775 src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj 6d948cfcf34c2e81 +3510 4300 7189554544947269 src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj f553a13dae859821 +3546 4362 7189554545337296 src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj 3e3f8115fb22571a +3889 4378 7189554545427278 src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj 4660d396fb75a61a +4020 4407 7189554545932507 src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj f7298413743468b5 +2518 4432 7189554546118455 src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj 20cf0dddb7b1592c +4029 4475 7189554546763728 src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj 49a69712e0c563b3 +4104 4478 7189554546628576 src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj ef808a6881378fc7 +3953 4494 7189554546903732 src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj 980c841af7536865 +4378 4590 7189554547889078 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj cc678c869d4ff158 +4432 4717 7189554549044369 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj 7d7cdc5b73e0b768 +4363 4803 7189554549604445 src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj b12c2b88f1707434 +4301 4851 7189554550159639 src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj a7e219a6d7ad26a2 +4495 4893 7189554550629749 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj 61fd31d4967894b0 +4475 4980 7189554551822937 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj ae696d54478e230f +4806 5027 7189554552112934 src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj a0a97f2ad45383ca +4590 5038 7189554552192920 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj 97994a045db3f715 +4478 5149 7189554553448247 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj 91c39483cdfeecda +5028 5220 7189554554013475 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj 2a62bf13de8332bc +4980 5331 7189554554728745 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj 8b3631c6daf2a692 +4717 5367 7189554555658846 src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj edb1cffd62af5d14 +5038 5587 7189554557530673 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj bdc2cbccac246c74 +4894 5596 7189554557735921 src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj a6431e39a9b87e40 +5372 5796 7189554560006498 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj 642dabcc401f3db6 +5614 6161 7189554562992109 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj ffa93329177ef181 +5593 6479 7189554565907788 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj 7f70eb98384b722f +5811 6579 7189554567373008 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj 7f8ddefe19b3b2b3 +5351 6887 7189554570058711 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj 68497aac24dd0e55 +4851 6999 7189554571840341 src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj 9171f8c5dc25bce3 +5150 7159 7189554573355549 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj 9a35763c5766fcc4 +6176 7262 7189554574470740 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj 59ac3401879fb918 +5229 7527 7189554576531221 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj b87ba01c5105d1fa +7061 7839 7189554579676936 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj 793a405e4576987a +7191 8007 7189554581892519 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj db0a5a26788047a3 +6479 8038 7189554581912517 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj 404f1b8f4db52c92 +6579 8097 7189554582432543 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj d51d54fa7f366545 +6918 8175 7189554583407770 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj dcae2d7b4cf3c4dc +7263 8254 7189554583933032 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj fa6acdaa84bd9833 +4407 8258 7189554583873040 src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj 14ad605548fc5b8f +7560 8342 7189554585058282 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj 8d39b2725f4c4520 +7878 8463 7189554586273470 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj a73bf48cf8a8428f +8119 9137 7189554593291461 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj 9c7a431710d6c81b +8176 9175 7189554593221456 src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj eebd1d768cdc055b +8021 9399 7189554595737301 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj 4c47cc0dfe9099ba +9171 9445 7189554596227296 src/device/CMakeFiles/dev.dir/bugger.c.obj 91d38ee4cdfa1124 +8064 9473 7189554596557397 src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj c16b60574f552471 +8371 9545 7189554597190050 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops_sse.c.obj 76c81727eeedf0e2 +9410 9631 7189554598182867 src/device/CMakeFiles/dev.dir/cartridge.c.obj 642afa41c352d577 +9445 9635 7189554598302871 src/device/CMakeFiles/dev.dir/hasp.c.obj 42aa75f5d498ab74 +9473 9638 7189554598232871 src/device/CMakeFiles/dev.dir/hwm.c.obj f262820bb0c22a83 +9185 9652 7189554598412855 src/device/CMakeFiles/dev.dir/cassette.c.obj ab9025f98924fb04 +9546 9882 7189554600453350 src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj e0bbf6454a37e9e9 +2328 9905 7189554600798555 src/cpu/CMakeFiles/cpu.dir/808x.c.obj f9d31b764e60c17e +9652 9908 7189554600818559 src/device/CMakeFiles/dev.dir/ibm_5161.c.obj a88aaa7017059ff4 +9638 9911 7189554601118565 src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj 5088139c82ec1993 +9635 9932 7189554601248557 src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj 90316a47f309a2a5 +8254 10150 7189554602929022 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64.c.obj aa0e78b671ea9acb +9632 10213 7189554603754229 src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj 40f8794578e10d54 +8261 10219 7189554604024252 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops.c.obj 570b1541610ae20e +9933 10358 7189554605169429 src/device/CMakeFiles/dev.dir/postcard.c.obj 2b71ca5ed22737f5 +9911 10377 7189554605714644 src/device/CMakeFiles/dev.dir/pci_bridge.c.obj cf1f1496e31afc62 +9908 10383 7189554605649515 src/device/CMakeFiles/dev.dir/__/lpt.c.obj bb70097b3fd8a181 +9882 10392 7189554605774654 src/device/CMakeFiles/dev.dir/isamem.c.obj a2b8eeb3dc0cb460 +9905 10472 7189554606759974 src/device/CMakeFiles/dev.dir/isartc.c.obj 7d99fb063521d454 +10214 10626 7189554608125267 src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj f537ab75889555c0 +10359 10866 7189554609845735 src/device/CMakeFiles/dev.dir/i2c.c.obj 134cd2e4e4fe0c63 +10378 10879 7189554610075720 src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj d99e4abfea82440f +10393 10963 7189554611530952 src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj d93307e3237fcbc7 +10151 10983 7189554611766185 src/device/CMakeFiles/dev.dir/serial.c.obj f4ae09eca1e7f3af +10473 11022 7189554611836205 src/device/CMakeFiles/dev.dir/keyboard.c.obj d674767b1e88fb58 +10384 11026 7189554611996195 src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj aeadbf2527cf1cc4 +10239 11073 7189554612686263 src/device/CMakeFiles/dev.dir/isapnp.c.obj 156762da0076954e +8483 11126 7189554612871431 src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_uops.c.obj e35213aa69332839 +10626 11234 7189554614226628 src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj 3f41f151fef9f332 +10898 11370 7189554615672013 src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj a1359dcb1f2e0378 +11151 11517 7189554616687301 src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj b54152d79fdbf286 +11085 11546 7189554617252470 src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj caccce90edc00603 +10971 11648 7189554618107701 src/device/CMakeFiles/dev.dir/keyboard_at.c.obj bd97312c53df81ab +11023 11667 7189554618197720 src/device/CMakeFiles/dev.dir/mouse_bus.c.obj f206d08f8f34301b +11019 11820 7189554619828233 src/device/CMakeFiles/dev.dir/mouse.c.obj 1aaac46174e8f47d +11235 11857 7189554619532927 src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj 3f80cff7e302b8c1 +11026 11887 7189554620678303 src/device/CMakeFiles/dev.dir/mouse_serial.c.obj e566b20aaae172fe +11558 11891 7189554620298216 src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj 9ebb77f2a4c35e67 +11649 12050 7189554622228682 src/disk/CMakeFiles/hdd.dir/hdc.c.obj e419f29a1efcb9f0 +10867 12085 7189554622668762 src/device/CMakeFiles/dev.dir/kbc_at.c.obj edc01ae46129c4c7 +11375 12103 7189554622753913 src/disk/CMakeFiles/hdd.dir/hdd.c.obj 47e732b9280302c +11821 12659 7189554626744947 src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj dee693b097496403 +11537 12756 7189554627014916 src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj 38d57a62c3271788 +11667 12774 7189554629015425 src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj a068845931eac088 +11858 12778 7189554629605531 src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj 547bde9835ccbc0d +12061 12922 7189554630775946 src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj 62484e18c4a0cc98 +12103 12945 7189554631325947 src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj de3c051539ea2a72 +11888 13066 7189554632431156 src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj dc98806a54f38d4d +11892 13272 7189554634491621 src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj 166375cd8ea17c2f +12775 13337 7189554635016860 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj e83d092df6fd5dad +12771 13376 7189554635496858 src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj 79a388c711acbf9 +12748 13407 7189554635752106 src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj f5502519a49ebfd9 +13290 13754 7189554638642672 src/disk/minivhd/CMakeFiles/minivhd.dir/convert.c.obj cd763e2ee253d3ec +13083 13763 7189554639477834 src/disk/minivhd/CMakeFiles/minivhd.dir/xml2_encoding.c.obj 6bb5d690b5a9b194 +12945 13927 7189554640693126 src/disk/minivhd/CMakeFiles/minivhd.dir/cwalk.c.obj 3bc45dcc68d8852d +13372 13962 7189554640838240 src/disk/minivhd/CMakeFiles/minivhd.dir/create.c.obj 4a569a51de01ee28 +13377 13977 7189554641743535 src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_io.c.obj 5bafa489eef09db6 +13408 14026 7189554642053539 src/disk/minivhd/CMakeFiles/minivhd.dir/manage.c.obj 91ee0d751ca912bb +13758 14177 7189554643318846 src/disk/minivhd/CMakeFiles/minivhd.dir/struct_rw.c.obj 33afe53476de7d3 +13765 14210 7189554643888747 src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_util.c.obj ba9f0ec986de9bad +12099 14227 7189554643979996 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj d06be07d9a2ab605 +14026 14305 7189554644893671 src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj 4978b4de0f2b1df7 +12779 14333 7189554645013733 src/disk/CMakeFiles/zip.dir/zip.c.obj 810c789496c8008f +13977 14336 7189554645313700 src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj 838bd138496cae2 +14184 14491 7189554646874404 src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj b278a23f89b782a1 +14305 14540 7189554647314388 src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj 89725717d6f39152 +13947 14549 7189554647474396 src/floppy/CMakeFiles/fdd.dir/fdd.c.obj b3eb872a1e7597d0 +14224 14553 7189554647224407 src/disk/minivhd/libminivhd.a 3f3103c82bfa01b5 +14336 14664 7189554648619816 src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj c42b5fd03e3e3957 +14553 14963 7189554651258102 src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj 918394e3b131c3d0 +14549 15000 7189554651803361 src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj f06835c9817305e3 +14492 15147 7189554653308577 src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj 537f1c69999d91e4 +14540 15180 7189554653853806 src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj 24d8911d9ffecc43 +15012 15277 7189554654664725 src/game/CMakeFiles/game.dir/joystick_standard.c.obj 3cfdebade8bd17ac +14965 15285 7189554654819907 src/game/CMakeFiles/game.dir/gameport.c.obj 4e50e73687988b59 +13970 15296 7189554654879895 src/floppy/CMakeFiles/fdd.dir/fdc.c.obj c53f96fc68518749 +15171 15349 7189554655319903 src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj c41476e12e5c92c0 +14666 15385 7189554655609965 src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj bf43466a4f4ed0df +15183 15478 7189554656495150 src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj a6ee9da697fcac0e +15283 15528 7189554656705233 src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj ea9828f580dc1ab2 +14228 15585 7189554656625246 src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj 38e7721765e60b1 +15286 15617 7189554657855638 src/machine/CMakeFiles/mch.dir/machine.c.obj a057c367a134bfb5 +15386 15761 7189554659310880 src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj 5583e287a1c3ead4 +12927 15978 7189554661352440 src/disk/CMakeFiles/mo.dir/mo.c.obj 8a6a9c41ed6934c3 +15297 16024 7189554661662541 src/machine/CMakeFiles/mch.dir/machine_table.c.obj c406b2abf33f2d28 +15482 16050 7189554662177706 src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj df696ffd4b2e6b22 +15349 16057 7189554662327725 src/machine/CMakeFiles/mch.dir/m_xt.c.obj 669ad8f10a8c423d +15762 16147 7189554663362941 src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj 7be06f3db1f0facf +15632 16152 7189554663192957 src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj c137af6630051e31 +16058 16312 7189554664735991 src/machine/CMakeFiles/mch.dir/m_elt.c.obj 72004c3e86767de5 +15586 16355 7189554664925976 src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj 779f9cf69252e6ae +15538 16376 7189554665716081 src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj 300ef59f3e133b8 +16050 16382 7189554665871252 src/machine/CMakeFiles/mch.dir/m_europc.c.obj a87cf54317d4f5ac +14333 16442 7189554666201245 src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj 48a3c49003dd01f2 +16334 16528 7189554667286522 src/machine/CMakeFiles/mch.dir/m_v86p.c.obj e2cdbd047d0f5434 +16376 16549 7189554667396533 src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj 19b0e79d0ce1af84 +16360 16649 7189554668291754 src/machine/CMakeFiles/mch.dir/m_at.c.obj 8f35d6826f3a7efe +16008 16734 7189554669307023 src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj ee488ec0989a4273 +16383 16777 7189554669689503 src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj 59504c3954066d5d +16148 16840 7189554670144679 src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj a957fb0b21801731 +16528 16843 7189554670224662 src/machine/CMakeFiles/mch.dir/m_ps1.c.obj 46ea30be1c148a06 +16651 16891 7189554670739883 src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj f675b021dce98477 +16442 16895 7189554670849859 src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj 6067757bf6a87568 +16550 17014 7189554671985189 src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj ddc31cbfd42c1515 +16153 17134 7189554673370494 src/machine/CMakeFiles/mch.dir/m_tandy.c.obj 596cfe49f3390336 +16027 17223 7189554674185742 src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj c4c474a4db7ec86d +16891 17243 7189554674425737 src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj c6d20acb4b4da64a +16895 17246 7189554674455747 src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj 62842ff932d5c713 +16840 17352 7189554675372002 src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj 5dae20cbb2d8d3c7 +16778 17371 7189554675622054 src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj af9df0360ef9d954 +16735 17464 7189554676527224 src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj 515e4ff1d1a254cd +17021 17494 7189554676752493 src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj b478812eba8041a6 +17243 17531 7189554677142484 src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj 9df940b15ba182e6 +17224 17552 7189554677292484 src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj 126dbbe4897cdb93 +17356 17614 7189554678067716 src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj 5b2e67cbc586f67f +17464 17675 7189554678822930 src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj 4beec223f48eed9b +17247 17680 7189554678862915 src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj b4d49c36a8e043d3 +16843 17707 7189554678992933 src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj 37d2f6332fdd9445 +17495 17736 7189554679312923 src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj c15afe42f4352ba1 +17380 17743 7189554679242926 src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj e773fc752ce5b931 +17552 17750 7189554679522935 src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj da5e49468b458893 +17151 17753 7189554679402934 src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj 5e51c9933956ad2 +17532 17756 7189554679613032 src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj 71fed72cde078d56 +17614 17954 7189554681553534 src/mem/CMakeFiles/mem.dir/intel_flash.c.obj 8161cb5a1bdee8f6 +17736 18071 7189554682668791 src/mem/CMakeFiles/mem.dir/row.c.obj c0b676ff309b3f4a +17744 18078 7189554682833985 src/mem/CMakeFiles/mem.dir/smram.c.obj 81025aefdcb9bd6f +17754 18137 7189554683243974 src/mem/CMakeFiles/mem.dir/sst_flash.c.obj 9acb56d53b3e427b +17707 18179 7189554683704029 src/mem/CMakeFiles/mem.dir/rom.c.obj 72d0a5875c42a891 +17750 18205 7189554684059140 src/mem/CMakeFiles/mem.dir/spd.c.obj 8abb90c7c969180a +17681 18293 7189554684994445 src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj f8515d859188d658 +18081 18502 7189554687094948 src/network/CMakeFiles/net.dir/net_dp8390.c.obj 79a1c3a6f4684bc +18179 18505 7189554687064957 src/network/CMakeFiles/net.dir/net_3c503.c.obj 7883c0db0b58f7e1 +18137 18527 7189554687274968 src/network/CMakeFiles/net.dir/net_3c501.c.obj cd2b97ed4b0d855f +18206 18698 7189554688985502 src/network/CMakeFiles/net.dir/net_ne2000.c.obj 5db5e42a1b8c8446 +18506 18804 7189554689950771 src/network/CMakeFiles/net.dir/net_plip.c.obj 363feb792e60c6ab +18503 18923 7189554691020214 src/network/CMakeFiles/net.dir/net_wd8003.c.obj 9b737d76b785f93b +18806 19036 7189554692265438 src/printer/CMakeFiles/print.dir/png.c.obj f539200d5b2c3b8c +17761 19048 7189554692425430 src/network/CMakeFiles/net.dir/network.c.obj e57ce942b0931fdf +17955 19101 7189554692840669 src/network/CMakeFiles/net.dir/net_pcap.c.obj d0ff11f5925a5c97 +18937 19124 7189554693110671 src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj 3a2fb0f59207369e +17676 19206 7189554693795866 src/mem/CMakeFiles/mem.dir/mem.c.obj 7135f725f53e280c +19102 19397 7189554695957553 src/printer/CMakeFiles/print.dir/prt_ps.c.obj 3902e1bb9c137e8c +19056 19401 7189554695807538 src/printer/CMakeFiles/print.dir/prt_text.c.obj 778caf8bd394d443 +19128 19475 7189554696537520 src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj 9e8c976bb451ffbe +18527 19533 7189554697222736 src/network/CMakeFiles/net.dir/net_event.c.obj 208392db2faa628a +19213 19562 7189554697682848 src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj fab89a36430fbee0 +19399 19691 7189554698903137 src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj cc33f768edd83150 +19402 19695 7189554698843144 src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj d65334b6b4052339 +19475 19771 7189554699788322 src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj cb2b9da9d481fe1e +18076 19787 7189554699723202 src/network/CMakeFiles/net.dir/net_slirp.c.obj 7126e5a1dbd0942f +18700 19828 7189554700338340 src/network/CMakeFiles/net.dir/net_null.c.obj 3b7d79e865b3e758 +19040 19831 7189554700128310 src/printer/CMakeFiles/print.dir/prt_escp.c.obj 2f91cc8dd16aa86b +19562 19836 7189554700398330 src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj bd07b68fec5a2016 +19533 19898 7189554700853711 src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj 72e8984e0d40f041 +19703 19968 7189554701673809 src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj d07ede83efc0a7ae +19771 20064 7189554702639072 src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj 7de77d4b395761c0 +19837 20067 7189554702719087 src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj 7c772013e900ea4e +19787 20154 7189554703444218 src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj b7f23b1cc8a65b05 +19899 20158 7189554703414214 src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj 6921dc268cd80b0c +19691 20204 7189554703809413 src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj 28566ca2b8a675fb +19828 20207 7189554704039435 src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj 233c494f45126691 +19831 20209 7189554703929415 src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj d1256e31e0c16828 +19968 20262 7189554704409446 src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj d59e52b0a0956c53 +20067 20304 7189554705094687 src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj b02fb118906752e5 +20064 20325 7189554705174679 src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj f5e17a540c3b2d8f +20207 20431 7189554706381803 src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj c6320cce8edef01d +20155 20442 7189554706411790 src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj 70e52651c51c9800 +20209 20459 7189554706551797 src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj 6d932ddb774342d6 +20262 20463 7189554706541791 src/sio/CMakeFiles/sio.dir/sio_detect.c.obj 7ba5db7c758f78cd +20158 20474 7189554706766982 src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj 52ede54ae60cab9b +20304 20480 7189554706846996 src/scsi/CMakeFiles/scsi.dir/scsi.c.obj 10ffa853dce3e10a +20326 20524 7189554707216980 src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj 58bbb425dc15f444 +20204 20626 7189554707992196 src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj d0eb04a8de853b94 +18294 20827 7189554709882502 src/network/CMakeFiles/net.dir/net_pcnet.c.obj 9a3aa3aabdf92cd1 +20464 20958 7189554711481619 src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj 6a5197af2cef2d71 +20443 21084 7189554712526869 src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj 46b035ef94cad9ce +20474 21184 7189554713732118 src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj dc07225c9beb494f +20480 21261 7189554714547216 src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj 3a6ceb2144819261 +21088 21327 7189554715152369 src/sound/CMakeFiles/snd.dir/snd_opl.c.obj f2f559609d361993 +20959 21380 7189554715747457 src/sound/CMakeFiles/snd.dir/sound.c.obj 656ab0f9ba8451f0 +20459 21401 7189554715887527 src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj cf504d47f1afa67c +20828 21467 7189554716297511 src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj e83a2c60500b4018 +20660 21571 7189554717612757 src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj 8d66752e6845ad3 +21403 21580 7189554717817866 src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj 4cf89ad655d21b7f +20527 21602 7189554717807871 src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj 66ba73b91bbadda6 +21385 21763 7189554719513046 src/sound/CMakeFiles/snd.dir/midi.c.obj da264aabfd0e429f +21363 21790 7189554719473048 src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj f6980812694a16d4 +21486 21803 7189554719868249 src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj 9d6ea661da56a0a9 +21572 21806 7189554719958270 src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj 22bc6bd12464c1d6 +20431 21865 7189554720498262 src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj 70b952fa9d1188a9 +21580 21910 7189554721050676 src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj cbc555d49394e985 +21803 21988 7189554721905909 src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj f01357fa40b9a51d +21210 21997 7189554721825928 src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj 6262942edb332e03 +21786 22037 7189554722165939 src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj 86d31dcaa030cecb +21798 22042 7189554722465956 src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj 511b5db758ec9238 +21603 22072 7189554722606061 src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj cc381665374ea364 +21997 22307 7189554724971719 src/sound/CMakeFiles/snd.dir/snd_cms.c.obj 16cde0121ce412da +21883 22364 7189554725631787 src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj 3bd53e1a36ada808 +21806 22420 7189554726040042 src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj 23a718a78efba05b +21989 22476 7189554726724253 src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj cbd3df060ead6e31 +22042 22492 7189554726809396 src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj bba2a8d5d5e5212a +22037 22709 7189554728839762 src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj 8602de44f2374ffb +21913 22781 7189554729419731 src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj 988aee7951d23c23 +22493 22805 7189554730124878 src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj 2530450d1c6b347e +22072 22817 7189554730084882 src/sound/CMakeFiles/snd.dir/snd_gus.c.obj 215c1c68b039372a +21270 22871 7189554730574882 src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj f178fb96a7c040d7 +22718 22900 7189554731061141 src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj 89b091203a6bf8cf +22810 23037 7189554732419510 src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj a2c900fd9bccc98b +22787 23049 7189554732539511 src/sound/CMakeFiles/snd.dir/snd_wss.c.obj c177b82b3c054c4e +22365 23166 7189554733534686 src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj 3b584c24a0e65a6 +22827 23190 7189554733839868 src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj 6b75d02c3c532b10 +23046 23350 7189554735375017 src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj dd057c046b63b1ea +22477 23371 7189554735605079 src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj 29d51837e749882e +22438 23388 7189554735830302 src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj a07522c9f205db17 +23054 23510 7189554736915490 src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj 6aa0cd81beb8ba9a +22308 23550 7189554737365517 src/sound/CMakeFiles/snd.dir/snd_sb.c.obj 5c8e79f8fa5ec7eb +23395 23613 7189554738160778 src/sound/munt/CMakeFiles/mt32emu.dir/File.cpp.obj 26deceb030453ff1 +23170 23660 7189554738620861 src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj d1a8548acf0a728f +23554 23718 7189554739036024 src/sound/munt/CMakeFiles/mt32emu.dir/LA32Ramp.cpp.obj 9792e75fccb043d1 +23197 23736 7189554739226043 src/sound/munt/CMakeFiles/mt32emu.dir/Analog.cpp.obj df5f052aade2cb5e +23372 23753 7189554739306059 src/sound/munt/CMakeFiles/mt32emu.dir/Display.cpp.obj 991ce477a34d5dfa +22911 23830 7189554740071225 src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj f8a113fdb5d48a35 +23624 24005 7189554742011669 src/sound/munt/CMakeFiles/mt32emu.dir/LA32FloatWaveGenerator.cpp.obj 760eb252bfd296e +23672 24081 7189554742701697 src/sound/munt/CMakeFiles/mt32emu.dir/LA32WaveGenerator.cpp.obj d823c48b92ae7d10 +23719 24115 7189554742936789 src/sound/munt/CMakeFiles/mt32emu.dir/MidiStreamParser.cpp.obj 66675bee4baafe5a +23523 24150 7189554743466792 src/sound/munt/CMakeFiles/mt32emu.dir/FileStream.cpp.obj b1ecf1fcd0c3b3ae +23831 24183 7189554743686845 src/sound/munt/CMakeFiles/mt32emu.dir/PartialManager.cpp.obj 4ae94bc30adae6a7 +23363 24226 7189554744042008 src/sound/munt/CMakeFiles/mt32emu.dir/BReverbModel.cpp.obj d1171c5dc0144ba2 +23753 24263 7189554744442014 src/sound/munt/CMakeFiles/mt32emu.dir/Partial.cpp.obj c76669652b61a1ec +24006 24271 7189554744662103 src/sound/munt/CMakeFiles/mt32emu.dir/Poly.cpp.obj ca0a91bcd13ac61e +24116 24332 7189554745127215 src/sound/munt/CMakeFiles/mt32emu.dir/SampleRateConverter.cpp.obj 9639d54d0f1afa2a +24226 24352 7189554745447190 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/LinearResampler.cpp.obj 8f22dba3cdfec8a2 +23736 24384 7189554745792423 src/sound/munt/CMakeFiles/mt32emu.dir/Part.cpp.obj a24bd25d149373a1 +24150 24411 7189554745932408 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/FIRResampler.cpp.obj e37351a8db23cbc7 +24081 24453 7189554746433670 src/sound/munt/CMakeFiles/mt32emu.dir/ROMInfo.cpp.obj 1aa94d0477351070 +24184 24479 7189554746593669 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/IIR2xResampler.cpp.obj c48b35e9eac94bb0 +24288 24517 7189554747058905 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/SincResampler.cpp.obj f7899268aa45eb4 +24268 24552 7189554747578893 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/ResamplerModel.cpp.obj bc1b6881af0a3d09 +24333 24556 7189554747298907 src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/InternalResampler.cpp.obj 752332d9be1a9bfc +24385 24559 7189554747619009 src/sound/munt/CMakeFiles/mt32emu.dir/Tables.cpp.obj 4214fc76ac244090 +22876 24665 7189554748494323 src/sound/CMakeFiles/snd.dir/xaudio2.c.obj 2b42ce4547c3df6e +24453 24703 7189554748959596 src/sound/munt/CMakeFiles/mt32emu.dir/TVF.cpp.obj caee8d6cb05fda0 +24517 24752 7189554749179627 src/sound/munt/CMakeFiles/mt32emu.dir/sha1/sha1.cpp.obj a05fa73da37cb4a0 +24411 24755 7189554749339600 src/sound/munt/CMakeFiles/mt32emu.dir/TVA.cpp.obj e7e8f5896dfce319 +24479 24840 7189554750194858 src/sound/munt/CMakeFiles/mt32emu.dir/TVP.cpp.obj a048bc26be44fc7c +24556 25413 7189554755977615 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_misc.cpp.obj ba5f459851deed83 +24552 26132 7189554763035874 src/sound/munt/CMakeFiles/mt32emu.dir/c_interface/c_interface.cpp.obj dab43ad6d7c75662 +24868 26323 7189554765096297 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_pcm.cpp.obj b9da3ceb01f9a0d1 +26162 26466 7189554766562200 src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve-sse.cc.obj 8ac10b5814056346 +26347 26525 7189554767028716 src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve.cc.obj 5edee5d9bbf82de1 +24352 26546 7189554767148736 src/sound/munt/CMakeFiles/mt32emu.dir/Synth.cpp.obj ecb72dca3bbc53d +24753 26600 7189554767773958 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opq.cpp.obj 38db4464722f8225 +26469 26603 7189554768093959 src/sound/resid-fp/CMakeFiles/resid-fp.dir/envelope.cc.obj 4d1c5482de4f24c1 +24665 26654 7189554768283977 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opm.cpp.obj d38950d60aeb9e0e +26603 26711 7189554769099180 src/sound/resid-fp/CMakeFiles/resid-fp.dir/pot.cc.obj d71376e1703ac1f4 +26542 26735 7189554769319181 src/sound/resid-fp/CMakeFiles/resid-fp.dir/extfilt.cc.obj 93bc9b777c982ad0 +24756 26817 7189554770054346 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opz.cpp.obj b8141e0912f7c3c +25443 26826 7189554769834360 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_adpcm.cpp.obj 283dc618b5f472a +26601 26853 7189554770534342 src/sound/resid-fp/CMakeFiles/resid-fp.dir/filter.cc.obj 8f83bc2f0a50224d +26819 26955 7189554771149661 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PST.cc.obj ac2e74757c4309c4 +26712 26960 7189554771169665 src/sound/resid-fp/CMakeFiles/resid-fp.dir/voice.cc.obj 49ae4c3e1df8286f +26827 26968 7189554771199648 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PS_.cc.obj e9075b15206d2f3e +26736 26971 7189554771469646 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave.cc.obj 48fa0b4a27be029c +26548 26973 7189554770939651 src/sound/munt/libmt32emu.a 169f447f34a6312f +26860 26989 7189554771964830 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_P_T.cc.obj e7f62c66af778c74 +26956 27052 7189554772584809 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581__ST.cc.obj edd1da7f65c34941 +26973 27055 7189554772624868 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580__ST.cc.obj 413fa4b7c70618c6 +26961 27058 7189554772654868 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PST.cc.obj 8658a434d011a02b +26968 27060 7189554772614810 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PS_.cc.obj 73d1ab04d76ae06c +26971 27075 7189554772799989 src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_P_T.cc.obj 5ce91a2f551b6922 +26989 27253 7189554774485190 src/video/CMakeFiles/vid.dir/agpgart.c.obj edb12d996e564f4 +27055 27355 7189554775470404 src/video/CMakeFiles/vid.dir/vid_table.c.obj bd2b17c0126869fd +26664 27373 7189554775610406 src/sound/resid-fp/CMakeFiles/resid-fp.dir/sid.cc.obj 6ac14399b62c421c +27061 27426 7189554776035610 src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj e7c5e239322c8844 +27075 27508 7189554777114489 src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj 69accc0d75a12d0b +27058 27553 7189554777284511 src/video/CMakeFiles/vid.dir/vid_cga.c.obj a0a8d9927fb5bc54 +27261 27693 7189554778489657 src/video/CMakeFiles/vid.dir/vid_mda.c.obj c98c511a82919dce +27380 27695 7189554778559649 src/sound/resid-fp/libresid-fp.a a1c8639b2a836073 +27052 27796 7189554779654858 src/video/CMakeFiles/vid.dir/video.c.obj 39907c1d1d82edf9 +27362 27845 7189554780289954 src/video/CMakeFiles/vid.dir/vid_hercules.c.obj a3192d9092d2d39c +27427 27856 7189554780469977 src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj d7cff02eea2ad06 +27553 27935 7189554781355177 src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj 3a12d21c69936968 +27508 28083 7189554782370419 src/video/CMakeFiles/vid.dir/vid_incolor.c.obj 4df2e2af19dea9dc +27693 28229 7189554783830869 src/video/CMakeFiles/vid.dir/vid_genius.c.obj 39579fd1c5c7a092 +24703 28318 7189554784750942 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opn.cpp.obj 7203e712beb86700 +27859 28374 7189554785666094 src/video/CMakeFiles/vid.dir/vid_wy700.c.obj f70c095ce5dbb043 +27846 28379 7189554785781174 src/video/CMakeFiles/vid.dir/vid_sigma.c.obj 72ba153594d07a98 +27817 28383 7189554785831183 src/video/CMakeFiles/vid.dir/vid_im1024.c.obj 617c976dd8b65e14 +28084 28452 7189554786601203 src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj ab3910be77f120ff +28379 28604 7189554787841498 src/video/CMakeFiles/vid.dir/vid_ddc.c.obj 99ba9d660ef3ae46 +28384 28662 7189554788451502 src/video/CMakeFiles/vid.dir/vid_vga.c.obj 2c32c02c51dfd71a +27942 28743 7189554789406644 src/video/CMakeFiles/vid.dir/vid_ega.c.obj a9a71b6976d05b78 +28474 28760 7189554789536662 src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj a8549f6661d92957 +28620 28849 7189554790491919 src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj e3b744227bb5871b +27695 28911 7189554790987136 src/video/CMakeFiles/vid.dir/vid_pgc.c.obj 4db349bd38bd06a5 +28853 29015 7189554792202296 src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj 64ed2a584795ab49 +28663 29047 7189554792552306 src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj 97a019ba11413591 +28911 29183 7189554793687583 src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj dd88b8edefd49c9d +29049 29218 7189554794272693 src/video/CMakeFiles/vid.dir/vid_av9194.c.obj 71e0f10def68d4f9 +28250 29249 7189554794272693 src/video/CMakeFiles/vid.dir/vid_svga.c.obj cc4faad2bbbe5f4e +29017 29375 7189554795793153 src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj 1ca195c64dab7c53 +29184 29413 7189554796113149 src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj 16b33ece278dd050 +29219 29424 7189554796303149 src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj 15be491d5b7b1697 +29260 29439 7189554796453173 src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj 15618f1b0259f8cd +29441 29671 7189554798632605 src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj 427a5aaa5bdee606 +29417 29699 7189554799017689 src/video/CMakeFiles/vid.dir/vid_et3000.c.obj 49204ef2067023e7 +28374 29880 7189554800662988 src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj bbc061232bab9aae +29433 29924 7189554801228144 src/video/CMakeFiles/vid.dir/vid_et4000.c.obj 2cc4da8a8b980088 +29694 29943 7189554801368153 src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj 8ae3fbc94b6b5fad +29884 30140 7189554803338511 src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj c2b5c62d6a42aedc +24559 30266 7189554804143750 src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opl.cpp.obj 64a92db8a3f21050 +29945 30350 7189554805308901 src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj b1de711122accbd2 +30153 31051 7189554811493987 src/video/CMakeFiles/vid.dir/vid_paradise.c.obj 9e6a14b610439efd +29925 31072 7189554811989178 src/video/CMakeFiles/vid.dir/vid_ht216.c.obj 2ace1cb74c09ddb0 +30350 31078 7189554812209178 src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj 6a34bcf6aadcdd46 +30267 31282 7189554813084364 src/sound/ymfm/libymfm.a f2c56d25d236d6b9 +28765 31388 7189554815104723 src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj 5418691b4b9c3078 +31074 31481 7189554815594723 src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj 1778c6e9ab4110d1 +31078 31502 7189554816549898 src/video/CMakeFiles/vid.dir/vid_tvga.c.obj 65ed385191b084da +31062 31610 7189554817515113 src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj c6b2bc69bb275fa4 +29395 31743 7189554818865460 src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj 34f211c49ef12ec7 +31497 31796 7189554819780673 src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj d013343eecfeadc1 +31431 31962 7189554821205936 src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj 64fb3d6e7c09e001 +28757 32029 7189554822071107 src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj 9427c7f904e23fcf +28319 32260 7189554823861539 src/video/CMakeFiles/vid.dir/vid_8514a.c.obj 4d9eba26cc265bfd +31804 32307 7189554823851543 src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj ba95567506c15a1 +31744 32583 7189554827537242 src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj c2421d8ea70fc0a6 +32307 32710 7189554828789516 src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj e2a25566f3aef208 +29703 32721 7189554829009513 src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj a05fc33db737a070 +31981 32735 7189554829159545 src/video/CMakeFiles/vid.dir/vid_ogc.c.obj 56a746168a6d67e +32039 32752 7189554829479544 src/video/CMakeFiles/vid.dir/vid_nga.c.obj bba7548ebb0b46f8 +32282 32835 7189554829984744 src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj ea978e2c6b176327 +31283 32986 7189554831529948 src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj be54604842cd9716 +32836 33655 7189554838011265 src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj c3e6d65162bbebdc +32731 33980 7189554841126799 src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj 5d63dcc355a1186a +32752 34077 7189554842331943 src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj ff81019fcea407aa +33071 34176 7189554843588444 src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj d4ccbb890222a8f +31634 34216 7189554843834198 src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj 1a9ea00e47d3754b +33662 34347 7189554845319417 src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj 531502af39896d00 +34028 34563 7189554847209787 src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj 3b545ae302dd81c7 +34216 34832 7189554847459780 src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj f0c7fbd734e9f49d +2349 34998 7189554846899772 src/cpu/CMakeFiles/cpu.dir/386.c.obj 4c66f5433f9043cc +32749 35000 7189554847099789 src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj 417d1f1822f3fffc +2801 35001 7189554849102772 src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj 5490368b7af5b89e +34092 35003 7189554851023196 src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj 9a2dee298741d827 +32602 35007 7189554851614274 src/video/CMakeFiles/vid.dir/vid_xga.c.obj 740dd3f50d315a8 +34347 35238 7189554854264363 src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj aff9de729b74ee50 +34630 35309 7189554853928667 src/qt/plat_autogen/timestamp 769ddf01e5ac5372 +34630 35309 7189554853928667 src/qt/plat_autogen/mocs_compilation.cpp 769ddf01e5ac5372 +34630 35309 7189554853928667 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/timestamp 769ddf01e5ac5372 +34630 35309 7189554853928667 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/mocs_compilation.cpp 769ddf01e5ac5372 +35309 35559 7189554857125685 src/qt/CMakeFiles/plat.dir/plat_autogen/mocs_compilation.cpp.obj 3678cbc10077a9ea +32710 35711 7189554857481315 src/video/CMakeFiles/vid.dir/vid_mga.c.obj 49c08d83e34f759a +35312 35858 7189554858678957 src/qt/CMakeFiles/plat.dir/qt.c.obj f0488e85c7750074 +31502 36813 7189554869151113 src/video/CMakeFiles/vid.dir/vid_s3.c.obj 9dca196e1a479f74 +34176 37823 7189554879444920 src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj a419356ab97435d4 +35316 37866 7189554880590222 src/qt/CMakeFiles/plat.dir/win_dynld.c.obj 193c18a00ee57a66 +35319 38072 7189554882440737 src/qt/CMakeFiles/plat.dir/__/win/win_serial_passthrough.c.obj d02ecaf085981198 +35318 38491 7189554886832793 src/qt/CMakeFiles/plat.dir/win_joystick_rawinput.c.obj 7c6465a32905f797 +2411 39505 7189554896447747 src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj 1e97e20b3d594ed6 +34991 41428 7189554915757697 src/qt/ui_autogen/timestamp 15a5c95f73f5507 +34991 41428 7189554915757697 src/qt/ui_autogen/mocs_compilation.cpp 15a5c95f73f5507 +34991 41428 7189554915757697 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/timestamp 15a5c95f73f5507 +34991 41428 7189554915757697 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/mocs_compilation.cpp 15a5c95f73f5507 +41431 41461 7189554916662830 src/qt/86box_cs-CZ.qm 283d98da5f2ba387 +41431 41461 7189554916662830 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_cs-CZ.qm 283d98da5f2ba387 +41429 41467 7189554916702931 src/qt/86box_ca-ES.qm f6a63c73846b9c76 +41429 41467 7189554916702931 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ca-ES.qm f6a63c73846b9c76 +41432 41469 7189554916712927 src/qt/86box_de-DE.qm c77f178367e24833 +41432 41469 7189554916712927 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_de-DE.qm c77f178367e24833 +41434 41471 7189554916712927 src/qt/86box_en-GB.qm 172cb625f3a15ed2 +41434 41471 7189554916712927 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_en-GB.qm 172cb625f3a15ed2 +41435 41473 7189554916742933 src/qt/86box_en-US.qm 3de4c12be3f04bb +41435 41473 7189554916742933 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_en-US.qm 3de4c12be3f04bb +41437 41475 7189554916772923 src/qt/86box_es-ES.qm 39c5a91ccf48bdab +41437 41475 7189554916772923 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_es-ES.qm 39c5a91ccf48bdab +41438 41476 7189554916812928 src/qt/86box_fi-FI.qm 2688fcf40fa85f59 +41438 41476 7189554916812928 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_fi-FI.qm 2688fcf40fa85f59 +41440 41478 7189554916822938 src/qt/86box_fr-FR.qm cdf423fa6b1b2922 +41440 41478 7189554916822938 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_fr-FR.qm cdf423fa6b1b2922 +41443 41481 7189554916832925 src/qt/86box_hu-HU.qm 9207bca6477c7e46 +41443 41481 7189554916832925 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_hu-HU.qm 9207bca6477c7e46 +41442 41483 7189554916863587 src/qt/86box_hr-HR.qm 676009f3cfe9a7c +41442 41483 7189554916863587 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_hr-HR.qm 676009f3cfe9a7c +41461 41494 7189554916993582 src/qt/86box_it-IT.qm bcce70e67c4d1e9 +41461 41494 7189554916993582 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_it-IT.qm bcce70e67c4d1e9 +41467 41501 7189554917053580 src/qt/86box_ja-JP.qm a33788554c1243c +41467 41501 7189554917053580 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ja-JP.qm a33788554c1243c +41469 41503 7189554917073579 src/qt/86box_ko-KR.qm ee0bc8cc606614ac +41469 41503 7189554917073579 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ko-KR.qm ee0bc8cc606614ac +41472 41508 7189554917133596 src/qt/86box_pl-PL.qm 338738ef952ae42d +41472 41508 7189554917133596 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pl-PL.qm 338738ef952ae42d +41473 41512 7189554917133596 src/qt/86box_pt-BR.qm e4265d2867b4c68c +41473 41512 7189554917133596 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pt-BR.qm e4265d2867b4c68c +41475 41512 7189554917133596 src/qt/86box_pt-PT.qm 36f6b104ba7645fd +41475 41512 7189554917133596 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pt-PT.qm 36f6b104ba7645fd +41477 41514 7189554917193590 src/qt/86box_ru-RU.qm ab7bb4c927acf63f +41477 41514 7189554917193590 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ru-RU.qm ab7bb4c927acf63f +41478 41515 7189554917203597 src/qt/86box_sk-SK.qm 4ee3becd1b8fd9c0 +41478 41515 7189554917203597 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_sk-SK.qm 4ee3becd1b8fd9c0 +41482 41517 7189554917223591 src/qt/86box_sl-SI.qm 865eaa9e20e1aebf +41482 41517 7189554917223591 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_sl-SI.qm 865eaa9e20e1aebf +41483 41520 7189554917273585 src/qt/86box_tr-TR.qm 99bb3f59662e3264 +41483 41520 7189554917273585 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_tr-TR.qm 99bb3f59662e3264 +41494 41530 7189554917373581 src/qt/86box_uk-UA.qm 18fddf6d78fc01ce +41494 41530 7189554917373581 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_uk-UA.qm 18fddf6d78fc01ce +41501 41533 7189554917413591 src/qt/86box_zh-CN.qm f5941f759f7b8c34 +41501 41533 7189554917413591 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_zh-CN.qm f5941f759f7b8c34 +41503 41536 7189554917443595 src/qt/86box_zh-TW.qm 45eb9132195e054d +41503 41536 7189554917443595 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_zh-TW.qm 45eb9132195e054d +41509 41758 7189554918088820 src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp cdfb8071f2adce08 +41509 41758 7189554918088820 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp cdfb8071f2adce08 +41537 41763 7189554918388806 src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp e947c0ac763678c7 +41537 41763 7189554918388806 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp e947c0ac763678c7 +41769 41911 7189554921129741 src/CMakeFiles/86Box.dir/random.c.obj e9ccca756f77caaa +41775 41990 7189554921609748 src/CMakeFiles/86Box.dir/apm.c.obj 92a47f6dfdd4341 +41767 41994 7189554921844946 src/CMakeFiles/86Box.dir/log.c.obj 84153a591b52151d +41770 42012 7189554922165063 src/CMakeFiles/86Box.dir/timer.c.obj 7340fec86a5112f1 +41913 42036 7189554922405057 src/CMakeFiles/86Box.dir/nmi.c.obj ae5797790567b2a8 +41778 42047 7189554922455063 src/CMakeFiles/86Box.dir/ddma.c.obj d3fb0675250fa1cf +42036 42260 7189554924695678 src/CMakeFiles/86Box.dir/port_6x.c.obj 40596ae454e5c915 +41772 42321 7189554924715757 src/CMakeFiles/86Box.dir/io.c.obj a46a651825baff87 +42048 42324 7189554925160926 src/CMakeFiles/86Box.dir/port_92.c.obj d5bb1ce9867e36aa +42261 42387 7189554925857028 src/CMakeFiles/86Box.dir/ppi.c.obj 5fd25ccbbe2e788d +41764 42444 7189554926447024 src/CMakeFiles/86Box.dir/86box.c.obj d62b4f246988e64e +42012 42496 7189554926797077 src/CMakeFiles/86Box.dir/pit_fast.c.obj 4e1af074e32471f2 +42324 42527 7189554927052157 src/CMakeFiles/86Box.dir/mca.c.obj fd2571d5cca9171a +41991 42544 7189554927392178 src/CMakeFiles/86Box.dir/pic.c.obj bf6f918e27c231f8 +41995 42561 7189554927482196 src/CMakeFiles/86Box.dir/pit.c.obj 326e0146a566806a +41777 42649 7189554928477375 src/CMakeFiles/86Box.dir/dma.c.obj c8d49a3a49a06fb +41773 42655 7189554928577362 src/CMakeFiles/86Box.dir/acpi.c.obj e92280d3f66316a0 +42387 42721 7189554929132597 src/CMakeFiles/86Box.dir/usb.c.obj e1c10dbbffcb02da +42524 42745 7189554929282603 src/CMakeFiles/86Box.dir/fifo8.c.obj eacccd5338bb3a3a +42444 42755 7189554929302600 src/CMakeFiles/86Box.dir/fifo.c.obj 3afb7910624ad4c9 +42544 42847 7189554930427884 src/CMakeFiles/86Box.dir/nvr.c.obj 28fdd89d33cb0b42 +42321 42850 7189554930527883 src/CMakeFiles/86Box.dir/pci.c.obj 3c5554c13073768d +42655 42908 7189554930903106 src/CMakeFiles/86Box.dir/machine_status.c.obj e7fb3e4decf69f90 +42652 42917 7189554930963109 src/CMakeFiles/86Box.dir/nvr_ps2.c.obj 2ad4290ab94f789d +41766 43129 7189554933043602 src/CMakeFiles/86Box.dir/config.c.obj aff4c351864cfac9 +42527 43144 7189554933353612 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +42561 43158 7189554933583604 src/CMakeFiles/86Box.dir/nvr_at.c.obj 8ee088a3fcd27807 +42927 43165 7189554933703699 src/qt/CMakeFiles/ui.dir/qt_cdrom.c.obj 16eb4315eb21d0f7 +42847 43167 7189554933763694 src/CMakeFiles/86Box.dir/win/86Box-qt.rc.obj c899e0297652edbb +42732 43239 7189554934348880 src/CMakeFiles/86Box.dir/ini.c.obj e9359a956775cca6 +35314 43294 7189554934718950 src/qt/CMakeFiles/plat.dir/qt_platform.cpp.obj f99388b917489f6d +42751 43538 7189554937414599 src/CMakeFiles/86Box.dir/thread.cpp.obj 14a29ba36d6f6bba +35313 43816 7189554939890321 src/qt/CMakeFiles/plat.dir/qt_main.cpp.obj 4d3965024f65fe76 +43818 44475 7189554945386766 src/qt/libplat.a 9fbddd7a11528b2e +42759 44885 7189554950653311 src/CMakeFiles/86Box.dir/discord.c.obj f1fa2a72d481d015 +43168 46282 7189554964367523 src/qt/CMakeFiles/ui.dir/qt_renderercommon.cpp.obj 61a548b8554fb060 +42908 46335 7189554964807595 src/qt/CMakeFiles/ui.dir/qt_ui.cpp.obj becb3c0a1d929262 +43240 46537 7189554967086259 src/qt/CMakeFiles/ui.dir/qt_softwarerenderer.cpp.obj d6c3fc385f60db9e +43144 48752 7189554989043896 src/qt/CMakeFiles/ui.dir/qt_machinestatus.cpp.obj 976cdc3ff7a8c2f0 +46538 49837 7189554999747169 src/qt/CMakeFiles/ui.dir/qt_settingsdisplay.cpp.obj 5dfe6996b6ceba28 +46358 49954 7189555001327580 src/qt/CMakeFiles/ui.dir/qt_settingsmachine.cpp.obj d6828a96a3f50038 +43298 50019 7189555001707597 src/qt/CMakeFiles/ui.dir/qt_hardwarerenderer.cpp.obj ef55d399bca70b9 +43158 50124 7189555002642938 src/qt/CMakeFiles/ui.dir/qt_mediamenu.cpp.obj faddec50b21f35c +46285 50148 7189555003158275 src/qt/CMakeFiles/ui.dir/qt_settings.cpp.obj 2b8aa020a1de6699 +44485 50438 7189555005838952 src/qt/CMakeFiles/ui.dir/qt_opengloptions.cpp.obj 89707b57e7699ff4 +44886 51199 7189555013801359 src/qt/CMakeFiles/ui.dir/qt_opengloptionsdialog.cpp.obj 7671abee855a03e9 +43539 51391 7189555015241860 src/qt/CMakeFiles/ui.dir/qt_openglrenderer.cpp.obj 3497cbff0d879054 +43165 52004 7189555021763570 src/qt/CMakeFiles/ui.dir/qt_rendererstack.cpp.obj 9dca3f2f500d52ae +48770 52328 7189555025134615 src/qt/CMakeFiles/ui.dir/qt_settingsinput.cpp.obj d5cf6a892a25a632 +42851 52673 7189555028321963 src/qt/CMakeFiles/ui.dir/ui_autogen/mocs_compilation.cpp.obj 975531412a95b01e +50039 53104 7189555032863157 src/qt/CMakeFiles/ui.dir/qt_settingsports.cpp.obj d4c396aebc81839f +49854 53167 7189555033520817 src/qt/CMakeFiles/ui.dir/qt_settingssound.cpp.obj 3365f0ea34316312 +50126 53265 7189555034556153 src/qt/CMakeFiles/ui.dir/qt_settingsstoragecontrollers.cpp.obj 7417ff5a489917ea +43130 53564 7189555037211963 src/qt/CMakeFiles/ui.dir/qt_mainwindow.cpp.obj b15ed35905510ae2 +49957 53727 7189555038944807 src/qt/CMakeFiles/ui.dir/qt_settingsnetwork.cpp.obj c8d42d78e7194b79 +50162 53732 7189555038974810 src/qt/CMakeFiles/ui.dir/qt_settingsharddisks.cpp.obj f40dd26a1d2c66c +50441 54155 7189555043066070 src/qt/CMakeFiles/ui.dir/qt_settingsfloppycdrom.cpp.obj 2c530be8061a025a +52006 54255 7189555044042511 src/qt/CMakeFiles/ui.dir/qt_settings_bus_tracking.cpp.obj 64bdc2d0bd8bdcca +51408 54472 7189555046613091 src/qt/CMakeFiles/ui.dir/qt_settingsotherperipherals.cpp.obj bde8e6a32c15b189 +51200 54846 7189555050305776 src/qt/CMakeFiles/ui.dir/qt_settingsotherremovable.cpp.obj 3fb94ff572a98241 +52675 55646 7189555058249555 src/qt/CMakeFiles/ui.dir/qt_joystickconfiguration.cpp.obj 2ffabf848ba4c14f +53728 55650 7189555058433823 src/qt/CMakeFiles/ui.dir/qt_models_common.cpp.obj 37d4559c32714bed +53565 55810 7189555060054383 src/qt/CMakeFiles/ui.dir/qt_harddrive_common.cpp.obj d3adc69900fa9848 +53105 55877 7189555060694397 src/qt/CMakeFiles/ui.dir/qt_filefield.cpp.obj aed51c9374028229 +53738 56726 7189555068964387 src/qt/CMakeFiles/ui.dir/qt_specifydimensions.cpp.obj 7d5606e942004f52 +54180 56731 7189555069104374 src/qt/CMakeFiles/ui.dir/qt_soundgain.cpp.obj 3237d789f92bacf6 +54259 56932 7189555071025000 src/qt/CMakeFiles/ui.dir/qt_styleoverride.cpp.obj 40c0e7ffc935e590 +53171 57163 7189555073635587 src/qt/CMakeFiles/ui.dir/qt_newfloppydialog.cpp.obj c9f0234c1498f209 +54847 57471 7189555076611572 src/qt/CMakeFiles/ui.dir/qt_util.cpp.obj d4c78806e4039e9d +55646 57822 7189555079837617 src/qt/CMakeFiles/ui.dir/qt_unixmanagerfilter.cpp.obj 574dc274f142fc41 +53267 57945 7189555081218016 src/qt/CMakeFiles/ui.dir/qt_harddiskdialog.cpp.obj 8bc3ce273dd5864c +52339 58231 7189555084206366 src/qt/CMakeFiles/ui.dir/qt_deviceconfig.cpp.obj 1d21c8b61d069023 +57471 58478 7189555086767088 src/qt/CMakeFiles/ui.dir/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp.obj 223360de2cd61799 +55878 58613 7189555088047554 src/qt/CMakeFiles/ui.dir/qt_mcadevicelist.cpp.obj 71b4fdd8b2e7ff11 +54472 58798 7189555089612732 src/qt/CMakeFiles/ui.dir/qt_progsettings.cpp.obj 13d92bdf2cebb729 +55650 58804 7189555089702760 src/qt/CMakeFiles/ui.dir/qt_vulkanwindowrenderer.cpp.obj 47331e3a393be80d +55811 59009 7189555091946146 src/qt/CMakeFiles/ui.dir/qt_vulkanrenderer.cpp.obj e08633f00b0b4ed2 +57823 59449 7189555096376917 src/qt/CMakeFiles/ui.dir/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp.obj 29b61d2eb96aab2c +56727 59652 7189555098415543 src/qt/CMakeFiles/ui.dir/qt_mediahistorymanager.cpp.obj 9d8b1fab2396b7bd +57165 60167 7189555103679003 src/qt/CMakeFiles/ui.dir/qt_winmanagerfilter.cpp.obj f60509e251cd1f69 +56732 60750 7189555109413955 src/qt/CMakeFiles/ui.dir/qt_d3d9renderer.cpp.obj f93e647432fad0d +56933 60925 7189555111174270 src/qt/CMakeFiles/ui.dir/qt_winrawinputfilter.cpp.obj 3216f2c6900b78a1 +60925 65051 7189555142985235 src/qt/libui.a 4e833f7a89a288a0 +65051 71521 7189555210279979 src/86Box.exe 8f88c2fa55921afb +35 335 7189558747097829 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +336 6807 7189558803455340 src/86Box.exe 8f88c2fa55921afb +35 329 7189560436009972 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +329 6704 7189560494656699 src/86Box.exe 8f88c2fa55921afb +39 220 7189563886209451 src/sound/CMakeFiles/snd.dir/midi.c.obj da264aabfd0e429f +36 232 7189564246715797 src/sound/CMakeFiles/snd.dir/sound.c.obj 656ab0f9ba8451f0 +34 734 7189564251721655 src/network/CMakeFiles/net.dir/network.c.obj e57ce942b0931fdf +734 7250 7189564308312284 src/86Box.exe 8f88c2fa55921afb +35 180 7189566084091664 src/video/CMakeFiles/vid.dir/vid_table.c.obj bd2b17c0126869fd +34 323 7189566085526790 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +324 6634 7189566139606676 src/86Box.exe 8f88c2fa55921afb +35 322 7189568414021303 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +323 6764 7189568470941456 src/86Box.exe 8f88c2fa55921afb +35 324 7189569986482729 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +324 6853 7189570043186620 src/86Box.exe 8f88c2fa55921afb +34 322 7189572476215440 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +323 6807 7189572532976710 src/86Box.exe 8f88c2fa55921afb +34 324 7189577194727088 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +324 6636 7189577248830728 src/86Box.exe 8f88c2fa55921afb +35 323 7189578367976498 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +324 6669 7189578427588485 src/86Box.exe 8f88c2fa55921afb +35 323 7189578893872105 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +324 6595 7189578947985575 src/86Box.exe 8f88c2fa55921afb +36 330 7189584061215141 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +331 6595 7189584119704768 src/86Box.exe 8f88c2fa55921afb +35 220 7189585163961468 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj e83d092df6fd5dad +220 6634 7189585220548986 src/86Box.exe 8f88c2fa55921afb +37 234 7189587073043209 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj e83d092df6fd5dad +35 727 7189587077909108 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj d06be07d9a2ab605 +728 7072 7189587132378782 src/86Box.exe 8f88c2fa55921afb +34 334 7189589809640316 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +36 722 7189589813466484 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj d06be07d9a2ab605 +722 7005 7189589867724957 src/86Box.exe 8f88c2fa55921afb +37 724 7189591870807578 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj d06be07d9a2ab605 +724 7120 7189591931179642 src/86Box.exe 8f88c2fa55921afb +35 725 7189592954989217 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj d06be07d9a2ab605 +725 7006 7189593009227308 src/86Box.exe 8f88c2fa55921afb +35 220 7189593842573063 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj e83d092df6fd5dad +220 6514 7189593896884301 src/86Box.exe 8f88c2fa55921afb +35 192 7189596713042568 src/device/CMakeFiles/dev.dir/pci_bridge.c.obj cf1f1496e31afc62 +37 219 7189596713312602 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj e83d092df6fd5dad +219 6676 7189596769904778 src/86Box.exe 8f88c2fa55921afb +34 297 7189598084678305 src/CMakeFiles/86Box.dir/pci.c.obj 3c5554c13073768d +297 6644 7189598142981834 src/86Box.exe 8f88c2fa55921afb +34 293 7189599116637198 src/CMakeFiles/86Box.dir/pci.c.obj 3c5554c13073768d +293 6589 7189599170547286 src/86Box.exe 8f88c2fa55921afb +35 304 7189606422351611 src/CMakeFiles/86Box.dir/pci.c.obj 3c5554c13073768d +37 413 7189606423416738 src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj 5ae00439ba700b0f +413 6733 7189606477992664 src/86Box.exe 8f88c2fa55921afb +35 404 7189608711806102 src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj 5ae00439ba700b0f +404 6624 7189608772624469 src/86Box.exe 8f88c2fa55921afb +39 232 7189612033792319 src/device/CMakeFiles/dev.dir/pci_bridge.c.obj cf1f1496e31afc62 +41 289 7189612034357533 src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj e83d092df6fd5dad +34 369 7189612035162584 src/CMakeFiles/86Box.dir/pci.c.obj 3c5554c13073768d +37 404 7189612035502591 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +38 476 7189612036227819 src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj 5ae00439ba700b0f +40 810 7189612039538490 src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj d06be07d9a2ab605 +42 824 7189612039718484 src/network/CMakeFiles/net.dir/network.c.obj e57ce942b0931fdf +824 7099 7189612093732024 src/86Box.exe 8f88c2fa55921afb +35 330 7189613757747795 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +37 405 7189613758497835 src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj 5ae00439ba700b0f +405 6668 7189613812540287 src/86Box.exe 8f88c2fa55921afb +36 622 7189615231187829 src/floppy/CMakeFiles/fdd.dir/fdc.c.obj c53f96fc68518749 +622 6898 7189615285418586 src/86Box.exe 8f88c2fa55921afb +34 577 7189616488633568 src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj 94e2c40c51438da9 +577 7129 7189616545606161 src/86Box.exe 8f88c2fa55921afb +34 136 7189617607518635 src/scsi/CMakeFiles/scsi.dir/scsi.c.obj 10ffa853dce3e10a +136 6559 7189617664448167 src/86Box.exe 8f88c2fa55921afb +34 320 7189618372246332 src/CMakeFiles/86Box.dir/device.c.obj 976b77da5ca9d797 +320 6723 7189618430889072 src/86Box.exe 8f88c2fa55921afb diff --git a/src/build64/CPackConfig.cmake b/src/build64/CPackConfig.cmake new file mode 100644 index 000000000..f20452aba --- /dev/null +++ b/src/build64/CPackConfig.cmake @@ -0,0 +1,75 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "K:/emu_dev/86Box_clean_ex_k;K:/emu_dev/86Box_clean_ex_k/src/build64") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "86Box built using CMake") +set(CPACK_GENERATOR "NSIS") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALL_CMAKE_PROJECTS "K:/emu_dev/86Box_clean_ex_k/src/build64;86Box;ALL;/") +set(CPACK_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "86Box 4.0.1") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") +set(CPACK_NSIS_PACKAGE_NAME "86Box 4.0.1") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "C:/msys64/mingw64/bin/objcopy.exe") +set(CPACK_OBJDUMP_EXECUTABLE "C:/msys64/mingw64/bin/objdump.exe") +set(CPACK_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build64/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Emulator of x86-based systems") +set(CPACK_PACKAGE_FILE_NAME "86Box-4.0.1-win64") +set(CPACK_PACKAGE_HOMEPAGE_URL "https://86box.net") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "86Box 4.0.1") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "86Box 4.0.1") +set(CPACK_PACKAGE_NAME "86Box") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "4.0.1") +set(CPACK_PACKAGE_VERSION_MAJOR "4") +set(CPACK_PACKAGE_VERSION_MINOR "0") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_READELF_EXECUTABLE "C:/msys64/mingw64/bin/readelf.exe") +set(CPACK_RESOURCE_FILE_LICENSE "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_SYSTEM_NAME "win64") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win64") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "K:/emu_dev/86Box_clean_ex_k/src/build64/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/src/build64/CPackSourceConfig.cmake b/src/build64/CPackSourceConfig.cmake new file mode 100644 index 000000000..1e9557faa --- /dev/null +++ b/src/build64/CPackSourceConfig.cmake @@ -0,0 +1,83 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "K:/emu_dev/86Box_clean_ex_k;K:/emu_dev/86Box_clean_ex_k/src/build64") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "86Box built using CMake") +set(CPACK_GENERATOR "7Z;ZIP") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALLED_DIRECTORIES "K:/emu_dev/86Box_clean_ex_k;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +set(CPACK_MODULE_PATH "") +set(CPACK_NSIS_DISPLAY_NAME "86Box 4.0.1") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") +set(CPACK_NSIS_PACKAGE_NAME "86Box 4.0.1") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "C:/msys64/mingw64/bin/objcopy.exe") +set(CPACK_OBJDUMP_EXECUTABLE "C:/msys64/mingw64/bin/objdump.exe") +set(CPACK_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build64/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Emulator of x86-based systems") +set(CPACK_PACKAGE_FILE_NAME "86Box-4.0.1-Source") +set(CPACK_PACKAGE_HOMEPAGE_URL "https://86box.net") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "86Box 4.0.1") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "86Box 4.0.1") +set(CPACK_PACKAGE_NAME "86Box") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "4.0.1") +set(CPACK_PACKAGE_VERSION_MAJOR "4") +set(CPACK_PACKAGE_VERSION_MINOR "0") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_READELF_EXECUTABLE "C:/msys64/mingw64/bin/readelf.exe") +set(CPACK_RESOURCE_FILE_LICENSE "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "C:/msys64/mingw64/share/cmake/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "K:/emu_dev/86Box_clean_ex_k;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "86Box-4.0.1-Source") +set(CPACK_SOURCE_TOPLEVEL_TAG "win64-Source") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "win64") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win64-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "K:/emu_dev/86Box_clean_ex_k/src/build64/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/src/build64/build.ninja b/src/build64/build.ninja new file mode 100644 index 000000000..606529401 --- /dev/null +++ b/src/build64/build.ninja @@ -0,0 +1,8880 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.27 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: 86Box +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = K$:/emu_dev/86Box_clean_ex_k/src/build64/ + +############################################# +# Utility command for package + +build CMakeFiles/package.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build package: phony CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build package_source: phony CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for EXECUTABLE target 86Box + + +############################################# +# Order-only phony target for 86Box + +build cmake_object_order_depends_target_86Box: phony || cmake_object_order_depends_target_cdrom cmake_object_order_depends_target_cgt cmake_object_order_depends_target_chipset cmake_object_order_depends_target_cpu cmake_object_order_depends_target_dev cmake_object_order_depends_target_dynarec cmake_object_order_depends_target_fdd cmake_object_order_depends_target_game cmake_object_order_depends_target_hdd cmake_object_order_depends_target_mch cmake_object_order_depends_target_mem cmake_object_order_depends_target_minivhd cmake_object_order_depends_target_mo cmake_object_order_depends_target_mt32emu cmake_object_order_depends_target_net cmake_object_order_depends_target_plat cmake_object_order_depends_target_print cmake_object_order_depends_target_resid-fp cmake_object_order_depends_target_scsi cmake_object_order_depends_target_sio cmake_object_order_depends_target_snd cmake_object_order_depends_target_softfloat cmake_object_order_depends_target_ui cmake_object_order_depends_target_vid cmake_object_order_depends_target_voodoo cmake_object_order_depends_target_ymfm cmake_object_order_depends_target_zip + +build src/CMakeFiles/86Box.dir/86box.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/86box.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\86box.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/config.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/config.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\config.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/log.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/log.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\log.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/random.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/random.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\random.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/timer.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/timer.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\timer.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/io.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/io.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\io.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/acpi.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/acpi.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\acpi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/apm.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/apm.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\apm.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/dma.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/dma.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\dma.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/ddma.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/ddma.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\ddma.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/nmi.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/nmi.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nmi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/pic.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/pic.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pic.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/pit.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/pit.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pit.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/pit_fast.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/pit_fast.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pit_fast.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/port_6x.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/port_6x.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\port_6x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/port_92.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/port_92.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\port_92.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/ppi.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/ppi.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\ppi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/pci.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/pci.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\pci.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/mca.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mca.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\mca.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/usb.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/usb.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\usb.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/fifo.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/fifo.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\fifo.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/fifo8.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/fifo8.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\fifo8.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/device.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\device.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/nvr.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/nvr.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nvr.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/nvr_at.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/nvr_at.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nvr_at.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/nvr_ps2.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/nvr_ps2.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\nvr_ps2.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/machine_status.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine_status.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\machine_status.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/ini.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/ini.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\ini.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/thread.cpp.obj: CXX_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/thread.cpp || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\thread.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/discord.c.obj: C_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/discord.c || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\discord.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + +build src/CMakeFiles/86Box.dir/win/86Box-qt.rc.obj: RC_COMPILER__86Box_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/win/86Box-qt.rc || cmake_object_order_depends_target_86Box + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\CMakeFiles\86Box.dir\win\86Box-qt.rc.obj.d + FLAGS = -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main + INCLUDES = -I K:/emu_dev/86Box_clean_ex_k/src/build64/src/include -I K:/emu_dev/86Box_clean_ex_k/src/include -I K:/emu_dev/86Box_clean_ex_k/src/cpu -I K:/emu_dev/86Box_clean_ex_k/src/codegen_new -I C:/msys64/mingw64/include/freetype2 -I C:/msys64/mingw64/include -I C:/msys64/mingw64/include/SDL2 -I C:/msys64/mingw64/include/slirp -I C:/msys64/mingw64/include/glib-2.0 -I C:/msys64/mingw64/lib/glib-2.0/include -I C:/msys64/mingw64/include/harfbuzz -I C:/msys64/mingw64/include/libpng16 -I C:/msys64/mingw64/include/rtmidi -I C:/msys64/mingw64/include/opus + OBJECT_DIR = src\CMakeFiles\86Box.dir + OBJECT_FILE_DIR = src\CMakeFiles\86Box.dir\win + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_PDB = src\86Box.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target 86Box + + +############################################# +# Link the executable src\86Box.exe + +build src/86Box.exe: CXX_EXECUTABLE_LINKER__86Box_Debug src/cpu/CMakeFiles/cpu.dir/cpu.c.obj src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj src/cpu/CMakeFiles/cpu.dir/fpu.c.obj src/cpu/CMakeFiles/cpu.dir/x86.c.obj src/cpu/CMakeFiles/cpu.dir/808x.c.obj src/cpu/CMakeFiles/cpu.dir/386.c.obj src/cpu/CMakeFiles/cpu.dir/386_common.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj src/cpu/CMakeFiles/cpu.dir/x87.c.obj src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj src/cpu/CMakeFiles/cpu.dir/8080.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj src/chipset/CMakeFiles/chipset.dir/82c100.c.obj src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj src/chipset/CMakeFiles/chipset.dir/headland.c.obj src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj src/chipset/CMakeFiles/chipset.dir/neat.c.obj src/chipset/CMakeFiles/chipset.dir/opti283.c.obj src/chipset/CMakeFiles/chipset.dir/opti291.c.obj src/chipset/CMakeFiles/chipset.dir/opti391.c.obj src/chipset/CMakeFiles/chipset.dir/opti495.c.obj src/chipset/CMakeFiles/chipset.dir/opti602.c.obj src/chipset/CMakeFiles/chipset.dir/opti822.c.obj src/chipset/CMakeFiles/chipset.dir/opti895.c.obj src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj src/chipset/CMakeFiles/chipset.dir/scamp.c.obj src/chipset/CMakeFiles/chipset.dir/scat.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj src/chipset/CMakeFiles/chipset.dir/gc100.c.obj src/chipset/CMakeFiles/chipset.dir/stpc.c.obj src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj src/machine/CMakeFiles/mch.dir/machine.c.obj src/machine/CMakeFiles/mch.dir/machine_table.c.obj src/machine/CMakeFiles/mch.dir/m_xt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj src/machine/CMakeFiles/mch.dir/m_europc.c.obj src/machine/CMakeFiles/mch.dir/m_elt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj src/machine/CMakeFiles/mch.dir/m_tandy.c.obj src/machine/CMakeFiles/mch.dir/m_v86p.c.obj src/machine/CMakeFiles/mch.dir/m_at.c.obj src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj src/machine/CMakeFiles/mch.dir/m_ps1.c.obj src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj src/device/CMakeFiles/dev.dir/bugger.c.obj src/device/CMakeFiles/dev.dir/cassette.c.obj src/device/CMakeFiles/dev.dir/cartridge.c.obj src/device/CMakeFiles/dev.dir/hasp.c.obj src/device/CMakeFiles/dev.dir/hwm.c.obj src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj src/device/CMakeFiles/dev.dir/ibm_5161.c.obj src/device/CMakeFiles/dev.dir/isamem.c.obj src/device/CMakeFiles/dev.dir/isartc.c.obj src/device/CMakeFiles/dev.dir/__/lpt.c.obj src/device/CMakeFiles/dev.dir/pci_bridge.c.obj src/device/CMakeFiles/dev.dir/postcard.c.obj src/device/CMakeFiles/dev.dir/serial.c.obj src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj src/device/CMakeFiles/dev.dir/isapnp.c.obj src/device/CMakeFiles/dev.dir/i2c.c.obj src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj src/device/CMakeFiles/dev.dir/keyboard.c.obj src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj src/device/CMakeFiles/dev.dir/kbc_at.c.obj src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj src/device/CMakeFiles/dev.dir/keyboard_at.c.obj src/device/CMakeFiles/dev.dir/mouse.c.obj src/device/CMakeFiles/dev.dir/mouse_bus.c.obj src/device/CMakeFiles/dev.dir/mouse_serial.c.obj src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj src/mem/CMakeFiles/mem.dir/intel_flash.c.obj src/mem/CMakeFiles/mem.dir/mem.c.obj src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj src/mem/CMakeFiles/mem.dir/rom.c.obj src/mem/CMakeFiles/mem.dir/row.c.obj src/mem/CMakeFiles/mem.dir/smram.c.obj src/mem/CMakeFiles/mem.dir/spd.c.obj src/mem/CMakeFiles/mem.dir/sst_flash.c.obj src/floppy/CMakeFiles/fdd.dir/fdd.c.obj src/floppy/CMakeFiles/fdd.dir/fdc.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj src/game/CMakeFiles/game.dir/gameport.c.obj src/game/CMakeFiles/game.dir/joystick_standard.c.obj src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj src/disk/CMakeFiles/zip.dir/zip.c.obj src/disk/CMakeFiles/mo.dir/mo.c.obj src/disk/CMakeFiles/hdd.dir/hdd.c.obj src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj src/disk/CMakeFiles/hdd.dir/hdc.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj src/network/CMakeFiles/net.dir/network.c.obj src/network/CMakeFiles/net.dir/net_pcap.c.obj src/network/CMakeFiles/net.dir/net_slirp.c.obj src/network/CMakeFiles/net.dir/net_dp8390.c.obj src/network/CMakeFiles/net.dir/net_3c501.c.obj src/network/CMakeFiles/net.dir/net_3c503.c.obj src/network/CMakeFiles/net.dir/net_ne2000.c.obj src/network/CMakeFiles/net.dir/net_pcnet.c.obj src/network/CMakeFiles/net.dir/net_wd8003.c.obj src/network/CMakeFiles/net.dir/net_plip.c.obj src/network/CMakeFiles/net.dir/net_event.c.obj src/network/CMakeFiles/net.dir/net_null.c.obj src/printer/CMakeFiles/print.dir/png.c.obj src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj src/printer/CMakeFiles/print.dir/prt_escp.c.obj src/printer/CMakeFiles/print.dir/prt_text.c.obj src/printer/CMakeFiles/print.dir/prt_ps.c.obj src/scsi/CMakeFiles/scsi.dir/scsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj src/sio/CMakeFiles/sio.dir/sio_detect.c.obj src/sound/CMakeFiles/snd.dir/sound.c.obj src/sound/CMakeFiles/snd.dir/snd_opl.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj src/sound/CMakeFiles/snd.dir/midi.c.obj src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj src/sound/CMakeFiles/snd.dir/snd_cms.c.obj src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj src/sound/CMakeFiles/snd.dir/snd_gus.c.obj src/sound/CMakeFiles/snd.dir/snd_sb.c.obj src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj src/sound/CMakeFiles/snd.dir/snd_wss.c.obj src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj src/sound/CMakeFiles/snd.dir/xaudio2.c.obj src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj src/video/CMakeFiles/vid.dir/agpgart.c.obj src/video/CMakeFiles/vid.dir/video.c.obj src/video/CMakeFiles/vid.dir/vid_table.c.obj src/video/CMakeFiles/vid.dir/vid_cga.c.obj src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj src/video/CMakeFiles/vid.dir/vid_mda.c.obj src/video/CMakeFiles/vid.dir/vid_hercules.c.obj src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj src/video/CMakeFiles/vid.dir/vid_incolor.c.obj src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj src/video/CMakeFiles/vid.dir/vid_genius.c.obj src/video/CMakeFiles/vid.dir/vid_pgc.c.obj src/video/CMakeFiles/vid.dir/vid_im1024.c.obj src/video/CMakeFiles/vid.dir/vid_sigma.c.obj src/video/CMakeFiles/vid.dir/vid_wy700.c.obj src/video/CMakeFiles/vid.dir/vid_ega.c.obj src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj src/video/CMakeFiles/vid.dir/vid_svga.c.obj src/video/CMakeFiles/vid.dir/vid_8514a.c.obj src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj src/video/CMakeFiles/vid.dir/vid_ddc.c.obj src/video/CMakeFiles/vid.dir/vid_vga.c.obj src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_av9194.c.obj src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj src/video/CMakeFiles/vid.dir/vid_et3000.c.obj src/video/CMakeFiles/vid.dir/vid_et4000.c.obj src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ht216.c.obj src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj src/video/CMakeFiles/vid.dir/vid_paradise.c.obj src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj src/video/CMakeFiles/vid.dir/vid_tvga.c.obj src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_s3.c.obj src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ogc.c.obj src/video/CMakeFiles/vid.dir/vid_nga.c.obj src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_xga.c.obj src/video/CMakeFiles/vid.dir/vid_mga.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops_sse.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_uops.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj src/CMakeFiles/86Box.dir/86box.c.obj src/CMakeFiles/86Box.dir/config.c.obj src/CMakeFiles/86Box.dir/log.c.obj src/CMakeFiles/86Box.dir/random.c.obj src/CMakeFiles/86Box.dir/timer.c.obj src/CMakeFiles/86Box.dir/io.c.obj src/CMakeFiles/86Box.dir/acpi.c.obj src/CMakeFiles/86Box.dir/apm.c.obj src/CMakeFiles/86Box.dir/dma.c.obj src/CMakeFiles/86Box.dir/ddma.c.obj src/CMakeFiles/86Box.dir/nmi.c.obj src/CMakeFiles/86Box.dir/pic.c.obj src/CMakeFiles/86Box.dir/pit.c.obj src/CMakeFiles/86Box.dir/pit_fast.c.obj src/CMakeFiles/86Box.dir/port_6x.c.obj src/CMakeFiles/86Box.dir/port_92.c.obj src/CMakeFiles/86Box.dir/ppi.c.obj src/CMakeFiles/86Box.dir/pci.c.obj src/CMakeFiles/86Box.dir/mca.c.obj src/CMakeFiles/86Box.dir/usb.c.obj src/CMakeFiles/86Box.dir/fifo.c.obj src/CMakeFiles/86Box.dir/fifo8.c.obj src/CMakeFiles/86Box.dir/device.c.obj src/CMakeFiles/86Box.dir/nvr.c.obj src/CMakeFiles/86Box.dir/nvr_at.c.obj src/CMakeFiles/86Box.dir/nvr_ps2.c.obj src/CMakeFiles/86Box.dir/machine_status.c.obj src/CMakeFiles/86Box.dir/ini.c.obj src/CMakeFiles/86Box.dir/thread.cpp.obj src/CMakeFiles/86Box.dir/discord.c.obj src/CMakeFiles/86Box.dir/win/86Box-qt.rc.obj | src/qt/libplat.a src/qt/libui.a C$:/msys64/mingw64/lib/libSDL2.a C$:/msys64/mingw64/lib/libpng.a src/disk/minivhd/libminivhd.a src/sound/munt/libmt32emu.a src/sound/ymfm/libymfm.a src/sound/resid-fp/libresid-fp.a C$:/msys64/mingw64/lib/libQt5Network.dll.a C$:/msys64/mingw64/lib/libQt5OpenGL.dll.a C$:/msys64/mingw64/lib/libQt5Widgets.dll.a C$:/msys64/mingw64/lib/libQt5Gui.dll.a C$:/msys64/mingw64/lib/libQt5Core.dll.a C$:/msys64/mingw64/lib/libz.a C$:/msys64/mingw64/lib/libslirp.a C$:/msys64/mingw64/lib/libglib-2.0.a C$:/msys64/mingw64/lib/libintl.a C$:/msys64/mingw64/lib/libfreetype.a C$:/msys64/mingw64/lib/librtmidi.a C$:/msys64/mingw64/lib/libfluidsynth.a || src/cdrom/cdrom src/chipset/chipset src/codegen_new/dynarec src/cpu/cgt src/cpu/cpu src/cpu/softfloat/softfloat src/device/dev src/disk/hdd src/disk/minivhd/libminivhd.a src/disk/mo src/disk/zip src/floppy/fdd src/game/game src/machine/mch src/mem/mem src/network/net src/printer/print src/qt/libplat.a src/qt/libui.a src/scsi/scsi src/sio/sio src/sound/munt/libmt32emu.a src/sound/resid-fp/libresid-fp.a src/sound/snd src/sound/ymfm/libymfm.a src/video/vid src/video/voodoo + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og + LINK_FLAGS = -static -Wl,--allow-multiple-definition + LINK_LIBRARIES = src/qt/libplat.a src/qt/libui.a C:/msys64/mingw64/lib/libSDL2.a C:/msys64/mingw64/lib/libpng.a -latomic src/disk/minivhd/libminivhd.a -lws2_32 -static -lbz2 -lpcre2-8 -lbrotlidec -lbrotlicommon -lharfbuzz -lm -lusp10 -lgdi32 -lrpcrt4 -lfreetype -lbz2 -lglib-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -luuid -lm -lgraphite2 -lpng16 -lz -static -lfluidsynth -ldsound -lksuser -lwinmm -lole32 -lws2_32 -lm -lgmodule-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -luuid -lm -lreadline -ltermcap -lmingw32 -lSDL2main -lSDL2 -lmingw32 -lSDL2main -lSDL2 -lm -lkernel32 -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lversion -luuid -ladvapi32 -lsetupapi -lshell32 -ldinput8 -lportaudio -lsndfile -lmp3lame -lFLAC -lm -logg -lvorbis -lm -lvorbisenc -lopus -lm -lmpg123 -lm -lshlwapi -lgthread-2.0 -lglib-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -luuid -lm -lpcre2-8 -fopenmp src/sound/munt/libmt32emu.a src/sound/ymfm/libymfm.a src/sound/resid-fp/libresid-fp.a -lhid -ld3d9 C:/msys64/mingw64/lib/libQt5Network.dll.a C:/msys64/mingw64/lib/libQt5OpenGL.dll.a C:/msys64/mingw64/lib/libQt5Widgets.dll.a C:/msys64/mingw64/lib/libQt5Gui.dll.a C:/msys64/mingw64/lib/libQt5Core.dll.a C:/msys64/mingw64/lib/libz.a -lbz2 -lbrotlidec -lbrotlicommon -lharfbuzz -lusp10 -lrpcrt4 -lfreetype -lgraphite2 -lpng16 -lz -lfluidsynth -ldsound -lksuser -lgmodule-2.0 -lreadline -ltermcap -lmingw32 -lSDL2main -lSDL2 -lportaudio -lsndfile -lmp3lame -lFLAC -logg -lvorbis -lvorbisenc -lopus -lmpg123 -lgthread-2.0 -lm -lkernel32 -luser32 -lgdi32 -limm32 -lole32 -loleaut32 -lversion -luuid -ladvapi32 -lsetupapi -lshell32 -ldinput8 -lhid -ld3d9 C:/msys64/mingw64/lib/libslirp.a C:/msys64/mingw64/lib/libglib-2.0.a C:/msys64/mingw64/lib/libintl.a -lwsock32 -lws2_32 -liphlpapi -liconv C:/msys64/mingw64/lib/libfreetype.a C:/msys64/mingw64/lib/librtmidi.a -lwinmm C:/msys64/mingw64/lib/libfluidsynth.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = src\CMakeFiles\86Box.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\CMakeFiles\86Box.dir\ + TARGET_FILE = src\86Box.exe + TARGET_IMPLIB = src\lib86Box.dll.a + TARGET_PDB = src\86Box.pdb + RSP_FILE = CMakeFiles\86Box.rsp + + +############################################# +# Utility command for package + +build src/CMakeFiles/package.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/package: phony src/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/package_source: phony src/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/edit_cache: phony src/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/rebuild_cache: phony src/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/list_install_components: phony + + +############################################# +# Utility command for install + +build src/CMakeFiles/install.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/install: phony src/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/CMakeFiles/install/local.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/install/local: phony src/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/install/strip: phony src/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target cdrom + + +############################################# +# Order-only phony target for cdrom + +build cmake_object_order_depends_target_cdrom: phony || src/cdrom/CMakeFiles/cdrom.dir + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj: C_COMPILER__cdrom_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + TARGET_COMPILE_PDB = src\cdrom\CMakeFiles\cdrom.dir\ + TARGET_PDB = "" + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj: C_COMPILER__cdrom_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_image_backend.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_image_backend.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + TARGET_COMPILE_PDB = src\cdrom\CMakeFiles\cdrom.dir\ + TARGET_PDB = "" + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj: C_COMPILER__cdrom_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_image_viso.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_image_viso.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + TARGET_COMPILE_PDB = src\cdrom\CMakeFiles\cdrom.dir\ + TARGET_PDB = "" + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj: C_COMPILER__cdrom_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_image.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_image.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + TARGET_COMPILE_PDB = src\cdrom\CMakeFiles\cdrom.dir\ + TARGET_PDB = "" + +build src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj: C_COMPILER__cdrom_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cdrom/cdrom_mitsumi.c || cmake_object_order_depends_target_cdrom + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cdrom\CMakeFiles\cdrom.dir\cdrom_mitsumi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cdrom\CMakeFiles\cdrom.dir + OBJECT_FILE_DIR = src\cdrom\CMakeFiles\cdrom.dir + TARGET_COMPILE_PDB = src\cdrom\CMakeFiles\cdrom.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library cdrom + +build src/cdrom/cdrom: phony src/cdrom/CMakeFiles/cdrom.dir/cdrom.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_backend.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image_viso.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_image.c.obj src/cdrom/CMakeFiles/cdrom.dir/cdrom_mitsumi.c.obj + + +############################################# +# Utility command for package + +build src/cdrom/CMakeFiles/package.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/cdrom/package: phony src/cdrom/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/cdrom/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/cdrom/package_source: phony src/cdrom/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/cdrom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cdrom && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/cdrom/edit_cache: phony src/cdrom/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/cdrom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cdrom && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/cdrom/rebuild_cache: phony src/cdrom/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/cdrom/list_install_components: phony + + +############################################# +# Utility command for install + +build src/cdrom/CMakeFiles/install.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cdrom && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/cdrom/install: phony src/cdrom/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/cdrom/CMakeFiles/install/local.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cdrom && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/cdrom/install/local: phony src/cdrom/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/cdrom/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/cdrom/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cdrom && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/cdrom/install/strip: phony src/cdrom/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target chipset + + +############################################# +# Order-only phony target for chipset + +build cmake_object_order_depends_target_chipset: phony || src/chipset/CMakeFiles/chipset.dir + +build src/chipset/CMakeFiles/chipset.dir/82c100.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/82c100.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\82c100.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/acc2168.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\acc2168.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/cs8230.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\cs8230.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1429.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1429.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1435.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1435.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1489.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1489.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1531.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1531.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1541.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1541.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1543.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1543.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali1621.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali1621.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ali6117.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ali6117.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/headland.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/headland.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\headland.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/ims8848.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\ims8848.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_82335.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_82335.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/compaq_386.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\compaq_386.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/contaq_82c59x.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\contaq_82c59x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/cs4031.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\cs4031.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_420ex.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_420ex.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_4x0.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_4x0.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_i450kx.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_i450kx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_sio.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_sio.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/intel_piix.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\intel_piix.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/ioapic.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\__\ioapic.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir\__ + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/neat.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/neat.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\neat.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti283.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti283.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti283.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti291.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti291.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti291.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti391.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti391.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti391.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti495.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti495.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti495.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti602.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti602.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti602.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti822.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti822.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti822.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti895.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti895.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti895.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/opti5x7.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\opti5x7.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/scamp.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/scamp.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\scamp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/scat.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/scat.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\scat.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c310.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c310.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c4xx.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c4xx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c496.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c496.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_85c50x.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_85c50x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_5511.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_5511.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/sis_5571.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\sis_5571.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_vt82c49x.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_vt82c49x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_vt82c505.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_vt82c505.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/gc100.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/gc100.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\gc100.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/stpc.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/stpc.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\stpc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/umc_8886.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\umc_8886.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/umc_hb4.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\umc_hb4.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_apollo.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_apollo.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/via_pipc.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\via_pipc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/vl82c480.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\vl82c480.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/wd76c10.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\wd76c10.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + +build src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj: C_COMPILER__chipset_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/chipset/olivetti_eva.c || cmake_object_order_depends_target_chipset + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\chipset\CMakeFiles\chipset.dir\olivetti_eva.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\chipset\CMakeFiles\chipset.dir + OBJECT_FILE_DIR = src\chipset\CMakeFiles\chipset.dir + TARGET_COMPILE_PDB = src\chipset\CMakeFiles\chipset.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library chipset + +build src/chipset/chipset: phony src/chipset/CMakeFiles/chipset.dir/82c100.c.obj src/chipset/CMakeFiles/chipset.dir/acc2168.c.obj src/chipset/CMakeFiles/chipset.dir/cs8230.c.obj src/chipset/CMakeFiles/chipset.dir/ali1429.c.obj src/chipset/CMakeFiles/chipset.dir/ali1435.c.obj src/chipset/CMakeFiles/chipset.dir/ali1489.c.obj src/chipset/CMakeFiles/chipset.dir/ali1531.c.obj src/chipset/CMakeFiles/chipset.dir/ali1541.c.obj src/chipset/CMakeFiles/chipset.dir/ali1543.c.obj src/chipset/CMakeFiles/chipset.dir/ali1621.c.obj src/chipset/CMakeFiles/chipset.dir/ali6117.c.obj src/chipset/CMakeFiles/chipset.dir/headland.c.obj src/chipset/CMakeFiles/chipset.dir/ims8848.c.obj src/chipset/CMakeFiles/chipset.dir/intel_82335.c.obj src/chipset/CMakeFiles/chipset.dir/compaq_386.c.obj src/chipset/CMakeFiles/chipset.dir/contaq_82c59x.c.obj src/chipset/CMakeFiles/chipset.dir/cs4031.c.obj src/chipset/CMakeFiles/chipset.dir/intel_420ex.c.obj src/chipset/CMakeFiles/chipset.dir/intel_4x0.c.obj src/chipset/CMakeFiles/chipset.dir/intel_i450kx.c.obj src/chipset/CMakeFiles/chipset.dir/intel_sio.c.obj src/chipset/CMakeFiles/chipset.dir/intel_piix.c.obj src/chipset/CMakeFiles/chipset.dir/__/ioapic.c.obj src/chipset/CMakeFiles/chipset.dir/neat.c.obj src/chipset/CMakeFiles/chipset.dir/opti283.c.obj src/chipset/CMakeFiles/chipset.dir/opti291.c.obj src/chipset/CMakeFiles/chipset.dir/opti391.c.obj src/chipset/CMakeFiles/chipset.dir/opti495.c.obj src/chipset/CMakeFiles/chipset.dir/opti602.c.obj src/chipset/CMakeFiles/chipset.dir/opti822.c.obj src/chipset/CMakeFiles/chipset.dir/opti895.c.obj src/chipset/CMakeFiles/chipset.dir/opti5x7.c.obj src/chipset/CMakeFiles/chipset.dir/scamp.c.obj src/chipset/CMakeFiles/chipset.dir/scat.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c310.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c4xx.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c496.c.obj src/chipset/CMakeFiles/chipset.dir/sis_85c50x.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5511.c.obj src/chipset/CMakeFiles/chipset.dir/sis_5571.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c49x.c.obj src/chipset/CMakeFiles/chipset.dir/via_vt82c505.c.obj src/chipset/CMakeFiles/chipset.dir/gc100.c.obj src/chipset/CMakeFiles/chipset.dir/stpc.c.obj src/chipset/CMakeFiles/chipset.dir/umc_8886.c.obj src/chipset/CMakeFiles/chipset.dir/umc_hb4.c.obj src/chipset/CMakeFiles/chipset.dir/via_apollo.c.obj src/chipset/CMakeFiles/chipset.dir/via_pipc.c.obj src/chipset/CMakeFiles/chipset.dir/vl82c480.c.obj src/chipset/CMakeFiles/chipset.dir/wd76c10.c.obj src/chipset/CMakeFiles/chipset.dir/olivetti_eva.c.obj + + +############################################# +# Utility command for package + +build src/chipset/CMakeFiles/package.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/chipset/package: phony src/chipset/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/chipset/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/chipset/package_source: phony src/chipset/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/chipset/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\chipset && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/chipset/edit_cache: phony src/chipset/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/chipset/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\chipset && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/chipset/rebuild_cache: phony src/chipset/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/chipset/list_install_components: phony + + +############################################# +# Utility command for install + +build src/chipset/CMakeFiles/install.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\chipset && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/chipset/install: phony src/chipset/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/chipset/CMakeFiles/install/local.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\chipset && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/chipset/install/local: phony src/chipset/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/chipset/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/chipset/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\chipset && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/chipset/install/strip: phony src/chipset/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target cpu + + +############################################# +# Order-only phony target for cpu + +build cmake_object_order_depends_target_cpu: phony || src/cpu/CMakeFiles/cpu.dir + +build src/cpu/CMakeFiles/cpu.dir/cpu.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/cpu.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\cpu.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/cpu_table.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\cpu_table.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/fpu.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/fpu.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\fpu.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x86.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/808x.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/808x.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\808x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/386.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/386.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/386_common.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/386_common.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386_common.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/386_dynarec.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386_dynarec.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86_ops_mmx.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86_ops_mmx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86seg_common.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86seg_common.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86seg.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86seg.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x86seg_2386.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x86seg_2386.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x87.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x87.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x87.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/x87_timings.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\x87_timings.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/8080.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/8080.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\8080.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj: C_COMPILER__cpu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/386_dynarec_ops.c || cmake_object_order_depends_target_cpu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cpu.dir\386_dynarec_ops.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cpu.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cpu.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cpu.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library cpu + +build src/cpu/cpu: phony src/cpu/CMakeFiles/cpu.dir/cpu.c.obj src/cpu/CMakeFiles/cpu.dir/cpu_table.c.obj src/cpu/CMakeFiles/cpu.dir/fpu.c.obj src/cpu/CMakeFiles/cpu.dir/x86.c.obj src/cpu/CMakeFiles/cpu.dir/808x.c.obj src/cpu/CMakeFiles/cpu.dir/386.c.obj src/cpu/CMakeFiles/cpu.dir/386_common.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec.c.obj src/cpu/CMakeFiles/cpu.dir/x86_ops_mmx.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_common.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg.c.obj src/cpu/CMakeFiles/cpu.dir/x86seg_2386.c.obj src/cpu/CMakeFiles/cpu.dir/x87.c.obj src/cpu/CMakeFiles/cpu.dir/x87_timings.c.obj src/cpu/CMakeFiles/cpu.dir/8080.c.obj src/cpu/CMakeFiles/cpu.dir/386_dynarec_ops.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target cgt + + +############################################# +# Order-only phony target for cgt + +build cmake_object_order_depends_target_cgt: phony || src/cpu/CMakeFiles/cgt.dir + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_486.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_486.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_686.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_686.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_common.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_common.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_k6.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_k6.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_pentium.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_pentium.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_p6.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_p6.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_winchip.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_winchip.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + +build src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj: C_COMPILER__cgt_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/codegen_timing_winchip2.c || cmake_object_order_depends_target_cgt + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\CMakeFiles\cgt.dir\codegen_timing_winchip2.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\CMakeFiles\cgt.dir + OBJECT_FILE_DIR = src\cpu\CMakeFiles\cgt.dir + TARGET_COMPILE_PDB = src\cpu\CMakeFiles\cgt.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library cgt + +build src/cpu/cgt: phony src/cpu/CMakeFiles/cgt.dir/codegen_timing_486.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_686.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_common.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_k6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_pentium.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_p6.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip.c.obj src/cpu/CMakeFiles/cgt.dir/codegen_timing_winchip2.c.obj + + +############################################# +# Utility command for package + +build src/cpu/CMakeFiles/package.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/cpu/package: phony src/cpu/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/cpu/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/cpu/package_source: phony src/cpu/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/cpu/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/cpu/edit_cache: phony src/cpu/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/cpu/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/cpu/rebuild_cache: phony src/cpu/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/cpu/list_install_components: phony + + +############################################# +# Utility command for install + +build src/cpu/CMakeFiles/install.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/cpu/install: phony src/cpu/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/cpu/CMakeFiles/install/local.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/cpu/install/local: phony src/cpu/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/cpu/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/cpu/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/cpu/install/strip: phony src/cpu/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/cpu/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target softfloat + + +############################################# +# Order-only phony target for softfloat + +build cmake_object_order_depends_target_softfloat: phony || src/cpu/softfloat/CMakeFiles/softfloat.dir + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/f2xm1.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\f2xm1.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fpatan.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fpatan.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fprem.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fprem.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fsincos.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fsincos.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/fyl2x.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\fyl2x.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat_poly.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat_poly.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat16.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat16.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat-muladd.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat-muladd.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat-round-pack.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat-round-pack.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloat-specialize.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloat-specialize.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + +build src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj: CXX_COMPILER__softfloat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/softfloatx80.cc || cmake_object_order_depends_target_softfloat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\cpu\softfloat\CMakeFiles\softfloat.dir\softfloatx80.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + OBJECT_FILE_DIR = src\cpu\softfloat\CMakeFiles\softfloat.dir + TARGET_COMPILE_PDB = src\cpu\softfloat\CMakeFiles\softfloat.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library softfloat + +build src/cpu/softfloat/softfloat: phony src/cpu/softfloat/CMakeFiles/softfloat.dir/f2xm1.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fpatan.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fprem.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fsincos.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/fyl2x.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat_poly.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat16.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-muladd.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-round-pack.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloat-specialize.cc.obj src/cpu/softfloat/CMakeFiles/softfloat.dir/softfloatx80.cc.obj + + +############################################# +# Utility command for package + +build src/cpu/softfloat/CMakeFiles/package.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/cpu/softfloat/package: phony src/cpu/softfloat/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/cpu/softfloat/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/cpu/softfloat/package_source: phony src/cpu/softfloat/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/cpu/softfloat/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu\softfloat && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/cpu/softfloat/edit_cache: phony src/cpu/softfloat/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/cpu/softfloat/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu\softfloat && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/cpu/softfloat/rebuild_cache: phony src/cpu/softfloat/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/cpu/softfloat/list_install_components: phony + + +############################################# +# Utility command for install + +build src/cpu/softfloat/CMakeFiles/install.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu\softfloat && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/cpu/softfloat/install: phony src/cpu/softfloat/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/cpu/softfloat/CMakeFiles/install/local.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu\softfloat && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/cpu/softfloat/install/local: phony src/cpu/softfloat/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/cpu/softfloat/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/cpu/softfloat/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\cpu\softfloat && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/cpu/softfloat/install/strip: phony src/cpu/softfloat/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target dynarec + + +############################################# +# Order-only phony target for dynarec + +build cmake_object_order_depends_target_dynarec: phony || src/codegen_new/CMakeFiles/dynarec.dir + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_accumulate.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_accumulate.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_allocator.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_allocator.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_block.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_block.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ir.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ir.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_3dnow.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_3dnow.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_branch.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_branch.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_arith.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_arith.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_arith.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_arith.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_constant.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_constant.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_loadstore.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_loadstore.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_fpu_misc.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_fpu_misc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_helpers.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_helpers.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_jump.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_jump.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_logic.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_logic.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_misc.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_misc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_arith.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_arith.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_cmp.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_cmp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_loadstore.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_loadstore.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_logic.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_logic.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_pack.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_pack.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mmx_shift.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mmx_shift.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_mov.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_mov.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_shift.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_shift.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_ops_stack.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_ops_stack.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_reg.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_reg.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86-64.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86-64.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86-64_ops.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86-64_ops.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops_sse.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86-64_ops_sse.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86-64_ops_sse.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + +build src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_uops.c.obj: C_COMPILER__dynarec_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/codegen_backend_x86-64_uops.c || cmake_object_order_depends_target_dynarec + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\codegen_new\CMakeFiles\dynarec.dir\codegen_backend_x86-64_uops.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\codegen_new\CMakeFiles\dynarec.dir + OBJECT_FILE_DIR = src\codegen_new\CMakeFiles\dynarec.dir + TARGET_COMPILE_PDB = src\codegen_new\CMakeFiles\dynarec.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library dynarec + +build src/codegen_new/dynarec: phony src/codegen_new/CMakeFiles/dynarec.dir/codegen.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_accumulate.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_allocator.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_block.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ir.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_3dnow.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_branch.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_constant.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_fpu_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_helpers.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_jump.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_misc.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_arith.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_cmp.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_loadstore.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_logic.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_pack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mmx_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_mov.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_shift.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_ops_stack.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_reg.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_ops_sse.c.obj src/codegen_new/CMakeFiles/dynarec.dir/codegen_backend_x86-64_uops.c.obj + + +############################################# +# Utility command for package + +build src/codegen_new/CMakeFiles/package.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/codegen_new/package: phony src/codegen_new/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/codegen_new/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/codegen_new/package_source: phony src/codegen_new/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/codegen_new/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\codegen_new && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/codegen_new/edit_cache: phony src/codegen_new/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/codegen_new/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\codegen_new && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/codegen_new/rebuild_cache: phony src/codegen_new/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/codegen_new/list_install_components: phony + + +############################################# +# Utility command for install + +build src/codegen_new/CMakeFiles/install.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\codegen_new && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/codegen_new/install: phony src/codegen_new/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/codegen_new/CMakeFiles/install/local.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\codegen_new && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/codegen_new/install/local: phony src/codegen_new/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/codegen_new/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/codegen_new/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\codegen_new && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/codegen_new/install/strip: phony src/codegen_new/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target dev + + +############################################# +# Order-only phony target for dev + +build cmake_object_order_depends_target_dev: phony || src/device/CMakeFiles/dev.dir + +build src/device/CMakeFiles/dev.dir/bugger.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/bugger.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\bugger.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/cassette.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/cassette.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\cassette.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/cartridge.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/cartridge.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\cartridge.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/hasp.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/hasp.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hasp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/hwm.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/hwm.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_lm75.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_lm75.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_lm78.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_lm78.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_gl518sm.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_gl518sm.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/hwm_vt82c686.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\hwm_vt82c686.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/ibm_5161.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/ibm_5161.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\ibm_5161.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/isamem.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/isamem.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\isamem.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/isartc.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/isartc.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\isartc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/__/lpt.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/lpt.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\__\lpt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir\__ + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/pci_bridge.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/pci_bridge.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\pci_bridge.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/postcard.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/postcard.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\postcard.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/serial.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/serial.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\serial.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/clock_ics9xxx.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\clock_ics9xxx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/isapnp.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/isapnp.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\isapnp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/i2c.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/i2c.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\i2c.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/i2c_gpio.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\i2c_gpio.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/smbus_piix4.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\smbus_piix4.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/smbus_ali7101.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\smbus_ali7101.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/keyboard.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/keyboard.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\keyboard.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/keyboard_xt.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\keyboard_xt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/kbc_at.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/kbc_at.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\kbc_at.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/kbc_at_dev.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\kbc_at_dev.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/keyboard_at.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/keyboard_at.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\keyboard_at.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/mouse.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/mouse.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/mouse_bus.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/mouse_bus.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse_bus.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/mouse_serial.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/mouse_serial.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse_serial.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/mouse_ps2.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\mouse_ps2.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/phoenix_486_jumper.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\phoenix_486_jumper.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + +build src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj: C_COMPILER__dev_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/device/serial_passthrough.c || cmake_object_order_depends_target_dev + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\device\CMakeFiles\dev.dir\serial_passthrough.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\device\CMakeFiles\dev.dir + OBJECT_FILE_DIR = src\device\CMakeFiles\dev.dir + TARGET_COMPILE_PDB = src\device\CMakeFiles\dev.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library dev + +build src/device/dev: phony src/device/CMakeFiles/dev.dir/bugger.c.obj src/device/CMakeFiles/dev.dir/cassette.c.obj src/device/CMakeFiles/dev.dir/cartridge.c.obj src/device/CMakeFiles/dev.dir/hasp.c.obj src/device/CMakeFiles/dev.dir/hwm.c.obj src/device/CMakeFiles/dev.dir/hwm_lm75.c.obj src/device/CMakeFiles/dev.dir/hwm_lm78.c.obj src/device/CMakeFiles/dev.dir/hwm_gl518sm.c.obj src/device/CMakeFiles/dev.dir/hwm_vt82c686.c.obj src/device/CMakeFiles/dev.dir/ibm_5161.c.obj src/device/CMakeFiles/dev.dir/isamem.c.obj src/device/CMakeFiles/dev.dir/isartc.c.obj src/device/CMakeFiles/dev.dir/__/lpt.c.obj src/device/CMakeFiles/dev.dir/pci_bridge.c.obj src/device/CMakeFiles/dev.dir/postcard.c.obj src/device/CMakeFiles/dev.dir/serial.c.obj src/device/CMakeFiles/dev.dir/clock_ics9xxx.c.obj src/device/CMakeFiles/dev.dir/isapnp.c.obj src/device/CMakeFiles/dev.dir/i2c.c.obj src/device/CMakeFiles/dev.dir/i2c_gpio.c.obj src/device/CMakeFiles/dev.dir/smbus_piix4.c.obj src/device/CMakeFiles/dev.dir/smbus_ali7101.c.obj src/device/CMakeFiles/dev.dir/keyboard.c.obj src/device/CMakeFiles/dev.dir/keyboard_xt.c.obj src/device/CMakeFiles/dev.dir/kbc_at.c.obj src/device/CMakeFiles/dev.dir/kbc_at_dev.c.obj src/device/CMakeFiles/dev.dir/keyboard_at.c.obj src/device/CMakeFiles/dev.dir/mouse.c.obj src/device/CMakeFiles/dev.dir/mouse_bus.c.obj src/device/CMakeFiles/dev.dir/mouse_serial.c.obj src/device/CMakeFiles/dev.dir/mouse_ps2.c.obj src/device/CMakeFiles/dev.dir/phoenix_486_jumper.c.obj src/device/CMakeFiles/dev.dir/serial_passthrough.c.obj + + +############################################# +# Utility command for package + +build src/device/CMakeFiles/package.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/device/package: phony src/device/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/device/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/device/package_source: phony src/device/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/device/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\device && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/device/edit_cache: phony src/device/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/device/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\device && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/device/rebuild_cache: phony src/device/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/device/list_install_components: phony + + +############################################# +# Utility command for install + +build src/device/CMakeFiles/install.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\device && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/device/install: phony src/device/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/device/CMakeFiles/install/local.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\device && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/device/install/local: phony src/device/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/device/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/device/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\device && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/device/install/strip: phony src/device/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target hdd + + +############################################# +# Order-only phony target for hdd + +build cmake_object_order_depends_target_hdd: phony || src/disk/CMakeFiles/hdd.dir + +build src/disk/CMakeFiles/hdd.dir/hdd.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdd.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdd.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdd_image.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdd_image.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdd_table.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdd_table.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_st506_xt.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_st506_xt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_st506_at.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_st506_at.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_xta.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_xta.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_esdi_at.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_esdi_at.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_esdi_mca.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_esdi_mca.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_xtide.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_xtide.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_opti611.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_opti611.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_cmd640.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_cmd640.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_cmd646.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_cmd646.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + +build src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj: C_COMPILER__hdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/hdc_ide_sff8038i.c || cmake_object_order_depends_target_hdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\hdd.dir\hdc_ide_sff8038i.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\hdd.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\hdd.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\hdd.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library hdd + +build src/disk/hdd: phony src/disk/CMakeFiles/hdd.dir/hdd.c.obj src/disk/CMakeFiles/hdd.dir/hdd_image.c.obj src/disk/CMakeFiles/hdd.dir/hdd_table.c.obj src/disk/CMakeFiles/hdd.dir/hdc.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_xt.c.obj src/disk/CMakeFiles/hdd.dir/hdc_st506_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xta.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_at.c.obj src/disk/CMakeFiles/hdd.dir/hdc_esdi_mca.c.obj src/disk/CMakeFiles/hdd.dir/hdc_xtide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_opti611.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd640.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_cmd646.c.obj src/disk/CMakeFiles/hdd.dir/hdc_ide_sff8038i.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target zip + + +############################################# +# Order-only phony target for zip + +build cmake_object_order_depends_target_zip: phony || src/disk/CMakeFiles/zip.dir + +build src/disk/CMakeFiles/zip.dir/zip.c.obj: C_COMPILER__zip_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/zip.c || cmake_object_order_depends_target_zip + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\zip.dir\zip.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\zip.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\zip.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\zip.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library zip + +build src/disk/zip: phony src/disk/CMakeFiles/zip.dir/zip.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target mo + + +############################################# +# Order-only phony target for mo + +build cmake_object_order_depends_target_mo: phony || src/disk/CMakeFiles/mo.dir + +build src/disk/CMakeFiles/mo.dir/mo.c.obj: C_COMPILER__mo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/mo.c || cmake_object_order_depends_target_mo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\CMakeFiles\mo.dir\mo.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\CMakeFiles\mo.dir + OBJECT_FILE_DIR = src\disk\CMakeFiles\mo.dir + TARGET_COMPILE_PDB = src\disk\CMakeFiles\mo.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library mo + +build src/disk/mo: phony src/disk/CMakeFiles/mo.dir/mo.c.obj + + +############################################# +# Utility command for package + +build src/disk/CMakeFiles/package.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/disk/package: phony src/disk/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/disk/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/disk/package_source: phony src/disk/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/disk/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/disk/edit_cache: phony src/disk/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/disk/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/disk/rebuild_cache: phony src/disk/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/disk/list_install_components: phony + + +############################################# +# Utility command for install + +build src/disk/CMakeFiles/install.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/disk/install: phony src/disk/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/disk/CMakeFiles/install/local.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/disk/install/local: phony src/disk/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/disk/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/disk/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/disk/install/strip: phony src/disk/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/disk/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target minivhd + + +############################################# +# Order-only phony target for minivhd + +build cmake_object_order_depends_target_minivhd: phony || src/disk/minivhd/CMakeFiles/minivhd.dir + +build src/disk/minivhd/CMakeFiles/minivhd.dir/cwalk.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/cwalk.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\cwalk.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/xml2_encoding.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/xml2_encoding.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\xml2_encoding.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/convert.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/convert.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\convert.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/create.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/create.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\create.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_io.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/minivhd_io.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd_io.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/manage.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/manage.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\manage.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/struct_rw.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/struct_rw.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\struct_rw.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + +build src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_util.c.obj: C_COMPILER__minivhd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/minivhd_util.c || cmake_object_order_depends_target_minivhd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd_util.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + OBJECT_FILE_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target minivhd + + +############################################# +# Link the static library src\disk\minivhd\libminivhd.a + +build src/disk/minivhd/libminivhd.a: C_STATIC_LIBRARY_LINKER__minivhd_Debug src/disk/minivhd/CMakeFiles/minivhd.dir/cwalk.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/xml2_encoding.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/convert.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/create.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_io.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/manage.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/struct_rw.c.obj src/disk/minivhd/CMakeFiles/minivhd.dir/minivhd_util.c.obj + LANGUAGE_COMPILE_FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og + OBJECT_DIR = src\disk\minivhd\CMakeFiles\minivhd.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\disk\minivhd\CMakeFiles\minivhd.dir\minivhd.pdb + TARGET_FILE = src\disk\minivhd\libminivhd.a + TARGET_PDB = src\disk\minivhd\libminivhd.pdb + + +############################################# +# Utility command for package + +build src/disk/minivhd/CMakeFiles/package.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/disk/minivhd/package: phony src/disk/minivhd/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/disk/minivhd/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/disk/minivhd/package_source: phony src/disk/minivhd/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/disk/minivhd/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk\minivhd && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/disk/minivhd/edit_cache: phony src/disk/minivhd/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/disk/minivhd/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk\minivhd && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/disk/minivhd/rebuild_cache: phony src/disk/minivhd/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/disk/minivhd/list_install_components: phony + + +############################################# +# Utility command for install + +build src/disk/minivhd/CMakeFiles/install.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk\minivhd && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/disk/minivhd/install: phony src/disk/minivhd/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/disk/minivhd/CMakeFiles/install/local.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk\minivhd && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/disk/minivhd/install/local: phony src/disk/minivhd/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/disk/minivhd/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/disk/minivhd/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\disk\minivhd && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/disk/minivhd/install/strip: phony src/disk/minivhd/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target fdd + + +############################################# +# Order-only phony target for fdd + +build cmake_object_order_depends_target_fdd: phony || src/floppy/CMakeFiles/fdd.dir + +build src/floppy/CMakeFiles/fdd.dir/fdd.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdc.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc_magitronic.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc_magitronic.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc_monster.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc_monster.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdc_pii15xb.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdc_pii15xb.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdi2raw.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdi2raw.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_common.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_common.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_86f.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_86f.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_fdi.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_fdi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_imd.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_imd.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_img.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_img.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_json.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_json.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_mfm.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_mfm.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + +build src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj: C_COMPILER__fdd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/floppy/fdd_td0.c || cmake_object_order_depends_target_fdd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\floppy\CMakeFiles\fdd.dir\fdd_td0.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\floppy\CMakeFiles\fdd.dir + OBJECT_FILE_DIR = src\floppy\CMakeFiles\fdd.dir + TARGET_COMPILE_PDB = src\floppy\CMakeFiles\fdd.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library fdd + +build src/floppy/fdd: phony src/floppy/CMakeFiles/fdd.dir/fdd.c.obj src/floppy/CMakeFiles/fdd.dir/fdc.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_magitronic.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_monster.c.obj src/floppy/CMakeFiles/fdd.dir/fdc_pii15xb.c.obj src/floppy/CMakeFiles/fdd.dir/fdi2raw.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_common.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_86f.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_fdi.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_imd.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_img.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_json.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_mfm.c.obj src/floppy/CMakeFiles/fdd.dir/fdd_td0.c.obj + + +############################################# +# Utility command for package + +build src/floppy/CMakeFiles/package.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/floppy/package: phony src/floppy/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/floppy/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/floppy/package_source: phony src/floppy/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/floppy/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\floppy && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/floppy/edit_cache: phony src/floppy/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/floppy/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\floppy && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/floppy/rebuild_cache: phony src/floppy/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/floppy/list_install_components: phony + + +############################################# +# Utility command for install + +build src/floppy/CMakeFiles/install.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\floppy && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/floppy/install: phony src/floppy/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/floppy/CMakeFiles/install/local.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\floppy && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/floppy/install/local: phony src/floppy/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/floppy/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/floppy/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\floppy && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/floppy/install/strip: phony src/floppy/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target game + + +############################################# +# Order-only phony target for game + +build cmake_object_order_depends_target_game: phony || src/game/CMakeFiles/game.dir + +build src/game/CMakeFiles/game.dir/gameport.c.obj: C_COMPILER__game_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/game/gameport.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\gameport.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + TARGET_COMPILE_PDB = src\game\CMakeFiles\game.dir\ + TARGET_PDB = "" + +build src/game/CMakeFiles/game.dir/joystick_standard.c.obj: C_COMPILER__game_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_standard.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_standard.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + TARGET_COMPILE_PDB = src\game\CMakeFiles\game.dir\ + TARGET_PDB = "" + +build src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj: C_COMPILER__game_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_ch_flightstick_pro.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_ch_flightstick_pro.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + TARGET_COMPILE_PDB = src\game\CMakeFiles\game.dir\ + TARGET_PDB = "" + +build src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj: C_COMPILER__game_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_sw_pad.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_sw_pad.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + TARGET_COMPILE_PDB = src\game\CMakeFiles\game.dir\ + TARGET_PDB = "" + +build src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj: C_COMPILER__game_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/game/joystick_tm_fcs.c || cmake_object_order_depends_target_game + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\game\CMakeFiles\game.dir\joystick_tm_fcs.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\game\CMakeFiles\game.dir + OBJECT_FILE_DIR = src\game\CMakeFiles\game.dir + TARGET_COMPILE_PDB = src\game\CMakeFiles\game.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library game + +build src/game/game: phony src/game/CMakeFiles/game.dir/gameport.c.obj src/game/CMakeFiles/game.dir/joystick_standard.c.obj src/game/CMakeFiles/game.dir/joystick_ch_flightstick_pro.c.obj src/game/CMakeFiles/game.dir/joystick_sw_pad.c.obj src/game/CMakeFiles/game.dir/joystick_tm_fcs.c.obj + + +############################################# +# Utility command for package + +build src/game/CMakeFiles/package.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/game/package: phony src/game/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/game/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/game/package_source: phony src/game/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/game/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\game && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/game/edit_cache: phony src/game/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/game/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\game && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/game/rebuild_cache: phony src/game/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/game/list_install_components: phony + + +############################################# +# Utility command for install + +build src/game/CMakeFiles/install.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\game && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/game/install: phony src/game/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/game/CMakeFiles/install/local.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\game && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/game/install/local: phony src/game/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/game/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/game/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\game && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/game/install/strip: phony src/game/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target mch + + +############################################# +# Order-only phony target for mch + +build cmake_object_order_depends_target_mch: phony || src/machine/CMakeFiles/mch.dir + +build src/machine/CMakeFiles/mch.dir/machine.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/machine.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\machine.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/machine_table.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/machine_table.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\machine_table.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_compaq.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_compaq.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_philips.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_philips.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_t1000.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_t1000.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_t1000_vid.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_t1000_vid.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_xi8088.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_xi8088.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_zenith.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_zenith.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_pcjr.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_pcjr.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_amstrad.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_amstrad.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_europc.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_europc.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_europc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_elt.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_elt.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_elt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_olivetti.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_olivetti.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_tandy.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_tandy.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_tandy.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_v86p.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_v86p.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_v86p.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_commodore.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_commodore.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_t3100e.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_t3100e.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_t3100e_vid.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_t3100e_vid.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_ps1.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps1.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps1.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps1_hdc.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps1_hdc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps2_isa.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps2_isa.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_ps2_mca.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_ps2_mca.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_compaq.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_compaq.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_286_386sx.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_286_386sx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_386dx_486.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_386dx_486.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket4.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket4.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket5.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket5.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket7_3v.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket7_3v.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket7.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket7.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_sockets7.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_sockets7.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket8.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket8.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_slot1.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_slot1.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_slot2.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_slot2.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_socket370.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_socket370.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_at_misc.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_at_misc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + +build src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj: C_COMPILER__mch_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/machine/m_xt_laserxt.c || cmake_object_order_depends_target_mch + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\machine\CMakeFiles\mch.dir\m_xt_laserxt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\machine\CMakeFiles\mch.dir + OBJECT_FILE_DIR = src\machine\CMakeFiles\mch.dir + TARGET_COMPILE_PDB = src\machine\CMakeFiles\mch.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library mch + +build src/machine/mch: phony src/machine/CMakeFiles/mch.dir/machine.c.obj src/machine/CMakeFiles/mch.dir/machine_table.c.obj src/machine/CMakeFiles/mch.dir/m_xt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_xt_philips.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000.c.obj src/machine/CMakeFiles/mch.dir/m_xt_t1000_vid.c.obj src/machine/CMakeFiles/mch.dir/m_xt_xi8088.c.obj src/machine/CMakeFiles/mch.dir/m_xt_zenith.c.obj src/machine/CMakeFiles/mch.dir/m_pcjr.c.obj src/machine/CMakeFiles/mch.dir/m_amstrad.c.obj src/machine/CMakeFiles/mch.dir/m_europc.c.obj src/machine/CMakeFiles/mch.dir/m_elt.c.obj src/machine/CMakeFiles/mch.dir/m_xt_olivetti.c.obj src/machine/CMakeFiles/mch.dir/m_tandy.c.obj src/machine/CMakeFiles/mch.dir/m_v86p.c.obj src/machine/CMakeFiles/mch.dir/m_at.c.obj src/machine/CMakeFiles/mch.dir/m_at_commodore.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e.c.obj src/machine/CMakeFiles/mch.dir/m_at_t3100e_vid.c.obj src/machine/CMakeFiles/mch.dir/m_ps1.c.obj src/machine/CMakeFiles/mch.dir/m_ps1_hdc.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_isa.c.obj src/machine/CMakeFiles/mch.dir/m_ps2_mca.c.obj src/machine/CMakeFiles/mch.dir/m_at_compaq.c.obj src/machine/CMakeFiles/mch.dir/m_at_286_386sx.c.obj src/machine/CMakeFiles/mch.dir/m_at_386dx_486.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket4.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket5.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7_3v.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket7.c.obj src/machine/CMakeFiles/mch.dir/m_at_sockets7.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket8.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot1.c.obj src/machine/CMakeFiles/mch.dir/m_at_slot2.c.obj src/machine/CMakeFiles/mch.dir/m_at_socket370.c.obj src/machine/CMakeFiles/mch.dir/m_at_misc.c.obj src/machine/CMakeFiles/mch.dir/m_xt_laserxt.c.obj + + +############################################# +# Utility command for package + +build src/machine/CMakeFiles/package.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/machine/package: phony src/machine/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/machine/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/machine/package_source: phony src/machine/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/machine/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\machine && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/machine/edit_cache: phony src/machine/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/machine/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\machine && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/machine/rebuild_cache: phony src/machine/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/machine/list_install_components: phony + + +############################################# +# Utility command for install + +build src/machine/CMakeFiles/install.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\machine && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/machine/install: phony src/machine/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/machine/CMakeFiles/install/local.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\machine && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/machine/install/local: phony src/machine/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/machine/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/machine/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\machine && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/machine/install/strip: phony src/machine/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target mem + + +############################################# +# Order-only phony target for mem + +build cmake_object_order_depends_target_mem: phony || src/mem/CMakeFiles/mem.dir + +build src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/catalyst_flash.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\catalyst_flash.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/i2c_eeprom.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\i2c_eeprom.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/intel_flash.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/intel_flash.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\intel_flash.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/mem.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/mem.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\mem.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/mmu_2386.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\mmu_2386.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/rom.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/rom.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\rom.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/row.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/row.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\row.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/smram.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/smram.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\smram.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/spd.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/spd.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\spd.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + +build src/mem/CMakeFiles/mem.dir/sst_flash.c.obj: C_COMPILER__mem_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/mem/sst_flash.c || cmake_object_order_depends_target_mem + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\mem\CMakeFiles\mem.dir\sst_flash.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\mem\CMakeFiles\mem.dir + OBJECT_FILE_DIR = src\mem\CMakeFiles\mem.dir + TARGET_COMPILE_PDB = src\mem\CMakeFiles\mem.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library mem + +build src/mem/mem: phony src/mem/CMakeFiles/mem.dir/catalyst_flash.c.obj src/mem/CMakeFiles/mem.dir/i2c_eeprom.c.obj src/mem/CMakeFiles/mem.dir/intel_flash.c.obj src/mem/CMakeFiles/mem.dir/mem.c.obj src/mem/CMakeFiles/mem.dir/mmu_2386.c.obj src/mem/CMakeFiles/mem.dir/rom.c.obj src/mem/CMakeFiles/mem.dir/row.c.obj src/mem/CMakeFiles/mem.dir/smram.c.obj src/mem/CMakeFiles/mem.dir/spd.c.obj src/mem/CMakeFiles/mem.dir/sst_flash.c.obj + + +############################################# +# Utility command for package + +build src/mem/CMakeFiles/package.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/mem/package: phony src/mem/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/mem/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/mem/package_source: phony src/mem/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/mem/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\mem && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/mem/edit_cache: phony src/mem/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/mem/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\mem && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/mem/rebuild_cache: phony src/mem/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/mem/list_install_components: phony + + +############################################# +# Utility command for install + +build src/mem/CMakeFiles/install.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\mem && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/mem/install: phony src/mem/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/mem/CMakeFiles/install/local.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\mem && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/mem/install/local: phony src/mem/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/mem/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/mem/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\mem && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/mem/install/strip: phony src/mem/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target net + + +############################################# +# Order-only phony target for net + +build cmake_object_order_depends_target_net: phony || src/network/CMakeFiles/net.dir + +build src/network/CMakeFiles/net.dir/network.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/network.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\network.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_pcap.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_pcap.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_pcap.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_slirp.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_slirp.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_slirp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_dp8390.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_dp8390.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_dp8390.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_3c501.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_3c501.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_3c501.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_3c503.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_3c503.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_3c503.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_ne2000.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_ne2000.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_ne2000.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_pcnet.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_pcnet.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_pcnet.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_wd8003.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_wd8003.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_wd8003.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_plip.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_plip.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_plip.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_event.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_event.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_event.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + +build src/network/CMakeFiles/net.dir/net_null.c.obj: C_COMPILER__net_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/network/net_null.c || cmake_object_order_depends_target_net + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\network\CMakeFiles\net.dir\net_null.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\network\CMakeFiles\net.dir + OBJECT_FILE_DIR = src\network\CMakeFiles\net.dir + TARGET_COMPILE_PDB = src\network\CMakeFiles\net.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library net + +build src/network/net: phony src/network/CMakeFiles/net.dir/network.c.obj src/network/CMakeFiles/net.dir/net_pcap.c.obj src/network/CMakeFiles/net.dir/net_slirp.c.obj src/network/CMakeFiles/net.dir/net_dp8390.c.obj src/network/CMakeFiles/net.dir/net_3c501.c.obj src/network/CMakeFiles/net.dir/net_3c503.c.obj src/network/CMakeFiles/net.dir/net_ne2000.c.obj src/network/CMakeFiles/net.dir/net_pcnet.c.obj src/network/CMakeFiles/net.dir/net_wd8003.c.obj src/network/CMakeFiles/net.dir/net_plip.c.obj src/network/CMakeFiles/net.dir/net_event.c.obj src/network/CMakeFiles/net.dir/net_null.c.obj + + +############################################# +# Utility command for package + +build src/network/CMakeFiles/package.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/network/package: phony src/network/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/network/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/network/package_source: phony src/network/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/network/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\network && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/network/edit_cache: phony src/network/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/network/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\network && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/network/rebuild_cache: phony src/network/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/network/list_install_components: phony + + +############################################# +# Utility command for install + +build src/network/CMakeFiles/install.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\network && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/network/install: phony src/network/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/network/CMakeFiles/install/local.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\network && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/network/install/local: phony src/network/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/network/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/network/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\network && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/network/install/strip: phony src/network/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target print + + +############################################# +# Order-only phony target for print + +build cmake_object_order_depends_target_print: phony || src/printer/CMakeFiles/print.dir + +build src/printer/CMakeFiles/print.dir/png.c.obj: C_COMPILER__print_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/printer/png.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\png.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + TARGET_COMPILE_PDB = src\printer\CMakeFiles\print.dir\ + TARGET_PDB = "" + +build src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj: C_COMPILER__print_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_cpmap.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_cpmap.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + TARGET_COMPILE_PDB = src\printer\CMakeFiles\print.dir\ + TARGET_PDB = "" + +build src/printer/CMakeFiles/print.dir/prt_escp.c.obj: C_COMPILER__print_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_escp.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_escp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + TARGET_COMPILE_PDB = src\printer\CMakeFiles\print.dir\ + TARGET_PDB = "" + +build src/printer/CMakeFiles/print.dir/prt_text.c.obj: C_COMPILER__print_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_text.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_text.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + TARGET_COMPILE_PDB = src\printer\CMakeFiles\print.dir\ + TARGET_PDB = "" + +build src/printer/CMakeFiles/print.dir/prt_ps.c.obj: C_COMPILER__print_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/printer/prt_ps.c || cmake_object_order_depends_target_print + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\printer\CMakeFiles\print.dir\prt_ps.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\printer\CMakeFiles\print.dir + OBJECT_FILE_DIR = src\printer\CMakeFiles\print.dir + TARGET_COMPILE_PDB = src\printer\CMakeFiles\print.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library print + +build src/printer/print: phony src/printer/CMakeFiles/print.dir/png.c.obj src/printer/CMakeFiles/print.dir/prt_cpmap.c.obj src/printer/CMakeFiles/print.dir/prt_escp.c.obj src/printer/CMakeFiles/print.dir/prt_text.c.obj src/printer/CMakeFiles/print.dir/prt_ps.c.obj + + +############################################# +# Utility command for package + +build src/printer/CMakeFiles/package.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/printer/package: phony src/printer/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/printer/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/printer/package_source: phony src/printer/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/printer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\printer && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/printer/edit_cache: phony src/printer/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/printer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\printer && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/printer/rebuild_cache: phony src/printer/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/printer/list_install_components: phony + + +############################################# +# Utility command for install + +build src/printer/CMakeFiles/install.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\printer && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/printer/install: phony src/printer/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/printer/CMakeFiles/install/local.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\printer && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/printer/install/local: phony src/printer/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/printer/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/printer/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\printer && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/printer/install/strip: phony src/printer/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target sio + + +############################################# +# Order-only phony target for sio + +build cmake_object_order_depends_target_sio: phony || src/sio/CMakeFiles/sio.dir + +build src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_acc3221.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_acc3221.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_ali5123.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_ali5123.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_f82c710.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_f82c710.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_82091aa.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_82091aa.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c6xx.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c6xx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c67x.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c67x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c669.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c669.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37c93x.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37c93x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_fdc37m60x.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_fdc37m60x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_it8661f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_it8661f.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87306.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87306.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87307.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87307.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87309.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87309.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87310.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87310.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87311.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87311.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_pc87332.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_pc87332.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_prime3b.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_prime3b.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_prime3c.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_prime3c.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_w83787f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_w83787f.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_w83877f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_w83877f.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_w83977f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_w83977f.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_um8669f.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_um8669f.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_vt82c686.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_vt82c686.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + +build src/sio/CMakeFiles/sio.dir/sio_detect.c.obj: C_COMPILER__sio_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sio/sio_detect.c || cmake_object_order_depends_target_sio + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sio\CMakeFiles\sio.dir\sio_detect.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sio\CMakeFiles\sio.dir + OBJECT_FILE_DIR = src\sio\CMakeFiles\sio.dir + TARGET_COMPILE_PDB = src\sio\CMakeFiles\sio.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library sio + +build src/sio/sio: phony src/sio/CMakeFiles/sio.dir/sio_acc3221.c.obj src/sio/CMakeFiles/sio.dir/sio_ali5123.c.obj src/sio/CMakeFiles/sio.dir/sio_f82c710.c.obj src/sio/CMakeFiles/sio.dir/sio_82091aa.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c6xx.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c67x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c669.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37c93x.c.obj src/sio/CMakeFiles/sio.dir/sio_fdc37m60x.c.obj src/sio/CMakeFiles/sio.dir/sio_it8661f.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87306.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87307.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87309.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87310.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87311.c.obj src/sio/CMakeFiles/sio.dir/sio_pc87332.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3b.c.obj src/sio/CMakeFiles/sio.dir/sio_prime3c.c.obj src/sio/CMakeFiles/sio.dir/sio_w83787f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83877f.c.obj src/sio/CMakeFiles/sio.dir/sio_w83977f.c.obj src/sio/CMakeFiles/sio.dir/sio_um8669f.c.obj src/sio/CMakeFiles/sio.dir/sio_vt82c686.c.obj src/sio/CMakeFiles/sio.dir/sio_detect.c.obj + + +############################################# +# Utility command for package + +build src/sio/CMakeFiles/package.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sio/package: phony src/sio/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sio/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sio/package_source: phony src/sio/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sio && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sio/edit_cache: phony src/sio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sio && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sio/rebuild_cache: phony src/sio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sio/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sio/CMakeFiles/install.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sio && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sio/install: phony src/sio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sio/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sio && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sio/install/local: phony src/sio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sio/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sio/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sio && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sio/install/strip: phony src/sio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target scsi + + +############################################# +# Order-only phony target for scsi + +build cmake_object_order_depends_target_scsi: phony || src/scsi/CMakeFiles/scsi.dir + +build src/scsi/CMakeFiles/scsi.dir/scsi.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_device.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_device.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_cdrom.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_cdrom.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_disk.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_disk.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_x54x.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_x54x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_aha154x.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_aha154x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_buslogic.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_buslogic.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_ncr5380.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_ncr5380.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_ncr53c8xx.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_ncr53c8xx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_pcscsi.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_pcscsi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + +build src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj: C_COMPILER__scsi_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/scsi/scsi_spock.c || cmake_object_order_depends_target_scsi + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\scsi\CMakeFiles\scsi.dir\scsi_spock.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\scsi\CMakeFiles\scsi.dir + OBJECT_FILE_DIR = src\scsi\CMakeFiles\scsi.dir + TARGET_COMPILE_PDB = src\scsi\CMakeFiles\scsi.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library scsi + +build src/scsi/scsi: phony src/scsi/CMakeFiles/scsi.dir/scsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_device.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_cdrom.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_disk.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_x54x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_aha154x.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_buslogic.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr5380.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_ncr53c8xx.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_pcscsi.c.obj src/scsi/CMakeFiles/scsi.dir/scsi_spock.c.obj + + +############################################# +# Utility command for package + +build src/scsi/CMakeFiles/package.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/scsi/package: phony src/scsi/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/scsi/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/scsi/package_source: phony src/scsi/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/scsi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\scsi && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/scsi/edit_cache: phony src/scsi/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/scsi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\scsi && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/scsi/rebuild_cache: phony src/scsi/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/scsi/list_install_components: phony + + +############################################# +# Utility command for install + +build src/scsi/CMakeFiles/install.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\scsi && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/scsi/install: phony src/scsi/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/scsi/CMakeFiles/install/local.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\scsi && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/scsi/install/local: phony src/scsi/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/scsi/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/scsi/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\scsi && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/scsi/install/strip: phony src/scsi/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target snd + + +############################################# +# Order-only phony target for snd + +build cmake_object_order_depends_target_snd: phony || src/sound/CMakeFiles/snd.dir + +build src/sound/CMakeFiles/snd.dir/sound.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/sound.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\sound.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_opl.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_opl.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_opl.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_opl_nuked.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_opl_nuked.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj: CXX_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_opl_ymfm.cpp || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_opl_ymfm.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj: CXX_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_resid.cc || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_resid.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/midi.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/midi.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_speaker.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_speaker.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_pssj.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_pssj.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_lpt_dac.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_lpt_dac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ac97_codec.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ac97_codec.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ac97_via.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ac97_via.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_lpt_dss.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_lpt_dss.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ps1.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ps1.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_adlib.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_adlib.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_adlibgold.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_adlibgold.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ad1848.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ad1848.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_audiopci.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_audiopci.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_azt2316a.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_azt2316a.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_cms.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_cms.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_cms.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_cmi8x38.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_cmi8x38.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_cs423x.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_cs423x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_gus.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_gus.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_gus.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_sb.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_sb.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_sb.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_sb_dsp.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_sb_dsp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_emu8k.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_emu8k.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_mpu401.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_mpu401.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_sn76489.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_sn76489.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ssi2001.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ssi2001.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_wss.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_wss.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_wss.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_ym7128.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_ym7128.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_optimc.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_optimc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/xaudio2.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/xaudio2.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\xaudio2.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj: CXX_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/midi_rtmidi.cpp || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi_rtmidi.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/midi_fluidsynth.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi_fluidsynth.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/midi_mt32.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\midi_mt32.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + +build src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj: C_COMPILER__snd_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/snd_pas16.c || cmake_object_order_depends_target_snd + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\CMakeFiles\snd.dir\snd_pas16.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\CMakeFiles\snd.dir + OBJECT_FILE_DIR = src\sound\CMakeFiles\snd.dir + TARGET_COMPILE_PDB = src\sound\CMakeFiles\snd.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library snd + +build src/sound/snd: phony src/sound/CMakeFiles/snd.dir/sound.c.obj src/sound/CMakeFiles/snd.dir/snd_opl.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_nuked.c.obj src/sound/CMakeFiles/snd.dir/snd_opl_ymfm.cpp.obj src/sound/CMakeFiles/snd.dir/snd_resid.cc.obj src/sound/CMakeFiles/snd.dir/midi.c.obj src/sound/CMakeFiles/snd.dir/snd_speaker.c.obj src/sound/CMakeFiles/snd.dir/snd_pssj.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dac.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_codec.c.obj src/sound/CMakeFiles/snd.dir/snd_ac97_via.c.obj src/sound/CMakeFiles/snd.dir/snd_lpt_dss.c.obj src/sound/CMakeFiles/snd.dir/snd_ps1.c.obj src/sound/CMakeFiles/snd.dir/snd_adlib.c.obj src/sound/CMakeFiles/snd.dir/snd_adlibgold.c.obj src/sound/CMakeFiles/snd.dir/snd_ad1848.c.obj src/sound/CMakeFiles/snd.dir/snd_audiopci.c.obj src/sound/CMakeFiles/snd.dir/snd_azt2316a.c.obj src/sound/CMakeFiles/snd.dir/snd_cms.c.obj src/sound/CMakeFiles/snd.dir/snd_cmi8x38.c.obj src/sound/CMakeFiles/snd.dir/snd_cs423x.c.obj src/sound/CMakeFiles/snd.dir/snd_gus.c.obj src/sound/CMakeFiles/snd.dir/snd_sb.c.obj src/sound/CMakeFiles/snd.dir/snd_sb_dsp.c.obj src/sound/CMakeFiles/snd.dir/snd_emu8k.c.obj src/sound/CMakeFiles/snd.dir/snd_mpu401.c.obj src/sound/CMakeFiles/snd.dir/snd_sn76489.c.obj src/sound/CMakeFiles/snd.dir/snd_ssi2001.c.obj src/sound/CMakeFiles/snd.dir/snd_wss.c.obj src/sound/CMakeFiles/snd.dir/snd_ym7128.c.obj src/sound/CMakeFiles/snd.dir/snd_optimc.c.obj src/sound/CMakeFiles/snd.dir/xaudio2.c.obj src/sound/CMakeFiles/snd.dir/midi_rtmidi.cpp.obj src/sound/CMakeFiles/snd.dir/midi_fluidsynth.c.obj src/sound/CMakeFiles/snd.dir/midi_mt32.c.obj src/sound/CMakeFiles/snd.dir/snd_pas16.c.obj + + +############################################# +# Utility command for package + +build src/sound/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/package: phony src/sound/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/package_source: phony src/sound/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/edit_cache: phony src/sound/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/rebuild_cache: phony src/sound/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/install: phony src/sound/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/install/local: phony src/sound/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/install/strip: phony src/sound/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mt32emu + + +############################################# +# Order-only phony target for mt32emu + +build cmake_object_order_depends_target_mt32emu: phony || src/sound/munt/CMakeFiles/mt32emu.dir + +build src/sound/munt/CMakeFiles/mt32emu.dir/Analog.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Analog.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Analog.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/BReverbModel.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/BReverbModel.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\BReverbModel.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/Display.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Display.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Display.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/File.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/File.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\File.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/FileStream.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/FileStream.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\FileStream.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/LA32Ramp.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/LA32Ramp.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\LA32Ramp.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/LA32FloatWaveGenerator.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/LA32FloatWaveGenerator.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\LA32FloatWaveGenerator.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/LA32WaveGenerator.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/LA32WaveGenerator.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\LA32WaveGenerator.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/MidiStreamParser.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/MidiStreamParser.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\MidiStreamParser.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/Part.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Part.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Part.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/Partial.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Partial.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Partial.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/PartialManager.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/PartialManager.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\PartialManager.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/Poly.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Poly.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Poly.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/ROMInfo.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/ROMInfo.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\ROMInfo.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/SampleRateConverter.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/SampleRateConverter.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\SampleRateConverter.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/FIRResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/FIRResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\FIRResampler.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/IIR2xResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/IIR2xResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\IIR2xResampler.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/LinearResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/LinearResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\LinearResampler.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/ResamplerModel.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/ResamplerModel.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\ResamplerModel.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/SincResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/srctools/src/SincResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src\SincResampler.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\srctools\src + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/InternalResampler.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/srchelper/InternalResampler.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper\InternalResampler.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\srchelper + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/Synth.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Synth.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Synth.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/Tables.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/Tables.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\Tables.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/TVA.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/TVA.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\TVA.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/TVF.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/TVF.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\TVF.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/TVP.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/TVP.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\TVP.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/sha1/sha1.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/sha1/sha1.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\sha1\sha1.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\sha1 + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + +build src/sound/munt/CMakeFiles/mt32emu.dir/c_interface/c_interface.cpp.obj: CXX_COMPILER__mt32emu_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/c_interface/c_interface.cpp || cmake_object_order_depends_target_mt32emu + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\munt\CMakeFiles\mt32emu.dir\c_interface\c_interface.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + OBJECT_FILE_DIR = src\sound\munt\CMakeFiles\mt32emu.dir\c_interface + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_PDB = src\sound\munt\libmt32emu.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mt32emu + + +############################################# +# Link the static library src\sound\munt\libmt32emu.a + +build src/sound/munt/libmt32emu.a: CXX_STATIC_LIBRARY_LINKER__mt32emu_Debug src/sound/munt/CMakeFiles/mt32emu.dir/Analog.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/BReverbModel.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Display.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/File.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/FileStream.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/LA32Ramp.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/LA32FloatWaveGenerator.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/LA32WaveGenerator.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/MidiStreamParser.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Part.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Partial.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/PartialManager.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Poly.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/ROMInfo.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/SampleRateConverter.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/FIRResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/IIR2xResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/LinearResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/ResamplerModel.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/srctools/src/SincResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/srchelper/InternalResampler.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Synth.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/Tables.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/TVA.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/TVF.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/TVP.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/sha1/sha1.cpp.obj src/sound/munt/CMakeFiles/mt32emu.dir/c_interface/c_interface.cpp.obj + LANGUAGE_COMPILE_FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og + OBJECT_DIR = src\sound\munt\CMakeFiles\mt32emu.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\sound\munt\CMakeFiles\mt32emu.dir\mt32emu.pdb + TARGET_FILE = src\sound\munt\libmt32emu.a + TARGET_PDB = src\sound\munt\libmt32emu.pdb + + +############################################# +# Utility command for package + +build src/sound/munt/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/munt/package: phony src/sound/munt/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/munt/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/munt/package_source: phony src/sound/munt/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/munt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\munt && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/munt/edit_cache: phony src/sound/munt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/munt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\munt && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/munt/rebuild_cache: phony src/sound/munt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/munt/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/munt/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\munt && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/munt/install: phony src/sound/munt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/munt/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\munt && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/munt/install/local: phony src/sound/munt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/munt/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/munt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\munt && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/munt/install/strip: phony src/sound/munt/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target ymfm + + +############################################# +# Order-only phony target for ymfm + +build cmake_object_order_depends_target_ymfm: phony || src/sound/ymfm/CMakeFiles/ymfm.dir + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_misc.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_misc.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_misc.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opl.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opl.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opl.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opm.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opm.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opm.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opn.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opn.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opn.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opq.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opq.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opq.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opz.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_opz.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_opz.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_pcm.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_pcm.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_pcm.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + +build src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_adpcm.cpp.obj: CXX_COMPILER__ymfm_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/ymfm_adpcm.cpp || cmake_object_order_depends_target_ymfm + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm_adpcm.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + OBJECT_FILE_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_PDB = src\sound\ymfm\libymfm.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target ymfm + + +############################################# +# Link the static library src\sound\ymfm\libymfm.a + +build src/sound/ymfm/libymfm.a: CXX_STATIC_LIBRARY_LINKER__ymfm_Debug src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_misc.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opl.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opm.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opn.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opq.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_opz.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_pcm.cpp.obj src/sound/ymfm/CMakeFiles/ymfm.dir/ymfm_adpcm.cpp.obj + LANGUAGE_COMPILE_FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og + OBJECT_DIR = src\sound\ymfm\CMakeFiles\ymfm.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\sound\ymfm\CMakeFiles\ymfm.dir\ymfm.pdb + TARGET_FILE = src\sound\ymfm\libymfm.a + TARGET_PDB = src\sound\ymfm\libymfm.pdb + + +############################################# +# Utility command for package + +build src/sound/ymfm/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/ymfm/package: phony src/sound/ymfm/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/ymfm/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/ymfm/package_source: phony src/sound/ymfm/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/ymfm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\ymfm && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/ymfm/edit_cache: phony src/sound/ymfm/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/ymfm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\ymfm && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/ymfm/rebuild_cache: phony src/sound/ymfm/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/ymfm/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/ymfm/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\ymfm && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/ymfm/install: phony src/sound/ymfm/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/ymfm/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\ymfm && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/ymfm/install/local: phony src/sound/ymfm/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/ymfm/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/ymfm/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\ymfm && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/ymfm/install/strip: phony src/sound/ymfm/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target resid-fp + + +############################################# +# Order-only phony target for resid-fp + +build cmake_object_order_depends_target_resid-fp: phony || src/sound/resid-fp/CMakeFiles/resid-fp.dir + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve-sse.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/convolve-sse.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\convolve-sse.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/convolve.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\convolve.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/envelope.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/envelope.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\envelope.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/extfilt.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/extfilt.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\extfilt.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/filter.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/filter.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\filter.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/pot.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/pot.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\pot.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/sid.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/sid.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\sid.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/voice.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/voice.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\voice.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581_PST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581_PST.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PS_.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581_PS_.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581_PS_.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_P_T.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581_P_T.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581_P_T.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581__ST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave6581__ST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave6581__ST.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580_PST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580_PST.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PS_.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580_PS_.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580_PS_.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_P_T.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580_P_T.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580_P_T.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + +build src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580__ST.cc.obj: CXX_COMPILER__resid-fp_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/wave8580__ST.cc || cmake_object_order_depends_target_resid-fp + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\sound\resid-fp\CMakeFiles\resid-fp.dir\wave8580__ST.cc.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + OBJECT_FILE_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target resid-fp + + +############################################# +# Link the static library src\sound\resid-fp\libresid-fp.a + +build src/sound/resid-fp/libresid-fp.a: CXX_STATIC_LIBRARY_LINKER__resid-fp_Debug src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve-sse.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/convolve.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/envelope.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/extfilt.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/filter.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/pot.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/sid.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/voice.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PST.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_PS_.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581_P_T.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave6581__ST.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PST.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_PS_.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580_P_T.cc.obj src/sound/resid-fp/CMakeFiles/resid-fp.dir/wave8580__ST.cc.obj + LANGUAGE_COMPILE_FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og + OBJECT_DIR = src\sound\resid-fp\CMakeFiles\resid-fp.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\sound\resid-fp\CMakeFiles\resid-fp.dir\resid-fp.pdb + TARGET_FILE = src\sound\resid-fp\libresid-fp.a + TARGET_PDB = src\sound\resid-fp\libresid-fp.pdb + + +############################################# +# Utility command for package + +build src/sound/resid-fp/CMakeFiles/package.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/sound/resid-fp/package: phony src/sound/resid-fp/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/sound/resid-fp/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/sound/resid-fp/package_source: phony src/sound/resid-fp/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/sound/resid-fp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\resid-fp && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/sound/resid-fp/edit_cache: phony src/sound/resid-fp/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/sound/resid-fp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\resid-fp && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/sound/resid-fp/rebuild_cache: phony src/sound/resid-fp/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/sound/resid-fp/list_install_components: phony + + +############################################# +# Utility command for install + +build src/sound/resid-fp/CMakeFiles/install.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\resid-fp && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/sound/resid-fp/install: phony src/sound/resid-fp/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/sound/resid-fp/CMakeFiles/install/local.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\resid-fp && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/sound/resid-fp/install/local: phony src/sound/resid-fp/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/sound/resid-fp/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/sound/resid-fp/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\sound\resid-fp && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/sound/resid-fp/install/strip: phony src/sound/resid-fp/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target vid + + +############################################# +# Order-only phony target for vid + +build cmake_object_order_depends_target_vid: phony || src/video/CMakeFiles/vid.dir + +build src/video/CMakeFiles/vid.dir/agpgart.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/agpgart.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\agpgart.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/video.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/video.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\video.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_table.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_table.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_table.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_cga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_cga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_cga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_cga_comp.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_cga_comp.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_compaq_cga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_compaq_cga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_mda.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_mda.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_mda.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_hercules.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_hercules.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_hercules.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_herculesplus.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_herculesplus.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_incolor.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_incolor.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_incolor.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_colorplus.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_colorplus.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_genius.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_genius.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_genius.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_pgc.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_pgc.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_pgc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_im1024.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_im1024.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_im1024.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_sigma.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sigma.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sigma.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_wy700.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_wy700.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_wy700.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ega.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ega.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ega.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ega_render.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ega_render.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_svga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_svga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_svga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_8514a.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_8514a.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_8514a.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_svga_render.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_svga_render.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ddc.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ddc.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ddc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_vga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_vga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_vga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati_eeprom.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati_eeprom.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati18800.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati18800.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati28800.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati28800.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati_mach8.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati_mach8.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati_mach64.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati_mach64.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati68875_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati68875_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ati68860_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ati68860_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_bt48x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_bt48x_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_av9194.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_av9194.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_av9194.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_icd2061.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_icd2061.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ics2494.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ics2494.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ics2595.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ics2595.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_cl54xx.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_cl54xx.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_et3000.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_et3000.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_et3000.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_et4000.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_et4000.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_et4000.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sc1148x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sc1148x_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sc1502x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sc1502x_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_et4000w32.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_et4000w32.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_stg_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_stg_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ht216.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ht216.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ht216.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_oak_oti.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_oak_oti.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_paradise.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_paradise.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_paradise.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_rtg310x.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_rtg310x.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_f82c425.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_f82c425.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ti_cf62011.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ti_cf62011.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_tvga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tvga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tvga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tgui9440.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tgui9440.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tkd8001_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tkd8001_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_att20c49x_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_att20c49x_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_s3.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_s3.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_s3.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_s3_virge.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_s3_virge.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ibm_rgb528_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ibm_rgb528_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_sdac_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_sdac_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_ogc.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_ogc.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_ogc.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_nga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_nga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_nga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_tvp3026_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_tvp3026_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_att2xc498_ramdac.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_att2xc498_ramdac.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_xga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_xga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_xga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/vid.dir/vid_mga.c.obj: C_COMPILER__vid_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_mga.c || cmake_object_order_depends_target_vid + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\vid.dir\vid_mga.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\vid.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\vid.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\vid.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library vid + +build src/video/vid: phony src/video/CMakeFiles/vid.dir/agpgart.c.obj src/video/CMakeFiles/vid.dir/video.c.obj src/video/CMakeFiles/vid.dir/vid_table.c.obj src/video/CMakeFiles/vid.dir/vid_cga.c.obj src/video/CMakeFiles/vid.dir/vid_cga_comp.c.obj src/video/CMakeFiles/vid.dir/vid_compaq_cga.c.obj src/video/CMakeFiles/vid.dir/vid_mda.c.obj src/video/CMakeFiles/vid.dir/vid_hercules.c.obj src/video/CMakeFiles/vid.dir/vid_herculesplus.c.obj src/video/CMakeFiles/vid.dir/vid_incolor.c.obj src/video/CMakeFiles/vid.dir/vid_colorplus.c.obj src/video/CMakeFiles/vid.dir/vid_genius.c.obj src/video/CMakeFiles/vid.dir/vid_pgc.c.obj src/video/CMakeFiles/vid.dir/vid_im1024.c.obj src/video/CMakeFiles/vid.dir/vid_sigma.c.obj src/video/CMakeFiles/vid.dir/vid_wy700.c.obj src/video/CMakeFiles/vid.dir/vid_ega.c.obj src/video/CMakeFiles/vid.dir/vid_ega_render.c.obj src/video/CMakeFiles/vid.dir/vid_svga.c.obj src/video/CMakeFiles/vid.dir/vid_8514a.c.obj src/video/CMakeFiles/vid.dir/vid_svga_render.c.obj src/video/CMakeFiles/vid.dir/vid_ddc.c.obj src/video/CMakeFiles/vid.dir/vid_vga.c.obj src/video/CMakeFiles/vid.dir/vid_ati_eeprom.c.obj src/video/CMakeFiles/vid.dir/vid_ati18800.c.obj src/video/CMakeFiles/vid.dir/vid_ati28800.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach8.c.obj src/video/CMakeFiles/vid.dir/vid_ati_mach64.c.obj src/video/CMakeFiles/vid.dir/vid_ati68875_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ati68860_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_bt48x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_av9194.c.obj src/video/CMakeFiles/vid.dir/vid_icd2061.c.obj src/video/CMakeFiles/vid.dir/vid_ics2494.c.obj src/video/CMakeFiles/vid.dir/vid_ics2595.c.obj src/video/CMakeFiles/vid.dir/vid_cl54xx.c.obj src/video/CMakeFiles/vid.dir/vid_et3000.c.obj src/video/CMakeFiles/vid.dir/vid_et4000.c.obj src/video/CMakeFiles/vid.dir/vid_sc1148x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sc1502x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_et4000w32.c.obj src/video/CMakeFiles/vid.dir/vid_stg_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ht216.c.obj src/video/CMakeFiles/vid.dir/vid_oak_oti.c.obj src/video/CMakeFiles/vid.dir/vid_paradise.c.obj src/video/CMakeFiles/vid.dir/vid_rtg310x.c.obj src/video/CMakeFiles/vid.dir/vid_f82c425.c.obj src/video/CMakeFiles/vid.dir/vid_ti_cf62011.c.obj src/video/CMakeFiles/vid.dir/vid_tvga.c.obj src/video/CMakeFiles/vid.dir/vid_tgui9440.c.obj src/video/CMakeFiles/vid.dir/vid_tkd8001_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att20c49x_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_s3.c.obj src/video/CMakeFiles/vid.dir/vid_s3_virge.c.obj src/video/CMakeFiles/vid.dir/vid_ibm_rgb528_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_sdac_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_ogc.c.obj src/video/CMakeFiles/vid.dir/vid_nga.c.obj src/video/CMakeFiles/vid.dir/vid_tvp3026_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_att2xc498_ramdac.c.obj src/video/CMakeFiles/vid.dir/vid_xga.c.obj src/video/CMakeFiles/vid.dir/vid_mga.c.obj + +# ============================================================================= +# Object build statements for OBJECT_LIBRARY target voodoo + + +############################################# +# Order-only phony target for voodoo + +build cmake_object_order_depends_target_voodoo: phony || src/video/CMakeFiles/voodoo.dir + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_banshee.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_banshee.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_banshee_blitter.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_banshee_blitter.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_blitter.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_blitter.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_display.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_display.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_fb.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_fb.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_fifo.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_fifo.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_reg.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_reg.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_render.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_render.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_setup.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_setup.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + +build src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj: C_COMPILER__voodoo_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/video/vid_voodoo_texture.c || cmake_object_order_depends_target_voodoo + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\video\CMakeFiles\voodoo.dir\vid_voodoo_texture.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 + INCLUDES = -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new + OBJECT_DIR = src\video\CMakeFiles\voodoo.dir + OBJECT_FILE_DIR = src\video\CMakeFiles\voodoo.dir + TARGET_COMPILE_PDB = src\video\CMakeFiles\voodoo.dir\ + TARGET_PDB = "" + + + +############################################# +# Object library voodoo + +build src/video/voodoo: phony src/video/CMakeFiles/voodoo.dir/vid_voodoo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_banshee_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_blitter.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_display.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fb.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_fifo.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_reg.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_render.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_setup.c.obj src/video/CMakeFiles/voodoo.dir/vid_voodoo_texture.c.obj + + +############################################# +# Utility command for package + +build src/video/CMakeFiles/package.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/video/package: phony src/video/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/video/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/video/package_source: phony src/video/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/video/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\video && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/video/edit_cache: phony src/video/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/video/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\video && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/video/rebuild_cache: phony src/video/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/video/list_install_components: phony + + +############################################# +# Utility command for install + +build src/video/CMakeFiles/install.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\video && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/video/install: phony src/video/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/video/CMakeFiles/install/local.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\video && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/video/install/local: phony src/video/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/video/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/video/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\video && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/video/install/strip: phony src/video/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# K:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target plat + + +############################################# +# Order-only phony target for plat + +build cmake_object_order_depends_target_plat: phony || src/qt/plat_autogen src/qt/plat_autogen/mocs_compilation.cpp src/qt/plat_autogen/timestamp src/qt/plat_autogen_timestamp_deps + +build src/qt/CMakeFiles/plat.dir/plat_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\plat_autogen\mocs_compilation.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\plat_autogen + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + +build src/qt/CMakeFiles/plat.dir/qt.c.obj: C_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\qt.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + +build src/qt/CMakeFiles/plat.dir/qt_main.cpp.obj: CXX_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_main.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\qt_main.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + +build src/qt/CMakeFiles/plat.dir/qt_platform.cpp.obj: CXX_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_platform.cpp || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\qt_platform.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + +build src/qt/CMakeFiles/plat.dir/win_dynld.c.obj: C_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/win_dynld.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\win_dynld.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + +build src/qt/CMakeFiles/plat.dir/win_joystick_rawinput.c.obj: C_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/win_joystick_rawinput.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\win_joystick_rawinput.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + +build src/qt/CMakeFiles/plat.dir/__/win/win_serial_passthrough.c.obj: C_COMPILER__plat_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/win/win_serial_passthrough.c || cmake_object_order_depends_target_plat + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\plat.dir\__\win\win_serial_passthrough.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\plat.dir\__\win + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_PDB = src\qt\libplat.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target plat + + +############################################# +# Link the static library src\qt\libplat.a + +build src/qt/libplat.a: CXX_STATIC_LIBRARY_LINKER__plat_Debug src/qt/CMakeFiles/plat.dir/plat_autogen/mocs_compilation.cpp.obj src/qt/CMakeFiles/plat.dir/qt.c.obj src/qt/CMakeFiles/plat.dir/qt_main.cpp.obj src/qt/CMakeFiles/plat.dir/qt_platform.cpp.obj src/qt/CMakeFiles/plat.dir/win_dynld.c.obj src/qt/CMakeFiles/plat.dir/win_joystick_rawinput.c.obj src/qt/CMakeFiles/plat.dir/__/win/win_serial_passthrough.c.obj || src/qt/plat_autogen src/qt/plat_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og + OBJECT_DIR = src\qt\CMakeFiles\plat.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\qt\CMakeFiles\plat.dir\plat.pdb + TARGET_FILE = src\qt\libplat.a + TARGET_PDB = src\qt\libplat.pdb + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target ui + + +############################################# +# Order-only phony target for ui + +build cmake_object_order_depends_target_ui: phony || src/qt/86box_ca-ES.qm src/qt/86box_cs-CZ.qm src/qt/86box_de-DE.qm src/qt/86box_en-GB.qm src/qt/86box_en-US.qm src/qt/86box_es-ES.qm src/qt/86box_fi-FI.qm src/qt/86box_fr-FR.qm src/qt/86box_hr-HR.qm src/qt/86box_hu-HU.qm src/qt/86box_it-IT.qm src/qt/86box_ja-JP.qm src/qt/86box_ko-KR.qm src/qt/86box_pl-PL.qm src/qt/86box_pt-BR.qm src/qt/86box_pt-PT.qm src/qt/86box_ru-RU.qm src/qt/86box_sk-SK.qm src/qt/86box_sl-SI.qm src/qt/86box_tr-TR.qm src/qt/86box_uk-UA.qm src/qt/86box_zh-CN.qm src/qt/86box_zh-TW.qm src/qt/ui_autogen src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp src/qt/ui_autogen/mocs_compilation.cpp src/qt/ui_autogen/timestamp src/qt/ui_autogen_timestamp_deps + +build src/qt/CMakeFiles/ui.dir/ui_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\ui_autogen\mocs_compilation.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\ui_autogen + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_ui.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_ui.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_ui.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_cdrom.c.obj: C_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_cdrom.c || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_cdrom.c.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_mainwindow.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mainwindow.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_machinestatus.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_machinestatus.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_mediamenu.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mediamenu.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_rendererstack.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_rendererstack.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_renderercommon.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_renderercommon.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_softwarerenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_softwarerenderer.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_hardwarerenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_hardwarerenderer.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_openglrenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_openglrenderer.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_opengloptions.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_opengloptions.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_opengloptionsdialog.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_opengloptionsdialog.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settings.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settings.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsmachine.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsmachine.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsdisplay.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsdisplay.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsinput.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsinput.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingssound.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingssound.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsnetwork.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsnetwork.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsports.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsports.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsstoragecontrollers.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsstoragecontrollers.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsharddisks.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsharddisks.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsfloppycdrom.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsfloppycdrom.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsotherremovable.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsotherremovable.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settingsotherperipherals.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settingsotherperipherals.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_settings_bus_tracking.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings_bus_tracking.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_settings_bus_tracking.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_deviceconfig.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_deviceconfig.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_joystickconfiguration.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_joystickconfiguration.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_filefield.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_filefield.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_newfloppydialog.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_newfloppydialog.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_harddiskdialog.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_harddiskdialog.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_harddrive_common.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddrive_common.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_harddrive_common.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_models_common.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_models_common.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_models_common.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_specifydimensions.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_specifydimensions.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_soundgain.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_soundgain.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_styleoverride.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_styleoverride.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_styleoverride.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_progsettings.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_progsettings.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_util.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_util.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_util.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_unixmanagerfilter.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_unixmanagerfilter.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_vulkanwindowrenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_vulkanwindowrenderer.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_vulkanrenderer.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_vulkanrenderer.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_mcadevicelist.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mcadevicelist.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_mediahistorymanager.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_mediahistorymanager.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_d3d9renderer.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_d3d9renderer.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_winrawinputfilter.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_winrawinputfilter.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/qt_winmanagerfilter.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\qt_winmanagerfilter.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\ui_autogen\VNU7RW3YIC\qrc_qt_resources.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\ui_autogen\VNU7RW3YIC + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + +build src/qt/CMakeFiles/ui.dir/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp.obj: CXX_COMPILER__ui_unscanned_Debug K$:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp || cmake_object_order_depends_target_ui + DEFINES = -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = src\qt\CMakeFiles\ui.dir\ui_autogen\EJRQKI7XPS\qrc_qt_translations.cpp.obj.d + FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 + INCLUDES = -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + OBJECT_FILE_DIR = src\qt\CMakeFiles\ui.dir\ui_autogen\EJRQKI7XPS + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_PDB = src\qt\libui.pdb + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target ui + + +############################################# +# Link the static library src\qt\libui.a + +build src/qt/libui.a: CXX_STATIC_LIBRARY_LINKER__ui_Debug src/qt/CMakeFiles/ui.dir/ui_autogen/mocs_compilation.cpp.obj src/qt/CMakeFiles/ui.dir/qt_ui.cpp.obj src/qt/CMakeFiles/ui.dir/qt_cdrom.c.obj src/qt/CMakeFiles/ui.dir/qt_mainwindow.cpp.obj src/qt/CMakeFiles/ui.dir/qt_machinestatus.cpp.obj src/qt/CMakeFiles/ui.dir/qt_mediamenu.cpp.obj src/qt/CMakeFiles/ui.dir/qt_rendererstack.cpp.obj src/qt/CMakeFiles/ui.dir/qt_renderercommon.cpp.obj src/qt/CMakeFiles/ui.dir/qt_softwarerenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_hardwarerenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_openglrenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_opengloptions.cpp.obj src/qt/CMakeFiles/ui.dir/qt_opengloptionsdialog.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settings.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsmachine.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsdisplay.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsinput.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingssound.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsnetwork.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsports.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsstoragecontrollers.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsharddisks.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsfloppycdrom.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsotherremovable.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settingsotherperipherals.cpp.obj src/qt/CMakeFiles/ui.dir/qt_settings_bus_tracking.cpp.obj src/qt/CMakeFiles/ui.dir/qt_deviceconfig.cpp.obj src/qt/CMakeFiles/ui.dir/qt_joystickconfiguration.cpp.obj src/qt/CMakeFiles/ui.dir/qt_filefield.cpp.obj src/qt/CMakeFiles/ui.dir/qt_newfloppydialog.cpp.obj src/qt/CMakeFiles/ui.dir/qt_harddiskdialog.cpp.obj src/qt/CMakeFiles/ui.dir/qt_harddrive_common.cpp.obj src/qt/CMakeFiles/ui.dir/qt_models_common.cpp.obj src/qt/CMakeFiles/ui.dir/qt_specifydimensions.cpp.obj src/qt/CMakeFiles/ui.dir/qt_soundgain.cpp.obj src/qt/CMakeFiles/ui.dir/qt_styleoverride.cpp.obj src/qt/CMakeFiles/ui.dir/qt_progsettings.cpp.obj src/qt/CMakeFiles/ui.dir/qt_util.cpp.obj src/qt/CMakeFiles/ui.dir/qt_unixmanagerfilter.cpp.obj src/qt/CMakeFiles/ui.dir/qt_vulkanwindowrenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_vulkanrenderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_mcadevicelist.cpp.obj src/qt/CMakeFiles/ui.dir/qt_mediahistorymanager.cpp.obj src/qt/CMakeFiles/ui.dir/qt_d3d9renderer.cpp.obj src/qt/CMakeFiles/ui.dir/qt_winrawinputfilter.cpp.obj src/qt/CMakeFiles/ui.dir/qt_winmanagerfilter.cpp.obj src/qt/CMakeFiles/ui.dir/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp.obj src/qt/CMakeFiles/ui.dir/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp.obj || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og + OBJECT_DIR = src\qt\CMakeFiles\ui.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = src\qt\CMakeFiles\ui.dir\ui.pdb + TARGET_FILE = src\qt\libui.a + TARGET_PDB = src\qt\libui.pdb + + +############################################# +# Utility command for package + +build src/qt/CMakeFiles/package.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build src/qt/package: phony src/qt/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build src/qt/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64 && C:\msys64\mingw64\bin\cpack.exe --config ./CPackSourceConfig.cmake K:/emu_dev/86Box_clean_ex_k/src/build64/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build src/qt/package_source: phony src/qt/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build src/qt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build src/qt/edit_cache: phony src/qt/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build src/qt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe --regenerate-during-build -SK:\emu_dev\86Box_clean_ex_k -BK:\emu_dev\86Box_clean_ex_k\src\build64" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build src/qt/rebuild_cache: phony src/qt/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build src/qt/list_install_components: phony + + +############################################# +# Utility command for install + +build src/qt/CMakeFiles/install.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build src/qt/install: phony src/qt/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build src/qt/CMakeFiles/install/local.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build src/qt/install/local: phony src/qt/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build src/qt/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/qt/all + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build src/qt/install/strip: phony src/qt/CMakeFiles/install/strip.util + + +############################################# +# Utility command for plat_autogen_timestamp_deps + +build src/qt/plat_autogen_timestamp_deps: phony src/qt/CMakeFiles/plat_autogen_timestamp_deps + + +############################################# +# Utility command for plat_autogen + +build src/qt/plat_autogen: phony src/qt/CMakeFiles/plat_autogen src/qt/plat_autogen/include/ui_qt_mainwindow.h src/qt/plat_autogen/include/ui_qt_rendererstack.h src/qt/plat_autogen/include/ui_qt_opengloptionsdialog.h src/qt/plat_autogen/include/ui_qt_settings.h src/qt/plat_autogen/include/ui_qt_settingsmachine.h src/qt/plat_autogen/include/ui_qt_settingsdisplay.h src/qt/plat_autogen/include/ui_qt_settingsinput.h src/qt/plat_autogen/include/ui_qt_settingssound.h src/qt/plat_autogen/include/ui_qt_settingsnetwork.h src/qt/plat_autogen/include/ui_qt_settingsports.h src/qt/plat_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/plat_autogen/include/ui_qt_settingsharddisks.h src/qt/plat_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/plat_autogen/include/ui_qt_settingsotherremovable.h src/qt/plat_autogen/include/ui_qt_settingsotherperipherals.h src/qt/plat_autogen/include/ui_qt_deviceconfig.h src/qt/plat_autogen/include/ui_qt_joystickconfiguration.h src/qt/plat_autogen/include/ui_qt_filefield.h src/qt/plat_autogen/include/ui_qt_newfloppydialog.h src/qt/plat_autogen/include/ui_qt_harddiskdialog.h src/qt/plat_autogen/include/ui_qt_specifydimensions.h src/qt/plat_autogen/include/ui_qt_soundgain.h src/qt/plat_autogen/include/ui_qt_progsettings.h src/qt/plat_autogen/include/ui_qt_mcadevicelist.h src/qt/plat_autogen/timestamp src/qt/plat_autogen/mocs_compilation.cpp src/qt/plat_autogen_timestamp_deps + + +############################################# +# Utility command for ui_autogen_timestamp_deps + +build src/qt/ui_autogen_timestamp_deps: phony src/qt/CMakeFiles/ui_autogen_timestamp_deps + + +############################################# +# Utility command for ui_autogen + +build src/qt/ui_autogen: phony src/qt/CMakeFiles/ui_autogen src/qt/ui_autogen/include/ui_qt_mainwindow.h src/qt/ui_autogen/include/ui_qt_rendererstack.h src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h src/qt/ui_autogen/include/ui_qt_settings.h src/qt/ui_autogen/include/ui_qt_settingsmachine.h src/qt/ui_autogen/include/ui_qt_settingsdisplay.h src/qt/ui_autogen/include/ui_qt_settingsinput.h src/qt/ui_autogen/include/ui_qt_settingssound.h src/qt/ui_autogen/include/ui_qt_settingsnetwork.h src/qt/ui_autogen/include/ui_qt_settingsports.h src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/ui_autogen/include/ui_qt_settingsharddisks.h src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h src/qt/ui_autogen/include/ui_qt_deviceconfig.h src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h src/qt/ui_autogen/include/ui_qt_filefield.h src/qt/ui_autogen/include/ui_qt_newfloppydialog.h src/qt/ui_autogen/include/ui_qt_harddiskdialog.h src/qt/ui_autogen/include/ui_qt_specifydimensions.h src/qt/ui_autogen/include/ui_qt_soundgain.h src/qt/ui_autogen/include/ui_qt_progsettings.h src/qt/ui_autogen/include/ui_qt_mcadevicelist.h src/qt/ui_autogen/timestamp src/qt/ui_autogen/mocs_compilation.cpp src/qt/ui_autogen_timestamp_deps + + +############################################# +# Custom command for src\qt\plat_autogen\timestamp + +build src/qt/plat_autogen/timestamp src/qt/plat_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}src/qt/plat_autogen/timestamp ${cmake_ninja_workdir}src/qt/plat_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/msys64/mingw64/bin/moc.exe C$:/msys64/mingw64/bin/uic.exe || src/qt/plat_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -E cmake_autogen K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/CMakeFiles/plat_autogen.dir/AutogenInfo.json Debug && C:\msys64\mingw64\bin\cmake.exe -E touch K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/timestamp && C:\msys64\mingw64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile K:/emu_dev/86Box_clean_ex_k K:/emu_dev/86Box_clean_ex_k/src/qt K:/emu_dev/86Box_clean_ex_k/src/build64 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/deps K:/emu_dev/86Box_clean_ex_k/src/build64/CMakeFiles/d/5855daefdfc38a2d76d52cfd18ac44812ab55dc6718b2b0147edf933ff945169.d" + DESC = Automatic MOC and UIC for target plat + depfile = K:/emu_dev/86Box_clean_ex_k/src/build64/CMakeFiles/d/5855daefdfc38a2d76d52cfd18ac44812ab55dc6718b2b0147edf933ff945169.d + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ca-ES.qm + +build src/qt/86box_ca-ES.qm | ${cmake_ninja_workdir}src/qt/86box_ca-ES.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ca-ES.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ca-ES.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ca-ES.qm" + DESC = Generating 86box_ca-ES.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_cs-CZ.qm + +build src/qt/86box_cs-CZ.qm | ${cmake_ninja_workdir}src/qt/86box_cs-CZ.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/cs-CZ.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/cs-CZ.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_cs-CZ.qm" + DESC = Generating 86box_cs-CZ.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_de-DE.qm + +build src/qt/86box_de-DE.qm | ${cmake_ninja_workdir}src/qt/86box_de-DE.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/de-DE.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/de-DE.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_de-DE.qm" + DESC = Generating 86box_de-DE.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_en-GB.qm + +build src/qt/86box_en-GB.qm | ${cmake_ninja_workdir}src/qt/86box_en-GB.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-GB.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-GB.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_en-GB.qm" + DESC = Generating 86box_en-GB.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_en-US.qm + +build src/qt/86box_en-US.qm | ${cmake_ninja_workdir}src/qt/86box_en-US.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-US.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/en-US.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_en-US.qm" + DESC = Generating 86box_en-US.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_es-ES.qm + +build src/qt/86box_es-ES.qm | ${cmake_ninja_workdir}src/qt/86box_es-ES.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/es-ES.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/es-ES.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_es-ES.qm" + DESC = Generating 86box_es-ES.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_fi-FI.qm + +build src/qt/86box_fi-FI.qm | ${cmake_ninja_workdir}src/qt/86box_fi-FI.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/fi-FI.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/fi-FI.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_fi-FI.qm" + DESC = Generating 86box_fi-FI.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_fr-FR.qm + +build src/qt/86box_fr-FR.qm | ${cmake_ninja_workdir}src/qt/86box_fr-FR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/fr-FR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/fr-FR.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_fr-FR.qm" + DESC = Generating 86box_fr-FR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_hr-HR.qm + +build src/qt/86box_hr-HR.qm | ${cmake_ninja_workdir}src/qt/86box_hr-HR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/hr-HR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/hr-HR.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_hr-HR.qm" + DESC = Generating 86box_hr-HR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_hu-HU.qm + +build src/qt/86box_hu-HU.qm | ${cmake_ninja_workdir}src/qt/86box_hu-HU.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/hu-HU.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/hu-HU.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_hu-HU.qm" + DESC = Generating 86box_hu-HU.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_it-IT.qm + +build src/qt/86box_it-IT.qm | ${cmake_ninja_workdir}src/qt/86box_it-IT.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/it-IT.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/it-IT.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_it-IT.qm" + DESC = Generating 86box_it-IT.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ja-JP.qm + +build src/qt/86box_ja-JP.qm | ${cmake_ninja_workdir}src/qt/86box_ja-JP.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ja-JP.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ja-JP.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ja-JP.qm" + DESC = Generating 86box_ja-JP.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ko-KR.qm + +build src/qt/86box_ko-KR.qm | ${cmake_ninja_workdir}src/qt/86box_ko-KR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ko-KR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ko-KR.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ko-KR.qm" + DESC = Generating 86box_ko-KR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_pl-PL.qm + +build src/qt/86box_pl-PL.qm | ${cmake_ninja_workdir}src/qt/86box_pl-PL.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/pl-PL.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/pl-PL.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pl-PL.qm" + DESC = Generating 86box_pl-PL.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_pt-BR.qm + +build src/qt/86box_pt-BR.qm | ${cmake_ninja_workdir}src/qt/86box_pt-BR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-BR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-BR.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pt-BR.qm" + DESC = Generating 86box_pt-BR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_pt-PT.qm + +build src/qt/86box_pt-PT.qm | ${cmake_ninja_workdir}src/qt/86box_pt-PT.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-PT.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/pt-PT.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pt-PT.qm" + DESC = Generating 86box_pt-PT.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_ru-RU.qm + +build src/qt/86box_ru-RU.qm | ${cmake_ninja_workdir}src/qt/86box_ru-RU.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/ru-RU.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/ru-RU.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ru-RU.qm" + DESC = Generating 86box_ru-RU.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_sk-SK.qm + +build src/qt/86box_sk-SK.qm | ${cmake_ninja_workdir}src/qt/86box_sk-SK.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/sk-SK.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/sk-SK.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_sk-SK.qm" + DESC = Generating 86box_sk-SK.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_sl-SI.qm + +build src/qt/86box_sl-SI.qm | ${cmake_ninja_workdir}src/qt/86box_sl-SI.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/sl-SI.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/sl-SI.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_sl-SI.qm" + DESC = Generating 86box_sl-SI.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_tr-TR.qm + +build src/qt/86box_tr-TR.qm | ${cmake_ninja_workdir}src/qt/86box_tr-TR.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/tr-TR.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/tr-TR.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_tr-TR.qm" + DESC = Generating 86box_tr-TR.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_uk-UA.qm + +build src/qt/86box_uk-UA.qm | ${cmake_ninja_workdir}src/qt/86box_uk-UA.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/uk-UA.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/uk-UA.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_uk-UA.qm" + DESC = Generating 86box_uk-UA.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_zh-CN.qm + +build src/qt/86box_zh-CN.qm | ${cmake_ninja_workdir}src/qt/86box_zh-CN.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-CN.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-CN.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_zh-CN.qm" + DESC = Generating 86box_zh-CN.qm + restat = 1 + + +############################################# +# Custom command for src\qt\86box_zh-TW.qm + +build src/qt/86box_zh-TW.qm | ${cmake_ninja_workdir}src/qt/86box_zh-TW.qm: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-TW.po || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\qt && C:\msys64\mingw64\bin\lconvert.exe -i K:/emu_dev/86Box_clean_ex_k/src/qt/languages/zh-TW.po -o K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_zh-TW.qm" + DESC = Generating 86box_zh-TW.qm + restat = 1 + + +############################################# +# Custom command for src\qt\ui_autogen\timestamp + +build src/qt/ui_autogen/timestamp src/qt/ui_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}src/qt/ui_autogen/timestamp ${cmake_ninja_workdir}src/qt/ui_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/msys64/mingw64/bin/moc.exe C$:/msys64/mingw64/bin/uic.exe || src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -E cmake_autogen K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/CMakeFiles/ui_autogen.dir/AutogenInfo.json Debug && C:\msys64\mingw64\bin\cmake.exe -E touch K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/timestamp && C:\msys64\mingw64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile K:/emu_dev/86Box_clean_ex_k K:/emu_dev/86Box_clean_ex_k/src/qt K:/emu_dev/86Box_clean_ex_k/src/build64 K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/deps K:/emu_dev/86Box_clean_ex_k/src/build64/CMakeFiles/d/68398877cc15e8684136c75862a45eb5cf187353264c79ba5458e4f7b4d1b22d.d" + DESC = Automatic MOC and UIC for target ui + depfile = K:/emu_dev/86Box_clean_ex_k/src/build64/CMakeFiles/d/68398877cc15e8684136c75862a45eb5cf187353264c79ba5458e4f7b4d1b22d.d + restat = 1 + + +############################################# +# Custom command for src\qt\ui_autogen\VNU7RW3YIC\qrc_qt_resources.cpp + +build src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp | ${cmake_ninja_workdir}src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp: CUSTOM_COMMAND K$:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_resources_VNU7RW3YIC_Info.json K$:/emu_dev/86Box_clean_ex_k/src/qt/texture_vert.spv K$:/emu_dev/86Box_clean_ex_k/src/qt/texture_frag.spv K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/ports.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/network_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-green.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/network.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-red.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-gray.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/sound.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/other_peripherals.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/input_devices.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/other_removable_devices.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/display.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/machine.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-yellow.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_and_cdrom_drives.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/storage_controllers.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_disabled.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/network_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty_active.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/acpi_shutdown.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cad.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/run.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_reset.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/pause.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/settings.ico K$:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cae.ico C$:/msys64/mingw64/bin/rcc.exe || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -E cmake_autorcc K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_resources_VNU7RW3YIC_Info.json Debug" + DESC = Automatic RCC for ../qt_resources.qrc + restat = 1 + + +############################################# +# Custom command for src\qt\ui_autogen\EJRQKI7XPS\qrc_qt_translations.cpp + +build src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp | ${cmake_ninja_workdir}src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp: CUSTOM_COMMAND src/qt/qt_translations.qrc src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_translations_EJRQKI7XPS_Info.json src/qt/86box_sl-SI.qm src/qt/86box_ja-JP.qm src/qt/86box_tr-TR.qm src/qt/86box_zh-TW.qm src/qt/86box_en-GB.qm src/qt/86box_de-DE.qm src/qt/86box_zh-CN.qm src/qt/86box_fr-FR.qm src/qt/86box_en-US.qm src/qt/86box_pt-PT.qm src/qt/86box_hr-HR.qm src/qt/86box_ru-RU.qm src/qt/86box_ko-KR.qm src/qt/86box_fi-FI.qm src/qt/86box_sk-SK.qm src/qt/86box_it-IT.qm src/qt/86box_es-ES.qm src/qt/86box_cs-CZ.qm src/qt/86box_hu-HU.qm src/qt/86box_pt-BR.qm src/qt/86box_pl-PL.qm src/qt/86box_ca-ES.qm src/qt/86box_uk-UA.qm C$:/msys64/mingw64/bin/rcc.exe || src/qt/ui_autogen src/qt/ui_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D K:\emu_dev\86Box_clean_ex_k\src\build64\src\qt && C:\msys64\mingw64\bin\cmake.exe -E cmake_autorcc K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/CMakeFiles/ui_autogen.dir/AutoRcc_qt_translations_EJRQKI7XPS_Info.json Debug" + DESC = Automatic RCC for qt_translations.qrc + restat = 1 + + +############################################# +# Phony custom command for src\qt\CMakeFiles\plat_autogen_timestamp_deps + +build src/qt/CMakeFiles/plat_autogen_timestamp_deps | ${cmake_ninja_workdir}src/qt/CMakeFiles/plat_autogen_timestamp_deps: phony C$:/msys64/mingw64/lib/libQt5Network.dll.a C$:/msys64/mingw64/bin/uic.exe C$:/msys64/mingw64/lib/libQt5Widgets.dll.a C$:/msys64/mingw64/lib/libQt5Gui.dll.a C$:/msys64/mingw64/bin/moc.exe + + +############################################# +# Phony custom command for src\qt\CMakeFiles\plat_autogen + +build src/qt/CMakeFiles/plat_autogen src/qt/plat_autogen/include/ui_qt_mainwindow.h src/qt/plat_autogen/include/ui_qt_rendererstack.h src/qt/plat_autogen/include/ui_qt_opengloptionsdialog.h src/qt/plat_autogen/include/ui_qt_settings.h src/qt/plat_autogen/include/ui_qt_settingsmachine.h src/qt/plat_autogen/include/ui_qt_settingsdisplay.h src/qt/plat_autogen/include/ui_qt_settingsinput.h src/qt/plat_autogen/include/ui_qt_settingssound.h src/qt/plat_autogen/include/ui_qt_settingsnetwork.h src/qt/plat_autogen/include/ui_qt_settingsports.h src/qt/plat_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/plat_autogen/include/ui_qt_settingsharddisks.h src/qt/plat_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/plat_autogen/include/ui_qt_settingsotherremovable.h src/qt/plat_autogen/include/ui_qt_settingsotherperipherals.h src/qt/plat_autogen/include/ui_qt_deviceconfig.h src/qt/plat_autogen/include/ui_qt_joystickconfiguration.h src/qt/plat_autogen/include/ui_qt_filefield.h src/qt/plat_autogen/include/ui_qt_newfloppydialog.h src/qt/plat_autogen/include/ui_qt_harddiskdialog.h src/qt/plat_autogen/include/ui_qt_specifydimensions.h src/qt/plat_autogen/include/ui_qt_soundgain.h src/qt/plat_autogen/include/ui_qt_progsettings.h src/qt/plat_autogen/include/ui_qt_mcadevicelist.h | ${cmake_ninja_workdir}src/qt/CMakeFiles/plat_autogen ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_mainwindow.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_rendererstack.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_opengloptionsdialog.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settings.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsmachine.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsdisplay.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsinput.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingssound.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsnetwork.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsports.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsstoragecontrollers.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsharddisks.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsfloppycdrom.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsotherremovable.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_settingsotherperipherals.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_deviceconfig.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_joystickconfiguration.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_filefield.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_newfloppydialog.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_harddiskdialog.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_specifydimensions.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_soundgain.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_progsettings.h ${cmake_ninja_workdir}src/qt/plat_autogen/include/ui_qt_mcadevicelist.h: phony src/qt/plat_autogen/timestamp || src/qt/plat_autogen_timestamp_deps + + +############################################# +# Phony custom command for src\qt\CMakeFiles\ui_autogen_timestamp_deps + +build src/qt/CMakeFiles/ui_autogen_timestamp_deps | ${cmake_ninja_workdir}src/qt/CMakeFiles/ui_autogen_timestamp_deps: phony C$:/msys64/mingw64/lib/libQt5Network.dll.a C$:/msys64/mingw64/bin/uic.exe C$:/msys64/mingw64/lib/libQt5Widgets.dll.a C$:/msys64/mingw64/lib/libQt5OpenGL.dll.a C$:/msys64/mingw64/lib/libQt5Gui.dll.a C$:/msys64/mingw64/bin/moc.exe + + +############################################# +# Phony custom command for src\qt\CMakeFiles\ui_autogen + +build src/qt/CMakeFiles/ui_autogen src/qt/ui_autogen/include/ui_qt_mainwindow.h src/qt/ui_autogen/include/ui_qt_rendererstack.h src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h src/qt/ui_autogen/include/ui_qt_settings.h src/qt/ui_autogen/include/ui_qt_settingsmachine.h src/qt/ui_autogen/include/ui_qt_settingsdisplay.h src/qt/ui_autogen/include/ui_qt_settingsinput.h src/qt/ui_autogen/include/ui_qt_settingssound.h src/qt/ui_autogen/include/ui_qt_settingsnetwork.h src/qt/ui_autogen/include/ui_qt_settingsports.h src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h src/qt/ui_autogen/include/ui_qt_settingsharddisks.h src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h src/qt/ui_autogen/include/ui_qt_deviceconfig.h src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h src/qt/ui_autogen/include/ui_qt_filefield.h src/qt/ui_autogen/include/ui_qt_newfloppydialog.h src/qt/ui_autogen/include/ui_qt_harddiskdialog.h src/qt/ui_autogen/include/ui_qt_specifydimensions.h src/qt/ui_autogen/include/ui_qt_soundgain.h src/qt/ui_autogen/include/ui_qt_progsettings.h src/qt/ui_autogen/include/ui_qt_mcadevicelist.h | ${cmake_ninja_workdir}src/qt/CMakeFiles/ui_autogen ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_mainwindow.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_rendererstack.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settings.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsmachine.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsdisplay.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsinput.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingssound.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsnetwork.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsports.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsharddisks.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_deviceconfig.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_filefield.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_newfloppydialog.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_harddiskdialog.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_specifydimensions.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_soundgain.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_progsettings.h ${cmake_ninja_workdir}src/qt/ui_autogen/include/ui_qt_mcadevicelist.h: phony src/qt/ui_autogen/timestamp || src/qt/ui_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build 86Box: phony src/86Box.exe + +build 86Box.exe: phony src/86Box.exe + +build cdrom: phony src/cdrom/cdrom + +build cgt: phony src/cpu/cgt + +build chipset: phony src/chipset/chipset + +build cpu: phony src/cpu/cpu + +build dev: phony src/device/dev + +build dynarec: phony src/codegen_new/dynarec + +build fdd: phony src/floppy/fdd + +build game: phony src/game/game + +build hdd: phony src/disk/hdd + +build libminivhd.a: phony src/disk/minivhd/libminivhd.a + +build libmt32emu.a: phony src/sound/munt/libmt32emu.a + +build libplat.a: phony src/qt/libplat.a + +build libresid-fp.a: phony src/sound/resid-fp/libresid-fp.a + +build libui.a: phony src/qt/libui.a + +build libymfm.a: phony src/sound/ymfm/libymfm.a + +build mch: phony src/machine/mch + +build mem: phony src/mem/mem + +build minivhd: phony src/disk/minivhd/libminivhd.a + +build mo: phony src/disk/mo + +build mt32emu: phony src/sound/munt/libmt32emu.a + +build net: phony src/network/net + +build plat: phony src/qt/libplat.a + +build plat_autogen: phony src/qt/plat_autogen + +build plat_autogen_timestamp_deps: phony src/qt/plat_autogen_timestamp_deps + +build print: phony src/printer/print + +build resid-fp: phony src/sound/resid-fp/libresid-fp.a + +build scsi: phony src/scsi/scsi + +build sio: phony src/sio/sio + +build snd: phony src/sound/snd + +build softfloat: phony src/cpu/softfloat/softfloat + +build ui: phony src/qt/libui.a + +build ui_autogen: phony src/qt/ui_autogen + +build ui_autogen_timestamp_deps: phony src/qt/ui_autogen_timestamp_deps + +build vid: phony src/video/vid + +build voodoo: phony src/video/voodoo + +build ymfm: phony src/sound/ymfm/libymfm.a + +build zip: phony src/disk/zip + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64 + +build all: phony src/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src + +build src/all: phony src/86Box.exe src/cdrom/all src/chipset/all src/cpu/all src/codegen_new/all src/device/all src/disk/all src/floppy/all src/game/all src/machine/all src/mem/all src/network/all src/printer/all src/sio/all src/scsi/all src/sound/all src/video/all src/qt/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/cdrom + +build src/cdrom/all: phony src/cdrom/cdrom + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/chipset + +build src/chipset/all: phony src/chipset/chipset + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/codegen_new + +build src/codegen_new/all: phony src/codegen_new/dynarec + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/cpu + +build src/cpu/all: phony src/cpu/cpu src/cpu/cgt src/cpu/softfloat/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/cpu/softfloat + +build src/cpu/softfloat/all: phony src/cpu/softfloat/softfloat + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/device + +build src/device/all: phony src/device/dev + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/disk + +build src/disk/all: phony src/disk/hdd src/disk/zip src/disk/mo src/disk/minivhd/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/disk/minivhd + +build src/disk/minivhd/all: phony src/disk/minivhd/libminivhd.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/floppy + +build src/floppy/all: phony src/floppy/fdd + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/game + +build src/game/all: phony src/game/game + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/machine + +build src/machine/all: phony src/machine/mch + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/mem + +build src/mem/all: phony src/mem/mem + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/network + +build src/network/all: phony src/network/net + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/printer + +build src/printer/all: phony src/printer/print + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt + +build src/qt/all: phony src/qt/libplat.a src/qt/libui.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/scsi + +build src/scsi/all: phony src/scsi/scsi + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/sio + +build src/sio/all: phony src/sio/sio + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound + +build src/sound/all: phony src/sound/snd src/sound/munt/all src/sound/ymfm/all src/sound/resid-fp/all + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/munt + +build src/sound/munt/all: phony src/sound/munt/libmt32emu.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/resid-fp + +build src/sound/resid-fp/all: phony src/sound/resid-fp/libresid-fp.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/ymfm + +build src/sound/ymfm/all: phony src/sound/ymfm/libymfm.a + +# ============================================================================= + +############################################# +# Folder: K:/emu_dev/86Box_clean_ex_k/src/build64/src/video + +build src/video/all: phony src/video/vid src/video/voodoo + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJp2Plugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMngPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake C$:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5/Qt5Config.cmake C$:/msys64/mingw64/lib/cmake/Qt5/Qt5ConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5/Qt5ModuleLocation.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2Config.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2ConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2Targets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2Targets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2mainTargets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2mainTargets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2staticTargets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2staticTargets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2testTargets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2testTargets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/sdlfind.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCCompiler.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeCCompilerABI.c C$:/msys64/mingw64/share/cmake/Modules/CMakeCInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCXXCompiler.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeCXXCompilerABI.cpp C$:/msys64/mingw64/share/cmake/Modules/CMakeCXXInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCommonLanguageInclude.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCompilerIdDetection.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDependentOption.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompileFeatures.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompilerABI.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompilerId.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineRCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineSystem.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeFindBinUtils.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeGenericSystem.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeInitializeConfigs.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeLanguageInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeNinjaFindMake.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseArguments.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeRCCompiler.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeRCInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeSystem.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeSystemSpecificInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestCXXCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestCompilerCommon.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestRCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CPack.cmake C$:/msys64/mingw64/share/cmake/Modules/CPackComponent.cmake C$:/msys64/mingw64/share/cmake/Modules/CheckCSourceCompiles.cmake C$:/msys64/mingw64/share/cmake/Modules/CheckIncludeFile.cmake C$:/msys64/mingw64/share/cmake/Modules/CheckLibraryExists.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-C.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-CXX.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/FeatureSummary.cmake C$:/msys64/mingw64/share/cmake/Modules/FindFreetype.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPNG.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPackageMessage.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPkgConfig.cmake C$:/msys64/mingw64/share/cmake/Modules/FindThreads.cmake C$:/msys64/mingw64/share/cmake/Modules/FindZLIB.cmake C$:/msys64/mingw64/share/cmake/Modules/Internal/CheckSourceCompiles.cmake C$:/msys64/mingw64/share/cmake/Modules/Internal/FeatureTesting.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-Determine-CXX.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-C.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-Initialize.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-windres.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/WindowsPaths.cmake C$:/msys64/mingw64/share/cmake/Modules/SelectLibraryConfigurations.cmake C$:/msys64/mingw64/share/cmake/Templates/CPackConfig.cmake.in CMakeCache.txt CMakeFiles/3.27.6/CMakeCCompiler.cmake CMakeFiles/3.27.6/CMakeCXXCompiler.cmake CMakeFiles/3.27.6/CMakeRCCompiler.cmake CMakeFiles/3.27.6/CMakeSystem.cmake K$:/emu_dev/86Box_clean_ex_k/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc-x86_64.cmake K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc.cmake K$:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/arch_detect.c K$:/emu_dev/86Box_clean_ex_k/src/cdrom/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/chipset/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/device/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/floppy/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/game/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/include/86box/version.h.in K$:/emu_dev/86Box_clean_ex_k/src/machine/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/mem/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/network/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/printer/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc K$:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc K$:/emu_dev/86Box_clean_ex_k/src/scsi/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sio/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/video/CMakeLists.txt src/qt/qt_translations.qrc + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJp2Plugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMngPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake C$:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake C$:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake C$:/msys64/mingw64/lib/cmake/Qt5/Qt5Config.cmake C$:/msys64/mingw64/lib/cmake/Qt5/Qt5ConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/Qt5/Qt5ModuleLocation.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2Config.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2ConfigVersion.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2Targets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2Targets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2mainTargets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2mainTargets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2staticTargets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2staticTargets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2testTargets-release.cmake C$:/msys64/mingw64/lib/cmake/SDL2/SDL2testTargets.cmake C$:/msys64/mingw64/lib/cmake/SDL2/sdlfind.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCCompiler.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeCCompilerABI.c C$:/msys64/mingw64/share/cmake/Modules/CMakeCInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCXXCompiler.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeCXXCompilerABI.cpp C$:/msys64/mingw64/share/cmake/Modules/CMakeCXXInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCommonLanguageInclude.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeCompilerIdDetection.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDependentOption.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompileFeatures.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompilerABI.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineCompilerId.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineRCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeDetermineSystem.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeFindBinUtils.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeGenericSystem.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeInitializeConfigs.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeLanguageInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeNinjaFindMake.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseArguments.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeRCCompiler.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeRCInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeSystem.cmake.in C$:/msys64/mingw64/share/cmake/Modules/CMakeSystemSpecificInformation.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestCXXCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestCompilerCommon.cmake C$:/msys64/mingw64/share/cmake/Modules/CMakeTestRCCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/CPack.cmake C$:/msys64/mingw64/share/cmake/Modules/CPackComponent.cmake C$:/msys64/mingw64/share/cmake/Modules/CheckCSourceCompiles.cmake C$:/msys64/mingw64/share/cmake/Modules/CheckIncludeFile.cmake C$:/msys64/mingw64/share/cmake/Modules/CheckLibraryExists.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-C.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-CXX.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/GNU.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/msys64/mingw64/share/cmake/Modules/FeatureSummary.cmake C$:/msys64/mingw64/share/cmake/Modules/FindFreetype.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPNG.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPackageMessage.cmake C$:/msys64/mingw64/share/cmake/Modules/FindPkgConfig.cmake C$:/msys64/mingw64/share/cmake/Modules/FindThreads.cmake C$:/msys64/mingw64/share/cmake/Modules/FindZLIB.cmake C$:/msys64/mingw64/share/cmake/Modules/Internal/CheckSourceCompiles.cmake C$:/msys64/mingw64/share/cmake/Modules/Internal/FeatureTesting.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-Determine-CXX.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-C.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-GNU.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-Initialize.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows-windres.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/Windows.cmake C$:/msys64/mingw64/share/cmake/Modules/Platform/WindowsPaths.cmake C$:/msys64/mingw64/share/cmake/Modules/SelectLibraryConfigurations.cmake C$:/msys64/mingw64/share/cmake/Templates/CPackConfig.cmake.in CMakeCache.txt CMakeFiles/3.27.6/CMakeCCompiler.cmake CMakeFiles/3.27.6/CMakeCXXCompiler.cmake CMakeFiles/3.27.6/CMakeRCCompiler.cmake CMakeFiles/3.27.6/CMakeSystem.cmake K$:/emu_dev/86Box_clean_ex_k/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc-x86_64.cmake K$:/emu_dev/86Box_clean_ex_k/cmake/flags-gcc.cmake K$:/emu_dev/86Box_clean_ex_k/src/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/arch_detect.c K$:/emu_dev/86Box_clean_ex_k/src/cdrom/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/chipset/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/codegen_new/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/device/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/disk/minivhd/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/floppy/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/game/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/include/86box/version.h.in K$:/emu_dev/86Box_clean_ex_k/src/machine/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/mem/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/network/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/printer/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc K$:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc K$:/emu_dev/86Box_clean_ex_k/src/scsi/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sio/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/munt/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/sound/ymfm/CMakeLists.txt K$:/emu_dev/86Box_clean_ex_k/src/video/CMakeLists.txt src/qt/qt_translations.qrc: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Debug + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/src/build64/cmake_install.cmake b/src/build64/cmake_install.cmake new file mode 100644 index 000000000..be4bf2c14 --- /dev/null +++ b/src/build64/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "K:/emu_dev/86Box_clean_ex_k/src/build64/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/src/build64/compile_commands.json b/src/build64/compile_commands.json new file mode 100644 index 000000000..c0712d81d --- /dev/null +++ b/src/build64/compile_commands.json @@ -0,0 +1,3290 @@ +[ +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\86box.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\86box.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\86box.c", + "output": "src\\CMakeFiles\\86Box.dir\\86box.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\config.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\config.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\config.c", + "output": "src\\CMakeFiles\\86Box.dir\\config.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\log.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\log.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\log.c", + "output": "src\\CMakeFiles\\86Box.dir\\log.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\random.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\random.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\random.c", + "output": "src\\CMakeFiles\\86Box.dir\\random.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\timer.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\timer.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\timer.c", + "output": "src\\CMakeFiles\\86Box.dir\\timer.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\io.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\io.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\io.c", + "output": "src\\CMakeFiles\\86Box.dir\\io.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\acpi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\acpi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\acpi.c", + "output": "src\\CMakeFiles\\86Box.dir\\acpi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\apm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\apm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\apm.c", + "output": "src\\CMakeFiles\\86Box.dir\\apm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\dma.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\dma.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\dma.c", + "output": "src\\CMakeFiles\\86Box.dir\\dma.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\ddma.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ddma.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ddma.c", + "output": "src\\CMakeFiles\\86Box.dir\\ddma.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nmi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nmi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nmi.c", + "output": "src\\CMakeFiles\\86Box.dir\\nmi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pic.c", + "output": "src\\CMakeFiles\\86Box.dir\\pic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pit.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pit.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pit.c", + "output": "src\\CMakeFiles\\86Box.dir\\pit.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pit_fast.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pit_fast.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pit_fast.c", + "output": "src\\CMakeFiles\\86Box.dir\\pit_fast.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\port_6x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\port_6x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\port_6x.c", + "output": "src\\CMakeFiles\\86Box.dir\\port_6x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\port_92.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\port_92.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\port_92.c", + "output": "src\\CMakeFiles\\86Box.dir\\port_92.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\ppi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ppi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ppi.c", + "output": "src\\CMakeFiles\\86Box.dir\\ppi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\pci.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\pci.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\pci.c", + "output": "src\\CMakeFiles\\86Box.dir\\pci.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\mca.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mca.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mca.c", + "output": "src\\CMakeFiles\\86Box.dir\\mca.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\usb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\usb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\usb.c", + "output": "src\\CMakeFiles\\86Box.dir\\usb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\fifo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo.c", + "output": "src\\CMakeFiles\\86Box.dir\\fifo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\fifo8.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo8.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\fifo8.c", + "output": "src\\CMakeFiles\\86Box.dir\\fifo8.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\device.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device.c", + "output": "src\\CMakeFiles\\86Box.dir\\device.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nvr.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr.c", + "output": "src\\CMakeFiles\\86Box.dir\\nvr.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nvr_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_at.c", + "output": "src\\CMakeFiles\\86Box.dir\\nvr_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\nvr_ps2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_ps2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\nvr_ps2.c", + "output": "src\\CMakeFiles\\86Box.dir\\nvr_ps2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\machine_status.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine_status.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine_status.c", + "output": "src\\CMakeFiles\\86Box.dir\\machine_status.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\ini.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ini.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ini.c", + "output": "src\\CMakeFiles\\86Box.dir\\ini.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\thread.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\thread.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\thread.cpp", + "output": "src\\CMakeFiles\\86Box.dir\\thread.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/freetype2 -isystem C:/msys64/mingw64/include/SDL2 -isystem C:/msys64/mingw64/include/slirp -isystem C:/msys64/mingw64/include/glib-2.0 -isystem C:/msys64/mingw64/lib/glib-2.0/include -isystem C:/msys64/mingw64/include/harfbuzz -isystem C:/msys64/mingw64/include/libpng16 -isystem C:/msys64/mingw64/include/rtmidi -isystem C:/msys64/mingw64/include/opus -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -pthread -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main -o src\\CMakeFiles\\86Box.dir\\discord.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\discord.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\discord.c", + "output": "src\\CMakeFiles\\86Box.dir\\discord.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\windres.exe -O coff -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -I K:/emu_dev/86Box_clean_ex_k/src/build64/src/include -I K:/emu_dev/86Box_clean_ex_k/src/include -I K:/emu_dev/86Box_clean_ex_k/src/cpu -I K:/emu_dev/86Box_clean_ex_k/src/codegen_new -I C:/msys64/mingw64/include/freetype2 -I C:/msys64/mingw64/include -I C:/msys64/mingw64/include/SDL2 -I C:/msys64/mingw64/include/slirp -I C:/msys64/mingw64/include/glib-2.0 -I C:/msys64/mingw64/lib/glib-2.0/include -I C:/msys64/mingw64/include/harfbuzz -I C:/msys64/mingw64/include/libpng16 -I C:/msys64/mingw64/include/rtmidi -I C:/msys64/mingw64/include/opus -D__WINDOWS_MM__ -D__WINDOWS_WINKS__ -Dmain=SDL_main K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\86Box-qt.rc src\\CMakeFiles\\86Box.dir\\win\\86Box-qt.rc.obj", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\86Box-qt.rc", + "output": "src\\CMakeFiles\\86Box.dir\\win\\86Box-qt.rc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_backend.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_backend.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_backend.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_backend.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_viso.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_viso.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image_viso.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image_viso.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_image.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_image.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_mitsumi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_mitsumi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cdrom\\cdrom_mitsumi.c", + "output": "src\\cdrom\\CMakeFiles\\cdrom.dir\\cdrom_mitsumi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\82c100.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\82c100.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\82c100.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\82c100.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\acc2168.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\acc2168.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\acc2168.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\acc2168.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\cs8230.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs8230.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs8230.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\cs8230.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1429.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1429.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1429.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1429.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1435.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1435.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1435.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1435.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1489.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1489.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1489.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1489.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1531.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1531.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1531.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1531.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1541.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1541.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1541.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1541.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1543.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1543.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1543.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1543.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali1621.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1621.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali1621.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali1621.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ali6117.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali6117.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ali6117.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ali6117.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\headland.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\headland.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\headland.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\headland.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\ims8848.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ims8848.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\ims8848.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\ims8848.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_82335.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_82335.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_82335.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_82335.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\compaq_386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\compaq_386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\compaq_386.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\compaq_386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\contaq_82c59x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\contaq_82c59x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\contaq_82c59x.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\contaq_82c59x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\cs4031.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs4031.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\cs4031.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\cs4031.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_420ex.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_420ex.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_420ex.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_420ex.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_4x0.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_4x0.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_4x0.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_4x0.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_i450kx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_i450kx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_i450kx.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_i450kx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_sio.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_sio.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_sio.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_sio.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\intel_piix.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_piix.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\intel_piix.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\intel_piix.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\__\\ioapic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\ioapic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\ioapic.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\__\\ioapic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\neat.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\neat.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\neat.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\neat.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti283.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti283.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti283.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti283.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti291.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti291.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti291.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti291.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti391.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti391.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti391.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti391.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti495.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti495.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti495.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti495.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti602.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti602.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti602.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti602.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti822.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti822.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti822.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti822.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti895.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti895.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti895.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti895.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\opti5x7.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti5x7.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\opti5x7.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\opti5x7.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\scamp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scamp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scamp.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\scamp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\scat.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scat.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\scat.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\scat.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c310.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c310.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c310.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c310.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c4xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c4xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c4xx.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c4xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c496.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c496.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c496.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c496.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c50x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c50x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_85c50x.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_85c50x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_5511.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5511.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5511.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_5511.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\sis_5571.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5571.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\sis_5571.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\sis_5571.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c49x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c49x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c49x.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c49x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c505.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c505.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_vt82c505.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_vt82c505.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\gc100.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\gc100.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\gc100.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\gc100.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\stpc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\stpc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\stpc.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\stpc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\umc_8886.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_8886.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_8886.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\umc_8886.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\umc_hb4.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_hb4.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\umc_hb4.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\umc_hb4.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_apollo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_apollo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_apollo.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_apollo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\via_pipc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_pipc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\via_pipc.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\via_pipc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\vl82c480.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\vl82c480.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\vl82c480.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\vl82c480.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\wd76c10.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\wd76c10.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\wd76c10.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\wd76c10.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\chipset\\CMakeFiles\\chipset.dir\\olivetti_eva.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\olivetti_eva.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\chipset\\olivetti_eva.c", + "output": "src\\chipset\\CMakeFiles\\chipset.dir\\olivetti_eva.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\cpu.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\cpu.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\cpu_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\cpu_table.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\cpu_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\fpu.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\fpu.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\fpu.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\fpu.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\808x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\808x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\808x.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\808x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_common.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86_ops_mmx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86_ops_mmx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86_ops_mmx.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86_ops_mmx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_common.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86seg.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86seg.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_2386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_2386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x86seg_2386.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x86seg_2386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x87.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x87.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\x87_timings.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87_timings.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\x87_timings.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\x87_timings.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\8080.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\8080.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\8080.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\8080.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AMD_K5 -DUSE_CYRIX_6X86 -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec_ops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec_ops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\386_dynarec_ops.c", + "output": "src\\cpu\\CMakeFiles\\cpu.dir\\386_dynarec_ops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_486.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_486.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_486.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_486.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_686.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_686.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_686.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_686.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_common.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_k6.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_k6.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_k6.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_k6.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_pentium.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_pentium.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_pentium.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_pentium.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_p6.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_p6.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_p6.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_p6.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\codegen_timing_winchip2.c", + "output": "src\\cpu\\CMakeFiles\\cgt.dir\\codegen_timing_winchip2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\f2xm1.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\f2xm1.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\f2xm1.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\f2xm1.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fpatan.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fpatan.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fpatan.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fpatan.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fprem.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fprem.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fprem.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fprem.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fsincos.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fsincos.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fsincos.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fsincos.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fyl2x.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fyl2x.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\fyl2x.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\fyl2x.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat_poly.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat_poly.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat_poly.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat_poly.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat16.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat16.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat16.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat16.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-muladd.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-muladd.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-muladd.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-muladd.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-round-pack.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-round-pack.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-round-pack.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-round-pack.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-specialize.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-specialize.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloat-specialize.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloat-specialize.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloatx80.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloatx80.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\cpu\\softfloat\\softfloatx80.cc", + "output": "src\\cpu\\softfloat\\CMakeFiles\\softfloat.dir\\softfloatx80.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_accumulate.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_accumulate.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_accumulate.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_accumulate.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_allocator.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_allocator.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_allocator.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_allocator.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_block.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_block.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_block.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_block.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ir.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ir.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ir.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ir.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_3dnow.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_3dnow.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_3dnow.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_3dnow.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_branch.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_branch.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_branch.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_branch.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_arith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_arith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_arith.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_arith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_arith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_arith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_arith.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_arith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_constant.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_constant.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_constant.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_constant.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_loadstore.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_loadstore.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_loadstore.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_loadstore.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_misc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_misc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_fpu_misc.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_fpu_misc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_helpers.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_helpers.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_helpers.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_helpers.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_jump.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_jump.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_jump.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_jump.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_logic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_logic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_logic.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_logic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_misc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_misc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_misc.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_misc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_arith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_arith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_arith.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_arith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_cmp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_cmp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_cmp.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_cmp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_loadstore.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_loadstore.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_loadstore.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_loadstore.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_logic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_logic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_logic.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_logic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_pack.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_pack.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_pack.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_pack.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_shift.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_shift.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mmx_shift.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mmx_shift.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mov.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mov.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_mov.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_mov.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_shift.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_shift.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_shift.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_shift.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_stack.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_stack.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_ops_stack.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_ops_stack.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_reg.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_reg.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_reg.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_reg.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64_ops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64_ops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64_ops.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64_ops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64_ops_sse.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64_ops_sse.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64_ops_sse.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64_ops_sse.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64_uops.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64_uops.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\codegen_new\\codegen_backend_x86-64_uops.c", + "output": "src\\codegen_new\\CMakeFiles\\dynarec.dir\\codegen_backend_x86-64_uops.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\bugger.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\bugger.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\bugger.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\bugger.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\cassette.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cassette.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cassette.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\cassette.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\cartridge.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cartridge.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\cartridge.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\cartridge.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hasp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hasp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hasp.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hasp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_lm75.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm75.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm75.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_lm75.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_lm78.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm78.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_lm78.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_lm78.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_gl518sm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_gl518sm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_gl518sm.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_gl518sm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\hwm_vt82c686.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_vt82c686.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\hwm_vt82c686.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\hwm_vt82c686.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\ibm_5161.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\ibm_5161.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\ibm_5161.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\ibm_5161.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\isamem.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isamem.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isamem.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\isamem.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\isartc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isartc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isartc.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\isartc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\__\\lpt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\lpt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\lpt.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\__\\lpt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\pci_bridge.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\pci_bridge.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\pci_bridge.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\pci_bridge.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\postcard.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\postcard.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\postcard.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\postcard.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\serial.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\serial.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\clock_ics9xxx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\clock_ics9xxx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\clock_ics9xxx.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\clock_ics9xxx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\isapnp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isapnp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\isapnp.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\isapnp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\i2c.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\i2c.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\i2c_gpio.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c_gpio.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\i2c_gpio.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\i2c_gpio.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\smbus_piix4.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_piix4.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_piix4.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\smbus_piix4.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\smbus_ali7101.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_ali7101.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\smbus_ali7101.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\smbus_ali7101.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\keyboard.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\keyboard.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\keyboard_xt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_xt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_xt.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\keyboard_xt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\kbc_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\kbc_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\kbc_at_dev.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at_dev.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\kbc_at_dev.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\kbc_at_dev.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\keyboard_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\keyboard_at.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\keyboard_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse_bus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_bus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_bus.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse_bus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse_serial.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_serial.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_serial.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse_serial.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\mouse_ps2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_ps2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\mouse_ps2.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\mouse_ps2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\phoenix_486_jumper.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\phoenix_486_jumper.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\phoenix_486_jumper.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\phoenix_486_jumper.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_ISAMEM_BRAT -DUSE_ISAMEM_IAB -DUSE_ISAMEM_RAMPAGE -DUSE_LASERXT -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\device\\CMakeFiles\\dev.dir\\serial_passthrough.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial_passthrough.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\device\\serial_passthrough.c", + "output": "src\\device\\CMakeFiles\\dev.dir\\serial_passthrough.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdd_image.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_image.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_image.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdd_image.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdd_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdd_table.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdd_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_xt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_xt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_xt.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_xt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_st506_at.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_st506_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_xta.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xta.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xta.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_xta.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_at.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_mca.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_mca.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_esdi_mca.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_esdi_mca.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_xtide.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xtide.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_xtide.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_xtide.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_opti611.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_opti611.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_opti611.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_opti611.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd640.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd640.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd640.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd640.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd646.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd646.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_cmd646.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_cmd646.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_sff8038i.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_sff8038i.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\hdc_ide_sff8038i.c", + "output": "src\\disk\\CMakeFiles\\hdd.dir\\hdc_ide_sff8038i.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\zip.dir\\zip.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\zip.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\zip.c", + "output": "src\\disk\\CMakeFiles\\zip.dir\\zip.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\CMakeFiles\\mo.dir\\mo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\mo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\mo.c", + "output": "src\\disk\\CMakeFiles\\mo.dir\\mo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\cwalk.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\cwalk.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\cwalk.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\cwalk.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\xml2_encoding.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\xml2_encoding.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\xml2_encoding.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\xml2_encoding.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\convert.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\convert.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\convert.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\convert.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\create.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\create.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\create.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\create.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_io.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_io.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_io.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_io.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\manage.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\manage.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\manage.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\manage.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\struct_rw.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\struct_rw.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\struct_rw.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\struct_rw.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_util.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_util.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\disk\\minivhd\\minivhd_util.c", + "output": "src\\disk\\minivhd\\CMakeFiles\\minivhd.dir\\minivhd_util.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc_magitronic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_magitronic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_magitronic.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc_magitronic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc_monster.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_monster.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_monster.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc_monster.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdc_pii15xb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_pii15xb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdc_pii15xb.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdc_pii15xb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdi2raw.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdi2raw.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdi2raw.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdi2raw.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_common.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_common.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_common.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_common.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_86f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_86f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_86f.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_86f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_fdi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_fdi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_fdi.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_fdi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_imd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_imd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_imd.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_imd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_img.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_img.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_img.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_img.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_json.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_json.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_json.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_json.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_mfm.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_mfm.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_mfm.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_mfm.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\floppy\\CMakeFiles\\fdd.dir\\fdd_td0.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_td0.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\floppy\\fdd_td0.c", + "output": "src\\floppy\\CMakeFiles\\fdd.dir\\fdd_td0.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\gameport.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\gameport.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\gameport.c", + "output": "src\\game\\CMakeFiles\\game.dir\\gameport.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_standard.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_standard.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_standard.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_standard.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_ch_flightstick_pro.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_ch_flightstick_pro.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_ch_flightstick_pro.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_ch_flightstick_pro.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_sw_pad.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_sw_pad.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_sw_pad.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_sw_pad.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\game\\CMakeFiles\\game.dir\\joystick_tm_fcs.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_tm_fcs.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\game\\joystick_tm_fcs.c", + "output": "src\\game\\CMakeFiles\\game.dir\\joystick_tm_fcs.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\machine.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\machine.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\machine_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\machine_table.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\machine_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_compaq.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_compaq.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_compaq.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_compaq.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_philips.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_philips.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_philips.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_philips.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000_vid.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000_vid.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_t1000_vid.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_t1000_vid.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_xi8088.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_xi8088.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_xi8088.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_xi8088.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_zenith.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_zenith.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_zenith.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_zenith.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_pcjr.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_pcjr.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_pcjr.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_pcjr.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_amstrad.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_amstrad.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_amstrad.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_amstrad.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_europc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_europc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_europc.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_europc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_elt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_elt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_elt.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_elt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_olivetti.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_olivetti.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_olivetti.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_olivetti.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_tandy.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_tandy.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_tandy.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_tandy.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_v86p.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_v86p.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_v86p.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_v86p.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_commodore.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_commodore.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_commodore.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_commodore.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e_vid.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e_vid.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_t3100e_vid.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_t3100e_vid.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps1.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps1.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps1_hdc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1_hdc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps1_hdc.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps1_hdc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps2_isa.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_isa.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_isa.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps2_isa.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_ps2_mca.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_mca.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_ps2_mca.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_ps2_mca.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_compaq.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_compaq.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_compaq.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_compaq.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_286_386sx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_286_386sx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_286_386sx.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_286_386sx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_386dx_486.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_386dx_486.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_386dx_486.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_386dx_486.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket4.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket4.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket4.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket4.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket5.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket5.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket5.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket5.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7_3v.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7_3v.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7_3v.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7_3v.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket7.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket7.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_sockets7.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_sockets7.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_sockets7.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_sockets7.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket8.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket8.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket8.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket8.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_slot1.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot1.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot1.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_slot1.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_slot2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_slot2.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_slot2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_socket370.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket370.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_socket370.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_socket370.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_at_misc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_misc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_at_misc.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_at_misc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_AN430TX -DUSE_DESKPRO386 -DUSE_DYNAREC -DUSE_LASERXT -DUSE_NEW_DYNAREC -DUSE_OPEN_AT -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\machine\\CMakeFiles\\mch.dir\\m_xt_laserxt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_laserxt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\machine\\m_xt_laserxt.c", + "output": "src\\machine\\CMakeFiles\\mch.dir\\m_xt_laserxt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\catalyst_flash.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\catalyst_flash.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\catalyst_flash.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\catalyst_flash.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\i2c_eeprom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\i2c_eeprom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\i2c_eeprom.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\i2c_eeprom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\intel_flash.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\intel_flash.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\intel_flash.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\intel_flash.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\mem.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mem.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mem.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\mem.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\mmu_2386.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mmu_2386.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\mmu_2386.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\mmu_2386.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\rom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\rom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\rom.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\rom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\row.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\row.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\row.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\row.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\smram.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\smram.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\smram.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\smram.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\spd.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\spd.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\spd.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\spd.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\mem\\CMakeFiles\\mem.dir\\sst_flash.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\sst_flash.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\mem\\sst_flash.c", + "output": "src\\mem\\CMakeFiles\\mem.dir\\sst_flash.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\network.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\network.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\network.c", + "output": "src\\network\\CMakeFiles\\net.dir\\network.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_pcap.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcap.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcap.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_pcap.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_slirp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_slirp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_slirp.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_slirp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_dp8390.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_dp8390.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_dp8390.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_dp8390.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_3c501.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c501.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c501.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_3c501.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_3c503.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c503.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_3c503.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_3c503.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_ne2000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_ne2000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_ne2000.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_ne2000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_pcnet.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcnet.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_pcnet.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_pcnet.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_wd8003.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_wd8003.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_wd8003.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_wd8003.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_plip.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_plip.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_plip.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_plip.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_event.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_event.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_event.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_event.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\network\\CMakeFiles\\net.dir\\net_null.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_null.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\network\\net_null.c", + "output": "src\\network\\CMakeFiles\\net.dir\\net_null.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\png.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\png.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\png.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\png.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_cpmap.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_cpmap.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_cpmap.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_cpmap.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_escp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_escp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_escp.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_escp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_text.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_text.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_text.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_text.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\printer\\CMakeFiles\\print.dir\\prt_ps.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_ps.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\printer\\prt_ps.c", + "output": "src\\printer\\CMakeFiles\\print.dir\\prt_ps.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_acc3221.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_acc3221.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_acc3221.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_acc3221.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_ali5123.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_ali5123.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_ali5123.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_ali5123.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_f82c710.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_f82c710.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_f82c710.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_f82c710.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_82091aa.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_82091aa.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_82091aa.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_82091aa.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c6xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c6xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c6xx.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c6xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c67x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c67x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c67x.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c67x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c669.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c669.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c669.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c669.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c93x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c93x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37c93x.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37c93x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37m60x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37m60x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_fdc37m60x.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_fdc37m60x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_it8661f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_it8661f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_it8661f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_it8661f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87306.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87306.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87306.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87306.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87307.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87307.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87307.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87307.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87309.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87309.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87309.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87309.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87310.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87310.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87310.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87310.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87311.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87311.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87311.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87311.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_pc87332.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87332.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_pc87332.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_pc87332.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_prime3b.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3b.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3b.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_prime3b.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_prime3c.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3c.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_prime3c.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_prime3c.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_w83787f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83787f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83787f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_w83787f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_w83877f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83877f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83877f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_w83877f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_w83977f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83977f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_w83977f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_w83977f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_um8669f.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_um8669f.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_um8669f.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_um8669f.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_vt82c686.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_vt82c686.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_vt82c686.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_vt82c686.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sio\\CMakeFiles\\sio.dir\\sio_detect.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_detect.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sio\\sio_detect.c", + "output": "src\\sio\\CMakeFiles\\sio.dir\\sio_detect.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_device.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_device.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_device.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_device.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_cdrom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_cdrom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_cdrom.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_cdrom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_disk.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_disk.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_disk.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_disk.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_x54x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_x54x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_x54x.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_x54x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_aha154x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_aha154x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_aha154x.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_aha154x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_buslogic.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_buslogic.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_buslogic.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_buslogic.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr5380.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr5380.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr5380.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr5380.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr53c8xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr53c8xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_ncr53c8xx.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_ncr53c8xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_pcscsi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_pcscsi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_pcscsi.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_pcscsi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\scsi\\CMakeFiles\\scsi.dir\\scsi_spock.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_spock.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\scsi\\scsi_spock.c", + "output": "src\\scsi\\CMakeFiles\\scsi.dir\\scsi_spock.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\sound.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\sound.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\sound.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\sound.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_opl.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_opl.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_opl_nuked.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_nuked.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_nuked.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_opl_nuked.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\CMakeFiles\\snd.dir\\snd_opl_ymfm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_ymfm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_opl_ymfm.cpp", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_opl_ymfm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\CMakeFiles\\snd.dir\\snd_resid.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_resid.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_resid.cc", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_resid.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\midi.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_speaker.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_speaker.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_speaker.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_speaker.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_pssj.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pssj.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pssj.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_pssj.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dac.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_codec.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_codec.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_codec.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_codec.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_via.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_via.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ac97_via.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ac97_via.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dss.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dss.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_lpt_dss.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_lpt_dss.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ps1.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ps1.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ps1.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ps1.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_adlib.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlib.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlib.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_adlib.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_adlibgold.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlibgold.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_adlibgold.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_adlibgold.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ad1848.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ad1848.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ad1848.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ad1848.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_audiopci.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_audiopci.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_audiopci.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_audiopci.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_azt2316a.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_azt2316a.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_azt2316a.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_azt2316a.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_cms.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cms.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cms.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_cms.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_cmi8x38.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cmi8x38.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cmi8x38.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_cmi8x38.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_cs423x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cs423x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_cs423x.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_cs423x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_gus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_gus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_gus.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_gus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_sb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_sb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_sb_dsp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb_dsp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sb_dsp.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_sb_dsp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_emu8k.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_emu8k.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_emu8k.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_emu8k.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_mpu401.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_mpu401.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_mpu401.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_mpu401.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_sn76489.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sn76489.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_sn76489.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_sn76489.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ssi2001.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ssi2001.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ssi2001.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ssi2001.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_wss.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_wss.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_wss.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_wss.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_ym7128.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ym7128.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_ym7128.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_ym7128.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_optimc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_optimc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_optimc.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_optimc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\xaudio2.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\xaudio2.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\xaudio2.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\xaudio2.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\CMakeFiles\\snd.dir\\midi_rtmidi.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_rtmidi.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_rtmidi.cpp", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi_rtmidi.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\midi_fluidsynth.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_fluidsynth.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_fluidsynth.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi_fluidsynth.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\midi_mt32.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_mt32.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\midi_mt32.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\midi_mt32.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_FLUIDSYNTH -DUSE_GUSMAX -DUSE_MUNT -DUSE_NEW_DYNAREC -DUSE_PAS16 -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\sound\\CMakeFiles\\snd.dir\\snd_pas16.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pas16.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\snd_pas16.c", + "output": "src\\sound\\CMakeFiles\\snd.dir\\snd_pas16.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Analog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Analog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Analog.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Analog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\BReverbModel.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\BReverbModel.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\BReverbModel.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\BReverbModel.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Display.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Display.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Display.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Display.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\File.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\File.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\File.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\File.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\FileStream.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\FileStream.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\FileStream.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\FileStream.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32Ramp.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32Ramp.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32Ramp.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32Ramp.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32FloatWaveGenerator.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32FloatWaveGenerator.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32FloatWaveGenerator.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32FloatWaveGenerator.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32WaveGenerator.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32WaveGenerator.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\LA32WaveGenerator.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\LA32WaveGenerator.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\MidiStreamParser.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\MidiStreamParser.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\MidiStreamParser.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\MidiStreamParser.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Part.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Part.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Part.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Part.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Partial.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Partial.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Partial.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Partial.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\PartialManager.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\PartialManager.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\PartialManager.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\PartialManager.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Poly.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Poly.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Poly.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Poly.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\ROMInfo.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\ROMInfo.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\ROMInfo.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\ROMInfo.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\SampleRateConverter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\SampleRateConverter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\SampleRateConverter.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\SampleRateConverter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\FIRResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\FIRResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\FIRResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\FIRResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\IIR2xResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\IIR2xResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\IIR2xResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\IIR2xResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\LinearResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\LinearResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\LinearResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\LinearResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\ResamplerModel.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\ResamplerModel.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\ResamplerModel.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\ResamplerModel.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\SincResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\SincResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\srctools\\src\\SincResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\srctools\\src\\SincResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\InternalResampler.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\InternalResampler.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\srchelper\\InternalResampler.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\srchelper\\InternalResampler.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Synth.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Synth.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Synth.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Synth.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Tables.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Tables.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\Tables.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\Tables.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVA.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVA.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVA.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVA.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVF.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVF.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVF.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVF.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVP.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVP.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\TVP.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\TVP.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\sha1\\sha1.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\sha1\\sha1.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\sha1\\sha1.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\sha1\\sha1.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\c_interface\\c_interface.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\c_interface\\c_interface.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\munt\\c_interface\\c_interface.cpp", + "output": "src\\sound\\munt\\CMakeFiles\\mt32emu.dir\\c_interface\\c_interface.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_misc.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_misc.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_misc.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_misc.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opl.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opl.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opl.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opl.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opm.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opn.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opn.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opn.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opn.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opq.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opq.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opq.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opq.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opz.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opz.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_opz.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_opz.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_pcm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_pcm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_pcm.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_pcm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_adpcm.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_adpcm.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\ymfm\\ymfm_adpcm.cpp", + "output": "src\\sound\\ymfm\\CMakeFiles\\ymfm.dir\\ymfm_adpcm.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve-sse.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve-sse.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve-sse.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve-sse.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\convolve.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\convolve.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\envelope.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\envelope.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\envelope.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\envelope.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\extfilt.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\extfilt.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\extfilt.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\extfilt.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\filter.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\filter.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\filter.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\filter.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\pot.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\pot.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\pot.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\pot.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\sid.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\sid.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\sid.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\sid.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\voice.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\voice.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\voice.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\voice.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PS_.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PS_.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_PS_.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_PS_.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_P_T.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_P_T.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581_P_T.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581_P_T.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581__ST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581__ST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave6581__ST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave6581__ST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PS_.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PS_.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_PS_.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_PS_.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_P_T.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_P_T.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580_P_T.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580_P_T.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=gnu++14 -o src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580__ST.cc.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580__ST.cc", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\sound\\resid-fp\\wave8580__ST.cc", + "output": "src\\sound\\resid-fp\\CMakeFiles\\resid-fp.dir\\wave8580__ST.cc.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\agpgart.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\agpgart.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\agpgart.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\agpgart.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\video.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\video.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\video.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\video.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_table.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_table.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_table.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_table.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_cga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_cga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_cga_comp.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga_comp.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cga_comp.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_cga_comp.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_compaq_cga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_compaq_cga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_compaq_cga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_compaq_cga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_mda.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mda.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mda.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_mda.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_hercules.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_hercules.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_hercules.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_hercules.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_herculesplus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_herculesplus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_herculesplus.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_herculesplus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_incolor.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_incolor.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_incolor.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_incolor.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_colorplus.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_colorplus.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_colorplus.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_colorplus.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_genius.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_genius.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_genius.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_genius.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_pgc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_pgc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_pgc.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_pgc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_im1024.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_im1024.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_im1024.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_im1024.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sigma.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sigma.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sigma.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sigma.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_wy700.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_wy700.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_wy700.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_wy700.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ega.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ega.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ega_render.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega_render.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ega_render.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ega_render.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_svga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_svga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_8514a.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_8514a.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_8514a.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_8514a.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_svga_render.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga_render.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_svga_render.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_svga_render.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ddc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ddc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ddc.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ddc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_vga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_vga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_vga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_vga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati_eeprom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_eeprom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_eeprom.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati_eeprom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati18800.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati18800.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati18800.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati18800.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati28800.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati28800.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati28800.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati28800.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach8.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach8.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach8.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach8.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach64.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach64.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati_mach64.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati_mach64.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati68875_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68875_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68875_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati68875_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ati68860_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68860_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ati68860_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ati68860_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_bt48x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_bt48x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_bt48x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_bt48x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_av9194.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_av9194.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_av9194.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_av9194.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_icd2061.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_icd2061.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_icd2061.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_icd2061.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ics2494.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2494.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2494.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ics2494.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ics2595.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2595.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ics2595.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ics2595.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_cl54xx.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cl54xx.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_cl54xx.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_cl54xx.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_et3000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et3000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et3000.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_et3000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_et4000.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_et4000.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sc1148x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1148x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1148x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sc1148x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sc1502x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1502x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sc1502x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sc1502x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_et4000w32.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000w32.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_et4000w32.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_et4000w32.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_stg_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_stg_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_stg_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_stg_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ht216.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ht216.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ht216.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ht216.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_oak_oti.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_oak_oti.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_oak_oti.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_oak_oti.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_paradise.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_paradise.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_paradise.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_paradise.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_rtg310x.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_rtg310x.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_rtg310x.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_rtg310x.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_f82c425.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_f82c425.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_f82c425.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_f82c425.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ti_cf62011.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ti_cf62011.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ti_cf62011.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ti_cf62011.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tvga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tvga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tgui9440.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tgui9440.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tgui9440.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tgui9440.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tkd8001_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tkd8001_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tkd8001_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tkd8001_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_att20c49x_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att20c49x_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att20c49x_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_att20c49x_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_s3.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_s3.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_s3_virge.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3_virge.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_s3_virge.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_s3_virge.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ibm_rgb528_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ibm_rgb528_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ibm_rgb528_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ibm_rgb528_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_sdac_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sdac_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_sdac_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_sdac_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_ogc.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ogc.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_ogc.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_ogc.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_nga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_nga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_nga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_nga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_tvp3026_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvp3026_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_tvp3026_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_tvp3026_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_att2xc498_ramdac.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att2xc498_ramdac.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_att2xc498_ramdac.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_att2xc498_ramdac.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_xga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_xga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_xga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_xga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_MGA -DUSE_NEW_DYNAREC -DUSE_VGAWONDER -DUSE_XL24 -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\video\\CMakeFiles\\vid.dir\\vid_mga.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mga.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_mga.c", + "output": "src\\video\\CMakeFiles\\vid.dir\\vid_mga.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee_blitter.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee_blitter.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_banshee_blitter.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_banshee_blitter.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_blitter.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_blitter.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_blitter.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_blitter.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_display.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_display.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_display.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_display.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fb.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fb.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fb.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fb.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fifo.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fifo.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_fifo.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_fifo.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_reg.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_reg.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_reg.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_reg.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_render.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_render.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_render.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_render.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_setup.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_setup.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_setup.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_setup.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -msse2 -o src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_texture.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_texture.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\video\\vid_voodoo_texture.c", + "output": "src\\video\\CMakeFiles\\voodoo.dir\\vid_voodoo_texture.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\plat_autogen\\mocs_compilation.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\plat_autogen\\mocs_compilation.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\plat_autogen\\mocs_compilation.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\plat_autogen\\mocs_compilation.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\qt.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\qt.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\qt_main.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_main.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_main.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\qt_main.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\plat.dir\\qt_platform.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_platform.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_platform.cpp", + "output": "src\\qt\\CMakeFiles\\plat.dir\\qt_platform.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\win_dynld.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_dynld.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_dynld.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\win_dynld.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\win_joystick_rawinput.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_joystick_rawinput.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\win_joystick_rawinput.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\win_joystick_rawinput.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/plat_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\qt\\CMakeFiles\\plat.dir\\__\\win\\win_serial_passthrough.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\win_serial_passthrough.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\win\\win_serial_passthrough.c", + "output": "src\\qt\\CMakeFiles\\plat.dir\\__\\win\\win_serial_passthrough.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\mocs_compilation.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\ui_autogen\\mocs_compilation.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\ui_autogen\\mocs_compilation.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\mocs_compilation.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_ui.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_ui.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_ui.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_ui.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\cc.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition -ggdb -Og -std=gnu11 -o src\\qt\\CMakeFiles\\ui.dir\\qt_cdrom.c.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_cdrom.c", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_cdrom.c", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_cdrom.c.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mainwindow.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mainwindow.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mainwindow.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mainwindow.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_machinestatus.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_machinestatus.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_machinestatus.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_machinestatus.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mediamenu.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediamenu.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediamenu.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mediamenu.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_rendererstack.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_rendererstack.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_rendererstack.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_rendererstack.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_renderercommon.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_renderercommon.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_renderercommon.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_renderercommon.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_softwarerenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_softwarerenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_softwarerenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_softwarerenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_hardwarerenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_hardwarerenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_hardwarerenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_hardwarerenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_openglrenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_openglrenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_openglrenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_openglrenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptions.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptions.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptions.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptions.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptionsdialog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptionsdialog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_opengloptionsdialog.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_opengloptionsdialog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settings.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settings.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsmachine.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsmachine.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsmachine.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsmachine.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsdisplay.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsdisplay.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsdisplay.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsdisplay.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsinput.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsinput.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsinput.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsinput.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingssound.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingssound.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingssound.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingssound.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsnetwork.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsnetwork.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsnetwork.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsnetwork.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsports.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsports.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsports.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsports.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsstoragecontrollers.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsstoragecontrollers.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsstoragecontrollers.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsstoragecontrollers.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsharddisks.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsharddisks.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsharddisks.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsharddisks.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsfloppycdrom.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsfloppycdrom.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsfloppycdrom.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsfloppycdrom.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherremovable.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherremovable.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherremovable.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherremovable.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherperipherals.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherperipherals.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settingsotherperipherals.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settingsotherperipherals.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_settings_bus_tracking.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings_bus_tracking.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_settings_bus_tracking.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_settings_bus_tracking.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_deviceconfig.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_deviceconfig.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_deviceconfig.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_deviceconfig.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_joystickconfiguration.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_joystickconfiguration.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_joystickconfiguration.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_joystickconfiguration.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_filefield.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_filefield.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_filefield.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_filefield.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_newfloppydialog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_newfloppydialog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_newfloppydialog.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_newfloppydialog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_harddiskdialog.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddiskdialog.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddiskdialog.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_harddiskdialog.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_harddrive_common.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddrive_common.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_harddrive_common.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_harddrive_common.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_models_common.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_models_common.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_models_common.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_models_common.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_specifydimensions.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_specifydimensions.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_specifydimensions.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_specifydimensions.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_soundgain.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_soundgain.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_soundgain.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_soundgain.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_styleoverride.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_styleoverride.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_styleoverride.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_styleoverride.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_progsettings.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_progsettings.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_progsettings.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_progsettings.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_util.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_util.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_util.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_util.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_unixmanagerfilter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_unixmanagerfilter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_unixmanagerfilter.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_unixmanagerfilter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanwindowrenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanwindowrenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanwindowrenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanwindowrenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanrenderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanrenderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_vulkanrenderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_vulkanrenderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mcadevicelist.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mcadevicelist.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mcadevicelist.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mcadevicelist.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_mediahistorymanager.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediahistorymanager.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_mediahistorymanager.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_mediahistorymanager.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_d3d9renderer.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_d3d9renderer.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_d3d9renderer.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_d3d9renderer.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_winrawinputfilter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winrawinputfilter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winrawinputfilter.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_winrawinputfilter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\qt_winmanagerfilter.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winmanagerfilter.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\qt\\qt_winmanagerfilter.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\qt_winmanagerfilter.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\VNU7RW3YIC\\qrc_qt_resources.cpp.obj" +}, +{ + "directory": "K:/emu_dev/86Box_clean_ex_k/src/build64", + "command": "C:\\msys64\\mingw64\\bin\\c++.exe -DCMAKE -DDEBUG -DDEV_BRANCH -DDISCORD -DNTDDI_VERSION=0x06010000 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_OPENGL_LIB -DQT_WIDGETS_LIB -DUSE_DYNAREC -DUSE_NEW_DYNAREC -DUSE_RTMIDI -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/qt -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/include -IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/SDL2 -IK:/emu_dev/86Box_clean_ex_k/src/build64/src/include -IK:/emu_dev/86Box_clean_ex_k/src/include -IK:/emu_dev/86Box_clean_ex_k/src/cpu -IK:/emu_dev/86Box_clean_ex_k/src/codegen_new -isystem C:/msys64/mingw64/include/QtWidgets -isystem C:/msys64/mingw64/include/QtGui -isystem C:/msys64/mingw64/include/QtCore -isystem C:/msys64/mingw64/share/qt5/mkspecs/win32-g++ -isystem C:/msys64/mingw64/include/QtOpenGL -isystem C:/msys64/mingw64/include/QtNetwork -m64 -march=x86-64 -msse2 -mfpmath=sse -mstackrealign -fomit-frame-pointer -Wall -fno-strict-aliasing -ggdb -Og -std=c++17 -o src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp.obj -c K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp", + "file": "K:\\emu_dev\\86Box_clean_ex_k\\src\\build64\\src\\qt\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp", + "output": "src\\qt\\CMakeFiles\\ui.dir\\ui_autogen\\EJRQKI7XPS\\qrc_qt_translations.cpp.obj" +} +] \ No newline at end of file diff --git a/src/build64/src/86Box.exe b/src/build64/src/86Box.exe new file mode 100644 index 000000000..96a23395c Binary files /dev/null and b/src/build64/src/86Box.exe differ diff --git a/src/build64/src/cdrom/cmake_install.cmake b/src/build64/src/cdrom/cmake_install.cmake new file mode 100644 index 000000000..d5c5642b9 --- /dev/null +++ b/src/build64/src/cdrom/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cdrom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/chipset/cmake_install.cmake b/src/build64/src/chipset/cmake_install.cmake new file mode 100644 index 000000000..7e2e56ec6 --- /dev/null +++ b/src/build64/src/chipset/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/chipset + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/cmake_install.cmake b/src/build64/src/cmake_install.cmake new file mode 100644 index 000000000..e4d9f52eb --- /dev/null +++ b/src/build64/src/cmake_install.cmake @@ -0,0 +1,147 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/cdrom/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/chipset/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/cpu/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/codegen_new/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE EXECUTABLE FILES "K:/emu_dev/86Box_clean_ex_k/src/build64/src/86Box.exe") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./86Box.exe" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./86Box.exe") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/msys64/mingw64/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/./86Box.exe") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Runtime" OR NOT CMAKE_INSTALL_COMPONENT) + + include(BundleUtilities) + get_filename_component(CMAKE_INSTALL_PREFIX_ABSOLUTE ${CMAKE_INSTALL_PREFIX} ABSOLUTE) + fixup_bundle("${CMAKE_INSTALL_PREFIX_ABSOLUTE}/86Box.exe" "" "") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg]|[Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE OPTIONAL FILES "K:/emu_dev/86Box_clean_ex_k/src/build64/src/86Box.pdb") + endif() +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/device/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/disk/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/floppy/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/game/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/machine/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/mem/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/network/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/printer/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/sio/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/scsi/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/video/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/cmake_install.cmake") +endif() + diff --git a/src/build64/src/codegen_new/cmake_install.cmake b/src/build64/src/codegen_new/cmake_install.cmake new file mode 100644 index 000000000..3b6f493a4 --- /dev/null +++ b/src/build64/src/codegen_new/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/codegen_new + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/cpu/cmake_install.cmake b/src/build64/src/cpu/cmake_install.cmake new file mode 100644 index 000000000..13f758ce7 --- /dev/null +++ b/src/build64/src/cpu/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cpu + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/cpu/softfloat/cmake_install.cmake") +endif() + diff --git a/src/build64/src/cpu/softfloat/cmake_install.cmake b/src/build64/src/cpu/softfloat/cmake_install.cmake new file mode 100644 index 000000000..5a14c87c5 --- /dev/null +++ b/src/build64/src/cpu/softfloat/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/cpu/softfloat + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/device/cmake_install.cmake b/src/build64/src/device/cmake_install.cmake new file mode 100644 index 000000000..7a1260ada --- /dev/null +++ b/src/build64/src/device/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/device + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/disk/cmake_install.cmake b/src/build64/src/disk/cmake_install.cmake new file mode 100644 index 000000000..63c3b9dde --- /dev/null +++ b/src/build64/src/disk/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/disk + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/disk/minivhd/cmake_install.cmake") +endif() + diff --git a/src/build64/src/disk/minivhd/cmake_install.cmake b/src/build64/src/disk/minivhd/cmake_install.cmake new file mode 100644 index 000000000..3f37b081a --- /dev/null +++ b/src/build64/src/disk/minivhd/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/disk/minivhd + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/floppy/cmake_install.cmake b/src/build64/src/floppy/cmake_install.cmake new file mode 100644 index 000000000..f3572bd24 --- /dev/null +++ b/src/build64/src/floppy/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/floppy + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/game/cmake_install.cmake b/src/build64/src/game/cmake_install.cmake new file mode 100644 index 000000000..2aa65b116 --- /dev/null +++ b/src/build64/src/game/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/game + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/include/86box/version.h b/src/build64/src/include/86box/version.h new file mode 100644 index 000000000..70118d06c --- /dev/null +++ b/src/build64/src/include/86box/version.h @@ -0,0 +1,60 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * Definitions for project version, branding, and external links. + * + * + * + * Authors: Miran Grca, + * + * Copyright 2020 Miran Grca. + */ + +#define _LSTR(s) L ## s +#define LSTR(s) _LSTR(s) + +/* Version info. */ +#define EMU_NAME "86Box" +#define EMU_NAME_W LSTR(EMU_NAME) + +#define EMU_VERSION "4.0.1" +#define EMU_VERSION_W LSTR(EMU_VERSION) +#define EMU_VERSION_EX "3.50" /* frozen due to IDE re-detection behavior on Windows */ +#define EMU_VERSION_MAJ 4 +#define EMU_VERSION_MIN 0 +#define EMU_VERSION_PATCH 1 + +/* #undef EMU_BUILD */ +#define EMU_BUILD_NUM 0 +/* #undef EMU_GIT_HASH */ + +#ifdef EMU_BUILD +# define EMU_BUILD_W LSTR(EMU_BUILD) +# define EMU_VERSION_FULL EMU_VERSION " [" EMU_BUILD "]" +# define EMU_VERSION_FULL_W EMU_VERSION_W L" [" EMU_BUILD_W L"]" +#else +# define EMU_VERSION_FULL EMU_VERSION +# define EMU_VERSION_FULL_W EMU_VERSION_W +#endif +#ifdef EMU_GIT_HASH +# define EMU_GIT_HASH_W LSTR(EMU_GIT_HASH) +#endif + +#define COPYRIGHT_YEAR "2022" + +/* Web URL info. */ +#define EMU_SITE "86box.net" +#define EMU_SITE_W LSTR(EMU_SITE) +#define EMU_ROMS_URL "https://github.com/86Box/roms/releases/latest" +#define EMU_ROMS_URL_W LSTR(EMU_ROMS_URL) +#ifdef RELEASE_BUILD +# define EMU_DOCS_URL "https://86box.readthedocs.io/en/v4.0/" +#else +# define EMU_DOCS_URL "https://86box.readthedocs.io" +#endif +#define EMU_DOCS_URL_W LSTR(EMU_DOCS_URL) diff --git a/src/build64/src/machine/cmake_install.cmake b/src/build64/src/machine/cmake_install.cmake new file mode 100644 index 000000000..768d4d5c3 --- /dev/null +++ b/src/build64/src/machine/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/machine + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/mem/cmake_install.cmake b/src/build64/src/mem/cmake_install.cmake new file mode 100644 index 000000000..ce717cdc9 --- /dev/null +++ b/src/build64/src/mem/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/mem + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/network/cmake_install.cmake b/src/build64/src/network/cmake_install.cmake new file mode 100644 index 000000000..ef1b7d7d4 --- /dev/null +++ b/src/build64/src/network/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/network + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/printer/cmake_install.cmake b/src/build64/src/printer/cmake_install.cmake new file mode 100644 index 000000000..62f3bf9c7 --- /dev/null +++ b/src/build64/src/printer/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/printer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/qt/86box_ca-ES.qm b/src/build64/src/qt/86box_ca-ES.qm new file mode 100644 index 000000000..bf03462df Binary files /dev/null and b/src/build64/src/qt/86box_ca-ES.qm differ diff --git a/src/build64/src/qt/86box_cs-CZ.qm b/src/build64/src/qt/86box_cs-CZ.qm new file mode 100644 index 000000000..95c102a1b Binary files /dev/null and b/src/build64/src/qt/86box_cs-CZ.qm differ diff --git a/src/build64/src/qt/86box_de-DE.qm b/src/build64/src/qt/86box_de-DE.qm new file mode 100644 index 000000000..9f963ac01 Binary files /dev/null and b/src/build64/src/qt/86box_de-DE.qm differ diff --git a/src/build64/src/qt/86box_en-GB.qm b/src/build64/src/qt/86box_en-GB.qm new file mode 100644 index 000000000..9a3517e9f Binary files /dev/null and b/src/build64/src/qt/86box_en-GB.qm differ diff --git a/src/build64/src/qt/86box_en-US.qm b/src/build64/src/qt/86box_en-US.qm new file mode 100644 index 000000000..5e1b11a45 Binary files /dev/null and b/src/build64/src/qt/86box_en-US.qm differ diff --git a/src/build64/src/qt/86box_es-ES.qm b/src/build64/src/qt/86box_es-ES.qm new file mode 100644 index 000000000..6815dd934 Binary files /dev/null and b/src/build64/src/qt/86box_es-ES.qm differ diff --git a/src/build64/src/qt/86box_fi-FI.qm b/src/build64/src/qt/86box_fi-FI.qm new file mode 100644 index 000000000..34cab7ae5 Binary files /dev/null and b/src/build64/src/qt/86box_fi-FI.qm differ diff --git a/src/build64/src/qt/86box_fr-FR.qm b/src/build64/src/qt/86box_fr-FR.qm new file mode 100644 index 000000000..f6d9872ef Binary files /dev/null and b/src/build64/src/qt/86box_fr-FR.qm differ diff --git a/src/build64/src/qt/86box_hr-HR.qm b/src/build64/src/qt/86box_hr-HR.qm new file mode 100644 index 000000000..58ef64f59 Binary files /dev/null and b/src/build64/src/qt/86box_hr-HR.qm differ diff --git a/src/build64/src/qt/86box_hu-HU.qm b/src/build64/src/qt/86box_hu-HU.qm new file mode 100644 index 000000000..1af7b93fd Binary files /dev/null and b/src/build64/src/qt/86box_hu-HU.qm differ diff --git a/src/build64/src/qt/86box_it-IT.qm b/src/build64/src/qt/86box_it-IT.qm new file mode 100644 index 000000000..f26f7bfa0 Binary files /dev/null and b/src/build64/src/qt/86box_it-IT.qm differ diff --git a/src/build64/src/qt/86box_ja-JP.qm b/src/build64/src/qt/86box_ja-JP.qm new file mode 100644 index 000000000..ca67276a8 Binary files /dev/null and b/src/build64/src/qt/86box_ja-JP.qm differ diff --git a/src/build64/src/qt/86box_ko-KR.qm b/src/build64/src/qt/86box_ko-KR.qm new file mode 100644 index 000000000..ff9a9b0b8 Binary files /dev/null and b/src/build64/src/qt/86box_ko-KR.qm differ diff --git a/src/build64/src/qt/86box_pl-PL.qm b/src/build64/src/qt/86box_pl-PL.qm new file mode 100644 index 000000000..a4bec26ac Binary files /dev/null and b/src/build64/src/qt/86box_pl-PL.qm differ diff --git a/src/build64/src/qt/86box_pt-BR.qm b/src/build64/src/qt/86box_pt-BR.qm new file mode 100644 index 000000000..14bca1f02 Binary files /dev/null and b/src/build64/src/qt/86box_pt-BR.qm differ diff --git a/src/build64/src/qt/86box_pt-PT.qm b/src/build64/src/qt/86box_pt-PT.qm new file mode 100644 index 000000000..3afda0e09 Binary files /dev/null and b/src/build64/src/qt/86box_pt-PT.qm differ diff --git a/src/build64/src/qt/86box_ru-RU.qm b/src/build64/src/qt/86box_ru-RU.qm new file mode 100644 index 000000000..41660f9a1 Binary files /dev/null and b/src/build64/src/qt/86box_ru-RU.qm differ diff --git a/src/build64/src/qt/86box_sk-SK.qm b/src/build64/src/qt/86box_sk-SK.qm new file mode 100644 index 000000000..b7d3b9753 Binary files /dev/null and b/src/build64/src/qt/86box_sk-SK.qm differ diff --git a/src/build64/src/qt/86box_sl-SI.qm b/src/build64/src/qt/86box_sl-SI.qm new file mode 100644 index 000000000..29252a647 Binary files /dev/null and b/src/build64/src/qt/86box_sl-SI.qm differ diff --git a/src/build64/src/qt/86box_tr-TR.qm b/src/build64/src/qt/86box_tr-TR.qm new file mode 100644 index 000000000..a47f94d28 Binary files /dev/null and b/src/build64/src/qt/86box_tr-TR.qm differ diff --git a/src/build64/src/qt/86box_uk-UA.qm b/src/build64/src/qt/86box_uk-UA.qm new file mode 100644 index 000000000..4a4b31f08 Binary files /dev/null and b/src/build64/src/qt/86box_uk-UA.qm differ diff --git a/src/build64/src/qt/86box_zh-CN.qm b/src/build64/src/qt/86box_zh-CN.qm new file mode 100644 index 000000000..028a4106f Binary files /dev/null and b/src/build64/src/qt/86box_zh-CN.qm differ diff --git a/src/build64/src/qt/86box_zh-TW.qm b/src/build64/src/qt/86box_zh-TW.qm new file mode 100644 index 000000000..efe70cb8f Binary files /dev/null and b/src/build64/src/qt/86box_zh-TW.qm differ diff --git a/src/build64/src/qt/cmake_install.cmake b/src/build64/src/qt/cmake_install.cmake new file mode 100644 index 000000000..1c9ad1212 --- /dev/null +++ b/src/build64/src/qt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/qt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/qt/plat_autogen/deps b/src/build64/src/qt/plat_autogen/deps new file mode 100644 index 000000000..1f1f72571 --- /dev/null +++ b/src/build64/src/qt/plat_autogen/deps @@ -0,0 +1,63 @@ +plat_autogen/timestamp: \ + C:/msys64/mingw64/lib/cmake/Qt5/Qt5Config.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5/Qt5ConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5/Qt5ModuleLocation.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJp2Plugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMngPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CMakeParseArguments.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CheckCSourceCompiles.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CheckIncludeFile.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CheckLibraryExists.cmake \ + C:/msys64/mingw64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \ + C:/msys64/mingw64/share/cmake/Modules/FindPackageMessage.cmake \ + C:/msys64/mingw64/share/cmake/Modules/FindThreads.cmake \ + C:/msys64/mingw64/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_main.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_platform.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/win_dynld.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt/win_joystick_rawinput.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/win/win_serial_passthrough.c \ + C:/msys64/mingw64/bin/cmake.exe diff --git a/src/build64/src/qt/plat_autogen/moc_predefs.h b/src/build64/src/qt/plat_autogen/moc_predefs.h new file mode 100644 index 000000000..50f190338 --- /dev/null +++ b/src/build64/src/qt/plat_autogen/moc_predefs.h @@ -0,0 +1,479 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __FLT16_HAS_QUIET_NAN__ 1 +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 16 +#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16 +#define __INTMAX_C(c) c ## LL +#define __CHAR_BIT__ 8 +#define __MINGW32__ 1 +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define _WIN64 1 +#define __WINT_MAX__ 0xffff +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define __BFLT16_MIN_10_EXP__ (-37) +#define QT_GUI_LIB 1 +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __WCHAR_MAX__ 0xffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define __DEC64_MAX_EXP__ 385 +#define __INT8_C(c) c +#define __LDBL_HAS_INFINITY__ 1 +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_attributes 200809L +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __BFLT16_MAX_10_EXP__ 38 +#define __BFLT16_MAX_EXP__ 128 +#define __LDBL_IS_IEC_60559__ 1 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define __UINTMAX_TYPE__ long long unsigned int +#define __cpp_nsdmi 200809L +#define __BFLT16_DECIMAL_DIG__ 4 +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 1 +#define _CRT_SECURE_NO_WARNINGS 1 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ 0 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __ATOMIC_SEQ_CST 5 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define CMAKE 1 +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __WIN64 1 +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 1 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 1 +#define __DEC32_MAX__ 9.999999E96DF +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT_WIDTH__ 32 +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __cpp_return_type_deduction 201304L +#define __FLT16_MIN_EXP__ (-13) +#define __FLT64_MANT_DIG__ 53 +#define _REENTRANT 1 +#define __FLT64X_MANT_DIG__ 64 +#define __BFLT16_DIG__ 2 +#define __GNUC__ 13 +#define __GXX_RTTI 1 +#define __MMX__ 1 +#define NTDDI_VERSION 0x06010000 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 16 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __SIZE_TYPE__ long long unsigned int +#define __FLT64_MAX_10_EXP__ 308 +#define __BFLT16_IS_IEC_60559__ 0 +#define __FLT16_MAX_10_EXP__ 4 +#define __cpp_delegating_constructors 200604L +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffff +#define __DBL_HAS_INFINITY__ 1 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_FLOAT__ 4 +#define __WINNT__ 1 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 64 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ short int +#define __STRICT_ANSI__ 1 +#define __MMX_WITH_SSE__ 1 +#define __LDBL_HAS_DENORM__ 1 +#define QT_WIDGETS_LIB 1 +#define __SEG_GS 1 +#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16 +#define __cplusplus 201703L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __FLT16_DECIMAL_DIG__ 5 +#define __SSE2_MATH__ 1 +#define __ATOMIC_HLE_RELEASE 131072 +#define __WIN32__ 1 +#define __PTRDIFF_MAX__ 0x7fffffffffffffffLL +#define __amd64 1 +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 13 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 8 +#define __BFLT16_HAS_INFINITY__ 1 +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 2 +#define __FLT32X_DIG__ 15 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define DEV_BRANCH 1 +#define __FLT32_MAX_EXP__ 128 +#define DISCORD 1 +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1018 +#define __FLT_MIN_EXP__ (-125) +#define __x86_64 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long long int +#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 8 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __LDBL_MAX_EXP__ 16384 +#define __DECIMAL_BID_FORMAT__ 1 +#define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT16_MIN_10_EXP__ (-4) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __cdecl __attribute__((__cdecl__)) +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "13.2.0" +#define __UINT64_C(c) c ## ULL +#define __cpp_unicode_characters 201411L +#define _WIN32 1 +#define __SEH__ 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define SIZEOF_DPTR (sizeof(void*)) +#define __FLT32X_MIN_EXP__ (-1021) +#define __cpp_aggregate_bases 201603L +#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16 +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define _INTEGRAL_MAX_BITS 64 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __INT_FAST32_TYPE__ int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DEC128_MAX_EXP__ 6145 +#define __DBL_HAS_DENORM__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 1 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define DEBUG 1 +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __BFLT16_HAS_QUIET_NAN__ 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## ULL +#define __FLT16_DIG__ 3 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __cpp_constexpr 201603L +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __USER_LABEL_PREFIX__ +#define __SIZEOF_PTRDIFF_T__ 8 +#define __FLT64X_HAS_INFINITY__ 1 +#define __SIZEOF_LONG__ 4 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 1 +#define __x86_64__ 1 +#define __FLT16_IS_IEC_60559__ 1 +#define __FLT16_MAX_EXP__ 16 +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __MSVCRT__ 1 +#define __INT_FAST16_MAX__ 0x7fff +#define __GCC_CONSTRUCTIVE_SIZE 64 +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define __UINT_FAST16_TYPE__ short unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 64 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __DEC64_MANT_DIG__ 16 +#define QT_NETWORK_LIB 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __nocona__ 1 +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffffffffffffLL +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define __WIN64__ 1 +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __stdcall __attribute__((__stdcall__)) +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __GXX_MERGED_TYPEINFO_NAMES 0 +#define __UINT16_C(c) c +#define __PTRDIFF_WIDTH__ 64 +#define __LDBL_MANT_DIG__ 64 +#define __cpp_range_based_for 201603L +#define __INT_FAST16_WIDTH__ 16 +#define _WINSOCK_DEPRECATED_NO_WARNINGS 1 +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __FLT16_HAS_INFINITY__ 1 +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201411L +#define __DEC32_MANT_DIG__ 7 +#define __INTPTR_TYPE__ long long int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __pic__ 1 +#define __UINTPTR_MAX__ 0xffffffffffffffffULL +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_decltype 200707L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT32_HAS_INFINITY__ 1 +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define __cpp_inline_variables 201606L +#define __BFLT16_MIN_EXP__ (-125) +#define __INT_MAX__ 0x7fffffff +#define __nocona 1 +#define __code_model_medium__ 1 +#define __INT64_TYPE__ long long int +#define __FLT_MAX_EXP__ 128 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __DBL_MANT_DIG__ 53 +#define __cpp_inheriting_constructors 201511L +#define QT_CORE_LIB 1 +#define __SIZEOF_FLOAT128__ 16 +#define __BFLT16_MANT_DIG__ 8 +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ short unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __amd64__ 1 +#define __WINT_WIDTH__ 16 +#define __INT_LEAST64_WIDTH__ 64 +#define __FLT32X_MAX_10_EXP__ 308 +#define __cpp_namespace_attributes 201411L +#define __WIN32 1 +#define __SIZEOF_INT128__ 16 +#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#define __FLT64X_IS_IEC_60559__ 1 +#define __WCHAR_UNSIGNED__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __INT_LEAST32_TYPE__ int +#define __thiscall __attribute__((__thiscall__)) +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __SIZEOF_WCHAR_T__ 2 +#define __GNUC_PATCHLEVEL__ 0 +#define __WINNT 1 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __SSE3__ 1 +#define __INT_FAST8_TYPE__ signed char +#define __fastcall __attribute__((__fastcall__)) +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __STDCPP_THREADS__ 1 +#define __BFLT16_HAS_DENORM__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __FLT16_HAS_DENORM__ 1 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __MINGW64__ 1 +#define __GCC_DESTRUCTIVE_SIZE 64 +#define __INTMAX_WIDTH__ 64 +#define __cpp_runtime_arrays 198712L +#define __FLT32_DIG__ 6 +#define __UINT64_TYPE__ long long unsigned int +#define __UINT32_C(c) c ## U +#define __cpp_alias_templates 200704L +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define USE_DYNAREC 1 +#define __FLT128_IS_IEC_60559__ 1 +#define USE_NEW_DYNAREC 1 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __PIC__ 1 +#define __INT32_MAX__ 0x7fffffff +#define __UINT_FAST32_TYPE__ unsigned int +#define __FLT16_MANT_DIG__ 11 +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define __SSE2__ 1 +#define __cpp_deduction_guides 201703L +#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 2 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define _CRT_NONSTDC_NO_WARNINGS 1 +#define __INT16_C(c) c +#define __STDC__ 1 +#define __PTRDIFF_TYPE__ long long int +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1 +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ long long unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201304L +#define __SSE_MATH__ 1 +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffff +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __SIZE_MAX__ 0xffffffffffffffffULL +#define __UINT_FAST8_TYPE__ unsigned char +#define __cpp_init_captures 201304L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 +#define __declspec(x) __attribute__((x)) diff --git a/src/build64/src/qt/plat_autogen/mocs_compilation.cpp b/src/build64/src/qt/plat_autogen/mocs_compilation.cpp new file mode 100644 index 000000000..bda67f76e --- /dev/null +++ b/src/build64/src/qt/plat_autogen/mocs_compilation.cpp @@ -0,0 +1,3 @@ +// This file is autogenerated. Changes will be overwritten. +// No files found that require moc or the moc files are included +enum some_compilers { need_more_than_nothing }; diff --git a/src/build64/src/qt/plat_autogen/timestamp b/src/build64/src/qt/plat_autogen/timestamp new file mode 100644 index 000000000..e69de29bb diff --git a/src/build64/src/qt/qt_translations.qrc b/src/build64/src/qt/qt_translations.qrc new file mode 100644 index 000000000..017354f82 --- /dev/null +++ b/src/build64/src/qt/qt_translations.qrc @@ -0,0 +1,27 @@ + + + 86box_ca-ES.qm + 86box_cs-CZ.qm + 86box_de-DE.qm + 86box_en-US.qm + 86box_en-GB.qm + 86box_es-ES.qm + 86box_fi-FI.qm + 86box_fr-FR.qm + 86box_hr-HR.qm + 86box_hu-HU.qm + 86box_it-IT.qm + 86box_ja-JP.qm + 86box_ko-KR.qm + 86box_pl-PL.qm + 86box_pt-BR.qm + 86box_pt-PT.qm + 86box_ru-RU.qm + 86box_sk-SK.qm + 86box_sl-SI.qm + 86box_tr-TR.qm + 86box_uk-UA.qm + 86box_zh-CN.qm + 86box_zh-TW.qm + + diff --git a/src/build64/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp b/src/build64/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp new file mode 100644 index 000000000..8e22ae4cc --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EJRQKI7XPS/qrc_qt_translations.cpp @@ -0,0 +1,52611 @@ +/**************************************************************************** +** Resource object code +** +** Created by: The Resource Compiler for Qt version 5.15.10 +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +static const unsigned char qt_resource_data[] = { + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_sl-SI.qm + 0x0,0x0,0x92,0x5f, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x27,0x73,0x0,0x0,0x0,0x48, + 0x0,0x0,0x45,0xe9,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0xfc,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x54,0x0,0x0,0x4,0xf2,0x0,0x0,0x4f,0x85,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0x56,0x0,0x0,0x5,0x3b,0x0,0x0,0x5b,0xd6,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0x25,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xed,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x35,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x7d,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xbc,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x4,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x4c,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x94,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xb2,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0x28,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0x18,0x0,0x0,0x4d,0x85,0x0,0x0,0x4b,0x36,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5b,0xf9,0x0,0x0,0x5d,0x81,0x0,0x0,0x82,0xc9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x2f,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x9b,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x4a,0x0,0x4,0x8c,0xaf,0x0,0x0,0x25,0x92,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0x4c,0x0,0x4,0xa7,0x89,0x0,0x0,0x3c,0xb,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x41,0x28,0x0,0x4,0xc8,0xa4,0x0,0x0,0x42,0x61,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3f,0xb3,0x0,0x4,0xd0,0x25,0x0,0x0,0x42,0xc2,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x45,0x65,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0x6b,0x0,0x5,0x78,0x79, + 0x0,0x0,0x69,0x14,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0xf6,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6d,0x5d,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0xf1,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x10,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x49,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xc9,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x4d,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x5f,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x47,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0x92,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x1a,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7d,0xa9,0x0,0x3b,0xa9,0x68,0x0,0x0,0x19,0xd0,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1c,0x65,0x0,0x4c,0x99,0x62,0x0,0x0,0x3e,0x8a,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x35,0x37,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0x87,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x70,0x45,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0xd4,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7a,0x8d,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7b,0x14,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x85,0x2f,0x0,0x73,0x75,0x3e,0x0,0x0,0x33,0xea,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0xd,0x0,0x97,0x96,0x4,0x0,0x0,0x36,0x7e,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4d,0x79,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0x49,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x48,0xa2,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0xf,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x18,0xd7,0x1,0x9,0x1c,0x92,0x0,0x0,0x40,0x84,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2a,0x10,0x1,0x39,0xa4,0xce,0x0,0x0,0x57,0xaa,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7a,0xb1,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0x48,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x48,0x63,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x4a,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x79,0x38,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3a,0x9d,0x1,0x91,0xe,0x73, + 0x0,0x0,0x28,0x15,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4a,0xcc,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x52,0xdd,0x1,0xb0,0x47,0x5c,0x0,0x0,0x51,0x71,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x73,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3f,0xd6,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x49,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x39,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x30,0xe6,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0xba,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x70,0x98,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x8,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x72,0x49,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0xd4,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x71,0x5f,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0x90,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4a,0x3d,0x2,0x78,0x48,0x1a,0x0,0x0,0x52,0x91,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x83,0x29,0x2,0x90,0x8d,0x12,0x0,0x0,0x41,0x75,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0x96,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0xb5,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xc9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x36,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x1e,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xae,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x6b,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0x50,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x85,0x53,0x3,0x5,0x38,0xb2,0x0,0x0,0x3e,0xb0,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0x43,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x3e,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x16,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x3d,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x51,0x9b,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xf5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x1c,0x3,0x6a,0x66,0x2e,0x0,0x0,0x55,0xf1,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x53,0xee,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xc6,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2f,0x9f,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x6f,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0x82,0x3,0xa4,0x35,0xa5,0x0,0x0,0x41,0x8,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x40,0xda,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0xa9,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x58,0x6d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0xe3,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6f,0x44,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6f,0x0,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0xbc,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6e,0x78,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xd0,0x4,0x3,0xf6,0x9a,0x0,0x0,0x55,0x88,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x16,0xe7,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0x65,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0x8f,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x36,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xf4,0x4,0x31,0xff,0xe9,0x0,0x0,0x25,0xbd,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x28,0xd9,0x4,0x51,0x79,0xb1,0x0,0x0,0x73,0x4b,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7c,0x2,0x4,0x5b,0x53,0x1f,0x0,0x0,0x24,0xce,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6e,0x3d,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3b,0x46,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3b,0x6d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x33,0x61,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2e,0xb4,0x4,0xb8,0x1,0x2e,0x0,0x0,0x37,0xd2,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x87,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xb0,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0x9b,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x59,0xbe,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x32,0x28,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x41,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0x11,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x59,0xe8,0x4,0xeb,0x2f,0xa,0x0,0x0,0x50,0x8c,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x49,0xec,0x5,0x18,0x5,0x95,0x0,0x0,0x7e,0x2d,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x15,0xbb,0x5,0x30,0xd3,0xe,0x0,0x0,0x39,0xe2,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x59,0x97,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0xea,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0xe2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3b,0xc5,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0x84,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0x16,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7a,0x3e,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x74,0x73,0x5,0xa5,0x3a,0x79,0x0,0x0,0x26,0x5,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x70,0x6d,0x5,0xb2,0x16,0x79,0x0,0x0,0x67,0x34,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x46,0xea,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0x1e,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3e,0x1b,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0x64,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xc3,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xb9,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4a,0x90,0x5,0xc1,0x4d,0x83,0x0,0x0,0x37,0x4,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x81,0x4d,0x5,0xd0,0x4f,0x11,0x0,0x0,0x81,0xf3,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xdc,0x5,0xdf,0xba,0xba,0x0,0x0,0x82,0x3f,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0xbe,0x6,0x7,0xd3,0xda,0x0,0x0,0x4c,0x7d,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x36,0xb1,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0x1b,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x39,0xaa,0x6,0x38,0x9f,0x35,0x0,0x0,0x37,0x79,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1e,0x7a,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x87,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x32,0x54,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7f,0x7c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x48,0xeb,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0x5d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x49,0x54,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1c,0xd1,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3c,0xb1,0x6,0x81,0xb7,0x1f,0x0,0x0,0x38,0xcb,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6f,0x88,0x6,0x96,0xa4,0x13,0x0,0x0,0x44,0x1c,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0x7a,0x6,0xc3,0xce,0xa3,0x0,0x0,0x72,0xbe,0x6,0xce,0x41,0x63, + 0x0,0x0,0x44,0xbc,0x6,0xed,0xca,0xce,0x0,0x0,0x46,0x50,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xae,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x7a,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0x1e,0x7,0x0,0x57,0x53,0x0,0x0,0x27,0x8b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x53,0xc0,0x7,0x6,0x93,0xe3,0x0,0x0,0x84,0xc8,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0x49,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0xf,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1d,0xb8,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6d,0x22,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x58,0xf4,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4b,0xeb,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0xad,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0xa4,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x31,0xcf,0x7,0x58,0x61,0xe5,0x0,0x0,0x49,0x8d,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xd7,0x7,0x70,0xb3,0xaa,0x0,0x0,0x42,0xeb,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2e,0x74,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0xb3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x55,0xc6,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0xb7,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5c,0x9b,0x7,0xa4,0x32,0x89,0x0,0x0,0x1c,0x89,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7f,0x33,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x50,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x80,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0x41,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x90,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0x3f,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3c,0x2c,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x69,0x35,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4b,0x96,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0xc7,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x58,0x97,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xb8,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0x4,0x8,0x60,0xe7,0xcd,0x0,0x0,0x79,0xc3,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0x8f,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x43,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7b,0x3a,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0x85,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0x29,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0x1,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4e,0x71,0x8,0xa4,0xb,0xae,0x0,0x0,0x4e,0xb9,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3a,0xf1,0x8,0xa9,0xcf,0x35,0x0,0x0,0x30,0x4a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3f,0x32,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xf9,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3d,0x71,0x8,0xf7,0xb3,0xda,0x0,0x0,0x44,0x79,0x9,0x9,0x24,0x29, + 0x0,0x0,0x50,0xb6,0x9,0x49,0xfa,0x4a,0x0,0x0,0x32,0xf1,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x33,0x29,0x9,0x49,0xfa,0x6a,0x0,0x0,0x32,0x81,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x32,0xb9,0x9,0x4e,0xde,0x64,0x0,0x0,0x7b,0x87,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0x6b,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0xb,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x43,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x53,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0xa3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xda,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2e,0xdf,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0xf,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2f,0x3f,0x9,0x88,0x63,0x3a,0x0,0x0,0x2f,0x6f,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x22,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x57,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x6a,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0x2d,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x60,0xdd,0x9,0xc2,0x33,0xa9,0x0,0x0,0x15,0xe5,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x59,0x4a,0x9,0xd5,0x43,0xd3,0x0,0x0,0x34,0x7f,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xb3,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xe5,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3d,0xc8,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xa3,0xa,0x41,0x77,0x3, + 0x0,0x0,0x43,0xcc,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0x23,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x44,0xf6,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3d,0x31,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4d,0xcf,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x1c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7e,0x8a,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0xda,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x73,0x8,0xa,0x98,0x1f,0x89,0x0,0x0,0x35,0xaf,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x35,0x68,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4c,0xf1,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x35,0x5,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x81,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x35,0xf6,0xa,0xda,0x50,0x7e,0x0,0x0,0x7c,0xb9,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x88,0xa,0xea,0x46,0xf4,0x0,0x0,0x5a,0x9d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x36,0x22,0xb,0xa,0x72,0xc9,0x0,0x0,0x38,0xa3,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xf6,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0x5,0xb,0x29,0x70,0x65, + 0x0,0x0,0x45,0x8e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x8,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xf6,0xb,0x4e,0x19,0x54,0x0,0x0,0x51,0xe9,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0xec,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x67,0xb,0x95,0xed,0xa, + 0x0,0x0,0x53,0x71,0xb,0x9d,0xe,0xa2,0x0,0x0,0x31,0x97,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xf9,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0xab,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0xf6,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x24,0x45,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0x2f,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4b,0x54,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x84,0x92,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0xf3,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x73,0xbb,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x73,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x28,0xc,0x33,0xeb,0xe2,0x0,0x0,0x74,0x1b,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x43,0x24,0xc,0x42,0x70,0xde,0x0,0x0,0x28,0x4f,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0xe1,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0x2f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x76,0x7,0xc,0x77,0x67,0x19,0x0,0x0,0x43,0x6c,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x39,0x72,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x48,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x30,0x77,0xc,0x90,0x26,0xb5,0x0,0x0,0x7d,0x4d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5e,0xf6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x27,0xd6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0xf1,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x2a,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0x4e,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7f,0xb2,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xf,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x19,0xf4,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1d,0x6c,0xd,0x11,0x45,0x1a,0x0,0x0,0x26,0xea,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x81,0x74,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0x7f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x82,0x92,0xd,0x60,0xef,0x6a,0x0,0x0,0x4c,0xb5,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x34,0xbb,0xd,0x77,0xa4,0xc0,0x0,0x0,0x42,0x5,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x38,0x66,0xd,0x88,0x48,0x23,0x0,0x0,0x2f,0xf5,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3b,0x96,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xf8,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x83,0x69,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5b,0x8c,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x82,0x68,0xe,0x20,0x13,0x12,0x0,0x0,0x42,0x84,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x5b,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0x24,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x29,0x9a,0xe,0x48,0xfd,0xca,0x0,0x0,0x29,0x5f,0xe,0x48,0xff,0xca, + 0x0,0x0,0x29,0xd5,0xe,0x62,0x79,0x4,0x0,0x0,0x39,0x37,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0x13,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0x2c,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x31,0x6e,0xe,0x98,0x18,0x54,0x0,0x0,0x26,0x97,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0x4a,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0xe9,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6c,0x2b,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0x6d,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0xaf,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0x13,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0x97,0xe,0xe2,0x34,0x60,0x0,0x0,0x84,0x3e,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x84,0x68,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xc9,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x14,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x76,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0xf9,0xf,0x15,0xf4,0x85,0x0,0x0,0x4c,0x36,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x75,0x35,0xf,0x17,0x9c,0x64,0x0,0x0,0x7e,0xdf,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5d,0xca,0xf,0x29,0x4d,0x2a,0x0,0x0,0x46,0x1,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x40,0x39,0xf,0x30,0x6b,0x3,0x0,0x0,0x30,0xb1,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0xf5,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x93,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0xf5,0xf,0x70,0xaa,0x1a,0x0,0x0,0x81,0xb4,0xf,0x74,0xd,0xca, + 0x0,0x0,0x66,0xea,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0x22,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0xba,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xaf,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0xee,0xf,0xd3,0x41,0x72,0x0,0x0,0x3a,0x4c,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4f,0xa0,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0x16,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4f,0xdb,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0x51,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3c,0x71,0xf,0xe2,0xe9,0x49,0x0,0x0,0x82,0xe7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5f,0xc5,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0xb,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0x51,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0x97,0x69,0x0,0x0,0x85, + 0x7d,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x4a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65, + 0x0,0x6b,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x1,0xd, + 0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69, + 0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x6a,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25, + 0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20, + 0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x52,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0, + 0x53,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6a,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x67,0x0,0x75,0x0, + 0x62,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x73,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f, + 0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20, + 0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x70,0x0,0x72,0x0,0x65,0x1,0xd,0x0, + 0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76, + 0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x76,0x0, + 0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4f, + 0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4f,0x0,0x62,0x0,0x73,0x0, + 0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0xd,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x26,0x0,0x4d,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26, + 0x0,0x52,0x0,0x61,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c, + 0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46, + 0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0, + 0x43,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0, + 0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1, + 0xd,0x0,0x69,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0x50,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20, + 0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x1,0xd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x53,0x0,0x6b,0x0, + 0x72,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x75,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x43,0x0,0x65, + 0x0,0x6c,0x0,0x6f,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c, + 0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0, + 0x61,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0, + 0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74, + 0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x54,0x0,0x69,0x0, + 0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x75,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4d, + 0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x55,0x0,0x74,0x0,0x69,0x1,0x61,0x0, + 0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0, + 0x4e,0x0,0x61,0x0,0x6a,0x0,0x62,0x0,0x6c,0x0,0x69,0x1,0x7e,0x0,0x6a,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72, + 0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4e,0x0,0x6f, + 0x0,0x76,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75, + 0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x6a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x4d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x76,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x47,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x53,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x61, + 0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x64, + 0x0,0x6e,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c, + 0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4f,0x0, + 0x64,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4f,0x0,0x64,0x0, + 0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x53,0x0,0x26,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x54, + 0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26, + 0x0,0x49,0x0,0x7a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x1,0xd,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4b,0x0, + 0x76,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x6f,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x6a,0x0,0x65,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61, + 0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20, + 0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x72,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x7a,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4f,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x6a, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0, + 0x50,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0, + 0x6a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x67, + 0x0,0x6c,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x42,0x0,0x26,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x46,0x0, + 0x61,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66, + 0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x28,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x73, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x7a, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x28,0x0, + 0x70,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x31,0x0,0x25,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34, + 0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x32,0x0,0x25,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x6f, + 0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35, + 0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22, + 0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20, + 0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x73,0x0, + 0x6b,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x74,0x0,0x65,0x0, + 0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x44,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x1,0x61,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x62,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x1,0x61,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79, + 0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68, + 0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74, + 0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f, + 0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65, + 0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e, + 0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65, + 0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x61,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x76,0x0, + 0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0, + 0x65,0x1,0xd,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e, + 0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x56,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xd2, + 0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x68,0x0,0x20, + 0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x76, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61, + 0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74, + 0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55, + 0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x61,0x0,0x2e, + 0x0,0x20,0x0,0x47,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0xd,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x53,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1, + 0xd,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78, + 0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x76,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x6e, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72, + 0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0, + 0x76,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42, + 0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0, + 0x26,0x0,0x61,0x1,0xd,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43, + 0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69, + 0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56, + 0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x56,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x6f, + 0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x52,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x65,0x1,0x7e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0, + 0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x79,0x0,0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f, + 0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72, + 0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0, + 0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x2,0xde,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x68,0x0,0x6b,0x0,0x6f, + 0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x64,0x0,0x72,0x0,0x75,0x1,0x7e,0x0,0x6c, + 0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x7a, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6d,0x0,0x2e, + 0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x6c,0x0,0x61,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x64,0x0,0x72,0x0,0x75, + 0x1,0x7e,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53, + 0x0,0x2d,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x73,0x0,0x6b,0x0,0x6f, + 0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0xa, + 0x0,0xa,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x6f,0x1,0xd,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70, + 0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x73,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x6f,0x1,0x61, + 0x1,0xd,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x74, + 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x20,0x0,0x62, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x6e, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67, + 0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74, + 0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f, + 0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69, + 0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68, + 0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75, + 0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20, + 0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69, + 0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c, + 0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20, + 0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f, + 0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x72,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65, + 0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x6b,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6c,0x0,0x6f,0x1, + 0x7e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x26,0x0,0x53, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x1,0xd,0x0,0x72,0x0,0x6e,0x0,0x6f, + 0x0,0x2d,0x0,0x62,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d, + 0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65, + 0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x6a,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x6c,0x0,0x6a,0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x1,0xd,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x61,0x0, + 0x20,0x1,0x7e,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e, + 0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58, + 0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x50,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x28,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x6f,0x0, + 0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44, + 0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0x7a, + 0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x67,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72, + 0x0,0x69,0x0,0x76,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x4f,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6a, + 0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x65,0x1,0xd,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x61,0x0,0x73,0x0, + 0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x1,0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0, + 0x74,0x0,0x76,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x20,0x0, + 0x69,0x0,0x7a,0x0,0x68,0x0,0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6b,0x0,0x61,0x1,0x7e,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65, + 0x1,0xd,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0xd, + 0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x61, + 0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x1, + 0xd,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a, + 0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x45,0x0, + 0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x49,0x0,0x7a, + 0x0,0x76,0x0,0x72,0x0,0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x7a, + 0x0,0x26,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x49,0x0, + 0x7a,0x0,0x76,0x0,0x6f,0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x5a,0x0,0x67,0x0,0x6f,0x0,0x64,0x0, + 0x6e,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x6c,0x0, + 0x6f,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x1,0xd,0x0, + 0x61,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x73, + 0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x70,0x0, + 0x6c,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74, + 0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4f,0x0,0x62,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x73,0x0,0x61, + 0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x49,0x0,0x7a,0x0,0x68,0x0, + 0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x56, + 0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x47,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x6f,0x1,0xd, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6a,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4e,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6f,0x0, + 0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x61,0x0, + 0x20,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x76,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0x69,0x0,0x74,0x0,0x72,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x49,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0, + 0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72, + 0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6b, + 0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x54,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x4e, + 0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c, + 0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x6b,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4f,0x0,0x6a,0x0, + 0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x56,0x0,0x26,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0xd,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x94,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x65,0x0, + 0x76,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x2c,0x0,0x20,0x0, + 0x6e,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x70,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x54,0x0,0x72,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x67,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x54,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x54,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67, + 0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x61,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x6a,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x47,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x69,0x1,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x26,0x0,0x52,0x0,0x61,0x0,0x7a,0x0,0x74,0x0,0x65,0x0, + 0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x44,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26, + 0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31, + 0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68, + 0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x52,0x0,0x61, + 0x0,0x7a,0x1,0x61,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x76, + 0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70, + 0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x55,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x1,0xd,0x0, + 0x61,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x61, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65, + 0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0, + 0x74,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0, + 0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x4e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x76,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x6a,0x0,0x61,0x0,0x76,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x49,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4a,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x56,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f, + 0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67, + 0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0,0x61,0x0,0x6b, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x6c,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x6a,0x0,0x61,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e, + 0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x49,0x0,0x7a,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25, + 0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0, + 0x65,0x0,0x74,0x0,0x6e,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x74,0x0, + 0x69,0x1,0xd,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe8,0x0,0x53,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x6b,0x0,0x61,0x0,0x6a,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x68,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x50, + 0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6c,0x0,0x6a, + 0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65, + 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa4,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x70,0x0, + 0x69,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x1,0x61,0x1,0xd,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0, + 0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x7a,0x0,0x64,0x0,0x72,0x0,0x75,0x1,0x7e,0x0,0x6c,0x0,0x6a,0x0, + 0x69,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x20,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c, + 0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c, + 0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61, + 0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x50,0x0,0x72,0x0, + 0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64, + 0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x61, + 0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74, + 0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x6c, + 0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x53,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74, + 0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x5a,0x0,0x61,0x0,0x73, + 0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x4f,0x0,0x62,0x1,0xd,0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x6a,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61, + 0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0, + 0x69,0x1,0x61,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6a, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f, + 0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x56,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x6f,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x4e,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x4e,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x69,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x42,0x0,0x72,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x0,0x74,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x49,0x0,0x7a,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x6b,0x0, + 0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4a,0x0,0x65,0x0,0x64,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30, + 0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xd0,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x6f,0x1,0xd,0x0, + 0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x61,0x0, + 0x62,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0, + 0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20, + 0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x53,0x0,0x65,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0, + 0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65, + 0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x70,0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8e,0x1,0xc,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x1,0x7e,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x76,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x50,0x0,0x6f,0x0,0x70,0x0, + 0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x50,0x0,0x72,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x76,0x0, + 0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x65,0x0,0x6b,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28, + 0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20, + 0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x20,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0, + 0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0,0x69,0x0, + 0x6e,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x50,0x0,0x72,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0, + 0x6a,0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x70,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0,0x6b,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42, + 0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x70, + 0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0,0x6b, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73, + 0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x65,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61, + 0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69, + 0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72, + 0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26, + 0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x42,0x0, + 0x61,0x0,0x72,0x0,0x76,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x47,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26, + 0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x1,0x61,0x0,0x74, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x75,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x55,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x4e,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x75,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x6a,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61, + 0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65, + 0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x6c,0x0,0x6a,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x7a,0x0, + 0x76,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78, + 0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0, + 0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a, + 0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x26,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x68, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x54,0x0,0x53,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x74,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x7a,0x0, + 0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0, + 0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63, + 0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64, + 0x0,0x49,0x0,0x7a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x67, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x7a,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x76,0x0,0x73,0x0,0x6b,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0, + 0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0, + 0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69, + 0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x5a,0x0,0x76,0x0,0x6f, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4f, + 0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4f,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a, + 0x0,0x76,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x6f,0x1,0xd,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x6f, + 0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44, + 0x0,0x6f,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x67, + 0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20, + 0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57, + 0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x44,0x0, + 0x6f,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69, + 0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0x69,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x48,0x0,0x69,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53, + 0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x20,0x0,0x32,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0, + 0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x72,0x0, + 0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x34,0x0, + 0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73, + 0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x67,0x0,0x75,0x0, + 0x6d,0x0,0x62,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x62,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b, + 0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x1,0x61,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x1, + 0xd,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x6e,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6c,0x0, + 0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x4f,0x0,0x6d,0x0,0x72,0x0, + 0x65,0x1,0x7e,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x6b,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0xd,0x0, + 0x65,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c, + 0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x49,0x0,0x7a,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x69,0x0,0x73,0x0, + 0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x1, + 0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73, + 0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c, + 0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e, + 0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69, + 0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x2c,0x0,0x54,0x0, + 0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x1,0x61,0x0, + 0x65,0x0,0x76,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x6f,0x0, + 0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x61,0x0,0x6b,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x6f,0x1,0x61,0x1, + 0xd,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0, + 0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x1, + 0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x1,0x7e,0x0,0x69,0x0,0x67,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65, + 0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64, + 0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa, + 0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70, + 0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65, + 0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20, + 0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, + 0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa, + 0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d, + 0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x54, + 0x0,0x6f,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x67, + 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x72,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0,0x72,0x0,0x73,0x0,0x74,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x72,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x1,0x61,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x72,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x6a, + 0x0,0x69,0x1,0x7e,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20, + 0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x70,0x0,0x65,0x1,0x61,0x0, + 0x65,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x76,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0, + 0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x6f,0x0,0x62,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, + 0x67,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61, + 0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x55,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x61,0x0, + 0x62,0x0,0x69,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x76,0x0, + 0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x56,0x0,0x72,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xe,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x6b,0x0,0x61,0x0,0x6a,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x68,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b, + 0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x6f, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x1,0xd,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6a, + 0x0,0x6f,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78, + 0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22, + 0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67, + 0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d, + 0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x6f,0x0,0x6f, + 0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x1,0xc,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x6f,0x0,0x64,0x0,0x6f,0x1,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x76,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x1,0x60,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x69,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73, + 0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x4e,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x72,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ja-JP.qm + 0x0,0x0,0x78,0xb1, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x23,0x29,0x0,0x0,0x0,0x48, + 0x0,0x0,0x3a,0xff,0x0,0x0,0x0,0x53,0x0,0x0,0x56,0x3e,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0xa8,0x0,0x0,0x4,0xf2,0x0,0x0,0x42,0xcd,0x0,0x0,0x5,0x12, + 0x0,0x0,0x44,0x4e,0x0,0x0,0x5,0x3b,0x0,0x0,0x4c,0x96,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x4c,0xcd,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x45,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x99,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xed,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x38,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x8c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xe0,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x34,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x58,0x0,0x0,0x49,0xc3,0x0,0x0,0x22,0xee,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3f,0x4a,0x0,0x0,0x4d,0x85,0x0,0x0,0x3f,0x68,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x4c,0xb1,0x0,0x0,0x5d,0x81,0x0,0x0,0x69,0x49,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0xa5,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x11,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x10,0x6a,0x0,0x4,0x8c,0xaf,0x0,0x0,0x21,0x8a,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x23,0xa,0x0,0x4,0xa7,0x89,0x0,0x0,0x33,0x9f,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x37,0x66,0x0,0x4,0xc8,0xa4,0x0,0x0,0x38,0x37,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x36,0x3b,0x0,0x4,0xd0,0x25,0x0,0x0,0x38,0x82,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x3a,0x93,0x0,0x5,0x56,0x45,0x0,0x0,0x4c,0x39,0x0,0x5,0x78,0x79, + 0x0,0x0,0x56,0x56,0x0,0x5,0x98,0xc5,0x0,0x0,0x57,0x42,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x59,0xcb,0x0,0x5,0xc0,0x65,0x0,0x0,0x63,0x65,0x0,0x12,0x74,0x52, + 0x0,0x0,0x16,0x98,0x0,0x19,0x74,0x52,0x0,0x0,0x16,0xd1,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0x1b,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x75,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0x27,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0x15,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x10,0xca,0x0,0x34,0x9,0xc8,0x0,0x0,0x12,0x0,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x65,0x67,0x0,0x3b,0xa9,0x68,0x0,0x0,0x17,0x58,0x0,0x46,0x86,0x49, + 0x0,0x0,0x19,0x9b,0x0,0x4c,0x99,0x62,0x0,0x0,0x35,0x68,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2d,0xe3,0x0,0x58,0xc9,0xc4,0x0,0x0,0x55,0xed,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x5c,0x19,0x0,0x5a,0x6c,0x44,0x0,0x0,0x5a,0x32,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x63,0x17,0x0,0x5c,0x6,0x8a,0x0,0x0,0x63,0x84,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x6b,0x81,0x0,0x73,0x75,0x3e,0x0,0x0,0x2c,0xd4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x4c,0x1,0x0,0x97,0x96,0x4,0x0,0x0,0x2f,0x4,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x41,0x3f,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x42,0x9d,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x3d,0x32,0x0,0xb8,0x5f,0x43,0x0,0x0,0x4e,0x29,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x16,0x5f,0x1,0x9,0x1c,0x92,0x0,0x0,0x36,0xde,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x25,0x94,0x1,0x39,0xa4,0xce,0x0,0x0,0x49,0x3e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x63,0x35,0x1,0x4c,0x50,0xee,0x0,0x0,0x54,0x2e,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x3c,0xf7,0x1,0x61,0xac,0xc9,0x0,0x0,0x11,0x70,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x62,0x1c,0x1,0x7a,0x2c,0x99,0x0,0x0,0x32,0x3b,0x1,0x91,0xe,0x73, + 0x0,0x0,0x23,0xc5,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3f,0x2,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x45,0x97,0x1,0xb0,0x47,0x5c,0x0,0x0,0x44,0x69,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x9d,0x1,0xc8,0x65,0x8f,0x0,0x0,0x36,0x58,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0x45,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0xd9,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2a,0x5e,0x1,0xe6,0x0,0xe9,0x0,0x0,0x57,0x0,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x5c,0x58,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0x34,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x5d,0x83,0x2,0x23,0x3c,0x6b,0x0,0x0,0x5d,0x34,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x5c,0xe5,0x2,0x3c,0xaa,0x89,0x0,0x0,0x14,0x3c,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x3e,0x85,0x2,0x78,0x48,0x1a,0x0,0x0,0x45,0x5d,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x69,0xa9,0x2,0x90,0x8d,0x12,0x0,0x0,0x37,0x87,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x4e,0x92,0x2,0xad,0x4a,0x22,0x0,0x0,0x54,0x83,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0x27,0x2,0xb3,0xba,0xf1,0x0,0x0,0xa,0xfc,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0xea,0x2,0xbb,0x66,0x33,0x0,0x0,0xf,0xee,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x10,0x91,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x4e,0x5c,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x6b,0xa5,0x3,0x5,0x38,0xb2,0x0,0x0,0x35,0x88,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x51,0x29,0x3,0x41,0x45,0x12,0x0,0x0,0x12,0x2a,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x12,0xe2,0x3,0x4b,0x26,0xf2,0x0,0x0,0x13,0x9,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x44,0x93,0x3,0x65,0x26,0xf2,0x0,0x0,0x15,0xa1,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x15,0xc8,0x3,0x6a,0x66,0x2e,0x0,0x0,0x47,0xf3,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x46,0x74,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0xe0,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x29,0x59,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0xc3,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x17,0xa,0x3,0xa4,0x35,0xa5,0x0,0x0,0x37,0x46,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x37,0x16,0x3,0xa5,0x26,0xf2,0x0,0x0,0x17,0x31,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x49,0xd9,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x5c,0x93,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x5b,0x52,0x3,0xe4,0x25,0x5a,0x0,0x0,0x5b,0x1e,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x5a,0xea,0x3,0xe4,0x25,0x7a,0x0,0x0,0x5a,0xb6,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x7c,0x4,0x3,0xf6,0x9a,0x0,0x0,0x47,0x9e,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x14,0x93,0x4,0x15,0x75,0x22,0x0,0x0,0x12,0x51,0x4,0x17,0x65,0x22, + 0x0,0x0,0x12,0x7b,0x4,0x1c,0x68,0x69,0x0,0x0,0x13,0xe2,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0x14,0x4,0x31,0xff,0xe9,0x0,0x0,0x21,0xa7,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x24,0x7d,0x4,0x51,0x79,0xb1,0x0,0x0,0x5e,0x47,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x64,0x46,0x4,0x5b,0x53,0x1f,0x0,0x0,0x21,0x12,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x5a,0x8d,0x4,0x7d,0xb,0xa4,0x0,0x0,0x32,0xce,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x32,0xf9,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x2c,0x79,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x28,0x9c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x30,0x16,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xb,0x51,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x26,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2c,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x15,0x47,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x4a,0xf2,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x2b,0x66,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0xed,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1a,0x41,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x4b,0x1a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x43,0xb4,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x3e,0x40,0x5,0x18,0x5,0x95,0x0,0x0,0x65,0xb1,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x13,0x67,0x5,0x30,0xd3,0xe,0x0,0x0,0x31,0xb2,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x4a,0xcf,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x6a,0x46,0x5,0x5f,0x7b,0x59,0x0,0x0,0xe,0x6c,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x33,0x4f,0x5,0x88,0x2e,0xd9,0x0,0x0,0x59,0xe8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x46,0x96,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x62,0xe2,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x5f,0x2b,0x5,0xa5,0x3a,0x79,0x0,0x0,0x21,0xf5,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x5c,0x37,0x5,0xb2,0x16,0x79,0x0,0x0,0x54,0xe6,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x3b,0xc8,0x5,0xb3,0x5f,0x79,0x0,0x0,0x3c,0xb6,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x35,0x29,0x5,0xb8,0x5d,0xad,0x0,0x0,0x13,0x30,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x11,0xc9,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x12,0xa5,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3e,0xc6,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2f,0x6c,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x67,0xf9,0x5,0xd0,0x4f,0x11,0x0,0x0,0x68,0x91,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xd,0x8e,0x5,0xdf,0xba,0xba,0x0,0x0,0x68,0xcd,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x53,0xc0,0x6,0x7,0xd3,0xda,0x0,0x0,0x40,0x79,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2f,0x25,0x6,0x19,0x20,0x43,0x0,0x0,0x57,0x5f,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x31,0x84,0x6,0x38,0x9f,0x35,0x0,0x0,0x2f,0xc7,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1b,0x5e,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x2b,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x2b,0x88,0x6,0x6c,0xb8,0x3,0x0,0x0,0x66,0xba,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x3d,0x6d,0x6,0x74,0xe,0x6a,0x0,0x0,0x4f,0x2d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x3d,0xcc,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1a,0x7,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x34,0x33,0x6,0x81,0xb7,0x1f,0x0,0x0,0x30,0xe1,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x5b,0x86,0x6,0x96,0xa4,0x13,0x0,0x0,0x39,0x96,0x6,0x97,0x71,0x79, + 0x0,0x0,0x56,0xbc,0x6,0xc3,0xce,0xa3,0x0,0x0,0x5d,0xd2,0x6,0xce,0x41,0x63, + 0x0,0x0,0x3a,0x18,0x6,0xed,0xca,0xce,0x0,0x0,0x3b,0x50,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x30,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xe4,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x3d,0x9a,0x7,0x0,0x57,0x53,0x0,0x0,0x23,0x41,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x46,0x48,0x7,0x6,0x93,0xe3,0x0,0x0,0x6b,0x1e,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1b,0x2f,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x69,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1a,0xba,0x7,0x2a,0xb5,0xca,0x0,0x0,0x59,0x9c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x4a,0x58,0x7,0x35,0x7c,0x8a,0x0,0x0,0x40,0x7,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x50,0xcd,0x7,0x40,0xb5,0xe2,0x0,0x0,0x16,0x2c,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x2b,0x17,0x7,0x58,0x61,0xe5,0x0,0x0,0x3d,0xf9,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x10,0x17,0x7,0x70,0xb3,0xaa,0x0,0x0,0x38,0xa3,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x28,0x70,0x7,0x9e,0x50,0x1e,0x0,0x0,0x56,0xf,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x47,0xce,0x7,0xa3,0x63,0x9e,0x0,0x0,0x55,0x57,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x4d,0x33,0x7,0xa4,0x32,0x89,0x0,0x0,0x19,0xbf,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x66,0x83,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xc6,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x1,0xf6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x22,0x37,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x52,0x30,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x51,0xeb,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x33,0xc0,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x56,0x77,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3f,0xc8,0x8,0x0,0x3f,0x29,0x0,0x0,0x51,0x83,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x49,0xfd,0x8,0x31,0xf7,0xee,0x0,0x0,0xb,0x80,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x44,0x1c,0x8,0x60,0xe7,0xcd,0x0,0x0,0x62,0x83,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x4f,0x59,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0xb1,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x63,0xa6,0x8,0x9b,0xc,0x24,0x0,0x0,0x58,0x7b,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x41,0xb5,0x8,0xa3,0xdb,0xae,0x0,0x0,0x42,0x63,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x41,0xef,0x8,0xa4,0xb,0xae,0x0,0x0,0x42,0x29,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x32,0x89,0x8,0xa9,0xcf,0x35,0x0,0x0,0x29,0xd4,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x35,0xd0,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x7f,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x34,0xb1,0x8,0xf7,0xb3,0xda,0x0,0x0,0x39,0xe1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x43,0xd8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x2c,0x11,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x2c,0x45,0x9,0x49,0xfa,0x6a,0x0,0x0,0x2b,0xa9,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x2b,0xdd,0x9,0x4e,0xde,0x64,0x0,0x0,0x63,0xe9,0x9,0x50,0x63,0x15, + 0x0,0x0,0x4b,0x8f,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x69,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0xef,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0xbd,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x52,0xf3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x5c,0x9,0x88,0x63,0xa, + 0x0,0x0,0x28,0xc1,0x9,0x88,0x63,0x1a,0x0,0x0,0x28,0xe7,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x29,0xd,0x9,0x88,0x63,0x3a,0x0,0x0,0x29,0x33,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0xb0,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x9d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x4b,0x57,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x50,0x55,0x9,0xc2,0x33,0xa9,0x0,0x0,0x13,0x91,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x4a,0x9a,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2d,0x35,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xf,0x27,0xa,0xf,0x3d,0xb9,0x0,0x0,0xf,0x59,0xa,0x17,0x34,0x34, + 0x0,0x0,0x34,0xea,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x7d,0xa,0x41,0x77,0x3, + 0x0,0x0,0x39,0x4a,0xa,0x4e,0x21,0xe,0x0,0x0,0x19,0x63,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x3a,0x48,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x34,0x81,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x41,0x7d,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0xc8,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x65,0xf8,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x57,0xf2,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x5e,0x10,0xa,0x98,0x1f,0x89,0x0,0x0,0x2e,0x53,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2e,0xe,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x40,0xd7,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2d,0xb7,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x5,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2e,0x98,0xa,0xda,0x50,0x7e,0x0,0x0,0x64,0xbd,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xe,0x1e,0xa,0xea,0x46,0xf4,0x0,0x0,0x4b,0xbb,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2e,0xba,0xb,0xa,0x72,0xc9,0x0,0x0,0x30,0xb9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x68,0xb,0x1e,0xee,0xfe,0x0,0x0,0x48,0xc3,0xb,0x29,0x70,0x65, + 0x0,0x0,0x3a,0xb0,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0xd0,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0xbc,0xb,0x4e,0x19,0x54,0x0,0x0,0x44,0xe1,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0xb8,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0x2b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x46,0x19,0xb,0x9d,0xe,0xa2,0x0,0x0,0x2a,0xeb,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x19,0x39,0xb,0xab,0x6c,0xfa,0x0,0x0,0x57,0xcb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x5a,0x54,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x20,0xbf,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x3c,0x9,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3f,0x86,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x6a,0xee,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x50,0xff,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x5e,0xa7,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0x3b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xe,0xb0,0xc,0x33,0xeb,0xe2,0x0,0x0,0x5e,0xe7,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x38,0xce,0xc,0x42,0x70,0xde,0x0,0x0,0x23,0xfb,0xc,0x48,0x83,0xde, + 0x0,0x0,0x52,0x75,0xc,0x4a,0x5f,0x82,0x0,0x0,0x41,0x5,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x60,0x3b,0xc,0x77,0x67,0x19,0x0,0x0,0x38,0xfe,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x31,0x54,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xf0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x29,0xf9,0xc,0x90,0x26,0xb5,0x0,0x0,0x65,0x21,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x4e,0xd6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x23,0x8c,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x59,0x7b,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xa8,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x4c,0xe8,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x66,0xe6,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x51,0xc3,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x17,0x7c,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1a,0x80,0xd,0x11,0x45,0x1a,0x0,0x0,0x22,0xbe,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x68,0x22,0xd,0x4a,0x90,0xb2,0x0,0x0,0x55,0x27,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x69,0x16,0xd,0x60,0xef,0x6a,0x0,0x0,0x40,0xa7,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2d,0x77,0xd,0x77,0xa4,0xc0,0x0,0x0,0x37,0xe9,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x30,0x8a,0xd,0x88,0x48,0x23,0x0,0x0,0x29,0x9b,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x33,0x20,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x5c,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x69,0xdf,0xd,0xf9,0x90,0xe9,0x0,0x0,0x4c,0x56,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x68,0xec,0xe,0x20,0x13,0x12,0x0,0x0,0x38,0x54,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xf,0xb5,0xe,0x48,0xfa,0xca,0x0,0x0,0x24,0xc8,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x25,0x2e,0xe,0x48,0xfd,0xca,0x0,0x0,0x24,0xfb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x25,0x61,0xe,0x62,0x79,0x4,0x0,0x0,0x31,0x2b,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1b,0x1,0xe,0x7b,0xa1,0x23,0x0,0x0,0x45,0xd2,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2a,0xc2,0xe,0x98,0x18,0x54,0x0,0x0,0x22,0x7d,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x53,0x6a,0xe,0xbe,0x61,0x81,0x0,0x0,0x58,0xb3,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x58,0xe5,0xe,0xbe,0x61,0x83,0x0,0x0,0x59,0x17,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x59,0x49,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x3e,0x63,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x11,0xa7,0xe,0xe2,0x34,0x60,0x0,0x0,0x6a,0x9a,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x6a,0xc4,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xf9,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0xe0,0xe,0xf7,0xac,0xae,0x0,0x0,0xe,0xf4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x6b,0x4b,0xf,0x15,0xf4,0x85,0x0,0x0,0x40,0x3a,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x5f,0xad,0xf,0x17,0x9c,0x64,0x0,0x0,0x66,0x3d,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x4d,0xf0,0xf,0x29,0x4d,0x2a,0x0,0x0,0x3b,0x17,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x36,0xa5,0xf,0x30,0x6b,0x3,0x0,0x0,0x2a,0x2d,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x5b,0xd5,0xf,0x5a,0x14,0x2,0x0,0x0,0xd,0x53,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x11,0x2b,0xf,0x70,0xaa,0x1a,0x0,0x0,0x68,0x5e,0xf,0x74,0xd,0xca, + 0x0,0x0,0x54,0xba,0xf,0x85,0x7b,0xea,0x0,0x0,0x4e,0xfa,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x10,0xf0,0xf,0xbd,0xdc,0x15,0x0,0x0,0xc,0x75,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x53,0xe8,0xf,0xd3,0x41,0x72,0x0,0x0,0x32,0x4,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x42,0xe8,0xf,0xd9,0x8c,0xca,0x0,0x0,0x43,0x4e,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x43,0x1b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x43,0x81,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x34,0x5,0xf,0xe2,0xe9,0x49,0x0,0x0,0x69,0x67,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x4f,0x85,0xf,0xf5,0xeb,0x52,0x0,0x0,0x4f,0xb9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x4f,0xed,0xf,0xf5,0xeb,0x54,0x0,0x0,0x50,0x21,0x69,0x0,0x0,0x6b, + 0xcf,0x3,0x0,0x0,0x0,0xe,0x0,0x20,0x0,0x2d,0x0,0x20,0x4e,0x0,0x66,0x42, + 0x50,0x5c,0x6b,0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d, + 0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc4,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x92, + 0x0,0x50,0x0,0x44,0x0,0x46,0x30,0x6b,0x81,0xea,0x52,0xd5,0x59,0x9,0x63,0xdb, + 0x30,0x59,0x30,0x8b,0x30,0x6b,0x30,0x6f,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67, + 0x0,0x73,0x30,0x4c,0x5f,0xc5,0x89,0x81,0x30,0x67,0x30,0x59,0x30,0x2,0x0,0xa, + 0x0,0xa,0x6c,0x4e,0x75,0x28,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x30,0xd7,0x30,0xea,0x30,0xf3, + 0x30,0xbf,0x30,0xfc,0x30,0x6b,0x90,0x1,0x4f,0xe1,0x30,0x55,0x30,0x8c,0x30,0x5f, + 0x65,0x87,0x66,0xf8,0x30,0x6f,0x30,0x1,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x30,0xd5,0x30,0xa1,0x30,0xa4, + 0x30,0xeb,0x30,0x68,0x30,0x57,0x30,0x66,0x4f,0xdd,0x5b,0x58,0x30,0x55,0x30,0x8c, + 0x30,0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x30,0x6e,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8a,0x2d, + 0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x25,0x0,0x69,0x30,0x64,0x30,0x6e,0x30,0xa6,0x30,0xa7,0x30,0xa4,0x30,0xc8,0x0, + 0x20,0x30,0xb9,0x30,0xc6,0x30,0xfc,0x30,0xc8,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x75,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x50,0x24,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x30,0x1,0x0,0x25,0x0,0x69,0x30,0x1,0x0, + 0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25, + 0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x30,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x78,0x0, + 0x28,0x0,0x26,0x0,0x31,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0, + 0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35, + 0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x32,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0, + 0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0, + 0x26,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26, + 0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34, + 0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28, + 0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x36, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x78,0x0,0x28, + 0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38, + 0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30,0x6e,0x30,0xd0, + 0x30,0xfc,0x30,0xb8,0x30,0xe7,0x30,0xf3,0x60,0xc5,0x58,0x31,0x0,0x28,0x0,0x26, + 0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xcd, + 0x4f,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc,0x0,0x28, + 0x9e,0xc4,0x82,0x72,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x30,0xd5,0x30,0xa9,0x30,0xfc,0x30,0xab,0x30,0xb9,0x30,0x4c,0x59,0x16,0x30, + 0x8c,0x30,0x8b,0x30,0x68,0x81,0xea,0x52,0xd5,0x30,0xdd,0x30,0xfc,0x30,0xba,0x0, + 0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x5e,0x73,0x57,0x47,0x0,0x28,0x0,0x26,0x0,0x41,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x65,0xe2,0x5b,0x9a,0x50, + 0x24,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x65,0x87,0x66,0xf8,0x0,0x28,0x0,0x26,0x0,0x44, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x65,0xe2, + 0x5b,0x58,0x30,0x6e,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x92,0x95,0x8b, + 0x30,0x4f,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0xe2,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0, + 0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x67,0x0,0x5f,0x8c,0x30,0x7e, + 0x30,0x67,0x65,0xe9,0x90,0x1,0x30,0x8a,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xd5,0x30, + 0xa9,0x30,0xeb,0x30,0xc0,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x51,0x68,0x75,0x3b,0x97,0x62,0x30,0x6e,0x62,0xe1,0x59,0x27,0x88,0x68, + 0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x51,0x68,0x75,0x3b,0x97,0x62,0x88,0x68,0x79,0x3a,0x0,0x28,0x0, + 0x26,0x0,0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30, + 0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc,0x0,0x28,0x7d,0xd1,0x82,0x72,0x0,0x29,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xcf,0x30,0xfc,0x30,0xc9, + 0x0,0x20,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xd8,0x30,0xeb,0x30, + 0xd7,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x30,0xb9,0x30,0xc6,0x30,0xfc,0x30,0xbf,0x30,0xb9,0x0,0x20,0x30, + 0xd0,0x30,0xfc,0x30,0x92,0x96,0xa0,0x30,0x59,0x0,0x28,0x0,0x26,0x0,0x48,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x28, + 0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x65,0x74,0x65,0x70,0x50,0xd, + 0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x82,0x72,0x53,0xcd,0x8e, + 0xe2,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x30,0xad,0x30,0xfc,0x30,0xdc,0x30,0xfc,0x30,0xc9,0x30,0x6f,0x30, + 0xad,0x30,0xe3,0x30,0xd7,0x30,0xc1,0x30,0xe3,0x30,0x4c,0x5f,0xc5,0x89,0x81,0x0, + 0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x7d,0xda,0x5f,0x62,0x88,0xdc,0x95,0x93,0x0,0x28, + 0x0,0x26,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x30,0xe1,0x30,0xc7,0x30,0xa3,0x30,0xa2,0x0,0x28,0x0,0x26,0x0,0x4d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xdf,0x30, + 0xe5,0x30,0xfc,0x30,0xc8,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x67,0x0,0x8f,0xd1,0x50,0x8d,0x88,0xdc,0x95, + 0x93,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x65,0xb0,0x89,0x8f,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x65,0xb0,0x89,0x8f,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x4e,0x0,0x66,0x42,0x50,0x5c,0x6b,0x62,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x8d,0x75,0x1f,0x0, + 0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x74,0xb0,0x58,0x83,0x8a,0x2d,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x50,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x47,0x0, + 0x42,0x0,0x28,0x30,0xb0,0x30,0xec,0x30,0xfc,0x30,0xb9,0x30,0xb1,0x30,0xfc,0x30, + 0xeb,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x93,0x32, + 0x97,0xf3,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x52,0x4d,0x30,0x6e,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x30,0x92,0x51,0x8d,0x8a,0xad,0x30,0x7f,0x8f,0xbc,0x30,0x7f,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x52,0x4a,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xb7,0x30,0xa7,0x30,0xfc,0x30, + 0xc0,0x30,0xfc,0x30,0x92,0x52,0x4a,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e, + 0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x92,0x59,0x9,0x66,0xf4,0x53,0xef,0x80,0xfd, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x51, + 0x48,0x98,0x2d,0x30,0x7e,0x30,0x67,0x5d,0xfb,0x30,0x4d,0x62,0x3b,0x30,0x59,0x0, + 0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x53,0xf3,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x30,0x92, + 0x5d,0xe6,0x0,0x41,0x0,0x4c,0x0,0x54,0x30,0x78,0x59,0x9,0x63,0xdb,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x30,0xbd,0x30,0xd5, + 0x30,0xc8,0x30,0xa6,0x30,0xa7,0x30,0xa2,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c, + 0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xb7,0x30,0xa7,0x30,0xfc,0x30,0xc0,0x30,0xfc, + 0x30,0x92,0x90,0x78,0x62,0x9e,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x8a,0x2d,0x5b,0x9a,0x0,0x28, + 0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x53,0xc2,0x71, + 0x67,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x6b, + 0x63,0x65,0xb9,0x5f,0x62,0x30,0xd4,0x30,0xaf,0x30,0xbb,0x30,0xeb,0x0,0x28,0x30, + 0xa2,0x30,0xb9,0x30,0xda,0x30,0xaf,0x30,0xc8,0x6b,0xd4,0x30,0x92,0x7d,0xad,0x63, + 0x1,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78, + 0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xd3,0x30,0xc7,0x30, + 0xaa,0x30,0x68,0x54,0xc,0x67,0x1f,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x30,0xc4,0x30,0xfc,0x30,0xeb,0x0,0x28,0x0,0x26,0x0,0x54, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x30,0xb9,0x30, + 0xc6,0x30,0xfc,0x30,0xbf,0x30,0xb9,0x30,0xd0,0x30,0xfc,0x30,0x6e,0x30,0xa2,0x30, + 0xa4,0x30,0xb3,0x30,0xf3,0x30,0x92,0x66,0xf4,0x65,0xb0,0x0,0x28,0x0,0x26,0x0, + 0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x57,0x82,0x76,0xf4,0x54,0xc,0x67,0x1f,0x0, + 0x28,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x29,0x0,0x28,0x0, + 0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x88,0x68,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc,0x0,0x28, + 0x76,0x7d,0x82,0x72,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e,0x88,0x68,0x79, + 0x3a,0x50,0xd,0x73,0x87,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x28,0x30,0xb7,0x30,0xb9,0x30,0xc6,0x30,0xe0, + 0x65,0xe2,0x5b,0x9a,0x50,0x24,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x28,0x7a, + 0x7a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x25,0x4f,0x4e,0x30,0x44,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28, + 0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x31,0x0,0x2e,0x0, + 0x35,0x0,0x25,0x4f,0x4e,0x30,0x44,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x25,0x4f,0x4e,0x30,0x44,0x0,0x52, + 0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25, + 0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0, + 0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e, + 0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f, + 0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e, + 0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69, + 0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33, + 0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0, + 0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x65,0x74,0x65, + 0x70,0x50,0xd,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33, + 0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xfc,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30,0x67,0x4f,0x7f, + 0x75,0x28,0x53,0xef,0x80,0xfd,0x30,0x6a,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xa4, + 0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x4c,0x89,0x8b,0x30,0x64,0x30,0x4b,0x30,0x8a, + 0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30,0x92,0x0,0x3c,0x0,0x61,0x0,0x20, + 0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74, + 0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x30,0xc0,0x30,0xa6,0x30,0xf3, + 0x30,0xed,0x30,0xfc,0x30,0xc9,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x30,0x57, + 0x30,0x66,0x30,0x1,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x20,0x30,0xc7, + 0x30,0xa3,0x30,0xec,0x30,0xaf,0x30,0xc8,0x30,0xea,0x30,0x6b,0x89,0xe3,0x51,0xcd, + 0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79, + 0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68, + 0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74, + 0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f, + 0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65, + 0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e, + 0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65, + 0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x43,0x0,0x50,0x0, + 0x49,0x30,0xb7,0x30,0xe3,0x30,0xc3,0x30,0xc8,0x30,0xc0,0x30,0xa6,0x30,0xf3,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68, + 0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30,0x6e,0x30,0xd0,0x30,0xfc,0x30,0xb8,0x30, + 0xe7,0x30,0xf3,0x60,0xc5,0x58,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xe2,0x5b,0x9a,0x30,0x6e,0x30,0xc7,0x30, + 0xa3,0x30,0xb9,0x30,0xaf,0x30,0x92,0x8f,0xfd,0x52,0xa0,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xb0,0x89,0x8f,0x30,0x6e,0x30,0xc7,0x30,0xa3, + 0x30,0xb9,0x30,0xaf,0x30,0x92,0x8f,0xfd,0x52,0xa0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x30,0xa2,0x30,0xc9,0x30,0xd0,0x30,0xf3,0x30,0xb9,0x30,0xc9,0x30,0xbb,0x30,0xaf, + 0x30,0xbf,0x30,0xfc,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0x59,0x30,0x79,0x30,0x66,0x30,0x6e,0x30, + 0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x30,0x59,0x30,0x79,0x30,0x66,0x30,0x6e,0x30,0xa4,0x30, + 0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41, + 0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x3,0x68,0x53,0xe4,0x30,0x44,0x30,0xd1,0x30,0xbd,0x30,0xb3,0x30,0xf3, + 0x30,0x6e,0x30,0xa8,0x30,0xdf,0x30,0xe5,0x30,0xec,0x30,0xfc,0x30,0xbf,0x30,0xfc, + 0x0,0xa,0x0,0xa,0x84,0x57,0x80,0x5,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x47, + 0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x32,0x4e,0xe5,0x96,0x4d,0x30,0x67,0x30,0xea,0x30,0xea, + 0x30,0xfc,0x30,0xb9,0x30,0x55,0x30,0x8c,0x30,0x66,0x30,0x44,0x30,0x7e,0x30,0x59, + 0x30,0x2,0x8a,0x73,0x30,0x57,0x30,0x4f,0x30,0x6f,0x0,0x20,0x0,0x4c,0x0,0x49, + 0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x30,0x92,0x30,0x54, + 0x89,0xa7,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f, + 0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, + 0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72, + 0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c, + 0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37, + 0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b, + 0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72, + 0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68, + 0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c, + 0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65, + 0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20, + 0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, + 0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75, + 0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e, + 0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e, + 0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29, + 0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65, + 0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75, + 0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74, + 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20, + 0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20, + 0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65, + 0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20, + 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65, + 0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63, + 0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f, + 0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43, + 0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e, + 0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x30, + 0x92,0x7d,0x42,0x4e,0x86,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b,0xff,0x1f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4f,0x7f,0x75,0x28,0x4e,0x2d,0x30,0x6e, + 0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x92,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x0,0x20, + 0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b, + 0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x81,0xea,0x52,0xd5,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75, + 0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0, + 0x54,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x0,0x28,0x0, + 0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x54,0x0, + 0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0, + 0x56,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xd9,0x30, + 0xfc,0x30,0xb7,0x30,0xc3,0x30,0xaf,0x0,0x20,0x30,0xbb,0x30,0xaf,0x30,0xbf,0x30, + 0xfc,0x0,0x20,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x30,0xc8,0x30,0xec,0x30,0xfc,0x30,0xb9,0x95,0x8b,0x59,0xcb,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x30,0xd6,0x30,0xed,0x30,0xc3,0x30,0xaf,0x30,0xb5,0x30,0xa4, + 0x30,0xba,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x30,0xd0,0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x30,0xd0,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28, + 0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xc9, + 0x30,0xe9,0x30,0xa4,0x30,0xd6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x30,0xaa,0x30,0xfc,0x30,0xd0,0x30,0xfc,0x30,0xb9,0x30,0xad,0x30, + 0xe3,0x30,0xf3,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61, + 0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20, + 0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x31,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x30,0xc7,0x30,0xd0, + 0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x30, + 0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x56,0x90,0x78,0x62,0x9e,0x30,0x57, + 0x30,0x5f,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x6b,0x57,0xfa,0x30,0x65,0x30,0x4f, + 0x0,0x43,0x0,0x50,0x0,0x55,0x30,0xbf,0x30,0xa4,0x30,0xd7,0x30,0x6e,0x30,0xd5, + 0x30,0xa3,0x30,0xeb,0x30,0xbf,0x30,0xfc,0x6a,0x5f,0x80,0xfd,0x30,0x6f,0x30,0x1, + 0x4f,0x7f,0x75,0x28,0x4e,0x2d,0x30,0x6e,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x67, + 0x30,0x6f,0x71,0x21,0x52,0xb9,0x30,0x6b,0x30,0x6a,0x30,0x63,0x30,0x66,0x30,0x44, + 0x30,0x7e,0x30,0x59,0x30,0x2,0x0,0xa,0x0,0xa,0x30,0x53,0x30,0x8c,0x30,0x6b, + 0x30,0x88,0x30,0x8a,0x30,0x1,0x90,0x78,0x62,0x9e,0x30,0x57,0x30,0x5f,0x30,0xde, + 0x30,0xb7,0x30,0xf3,0x30,0x68,0x4e,0x92,0x63,0xdb,0x60,0x27,0x30,0x6e,0x30,0x6a, + 0x30,0x44,0x0,0x43,0x0,0x50,0x0,0x55,0x30,0x4c,0x90,0x78,0x62,0x9e,0x30,0x67, + 0x30,0x4d,0x30,0x7e,0x30,0x59,0x30,0x2,0x30,0x57,0x30,0x4b,0x30,0x57,0x30,0x1, + 0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x6e,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53, + 0x30,0x84,0x4e,0xd6,0x30,0x6e,0x30,0xbd,0x30,0xd5,0x30,0xc8,0x30,0xa6,0x30,0xa7, + 0x30,0xa2,0x30,0x68,0x4e,0x92,0x63,0xdb,0x60,0x27,0x30,0x4c,0x30,0x6a,0x30,0x44, + 0x58,0x34,0x54,0x8,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30,0x2, + 0x0,0xa,0x0,0xa,0x30,0x53,0x30,0x6e,0x8a,0x2d,0x5b,0x9a,0x30,0x92,0x67,0x9, + 0x52,0xb9,0x30,0x6b,0x30,0x59,0x30,0x8b,0x30,0x53,0x30,0x68,0x30,0x6f,0x51,0x6c, + 0x5f,0xf,0x30,0x6b,0x30,0x6f,0x30,0xb5,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x30,0x55, + 0x30,0x8c,0x30,0x66,0x30,0x4a,0x30,0x89,0x30,0x5a,0x30,0x1,0x30,0xd0,0x30,0xb0, + 0x30,0xec,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x30,0x6f,0x71,0x21,0x52,0xb9,0x30,0x68, + 0x30,0x57,0x30,0x66,0x4e,0x2d,0x6b,0x62,0x30,0x55,0x30,0x8c,0x30,0x8b,0x53,0xef, + 0x80,0xfd,0x60,0x27,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50,0x0,0x55,0x30,0xbf,0x30,0xa4, + 0x30,0xd7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x30,0xad,0x30,0xe3,0x30,0xf3,0x30,0xbb,0x30,0xeb,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xab,0x30, + 0xfc,0x30,0xc9,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x30, + 0xab,0x30,0xfc,0x30,0xc8,0x30,0xea,0x30,0xc3,0x30,0xb8,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25, + 0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x30,0xab,0x30,0xfc,0x30,0xc8,0x30,0xea,0x30,0xc3,0x30,0xb8,0x30,0xa4,0x30, + 0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xab,0x30,0xbb,0x30,0xc3, + 0x30,0xc8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xab,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x30,0xab,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x53,0x58,0x82,0x72,0x30,0xe2,0x30,0xcb,0x30,0xbf,0x30,0xfc, + 0x75,0x28,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xe9,0x30,0xb9,0x30,0xc8,0x30,0x92, + 0x59,0x9,0x66,0xf4,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xc1,0x30,0xe3,0x30,0xf3,0x30,0xcd, + 0x30,0xeb,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x42,0x0,0x50,0x0,0x42,0x30,0xc1,0x30,0xa7,0x30,0xc3,0x30,0xaf,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x5d,0xe6,0x30, + 0xaf,0x30,0xea,0x30,0xc3,0x30,0xaf,0x30,0x67,0x30,0xde,0x30,0xa6,0x30,0xb9,0x30, + 0x92,0x30,0xad,0x30,0xe3,0x30,0xd7,0x30,0xc1,0x30,0xe3,0x30,0x57,0x30,0x7e,0x30, + 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x8a,0x2d,0x5b,0x9a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x7d,0x9a, + 0x88,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30, + 0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30, + 0xfc,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30, + 0xfc,0x30,0xe9,0x30,0xfc,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb3,0x30,0xf3,0x30, + 0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x30,0x6e,0x30,0xbf,0x30,0xa4,0x30,0xe0,0x30, + 0xb9,0x30,0xbf,0x30,0xf3,0x30,0xd7,0x30,0x92,0x4f,0xee,0x6b,0x63,0x30,0x67,0x30, + 0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x30,0xd3,0x30,0xc7,0x30,0xaa, + 0x30,0xec,0x30,0xf3,0x30,0xc0,0x30,0xe9,0x30,0xfc,0x30,0x4c,0x52,0x1d,0x67,0x1f, + 0x53,0x16,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0, + 0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xab,0x30, + 0xb9,0x30,0xbf,0x30,0xe0,0x0,0x20,0x0,0x28,0x59,0x27,0x5b,0xb9,0x91,0xcf,0x0, + 0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xab,0x30, + 0xb9,0x30,0xbf,0x30,0xe0,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xb7,0x30,0xea,0x30,0xf3,0x30, + 0xc0,0x30,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x30,0xaf, + 0x30,0xe9,0x30,0xb9,0x30,0xbf,0x30,0xfc,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20, + 0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x4d,0x0,0x46,0x0, + 0x20,0x0,0x28,0x30,0xaf,0x30,0xe9,0x30,0xb9,0x30,0xbf,0x30,0xfc,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x65,0xe2, + 0x5b,0x9a,0x50,0x24,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x5d,0xee,0x52,0x6,0x0,0x29, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x71,0x21,0x52,0xb9,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xc7,0x30,0xa3,0x30, + 0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x4c,0x4f,0x5c,0x62, + 0x10,0x30,0x55,0x30,0x8c,0x30,0x7e,0x30,0x57,0x30,0x5f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x4c,0x65,0xe2,0x30,0x6b, + 0x5b,0x58,0x57,0x28,0x30,0x57,0x30,0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x30,0xc7,0x30, + 0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6e,0x30, + 0xb5,0x30,0xa4,0x30,0xba,0x30,0x4c,0x59,0x27,0x30,0x4d,0x30,0x59,0x30,0x4e,0x30, + 0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x30,0xc7,0x30,0xa3, + 0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6f,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x47,0x0,0x42,0x30,0x92,0x8d,0x85,0x30,0x48,0x30,0x8b, + 0x30,0x53,0x30,0x68,0x30,0x6f,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32, + 0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xb5,0x30,0xa4,0x30,0xba,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30, + 0xc7,0x30,0xa3,0x30,0xb9,0x30,0xd7,0x30,0xec,0x30,0xa4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8a,0x2d,0x5b,0x9a,0x30,0x92,0x4f,0xdd,0x5b, + 0x58,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x7d,0x42,0x4e,0x86,0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4e,0xa,0x66,0xf8,0x30,0x4d, + 0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xea,0x30,0xbb,0x30,0xc3, + 0x30,0xc8,0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4e,0xca,0x5f,0x8c,0x30,0x1,0x30,0x53, + 0x30,0x6e,0x30,0xe1,0x30,0xc3,0x30,0xbb,0x30,0xfc,0x30,0xb8,0x30,0x92,0x88,0x68, + 0x79,0x3a,0x30,0x57,0x30,0x6a,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69, + 0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x52,0xd5,0x76,0x84,0x51,0x8d, + 0x30,0xb3,0x30,0xf3,0x30,0xd1,0x30,0xa4,0x30,0xeb,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x5b,0xb9,0x91,0xcf,0x53, + 0xef,0x59,0x9,0x0,0x29,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0, + 0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e, + 0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e, + 0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x30,0x6e,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x53,0xd6,0x30,0x8a,0x51,0xfa,0x30,0x59,0x0,0x28,0x0,0x26, + 0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30, + 0x6a,0x30,0x57,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x7d,0x42,0x4e,0x86,0x0,0x28,0x0,0x26,0x0,0x58, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x38,0x0,0x36,0x0,0x46,0x30,0xa4,0x30,0xe1,0x30, + 0xfc,0x30,0xb8,0x30,0x6b,0x30,0xa8,0x30,0xaf,0x30,0xb9,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x48,0x30,0x6e,0x30, + 0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x90,0x23,0x64,0x3a,0x6a,0x5f,0x80,0xfd,0x0, + 0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x67,0x9,0x52,0xb9,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x67,0x9,0x52,0xb9,0x0,0x28,0x73,0xfe,0x57, + 0x30,0x66,0x42,0x95,0x93,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20, + 0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x30,0xc8,0x30,0xec,0x30,0xfc,0x30,0xb9,0x7d,0x42,0x4e,0x86,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x51, + 0x68,0x75,0x3b,0x97,0x62,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x30,0x92,0x51,0x65,0x52, + 0x9b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72, + 0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xa8, + 0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xec, + 0x30,0xf3,0x30,0xc0,0x30,0xe9,0x30,0xfc,0x30,0x6e,0x52,0x1d,0x67,0x1f,0x53,0x16, + 0x30,0xa8,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x65,0xe2,0x5b,0x58,0x30,0x6e,0x30,0xa4,0x30,0xe1, + 0x30,0xfc,0x30,0xb8,0x30,0x92,0x95,0x8b,0x30,0x4f,0x0,0x28,0x66,0xf8,0x30,0x4d, + 0x8f,0xbc,0x30,0x7f,0x79,0x81,0x6b,0x62,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x57, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x7d,0x42,0x4e,0x86,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x0,0x33,0x30,0x6e,0x7e,0x26,0x6a,0x2a,0x6b,0xd4,0x30,0x92,0x5f,0x37, + 0x52,0x36,0x88,0x68,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34, + 0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x44,0x0, + 0x44,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x4d,0x30,0xb7,0x30,0xf3,0x30,0xbb,0x30,0xc9, + 0x30,0xe9,0x30,0xa4,0x30,0xd0,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x65, + 0x0,0x69,0x0,0x72,0x0,0x79,0x0,0x6f,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x30,0xcd,0x30, + 0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30, + 0xd0,0x30,0x6e,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x6b,0x59,0x31,0x65,0x57,0x30, + 0x57,0x30,0x7e,0x30,0x57,0x30,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x30,0x6e,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x30, + 0xa2,0x30,0xc3,0x30,0xd7,0x30,0x6b,0x59,0x31,0x65,0x57,0x30,0x57,0x30,0x7e,0x30, + 0x57,0x30,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90,0x1f,0x30, + 0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x81,0xf4,0x54,0x7d,0x76,0x84, + 0x30,0x6a,0x30,0xa8,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30, + 0xeb,0x54,0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x30,0xd5,0x30,0xa3,0x30,0xeb,0x30,0xbf,0x30,0xfc,0x65,0xb9, + 0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x5b,0xb9, + 0x91,0xcf,0x56,0xfa,0x5b,0x9a,0x0,0x29,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x30,0xd5,0x30,0xed,0x30,0xc3,0x30,0xd4,0x30,0xfc,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xd5,0x30,0xed, + 0x30,0xc3,0x30,0xd4,0x30,0xfc,0xff,0xf,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xd5,0x30,0xed,0x30,0xc3,0x30,0xd4,0x30, + 0xfc,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46, + 0x0,0x6c,0x0,0x75,0x0,0x78,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x51,0x68, + 0x75,0x3b,0x97,0x62,0x30,0x6e,0x62,0xe1,0x59,0x27,0x88,0x68,0x79,0x3a,0x30,0xe2, + 0x30,0xfc,0x30,0xc9,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x97,0xf3,0x91,0xcf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x30,0xb0,0x30,0xec,0x30,0xfc,0x30,0xb9,0x30,0xb1, + 0x30,0xfc,0x30,0xeb,0x59,0x9,0x63,0xdb,0x30,0xbf,0x30,0xa4,0x30,0xd7,0x0,0x28, + 0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0, + 0x44,0x0,0x44,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30, + 0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x48,0x0,0x44,0x0,0x49,0x30,0xc7,0x30,0xa3, + 0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6f,0x0,0x34, + 0x0,0x47,0x0,0x42,0x30,0x92,0x8d,0x85,0x30,0x48,0x30,0x8b,0x30,0x53,0x30,0x68, + 0x30,0x6f,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48, + 0x0,0x44,0x0,0x49,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0, + 0x35,0x0,0x31,0x0,0x32,0x4e,0xe5,0x59,0x16,0x30,0x6e,0x30,0xbb,0x30,0xaf,0x30, + 0xbf,0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x92,0x63,0x1,0x30,0x64,0x0,0x48,0x0, + 0x44,0x0,0x49,0x30,0x7e,0x30,0x5f,0x30,0x6f,0x0,0x48,0x0,0x44,0x0,0x58,0x30, + 0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6f,0x30,0xb5,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x30,0x55,0x30,0x8c,0x30,0x66,0x30,0x44,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x44, + 0x0,0x58,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xcf,0x30, + 0xfc,0x30,0xc9,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xc7, + 0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30, + 0xaf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x30,0xcf,0x30,0xfc,0x30,0xc9,0x0,0x20,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x30, + 0xcf,0x30,0xfc,0x30,0xc9,0x30,0xa6,0x30,0xa7,0x30,0xa2,0x30,0x4c,0x52,0x29,0x75, + 0x28,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xd8,0x30,0xc3,0x30,0xc9,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x9a,0xd8,0x30,0x55,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0,0x69,0x0, + 0x44,0x0,0x50,0x0,0x49,0x30,0xb9,0x30,0xb1,0x30,0xfc,0x30,0xea,0x30,0xf3,0x30, + 0xb0,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xc4,0x30,0xfc, + 0x30,0xeb,0x0,0x20,0x30,0xd0,0x30,0xfc,0x30,0x92,0x96,0xa0,0x30,0x59,0x0,0x28, + 0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20, + 0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x30,0xb0,0x30,0xe9, + 0x30,0xd5,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49, + 0x0,0x53,0x0,0x41,0x30,0xe1,0x30,0xe2,0x30,0xea,0x62,0xe1,0x5f,0x35,0x30,0xab, + 0x30,0xfc,0x30,0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x30,0xab,0x30,0xfc,0x30, + 0xc9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xa2,0x30,0xa4,0x30,0xb3,0x30,0xf3,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30,0xa4,0x30, + 0xe1,0x30,0xfc,0x30,0xb8,0x5f,0x62,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x65,0x52, + 0x9b,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x51,0x85,0x85,0x35,0x30, + 0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x4e,0xd,0x6b,0x63,0x30,0x6a,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x4e,0xd,0x6b,0x63,0x30,0x6a,0x8a,0x2d,0x5b,0x9a,0x30,0x67,0x30, + 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xb8,0x30,0xe7,0x30, + 0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x30,0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30, + 0xa3,0x30,0xc3,0x30,0xaf,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30, + 0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0, + 0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xb8,0x30,0xe7,0x30,0xa4,0x30, + 0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x30,0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30, + 0xc3,0x30,0xaf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x31,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x30,0xc7,0x30,0xd0, + 0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x30, + 0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x8a,0x0,0x8a,0x9e,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x59,0x27, + 0x30,0x4d,0x30,0x6a,0x30,0xd6,0x30,0xed,0x30,0xc3,0x30,0xaf,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x92,0x56,0xfa,0x5b,0x9a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x30,0x84,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0xc9,0x30, + 0xe9,0x30,0xa4,0x30,0xd6,0x30,0x4c,0x5b,0x58,0x57,0x28,0x30,0x57,0x30,0x7e,0x30, + 0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x51,0x65,0x52,0x9b,0x30, + 0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x51,0xfa,0x52,0x9b,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44, + 0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x51,0x49,0x78,0xc1,0x6c,0x17,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x51, + 0x49,0x78,0xc1,0x6c,0x17,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x51,0x49, + 0x78,0xc1,0x6c,0x17,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xde,0x30,0xb7,0x30,0xf3, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x30,0xc7,0x30,0xa3,0x30,0xec,0x30,0xaf, + 0x30,0xc8,0x30,0xea,0x30,0x6b,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0x4c,0x30,0x6a, + 0x30,0x44,0x30,0x5f,0x30,0x81,0x30,0x1,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0xc, + 0x0,0x25,0x0,0x68,0x0,0x73,0x30,0xd,0x30,0x6f,0x4f,0x7f,0x75,0x28,0x30,0x67, + 0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x4f,0x7f,0x75,0x28,0x53,0xef, + 0x80,0xfd,0x30,0x6a,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0x6b,0x52,0x7,0x30,0x8a, + 0x66,0xff,0x30,0x48,0x30,0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73, + 0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e, + 0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f, + 0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67, + 0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x30,0xde,0x30,0xb7,0x30,0xf3,0x30,0xbf,0x30,0xa4,0x30,0xd7, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x30,0xde,0x30,0xb7,0x30,0xf3,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x30,0x4c,0x30,0xa4,0x30,0xf3,0x30, + 0xb9,0x30,0xc8,0x30,0xfc,0x30,0xeb,0x30,0x55,0x30,0x8c,0x30,0x66,0x30,0x8b,0x30, + 0x4b,0x30,0x1,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x30,0x6b,0x5b,0xfe,0x5f,0xdc,0x30,0x57,0x30,0x5f,0x30,0xcd,0x30,0xc3,0x30, + 0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x30,0x6b,0x63,0xa5,0x7d,0x9a,0x30,0x55,0x30, + 0x8c,0x30,0x66,0x30,0x8b,0x30,0x4b,0x78,0xba,0x8a,0x8d,0x30,0x57,0x30,0x66,0x30, + 0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30, + 0xeb,0x30,0x4c,0x5b,0x58,0x57,0x28,0x30,0x57,0x30,0x1,0x8a,0xad,0x30,0x7f,0x53, + 0xd6,0x30,0x8a,0x53,0xef,0x80,0xfd,0x30,0x67,0x30,0x42,0x30,0x8b,0x30,0x53,0x30, + 0x68,0x30,0x92,0x78,0xba,0x8a,0x8d,0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30, + 0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x4c,0x66,0xf8, + 0x30,0x4d,0x8f,0xbc,0x30,0x7f,0x53,0xef,0x80,0xfd,0x30,0x6a,0x30,0xc7,0x30,0xa3, + 0x30,0xec,0x30,0xaf,0x30,0xc8,0x30,0xea,0x30,0x6b,0x4f,0xdd,0x5b,0x58,0x30,0x55, + 0x30,0x8c,0x30,0x66,0x30,0x44,0x30,0x8b,0x30,0x53,0x30,0x68,0x30,0x92,0x78,0xba, + 0x8a,0x8d,0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30, + 0xe1,0x30,0xe2,0x30,0xea,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x30,0xd1,0x30,0xc3,0x30, + 0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f, + 0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20, + 0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x30,0xe2, + 0x30,0xcb,0x30,0xbf,0x30,0xfc,0x30,0x6e,0x30,0xb9,0x30,0xea,0x30,0xfc,0x30,0xd7, + 0x30,0xe2,0x30,0xfc,0x30,0xc9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x30,0xde,0x30,0xa6,0x30,0xb9,0x30,0x6e,0x61,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x30,0xde,0x30,0xa6,0x30,0xb9,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x30,0xcd,0x30,0xc3,0x30,0xc8,0x30,0xef, + 0x30,0xfc,0x30,0xaf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x30,0xcd,0x30,0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x30,0xa2,0x30,0xc0, + 0x30,0xd7,0x30,0xbf,0x30,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65, + 0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xcd,0x30, + 0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x0,0x20,0x30,0xbf,0x30,0xa4,0x30, + 0xd7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x65,0xb0,0x89,0x8f,0x30,0x6e,0x30,0xa4,0x30,0xe1,0x30, + 0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30, + 0xb9,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0x4c,0x89, + 0x8b,0x30,0x64,0x30,0x4b,0x30,0x8a,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x30, + 0x6a,0x30,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x28,0x9a,0xd8,0x7c,0xbe,0x5e,0xa6,0x53,0x16, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x30,0xaa,0x30,0xd5,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x30,0xaa,0x30,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33, + 0x0,0x2e,0x0,0x30,0x30,0xb3,0x30,0xa2,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x47, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x30, + 0xb3,0x30,0xa2,0x0,0x29,0x0,0x20,0x30,0xec,0x30,0xf3,0x30,0xc0,0x30,0xe9,0x30, + 0xfc,0x30,0x4c,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30, + 0x5b,0x30,0x93,0x30,0x2,0x52,0x25,0x30,0x6e,0x30,0xec,0x30,0xf3,0x30,0xc0,0x30, + 0xe9,0x30,0xfc,0x30,0x92,0x4f,0x7f,0x75,0x28,0x30,0x57,0x30,0x66,0x30,0x4f,0x30, + 0x60,0x30,0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x30,0xb7,0x30,0xa7,0x30,0xfc,0x30,0xc0,0x30,0xfc,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8a,0x2d,0x5b,0x9a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x4e,0xd6,0x30,0x6e,0x54,0x68,0x8f,0xba,0x30,0xc7,0x30,0xd0,0x30,0xa4, + 0x30,0xb9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4e,0xd6,0x30,0x6e,0x30,0xea,0x30,0xe0, + 0x30,0xfc,0x30,0xd0,0x30,0xd6,0x30,0xeb,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xa,0x66,0xf8, + 0x30,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x30,0xc7,0x30,0xd0,0x30,0xa4,0x30,0xb9, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x50,0x0,0x49,0x0,0x54,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d, + 0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x30,0xab,0x30,0xfc,0x30,0xc9,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xd1,0x30,0xe9,0x30, + 0xec,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xd1,0x30,0xe9,0x30,0xec,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x30,0xd1,0x30,0xe9,0x30,0xec,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xd1,0x30,0xe9,0x30,0xec,0x30,0xeb,0x30, + 0xdd,0x30,0xfc,0x30,0xc8,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x89,0xaa,0x30,0xc7,0x30, + 0xa3,0x30,0xb9,0x30,0xaf,0x30,0x68,0x5b,0x50,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30, + 0xaf,0x30,0x6e,0x30,0xbf,0x30,0xa4,0x30,0xe0,0x30,0xb9,0x0,0x20,0x30,0xbf,0x30, + 0xf3,0x30,0xd7,0x30,0x4c,0x4e,0x0,0x81,0xf4,0x30,0x57,0x30,0x7e,0x30,0x5b,0x30, + 0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x5b,0x9f,0x88,0x4c,0x30,0x92,0x4e,0x0,0x66,0x42,0x50,0x5c,0x6b, + 0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x65,0xe2,0x5b,0x9a,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x67, + 0x9,0x52,0xb9,0x30,0x6a,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x54,0xd,0x30, + 0x92,0x63,0x7,0x5b,0x9a,0x30,0x57,0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30, + 0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x2f,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x74,0xb0,0x58,0x83,0x8a,0x2d,0x5b, + 0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x44,0x0,0x45,0x0,0x4c,0x30,0x92,0x62,0xbc,0x30,0x59,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x30,0x92, + 0x62,0xbc,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72, + 0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x44,0x0,0x6e,0x30,0x67,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30, + 0xa6,0x0,0x20,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x30,0x6b,0x62,0x3b,0x30,0x8a,0x30, + 0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x30,0xad,0x30,0xfc,0x30,0x7e,0x30,0x5f,0x30,0x6f,0x4e, + 0x2d,0x30,0xaf,0x30,0xea,0x30,0xc3,0x30,0xaf,0x30,0x67,0x30,0xde,0x30,0xa6,0x30, + 0xb9,0x30,0x92,0x89,0xe3,0x65,0x3e,0x30,0x57,0x30,0x7e,0x30,0x59,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x30,0xad,0x30,0xfc, + 0x30,0x67,0x30,0xde,0x30,0xa6,0x30,0xb9,0x30,0x92,0x89,0xe3,0x65,0x3e,0x30,0x57, + 0x30,0x7e,0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72, + 0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x90,0x32,0x88,0x4c,0x72,0xb6,0x6c,0xc1,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65, + 0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x7b,0x2c, + 0x56,0xdb,0x0,0x49,0x0,0x44,0x0,0x45,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed, + 0x30,0xfc,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e, + 0x30,0xb5,0x30,0xa4,0x30,0xba,0x30,0x68,0x4f,0x4d,0x7f,0x6e,0x30,0x92,0x4f,0xdd, + 0x5b,0x58,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69, + 0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x28,0x30,0xab,0x30,0xe9,0x30,0xfc,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26, + 0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x52,0x0,0x50,0x0,0x4d,0x30,0xe2,0x30,0xfc,0x30,0xc9,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52,0x0,0x61, + 0x0,0x77,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xec,0x30, + 0xf3,0x30,0xc0,0x30,0xe9,0x30,0xfc,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x65,0xb0,0x89, + 0x8f,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd6,0x30,0x92,0x30,0xd1,0x30,0xfc,0x30, + 0xc6,0x30,0xa3,0x30,0xb7,0x30,0xe7,0x30,0xf3,0x52,0x6,0x52,0x72,0x30,0x57,0x30, + 0x1,0x30,0xd5,0x30,0xa9,0x30,0xfc,0x30,0xde,0x30,0xc3,0x30,0xc8,0x30,0x92,0x5f, + 0xc5,0x30,0x5a,0x30,0x57,0x30,0x68,0x30,0x44,0x30,0x66,0x30,0x4f,0x30,0x60,0x30, + 0x55,0x30,0x44,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52, + 0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69, + 0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65, + 0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x5b,0x9f,0x88,0x4c,0x30,0x92,0x51,0x8d,0x95,0x8b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x30,0xcf,0x30,0xfc, + 0x30,0xc9,0x30,0xa6,0x30,0xa7,0x30,0xa2,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4f,0xdd,0x5b,0x58,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x30,0x53,0x30,0x8c,0x30,0x89,0x30,0x6e,0x8a,0x2d,0x5b, + 0x9a,0x30,0x92,0x30,0xb0,0x30,0xed,0x30,0xfc,0x30,0xd0,0x30,0xeb,0x65,0xe2,0x5b, + 0x9a,0x50,0x24,0x30,0x68,0x30,0x57,0x30,0x66,0x4f,0xdd,0x5b,0x58,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x30,0xbb,0x30,0xaf,0x30,0xbf,0x30,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x30,0xd7,0x30,0xed,0x30,0xb0,0x30,0xe9, + 0x30,0xe0,0x30,0x6e,0x4f,0x5c,0x69,0x6d,0x30,0xc7,0x30,0xa3,0x30,0xec,0x30,0xaf, + 0x30,0xc8,0x30,0xea,0x30,0x4b,0x30,0x89,0x30,0xe1,0x30,0xc7,0x30,0xa3,0x30,0xa2, + 0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x92,0x90,0x78,0x62,0x9e,0x30,0x57, + 0x30,0x66,0x30,0x4f,0x30,0x60,0x30,0x55,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f, + 0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72, + 0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x89,0xaa,0x0,0x56,0x0,0x48,0x0,0x44,0x30,0x6e,0x90,0x78,0x62,0x9e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xb7,0x30,0xea,0x30,0xa2,0x30, + 0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xb7,0x30,0xea,0x30, + 0xa2,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30,0xb7,0x30, + 0xea,0x30,0xa2,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x30, + 0xb7,0x30,0xea,0x30,0xa2,0x30,0xeb,0x30,0xdd,0x30,0xfc,0x30,0xc8,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x30,0xb5,0x30,0xa4,0x30,0xba,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65, + 0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x90,0x45,0x30,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x5c,0xf, + 0x30,0x55,0x30,0x6a,0x30,0xd6,0x30,0xed,0x30,0xc3,0x30,0xaf,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x97,0xf3,0x91,0xcf,0x8a,0xbf, + 0x65,0x74,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x97,0xf3,0x91,0xcf,0x30,0xb2,0x30,0xa4,0x30,0xf3,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb5,0x30,0xa6, + 0x30,0xf3,0x30,0xc9,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x32, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9,0x30,0xab,0x30,0xfc, + 0x30,0xc9,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9, + 0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x30,0xe1,0x30,0xa4, + 0x30,0xf3,0x30,0xa6,0x30,0xa3,0x30,0xf3,0x30,0xc9,0x30,0xa6,0x30,0x6e,0x30,0xb5, + 0x30,0xa4,0x30,0xba,0x63,0x7,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57, + 0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x30,0xc7,0x30,0xa3,0x30, + 0xe1,0x30,0xf3,0x30,0xb7,0x30,0xe7,0x30,0xf3,0x30,0x92,0x63,0x7,0x5b,0x9a,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90, + 0x1f,0x5e,0xa6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1f,0x5e, + 0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x72,0xec, + 0x7a,0xcb,0x57,0x8b,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30,0xb8,0x30, + 0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x28,0x0, + 0x32,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30, + 0xb8,0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0, + 0x28,0x0,0x34,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30,0xb8, + 0x30,0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x28, + 0x0,0x36,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62, + 0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x6a,0x19,0x6e,0x96,0x30,0xb8,0x30, + 0xe7,0x30,0xa4,0x30,0xb9,0x30,0xc6,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x0,0x28,0x0, + 0x38,0x30,0xdc,0x30,0xbf,0x30,0xf3,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x30,0xb9,0x30,0xc8,0x30,0xec,0x30,0xfc, + 0x30,0xb8,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30,0xfc,0x30,0xe9,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x30,0xb5,0x30,0xfc,0x30,0xd5,0x30,0xa7,0x30,0xb9, + 0x0,0x20,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x30,0xb9,0x30, + 0xaf,0x30,0xea,0x30,0xfc,0x30,0xf3,0x30,0xb7,0x30,0xe7,0x30,0xc3,0x30,0xc8,0x30, + 0x92,0x64,0xae,0x30,0x8b,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26, + 0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x76,0xee,0x6a, + 0x19,0x30,0xd5,0x30,0xec,0x30,0xfc,0x30,0xe0,0x30,0xec,0x30,0xfc,0x30,0xc8,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x7b,0x2c,0x4e, + 0x9,0x0,0x49,0x0,0x44,0x0,0x45,0x30,0xb3,0x30,0xf3,0x30,0xc8,0x30,0xed,0x30, + 0xfc,0x30,0xe9,0x30,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54, + 0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x30,0xcd,0x30,0xc3,0x30,0xc8,0x30,0xef,0x30,0xfc,0x30,0xaf,0x8a,0x2d,0x5b, + 0x9a,0x30,0x4c,0x30,0xcc,0x30,0xeb,0x30,0xc9,0x30,0xe9,0x30,0xa4,0x30,0xd0,0x30, + 0x6b,0x52,0x7,0x30,0x8a,0x66,0xff,0x30,0x48,0x30,0x89,0x30,0x8c,0x30,0x7e,0x30, + 0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69, + 0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c, + 0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x90,0x78,0x62,0x9e,0x30,0x57,0x30,0x5f,0x30,0xd5,0x30,0xa1,0x30, + 0xa4,0x30,0xeb,0x30,0x6f,0x4e,0xa,0x66,0xf8,0x30,0x4d,0x30,0x55,0x30,0x8c,0x30, + 0x7e,0x30,0x59,0x30,0x2,0x30,0x88,0x30,0x8d,0x30,0x57,0x30,0x44,0x30,0x67,0x30, + 0x59,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xdc,0x89,0xaa,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x4c,0x5d,0xee,0x52, + 0x6,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0x6e,0x4f,0x5c,0x62,0x10,0x30, + 0x6e,0x5f,0x8c,0x30,0x6b,0x59,0x9,0x66,0xf4,0x30,0x55,0x30,0x8c,0x30,0x8b,0x53, + 0xef,0x80,0xfd,0x60,0x27,0x30,0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30, + 0x2,0x0,0xa,0x0,0xa,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x30, + 0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30,0x4c,0x79,0xfb,0x52,0xd5,0x30,0x7e,0x30, + 0x5f,0x30,0x6f,0x30,0xb3,0x30,0xd4,0x30,0xfc,0x30,0x55,0x30,0x8c,0x30,0x5f,0x30, + 0x4b,0x30,0x1,0x30,0xa4,0x30,0xe1,0x30,0xfc,0x30,0xb8,0x0,0x20,0x30,0xd5,0x30, + 0xa1,0x30,0xa4,0x30,0xeb,0x30,0x92,0x4f,0x5c,0x62,0x10,0x30,0x57,0x30,0x5f,0x30, + 0xd7,0x30,0xed,0x30,0xb0,0x30,0xe9,0x30,0xe0,0x30,0x6b,0x30,0xd0,0x30,0xb0,0x30, + 0x4c,0x76,0x7a,0x75,0x1f,0x30,0x57,0x30,0x5f,0x53,0xef,0x80,0xfd,0x60,0x27,0x30, + 0x4c,0x30,0x42,0x30,0x8a,0x30,0x7e,0x30,0x59,0x30,0x2,0x0,0xa,0x0,0xa,0x30, + 0xbf,0x30,0xa4,0x30,0xe0,0x30,0xb9,0x30,0xbf,0x30,0xf3,0x30,0xd7,0x30,0x92,0x4f, + 0xee,0x6b,0x63,0x30,0x57,0x30,0x7e,0x30,0x59,0x30,0x4b,0xff,0x1f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f, + 0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c, + 0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69, + 0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65, + 0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x4f,0x7f,0x75,0x28,0x4e,0x2d,0x30,0x6e,0x30,0xde,0x30,0xb7,0x30,0xf3, + 0x30,0x4c,0x30,0xcf,0x30,0xfc,0x30,0xc9,0x30,0xea,0x30,0xbb,0x30,0xc3,0x30,0xc8, + 0x30,0x55,0x30,0x8c,0x30,0x7e,0x30,0x59,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x98,0xdb,0x88,0x4c,0x52,0x36,0x5f,0xa1,0x30,0xb7,0x30,0xb9,0x30,0xc6,0x30, + 0xe0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73, + 0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x66,0x42,0x52,0x3b,0x54,0xc,0x67,0x1f, + 0x6a,0x5f,0x80,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69, + 0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x9a,0xd8,0x90, + 0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x9a,0xd8,0x90,0x1f,0x30, + 0xbf,0x30,0xa4,0x30,0xdf,0x30,0xf3,0x30,0xb0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x30,0xbf,0x30,0xa4,0x30, + 0xd7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x30,0xbf,0x30,0xa4,0x30,0xd7, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x55,0x0,0x53, + 0x0,0x42,0x30,0x6f,0x30,0x7e,0x30,0x60,0x97,0x5e,0x5b,0xfe,0x5f,0xdc,0x30,0x67, + 0x30,0x59,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x70,0x0,0x74,0x30,0x4c,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x67,0x30, + 0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x30,0x4c,0x52,0x1d,0x67,0x1f,0x53,0x16,0x30,0x67,0x30,0x4d,0x30,0x7e, + 0x30,0x5b,0x30,0x93,0x30,0x2,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x30,0x4c,0x5f,0xc5,0x89,0x81,0x30,0x67,0x30,0x59, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x30,0xad,0x30,0xfc,0x30,0xdc,0x30,0xfc,0x30,0xc9,0x30,0xa2,0x30, + 0xaf,0x30,0xbb,0x30,0xe9,0x30,0xec,0x30,0xfc,0x30,0xbf,0x30,0x92,0x8a,0xad,0x30, + 0x7f,0x8f,0xbc,0x30,0x81,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61, + 0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30, + 0x6e,0x8a,0xad,0x30,0x7f,0x8f,0xbc,0x30,0x7f,0x30,0x4c,0x30,0x67,0x30,0x4d,0x30, + 0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x75,0x1f,0x51, + 0x65,0x52,0x9b,0x30,0x4c,0x76,0x7b,0x93,0x32,0x30,0x67,0x30,0x4d,0x30,0x7e,0x30, + 0x5b,0x30,0x93,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x30, + 0x6e,0x66,0xf8,0x30,0x4d,0x8f,0xbc,0x30,0x7f,0x30,0x4c,0x30,0x67,0x30,0x4d,0x30, + 0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x97,0x5e, + 0x5b,0xfe,0x5f,0xdc,0x30,0x6e,0x30,0xc7,0x30,0xa3,0x30,0xb9,0x30,0xaf,0x30,0xa4, + 0x30,0xe1,0x30,0xfc,0x30,0xb8,0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x30,0xb5,0x30,0xa6,0x30,0xf3,0x30,0xc9,0x30,0x92,0x4f,0x7f,0x75,0x28,0x30, + 0x59,0x30,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x75,0x3b,0x97,0x62,0x30,0xbf,0x30, + 0xa4,0x30,0xd7,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x56,0x0,0x48,0x0,0x44,0x30,0xd5,0x30,0xa1,0x30,0xa4,0x30,0xeb,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x30,0xc7,0x30,0xa3,0x30,0xec,0x30,0xaf,0x30,0xc8,0x30,0xea,0x30,0x6b, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x30,0x4c,0x30,0x6a,0x30,0x44,0x30,0x5f,0x30,0x81, + 0x30,0x1,0x30,0xd3,0x30,0xc7,0x30,0xaa,0x0,0x20,0x30,0xab,0x30,0xfc,0x30,0xc9, + 0x30,0xc,0x0,0x25,0x0,0x68,0x0,0x73,0x30,0xd,0x30,0x6f,0x4f,0x7f,0x75,0x28, + 0x30,0x67,0x30,0x4d,0x30,0x7e,0x30,0x5b,0x30,0x93,0x30,0x2,0x4f,0x7f,0x75,0x28, + 0x53,0xef,0x80,0xfd,0x30,0x6a,0x30,0xd3,0x30,0xc7,0x30,0xaa,0x30,0xab,0x30,0xfc, + 0x30,0xc9,0x30,0x6b,0x52,0x7,0x30,0x8a,0x66,0xff,0x30,0x48,0x30,0x7e,0x30,0x59, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x30, + 0xd3,0x30,0xc7,0x30,0xaa,0x30,0xab,0x30,0xfc,0x30,0xc9,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x30,0xb0,0x30,0xe9,0x30,0xd5,0x30,0xa3,0x30,0xc3,0x30,0xaf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x30,0xa6,0x30,0xa7,0x30,0xa4,0x30,0xc8,0x30,0xb9,0x30,0xc6, + 0x30,0xfc,0x30,0xc8,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x30,0x78,0x30,0x88,0x30,0x46,0x30,0x53,0x30,0x5d,0xff,0x1,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x5e,0x45,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61, + 0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x58,0x0,0x47, + 0x0,0x41,0x30,0xb0,0x30,0xe9,0x30,0xd5,0x30,0xa3,0x30,0xc3,0x30,0xaf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x28,0x30,0x88,0x30,0x8a,0x90,0x1f,0x30, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x8a,0xad,0x30,0x7f,0x8f,0xbc,0x30,0x93,0x30,0x67,0x30, + 0x44,0x30,0x8b,0x8a,0x2d,0x5b,0x9a,0x30,0x4c,0x30,0xb5,0x30,0xdd,0x30,0xfc,0x30, + 0xc8,0x30,0x55,0x30,0x8c,0x30,0x7e,0x30,0x5b,0x30,0x93,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x49,0x0,0x50,0x30,0xc9,0x30,0xe9,0x30,0xa4, + 0x30,0xd6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49, + 0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x30,0xa4,0x30,0xe1,0x30,0xfc, + 0x30,0xb8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0, + 0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_tr-TR.qm + 0x0,0x0,0x91,0x95, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xc3,0x0,0x0,0x0,0x48, + 0x0,0x0,0x46,0xef,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0xe2,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x8e,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0x31,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0xee,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0x6a,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0xaf,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x27,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6f,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf6,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x3e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x86,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xce,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xec,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x6c,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0x2e,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x4c,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5c,0x8b,0x0,0x0,0x5d,0x81,0x0,0x0,0x81,0xd1,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x63,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd5,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0xa,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xea,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x96,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x7,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0xc2,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0x99,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x5f,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0xf2,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0x61,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0xf5,0x0,0x5,0x78,0x79, + 0x0,0x0,0x68,0xfa,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0xdc,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6c,0xff,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0x4b,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x8,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x41,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x3,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x87,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xbb,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xd3,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x52,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xfe,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7c,0xb5,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xc8,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x61,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0x52,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0xc9,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0x63,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6f,0xc9,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0x78,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x79,0xdf,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7a,0x6a,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x84,0x65,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xa2,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0x9d,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x20,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0x61,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0xff,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0x98,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0x6d,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xcf,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0x2c,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x66,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0x64,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7a,0x3,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0x4e,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0x59,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x22,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x78,0x92,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0x5b,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x6d,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4b,0xdc,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x53,0x87,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0x9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xaf,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x82,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x79,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xe1,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x8a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0xa0,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x70,0xc,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x2e,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x71,0x8b,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0x26,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x70,0xc1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x90,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0x59,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0x3f,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x82,0x31,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0xe3,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0xf0,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0xc7,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0xd,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x94,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xa6,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x70,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x2b,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0xae,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x84,0x89,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0x74,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0x37,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x22,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x8,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x2f,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0x33,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xf5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x1c,0x3,0x6a,0x66,0x2e,0x0,0x0,0x56,0x9d,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x54,0x84,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xfe,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x6b,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xa9,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x7a,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0xa2,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0x74,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xa1,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0x2b,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0x53,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6e,0xc2,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6e,0x88,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0x4e,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6e,0x14,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0xa,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0x38,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xe7,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x49,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x73,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x36,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x2c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x13,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x37,0x4,0x51,0x79,0xb1,0x0,0x0,0x72,0x83,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7b,0x5e,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x14,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6d,0xdf,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0xc,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0x33,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x31,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x98,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0x6e,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xeb,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xe4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x9b,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5a,0x72,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xf2,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x41,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x9,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5a,0x92,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0x30,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4a,0xf2,0x5,0x18,0x5,0x95,0x0,0x0,0x7d,0x17,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xbb,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xaa,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0x4d,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0x12,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xb8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xa9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0x22,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0xac,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x79,0x8c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x73,0x85,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x5b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6f,0xe9,0x5,0xb2,0x16,0x79,0x0,0x0,0x67,0x30,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x47,0xe2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x49,0x14,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0xf1,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x56,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x99,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x9d,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0xa0,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xa4,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x80,0x33,0x5,0xd0,0x4f,0x11,0x0,0x0,0x80,0xef,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x72,0x5,0xdf,0xba,0xba,0x0,0x0,0x81,0x3d,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0xca,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0x6b,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x51,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0x1,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0x6a,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x1d,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x94,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xd1,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x1c,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7e,0x62,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0xe1,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0xc3,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0x52,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xcd,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xaf,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0x63,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6e,0xfc,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x2e,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0x60,0x6,0xc3,0xce,0xa3,0x0,0x0,0x71,0xf0,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0xd4,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xfc,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xb6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4a,0x18,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xdb,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0x50,0x7,0x6,0x93,0xe3,0x0,0x0,0x83,0xf8,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x5f,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x41,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xd4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6c,0xca,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0xb2,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4c,0xf9,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0xb7,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x9c,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x85,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0x9f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x9b,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x15,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x68,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0x99,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0x72,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0xa3,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0x19,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x85,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7e,0x1f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x84,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xb4,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x97,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x7c,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0x3d,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x28,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x69,0x1b,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0xac,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0xbf,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0x55,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x2e,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0xa6,0x8,0x60,0xe7,0xcd,0x0,0x0,0x79,0xf,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0xf3,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x7d,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7a,0x8c,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0x67,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0x7,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0xc1,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0x45,0x8,0xa4,0xb,0xae,0x0,0x0,0x4f,0x83,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0xbb,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xf0,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0xec,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x43,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0x5d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0x8d,0x9,0x9,0x24,0x29, + 0x0,0x0,0x51,0x56,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xbd,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xf7,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x49,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x83,0x9,0x4e,0xde,0x64,0x0,0x0,0x7a,0xf7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0xfd,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x45,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x43,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x8d,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0x7b,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x14,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xc3,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xed,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x17,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x41,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x5c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x87,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0xcb,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0x25,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xe5,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0x4,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x19,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x81,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xb7,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0xac,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xcf,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0xe0,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x27,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xa,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x25,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4e,0xb1,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x52,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7d,0x78,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0xb8,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x72,0x44,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x4b,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x0,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4d,0xd9,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x9b,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xc9,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x96,0xa,0xda,0x50,0x7e,0x0,0x0,0x7b,0xf3,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x36,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0x2d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0xc6,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x39,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x3e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0xc1,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0x88,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x54,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x7a,0xb,0x4e,0x19,0x54,0x0,0x0,0x52,0x81,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x7e,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xf5,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0x15,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x4b,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xfd,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0x87,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0x98,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x85,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0x27,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0x6a,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x83,0xba,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0xff,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x72,0xe9,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xf9,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0xf8,0xc,0x33,0xeb,0xe2,0x0,0x0,0x73,0x31,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x48,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xad,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0xbb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0x19,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x75,0x2b,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0x86,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x2c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x80,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x17,0xc,0x90,0x26,0xb5,0x0,0x0,0x7c,0x6d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0x56,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x26,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0x9f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x72,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0xce,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7e,0x9a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xb,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xec,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x72,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x34,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x80,0x66,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0x73,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x81,0x94,0xd,0x60,0xef,0x6a,0x0,0x0,0x4d,0x9f,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x55,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x4d,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x2,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0xad,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0x66,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x40,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x82,0x75,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0x1c,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x81,0x6a,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0xbc,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x1b,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x82,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xf4,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xbb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x2d,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0xf7,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x2f,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0xd0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x22,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xe9,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0x3a,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0xbf,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6b,0xf7,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0x2f,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0x67,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0x29,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x6f,0xe,0xe2,0x34,0x60,0x0,0x0,0x83,0x66,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x83,0x90,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xe5,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xa8,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x4a,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0x2f,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x26,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x74,0x33,0xf,0x17,0x9c,0x64,0x0,0x0,0x7d,0xd5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0x18,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0xeb,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x57,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0x67,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x1f,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xcd,0xf,0x70,0xaa,0x1a,0x0,0x0,0x80,0xac,0xf,0x74,0xd,0xca, + 0x0,0x0,0x67,0x0,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0x8a,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x84,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x37,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0xf4,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x12,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0x4c,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0xbe,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x50,0x85,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0xf7,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0x6d,0xf,0xe2,0xe9,0x49,0x0,0x0,0x81,0xef,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0x25,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0x65,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0xa5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0xe5,0x69,0x0,0x0,0x84, + 0xb3,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x7e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31, + 0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0xe7,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x63, + 0x1,0x31,0x0,0x73,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0xf6, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0xfc,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0xf6,0x0,0x6b, + 0x0,0xfc,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x64, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x69, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0xfc,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x42,0x0, + 0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x75,0x0,0x72,0x0,0x75,0x0,0x6d,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48, + 0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e, + 0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x48, + 0x0,0x61,0x0,0x6b,0x0,0x6b,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6d, + 0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x4b,0x0,0x65,0x0,0x68,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0xf6,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41, + 0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x61,0x0, + 0x6b,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x79,0x0,0x62,0x1,0x31,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x6b,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65, + 0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x26,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x79,0x1,0x31,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x44,0x0,0xf6,0x0,0x6b,0x0,0xfc,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x26,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x1,0x1f,0x0,0x72,0x0,0x75, + 0x0,0x20,0x0,0x26,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20, + 0x0,0x73,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0xf6,0x0, + 0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20, + 0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46, + 0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0, + 0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x59,0x0, + 0x65,0x1,0x5f,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x6b,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xf6,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x59,0x0,0x61,0x0,0x72,0x0,0x64,0x1,0x31,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x75,0x0, + 0x6d,0x0,0x20,0x0,0xe7,0x0,0x75,0x0,0x62,0x0,0x75,0x1,0x1f,0x0,0x75,0x0, + 0x6e,0x0,0x75,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0x7a,0x0,0x6c,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x26,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x61, + 0x0,0x79,0x1,0x31,0x0,0x20,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x54,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x6b,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xf6,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x76,0x0, + 0x79,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x63,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x61,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64,0x1,0x31,0x1, + 0x1f,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0xe7,0x0,0x61,0x0, + 0x6c,0x1,0x31,0x1,0x5f,0x0,0x73,0x1,0x31,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72, + 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4c,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x44,0x0,0x6f, + 0x1,0x1f,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x64,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x20,0x0,0x28,0x0,0x45,0x0,0x6e,0x0,0x20,0x0,0x79,0x0,0x61,0x0, + 0x6b,0x1,0x31,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75, + 0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x26,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x44, + 0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4f,0x0,0x79,0x0, + 0x6e,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x26,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x67,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0xd6,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0xe7, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61, + 0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b,0x0, + 0x61,0x0,0x6c,0x0,0x64,0x1,0x31,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x47,0x0,0xf6,0x0,0x6c,0x0,0x67,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0, + 0x64,0x1,0x31,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x59,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79, + 0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64,0x1,0x31,0x0,0x72, + 0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x42,0x0,0x61,0x1,0x5f,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x0,0x67,0x1,0x31,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x53, + 0x0,0x61,0x1,0x1f,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20, + 0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x74, + 0x0,0x75,0x1,0x5f,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x59,0x0,0x61,0x0,0x7a, + 0x1,0x31,0x0,0x6c,0x1,0x31,0x0,0x6d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x47, + 0x0,0xf6,0x0,0x6c,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x65,0x0,0xe7,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x26,0x0,0x41,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x42,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0, + 0x4b,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x28,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0, + 0x65,0x1,0x1f,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x75,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61, + 0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20, + 0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0, + 0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41,0x0,0x72,0x0,0x61,0x0,0xe7, + 0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x26,0x0, + 0xe7,0x0,0x75,0x0,0x62,0x0,0x75,0x1,0x1f,0x0,0x75,0x0,0x20,0x0,0x69,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x1, + 0x31,0x0,0x20,0x0,0x67,0x0,0xfc,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x47,0x0,0xf6,0x0,0x72, + 0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x42,0x0,0x65, + 0x0,0x79,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x6b, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xf6,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x50,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x26,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b,0x0, + 0x20,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x70,0x0,0x61,0x0,0x6e,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x28,0x0,0x53,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x73, + 0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0, + 0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x6d,0x0,0xfc,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x31,0x0, + 0x25,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x1,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x6d,0x0,0xfc,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0, + 0x65,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x74,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x6d,0x0,0xfc, + 0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x52, + 0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x25,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35, + 0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22, + 0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20, + 0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x34,0x0,0x3a,0x0,0x26,0x0, + 0x33,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0x79,0x1,0x31,0x0,0x20,0x0,0xf6,0x0,0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b,0x0, + 0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33, + 0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x50,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x68, + 0x0,0x69,0x0,0xe7,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6b, + 0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6c,0x0,0x61, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4c,0x0,0xfc,0x0,0x74,0x0,0x66,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x22,0x0,0x52,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6b, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0xe7,0x1,0x31,0x0,0x6b,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f, + 0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64, + 0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f, + 0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f, + 0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f, + 0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64, + 0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61, + 0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0, + 0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78, + 0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0, + 0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x70,0x0,0x61,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41, + 0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0, + 0x48,0x0,0x61,0x0,0x6b,0x0,0x6b,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x56,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0, + 0x73,0x1,0x31,0x0,0x20,0x0,0x45,0x0,0x6b,0x0,0x6c,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61, + 0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x4f,0x0,0x6c,0x0,0x75,0x1,0x5f,0x0,0x74, + 0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x47,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x1,0x5f,0x0,0x6d,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6b,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x54,0x0,0xfc,0x0,0x6d,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xf8,0x0,0x42,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0xfc,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf6, + 0x0,0x72,0x0,0xfc,0x0,0xa,0x0,0xa,0x0,0x59,0x0,0x61,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x6d, + 0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x73, + 0x1,0x31,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x79, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x72,0x0,0x61,0x0,0x73, + 0x1,0x31,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x1,0x31,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6e,0x0,0x6c, + 0x0,0x61,0x0,0x6e,0x0,0x6d,0x1,0x31,0x1,0x5f,0x0,0x74,0x1,0x31,0x0,0x72, + 0x0,0x2e,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x66, + 0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x27, + 0x1,0x31,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0xe7,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x27,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0xe7,0x1,0x31,0x0,0x6b,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0,0x45,0x0,0x6d,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x4f,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0, + 0x61,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0xf6,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0, + 0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x42,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67, + 0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x42,0x0,0x6c,0x0,0x6f, + 0x0,0x6b,0x0,0x20,0x0,0x42,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63, + 0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x6f, + 0x0,0x6c,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72, + 0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d, + 0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x52,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0, + 0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0, + 0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x61,0x1,0x5f,0x1,0x31,0x0, + 0x72,0x1,0x31,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x73,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43, + 0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26, + 0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63, + 0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31, + 0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x0,0x43,0x0,0x69,0x0, + 0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x33,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0x0,0x43,0x0, + 0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x7c,0x0,0x53,0x0,0x65, + 0x0,0xe7,0x0,0x74,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x79, + 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x28,0x0,0x69,0x1,0x5f,0x0,0x6c, + 0x0,0x65,0x0,0x6d,0x0,0x63,0x0,0x69,0x0,0x29,0x0,0x20,0x0,0x74,0x0,0xfc, + 0x0,0x72,0x0,0xfc,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0xfc,0x0,0x6c,0x0,0x61, + 0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x0,0x20,0x0,0x62,0x1,0x31,0x0,0x72, + 0x0,0x61,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0,0x64,0x1,0x31,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0xe7,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x75,0x0,0x6d,0x0,0x6c,0x0,0x75,0x0,0x20, + 0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0xfc,0x0,0x6d,0x0,0x6b,0x0,0xfc,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x74, + 0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x79,0x1,0x31,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x27,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x79, + 0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x6c,0x1,0x31,0x0,0x6d,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x79, + 0x0,0x75,0x0,0x6d,0x0,0x73,0x0,0x75,0x0,0x7a,0x0,0x6c,0x0,0x75,0x0,0x6b, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x79,0x0,0x61,0x1,0x5f,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x0,0x20,0x0,0x62,0x1,0x31, + 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0xfc,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x20, + 0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x66,0x1,0x31,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0xe7,0x0,0x74,0x1,0x31,0x1,0x1f,0x1,0x31,0x0,0x6e,0x1,0x31,0x0,0x7a, + 0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x29,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x6f, + 0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x67,0x0,0x65, + 0x0,0xe7,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x70,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x1,0x30, + 0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0, + 0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x1,0x5f,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72, + 0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c, + 0x0,0x47,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x26,0x0,0x6e, + 0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6c,0x1,0x31,0x0,0x20,0x0,0x67, + 0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0,0x20,0x0,0x69, + 0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x64,0x0,0x65, + 0x1,0x1f,0x0,0x69,0x1,0x5f,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61, + 0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x42,0x0,0x50,0x0,0x42,0x0,0x27,0x0,0x79,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x46,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x79,0x0,0x61,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x6d,0x0,0x61,0x0,0x73,0x1, + 0x31,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x1, + 0x31,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41,0x0,0x79,0x0,0x61,0x0,0x72, + 0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0, + 0xfc,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x63,0x0,0xfc,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x6d,0x0,0x67,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x64,0x0,0xfc,0x0, + 0x7a,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56, + 0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x20,0x0,0x69,0x1,0x5f,0x0,0x6c,0x0,0x65,0x0,0x79,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x1, + 0x1f,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x62,0x0,0xfc,0x0,0x79,0x0, + 0xfc,0x0,0x6b,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x44,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x53,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x72,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x61, + 0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69, + 0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6c,0x0, + 0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0xe7,0x0,0x6f,0x0,0x6b,0x0, + 0x20,0x0,0x62,0x0,0xfc,0x0,0x79,0x0,0xfc,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x56,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x27,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20, + 0x0,0x62,0x0,0xfc,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72, + 0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x47,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x41,0x0,0x79,0x0,0x61,0x0, + 0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x6b,0x0,0x61,0x0, + 0x79,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x20,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0, + 0x6d,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x7a,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0xc7,0x1, + 0x31,0x0,0x6b,0x1,0x31,0x1,0x5f,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x70,0x0, + 0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0xdc,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x7a,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x6a, + 0x1,0x31,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x6d,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x72,0x0,0x6c, + 0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6b,0x0, + 0x2d,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0, + 0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44, + 0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20, + 0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x26,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x61,0x0,0x79,0x0,0x61,0x0, + 0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0xc7,0x1,0x31,0x0,0x6b,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x1,0x30,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x1,0x31,0x0,0x20,0x0,0x26,0x0,0xe7,0x1,0x31,0x0,0x6b,0x0,0x61,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x45,0x0,0x6d, + 0x0,0xfc,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0xe7,0x1,0x31,0x0,0x6b,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x26,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0, + 0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x65,0x0, + 0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0, + 0xfc,0x1,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72, + 0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0, + 0x6e,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0, + 0x6c,0x0,0x65,0x1,0x5f,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x45,0x0,0x74,0x0, + 0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x45,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x28,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61, + 0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0, + 0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0xe7,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x79,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x48,0x0,0x61,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4f,0x0,0x6c,0x0,0x75, + 0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x75,0x0,0x20, + 0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c, + 0x1,0x31,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x1,0x5f,0x0,0x74, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f, + 0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x65,0x0,0xe7,0x0,0x20,0x0,0x28,0x0,0x59,0x0,0x61,0x0,0x7a,0x0,0x6d, + 0x0,0x61,0x0,0x2d,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x6d,0x0,0x61, + 0x0,0x6c,0x1,0x31,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f, + 0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0xc7,0x1,0x31,0x0,0x6b,0x1,0x31,0x1,0x5f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33, + 0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x72, + 0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26, + 0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x46,0x0,0x44,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63, + 0x0,0xfc,0x0,0x73,0x0,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67, + 0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x41,0x1,0x1f,0x0,0x20,0x0, + 0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0, + 0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0, + 0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x61,0x0, + 0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20, + 0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x48,0x1,0x31,0x0,0x7a,0x0,0x6c,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x4b,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x20, + 0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x6f,0x0, + 0x73,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x61, + 0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x2d,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75, + 0x0,0x74,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73, + 0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x6c,0x0,0x75, + 0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26, + 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x72,0x0,0x74,0x1,0x31,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x6c, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0xf6,0x0,0x6e,0x0,0xfc, + 0x1,0x5f,0x0,0x74,0x0,0xfc,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31, + 0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x27,0x0,0x74,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x62, + 0x0,0xfc,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x92,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x64,0x1,0x31,0x1,0x5f,0x1,0x31,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0xf6,0x0, + 0x72,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20, + 0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65, + 0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28, + 0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6e,0x1, + 0x31,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x69,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65, + 0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x59,0x0,0xfc,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69, + 0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0xf6,0x0, + 0x6c,0x0,0xe7,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0, + 0x73,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26, + 0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31, + 0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x42,0x0,0x65,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x74,0x1,0x31, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x53,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x1,0x30,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x44,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72, + 0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x47,0x0,0x69,0x0,0x72,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x61,0x0,0x79,0x0, + 0x67,0x1,0x31,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x61,0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61, + 0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x47,0x0,0x65,0x0,0xe7,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x47,0x0,0x65,0x0,0xe7,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0xfc,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x79,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0, + 0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x79,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x20,0x0, + 0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x79,0x0,0x75,0x0, + 0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x20,0x0,0x43,0x0,0x69, + 0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x43, + 0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0, + 0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x44,0x0,0x69,0x0,0x6c,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0xfc, + 0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0, + 0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x68,0x0,0x69,0x0,0xe7,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6d,0x1,0x31,0x1,0x5f,0x0, + 0x74,0x1,0x31,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x47,0x0,0x69,0x0,0x72,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x43,0x0,0x69,0x0, + 0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0xc7,0x1,0x31,0x0,0x6b,0x1,0x31,0x1, + 0x5f,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x4f,0x0, + 0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x6a,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x61,0x0,0x6b, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x2,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x6c, + 0x0,0x61,0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20, + 0x0,0x6f,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a, + 0x1,0x31,0x0,0x20,0x0,0x79,0x0,0xfc,0x0,0x7a,0x0,0xfc,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x69,0x0,0x6c,0x0,0x2e, + 0x0,0x20,0x0,0x4d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20, + 0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x79, + 0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0xe7,0x0,0x69,0x1,0x5f,0x0,0x20, + 0x0,0x79,0x0,0x61,0x0,0x70,0x1,0x31,0x0,0x6c,0x1,0x31,0x0,0x79,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65, + 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xfc, + 0x0,0x72,0x0,0xfc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xb4,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x75,0x1,0x1f,0x0,0x75,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x75,0x0, + 0x79,0x0,0x75,0x0,0x6d,0x0,0x6c,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0, + 0x65,0x0,0x74,0x0,0x20,0x0,0x61,0x1,0x1f,0x1,0x31,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x64,0x0, + 0x75,0x1,0x1f,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x7a,0x0,0x64,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x75,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0, + 0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x75,0x1,0x1f,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0, + 0x6e,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x69,0x1,0x1f,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x44,0x0,0x6f,0x0,0x73, + 0x0,0x79,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0x79,0x0,0x61, + 0x0,0x7a,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6c, + 0x0,0x61,0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x69, + 0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x42,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6b,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x6b,0x0,0x75, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x73, + 0x0,0x69,0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x41,0x1,0x1f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x1,0x1f,0x0,0x20,0x0,0x63, + 0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x41,0x1,0x1f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x69,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x59,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x1,0x30,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x48,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x6e,0x0, + 0x67,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0, + 0x7a,0x1,0x31,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x48,0x0,0x69,0x0,0xe7,0x0,0x62,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x1,0x31,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0x69,0x0, + 0xe7,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x1,0x1f, + 0x0,0x72,0x0,0x75,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75, + 0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x4b,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6c,0x1,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0xe7,0x1,0x31,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0, + 0x29,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0, + 0xfc,0x0,0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x20,0x0, + 0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x2e,0x0,0x20,0x0,0x42,0x0, + 0x61,0x1,0x5f,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0, + 0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x47,0x0,0xf6, + 0x0,0x6c,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x44,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x69,0x1,0x1f,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x64,0x1,0x31,0x0,0x72,0x1,0x31, + 0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0xdc,0x0,0x7a, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x79,0x0,0x61, + 0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x68, + 0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x4f,0x0,0x53,0x0, + 0x54,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x41,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6d,0x0,0x67,0x0,0x61,0x0, + 0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0,0x75,0x0,0x79,0x0,0x75,0x1, + 0x5f,0x0,0x6d,0x0,0x75,0x0,0x79,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x59,0x0, + 0xfc,0x0,0x72,0x0,0xfc,0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x79,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0xfc,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0, + 0x6d,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4c,0x0, + 0xfc,0x0,0x74,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0xe7,0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x68,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65, + 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x7c,0x0,0x50,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0xf6,0x0,0x6e,0x0, + 0x6d,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x75,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x7c,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x62,0x1,0x31,0x0,0x72,0x0,0x61,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0, + 0x6e,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x75,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e, + 0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x1,0x31,0x0,0x72,0x0,0x61,0x0,0x6b,0x1,0x31,0x0,0x6c,0x0,0x6d, + 0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0,0x69,0x0,0xe7,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x0,0x74,0x0,0x75,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x1,0x30,0x1,0x5f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0xf6,0x0,0x72, + 0x0,0x74,0x0,0x6c,0x0,0xfc,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63, + 0x0,0xfc,0x0,0x73,0x0,0xfc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x50,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x69, + 0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x68,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x72,0x0,0x6c,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x6b,0x0,0x6c,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d, + 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61, + 0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x1,0x30,0x1,0x5f,0x0, + 0x6c,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x59,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0xf6,0x0,0x6c,0x0,0x6d,0x0, + 0x65,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x79,0x1,0x31,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x59,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x59,0x0,0xfc,0x0,0x72,0x0,0xfc,0x0,0x74,0x0,0x6d,0x0,0x65,0x0,0x79,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x20,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73, + 0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x61,0x0, + 0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x79,0x1,0x31,0x0, + 0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20, + 0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61, + 0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0, + 0x65,0x0,0x6b,0x0,0x74,0x0,0xf6,0x0,0x72,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0xe7, + 0x0,0x61,0x0,0x6c,0x1,0x31,0x1,0x5f,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x79,0x0,0x61,0x0,0x20, + 0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x74,0x0,0xfc,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0xe7,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x1,0x31,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0xe7,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x79,0x0,0x61,0x0,0x72,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x42,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x59,0x0,0x61,0x0,0x76,0x0,0x61,0x1,0x5f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4b,0x0,0xfc,0x0,0xe7,0x0,0xfc, + 0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6c,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d, + 0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20, + 0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x73, + 0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x41,0x0, + 0x72,0x0,0x74,0x1,0x31,0x0,0x72,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x41,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x6e, + 0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x6f,0x0,0x79, + 0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x42,0x0,0x65, + 0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x26,0x0, + 0x62,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x6e,0x0,0x75,0x0, + 0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x6c,0x0,0x65,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x48,0x1,0x31,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x48,0x1,0x31,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x42,0x0,0x61,0x1,0x1f,0x1,0x31,0x0,0x6d,0x0,0x73,0x1,0x31, + 0x0,0x7a,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x0,0x2d,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0, + 0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x62,0x0, + 0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x79,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x36, + 0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6c, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f, + 0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x38,0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x79,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6c,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72, + 0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x59,0x0,0xfc,0x0,0x7a, + 0x0,0x65,0x0,0x79,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x0,0x45,0x0,0x6b,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0, + 0x6e,0x0,0x74,0x0,0xfc,0x0,0x73,0x0,0xfc,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20, + 0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x48,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x20,0x0,0x26,0x0,0x6b,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x6e,0x1, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0xdc,0x0,0xe7,0x0,0x6c,0x0,0xfc,0x0, + 0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x63,0x0,0xfc,0x0,0x73,0x0,0xfc,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72, + 0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x41,0x1,0x1f,0x0, + 0x20,0x0,0x79,0x0,0x61,0x0,0x70,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x1,0x31,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0, + 0xfc,0x0,0x63,0x0,0xfc,0x0,0x79,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0xe7,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x65,0x0, + 0x6b,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x9c,0x0,0x53,0x0,0x65,0x0,0xe7,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0, + 0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x7a,0x1, + 0x31,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x6b,0x0,0x74,0x1,0x31,0x0, + 0x72,0x0,0x2e,0x0,0x20,0x0,0x42,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x20,0x0, + 0x79,0x0,0x61,0x0,0x70,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2, + 0x62,0x0,0x42,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0, + 0x6b,0x1,0x31,0x0,0x20,0x0,0x61,0x0,0x6c,0x1,0x31,0x0,0x6e,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x75,0x0,0x6c,0x0, + 0x64,0x0,0x75,0x0,0x6b,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x79,0x0,0x61,0x0,0x73,0x1,0x31,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x6e,0x0, + 0x6c,0x0,0x61,0x0,0x6d,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0, + 0x65,0x0,0x6c,0x0,0x69,0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x0, + 0xa,0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0, + 0x75,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x79,0x0,0x72,0x1,0x31,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x1,0x31,0x1,0x1f,0x1,0x31,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x79,0x0,0x65,0x0, + 0x72,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x1, + 0x1f,0x0,0x69,0x1,0x5f,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6c,0x0, + 0x64,0x0,0x69,0x1,0x1f,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x1,0x31,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0, + 0x75,0x1,0x5f,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x64,0x0, + 0x61,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0, + 0x68,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x79,0x1,0x31,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x6d,0x0,0x75,0x1,0x5f,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x5a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x6d,0x0,0x67,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x0,0x6e,0x1, + 0x31,0x0,0x20,0x0,0x64,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6c,0x0,0x74,0x0, + 0x6d,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x7a,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x42,0x0,0x75,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x79,0x0,0x69,0x0,0x20, + 0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x63, + 0x0,0x61,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a, + 0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, + 0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x4b,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0, + 0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74, + 0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x54,0x0,0xfc,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x1,0x5f,0x0,0x75,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6d,0x0,0x65, + 0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x61,0x1,0x5f,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x64,0x1,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x52,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x62,0x0,0x61, + 0x1,0x5f,0x0,0x6c,0x0,0x61,0x0,0x74,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0x64,0x1,0x31,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6d,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e, + 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64, + 0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0, + 0x76,0x0,0x79,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x76,0x0,0x64,0x0,0x69,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0xe7,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x79,0x0,0xfc,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x65,0x0, + 0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x20,0x0, + 0x6f,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6d,0x1,0x31,0x0,0x79,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x48,0x0,0x61,0x0, + 0x6d,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0x61,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0, + 0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6e,0x1,0x31,0x0,0x6e,0x0,0x20,0x0, + 0xfc,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x61,0x0,0x7a,0x1,0x31,0x0,0x6c,0x0,0x61,0x0,0x6d,0x1,0x31,0x0, + 0x79,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x6d,0x0,0x65,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x65,0x0, + 0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x69,0x0, + 0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x79,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x72, + 0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xc, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x65,0x0,0x6b, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x1,0x31,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61, + 0x0,0x73,0x0,0xf6,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x1,0x31, + 0x0,0x20,0x0,0x79,0x0,0xfc,0x0,0x7a,0x0,0xfc,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0x65,0x1,0x1f,0x0,0x69,0x0,0x6c,0x0,0x2e,0x0,0x20, + 0x0,0x4d,0x0,0x65,0x0,0x76,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x1,0x31,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65, + 0x0,0xe7,0x0,0x69,0x1,0x5f,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x70,0x1,0x31, + 0x0,0x6c,0x1,0x31,0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x45,0x0,0x6b,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x42,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x27,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x6f,0x1,0x5f,0x0,0x67,0x0,0x65,0x0, + 0x6c,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x69,0x1,0x5f,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x58,0x0,0x47,0x0,0x41, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x20,0x0,0x28,0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x68,0x1, + 0x31,0x0,0x7a,0x0,0x6c,0x1,0x31,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x44,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6d,0x0, + 0x65,0x0,0x79,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0xfc,0x0, + 0x72,0x0,0x61,0x0,0x73,0x0,0x79,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x79,0x0, + 0xfc,0x0,0x6b,0x0,0x6c,0x0,0xfc,0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x73,0x0, + 0x75,0x0,0x6e,0x0,0x75,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x73,0x0,0xfc,0x0,0x72,0x0,0xfc, + 0x0,0x63,0x0,0xfc,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x6a,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_zh-TW.qm + 0x0,0x0,0x70,0x1f, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x21,0x65,0x0,0x0,0x0,0x48, + 0x0,0x0,0x36,0xe5,0x0,0x0,0x0,0x53,0x0,0x0,0x4f,0x9e,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0x80,0x0,0x0,0x4,0xf2,0x0,0x0,0x3d,0xd3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x3f,0x42,0x0,0x0,0x5,0x3b,0x0,0x0,0x46,0xbc,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x46,0xf1,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x1f,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x73,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xc7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x12,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x66,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xba,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xe,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x32,0x0,0x0,0x49,0xc3,0x0,0x0,0x21,0x26,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3a,0xae,0x0,0x0,0x4d,0x85,0x0,0x0,0x3a,0xcc,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x46,0xd7,0x0,0x0,0x5d,0x81,0x0,0x0,0x60,0xc7,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0x85,0x0,0x2,0x97,0xd3,0x0,0x0,0x3,0xeb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0xf,0x7c,0x0,0x4,0x8c,0xaf,0x0,0x0,0x1f,0xde,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x21,0x44,0x0,0x4,0xa7,0x89,0x0,0x0,0x2f,0xfd,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x33,0xb6,0x0,0x4,0xc8,0xa4,0x0,0x0,0x34,0x73,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x32,0x89,0x0,0x4,0xd0,0x25,0x0,0x0,0x34,0xb6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x36,0x85,0x0,0x5,0x56,0x45,0x0,0x0,0x46,0x61,0x0,0x5,0x78,0x79, + 0x0,0x0,0x4f,0xb6,0x0,0x5,0x98,0xc5,0x0,0x0,0x50,0x9a,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x52,0xdf,0x0,0x5,0xc0,0x65,0x0,0x0,0x5b,0x51,0x0,0x12,0x74,0x52, + 0x0,0x0,0x15,0xc0,0x0,0x19,0x74,0x52,0x0,0x0,0x15,0xfd,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x2,0xf5,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x15,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xa,0xaf,0x0,0x2b,0x72,0x89,0x0,0x0,0xb,0x8b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0xf,0xce,0x0,0x34,0x9,0xc8,0x0,0x0,0x10,0xfa,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x5d,0x11,0x0,0x3b,0xa9,0x68,0x0,0x0,0x16,0x88,0x0,0x46,0x86,0x49, + 0x0,0x0,0x18,0xa7,0x0,0x4c,0x99,0x62,0x0,0x0,0x31,0xca,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2a,0xe9,0x0,0x58,0xc9,0xc4,0x0,0x0,0x4f,0x53,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x54,0xef,0x0,0x5a,0x6c,0x44,0x0,0x0,0x53,0x3c,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x5b,0x9,0x0,0x5c,0x6,0x8a,0x0,0x0,0x5b,0x6e,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x62,0xef,0x0,0x73,0x75,0x3e,0x0,0x0,0x29,0xf0,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x46,0x31,0x0,0x97,0x96,0x4,0x0,0x0,0x2b,0xf8,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x3c,0x81,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x3d,0xaf,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x38,0xd8,0x0,0xb8,0x5f,0x43,0x0,0x0,0x48,0x33,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x15,0x83,0x1,0x9,0x1c,0x92,0x0,0x0,0x33,0x20,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x23,0x9e,0x1,0x39,0xa4,0xce,0x0,0x0,0x43,0xd0,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x5b,0x27,0x1,0x4c,0x50,0xee,0x0,0x0,0x4d,0xca,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x38,0xa7,0x1,0x61,0xac,0xc9,0x0,0x0,0x10,0x6a,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x5a,0x8,0x1,0x7a,0x2c,0x99,0x0,0x0,0x2e,0x9d,0x1,0x91,0xe,0x73, + 0x0,0x0,0x21,0xeb,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3a,0x60,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x40,0x87,0x1,0xb0,0x47,0x5c,0x0,0x0,0x3f,0x5d,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x3b,0x1,0xc8,0x65,0x8f,0x0,0x0,0x32,0xa6,0x1,0xd3,0x9,0x82, + 0x0,0x0,0x9,0xd5,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0x23,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x27,0xcc,0x1,0xe6,0x0,0xe9,0x0,0x0,0x50,0x58,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x55,0x2e,0x2,0x14,0x18,0x2e,0x0,0x0,0x8,0xde,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x56,0x29,0x2,0x23,0x3c,0x6b,0x0,0x0,0x55,0xea,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x55,0xab,0x2,0x3c,0xaa,0x89,0x0,0x0,0x13,0x4a,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x39,0xf1,0x2,0x78,0x48,0x1a,0x0,0x0,0x40,0x4f,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x61,0x27,0x2,0x90,0x8d,0x12,0x0,0x0,0x33,0xe7,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x48,0x9a,0x2,0xad,0x4a,0x22,0x0,0x0,0x4e,0x13,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x7,0xdf,0x2,0xb3,0xba,0xf1,0x0,0x0,0xa,0x88,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0x64,0x2,0xbb,0x66,0x33,0x0,0x0,0xf,0x12,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0xf,0xa3,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x48,0x68,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x63,0x13,0x3,0x5,0x38,0xb2,0x0,0x0,0x31,0xe8,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x4a,0xf7,0x3,0x41,0x45,0x12,0x0,0x0,0x11,0x24,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x11,0xe2,0x3,0x4b,0x26,0xf2,0x0,0x0,0x12,0x9,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x3f,0x87,0x3,0x65,0x26,0xf2,0x0,0x0,0x14,0xbf,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x14,0xe6,0x3,0x6a,0x66,0x2e,0x0,0x0,0x42,0xbf,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x41,0x58,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0x72,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x26,0xeb,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0x9b,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x16,0x3a,0x3,0xa4,0x35,0xa5,0x0,0x0,0x33,0x96,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x33,0x54,0x3,0xa5,0x26,0xf2,0x0,0x0,0x16,0x61,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x44,0x3d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x55,0x69,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x54,0x44,0x3,0xe4,0x25,0x5a,0x0,0x0,0x54,0x16,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x53,0xe8,0x3,0xe4,0x25,0x7a,0x0,0x0,0x53,0xba,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x56,0x4,0x3,0xf6,0x9a,0x0,0x0,0x42,0x70,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x13,0xa5,0x4,0x15,0x75,0x22,0x0,0x0,0x11,0x4b,0x4,0x17,0x65,0x22, + 0x0,0x0,0x11,0x75,0x4,0x1c,0x68,0x69,0x0,0x0,0x12,0xec,0x4,0x23,0x29,0x55, + 0x0,0x0,0x9,0xa2,0x4,0x31,0xff,0xe9,0x0,0x0,0x1f,0xfb,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x22,0x8f,0x4,0x51,0x79,0xb1,0x0,0x0,0x56,0xc5,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x5c,0x22,0x4,0x5b,0x53,0x1f,0x0,0x0,0x1f,0x7a,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x53,0x93,0x4,0x7d,0xb,0xa4,0x0,0x0,0x2f,0x32,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x2f,0x59,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x29,0xa5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x26,0x2c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x2c,0xc8,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xa,0xd5,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2a,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x14,0x61,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x45,0x4e,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x28,0xaa,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0x3,0x4,0xe6,0xae,0xdb,0x0,0x0,0x19,0x43,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x45,0x6e,0x4,0xeb,0x2f,0xa,0x0,0x0,0x3e,0xb2,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x39,0xa8,0x5,0x18,0x5,0x95,0x0,0x0,0x5d,0x55,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x12,0x6d,0x5,0x30,0xd3,0xe,0x0,0x0,0x2e,0x28,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x45,0x2d,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x61,0xb6,0x5,0x5f,0x7b,0x59,0x0,0x0,0xd,0xbc,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x2f,0xb5,0x5,0x88,0x2e,0xd9,0x0,0x0,0x52,0xfa,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x41,0x78,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x5a,0xd8,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x57,0x87,0x5,0xa5,0x3a,0x79,0x0,0x0,0x20,0x49,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x55,0xd,0x5,0xb2,0x16,0x79,0x0,0x0,0x4e,0x7c,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x37,0x90,0x5,0xb3,0x5f,0x79,0x0,0x0,0x38,0x68,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x31,0x8b,0x5,0xb8,0x5d,0xad,0x0,0x0,0x12,0x30,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x10,0xbd,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x11,0x9f,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3a,0x2c,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2c,0x4e,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x5f,0x6d,0x5,0xd0,0x4f,0x11,0x0,0x0,0x60,0x7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xc,0xe8,0x5,0xdf,0xba,0xba,0x0,0x0,0x60,0x43,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x4d,0x64,0x6,0x7,0xd3,0xda,0x0,0x0,0x3b,0xd3,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2c,0x19,0x6,0x19,0x20,0x43,0x0,0x0,0x50,0xb7,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x2e,0x2,0x6,0x38,0x9f,0x35,0x0,0x0,0x2c,0x93,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1a,0x32,0x6,0x51,0xe6,0x13,0x0,0x0,0x5,0xfb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x28,0xcc,0x6,0x6c,0xb8,0x3,0x0,0x0,0x5e,0x4a,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x39,0x5,0x6,0x74,0xe,0x6a,0x0,0x0,0x49,0x27,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x39,0x4e,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x19,0x13,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x30,0x91,0x6,0x81,0xb7,0x1f,0x0,0x0,0x2d,0x6f,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x54,0x72,0x6,0x96,0xa4,0x13,0x0,0x0,0x35,0xb2,0x6,0x97,0x71,0x79, + 0x0,0x0,0x50,0x1c,0x6,0xc3,0xce,0xa3,0x0,0x0,0x56,0x68,0x6,0xce,0x41,0x63, + 0x0,0x0,0x36,0x14,0x6,0xed,0xca,0xce,0x0,0x0,0x37,0x2c,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x6,0xec,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xa0,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x39,0x28,0x7,0x0,0x57,0x53,0x0,0x0,0x21,0x7d,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x41,0x30,0x7,0x6,0x93,0xe3,0x0,0x0,0x62,0x8e,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1a,0xb,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x43,0x7,0x14,0x6,0x33, + 0x0,0x0,0x19,0xae,0x7,0x2a,0xb5,0xca,0x0,0x0,0x52,0xb0,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x44,0xbe,0x7,0x35,0x7c,0x8a,0x0,0x0,0x3b,0x67,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x4a,0x97,0x7,0x40,0xb5,0xe2,0x0,0x0,0x15,0x4c,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x28,0x6f,0x7,0x58,0x61,0xe5,0x0,0x0,0x39,0x73,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0xf,0x39,0x7,0x70,0xb3,0xaa,0x0,0x0,0x34,0xd3,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x26,0x0,0x7,0x9e,0x50,0x1e,0x0,0x0,0x4f,0x71,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x42,0x9c,0x7,0xa3,0x63,0x9e,0x0,0x0,0x4e,0xe3,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x47,0x57,0x7,0xa4,0x32,0x89,0x0,0x0,0x18,0xcb,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x5e,0xd,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xa6,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x1,0xd6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x20,0x8b,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x4b,0xf2,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x4b,0xad,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x30,0x1e,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x4f,0xd7,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3b,0x2c,0x8,0x0,0x3f,0x29,0x0,0x0,0x4b,0x41,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x44,0x61,0x8,0x31,0xf7,0xee,0x0,0x0,0xa,0xfe,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x3f,0x12,0x8,0x60,0xe7,0xcd,0x0,0x0,0x5a,0x5d,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x49,0x51,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0x69,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x5b,0x8e,0x8,0x9b,0xc,0x24,0x0,0x0,0x51,0xa1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x3c,0xef,0x8,0xa3,0xdb,0xae,0x0,0x0,0x3d,0x7f,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x3d,0x1f,0x8,0xa4,0xb,0xae,0x0,0x0,0x3d,0x4f,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x2e,0xe7,0x8,0xa9,0xcf,0x35,0x0,0x0,0x27,0x52,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x32,0x2a,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x3d,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x31,0x15,0x8,0xf7,0xb3,0xda,0x0,0x0,0x35,0xe9,0x9,0x9,0x24,0x29, + 0x0,0x0,0x3e,0xd6,0x9,0x49,0xfa,0x4a,0x0,0x0,0x29,0x49,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x29,0x77,0x9,0x49,0xfa,0x6a,0x0,0x0,0x28,0xed,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x29,0x1b,0x9,0x4e,0xde,0x64,0x0,0x0,0x5b,0xcb,0x9,0x50,0x63,0x15, + 0x0,0x0,0x45,0xcb,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x43,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0xd,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0x97,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x4c,0xad,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x36,0x9,0x88,0x63,0xa, + 0x0,0x0,0x26,0x4b,0x9,0x88,0x63,0x1a,0x0,0x0,0x26,0x73,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x26,0x9b,0x9,0x88,0x63,0x3a,0x0,0x0,0x26,0xc3,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0x8a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x4d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x4,0xde,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x45,0x9f,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x4a,0x3d,0x9,0xc2,0x33,0xa9,0x0,0x0,0x12,0x97,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x44,0xfa,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2a,0x43,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xe,0x69,0xa,0xf,0x3d,0xb9,0x0,0x0,0xe,0x9b,0xa,0x17,0x34,0x34, + 0x0,0x0,0x31,0x50,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x1d,0xa,0x41,0x77,0x3, + 0x0,0x0,0x35,0x6c,0xa,0x4e,0x21,0xe,0x0,0x0,0x18,0x77,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x36,0x42,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x30,0xe3,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x3c,0xbd,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0x98,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x5d,0x8a,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x51,0x3e,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x56,0x9a,0xa,0x98,0x1f,0x89,0x0,0x0,0x2b,0x53,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2b,0x14,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x3c,0x25,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2a,0xc1,0xa,0xbc,0x8a,0x94,0x0,0x0,0x6,0xc3,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2b,0x92,0xa,0xda,0x50,0x7e,0x0,0x0,0x5c,0x8f,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xd,0x62,0xa,0xea,0x46,0xf4,0x0,0x0,0x45,0xf1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2b,0xb2,0xb,0xa,0x72,0xc9,0x0,0x0,0x2d,0x4f,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x24,0xb,0x1e,0xee,0xfe,0x0,0x0,0x43,0x75,0xb,0x29,0x70,0x65, + 0x0,0x0,0x36,0xa2,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0x60,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0x36,0xb,0x4e,0x19,0x54,0x0,0x0,0x3f,0xd5,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0x22,0xb,0x8c,0x46,0xe5,0x0,0x0,0xc,0x8b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x41,0x7,0xb,0x9d,0xe,0xa2,0x0,0x0,0x28,0x45,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x18,0x4d,0xb,0xab,0x6c,0xfa,0x0,0x0,0x51,0x15,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x53,0x5a,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x1f,0x25,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x37,0xcf,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3a,0xea,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x62,0x5e,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x4a,0xc3,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x57,0x11,0xc,0x20,0xc4,0xde,0x0,0x0,0xb,0xb1,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xd,0xf8,0xc,0x33,0xeb,0xe2,0x0,0x0,0x57,0x47,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x34,0xfa,0xc,0x42,0x70,0xde,0x0,0x0,0x22,0x15,0xc,0x48,0x83,0xde, + 0x0,0x0,0x4c,0x37,0xc,0x4a,0x5f,0x82,0x0,0x0,0x3c,0x4f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x58,0x79,0xc,0x77,0x67,0x19,0x0,0x0,0x35,0x24,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x2d,0xd8,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xc0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x27,0x73,0xc,0x90,0x26,0xb5,0x0,0x0,0x5c,0xdd,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x48,0xd4,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x21,0xc0,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x52,0x8f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0x66,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x47,0xa,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x5e,0x74,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x4b,0x85,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x16,0xac,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x19,0x7e,0xd,0x11,0x45,0x1a,0x0,0x0,0x20,0xfc,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x5f,0x90,0xd,0x4a,0x90,0xb2,0x0,0x0,0x4e,0xb7,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x60,0x8e,0xd,0x60,0xef,0x6a,0x0,0x0,0x3b,0xf9,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2a,0x85,0xd,0x77,0xa4,0xc0,0x0,0x0,0x34,0x35,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x2d,0x26,0xd,0x88,0x48,0x23,0x0,0x0,0x27,0x25,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x2f,0x86,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x12,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x61,0x5b,0xd,0xf9,0x90,0xe9,0x0,0x0,0x46,0x7c,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x60,0x64,0xe,0x20,0x13,0x12,0x0,0x0,0x34,0x8e,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xe,0xdb,0xe,0x48,0xfa,0xca,0x0,0x0,0x22,0xda,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x23,0x3c,0xe,0x48,0xfd,0xca,0x0,0x0,0x23,0xb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x23,0x6d,0xe,0x62,0x79,0x4,0x0,0x0,0x2d,0xb3,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x19,0xe5,0xe,0x7b,0xa1,0x23,0x0,0x0,0x40,0xc0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x28,0x22,0xe,0x98,0x18,0x54,0x0,0x0,0x20,0xbf,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x4d,0x16,0xe,0xbe,0x61,0x81,0x0,0x0,0x51,0xdf,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x52,0xb,0xe,0xbe,0x61,0x83,0x0,0x0,0x52,0x37,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x52,0x63,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x39,0xcf,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x10,0x9b,0xe,0xe2,0x34,0x60,0x0,0x0,0x62,0xa,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x62,0x34,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xa5,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0x4a,0xe,0xf7,0xac,0xae,0x0,0x0,0xe,0x36,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x62,0xb9,0xf,0x15,0xf4,0x85,0x0,0x0,0x3b,0x96,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x57,0xf3,0xf,0x17,0x9c,0x64,0x0,0x0,0x5d,0xc5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x47,0xfc,0xf,0x29,0x4d,0x2a,0x0,0x0,0x36,0xfd,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x32,0xf1,0xf,0x30,0x6b,0x3,0x0,0x0,0x27,0x9f,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x54,0xb3,0xf,0x5a,0x14,0x2,0x0,0x0,0xc,0xb3,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x10,0x2d,0xf,0x70,0xaa,0x1a,0x0,0x0,0x5f,0xd2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x4e,0x46,0xf,0x85,0x7b,0xea,0x0,0x0,0x48,0xf6,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0xf,0xf4,0xf,0xbd,0xdc,0x15,0x0,0x0,0xb,0xeb,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x4d,0x88,0xf,0xd3,0x41,0x72,0x0,0x0,0x2e,0x6a,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x3d,0xee,0xf,0xd9,0x8c,0xca,0x0,0x0,0x3e,0x50,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x3e,0x1f,0xf,0xd9,0x8f,0xca,0x0,0x0,0x3e,0x81,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x30,0x63,0xf,0xe2,0xe9,0x49,0x0,0x0,0x60,0xe5,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x49,0x85,0xf,0xf5,0xeb,0x52,0x0,0x0,0x49,0xb3,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x49,0xe1,0xf,0xf5,0xeb,0x54,0x0,0x0,0x4a,0xf,0x69,0x0,0x0,0x63, + 0x3d,0x3,0x0,0x0,0x0,0xc,0x0,0x20,0x0,0x2d,0x0,0x20,0x5d,0xf2,0x66,0xab, + 0x50,0x5c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50, + 0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa6, + 0x0,0x20,0x66,0x2f,0x5c,0x7,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x6a,0x94, + 0x68,0x48,0x8f,0x49,0x63,0xdb,0x70,0xba,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46, + 0x0,0x20,0x62,0x40,0x97,0x0,0x89,0x81,0x76,0x84,0x5e,0xab,0x30,0x2,0x0,0xa, + 0x0,0xa,0x4f,0x7f,0x75,0x28,0x90,0x1a,0x75,0x28,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x53,0x70,0x88,0x68,0x6a,0x5f,0x52,0x17,0x53,0x70,0x76,0x84,0x65,0x87, + 0x4e,0xf6,0x5c,0x7,0x88,0xab,0x51,0x32,0x5b,0x58,0x70,0xba,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20, + 0x6a,0x94,0x68,0x48,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x25,0x0,0x69,0x0,0x20,0x7b, + 0x49,0x5f,0x85,0x72,0xc0,0x61,0x4b,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28, + 0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x31,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x32,0x0,0x78,0x0,0x28,0x0, + 0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0, + 0x78,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x35,0x0,0x78, + 0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26, + 0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x95,0xdc,0x65,0xbc, + 0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x52,0xd5, + 0x4f,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x74,0x25,0x73,0xc0,0x82,0x72,0x55,0xae,0x82,0x72, + 0x98,0x6f,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x26,0x59,0x31,0x53,0xbb,0x71,0x26,0x9e,0xde,0x66,0x42,0x81,0xea,0x52, + 0xd5,0x66,0xab,0x50,0x5c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f, + 0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x5e,0x73,0x57,0x47,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x98,0x10,0x8a,0x2d,0x0,0x28,0x0, + 0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x65,0x87,0x4e,0xf6,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x95,0x8b,0x55,0x5f,0x5d,0xf2, + 0x5b,0x58,0x57,0x28,0x76,0x84,0x66,0x20,0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x45, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x5d, + 0xf2,0x67,0x9,0x66,0x20,0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26, + 0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x5f,0xeb,0x90,0x32,0x81,0xf3,0x7d,0x42,0x9e,0xde, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x8c,0xc7,0x65,0x99,0x59,0x3e,0x0,0x28,0x0,0x26,0x0, + 0x46,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x51,0x68,0x87,0xa2,0x5e,0x55,0x62,0xc9, + 0x4f,0x38,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x51,0x68,0x87,0xa2,0x5e,0x55,0x0,0x28,0x0,0x26,0x0,0x46,0x0, + 0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x7d,0xa0,0x82,0x72,0x55, + 0xae,0x82,0x72,0x98,0x6f,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x47,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x78,0x6c,0x91,0xcd,0x8a,0x2d,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8a,0xaa,0x66,0xe,0x0, + 0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x96,0xb1,0x85,0xcf,0x72,0xc0,0x61,0x4b,0x52,0x17,0x0,0x28,0x0,0x26,0x0, + 0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69, + 0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x66,0x20,0x50,0xcf,0x0,0x28,0x0,0x26, + 0x0,0x49,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x65,0x74,0x65,0x78,0x6b,0xd4,0x4f,0x8b, + 0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x98,0x6f,0x79,0x3a,0x56,0x68,0x53,0xcd,0x82,0x72,0x98,0x6f,0x79, + 0x3a,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x93,0x75,0x76,0xe4,0x97,0x0,0x89,0x81,0x63,0x55,0x63,0x49,0x0, + 0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x7d,0xda,0x60,0x27,0x0,0x28,0x0,0x26,0x0,0x4c, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e, + 0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4e,0xcb, + 0x8c,0xea,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x97,0x5c,0x97,0xf3,0x0,0x28,0x0,0x26,0x0,0x4d,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x91,0x30,0x8f,0xd1,0x0, + 0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x65,0xb0,0x58,0x9e,0x66,0x20,0x50,0xcf,0x0,0x28,0x0,0x26, + 0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0xb0,0x58,0x9e, + 0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x66,0xab,0x50,0x5c,0x0,0x28, + 0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x64,0xad,0x65,0x3e,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x50,0x4f,0x59,0x7d,0x8a,0x2d,0x5b,0x9a,0x0, + 0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x70,0x70,0x5e,0xa6,0x0,0x28,0x0, + 0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x93,0x4,0x88,0xfd,0x0,0x28,0x0,0x26, + 0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52, + 0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x8f,0x9,0x51,0x65,0x4e,0xa,0x4e,0x0,0x50,0xb,0x66,0x20,0x50,0xcf,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x79,0xfb,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x79,0xfb,0x96,0x64,0x84,0x57,0x82, + 0x72,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x89,0x96, + 0x7a,0x97,0x59,0x27,0x5c,0xf,0x53,0xef,0x8a,0xbf,0x0,0x28,0x0,0x26,0x0,0x52, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x50,0x12,0x5e,0x36,0x81,0xf3,0x8d, + 0x77,0x9e,0xde,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x5c,0x7,0x53,0xf3,0x0,0x20,0x0,0x43, + 0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x93,0x75,0x66,0x20,0x5c,0x4,0x70,0xba, + 0x5d,0xe6,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x93,0x75,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x8e,0xdf,0x9a,0xd4, + 0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x90,0x78, + 0x53,0xd6,0x84,0x57,0x82,0x72,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x8a,0x2d,0x5b,0x9a, + 0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x63, + 0x7,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x4f,0xdd,0x63,0x1,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x53,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61, + 0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20, + 0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x82,0x7,0x89,0x96,0x8a,0xa,0x54,0xc,0x6b,0x65,0x0,0x28,0x0,0x26,0x0, + 0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5d,0xe5,0x51,0x77,0x0,0x28,0x0,0x26, + 0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x66, + 0xf4,0x65,0xb0,0x72,0xc0,0x61,0x4b,0x52,0x17,0x57,0x16,0x79,0x3a,0x0,0x28,0x0, + 0x26,0x0,0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x57,0x82,0x76,0xf4,0x54,0xc,0x6b, + 0x65,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x6a,0xa2,0x89,0x96,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x76,0x7d,0x82,0x72,0x55,0xae, + 0x82,0x72,0x98,0x6f,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x89,0x96,0x7a,0x97,0x7e,0x2e,0x65,0x3e,0x4f,0xc2,0x65,0x78,0x0, + 0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66, + 0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x28,0x7c,0xfb,0x7d,0x71,0x98,0x10,0x8a,0x2d,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x28,0x7a,0x7a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x4f,0x4e,0x65,0xbc,0x6a,0x19,0x6e,0x96,0x8f,0x49,0x90,0x1f,0x76, + 0x84,0x0,0x20,0x0,0x31,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x4f,0x4e,0x65,0xbc,0x6a,0x19,0x6e,0x96,0x8f,0x49,0x90, + 0x1f,0x76,0x84,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x4f,0x4e,0x65,0xbc,0x6a,0x19,0x6e,0x96,0x8f,0x49, + 0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x32,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39, + 0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e, + 0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31, + 0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x32, + 0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47, + 0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32, + 0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82, + 0xf1,0x54,0xb,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x65,0x74,0x65,0x78,0x6b, + 0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x54,0xb, + 0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x20,0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20, + 0x82,0xf1,0x54,0xb,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35, + 0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x54, + 0xb,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe0,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x62,0x7e, + 0x4e,0xd,0x52,0x30,0x4e,0xfb,0x4f,0x55,0x53,0xef,0x75,0x28,0x76,0x84,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x66,0x20,0x50,0xcf,0x30,0x2,0x0,0xa, + 0x0,0xa,0x8a,0xcb,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x4e,0xb,0x8f,0x9,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x59,0x57,0x4e,0xf6,0x4e,0x26, + 0x5c,0x7,0x51,0x76,0x89,0xe3,0x58,0xd3,0x52,0x30,0x0,0x20,0x0,0x22,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x8c,0xc7,0x65,0x99,0x59,0x3e, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f, + 0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64, + 0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f, + 0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f, + 0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f, + 0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64, + 0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61, + 0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0, + 0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78, + 0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0, + 0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x95,0xdc,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x95,0xdc,0x65,0xbc,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x58,0x9e,0x52,0xa0,0x5d,0xf2,0x5b, + 0x58,0x57,0x28,0x76,0x84,0x78,0x6c,0x78,0x9f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x58,0x9e,0x52,0xa0,0x65,0xb0,0x78,0x6c,0x78,0x9f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x90,0x32,0x96,0x8e,0x78,0xc1,0x53,0x40,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63, + 0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x62,0x40,0x67,0x9,0x6a, + 0x94,0x68,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x62,0x40,0x67,0x9,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xfa,0x4e,0x0,0x50,0xb,0x82,0xa,0x5f,0xf, + 0x96,0xfb,0x81,0x66,0x6a,0x21,0x64,0xec,0x56,0x68,0x0,0xa,0x0,0xa,0x4f,0x5c, + 0x80,0x5,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x30,0x1,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x30,0x1,0x0,0x4a,0x0,0x61,0x0,0x73, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6b,0x30,0x1,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39, + 0x0,0x39,0x0,0x35,0x30,0x1,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x30,0x1,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x30,0x1, + 0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c, + 0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x30,0x1, + 0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d, + 0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65, + 0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x30,0x1,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x30,0x1,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x30,0x1, + 0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74, + 0x0,0x6a,0x0,0x65,0x0,0x29,0x30,0x1,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x30,0x1,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x20,0x7b,0x49, + 0x4e,0xba,0x30,0x2,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x67,0x2c, + 0x8e,0xdf,0x9a,0xd4,0x4f,0x9d,0x64,0xda,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55, + 0x0,0x20,0x90,0x1a,0x75,0x28,0x51,0x6c,0x51,0x71,0x63,0x88,0x6b,0xa,0x7b,0x2c, + 0x4e,0x8c,0x72,0x48,0x62,0x16,0x66,0xf4,0x65,0xb0,0x72,0x48,0x67,0x2c,0x76,0x7c, + 0x5e,0x3,0x30,0x2,0x8a,0x73,0x60,0xc5,0x89,0x8b,0x0,0x20,0x0,0x4c,0x0,0x49, + 0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x6a,0x94,0x68,0x48, + 0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x78,0xba,0x5b,0x9a,0x89, + 0x81,0x90,0x0,0x51,0xfa,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x55,0xce,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x78,0xba,0x5b,0x9a,0x89,0x81,0x78,0x6c,0x91,0xcd,0x8a,0x2d,0x6a,0x21,0x64,0xec, + 0x56,0x68,0x55,0xce,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65, + 0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x81,0xea,0x52,0xd5,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x42,0x0,0x54,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0, + 0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0, + 0x29,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x42,0x0,0x54,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0, + 0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20, + 0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x57,0xfa,0x67,0x2c,0x78,0xc1,0x53,0x40,0x66,0x20,0x50,0xcf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x95,0x8b,0x59,0xcb,0x8f,0xfd,0x8e,0x2a,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x53,0x40,0x58,0x4a,0x59,0x27,0x5c,0xf,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x53,0x2f,0x6d,0x41, + 0x63,0x92,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x53,0x2f,0x6d,0x41,0x63,0x92, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x51,0x49,0x78,0x9f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x51,0x49,0x78,0x9f,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x43,0x0,0x47,0x0, + 0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x90, + 0x4e,0x63,0x83,0x63,0xcf,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20,0x88,0xdd,0x7f,0x6e, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0x88,0xdd,0x7f, + 0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xdc,0x6b,0x64,0x6a,0x21,0x64,0xec,0x96,0xfb,0x81,0x66,0x79,0x81, + 0x75,0x28,0x4e,0x86,0x57,0xfa,0x65,0xbc,0x90,0x78,0x5b,0x9a,0x96,0xfb,0x81,0x66, + 0x76,0x84,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x98,0x5e,0x57,0x8b, + 0x90,0x4e,0x6f,0xfe,0x30,0x2,0x0,0xa,0x0,0xa,0x80,0xfd,0x59,0x20,0x90,0x78, + 0x4e,0x2d,0x82,0x7,0x62,0x40,0x90,0x78,0x6a,0x5f,0x56,0x68,0x67,0x2c,0x4e,0xd, + 0x76,0xf8,0x5b,0xb9,0x76,0x84,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0xff,0xc, + 0x4f,0x46,0x66,0x2f,0x53,0xef,0x80,0xfd,0x67,0x3,0x90,0x47,0x52,0x30,0x82,0x7, + 0x6a,0x5f,0x56,0x68,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20, + 0x62,0x16,0x51,0x76,0x4e,0xd6,0x8e,0xdf,0x9a,0xd4,0x4e,0xd,0x76,0xf8,0x5b,0xb9, + 0x76,0x84,0x55,0x4f,0x98,0x4c,0x30,0x2,0x0,0xa,0x0,0xa,0x55,0x5f,0x75,0x28, + 0x6b,0x64,0x8a,0x2d,0x5b,0x9a,0x4e,0xd,0x53,0xd7,0x5b,0x98,0x65,0xb9,0x65,0x2f, + 0x63,0xf4,0xff,0xc,0x4e,0x26,0x4e,0x14,0x63,0xd0,0x4e,0xa4,0x76,0x84,0x4e,0xfb, + 0x4f,0x55,0x93,0x2f,0x8a,0xa4,0x58,0x31,0x54,0x4a,0x53,0xef,0x80,0xfd,0x67,0x3, + 0x89,0x96,0x70,0xba,0x71,0x21,0x65,0x48,0x80,0xc,0x95,0xdc,0x95,0x89,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x98,0x5e, + 0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x53,0xd6,0x6d,0x88,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x64,0xf4,0x51,0x45,0x53,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xf4,0x51,0x45,0x53,0x61,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x64,0xf4,0x51,0x45,0x53,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xf4,0x51,0x45,0x53,0x61,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x53,0x61,0x5e,0x36,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x53,0x61,0x5e,0x36,0x66, + 0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78,0xc1,0x5e,0x36,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x78,0xc1,0x5e,0x36,0x66,0x20,0x50, + 0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x5e,0x36,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x8b,0x8a,0x66,0xf4,0x55,0xae,0x82,0x72,0x98,0x6f,0x79,0x3a,0x5c,0xd, + 0x6b,0xd4,0x5e,0xa6,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1a,0x90,0x53,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x6a,0xa2,0x67,0xe5,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x9e,0xde,0x64,0xca,0x89,0x96,0x7a,0x97,0x63,0x55,0x63, + 0x49,0x6e,0xd1,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43, + 0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x7e,0x7c,0x7e,0x8c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63, + 0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52, + 0x36,0x56,0x68,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x71,0x21,0x6c,0xd5,0x4f, + 0xee,0x5f,0xa9,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x66,0x42,0x95, + 0x93,0x62,0x33,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43, + 0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x71,0x21,0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16, + 0x89,0x96,0x8a,0xa,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0, + 0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x81,0xea,0x8a,0x2,0x0, + 0x20,0x0,0x28,0x59,0x27,0x5b,0xb9,0x91,0xcf,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x81,0xea,0x8a,0x2,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78, + 0xc1,0x67,0xf1,0x0,0x28,0x0,0x43,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20,0x7c,0x7, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20, + 0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x4d,0x0,0x46,0x0, + 0x20,0x0,0x28,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x20,0x7c,0x7,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28, + 0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x98,0x10,0x8a,0x2d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x5d,0xee,0x52,0x6,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x79,0x81, + 0x75,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x5d, + 0xf2,0x52,0x75,0x5e,0xfa,0x78,0xc1,0x78,0x9f,0x66,0x20,0x50,0xcf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x78,0xc1,0x78,0x9f,0x66,0x20,0x50,0xcf,0x6a,0x94,0x68,0x48, + 0x5d,0xf2,0x5b,0x58,0x57,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20, + 0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x78,0x9f,0x66,0x20,0x50, + 0xcf,0x59,0x2a,0x59,0x27,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x78,0xc1, + 0x78,0x9f,0x66,0x20,0x50,0xcf,0x4e,0xd,0x80,0xfd,0x8d,0x85,0x90,0x4e,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0xc1,0x78,0x9f, + 0x59,0x27,0x5c,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x98,0x6f,0x79,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x89,0x81,0x51,0x32,0x5b,0x58,0x8a,0x2d,0x5b,0x9a,0x55, + 0xce,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xd,0x90,0x0,0x51,0xfa,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xd, + 0x89,0x86,0x84,0xcb,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xd,0x91,0xcd,0x8a,0x2d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65, + 0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4e,0xd, + 0x89,0x81,0x51,0x8d,0x98,0x6f,0x79,0x3a,0x6b,0x64,0x6d,0x88,0x60,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68, + 0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20, + 0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x52,0xd5,0x61,0x4b,0x91,0xcd,0x7d,0xe8,0x8b,0x6f,0x56,0x68,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x52,0xd5,0x61,0x4b,0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x8a,0x2d,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53, + 0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x90,0x0,0x51,0xfa,0x0,0x28,0x0,0x26, + 0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x7a, + 0x7a,0x7f,0x6e,0x51,0x49,0x78,0x9f,0x6a,0x5f,0x0,0x28,0x0,0x26,0x0,0x4d,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x90,0x0,0x51,0xfa, + 0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x53,0x2f,0x51,0xfa,0x70, + 0xba,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x20,0x68,0x3c,0x5f,0xf,0x0, + 0x28,0x0,0x26,0x0,0x78,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53, + 0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x65,0xe9,0x51,0x48,0x76,0x84,0x51, + 0x49,0x78,0x9f,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x55,0x5f,0x75,0x28,0x0,0x20,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x65,0x74,0x54, + 0x8,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f, + 0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x55,0x5f,0x75,0x28,0x0,0x20,0x0, + 0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x55,0x5f,0x75,0x28,0x0, + 0x20,0x0,0x28,0x67,0x2c,0x57,0x30,0x66,0x42,0x95,0x93,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x7d,0x50,0x67,0x5f,0x8f,0xfd,0x8e,0x2a,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x6b,0x63,0x57,0x28,0x90,0x32,0x51,0x65,0x51,0x68,0x87,0xa2,0x5e,0x55,0x6a, + 0x21,0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74, + 0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x93,0x2f,0x8a,0xa4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x52,0x1d, + 0x59,0xcb,0x53,0x16,0x6e,0x32,0x67,0xd3,0x56,0x68,0x66,0x42,0x51,0xfa,0x93,0x2f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x95,0x8b,0x55,0x5f,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x76,0x84,0x66,0x20,0x50,0xcf, + 0x4e,0x26,0x5b,0xeb,0x4f,0xdd,0x8b,0x77,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24, + 0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28, + 0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64, + 0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90, + 0x0,0x51,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x5f,0x37,0x52,0x36, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x98,0x6f,0x79,0x3a,0x6b,0xd4, + 0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8e,0xdf,0x78,0x9f,0x63,0xa7,0x52,0x36,0x56, + 0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x8a,0xbf,0x98,0x3b,0x54,0x8,0x62,0x10,0x56,0x68, + 0x9a,0x45,0x52,0xd5,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x69,0x0,0x63, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x4a, + 0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x48,0x0,0x65,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x6d,0x6e,0x9e,0xde, + 0x86,0x55,0x74,0x6,0x56,0x68,0x0,0x20,0x0,0x28,0x0,0x46,0x0,0x50,0x0,0x55, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x52,0x1d,0x59, + 0xcb,0x53,0x16,0x7d,0xb2,0x8d,0xef,0x9a,0x45,0x52,0xd5,0x7a,0xb,0x5f,0xf,0x59, + 0x31,0x65,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8a,0x2d,0x5b,0x9a,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x59,0x31,0x65,0x57,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x5f,0xeb,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x81,0xf4,0x54,0x7d,0x93,0x2f,0x8a,0xa4,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x6a,0x94,0x68,0x48, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x6a,0x94,0x68,0x48,0x54,0xd,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20, + 0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x90,0x4e,0x6f,0xfe,0x65,0xb9,0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x56,0xfa,0x5b,0x9a,0x59,0x27, + 0x5c,0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x8e,0xdf,0x78,0x9f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8e,0xdf,0x78,0x9f,0x0,0x2f,0x51,0x49, + 0x78,0x9f,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x8e, + 0xdf,0x78,0x9f,0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x46,0x0,0x6c,0x0,0x75, + 0x0,0x78,0x0,0x20,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x51,0x68,0x87,0xa2,0x5e,0x55,0x62,0xc9, + 0x4f,0x38,0x6a,0x21,0x5f,0xf,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x58,0x9e,0x76,0xca,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x70,0x70,0x5e,0xa6,0x8f,0x49,0x63,0xdb, + 0x98,0x5e,0x57,0x8b,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20, + 0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x78,0x6c,0x78,0x9f,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x78,0xc1,0x78,0x9f,0x66,0x20, + 0x50,0xcf,0x4e,0xd,0x80,0xfd,0x8d,0x85,0x90,0x4e,0x0,0x20,0x0,0x34,0x0,0x20, + 0x0,0x47,0x0,0x42,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b, + 0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72, + 0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x66,0x20, + 0x50,0xcf,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x4e,0xd,0x65,0x2f,0x63,0xf4,0x97,0x5e,0x0,0x20,0x0, + 0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x4f,0x4d,0x51,0x43,0x7d,0x44,0x78,0xc1,0x53, + 0x40,0x59,0x27,0x5c,0xf,0x76,0x84,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x62,0x16,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x66,0x20,0x50, + 0xcf,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49, + 0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77, + 0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a, + 0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32, + 0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x66,0x20,0x50,0xcf,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x78,0x6c,0x78, + 0x9f,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28, + 0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x78,0x6c, + 0x78,0x9f,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x78,0x6c,0x78,0x9f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x78,0x6c, + 0x78,0x9f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x78,0x6c,0x91,0xcd,0x8a,0x2d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0x6c,0x9a,0xd4,0x4e,0xd,0x53, + 0xef,0x75,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1, + 0x98,0x2d,0x0,0x28,0x0,0x48,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x9a,0xd8,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x48,0x0,0x69,0x0,0x44,0x0,0x50,0x0, + 0x49,0x0,0x20,0x7e,0x2e,0x65,0x3e,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x96,0xb1,0x85,0xcf,0x5d,0xe5,0x51,0x77,0x52,0x17,0x0,0x28,0x0,0x26, + 0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x72, + 0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x8a,0x18,0x61,0xb6,0x9a,0xd4, + 0x64,0xf4,0x51,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x5b,0xe6,0x66,0x42,0x66,0x42,0x94,0x18,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53, + 0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x57,0x16,0x79,0x3a,0x96,0xc6,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x66, + 0x20,0x50,0xcf,0x68,0x3c,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x8f,0x38,0x51,0x65,0x88, + 0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x51,0x67,0x90,0xe8,0x63,0xa7,0x52,0x36,0x56,0x68,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61, + 0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x71,0x21,0x65,0x48,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x71,0x21,0x65,0x48,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0,0x20,0x0,0x32,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x64,0x16,0x68,0x7f,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x64,0x16,0x68,0x7f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x20,0x88,0xdd, + 0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x88, + 0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20, + 0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0, + 0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x8a,0x9e,0x8a,0x0,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x59,0x27,0x53,0x40, + 0x58,0x4a,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x93,0x96,0x5b,0x9a,0x6b,0x64,0x59,0x27, + 0x5c,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4e,0xd,0x5b,0x58,0x57, + 0x28,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0x62,0x16,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x51, + 0x49,0x78,0x9f,0x6a,0x5f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x8f, + 0x38,0x51,0x65,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x8f,0x38,0x51,0xfa,0x88,0xdd,0x7f,0x6e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x78,0xc1,0x51,0x49,0x78,0x9f,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0xc1,0x51, + 0x49,0x78,0x9f,0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x78,0xc1,0x51,0x49,0x78,0x9f,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x6a,0x5f, + 0x57,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x75,0x31, + 0x65,0xbc,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20, + 0x8c,0xc7,0x65,0x99,0x59,0x3e,0x4e,0x2d,0x7f,0x3a,0x5c,0x11,0x54,0x8,0x90,0x69, + 0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0xff,0xc,0x6a,0x5f,0x57,0x8b, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4e,0xd, + 0x53,0xef,0x75,0x28,0x30,0x2,0x5c,0x7,0x52,0x7,0x63,0xdb,0x52,0x30,0x51,0x76, + 0x4e,0xd6,0x53,0xef,0x75,0x28,0x6a,0x5f,0x57,0x8b,0x30,0x2,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25, + 0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73, + 0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, + 0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x6a,0x5f,0x56,0x68,0x98,0x5e,0x57,0x8b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x6a,0x5f,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x8a,0xcb,0x78,0xba,0x8a,0x8d,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x5d,0xf2,0x5b, + 0x89,0x88,0xdd,0x4e,0x14,0x4f,0x7f,0x75,0x28,0x76,0xf8,0x5b,0xb9,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x76, + 0x84,0x7d,0xb2,0x8d,0xef,0x90,0x23,0x7d,0xda,0x30,0x2,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c, + 0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c, + 0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61, + 0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x8a,0xcb,0x78,0xba,0x5b, + 0x9a,0x6b,0x64,0x6a,0x94,0x68,0x48,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x4e,0x26,0x53, + 0xef,0x8b,0x80,0x53,0xd6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69, + 0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x8a,0xcb,0x78,0xba,0x5b,0x9a,0x6b,0x64,0x6a,0x94, + 0x68,0x48,0x51,0x32,0x5b,0x58,0x57,0x28,0x53,0xef,0x5b,0xeb,0x76,0xee,0x93,0x4, + 0x4e,0x2d,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x8a,0x18,0x61,0xb6,0x9a,0xd4,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57, + 0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x98,0x6f,0x79,0x3a,0x56,0x68,0x86,0x55,0x57,0x28,0x77,0x61, + 0x77,0x20,0x72,0xc0,0x61,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x6e,0xd1,0x9f,0x20,0x97,0x48,0x65,0x4f,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x6e,0xd1,0x9f,0x20,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x7d,0xb2,0x8d,0xef,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x7d,0xb2,0x8d,0xef,0x91,0x4d,0x63,0xa5,0x56,0x68,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x7d,0xb2,0x8d,0xef,0x98,0x5e,0x57,0x8b,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x65,0xb0,0x58,0x9e,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x67,0x2a,0x62,0x7e,0x52,0x30,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x62,0x7e,0x4e,0xd,0x52,0x30,0x0,0x20,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x71,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x66,0xf4,0x6e,0x96,0x78,0xba,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63, + 0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x78,0xba,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x95,0xdc,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x95,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x68,0x38,0x5f,0xc3,0x0,0x29,0x0,0x28, + 0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x71,0x21,0x6c, + 0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0, + 0x20,0x68,0x38,0x5f,0xc3,0x0,0x29,0x0,0x20,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30, + 0x2,0x8a,0xcb,0x4f,0x7f,0x75,0x28,0x51,0x76,0x4e,0xd6,0x6e,0x32,0x67,0xd3,0x56, + 0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65, + 0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64, + 0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x84,0x57,0x82,0x72,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x90,0x78,0x98,0x5,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x76, + 0x4e,0xd6,0x54,0x68,0x90,0x8a,0x88,0xdd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68, + 0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x51,0x76,0x4e,0xd6,0x53,0x78,0x96,0x64,0x5f,0xf,0x88,0xdd,0x7f,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x89,0x86,0x84,0xcb,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x43, + 0x0,0x61,0x0,0x70,0x0,0x20,0x88,0xdd,0x7f,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0, + 0x49,0x0,0x54,0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x81,0xea,0x6a,0xa2,0x0,0x20,0x0,0x28,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x29,0x0,0x20,0x53,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4e,0x26,0x52,0x17,0x57, + 0xe0,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4e,0x26,0x52,0x17,0x57,0xe0,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4e,0x26,0x52,0x17,0x57,0xe0,0x0,0x20,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x4e,0x26,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x72,0x36,0x78,0x9f,0x82,0x7,0x5b,0x50,0x78,0x9f,0x76,0x84,0x66, + 0x42,0x95,0x93,0x62,0x33,0x4e,0xd,0x53,0x39,0x91,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x66,0xab,0x50, + 0x5c,0x57,0xf7,0x88,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x6a,0x19,0x6e,0x96,0x8f,0x49,0x90, + 0x1f,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8a,0xcb,0x63, + 0x7,0x5b,0x9a,0x67,0x9,0x65,0x48,0x76,0x84,0x6a,0x94,0x68,0x48,0x54,0xd,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x90,0x23,0x63,0xa5,0x57,0xe0,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x54,0x8c,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50, + 0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x50,0x4f,0x59,0x7d,0x8a, + 0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65, + 0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x63,0x9,0x4e, + 0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x8f, + 0xd4,0x56,0xde,0x52,0x30,0x89,0x96,0x7a,0x97,0x6a,0x21,0x5f,0xf,0x30,0x2,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, + 0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x62,0x16,0x6e,0xd1,0x9f,0x20,0x4e,0x2d,0x93, + 0x75,0x91,0xcb,0x65,0x3e,0x6e,0xd1,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20, + 0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x63,0x9,0x4e,0xb, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x91,0xcb,0x65,0x3e,0x6e,0xd1,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x32,0x5e,0xa6,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65, + 0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x2c, + 0x56,0xdb,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x63,0xa7,0x52,0x36, + 0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74, + 0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x8a,0x18,0x4f,0x4f,0x89,0x96,0x7a,0x97,0x59,0x27,0x5c,0xf,0x54,0x8c,0x4f,0x4d, + 0x7f,0x6e,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69, + 0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x20,0x5f,0x69,0x82,0x72,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x8f,0x49,0x90,0x1f, + 0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x29,0x0,0x20,0x6a,0x21, + 0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x53,0x9f,0x59,0xcb,0x66,0x20,0x50,0xcf,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x6e,0x32,0x67, + 0xd3,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x8a,0xcb,0x8a,0x18,0x5f,0x97,0x70, + 0xba,0x65,0xb0,0x52,0x75,0x5e,0xfa,0x76,0x84,0x66,0x20,0x50,0xcf,0x52,0x6,0x53, + 0x40,0x4e,0x26,0x68,0x3c,0x5f,0xf,0x53,0x16,0x30,0x2,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x91,0xcd,0x8a,0x2d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x60,0x62,0x5f,0xa9,0x57,0xf7,0x88,0x4c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x78,0x6c,0x9a,0xd4, + 0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x51,0x32,0x5b,0x58,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x5c,0x7,0x4e, + 0xe5,0x4e,0xa,0x8a,0x2d,0x5b,0x9a,0x5b,0x58,0x51,0x32,0x70,0xba,0x51,0x68,0x5c, + 0x40,0x98,0x10,0x8a,0x2d,0x50,0x3c,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68, + 0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20, + 0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x53,0x40,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x5f,0x9e,0x7a,0xb,0x5f,0xf,0x5d,0xe5,0x4f,0x5c,0x76,0xee, + 0x93,0x4,0x4e,0x2d,0x90,0x78,0x64,0xc7,0x4e,0xcb,0x8c,0xea,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x90,0x78,0x53,0xd6,0x72,0x36,0x0,0x20,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x6a,0x94,0x68,0x48,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x5e,0x8f,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x5e,0x8f,0x52,0x17,0x57,0xe0,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5e,0x8f,0x52, + 0x17,0x57,0xe0,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5e,0x8f,0x52,0x17,0x57,0xe0,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x61,0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x5c,0xf,0x53,0x40,0x58,0x4a,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x80,0x72,0x97,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x97,0xf3,0x91,0xcf,0x58,0x9e,0x76,0xca,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x97,0xf3,0x91,0xcf,0x58,0x9e,0x76, + 0xca,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x97,0xf3,0x65,0x48,0x53,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x97,0xf3, + 0x65,0x48,0x53,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x97,0xf3,0x65,0x48, + 0x53,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x97,0xf3,0x65,0x48,0x53,0x61, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x63,0x7,0x5b,0x9a,0x4e,0x3b,0x89,0x96, + 0x7a,0x97,0x59,0x27,0x5c,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e, + 0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x63,0x7,0x5b,0x9a,0x89,0x96,0x7a, + 0x97,0x59,0x27,0x5c,0xf,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x90,0x1f,0x5e,0xa6,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x90,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x73,0x68,0x7a,0xcb,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55, + 0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55, + 0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6a, + 0x19,0x6e,0x96,0x0,0x20,0x0,0x32,0x0,0x20,0x93,0x75,0x64,0x16,0x68,0x7f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x6a,0x19,0x6e,0x96,0x0,0x20,0x0,0x34,0x0,0x20,0x93,0x75,0x64,0x16,0x68, + 0x7f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x6a,0x19,0x6e,0x96,0x0,0x20,0x0,0x36,0x0,0x20,0x93,0x75,0x64,0x16,0x68,0x7f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73, + 0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6a, + 0x19,0x6e,0x96,0x0,0x20,0x0,0x38,0x0,0x20,0x93,0x75,0x64,0x16,0x68,0x7f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5b,0x58, + 0x51,0x32,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x88,0x68,0x97,0x62,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x64,0xf7,0x57,0x16,0x0, + 0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73, + 0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x76,0xee,0x6a,0x19,0x5e,0x40,0x73,0x87,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x2c,0x4e, + 0x9,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x63,0xa7,0x52,0x36,0x56, + 0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x7d,0xb2,0x8d, + 0xef,0x8a,0x2d,0x5b,0x9a,0x5c,0x7,0x52,0x7,0x63,0xdb,0x70,0xba,0x7a,0x7a,0x9a, + 0x45,0x52,0xd5,0x7a,0xb,0x5f,0xf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x90,0x78,0x5b,0x9a,0x76,0x84,0x6a, + 0x94,0x68,0x48,0x5c,0x7,0x88,0xab,0x89,0x86,0x84,0xcb,0x30,0x2,0x78,0xba,0x5b, + 0x9a,0x7e,0x7c,0x7e,0x8c,0x4f,0x7f,0x75,0x28,0x6b,0x64,0x6a,0x94,0x68,0x48,0x55, + 0xce,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65, + 0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74, + 0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65, + 0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x72, + 0x36,0x66,0x20,0x50,0xcf,0x53,0xef,0x80,0xfd,0x57,0x28,0x52,0x75,0x5e,0xfa,0x5d, + 0xee,0x75,0x70,0x66,0x20,0x50,0xcf,0x5f,0x8c,0x88,0xab,0x4f,0xee,0x65,0x39,0x30, + 0x2,0x0,0xa,0x0,0xa,0x59,0x82,0x67,0x9c,0x66,0x20,0x50,0xcf,0x6a,0x94,0x68, + 0x48,0x88,0xab,0x79,0xfb,0x52,0xd5,0x62,0x16,0x89,0x7,0x88,0xfd,0xff,0xc,0x62, + 0x16,0x52,0x75,0x5e,0xfa,0x6b,0x64,0x78,0xc1,0x78,0x9f,0x76,0x84,0x7a,0xb,0x5f, + 0xf,0x4e,0x2d,0x5b,0x58,0x57,0x28,0x93,0x2f,0x8a,0xa4,0xff,0xc,0x4e,0x5f,0x53, + 0xef,0x80,0xfd,0x76,0x7c,0x75,0x1f,0x90,0x19,0x7a,0x2e,0x60,0xc5,0x6c,0xc1,0x30, + 0x2,0x0,0xa,0x0,0xa,0x66,0x2f,0x54,0x26,0x97,0x0,0x89,0x81,0x4f,0xee,0x5f, + 0xa9,0x66,0x42,0x95,0x93,0x62,0x33,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65, + 0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64, + 0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa, + 0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70, + 0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65, + 0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20, + 0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, + 0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa, + 0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d, + 0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x6b,0x64, + 0x64,0xcd,0x4f,0x5c,0x5c,0x7,0x78,0x6c,0x91,0xcd,0x8a,0x2d,0x6a,0x21,0x64,0xec, + 0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x66,0x42, + 0x95,0x93,0x54,0xc,0x6b,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x52, + 0xa0,0x90,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72, + 0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x52,0xa0,0x90, + 0x1f,0x66,0x42,0x5e,0x8f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x98,0x5e,0x57,0x8b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x98,0x5e,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x5c,0x1a,0x67,0x2a,0x65,0x2f,0x63,0xf4,0x0,0x20,0x0,0x55, + 0x0,0x53,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53, + 0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70, + 0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x71,0x21,0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x71,0x21,0x6c,0xd5,0x52,0x1d,0x59,0xcb, + 0x53,0x16,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0xff,0xc,0x97,0x0,0x89,0x81, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62, + 0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x71,0x21,0x6c,0xd5,0x8f,0x9,0x51,0x65,0x93,0x75,0x76, + 0xe4,0x52,0xa0,0x90,0x1f,0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x71,0x21,0x6c,0xd5,0x8b,0x80,0x53,0xd6,0x6a,0x94,0x68,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x71,0x21,0x6c,0xd5,0x8a,0x3b,0x51,0x8a,0x53, + 0x9f,0x59,0xcb,0x8f,0x38,0x51,0x65,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67, + 0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x71,0x21,0x6c,0xd5,0x5b, + 0xeb,0x51,0x65,0x6a,0x94,0x68,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x4e,0xd,0x65,0x2f,0x63,0xf4,0x76,0x84,0x78,0xc1,0x78,0x9f,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4f,0x7f,0x75,0x28,0x55, + 0xae,0x7c,0xbe,0x5e,0xa6,0x6d,0x6e,0x9e,0xde,0x0,0x20,0x0,0x28,0x0,0x46,0x0, + 0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54, + 0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x87,0xa2,0x5e,0x55,0x98, + 0x5e,0x57,0x8b,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x6a,0x94,0x68,0x48,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x75,0x31,0x65,0xbc,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x8c,0xc7,0x65,0x99,0x59,0x3e,0x4e,0x2d,0x7f,0x3a, + 0x5c,0x11,0x54,0x8,0x90,0x69,0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0xff,0xc,0x98,0x6f,0x79,0x3a,0x53,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x4e,0xd,0x53,0xef,0x75,0x28,0x30,0x2,0x5c,0x7, + 0x52,0x7,0x63,0xdb,0x52,0x30,0x51,0x76,0x4e,0xd6,0x53,0xef,0x75,0x28,0x98,0x6f, + 0x79,0x3a,0x53,0x61,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78, + 0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22, + 0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67, + 0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d, + 0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x98,0x6f,0x79,0x3a,0x53,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f, + 0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69, + 0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x49,0x5f,0x85,0x72,0xc0,0x61,0x4b, + 0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x6b,0x61,0x8f, + 0xce,0x4f,0x7f,0x75,0x28,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0xff,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c, + 0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x5b,0xec,0x5e,0xa6,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x47,0x0,0x72, + 0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69, + 0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0, + 0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0, + 0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x59,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x66,0xf4,0x5f,0xeb,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x6b,0x63,0x57,0x28,0x8f,0x9,0x51,0x65,0x4e,0x0,0x50,0xb,0x4e,0xd,0x53, + 0xd7,0x65,0x2f,0x63,0xf4,0x76,0x84,0x8a,0x2d,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x78,0xc1,0x78,0x9f, + 0x6a,0x5f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49, + 0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x66,0x20,0x50,0xcf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_en-GB.qm + 0x0,0x0,0x8b,0x57, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x26,0x23,0x0,0x0,0x0,0x48, + 0x0,0x0,0x42,0xf1,0x0,0x0,0x0,0x53,0x0,0x0,0x63,0x6c,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x48,0x0,0x0,0x4,0xf2,0x0,0x0,0x4b,0xd9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x4d,0x9e,0x0,0x0,0x5,0x3b,0x0,0x0,0x57,0xa6,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x57,0xdf,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xe1,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x29,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x71,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xb0,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0xf8,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x40,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x88,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xa6,0x0,0x0,0x49,0xc3,0x0,0x0,0x25,0xe4,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x47,0xe0,0x0,0x0,0x4d,0x85,0x0,0x0,0x47,0xfe,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x57,0xc1,0x0,0x0,0x5d,0x81,0x0,0x0,0x7b,0xab,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x25,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x8f,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x11,0x82,0x0,0x4,0x8c,0xaf,0x0,0x0,0x24,0x70,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x26,0x2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3a,0x39,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x3e,0xc8,0x0,0x4,0xc8,0xa4,0x0,0x0,0x3f,0xbb,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3d,0x7b,0x0,0x4,0xd0,0x25,0x0,0x0,0x40,0x12,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x42,0x6d,0x0,0x5,0x56,0x45,0x0,0x0,0x57,0x31,0x0,0x5,0x78,0x79, + 0x0,0x0,0x63,0x84,0x0,0x5,0x98,0xc5,0x0,0x0,0x64,0x68,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x67,0x8f,0x0,0x5,0xc0,0x65,0x0,0x0,0x74,0x61,0x0,0x12,0x74,0x52, + 0x0,0x0,0x18,0x12,0x0,0x19,0x74,0x52,0x0,0x0,0x18,0x4b,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xbd,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xb,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0xeb,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0xc9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x11,0xca,0x0,0x34,0x9,0xc8,0x0,0x0,0x13,0x3e,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x76,0xe9,0x0,0x3b,0xa9,0x68,0x0,0x0,0x18,0xd2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1b,0x75,0x0,0x4c,0x99,0x62,0x0,0x0,0x3c,0x70,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x33,0x7f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x63,0x3,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6a,0x4d,0x0,0x5a,0x6c,0x44,0x0,0x0,0x68,0x4,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x74,0x1,0x0,0x5c,0x6,0x8a,0x0,0x0,0x74,0x82,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x7e,0x27,0x0,0x73,0x75,0x3e,0x0,0x0,0x32,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x56,0xf5,0x0,0x97,0x96,0x4,0x0,0x0,0x34,0xcc,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4a,0x17,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4b,0xa9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x45,0x8e,0x0,0xb8,0x5f,0x43,0x0,0x0,0x59,0x77,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x17,0xd9,0x1,0x9,0x1c,0x92,0x0,0x0,0x3e,0x38,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x28,0xae,0x1,0x39,0xa4,0xce,0x0,0x0,0x53,0xb6,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x74,0x25,0x1,0x4c,0x50,0xee,0x0,0x0,0x61,0x6,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x45,0x4f,0x1,0x61,0xac,0xc9,0x0,0x0,0x12,0x7e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x72,0xa2,0x1,0x7a,0x2c,0x99,0x0,0x0,0x38,0xcb,0x1,0x91,0xe,0x73, + 0x0,0x0,0x26,0xc5,0x1,0x9c,0xe0,0x83,0x0,0x0,0x47,0x92,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x4f,0x9,0x1,0xb0,0x47,0x5c,0x0,0x0,0x4d,0xb9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x2f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3d,0x9c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0xe3,0x1,0xdd,0x59,0x87,0x0,0x0,0xe,0xa3,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2f,0x4a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x64,0x2c,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6a,0x98,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0xcc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x6c,0x15,0x2,0x23,0x3c,0x6b,0x0,0x0,0x6b,0xb2,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x6b,0x4f,0x2,0x3c,0xaa,0x89,0x0,0x0,0x15,0xa8,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x47,0x17,0x2,0x78,0x48,0x1a,0x0,0x0,0x4e,0xc7,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x7c,0xb,0x2,0x90,0x8d,0x12,0x0,0x0,0x3e,0xe9,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x59,0xfe,0x2,0xad,0x4a,0x22,0x0,0x0,0x61,0x69,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xa9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xb,0xc4,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xc,0xa2,0x2,0xbb,0x66,0x33,0x0,0x0,0x10,0xfe,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x11,0xa3,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x59,0xb6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x7e,0x4b,0x3,0x5,0x38,0xb2,0x0,0x0,0x3c,0x94,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x5d,0x3d,0x3,0x41,0x45,0x12,0x0,0x0,0x13,0x62,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x14,0x34,0x3,0x4b,0x26,0xf2,0x0,0x0,0x14,0x5b,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x4d,0xe3,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xd,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x17,0x34,0x3,0x6a,0x66,0x2e,0x0,0x0,0x51,0xfd,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x4f,0xf6,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0x74,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2e,0x15,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x63,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x18,0x84,0x3,0xa4,0x35,0xa5,0x0,0x0,0x3e,0xa8,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x3e,0x7a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x18,0xab,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x54,0x79,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x6a,0xe3,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x69,0x4e,0x3,0xe4,0x25,0x5a,0x0,0x0,0x69,0x12,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x68,0xd6,0x3,0xe4,0x25,0x7a,0x0,0x0,0x68,0x9a,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xc4,0x4,0x3,0xf6,0x9a,0x0,0x0,0x51,0x94,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x15,0xff,0x4,0x15,0x75,0x22,0x0,0x0,0x13,0x89,0x4,0x17,0x65,0x22, + 0x0,0x0,0x13,0xb3,0x4,0x1c,0x68,0x69,0x0,0x0,0x15,0x4e,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xa4,0x4,0x31,0xff,0xe9,0x0,0x0,0x24,0x91,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x27,0x7f,0x4,0x51,0x79,0xb1,0x0,0x0,0x6d,0x5,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x75,0x78,0x4,0x5b,0x53,0x1f,0x0,0x0,0x23,0xb0,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x68,0x67,0x4,0x7d,0xb,0xa4,0x0,0x0,0x39,0x76,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x39,0x9d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x31,0xd5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2d,0x46,0x4,0xb8,0x1,0x2e,0x0,0x0,0x36,0x4,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xf,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xa6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x16,0xb3,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x55,0xc6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x30,0x88,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x16,0x59,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1c,0x17,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x55,0xf0,0x4,0xeb,0x2f,0xa,0x0,0x0,0x4c,0xd8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x46,0xc6,0x5,0x18,0x5,0x95,0x0,0x0,0x77,0x55,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x14,0xd3,0x5,0x30,0xd3,0xe,0x0,0x0,0x38,0x14,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x55,0x9f,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x7c,0xe0,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0x5a,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x39,0xf1,0x5,0x88,0x2e,0xd9,0x0,0x0,0x67,0xb0,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x50,0x20,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x73,0xb0,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x6e,0x7,0x5,0xa5,0x3a,0x79,0x0,0x0,0x24,0xd9,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6a,0x71,0x5,0xb2,0x16,0x79,0x0,0x0,0x61,0xce,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x43,0xde,0x5,0xb3,0x5f,0x79,0x0,0x0,0x45,0xa,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3c,0x13,0x5,0xb8,0x5d,0xad,0x0,0x0,0x14,0x82,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x12,0xed,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x13,0xdd,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x47,0x56,0x5,0xc1,0x4d,0x83,0x0,0x0,0x35,0x44,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x7a,0x37,0x5,0xd0,0x4f,0x11,0x0,0x0,0x7a,0xd9,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0x58,0x5,0xdf,0xba,0xba,0x0,0x0,0x7b,0x21,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x60,0x76,0x6,0x7,0xd3,0xda,0x0,0x0,0x49,0x21,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x34,0xf9,0x6,0x19,0x20,0x43,0x0,0x0,0x64,0x89,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x37,0xde,0x6,0x38,0x9f,0x35,0x0,0x0,0x35,0xb3,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1d,0x70,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x6f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x30,0xb8,0x6,0x6c,0xb8,0x3,0x0,0x0,0x78,0x8a,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x45,0xd3,0x6,0x74,0xe,0x6a,0x0,0x0,0x5a,0xc1,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x46,0x3c,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1b,0xe1,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3a,0xdb,0x6,0x81,0xb7,0x1f,0x0,0x0,0x36,0xf1,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x69,0x8a,0x6,0x96,0xa4,0x13,0x0,0x0,0x41,0x44,0x6,0x97,0x71,0x79, + 0x0,0x0,0x63,0xea,0x6,0xc3,0xce,0xa3,0x0,0x0,0x6c,0x78,0x6,0xce,0x41,0x63, + 0x0,0x0,0x41,0xda,0x6,0xed,0xca,0xce,0x0,0x0,0x43,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x80,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x4c,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x46,0x6,0x7,0x0,0x57,0x53,0x0,0x0,0x26,0x3b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x4f,0xc6,0x7,0x6,0x93,0xe3,0x0,0x0,0x7d,0xbe,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1d,0x3d,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1c,0xb6,0x7,0x2a,0xb5,0xca,0x0,0x0,0x67,0x5c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x55,0x0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x48,0xaf,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x5c,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x17,0xa6,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x30,0x31,0x7,0x58,0x61,0xe5,0x0,0x0,0x46,0x6f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0x25,0x7,0x70,0xb3,0xaa,0x0,0x0,0x40,0x33,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2d,0x16,0x7,0x9e,0x50,0x1e,0x0,0x0,0x63,0x27,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x51,0xd0,0x7,0xa3,0x63,0x9e,0x0,0x0,0x62,0x43,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x58,0x45,0x7,0xa4,0x32,0x89,0x0,0x0,0x1b,0x99,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x78,0x45,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x46,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x76,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x25,0x15,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x5e,0x7e,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x5e,0x33,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3a,0x5a,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x63,0xa5,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x48,0x5e,0x8,0x0,0x3f,0x29,0x0,0x0,0x5d,0xb5,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x54,0xa3,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0x3c,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x4d,0x56,0x8,0x60,0xe7,0xcd,0x0,0x0,0x73,0x35,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5a,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x13,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x74,0xa6,0x8,0x9b,0xc,0x24,0x0,0x0,0x65,0xeb,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4a,0xb9,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4b,0x6d,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4a,0xf5,0x8,0xa4,0xb,0xae,0x0,0x0,0x4b,0x31,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x39,0x25,0x8,0xa9,0xcf,0x35,0x0,0x0,0x2e,0xa2,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3c,0xfa,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xcf,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3b,0x7d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x41,0x9b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x4d,0x8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x31,0x5d,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x31,0x99,0x9,0x49,0xfa,0x6a,0x0,0x0,0x30,0xe5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x31,0x21,0x9,0x4e,0xde,0x64,0x0,0x0,0x75,0x3,0x9,0x50,0x63,0x15, + 0x0,0x0,0x56,0x71,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0xff,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x17,0x5b,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x47,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x5f,0x6b,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xce,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2d,0x6d,0x9,0x88,0x63,0x1a,0x0,0x0,0x2d,0x97,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2d,0xc1,0x9,0x88,0x63,0x3a,0x0,0x0,0x2d,0xeb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x16,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x2d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x5e,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x56,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x5c,0x29,0x9,0xc2,0x33,0xa9,0x0,0x0,0x14,0xfd,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x55,0x54,0x9,0xd5,0x43,0xd3,0x0,0x0,0x32,0xcb,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0x1d,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0x53,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3b,0xce,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x37,0xa,0x41,0x77,0x3, + 0x0,0x0,0x40,0xf6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1b,0x39,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x42,0x10,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3b,0x41,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4a,0x65,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x6,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x77,0xa6,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x65,0x40,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x6c,0xc6,0xa,0x98,0x1f,0x89,0x0,0x0,0x33,0xfd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x33,0xb2,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x49,0x8d,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x33,0x4f,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x53,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x34,0x48,0xa,0xda,0x50,0x7e,0x0,0x0,0x76,0x17,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x0,0xa,0xea,0x46,0xf4,0x0,0x0,0x56,0xa1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x34,0x72,0xb,0xa,0x72,0xc9,0x0,0x0,0x36,0xc7,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xc8,0xb,0x1e,0xee,0xfe,0x0,0x0,0x53,0x23,0xb,0x29,0x70,0x65, + 0x0,0x0,0x42,0x8e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xb,0x9a,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0x78,0xb,0x4e,0x19,0x54,0x0,0x0,0x4e,0x31,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0x6e,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0xef,0xb,0x95,0xed,0xa, + 0x0,0x0,0x4f,0x93,0xb,0x9d,0xe,0xa2,0x0,0x0,0x30,0x1,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x65,0x13,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x68,0x28,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x23,0x2f,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x44,0x23,0xb,0xe2,0xf9,0x49,0x0,0x0,0x48,0x1c,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x7d,0x88,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x5d,0x7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x6d,0x65,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0xed,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xf,0x9c,0xc,0x33,0xeb,0xe2,0x0,0x0,0x6d,0xad,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x40,0x66,0xc,0x42,0x70,0xde,0x0,0x0,0x27,0x1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x5e,0xc9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x49,0xc9,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x6f,0xbd,0xc,0x77,0x67,0x19,0x0,0x0,0x40,0xa2,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x37,0x9c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x30,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x2e,0xcf,0xc,0x90,0x26,0xb5,0x0,0x0,0x76,0x9b,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5a,0x58,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x26,0x86,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x67,0x2f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xfc,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x57,0xfa,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x78,0xba,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x5d,0xfd,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x18,0xf6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1c,0x6e,0xd,0x11,0x45,0x1a,0x0,0x0,0x25,0xae,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x7a,0x5e,0xd,0x4a,0x90,0xb2,0x0,0x0,0x62,0x13,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x7b,0x72,0xd,0x60,0xef,0x6a,0x0,0x0,0x49,0x51,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x33,0x7,0xd,0x77,0xa4,0xc0,0x0,0x0,0x3f,0x67,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x36,0x94,0xd,0x88,0x48,0x23,0x0,0x0,0x2e,0x5d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x39,0xc4,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xdc,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x7c,0x47,0xd,0xf9,0x90,0xe9,0x0,0x0,0x57,0x52,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x7b,0x48,0xe,0x20,0x13,0x12,0x0,0x0,0x3f,0xdc,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x10,0xb9,0xe,0x48,0xfa,0xca,0x0,0x0,0x27,0xca,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x28,0x3c,0xe,0x48,0xfd,0xca,0x0,0x0,0x28,0x3,0xe,0x48,0xff,0xca, + 0x0,0x0,0x28,0x75,0xe,0x62,0x79,0x4,0x0,0x0,0x37,0x69,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1d,0xd,0xe,0x7b,0xa1,0x23,0x0,0x0,0x4f,0x4e,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2f,0xd4,0xe,0x98,0x18,0x54,0x0,0x0,0x25,0x63,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x60,0xa,0xe,0xbe,0x61,0x81,0x0,0x0,0x66,0x3f,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x66,0x7b,0xe,0xbe,0x61,0x83,0x0,0x0,0x66,0xb7,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x66,0xf3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x46,0xed,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x12,0xc3,0xe,0xe2,0x34,0x60,0x0,0x0,0x7d,0x34,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x7d,0x5e,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0x8d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xd,0x98,0xe,0xf7,0xac,0xae,0x0,0x0,0xf,0xe4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x7d,0xf1,0xf,0x15,0xf4,0x85,0x0,0x0,0x48,0xdc,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x6e,0xd3,0xf,0x17,0x9c,0x64,0x0,0x0,0x77,0xfd,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x59,0x38,0xf,0x29,0x4d,0x2a,0x0,0x0,0x43,0x9,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x3d,0xf9,0xf,0x30,0x6b,0x3,0x0,0x0,0x2f,0x11,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x69,0xf9,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0x2d,0xf,0x70,0xaa,0x1a,0x0,0x0,0x7a,0xa0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x61,0x9e,0xf,0x85,0x7b,0xea,0x0,0x0,0x5a,0x88,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x11,0xee,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0x2f,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x60,0xa6,0xf,0xd3,0x41,0x72,0x0,0x0,0x38,0x80,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4b,0xf4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x4c,0x66,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4c,0x2d,0xf,0xd9,0x8f,0xca,0x0,0x0,0x4c,0x9f,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3a,0x9f,0xf,0xe2,0xe9,0x49,0x0,0x0,0x7b,0xc9,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5b,0x21,0xf,0xf5,0xeb,0x52,0x0,0x0,0x5b,0x63,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x5b,0xa5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x5b,0xe7,0x69,0x0,0x0,0x7e, + 0x75,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x40,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x28,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0, + 0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35, + 0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x41,0x0,0x62, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x62,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0, + 0x2d,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x73,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x44,0x0,0x65,0x0, + 0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x46,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x48,0x0,0x65,0x0,0x6c,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26, + 0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0, + 0x4b,0x0,0x65,0x0,0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62, + 0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x47,0x0,0x72,0x0,0x65,0x0,0x79,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x61,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f, + 0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x67,0x0,0x69,0x0, + 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x67,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x41, + 0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52, + 0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66, + 0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x53,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x53,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x78,0x0, + 0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4b,0x0,0x65,0x0,0x65,0x0, + 0x70,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x20,0x0,0x77,0x0,0x69,0x0, + 0x74,0x0,0x68,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x54,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x55,0x0, + 0x70,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x57,0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x77,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0, + 0x70,0x0,0x74,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x62, + 0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42, + 0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49, + 0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22, + 0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30, + 0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20, + 0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x49,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x58,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c,0x0,0x6f, + 0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x75,0x0, + 0x74,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x62,0x0,0x6f,0x0,0x75,0x0, + 0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0, + 0x64,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x64,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x65, + 0x0,0x77,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x64, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xc6,0x0,0x41,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xa, + 0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x73, + 0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61, + 0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47, + 0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64, + 0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79, + 0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x65, + 0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45, + 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f, + 0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, + 0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72, + 0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c, + 0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37, + 0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b, + 0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72, + 0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68, + 0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c, + 0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65, + 0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20, + 0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, + 0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75, + 0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e, + 0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e, + 0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29, + 0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65, + 0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75, + 0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74, + 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20, + 0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20, + 0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65, + 0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20, + 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65, + 0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63, + 0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f, + 0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43, + 0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e, + 0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79, + 0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0, + 0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0, + 0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x61,0x0, + 0x73,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x65,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x20, + 0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x2,0xe2,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79, + 0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x20, + 0x0,0x48,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79, + 0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x45,0x0,0x6e, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69, + 0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20, + 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69, + 0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20, + 0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63, + 0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74, + 0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20, + 0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79, + 0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65, + 0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62, + 0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61, + 0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74, + 0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63, + 0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0, + 0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e, + 0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e, + 0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x78,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x50,0x0,0x43,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44, + 0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20, + 0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x6f,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x6f,0x0,0x6e, + 0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x77,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x67,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0, + 0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x26, + 0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x45,0x0,0x26,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x78, + 0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72, + 0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x66,0x0,0x75,0x0, + 0x6c,0x0,0x6c,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x46,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74,0x0,0x68,0x0,0x20, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x46,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0, + 0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0, + 0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75, + 0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x74, + 0x0,0x68,0x0,0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x64,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x46,0x0,0x6c,0x0,0x6f, + 0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65, + 0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e, + 0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44, + 0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77, + 0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,0x0,0x65, + 0x0,0x61,0x0,0x64,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x48,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0, + 0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c, + 0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20, + 0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34, + 0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x4d,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0, + 0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x49,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0, + 0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x0, + 0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c, + 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0, + 0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xea,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77, + 0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xb6,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0,0x61, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x79,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x65, + 0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f, + 0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x65,0x0, + 0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x79,0x0, + 0x70,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0,0x66,0x0,0x66,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70, + 0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0, + 0x64,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5c,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x38, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x51,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x79, + 0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61, + 0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x26, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x26,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52, + 0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d, + 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61, + 0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x52,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x77,0x0,0x6c,0x0,0x79,0x0,0x2d,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x73,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0, + 0x65,0x0,0x73,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x65,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78, + 0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0, + 0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a, + 0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61, + 0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x61,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0, + 0x53,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x26,0x0, + 0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73, + 0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67, + 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f, + 0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72, + 0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x6c,0x0,0x6f,0x0,0x77,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x6c, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x6f,0x0,0x75, + 0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0, + 0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x47,0x0,0x61,0x0,0x69,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f, + 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c, + 0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20, + 0x0,0x4d,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61, + 0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0, + 0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53, + 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x2d,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x62,0x0,0x75,0x0, + 0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x36,0x0,0x2d,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36, + 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x38,0x0, + 0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x75, + 0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x54,0x0,0x61,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x26,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x74,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72, + 0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66, + 0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x61,0x0, + 0x72,0x0,0x79,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x54,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0, + 0x72,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x72,0x0, + 0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x54,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77, + 0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x1,0xe0,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x77,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x66,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x72,0x0, + 0x65,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x49,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x70,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0, + 0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x44,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x78,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x69,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0, + 0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x55,0x0,0x53, + 0x0,0x42,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74, + 0x0,0x20,0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x55,0x0,0x6e,0x0,0x61,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x55, + 0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44, + 0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x55,0x0, + 0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x6b,0x0,0x65,0x0, + 0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0, + 0x63,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20, + 0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67, + 0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x6e,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0,0x6e, + 0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55, + 0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x26,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf0, + 0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x57,0x0,0x65,0x0,0x6c,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f, + 0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x74,0x0, + 0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72, + 0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x66,0x0, + 0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65, + 0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x59,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x6f,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61, + 0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25, + 0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30, + 0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65, + 0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49, + 0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_de-DE.qm + 0x0,0x0,0x99,0x4b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x2a,0x83,0x0,0x0,0x0,0x48, + 0x0,0x0,0x4a,0xbf,0x0,0x0,0x0,0x53,0x0,0x0,0x6e,0x2e,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x94,0x0,0x0,0x4,0xf2,0x0,0x0,0x54,0x25,0x0,0x0,0x5,0x12, + 0x0,0x0,0x55,0xd4,0x0,0x0,0x5,0x3b,0x0,0x0,0x61,0x4,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x61,0x3d,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x2d,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x75,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xbd,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x5,0x32,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x7a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xc2,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0xa,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x28,0x0,0x0,0x49,0xc3,0x0,0x0,0x2a,0x44,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x50,0xe,0x0,0x0,0x4d,0x85,0x0,0x0,0x50,0x2c,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x61,0x1f,0x0,0x0,0x5d,0x81,0x0,0x0,0x89,0x7f,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x73,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xdb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x9e,0x0,0x4,0x8c,0xaf,0x0,0x0,0x28,0xcc,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x2a,0x62,0x0,0x4,0xa7,0x89,0x0,0x0,0x40,0xe7,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x45,0xe0,0x0,0x4,0xc8,0xa4,0x0,0x0,0x47,0x1f,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x44,0x7d,0x0,0x4,0xd0,0x25,0x0,0x0,0x47,0x82,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x4a,0x1f,0x0,0x5,0x56,0x45,0x0,0x0,0x60,0x9b,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6e,0x46,0x0,0x5,0x98,0xc5,0x0,0x0,0x6f,0x2a,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x72,0xf5,0x0,0x5,0xc0,0x65,0x0,0x0,0x80,0xd9,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0xe2,0x0,0x19,0x74,0x52,0x0,0x0,0x1b,0x23,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x9,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xcf,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0x11,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x3,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xe6,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x88,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x83,0xf7,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1b,0xb2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1e,0xd5,0x0,0x4c,0x99,0x62,0x0,0x0,0x43,0x52,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x39,0x35,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6d,0xc3,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x75,0xd9,0x0,0x5a,0x6c,0x44,0x0,0x0,0x73,0x72,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x80,0x79,0x0,0x5c,0x6,0x8a,0x0,0x0,0x80,0xf8,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x8c,0x1b,0x0,0x73,0x75,0x3e,0x0,0x0,0x37,0xd2,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x60,0x53,0x0,0x97,0x96,0x4,0x0,0x0,0x3a,0x8a,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x52,0x5b,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x53,0xf5,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4d,0x9a,0x0,0xb8,0x5f,0x43,0x0,0x0,0x63,0x17,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x1a,0xa1,0x1,0x9,0x1c,0x92,0x0,0x0,0x45,0x4e,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2d,0x26,0x1,0x39,0xa4,0xce,0x0,0x0,0x5c,0x8e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x80,0x9d,0x1,0x4c,0x50,0xee,0x0,0x0,0x6b,0x80,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4d,0x59,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0xac,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7e,0xf6,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3f,0x2f,0x1,0x91,0xe,0x73, + 0x0,0x0,0x2b,0x2b,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4f,0xc4,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x57,0x5b,0x1,0xb0,0x47,0x5c,0x0,0x0,0x55,0xef,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xf5,0x1,0xc8,0x65,0x8f,0x0,0x0,0x44,0xa4,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xd5,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x17,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x34,0x70,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6e,0xee,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x76,0x36,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x90,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x77,0xbf,0x2,0x23,0x3c,0x6b,0x0,0x0,0x77,0x5c,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x76,0xf9,0x2,0x3c,0xaa,0x89,0x0,0x0,0x18,0x3e,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4f,0x29,0x2,0x78,0x48,0x1a,0x0,0x0,0x57,0x1b,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x89,0xdf,0x2,0x90,0x8d,0x12,0x0,0x0,0x46,0x11,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x63,0xac,0x2,0xad,0x4a,0x22,0x0,0x0,0x6b,0xe1,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x5d,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xe8,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xdc,0x2,0xbb,0x66,0x33,0x0,0x0,0x13,0x0,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0xbf,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x63,0x58,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x8c,0x3f,0x3,0x5,0x38,0xb2,0x0,0x0,0x43,0x78,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x67,0x29,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0xac,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x9c,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0xc3,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x56,0x19,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0xc3,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0xea,0x3,0x6a,0x66,0x2e,0x0,0x0,0x5a,0x79,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x58,0x4c,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x4a,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x33,0x3d,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xaf,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1b,0x64,0x3,0xa4,0x35,0xa5,0x0,0x0,0x45,0xc0,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x45,0x92,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1b,0x8b,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5d,0xab,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x76,0x8d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x74,0xde,0x3,0xe4,0x25,0x5a,0x0,0x0,0x74,0xa2,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x74,0x66,0x3,0xe4,0x25,0x7a,0x0,0x0,0x74,0x2a,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x46,0x4,0x3,0xf6,0x9a,0x0,0x0,0x5a,0x18,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0x9d,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0xd3,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0xfd,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0xdc,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x8c,0x4,0x31,0xff,0xe9,0x0,0x0,0x28,0xed,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2b,0xff,0x4,0x51,0x79,0xb1,0x0,0x0,0x78,0xb3,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x82,0x14,0x4,0x5b,0x53,0x1f,0x0,0x0,0x27,0xc6,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x73,0xeb,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3f,0xf6,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x40,0x25,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x37,0x33,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x32,0x38,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3c,0x0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x47,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xf4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x19,0x61,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5f,0x16,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x35,0xe0,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0xff,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1f,0x75,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5f,0x42,0x4,0xeb,0x2f,0xa,0x0,0x0,0x55,0x1c,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4e,0xdc,0x5,0x18,0x5,0x95,0x0,0x0,0x84,0x83,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x17,0x59,0x5,0x30,0xd3,0xe,0x0,0x0,0x3e,0x64,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5e,0xf1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x8a,0xce,0x5,0x5f,0x7b,0x59,0x0,0x0,0x11,0x2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x40,0x7d,0x5,0x88,0x2e,0xd9,0x0,0x0,0x73,0x1c,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x58,0x74,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x80,0x28,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x79,0xbb,0x5,0xa5,0x3a,0x79,0x0,0x0,0x29,0x35,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x76,0x11,0x5,0xb2,0x16,0x79,0x0,0x0,0x6c,0x4e,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x4b,0xc4,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4d,0x12,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x42,0xed,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0xea,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x15,0x19,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x16,0x27,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4f,0x6e,0x5,0xc1,0x4d,0x83,0x0,0x0,0x3b,0x16,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x87,0xfb,0x5,0xd0,0x4f,0x11,0x0,0x0,0x88,0xa7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xb8,0x5,0xdf,0xba,0xba,0x0,0x0,0x88,0xf7,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x6a,0xec,0x6,0x7,0xd3,0xda,0x0,0x0,0x51,0x65,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x3a,0xbd,0x6,0x19,0x20,0x43,0x0,0x0,0x6f,0x55,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3e,0x20,0x6,0x38,0x9f,0x35,0x0,0x0,0x3b,0x9f,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x21,0xa,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xfb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x36,0x12,0x6,0x6c,0xb8,0x3,0x0,0x0,0x86,0x16,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4d,0xe1,0x6,0x74,0xe,0x6a,0x0,0x0,0x64,0x75,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4e,0x4e,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1f,0x41,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x41,0x91,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3d,0x17,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x75,0x1a,0x6,0x96,0xa4,0x13,0x0,0x0,0x48,0xcc,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6e,0xac,0x6,0xc3,0xce,0xa3,0x0,0x0,0x78,0x22,0x6,0xce,0x41,0x63, + 0x0,0x0,0x49,0x7a,0x6,0xed,0xca,0xce,0x0,0x0,0x4b,0x18,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x30,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0x4,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4e,0x16,0x7,0x0,0x57,0x53,0x0,0x0,0x2a,0x9b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x58,0x1c,0x7,0x6,0x93,0xe3,0x0,0x0,0x8b,0xb2,0x7,0x7,0xff,0x23, + 0x0,0x0,0x20,0xd5,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x4f,0x7,0x14,0x6,0x33, + 0x0,0x0,0x20,0x3a,0x7,0x2a,0xb5,0xca,0x0,0x0,0x72,0xc0,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5e,0x40,0x7,0x35,0x7c,0x8a,0x0,0x0,0x50,0xe5,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x66,0xb1,0x7,0x40,0xb5,0xe2,0x0,0x0,0x1a,0x66,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x35,0x5f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4e,0x81,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x13,0x2f,0x7,0x70,0xb3,0xaa,0x0,0x0,0x47,0xa5,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x32,0xa,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6d,0xf5,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x5a,0x4e,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6c,0xcd,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x61,0xa3,0x7,0xa4,0x32,0x89,0x0,0x0,0x1e,0xf9,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x85,0xcd,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x94,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xc4,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x29,0x71,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x68,0x98,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x68,0x47,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x41,0x8,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6e,0x67,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x50,0x8c,0x8,0x0,0x3f,0x29,0x0,0x0,0x67,0xbb,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5d,0xe3,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x72,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x55,0x98,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7f,0xad,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x64,0xa7,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xc9,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x81,0x1a,0x8,0x9b,0xc,0x24,0x0,0x0,0x70,0xe1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x53,0x5,0x8,0xa3,0xdb,0xae,0x0,0x0,0x53,0xb9,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x53,0x41,0x8,0xa4,0xb,0xae,0x0,0x0,0x53,0x7d,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3f,0x9b,0x8,0xa9,0xcf,0x35,0x0,0x0,0x33,0xc8,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x43,0xf4,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x61,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x42,0x3f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x49,0x31,0x9,0x9,0x24,0x29, + 0x0,0x0,0x55,0x4a,0x9,0x49,0xfa,0x4a,0x0,0x0,0x36,0xbb,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x36,0xf7,0x9,0x49,0xfa,0x6a,0x0,0x0,0x36,0x43,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x36,0x7f,0x9,0x4e,0xde,0x64,0x0,0x0,0x81,0x85,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5f,0xc1,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x4b,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x1a,0x11,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x93,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x69,0xab,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x50,0x9,0x88,0x63,0xa, + 0x0,0x0,0x32,0x65,0x9,0x88,0x63,0x1a,0x0,0x0,0x32,0x9b,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x32,0xd1,0x9,0x88,0x63,0x3a,0x0,0x0,0x33,0x7,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x98,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xeb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xe0,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5f,0x87,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x65,0xe3,0x9,0xc2,0x33,0xa9,0x0,0x0,0x17,0x83,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5e,0x98,0x9,0xd5,0x43,0xd3,0x0,0x0,0x38,0x77,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xcb,0xa,0xf,0x3d,0xb9,0x0,0x0,0x12,0x5,0xa,0x17,0x34,0x34, + 0x0,0x0,0x42,0x9c,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x2f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x48,0x7a,0xa,0x4e,0x21,0xe,0x0,0x0,0x1e,0x79,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x49,0xae,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x41,0xff,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x52,0xad,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x86,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x84,0xfe,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x70,0x1c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x78,0x6e,0xa,0x98,0x1f,0x89,0x0,0x0,0x39,0xb1,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x39,0x66,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x51,0xd1,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x38,0xff,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x1,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x39,0xfc,0xa,0xda,0x50,0x7e,0x0,0x0,0x82,0xe5,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x7a,0xa,0xea,0x46,0xf4,0x0,0x0,0x5f,0xf5,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x3a,0x28,0xb,0xa,0x72,0xc9,0x0,0x0,0x3c,0xed,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x78,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5b,0xcb,0xb,0x29,0x70,0x65, + 0x0,0x0,0x4a,0x4e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xbe,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xb2,0xb,0x4e,0x19,0x54,0x0,0x0,0x56,0x67,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xb8,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x43,0xb,0x95,0xed,0xa, + 0x0,0x0,0x57,0xe3,0xb,0x9d,0xe,0xa2,0x0,0x0,0x35,0x25,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1e,0x41,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6f,0xed,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x73,0xa0,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x27,0x25,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x4c,0xb,0xb,0xe2,0xf9,0x49,0x0,0x0,0x50,0x4a,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x8b,0x76,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x66,0xe7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x79,0x1d,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x31,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0x44,0xc,0x33,0xeb,0xe2,0x0,0x0,0x79,0x5f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x47,0xd8,0xc,0x42,0x70,0xde,0x0,0x0,0x2b,0x67,0xc,0x48,0x83,0xde, + 0x0,0x0,0x68,0xe7,0xc,0x4a,0x5f,0x82,0x0,0x0,0x52,0xd,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x7b,0x75,0xc,0x77,0x67,0x19,0x0,0x0,0x48,0x1a,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3d,0xd6,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xb4,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x33,0xf5,0xc,0x90,0x26,0xb5,0x0,0x0,0x83,0x85,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x64,0x6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x2a,0xe6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x72,0x93,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xa8,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x61,0x58,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x86,0x4a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x68,0xd,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0xd6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1f,0xe0,0xd,0x11,0x45,0x1a,0x0,0x0,0x2a,0xe,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x88,0x2c,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6c,0x9d,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x89,0x4a,0xd,0x60,0xef,0x6a,0x0,0x0,0x51,0x97,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x38,0xb3,0xd,0x77,0xa4,0xc0,0x0,0x0,0x46,0xab,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3c,0xb4,0xd,0x88,0x48,0x23,0x0,0x0,0x33,0x85,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x40,0x4a,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x9a,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x8a,0x21,0xd,0xf9,0x90,0xe9,0x0,0x0,0x60,0xbc,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x89,0x20,0xe,0x20,0x13,0x12,0x0,0x0,0x47,0x46,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x99,0xe,0x48,0xfa,0xca,0x0,0x0,0x2c,0x4a,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2c,0xb8,0xe,0x48,0xfd,0xca,0x0,0x0,0x2c,0x81,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2c,0xef,0xe,0x62,0x79,0x4,0x0,0x0,0x3d,0x9d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x20,0x9f,0xe,0x7b,0xa1,0x23,0x0,0x0,0x57,0x9e,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x34,0xfc,0xe,0x98,0x18,0x54,0x0,0x0,0x29,0xbb,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x6a,0x70,0xe,0xbe,0x61,0x81,0x0,0x0,0x71,0x4b,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x71,0x9d,0xe,0xbe,0x61,0x83,0x0,0x0,0x71,0xef,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x72,0x41,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4f,0x3,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0xf1,0xe,0xe2,0x34,0x60,0x0,0x0,0x8b,0x22,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x8b,0x4c,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x4f,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xe8,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x92,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x8b,0xe5,0xf,0x15,0xf4,0x85,0x0,0x0,0x51,0x22,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x7a,0x87,0xf,0x17,0x9c,0x64,0x0,0x0,0x85,0x71,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x62,0xda,0xf,0x29,0x4d,0x2a,0x0,0x0,0x4a,0xd7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x45,0xf,0xf,0x30,0x6b,0x3,0x0,0x0,0x34,0x37,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x75,0x7b,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x73,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0x51,0xf,0x70,0xaa,0x1a,0x0,0x0,0x88,0x6a,0xf,0x74,0xd,0xca, + 0x0,0x0,0x6c,0x14,0xf,0x85,0x7b,0xea,0x0,0x0,0x64,0x3e,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x14,0x10,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x77,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x6b,0x22,0xf,0xd3,0x41,0x72,0x0,0x0,0x3e,0xdc,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x54,0x40,0xf,0xd9,0x8c,0xca,0x0,0x0,0x54,0xae,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x54,0x77,0xf,0xd9,0x8f,0xca,0x0,0x0,0x54,0xe5,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x41,0x4d,0xf,0xe2,0xe9,0x49,0x0,0x0,0x89,0x9d,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x64,0xe3,0xf,0xf5,0xeb,0x52,0x0,0x0,0x65,0x23,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x65,0x63,0xf,0xf5,0xeb,0x54,0x0,0x0,0x65,0xa3,0x69,0x0,0x0,0x8c, + 0x69,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x8e,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x44,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2d, + 0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x62, + 0x0,0x65,0x0,0x6e,0x0,0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x53,0x0,0xe4,0x0,0x6d,0x0,0x74,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x2d,0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x63,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2d, + 0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x57,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0xe4,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25, + 0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20, + 0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x30,0x0,0x2c,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3e,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x2d,0x0,0x53,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0, + 0xe4,0x0,0x6c,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0, + 0x72,0x0,0x7a,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0xdc, + 0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x41, + 0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x42,0x0,0x65, + 0x0,0x72,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2d, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x38,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x50,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0, + 0x20,0x0,0x46,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f, + 0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x44,0x0,0x75,0x0,0x72,0x0, + 0x63,0x0,0x68,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x73,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x66,0x0,0x9,0x0,0x53,0x0,0x74, + 0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x42,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x26,0x0,0x56,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x41,0x0,0x6e, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x70,0x0,0x75, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x26,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x64,0x0,0x2d,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x26,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x64,0x0,0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x42,0x0,0x69,0x0,0x6c,0x0,0x64,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0xfc,0x0,0x6e,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72, + 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x2d,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72, + 0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x6c,0x0,0x66,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x53,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6c,0x0,0x65,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64, + 0x0,0x67,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x2d,0x0,0x53,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x49,0x0, + 0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x41,0x0, + 0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x60,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0, + 0xf6,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x61,0x0,0x6e,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0, + 0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26, + 0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65, + 0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e, + 0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x75,0x0, + 0x6d,0x0,0x6d,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x4e,0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x75, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x41,0x0,0x62,0x0, + 0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x45,0x0,0x69,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x2d,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x66,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26, + 0x0,0x41,0x0,0x75,0x0,0x66,0x0,0x6e,0x0,0x65,0x0,0x68,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26, + 0x0,0x56,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x75,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20, + 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x45,0x0,0x6e,0x0, + 0x74,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x68,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0, + 0x41,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x41,0x0, + 0x6e,0x0,0x66,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x7a,0x0,0x75,0x0, + 0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x70,0x0,0x75,0x0,0x6c,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65, + 0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69, + 0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c, + 0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67, + 0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c, + 0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c, + 0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x26,0x0,0x51,0x0, + 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0xe4,0x0,0x6c,0x0,0x74,0x0, + 0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x62,0x0, + 0x65,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x26,0x0,0x4d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x56,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x61,0x0,0x62,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x57,0x0,0x65,0x0,0x72,0x0,0x6b, + 0x0,0x7a,0x0,0x65,0x0,0x75,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x75,0x0,0x73,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e, + 0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x57,0x0,0x65,0x0,0x69,0x0,0xdf, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x66,0x0, + 0x61,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0,0x6c,0x0,0x65,0x0,0x65,0x0, + 0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x31,0x0,0x25,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x68,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x7a,0x0, + 0x61,0x0,0x68,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31, + 0x0,0x2c,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x31,0x0, + 0x2c,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0, + 0x7a,0x0,0x61,0x0,0x68,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66, + 0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31, + 0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46, + 0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x62,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x7a, + 0x0,0x61,0x0,0x68,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x32,0x0,0x2c,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x33,0x0,0x2c,0x0,0x35,0x0, + 0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x31,0x0,0x2c,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c, + 0x0,0x6c,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49, + 0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f, + 0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x32,0x0,0x2c,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x2d,0x0, + 0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33, + 0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0, + 0x20,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0, + 0x2d,0x0,0x53,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2c, + 0x0,0x32,0x0,0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35,0x0, + 0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x31,0x0,0x2c,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35, + 0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x36,0x0,0x30, + 0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x35,0x0,0x2c,0x0,0x32,0x0, + 0x35,0x0,0x2d,0x0,0x5a,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xaa,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x44, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x73,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c, + 0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x53, + 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2d,0x0,0x56, + 0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x6e, + 0x0,0x69,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac, + 0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, + 0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e, + 0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73, + 0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69, + 0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73, + 0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x2d,0x0,0x62,0x0,0x61,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x48,0x0, + 0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x61,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0xdc,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x42,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0, + 0x75,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x65,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x75, + 0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x63, + 0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x4,0x22, + 0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x3a, + 0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47, + 0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47, + 0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31, + 0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c, + 0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b, + 0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69, + 0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f, + 0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20, + 0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74, + 0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x77, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0xdc,0x0,0x62,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x6e,0x0,0x3a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x62,0x0,0x32,0x0,0x30, + 0x0,0x35,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x66, + 0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20, + 0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x20, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x75, + 0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x68, + 0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x68,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x53,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb8,0x0,0x53,0x0,0x69, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2d, + 0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64, + 0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x66,0x0,0xfc,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77, + 0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65, + 0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x61,0x0,0x73,0x0,0x69,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x67, + 0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x4c,0x0,0x61,0x0,0x75, + 0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72, + 0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4, + 0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x2d,0x0, + 0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x5e,0x0,0x44,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,0x0,0x77, + 0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6b, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x6d,0x0,0xf6,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20, + 0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,0x0,0x77,0x0,0xe4,0x0,0x68, + 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x6b, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x41, + 0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc, + 0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x73,0x0,0xe4,0x0,0x6d,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x6e, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20, + 0x0,0x22,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64, + 0x0,0x22,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6c, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65, + 0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c, + 0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20, + 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61, + 0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20, + 0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73, + 0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77, + 0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65, + 0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69, + 0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c, + 0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa, + 0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66, + 0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65, + 0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20, + 0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41, + 0x0,0x62,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x74,0x0, + 0x65,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x63,0x0, + 0x6b,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x74,0x0,0x65,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0, + 0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x61,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x20,0x0,0xe4,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27, + 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, + 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42,0x0,0x50,0x0, + 0x42,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x70,0x0,0x72,0x0, + 0xfc,0x0,0x66,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x56,0x0,0x5a,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x45,0x0, + 0x69,0x0,0x6e,0x0,0x66,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x75,0x0, + 0x73,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x73,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0, + 0x6c,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x66,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x44,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56, + 0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x44,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74, + 0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74, + 0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x6e,0x0,0x67,0x0, + 0x65,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x70,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x79,0x0, + 0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d, + 0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20, + 0x0,0x43,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63, + 0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0, + 0x28,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x20,0x0,0x43,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65, + 0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x44, + 0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x7a, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x44,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2d,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x44,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x74, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65, + 0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x38,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0, + 0x7a,0x0,0x75,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0xdf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x6e, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0xdf, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69, + 0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x41,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4d,0x0, + 0xf6,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x45,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0, + 0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x62,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62,0x0,0x65, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x44,0x0,0x69,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x72, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x68,0x0,0x72,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20, + 0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x47,0x0, + 0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0, + 0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44, + 0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20, + 0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x45,0x0,0x69,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x26, + 0x0,0x75,0x0,0x73,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x26,0x0, + 0x65,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x42,0x0,0x65,0x0,0x26,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2d,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x26,0x0,0x78,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x46,0x0,0x72,0x0,0xfc,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0, + 0x65,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x49,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69, + 0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4c,0x0,0x6f,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x68,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61, + 0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x64,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x46,0x0,0x65,0x0,0x68,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x46, + 0x0,0x65,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x52,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x42,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0xfc,0x0,0x74,0x0,0x7a, + 0x0,0x74,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x42,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x0,0x2d,0x0,0x53,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x68,0x0,0xe4,0x0,0x6c,0x0,0x74,0x0,0x6e, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x77,0x0,0x69, + 0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x44,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x46,0x0,0x4d,0x0,0x2d,0x0,0x53,0x0,0x79,0x0,0x6e, + 0x0,0x74,0x0,0x68,0x0,0x2d,0x0,0x54,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x62, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x45, + 0x0,0x69,0x0,0x6e,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x7a,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x69,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0, + 0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73, + 0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x65, + 0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x46, + 0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d, + 0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x66,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x4c,0x0,0x61,0x0,0x75, + 0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6c,0x0,0x61,0x0,0x75,0x0, + 0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2d,0x0,0x4d,0x0,0x6f, + 0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x56, + 0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74, + 0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0, + 0xe4,0x0,0x72,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x42,0x0,0x4d,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x66,0x0,0x65, + 0x0,0x6e,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x48,0x0, + 0x44,0x0,0x44,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xf6, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x48,0x0,0x44,0x0,0x49, + 0x0,0x2d,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xac,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x20,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x74,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x72,0x0, + 0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6b,0x0,0x42,0x0,0x20,0x0,0x77,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x74,0x0,0xfc,0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20, + 0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e, + 0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0, + 0x67,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0xf6,0x0,0x70,0x0,0x66,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0xf6,0x0,0x68,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69, + 0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x2d,0x0,0x53,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50, + 0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x57,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x7a, + 0x0,0x65,0x0,0x75,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x42,0x0,0x4d, + 0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x2d, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x2d,0x0,0x53,0x0,0x70,0x0,0x65, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x77, + 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x67, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x2d,0x0,0x45,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x7a,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x75,0x0,0x68,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42, + 0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x2d,0x0,0x47,0x0,0x65, + 0x0,0x72,0x0,0xe4,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x49,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x2d,0x0,0x53,0x0,0x61,0x0,0x74,0x0,0x7a,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x67,0x0, + 0x61,0x0,0x62,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x55,0x0,0x6e,0x0,0x67,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x69,0x0, + 0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x55,0x0,0x6e,0x0,0x67,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0, + 0x69,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x2d, + 0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x32,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0, + 0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x2d,0x0,0x47, + 0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67, + 0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0x6f,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x6c, + 0x0,0xf6,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0xf6, + 0x0,0xdf,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x2d,0x0,0x20,0x0, + 0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x2d,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0, + 0x73,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x62,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0, + 0x74,0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0, + 0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x1a,0x0,0x44,0x0,0x61,0x0,0x73, + 0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x67,0x0,0x72,0x0,0x75, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x66, + 0x0,0x65,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x62, + 0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66, + 0x0,0xfc,0x0,0x67,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65, + 0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe2,0x0, + 0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x75,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x4e,0x0, + 0x65,0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x84,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x69,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0, + 0x6c,0x0,0x65,0x0,0x73,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xce,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x62,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x74, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x48,0x0,0x61,0x0,0x75,0x0,0x70,0x0,0x74,0x0,0x73,0x0,0x70,0x0, + 0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x62,0x0,0x79,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x45, + 0x0,0x6d,0x0,0x70,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x65, + 0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x7a, + 0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65, + 0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0, + 0x65,0x0,0x74,0x0,0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x74,0x0, + 0x79,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x65,0x0,0x75,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4b,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0,0x65,0x0,0x69,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0, + 0x67,0x0,0x65,0x0,0x66,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x4f,0x0,0x68,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x41,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x41,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x2d,0x0,0x4b,0x0,0x65,0x0,0x72,0x0,0x6e, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xd8,0x0,0x44,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x2d,0x0,0x4b,0x0,0x65,0x0,0x72,0x0, + 0x6e,0x0,0x29,0x0,0x2d,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0, + 0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x42,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0, + 0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20, + 0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x53, + 0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x4f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x67,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69, + 0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x41,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x57,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0xdc,0x0,0x62, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x62,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x47, + 0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x2d,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0, + 0x4f,0x0,0x53,0x0,0x54,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x64,0x0,0x65,0x0, + 0x2d,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x44,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x45,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x2d,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x4b,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50, + 0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20, + 0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x44,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x7a,0x0,0x61,0x0,0x68,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x44,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x41,0x0,0x6e,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0xfc,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0, + 0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x45,0x0,0x6e,0x0,0x74,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0, + 0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53, + 0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63, + 0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x80,0x0,0x42,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x72,0x0, + 0x67,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x42,0x0,0x69,0x0, + 0x6c,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x20,0x0,0x7a,0x0,0x75,0x0, + 0x72,0x0,0x20,0x0,0x52,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0, + 0x68,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x82,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x61,0x0, + 0x62,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0, + 0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65, + 0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64, + 0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x0,0x7a,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x4d,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x72,0x0,0xfc,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20, + 0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x68, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0xe4,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0xf6,0x0,0xdf, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x26,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x2d,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x44,0x0,0x72,0x0,0x65, + 0x0,0x68,0x0,0x7a,0x0,0x61,0x0,0x68,0x0,0x6c,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x6f,0x0,0x68,0x0,0x64,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52, + 0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa8,0x0,0x42,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x75,0x0, + 0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a,0x0,0x75,0x0,0x72,0x0, + 0xfc,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x45,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x20,0x0, + 0x26,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20, + 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x7e,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x41,0x0,0x72, + 0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x75,0x0,0x73,0x0,0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x45,0x0,0x6c,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x6e,0x0,0x2d,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2d,0x0,0x44,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x77,0x0,0xe4,0x0, + 0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x63,0x0,0x68,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4f,0x0,0x70,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0x61,0x0, + 0x6e,0x0,0x67,0x0,0x73,0x0,0x61,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x4b,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x42,0x0,0x6c,0x0,0xf6,0x0,0x63,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x75,0x0,0x6c,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x6e, + 0x0,0x67,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x72, + 0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67, + 0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x72,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f, + 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x67, + 0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x46,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x67,0x0,0x72,0x0,0xf6,0x0,0xdf,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x47,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x77,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x69,0x0,0x67,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x6b,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x2d,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31, + 0x0,0x2d,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0xe4,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x34,0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x36,0x0,0x2d,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x38,0x0,0x2d,0x0,0x54,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x6c, + 0x0,0xe4,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x26,0x0,0x63,0x0, + 0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x6e,0x0,0x65,0x0,0x68,0x0,0x6d,0x0, + 0x65,0x0,0x6e,0x0,0x9,0x0,0x53,0x0,0x74,0x0,0x72,0x0,0x67,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x5a,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x26,0x0,0x66,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0xe4,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x2d,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54, + 0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x7a,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0, + 0x7a,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x4e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x69,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x67,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x92,0x0,0x44,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x67,0x0,0x65,0x0, + 0x77,0x0,0xe4,0x0,0x68,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x44,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0, + 0x64,0x0,0x20,0x0,0xfc,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0, + 0x68,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0, + 0x20,0x0,0x4d,0x0,0xf6,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0, + 0x20,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x7c,0x0,0x44,0x0,0x69,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x75,0x0, + 0x74,0x0,0x65,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x6c,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x45,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x75,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x75,0x0, + 0x67,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0,0x64,0x0,0x65,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0, + 0x68,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2d,0x0,0x44,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6f,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x75,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x62,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x63,0x0,0x68,0x0, + 0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x42,0x0, + 0x75,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0, + 0x77,0x0,0x65,0x0,0x6c,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x2c,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4d,0x0,0xf6,0x0,0x63,0x0,0x68,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x5a,0x0,0x65,0x0,0x69,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e, + 0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66, + 0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49, + 0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65, + 0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20, + 0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79, + 0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72, + 0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69, + 0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x44,0x0,0x69, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x52,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0xfc,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x5a, + 0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68, + 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x75,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x0,0x2d,0x0, + 0x54,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d, + 0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x54,0x0,0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54, + 0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54, + 0x0,0x79,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc,0x0,0x74,0x0,0x7a,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x47,0x0,0x68,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0, + 0x74,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0xf6, + 0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x54,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x65,0x0, + 0x73,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x44,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x52,0x0, + 0x6f,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x61,0x0,0x62,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73, + 0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x44,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x73,0x0,0x63,0x0, + 0x68,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x77,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77, + 0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x48,0x0,0x4e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc, + 0x0,0x74,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0, + 0x54,0x0,0x33,0x0,0x32,0x0,0x2d,0x0,0x57,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54, + 0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x26,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x42,0x0, + 0x69,0x0,0x6c,0x0,0x64,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x72,0x0, + 0x6d,0x0,0x74,0x0,0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x2d,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x24, + 0x0,0x44,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0x65, + 0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x20, + 0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xfc,0x0,0x67,0x0,0x62, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69, + 0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69, + 0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52, + 0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f, + 0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x2d, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x57,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x75,0x0,0x73, + 0x0,0x74,0x0,0xe4,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x57,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x42,0x0, + 0x72,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63, + 0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69, + 0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47, + 0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0, + 0x28,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x53,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x65,0x0, + 0x72,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x74,0x0,0xfc,0x0, + 0x74,0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x2d,0x0,0x4c,0x0,0x61,0x0,0x75,0x0,0x66,0x0,0x77,0x0,0x65, + 0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_zh-CN.qm + 0x0,0x0,0x70,0x5, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x21,0x55,0x0,0x0,0x0,0x48, + 0x0,0x0,0x36,0xdf,0x0,0x0,0x0,0x53,0x0,0x0,0x4f,0x94,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0x80,0x0,0x0,0x4,0xf2,0x0,0x0,0x3d,0xd3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x3f,0x40,0x0,0x0,0x5,0x3b,0x0,0x0,0x46,0xbc,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x46,0xf1,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x1f,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x73,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xc7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x12,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x66,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xba,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xe,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x32,0x0,0x0,0x49,0xc3,0x0,0x0,0x21,0x1a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3a,0xa6,0x0,0x0,0x4d,0x85,0x0,0x0,0x3a,0xc4,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x46,0xd7,0x0,0x0,0x5d,0x81,0x0,0x0,0x60,0xad,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0x85,0x0,0x2,0x97,0xd3,0x0,0x0,0x3,0xeb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0xf,0x70,0x0,0x4,0x8c,0xaf,0x0,0x0,0x1f,0xd4,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x21,0x36,0x0,0x4,0xa7,0x89,0x0,0x0,0x2f,0xf9,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x33,0xaa,0x0,0x4,0xc8,0xa4,0x0,0x0,0x34,0x67,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x32,0x83,0x0,0x4,0xd0,0x25,0x0,0x0,0x34,0xaa,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x36,0x7f,0x0,0x5,0x56,0x45,0x0,0x0,0x46,0x61,0x0,0x5,0x78,0x79, + 0x0,0x0,0x4f,0xac,0x0,0x5,0x98,0xc5,0x0,0x0,0x50,0x90,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x52,0xcd,0x0,0x5,0xc0,0x65,0x0,0x0,0x5b,0x3d,0x0,0x12,0x74,0x52, + 0x0,0x0,0x15,0xb4,0x0,0x19,0x74,0x52,0x0,0x0,0x15,0xf1,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x2,0xf5,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0xb,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xa,0xa5,0x0,0x2b,0x72,0x89,0x0,0x0,0xb,0x81,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0xf,0xc2,0x0,0x34,0x9,0xc8,0x0,0x0,0x10,0xee,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x5c,0xfd,0x0,0x3b,0xa9,0x68,0x0,0x0,0x16,0x7c,0x0,0x46,0x86,0x49, + 0x0,0x0,0x18,0x99,0x0,0x4c,0x99,0x62,0x0,0x0,0x31,0xc4,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2a,0xe5,0x0,0x58,0xc9,0xc4,0x0,0x0,0x4f,0x49,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x54,0xd3,0x0,0x5a,0x6c,0x44,0x0,0x0,0x53,0x28,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x5a,0xf5,0x0,0x5c,0x6,0x8a,0x0,0x0,0x5b,0x5a,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x62,0xd5,0x0,0x73,0x75,0x3e,0x0,0x0,0x29,0xe8,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x46,0x31,0x0,0x97,0x96,0x4,0x0,0x0,0x2b,0xf4,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x3c,0x77,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x3d,0xad,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x38,0xd0,0x0,0xb8,0x5f,0x43,0x0,0x0,0x48,0x33,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x15,0x77,0x1,0x9,0x1c,0x92,0x0,0x0,0x33,0x1a,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x23,0x92,0x1,0x39,0xa4,0xce,0x0,0x0,0x43,0xd2,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x5b,0x13,0x1,0x4c,0x50,0xee,0x0,0x0,0x4d,0xc0,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x38,0x9f,0x1,0x61,0xac,0xc9,0x0,0x0,0x10,0x5e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x59,0xf4,0x1,0x7a,0x2c,0x99,0x0,0x0,0x2e,0x99,0x1,0x91,0xe,0x73, + 0x0,0x0,0x21,0xdf,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3a,0x58,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x40,0x85,0x1,0xb0,0x47,0x5c,0x0,0x0,0x3f,0x5b,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x31,0x1,0xc8,0x65,0x8f,0x0,0x0,0x32,0xa0,0x1,0xd3,0x9,0x82, + 0x0,0x0,0x9,0xcb,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0x17,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x27,0xc4,0x1,0xe6,0x0,0xe9,0x0,0x0,0x50,0x4e,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x55,0x12,0x2,0x14,0x18,0x2e,0x0,0x0,0x8,0xd4,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x56,0x13,0x2,0x23,0x3c,0x6b,0x0,0x0,0x55,0xd2,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x55,0x91,0x2,0x3c,0xaa,0x89,0x0,0x0,0x13,0x3e,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x39,0xe9,0x2,0x78,0x48,0x1a,0x0,0x0,0x40,0x4d,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x61,0xd,0x2,0x90,0x8d,0x12,0x0,0x0,0x33,0xdb,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x48,0x9a,0x2,0xad,0x4a,0x22,0x0,0x0,0x4e,0x9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x7,0xd9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xa,0x7e,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0x5a,0x2,0xbb,0x66,0x33,0x0,0x0,0xf,0x6,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0xf,0x97,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x48,0x68,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x62,0xf9,0x3,0x5,0x38,0xb2,0x0,0x0,0x31,0xe2,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x4a,0xf1,0x3,0x41,0x45,0x12,0x0,0x0,0x11,0x18,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x11,0xd6,0x3,0x4b,0x26,0xf2,0x0,0x0,0x11,0xfd,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x3f,0x85,0x3,0x65,0x26,0xf2,0x0,0x0,0x14,0xb3,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x14,0xda,0x3,0x6a,0x66,0x2e,0x0,0x0,0x42,0xc1,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x41,0x5a,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0x68,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x26,0xe3,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0x9b,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x16,0x2e,0x3,0xa4,0x35,0xa5,0x0,0x0,0x33,0x8a,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x33,0x4e,0x3,0xa5,0x26,0xf2,0x0,0x0,0x16,0x55,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x44,0x3f,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x55,0x4d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x54,0x2a,0x3,0xe4,0x25,0x5a,0x0,0x0,0x53,0xfe,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x53,0xd2,0x3,0xe4,0x25,0x7a,0x0,0x0,0x53,0xa6,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x56,0x4,0x3,0xf6,0x9a,0x0,0x0,0x42,0x72,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x13,0x99,0x4,0x15,0x75,0x22,0x0,0x0,0x11,0x3f,0x4,0x17,0x65,0x22, + 0x0,0x0,0x11,0x69,0x4,0x1c,0x68,0x69,0x0,0x0,0x12,0xe0,0x4,0x23,0x29,0x55, + 0x0,0x0,0x9,0x98,0x4,0x31,0xff,0xe9,0x0,0x0,0x1f,0xf1,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x22,0x83,0x4,0x51,0x79,0xb1,0x0,0x0,0x56,0xb1,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x5c,0xe,0x4,0x5b,0x53,0x1f,0x0,0x0,0x1f,0x70,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x53,0x7f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x2f,0x2e,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x2f,0x55,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x29,0x9d,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x26,0x24,0x4,0xb8,0x1,0x2e,0x0,0x0,0x2c,0xc4,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xa,0xcb,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2a,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x14,0x55,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x45,0x4e,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x28,0xa2,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x13,0xf7,0x4,0xe6,0xae,0xdb,0x0,0x0,0x19,0x35,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x45,0x6e,0x4,0xeb,0x2f,0xa,0x0,0x0,0x3e,0xb2,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x39,0xa0,0x5,0x18,0x5,0x95,0x0,0x0,0x5d,0x41,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x12,0x61,0x5,0x30,0xd3,0xe,0x0,0x0,0x2e,0x24,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x45,0x2d,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x61,0x9c,0x5,0x5f,0x7b,0x59,0x0,0x0,0xd,0xb0,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x2f,0xb1,0x5,0x88,0x2e,0xd9,0x0,0x0,0x52,0xe8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x41,0x7a,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x5a,0xc4,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x57,0x73,0x5,0xa5,0x3a,0x79,0x0,0x0,0x20,0x3f,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x54,0xf1,0x5,0xb2,0x16,0x79,0x0,0x0,0x4e,0x72,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x37,0x8a,0x5,0xb3,0x5f,0x79,0x0,0x0,0x38,0x60,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x31,0x87,0x5,0xb8,0x5d,0xad,0x0,0x0,0x12,0x24,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x10,0xb1,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x11,0x93,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3a,0x24,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2c,0x4a,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x5f,0x55,0x5,0xd0,0x4f,0x11,0x0,0x0,0x5f,0xed,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xc,0xdc,0x5,0xdf,0xba,0xba,0x0,0x0,0x60,0x29,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x4d,0x5a,0x6,0x7,0xd3,0xda,0x0,0x0,0x3b,0xc9,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2c,0x15,0x6,0x19,0x20,0x43,0x0,0x0,0x50,0xad,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x2d,0xfe,0x6,0x38,0x9f,0x35,0x0,0x0,0x2c,0x8f,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1a,0x24,0x6,0x51,0xe6,0x13,0x0,0x0,0x5,0xfb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x28,0xc4,0x6,0x6c,0xb8,0x3,0x0,0x0,0x5e,0x36,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x38,0xfd,0x6,0x74,0xe,0x6a,0x0,0x0,0x49,0x27,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x39,0x46,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x19,0x5,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x30,0x8d,0x6,0x81,0xb7,0x1f,0x0,0x0,0x2d,0x6b,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x54,0x56,0x6,0x96,0xa4,0x13,0x0,0x0,0x35,0xa6,0x6,0x97,0x71,0x79, + 0x0,0x0,0x50,0x12,0x6,0xc3,0xce,0xa3,0x0,0x0,0x56,0x54,0x6,0xce,0x41,0x63, + 0x0,0x0,0x36,0x10,0x6,0xed,0xca,0xce,0x0,0x0,0x37,0x26,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x6,0xe6,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0x9a,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x39,0x20,0x7,0x0,0x57,0x53,0x0,0x0,0x21,0x6d,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x41,0x32,0x7,0x6,0x93,0xe3,0x0,0x0,0x62,0x74,0x7,0x7,0xff,0x23, + 0x0,0x0,0x19,0xfd,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x43,0x7,0x14,0x6,0x33, + 0x0,0x0,0x19,0xa0,0x7,0x2a,0xb5,0xca,0x0,0x0,0x52,0x9e,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x44,0xbe,0x7,0x35,0x7c,0x8a,0x0,0x0,0x3b,0x5d,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x4a,0x91,0x7,0x40,0xb5,0xe2,0x0,0x0,0x15,0x40,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x28,0x67,0x7,0x58,0x61,0xe5,0x0,0x0,0x39,0x6b,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0xf,0x2d,0x7,0x70,0xb3,0xaa,0x0,0x0,0x34,0xc7,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x25,0xf8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x4f,0x67,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x42,0x9e,0x7,0xa3,0x63,0x9e,0x0,0x0,0x4e,0xd9,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x47,0x57,0x7,0xa4,0x32,0x89,0x0,0x0,0x18,0xbd,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x5d,0xf9,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xa6,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x1,0xd6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x20,0x81,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x4b,0xe8,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x4b,0xa3,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x30,0x1a,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x4f,0xcd,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3b,0x24,0x8,0x0,0x3f,0x29,0x0,0x0,0x4b,0x3b,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x44,0x61,0x8,0x31,0xf7,0xee,0x0,0x0,0xa,0xf4,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x3f,0x10,0x8,0x60,0xe7,0xcd,0x0,0x0,0x5a,0x49,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x49,0x53,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0x63,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x5b,0x7a,0x8,0x9b,0xc,0x24,0x0,0x0,0x51,0x97,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x3c,0xe5,0x8,0xa3,0xdb,0xae,0x0,0x0,0x3d,0x7b,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x3d,0x17,0x8,0xa4,0xb,0xae,0x0,0x0,0x3d,0x49,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x2e,0xe3,0x8,0xa9,0xcf,0x35,0x0,0x0,0x27,0x4a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x32,0x24,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x37,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x31,0x11,0x8,0xf7,0xb3,0xda,0x0,0x0,0x35,0xe1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x3e,0xd6,0x9,0x49,0xfa,0x4a,0x0,0x0,0x29,0x41,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x29,0x6f,0x9,0x49,0xfa,0x6a,0x0,0x0,0x28,0xe5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x29,0x13,0x9,0x4e,0xde,0x64,0x0,0x0,0x5b,0xb7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x45,0xcb,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x43,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0x1,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0x97,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x4c,0xa3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x36,0x9,0x88,0x63,0xa, + 0x0,0x0,0x26,0x43,0x9,0x88,0x63,0x1a,0x0,0x0,0x26,0x6b,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x26,0x93,0x9,0x88,0x63,0x3a,0x0,0x0,0x26,0xbb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0x8a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x45,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x4,0xde,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x45,0x9f,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x4a,0x37,0x9,0xc2,0x33,0xa9,0x0,0x0,0x12,0x8b,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x44,0xfa,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2a,0x3b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xe,0x5d,0xa,0xf,0x3d,0xb9,0x0,0x0,0xe,0x8f,0xa,0x17,0x34,0x34, + 0x0,0x0,0x31,0x4c,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x13,0xa,0x41,0x77,0x3, + 0x0,0x0,0x35,0x60,0xa,0x4e,0x21,0xe,0x0,0x0,0x18,0x69,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x36,0x3e,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x30,0xdf,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x3c,0xb3,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0x98,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x5d,0x76,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x51,0x34,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x56,0x86,0xa,0x98,0x1f,0x89,0x0,0x0,0x2b,0x4f,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2b,0x10,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x3c,0x1b,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2a,0xbb,0xa,0xbc,0x8a,0x94,0x0,0x0,0x6,0xbd,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2b,0x8e,0xa,0xda,0x50,0x7e,0x0,0x0,0x5c,0x7b,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xd,0x56,0xa,0xea,0x46,0xf4,0x0,0x0,0x45,0xf1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2b,0xae,0xb,0xa,0x72,0xc9,0x0,0x0,0x2d,0x4b,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x1e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x43,0x77,0xb,0x29,0x70,0x65, + 0x0,0x0,0x36,0x9c,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0x56,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0x2c,0xb,0x4e,0x19,0x54,0x0,0x0,0x3f,0xd3,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0x16,0xb,0x8c,0x46,0xe5,0x0,0x0,0xc,0x7f,0xb,0x95,0xed,0xa, + 0x0,0x0,0x41,0x5,0xb,0x9d,0xe,0xa2,0x0,0x0,0x28,0x3d,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x18,0x3f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x51,0xb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x53,0x46,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x1f,0x1b,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x37,0xc9,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3a,0xe2,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x62,0x44,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x4a,0xbd,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x56,0xfd,0xc,0x20,0xc4,0xde,0x0,0x0,0xb,0xa7,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xd,0xec,0xc,0x33,0xeb,0xe2,0x0,0x0,0x57,0x33,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x34,0xee,0xc,0x42,0x70,0xde,0x0,0x0,0x22,0x9,0xc,0x48,0x83,0xde, + 0x0,0x0,0x4c,0x2d,0xc,0x4a,0x5f,0x82,0x0,0x0,0x3c,0x45,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x58,0x65,0xc,0x77,0x67,0x19,0x0,0x0,0x35,0x18,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x2d,0xd4,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xc0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x27,0x6b,0xc,0x90,0x26,0xb5,0x0,0x0,0x5c,0xc9,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x48,0xd4,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x21,0xb0,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x52,0x7d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0x60,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x47,0xa,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x5e,0x60,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x4b,0x7d,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x16,0xa0,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x19,0x70,0xd,0x11,0x45,0x1a,0x0,0x0,0x20,0xf2,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x5f,0x76,0xd,0x4a,0x90,0xb2,0x0,0x0,0x4e,0xad,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x60,0x74,0xd,0x60,0xef,0x6a,0x0,0x0,0x3b,0xef,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2a,0x7d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x34,0x29,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x2d,0x22,0xd,0x88,0x48,0x23,0x0,0x0,0x27,0x1d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x2f,0x82,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xc,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x61,0x41,0xd,0xf9,0x90,0xe9,0x0,0x0,0x46,0x7c,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x60,0x4a,0xe,0x20,0x13,0x12,0x0,0x0,0x34,0x82,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xe,0xcf,0xe,0x48,0xfa,0xca,0x0,0x0,0x22,0xce,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x23,0x30,0xe,0x48,0xfd,0xca,0x0,0x0,0x22,0xff,0xe,0x48,0xff,0xca, + 0x0,0x0,0x23,0x61,0xe,0x62,0x79,0x4,0x0,0x0,0x2d,0xaf,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x19,0xd7,0xe,0x7b,0xa1,0x23,0x0,0x0,0x40,0xbe,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x28,0x1a,0xe,0x98,0x18,0x54,0x0,0x0,0x20,0xb5,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x4d,0xc,0xe,0xbe,0x61,0x81,0x0,0x0,0x51,0xd5,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x51,0xff,0xe,0xbe,0x61,0x83,0x0,0x0,0x52,0x29,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x52,0x53,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x39,0xc7,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x10,0x8f,0xe,0xe2,0x34,0x60,0x0,0x0,0x61,0xf0,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x62,0x1a,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0x9b,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0x3e,0xe,0xf7,0xac,0xae,0x0,0x0,0xe,0x2a,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x62,0x9f,0xf,0x15,0xf4,0x85,0x0,0x0,0x3b,0x8c,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x57,0xdf,0xf,0x17,0x9c,0x64,0x0,0x0,0x5d,0xb1,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x47,0xfc,0xf,0x29,0x4d,0x2a,0x0,0x0,0x36,0xf7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x32,0xeb,0xf,0x30,0x6b,0x3,0x0,0x0,0x27,0x97,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x54,0x97,0xf,0x5a,0x14,0x2,0x0,0x0,0xc,0xa7,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x10,0x21,0xf,0x70,0xaa,0x1a,0x0,0x0,0x5f,0xb8,0xf,0x74,0xd,0xca, + 0x0,0x0,0x4e,0x3c,0xf,0x85,0x7b,0xea,0x0,0x0,0x48,0xf6,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0xf,0xe8,0xf,0xbd,0xdc,0x15,0x0,0x0,0xb,0xdf,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x4d,0x7e,0xf,0xd3,0x41,0x72,0x0,0x0,0x2e,0x66,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x3d,0xee,0xf,0xd9,0x8c,0xca,0x0,0x0,0x3e,0x50,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x3e,0x1f,0xf,0xd9,0x8f,0xca,0x0,0x0,0x3e,0x81,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x30,0x5f,0xf,0xe2,0xe9,0x49,0x0,0x0,0x60,0xcb,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x49,0x87,0xf,0xf5,0xeb,0x52,0x0,0x0,0x49,0xb3,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x49,0xdf,0xf,0xf5,0xeb,0x54,0x0,0x0,0x4a,0xb,0x69,0x0,0x0,0x63, + 0x23,0x3,0x0,0x0,0x0,0xc,0x0,0x20,0x0,0x2d,0x0,0x20,0x5d,0xf2,0x66,0x82, + 0x50,0x5c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50, + 0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa6, + 0x0,0x20,0x66,0x2f,0x5c,0x6,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x65,0x87, + 0x4e,0xf6,0x8f,0x6c,0x63,0x62,0x4e,0x3a,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46, + 0x0,0x20,0x62,0x40,0x97,0x0,0x89,0x81,0x76,0x84,0x5e,0x93,0x30,0x2,0x0,0xa, + 0x0,0xa,0x4f,0x7f,0x75,0x28,0x90,0x1a,0x75,0x28,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x62,0x53,0x53,0x70,0x67,0x3a,0x62,0x53,0x53,0x70,0x76,0x84,0x65,0x87, + 0x68,0x63,0x5c,0x6,0x88,0xab,0x4f,0xdd,0x5b,0x58,0x4e,0x3a,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20, + 0x65,0x87,0x4e,0xf6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x8b,0xbe,0x59,0x7,0x91,0x4d,0x7f,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x25,0x0,0x69,0x0,0x20,0x7b, + 0x49,0x5f,0x85,0x72,0xb6,0x60,0x1,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28, + 0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x31,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x32,0x0,0x78,0x0,0x28,0x0, + 0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0, + 0x78,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x35,0x0,0x78, + 0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26, + 0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x78,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x51,0x73,0x4e,0x8e, + 0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xcd, + 0x4f,0x5c,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x74,0x25,0x73,0xc0,0x82,0x72,0x53,0x55,0x82,0x72, + 0x66,0x3e,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x59,0x31,0x71,0x26,0x81,0xea,0x52,0xa8,0x66,0x82,0x50,0x5c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5e,0x73,0x57, + 0x47,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x28, + 0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x9e,0xd8,0x8b,0xa4,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x65,0x87,0x68,0x63, + 0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x62,0x53,0x5f,0x0,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x76,0x84, + 0x66,0x20,0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x5d,0xf2,0x67,0x9,0x66,0x20,0x50, + 0xcf,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x5f,0xeb,0x8f,0xdb,0x81,0xf3,0x7e,0xc8,0x70,0xb9,0x0,0x28,0x0,0x26,0x0,0x46, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65, + 0x87,0x4e,0xf6,0x59,0x39,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x51,0x68,0x5c,0x4f,0x62,0xc9,0x4f,0x38,0x0,0x28,0x0,0x26,0x0,0x46, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c, + 0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x51,0x68,0x5c,0x4f,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x7e,0xff,0x82,0x72,0x53,0x55,0x82,0x72,0x66,0x3e,0x79,0x3a,0x56,0x68,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x78,0x6c,0x91,0xcd,0x7f,0x6e, + 0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x5e,0x2e,0x52,0xa9,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x96,0x90,0x85,0xcf,0x72,0xb6,0x60,0x1,0x68, + 0xf,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x66,0x20, + 0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x65,0x74, + 0x65,0x70,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x66,0x3e,0x79,0x3a,0x56,0x68,0x53, + 0xcd,0x82,0x72,0x66,0x3e,0x79,0x3a,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74, + 0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x95,0x2e,0x76,0xd8,0x97,0x0,0x89, + 0x81,0x63,0x55,0x63,0x49,0x0,0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x7e,0xbf,0x60,0x27, + 0x0,0x28,0x0,0x26,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x4e,0xcb,0x8d,0x28,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x97,0x59,0x97,0xf3,0x0, + 0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x90,0xbb,0x8f,0xd1,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x65,0xb0,0x5e,0xfa,0x66,0x20, + 0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x65,0xb0,0x5e,0xfa,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x66,0x82,0x50,0x5c,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x64,0xad,0x65,0x3e,0x0,0x28,0x0,0x26,0x0, + 0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x99,0x96,0x90, + 0x9,0x98,0x79,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x70,0x70,0x5e, + 0xa6,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5f,0x55,0x52,0x36, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x8f,0x7d,0x51,0x65,0x4e,0xa,0x4e,0x0,0x4e,0x2a,0x66,0x20, + 0x50,0xcf,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x79,0xfb,0x96,0x64,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x79,0xfb,0x96, + 0x64,0x77,0x40,0x82,0x72,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x7a,0x97,0x53,0xe3,0x59,0x27,0x5c,0xf,0x53,0xef,0x8c,0x3,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x50,0x12,0x5e, + 0x26,0x81,0xf3,0x8d,0x77,0x70,0xb9,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x5c,0x6,0x53,0xf3, + 0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x95,0x2e,0x66,0x20, + 0x5c,0x4,0x4e,0x3a,0x5d,0xe6,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20, + 0x95,0x2e,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x8f,0x6f,0x4e,0xf6,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x90,0x9,0x62,0xe9,0x77,0x40,0x82,0x72,0x56,0x68,0x0,0x28,0x0,0x26, + 0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x8b,0xbe,0x7f,0x6e,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x63,0x7,0x5b,0x9a,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4f,0xdd,0x63,0x1,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0, + 0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26, + 0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b, + 0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x4e,0xe,0x89,0xc6,0x98,0x91,0x54,0xc,0x6b,0x65,0x0, + 0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65, + 0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x5d,0xe5,0x51,0x77, + 0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x66,0xf4,0x65,0xb0,0x72,0xb6,0x60,0x1,0x68,0xf,0x56,0xfe,0x68, + 0x7,0x0,0x28,0x0,0x26,0x0,0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26, + 0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x57,0x82,0x76, + 0xf4,0x54,0xc,0x6b,0x65,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x67,0xe5,0x77,0xb,0x0,0x28,0x0,0x26, + 0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56, + 0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x76,0x7d, + 0x82,0x72,0x53,0x55,0x82,0x72,0x66,0x3e,0x79,0x3a,0x56,0x68,0x0,0x28,0x0,0x26, + 0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7a,0x97,0x53,0xe3,0x7f,0x29,0x65,0x3e,0x7c, + 0xfb,0x65,0x70,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x28,0x7c,0xfb,0x7e,0xdf,0x9e,0xd8,0x8b,0xa4,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x28,0x7a,0x7a,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4f,0x4e,0x4e,0x8e,0x68,0x7,0x51,0xc6,0x8f, + 0x6c,0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x31,0x0,0x25,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x78,0x0,0x28,0x0,0x26, + 0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32, + 0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4f,0x4e,0x4e,0x8e,0x68,0x7,0x51, + 0xc6,0x8f,0x6c,0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0, + 0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4f,0x4e,0x4e,0x8e,0x68,0x7, + 0x51,0xc6,0x8f,0x6c,0x90,0x1f,0x76,0x84,0x0,0x20,0x0,0x32,0x0,0x25,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20, + 0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1, + 0x5b,0xf8,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49, + 0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8, + 0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e, + 0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d, + 0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x35,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33, + 0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x65, + 0x74,0x65,0x70,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e, + 0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20, + 0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x20,0x82,0xf1,0x5b,0xf8,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xde,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x62,0x7e,0x4e,0xd,0x52,0x30,0x4e,0xfb,0x4f,0x55,0x53,0xef,0x75,0x28, + 0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x66,0x20,0x50,0xcf, + 0x30,0x2,0x0,0xa,0x0,0xa,0x8b,0xf7,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68, + 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x4e,0xb,0x8f,0x7d,0x0,0x3c,0x0,0x2f, + 0x0,0x61,0x0,0x3e,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x53,0x5,0x5e,0x76, + 0x5c,0x6,0x51,0x76,0x89,0xe3,0x53,0x8b,0x52,0x30,0x0,0x20,0x0,0x22,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x65,0x87,0x4e,0xf6,0x59,0x39, + 0x4e,0x2d,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x51,0x73,0x67,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74, + 0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41, + 0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x51,0x73,0x4e,0x8e,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6d,0xfb,0x52,0xa0,0x5d, + 0xf2,0x5b,0x58,0x57,0x28,0x76,0x84,0x78,0x6c,0x76,0xd8,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x6d,0xfb,0x52,0xa0,0x65,0xb0,0x78,0x6c,0x76,0xd8, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65, + 0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x9a,0xd8,0x7e,0xa7,0x62,0x47,0x53,0x3a,0x66,0x20, + 0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61, + 0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x62,0x40,0x67, + 0x9,0x65,0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x62,0x40,0x67,0x9,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xfe,0x4e,0x0,0x4e,0x2a,0x65,0xe7, + 0x5f,0xf,0x8b,0xa1,0x7b,0x97,0x67,0x3a,0x6a,0x21,0x62,0xdf,0x56,0x68,0x0,0xa, + 0x0,0xa,0x4f,0x5c,0x80,0x5,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x29,0x30,0x1,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x30,0x1,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x30,0x1,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x30,0x1,0x0,0x63,0x0,0x6f,0x0,0x6c, + 0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x30,0x1, + 0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f, + 0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x29,0x30,0x1,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x30,0x1,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x30,0x1,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x30,0x1,0x0,0x43,0x0,0x61,0x0,0x63, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34, + 0x0,0x35,0x30,0x1,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x30,0x1,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x30,0x1, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x7b,0x49,0x4e,0xba,0x30,0x2,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x67,0x2c,0x8f,0x6f,0x4e,0xf6,0x4f,0x9d,0x63,0x6e,0x0,0x20,0x0,0x47, + 0x0,0x4e,0x0,0x55,0x0,0x20,0x90,0x1a,0x75,0x28,0x51,0x6c,0x51,0x71,0x8b,0xb8, + 0x53,0xef,0x8b,0xc1,0x7b,0x2c,0x4e,0x8c,0x72,0x48,0x62,0x16,0x66,0xf4,0x65,0xb0, + 0x72,0x48,0x67,0x2c,0x53,0xd1,0x5e,0x3,0x30,0x2,0x8b,0xe6,0x60,0xc5,0x89,0xc1, + 0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45, + 0x0,0x20,0x65,0x87,0x4e,0xf6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66, + 0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa, + 0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47, + 0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c, + 0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61, + 0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43, + 0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64, + 0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e, + 0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61, + 0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64, + 0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79, + 0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c, + 0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77, + 0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c, + 0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d, + 0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69, + 0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e, + 0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa, + 0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f, + 0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73, + 0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b, + 0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e, + 0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73, + 0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73, + 0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61, + 0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61, + 0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45, + 0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x78,0x6e,0x5b,0x9a,0x89,0x81,0x90,0x0,0x51,0xfa,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x54,0x17,0xff,0x1f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x78,0x6e,0x5b,0x9a,0x89,0x81,0x78,0x6c,0x91,0xcd, + 0x7f,0x6e,0x6a,0x21,0x62,0xdf,0x56,0x68,0x54,0x17,0xff,0x1f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x81,0xea,0x52,0xa8,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0x54,0x0,0x36,0x0,0x30,0x0, + 0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0, + 0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20, + 0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x54,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x0,0x28,0x0, + 0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x57,0xfa,0x67,0x2c,0x62,0x47,0x53,0x3a,0x66, + 0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x5f,0x0,0x59,0xcb,0x8f, + 0xfd,0x8e,0x2a,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e, + 0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x57,0x57,0x59,0x27,0x5c,0xf,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x60,0x3b,0x7e,0xbf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x60,0x3b,0x7e,0xbf, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x51,0x49,0x76,0xd8,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x49,0x76,0xd8,0x9a,0x71,0x52,0xa8,0x56,0x68, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52, + 0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x51,0x49,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0, + 0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x8f,0xc7,0x62,0x6b,0x63,0xcf,0x0,0x28,0x0,0x26,0x0,0x47,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x8b,0xbe, + 0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x8b, + 0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20, + 0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0, + 0x20,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe0,0x6b,0x64,0x6a,0x21,0x62,0xdf,0x8b,0xa1, + 0x7b,0x97,0x67,0x3a,0x79,0x81,0x75,0x28,0x4e,0x86,0x57,0xfa,0x4e,0x8e,0x90,0x9, + 0x5b,0x9a,0x8b,0xa1,0x7b,0x97,0x67,0x3a,0x76,0x84,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x7c,0x7b,0x57,0x8b,0x8f,0xc7,0x6e,0xe4,0x30,0x2,0x0,0xa, + 0x0,0xa,0x80,0xfd,0x59,0x1f,0x90,0x9,0x4e,0x2d,0x4e,0xe,0x62,0x40,0x90,0x9, + 0x67,0x3a,0x56,0x68,0x67,0x2c,0x4e,0xd,0x51,0x7c,0x5b,0xb9,0x76,0x84,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0xff,0xc,0x4f,0x46,0x66,0x2f,0x53,0xef,0x80,0xfd, + 0x4f,0x1a,0x90,0x47,0x52,0x30,0x4e,0xe,0x67,0x3a,0x56,0x68,0x0,0x20,0x0,0x42, + 0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x62,0x16,0x51,0x76,0x4e,0xd6,0x8f,0x6f, + 0x4e,0xf6,0x4e,0xd,0x51,0x7c,0x5b,0xb9,0x76,0x84,0x95,0xee,0x98,0x98,0x30,0x2, + 0x0,0xa,0x0,0xa,0x54,0x2f,0x75,0x28,0x6b,0x64,0x8b,0xbe,0x7f,0x6e,0x4e,0xd, + 0x53,0xd7,0x5b,0x98,0x65,0xb9,0x65,0x2f,0x63,0x1,0xff,0xc,0x5e,0x76,0x4e,0x14, + 0x63,0xd0,0x4e,0xa4,0x76,0x84,0x4e,0xfb,0x4f,0x55,0x95,0x19,0x8b,0xef,0x62,0xa5, + 0x54,0x4a,0x53,0xef,0x80,0xfd,0x4f,0x1a,0x89,0xc6,0x4e,0x3a,0x65,0xe0,0x65,0x48, + 0x80,0xc,0x51,0x73,0x95,0xed,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x7c,0x7b,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x53,0xd6,0x6d,0x88,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x62,0x69,0x5c,0x55,0x53,0x61,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x62,0x69,0x5c,0x55,0x53,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x62,0x69,0x5c,0x55,0x53,0x61,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x62,0x69,0x5c,0x55,0x53,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x53,0x61,0x5e,0x26,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x53,0x61,0x5e,0x26,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x78,0xc1,0x5e,0x26,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x78,0xc1,0x5e,0x26,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x5e, + 0x26,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x66,0xf4,0x65,0x39,0x53,0x55, + 0x82,0x72,0x66,0x3e,0x79,0x3a,0x5b,0xf9,0x6b,0xd4,0x5e,0xa6,0x0,0x28,0x0,0x26, + 0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68, + 0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69, + 0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x90,0x1a,0x90,0x53,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x68,0xc0,0x67,0xe5,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x53,0x55,0x51, + 0xfb,0x7a,0x97,0x53,0xe3,0x63,0x55,0x63,0x49,0x9f,0x20,0x68,0x7,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x91,0x4d,0x7f,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x7e,0xe7,0x7e,0xed,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56, + 0x68,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x65,0xe0,0x6c,0xd5,0x4f,0xee,0x59,0xd,0x0,0x20,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x20,0x65,0xf6,0x95,0xf4,0x62,0x33,0x30,0x2,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74, + 0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x65,0xe0, + 0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x89,0xc6,0x98,0x91,0x6e,0x32,0x67,0xd3, + 0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x81,0xea,0x5b,0x9a,0x4e,0x49,0x0,0x20,0x0,0x28,0x59,0x27,0x5b, + 0xb9,0x91,0xcf,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x81,0xea,0x5b,0x9a,0x4e,0x49,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x67,0xf1,0x97,0x62,0x0, + 0x28,0x0,0x43,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20,0x7c,0x7,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x20,0x7c,0x7,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73, + 0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x9e,0xd8,0x8b,0xa4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x5d,0xee,0x52,0x6,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x79,0x81,0x75,0x28,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x5d,0xf2,0x52,0x1b,0x5e, + 0xfa,0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x65,0x87,0x4e,0xf6,0x5d,0xf2,0x5b,0x58, + 0x57,0x28,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65, + 0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x59,0x2a,0x59, + 0x27,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x78,0xc1,0x76,0xd8,0x66,0x20, + 0x50,0xcf,0x4e,0xd,0x80,0xfd,0x8d,0x85,0x8f,0xc7,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72, + 0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0xc1,0x76,0xd8,0x59,0x27,0x5c,0xf, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b, + 0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x66,0x3e,0x79,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x89,0x81,0x4f,0xdd,0x5b,0x58,0x8b,0xbe,0x7f,0x6e,0x54,0x17,0xff,0x1f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x4e,0xd,0x90,0x0,0x51,0xfa,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4e,0xd,0x89,0x86,0x76,0xd6, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x4e,0xd,0x91,0xcd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4e,0xd,0x89,0x81,0x51,0x8d, + 0x66,0x3e,0x79,0x3a,0x6b,0x64,0x6d,0x88,0x60,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74, + 0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x52,0xa8,0x60,0x1, + 0x91,0xcd,0x7f,0x16,0x8b,0xd1,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x52, + 0xa8,0x60,0x1,0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x8b, + 0xbe,0x7f,0x6e,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x5f,0x39,0x51,0xfa,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x7a,0x7a,0x7f,0x6e,0x9a, + 0x71,0x52,0xa8,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x90,0x0,0x51,0xfa,0x0,0x28,0x0,0x26, + 0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x5b,0xfc,0x51,0xfa,0x4e,0x3a,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x46,0x0,0x20,0x68,0x3c,0x5f,0xf,0x0,0x28,0x0,0x26,0x0, + 0x78,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x65,0xe9,0x51,0x48,0x76,0x84,0x9a,0x71,0x52,0xa8,0x56, + 0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69, + 0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x54,0x2f,0x75,0x28,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x96,0xc6,0x62,0x10,0x0,0x28,0x0, + 0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69, + 0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x54,0x2f,0x75,0x28,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x54,0x2f,0x75,0x28,0x0,0x20,0x0,0x28,0x67, + 0x2c,0x57,0x30,0x65,0xf6,0x95,0xf4,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61, + 0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x7e,0xd3,0x67,0x5f,0x8f,0xfd,0x8e,0x2a,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x6b,0x63,0x57, + 0x28,0x8f,0xdb,0x51,0x65,0x51,0x68,0x5c,0x4f,0x6a,0x21,0x5f,0xf,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20, + 0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x95,0x19,0x8b,0xef,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x52,0x1d,0x59,0xcb,0x53,0x16,0x6e,0x32, + 0x67,0xd3,0x56,0x68,0x65,0xf6,0x51,0xfa,0x95,0x19,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x62,0x53,0x5f,0x0,0x5d,0xf2, + 0x5b,0x58,0x57,0x28,0x76,0x84,0x66,0x20,0x50,0xcf,0x5e,0x76,0x51,0x99,0x4f,0xdd, + 0x62,0xa4,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90,0x0,0x51,0xfa,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x5f,0x3a,0x52,0x36,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x0,0x20,0x66,0x3e,0x79,0x3a,0x6b,0xd4,0x4f,0x8b,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26, + 0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x8f,0x6f,0x76,0xd8,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x8c,0x3,0x98,0x91,0x54,0x8,0x62,0x10,0x56,0x68,0x9a,0x71,0x52,0xa8,0x56,0x68, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e, + 0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73, + 0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x59,0x0,0x61,0x0,0x48,0x0,0x65, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x6d,0x6e,0x70,0xb9,0x59,0x4,0x74,0x6,0x56,0x68,0x0,0x20,0x0,0x28,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x7f,0x51,0x7e,0xdc,0x9a,0x71,0x52,0xa8,0x7a,0xb,0x5e,0x8f,0x52,0x1d,0x59, + 0xcb,0x53,0x16,0x59,0x31,0x8d,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8b, + 0xbe,0x7f,0x6e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x59, + 0x31,0x8d,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x5f,0xeb,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x81,0xf4,0x54,0x7d,0x95,0x19,0x8b,0xef, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20, + 0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x65,0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x65,0x87,0x4e, + 0xf6,0x54,0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x8f,0xc7,0x6e,0xe4,0x65,0xb9,0x5f,0xf,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74, + 0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x56,0xfa, + 0x5b,0x9a,0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x8f,0x6f,0x76,0xd8,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x8f,0x6f,0x76,0xd8, + 0x0,0x2f,0x51,0x49,0x76,0xd8,0x9a,0x71,0x52,0xa8,0x56,0x68,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x8f,0x6f,0x76,0xd8,0x9a,0x71,0x52,0xa8,0x56, + 0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f, + 0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20, + 0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x51,0x68,0x5c,0x4f,0x62,0xc9,0x4f,0x38,0x6a,0x21,0x5f,0xf, + 0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74, + 0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x58,0x9e,0x76,0xca,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x70,0x70,0x5e,0xa6,0x8f,0x6c,0x63,0x62,0x7c,0x7b,0x57,0x8b,0x0,0x28, + 0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x78,0x6c,0x76, + 0xd8,0x63,0xa7,0x52,0x36,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x4e,0xd,0x80,0xfd, + 0x8d,0x85,0x8f,0xc7,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x66,0x20,0x50,0xcf,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4e, + 0xd,0x65,0x2f,0x63,0x1,0x97,0x5e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0x5b,0x57,0x82,0x82,0x62,0x47,0x53,0x3a,0x59,0x27,0x5c,0xf,0x76,0x84,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x62,0x16,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x66,0x20,0x50,0xcf,0x30,0x2,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65, + 0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74, + 0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x66,0x20, + 0x50,0xcf,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x78,0x6c,0x76,0xd8,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x78,0x6c,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x78,0x6c,0x76,0xd8,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x78,0x6c,0x76,0xd8,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x78,0x6c,0x91,0xcd, + 0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x78,0x6c,0x4e,0xf6,0x4e,0xd,0x53,0xef,0x75,0x28,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x78,0xc1,0x59,0x34,0x0,0x28,0x0,0x48,0x0,0x29, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x9a,0xd8,0x5e, + 0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69, + 0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x48,0x0,0x69,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x7f,0x29,0x65,0x3e,0x0, + 0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x96,0x90,0x85,0xcf,0x5d,0xe5, + 0x51,0x77,0x68,0xf,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49, + 0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f, + 0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69, + 0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x20,0x51,0x85,0x5b,0x58,0x62,0x69,0x5c,0x55,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45, + 0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x5b,0x9e,0x65,0xf6,0x65, + 0xf6,0x94,0x9f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x0,0x20,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x56, + 0xfe,0x68,0x7,0x96,0xc6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x66,0x20,0x50,0xcf,0x68,0x3c,0x5f,0xf,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46, + 0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x8f,0x93,0x51,0x65,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x51,0x85,0x90,0xe8,0x63, + 0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x65,0xe0,0x65, + 0x48,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x8b,0xbe,0x59, + 0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x65,0xe0,0x65,0x48,0x91,0x4d,0x7f, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64,0xcd,0x7e,0xb5,0x67, + 0x46,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64,0xcd,0x7e, + 0xb5,0x67,0x46,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x64, + 0xcd,0x7e,0xb5,0x67,0x46,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x20,0x8b,0xbe, + 0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x8b, + 0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20, + 0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0, + 0x20,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x8b,0xed,0x8a,0x0,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x59,0x27,0x57,0x57, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x95,0x1,0x5b,0x9a,0x6b,0x64,0x59,0x27,0x5c,0xf, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74, + 0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4e,0xd,0x5b,0x58,0x57,0x28,0x0, + 0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x62,0x16,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x9a,0x71,0x52, + 0xa8,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x8f,0x93,0x51, + 0x65,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x8f,0x93,0x51,0xfa,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x78,0xc1,0x51,0x49,0x76,0xd8,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x78,0xc1,0x51,0x49,0x76, + 0xd8,0x9a,0x71,0x52,0xa8,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x78,0xc1,0x51,0x49,0x76,0xd8,0x66,0x20, + 0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x67,0x3a,0x57,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e, + 0x75,0x31,0x4e,0x8e,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73, + 0x0,0x20,0x65,0x87,0x4e,0xf6,0x59,0x39,0x4e,0x2d,0x7f,0x3a,0x5c,0x11,0x54,0x8, + 0x90,0x2,0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0xff,0xc,0x67,0x3a, + 0x57,0x8b,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20, + 0x4e,0xd,0x53,0xef,0x75,0x28,0x30,0x2,0x5c,0x6,0x52,0x7,0x63,0x62,0x52,0x30, + 0x51,0x76,0x4e,0xd6,0x53,0xef,0x75,0x28,0x67,0x3a,0x57,0x8b,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x67,0x3a,0x56,0x68,0x7c,0x7b,0x57,0x8b, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x67,0x3a,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x8b,0xf7,0x78,0x6e,0x8b,0xa4,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x5d, + 0xf2,0x5b,0x89,0x88,0xc5,0x4e,0x14,0x4f,0x7f,0x75,0x28,0x51,0x7c,0x5b,0xb9,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x20,0x76,0x84,0x7f,0x51,0x7e,0xdc,0x8f,0xde,0x63,0xa5,0x30,0x2,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x8b,0xf7,0x78, + 0x6e,0x5b,0x9a,0x6b,0x64,0x65,0x87,0x4e,0xf6,0x5d,0xf2,0x5b,0x58,0x57,0x28,0x5e, + 0x76,0x53,0xef,0x8b,0xfb,0x53,0xd6,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x8b,0xf7,0x78,0x6e,0x5b,0x9a,0x6b,0x64, + 0x65,0x87,0x4e,0xf6,0x4f,0xdd,0x5b,0x58,0x57,0x28,0x53,0xef,0x51,0x99,0x76,0xee, + 0x5f,0x55,0x4e,0x2d,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a, + 0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x51,0x85,0x5b,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57, + 0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x66,0x3e,0x79,0x3a,0x56,0x68,0x59,0x4,0x57,0x28,0x77,0x61, + 0x77,0x20,0x72,0xb6,0x60,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x9f,0x20,0x68,0x7,0x65,0x4f,0x61,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x9f,0x20,0x68,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x7f,0x51,0x7e,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x7f,0x51,0x7e,0xdc,0x90,0x2,0x91,0x4d,0x56,0x68,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x7f,0x51,0x7e,0xdc,0x7c,0x7b,0x57,0x8b,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x65,0xb0,0x5e,0xfa,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x67,0x2a,0x62,0x7e,0x52,0x30,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x62,0x7e,0x4e,0xd,0x52,0x30,0x0,0x20,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x65,0xe0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28, + 0x66,0xf4,0x51,0xc6,0x78,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63, + 0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x78,0x6e,0x5b,0x9a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x51,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x5f,0x0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x68,0x38,0x5f,0xc3,0x0,0x29,0x0,0x28, + 0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x65,0xe0,0x6c, + 0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0, + 0x20,0x68,0x38,0x5f,0xc3,0x0,0x29,0x0,0x20,0x6e,0x32,0x67,0xd3,0x56,0x68,0x30, + 0x2,0x8b,0xf7,0x4f,0x7f,0x75,0x28,0x51,0x76,0x4e,0xd6,0x6e,0x32,0x67,0xd3,0x56, + 0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65, + 0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64, + 0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x77,0x40,0x82,0x72,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x90,0x9,0x98,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x51,0x76, + 0x4e,0xd6,0x59,0x16,0x56,0xf4,0x8b,0xbe,0x59,0x7,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68, + 0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x51,0x76,0x4e,0xd6,0x53,0xef,0x79,0xfb,0x52,0xa8,0x8b,0xbe,0x59,0x7,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x89,0x86,0x76,0xd6,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x43, + 0x0,0x61,0x0,0x70,0x0,0x20,0x8b,0xbe,0x59,0x7,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0, + 0x49,0x0,0x54,0x0,0x20,0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x81,0xea,0x68,0xc0,0x0,0x20,0x0, + 0x28,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x29,0x0,0x20,0x53,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61, + 0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x5e,0x76,0x53, + 0xe3,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x5e,0x76,0x53,0xe3,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x5e,0x76,0x53,0xe3,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x5e,0x76,0x53,0xe3,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x72,0x36,0x76, + 0xd8,0x4e,0xe,0x5b,0x50,0x76,0xd8,0x76,0x84,0x65,0xf6,0x95,0xf4,0x62,0x33,0x4e, + 0xd,0x53,0x39,0x91,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50, + 0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20, + 0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x66,0x82,0x50,0x5c,0x62,0x67,0x88,0x4c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65, + 0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x68,0x7,0x51,0xc6,0x8f,0x6c,0x90,0x1f,0x0,0x20,0x0,0x28,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x8b,0xf7,0x63,0x7,0x5b,0x9a,0x67,0x9,0x65, + 0x48,0x76,0x84,0x65,0x87,0x4e,0xf6,0x54,0xd,0x30,0x2,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x7a,0xef,0x53,0xe3,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x54,0x8c,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x99,0x96,0x90,0x9,0x98,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x63,0x9,0x4e,0xb,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x63,0x9, + 0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c, + 0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x44,0x0,0x6e,0x0,0x20,0x8f,0xd4,0x56,0xde,0x52,0x30,0x7a,0x97,0x53,0xe3,0x6a, + 0x21,0x5f,0xf,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x63,0x9,0x4e,0xb,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x62,0x16,0x9f, + 0x20,0x68,0x7,0x4e,0x2d,0x95,0x2e,0x91,0xca,0x65,0x3e,0x9f,0x20,0x68,0x7,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x63,0x9,0x4e,0xb,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x0,0x20,0x91,0xca,0x65,0x3e,0x9f,0x20,0x68,0x7,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x8f,0xdb,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x7b,0x2c,0x56,0xdb,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x8b,0xb0,0x4f,0x4f,0x7a,0x97,0x53,0xe3,0x59,0x27, + 0x5c,0xf,0x54,0x8c,0x4f,0x4d,0x7f,0x6e,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x5f,0x69,0x82,0x72,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x8f,0x6c,0x90,0x1f,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x29,0x0,0x20,0x6a,0x21,0x5f,0xf,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x53,0x9f,0x59,0xcb,0x66,0x20,0x50,0xcf, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x6e,0x32,0x67,0xd3,0x56,0x68,0x0,0x28,0x0,0x26,0x0,0x4e,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x8b, + 0xf7,0x8b,0xb0,0x5f,0x97,0x4e,0x3a,0x65,0xb0,0x52,0x1b,0x5e,0xfa,0x76,0x84,0x66, + 0x20,0x50,0xcf,0x52,0x6,0x53,0x3a,0x5e,0x76,0x68,0x3c,0x5f,0xf,0x53,0x16,0x30, + 0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e, + 0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72, + 0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x91, + 0xcd,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x60,0x62,0x59, + 0xd,0x62,0x67,0x88,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x78,0x6c,0x4e,0xf6,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x4f,0xdd,0x5b,0x58,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x5c,0x6,0x4e,0xe5,0x4e,0xa,0x8b,0xbe,0x7f,0x6e,0x5b,0x58,0x50, + 0xa8,0x4e,0x3a,0x51,0x68,0x5c,0x40,0x9e,0xd8,0x8b,0xa4,0x50,0x3c,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x62,0x47,0x53,0x3a,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4e,0xce,0x7a,0xb,0x5e,0x8f, + 0x5d,0xe5,0x4f,0x5c,0x76,0xee,0x5f,0x55,0x4e,0x2d,0x90,0x9,0x62,0xe9,0x4e,0xcb, + 0x8d,0x28,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x90,0x9,0x62, + 0xe9,0x72,0x36,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x65,0x87,0x4e, + 0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4e,0x32,0x53,0xe3,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x4e,0x32,0x53,0xe3,0x0,0x20,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4e, + 0x32,0x53,0xe3,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4e,0x32,0x53,0xe3,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x8b,0xbe,0x7f,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x59,0x27,0x5c,0xf,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69, + 0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x61,0x62,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x5c,0xf, + 0x57,0x57,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d, + 0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20, + 0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x58,0xf0, + 0x97,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x97,0xf3,0x91,0xcf, + 0x58,0x9e,0x76,0xca,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x97,0xf3,0x91,0xcf,0x58,0x9e,0x76,0xca,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x58,0xf0,0x53,0x61, + 0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x58,0xf0,0x53,0x61,0x0,0x20,0x0,0x32, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x58,0xf0,0x53,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x58,0xf0,0x53,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x63,0x7,0x5b,0x9a, + 0x4e,0x3b,0x7a,0x97,0x53,0xe3,0x59,0x27,0x5c,0xf,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x63,0x7,0x5b, + 0x9a,0x7a,0x97,0x53,0xe3,0x59,0x27,0x5c,0xf,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79, + 0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x90,0x1f,0x5e,0xa6,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x90,0x1f,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x72,0xec,0x7a,0xcb,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0,0x32,0x0,0x20,0x95,0x2e,0x64, + 0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0,0x34,0x0, + 0x20,0x95,0x2e,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0,0x36, + 0x0,0x20,0x95,0x2e,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62, + 0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x68,0x7,0x51,0xc6,0x0,0x20,0x0, + 0x38,0x0,0x20,0x95,0x2e,0x64,0xcd,0x7e,0xb5,0x67,0x46,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x5b,0x58,0x50,0xa8,0x63,0xa7, + 0x52,0x36,0x56,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x88,0x68,0x97,0x62, + 0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75, + 0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x62,0x2a,0x56,0xfe,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x76,0xee,0x68,0x7,0x5e,0x27,0x73,0x87,0x0,0x28,0x0,0x26,0x0, + 0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72, + 0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x2c,0x4e,0x9,0x0,0x20,0x0, + 0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x63,0xa7,0x52,0x36,0x56,0x68,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x7f,0x51,0x7e,0xdc,0x91,0x4d,0x7f, + 0x6e,0x5c,0x6,0x52,0x7,0x63,0x62,0x4e,0x3a,0x7a,0x7a,0x9a,0x71,0x52,0xa8,0x7a, + 0xb,0x5e,0x8f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x90,0x9,0x5b,0x9a,0x76,0x84,0x65,0x87,0x4e,0xf6,0x5c, + 0x6,0x88,0xab,0x89,0x86,0x76,0xd6,0x30,0x2,0x78,0x6e,0x5b,0x9a,0x7e,0xe7,0x7e, + 0xed,0x4f,0x7f,0x75,0x28,0x6b,0x64,0x65,0x87,0x4e,0xf6,0x54,0x17,0xff,0x1f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x72,0x36,0x66,0x20,0x50, + 0xcf,0x53,0xef,0x80,0xfd,0x57,0x28,0x52,0x1b,0x5e,0xfa,0x5d,0xee,0x5f,0x2,0x66, + 0x20,0x50,0xcf,0x54,0xe,0x88,0xab,0x4f,0xee,0x65,0x39,0x30,0x2,0x0,0xa,0x0, + 0xa,0x59,0x82,0x67,0x9c,0x66,0x20,0x50,0xcf,0x65,0x87,0x4e,0xf6,0x88,0xab,0x79, + 0xfb,0x52,0xa8,0x62,0x16,0x59,0xd,0x52,0x36,0xff,0xc,0x62,0x16,0x52,0x1b,0x5e, + 0xfa,0x6b,0x64,0x78,0xc1,0x76,0xd8,0x76,0x84,0x7a,0xb,0x5e,0x8f,0x4e,0x2d,0x5b, + 0x58,0x57,0x28,0x95,0x19,0x8b,0xef,0xff,0xc,0x4e,0x5f,0x53,0xef,0x80,0xfd,0x53, + 0xd1,0x75,0x1f,0x8f,0xd9,0x79,0xcd,0x60,0xc5,0x51,0xb5,0x30,0x2,0x0,0xa,0x0, + 0xa,0x66,0x2f,0x54,0x26,0x97,0x0,0x89,0x81,0x4f,0xee,0x59,0xd,0x65,0xf6,0x95, + 0xf4,0x62,0x33,0xff,0x1f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54, + 0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74, + 0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, + 0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20, + 0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20, + 0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72, + 0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61, + 0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67, + 0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20, + 0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x6b,0x64,0x64,0xcd,0x4f,0x5c, + 0x5c,0x6,0x78,0x6c,0x91,0xcd,0x7f,0x6e,0x6a,0x21,0x62,0xdf,0x56,0x68,0x30,0x2, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x65,0xf6,0x95,0xf4,0x54,0xc, + 0x6b,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65, + 0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x52,0xa0,0x90,0x1f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x52,0xa0,0x90,0x1f,0x65,0xf6,0x5e, + 0x8f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f, + 0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x7c,0x7b,0x57,0x8b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x7c,0x7b,0x57,0x8b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x5c,0x1a,0x67,0x2a,0x65,0x2f,0x63,0x1,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x65,0xe0,0x6c, + 0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x65,0xe0,0x6c,0xd5,0x52,0x1d,0x59,0xcb,0x53,0x16,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0xff,0xc,0x97,0x0,0x89,0x81,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74, + 0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c, + 0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x65,0xe0,0x6c,0xd5,0x52,0xa0,0x8f,0x7d,0x95,0x2e,0x76,0xd8,0x52,0xa0,0x90, + 0x1f,0x56,0x68,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74, + 0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x65, + 0xe0,0x6c,0xd5,0x8b,0xfb,0x53,0xd6,0x65,0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x65,0xe0,0x6c,0xd5,0x6c,0xe8,0x51,0x8c,0x53,0x9f,0x59,0xcb,0x8f, + 0x93,0x51,0x65,0x30,0x2,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x65,0xe0,0x6c,0xd5,0x51,0x99,0x51,0x65,0x65, + 0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4e,0xd,0x65,0x2f, + 0x63,0x1,0x76,0x84,0x78,0xc1,0x76,0xd8,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4f,0x7f,0x75,0x28,0x53,0x55,0x7c,0xbe,0x5e, + 0xa6,0x6d,0x6e,0x70,0xb9,0x0,0x20,0x0,0x28,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x5c,0x4f,0x5e,0x55,0x7c,0x7b,0x57,0x8b,0x0, + 0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x65,0x87,0x4e,0xf6,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x68,0x75,0x31,0x4e,0x8e,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x65,0x87,0x4e,0xf6,0x59,0x39,0x4e,0x2d,0x7f,0x3a,0x5c,0x11,0x54,0x8, + 0x90,0x2,0x76,0x84,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0xff,0xc,0x66,0x3e, + 0x53,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20, + 0x4e,0xd,0x53,0xef,0x75,0x28,0x30,0x2,0x5c,0x6,0x52,0x7,0x63,0x62,0x52,0x30, + 0x51,0x76,0x4e,0xd6,0x53,0xef,0x75,0x28,0x66,0x3e,0x53,0x61,0x30,0x2,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61, + 0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f, + 0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e, + 0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x66,0x3e,0x53,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68, + 0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x7b,0x49, + 0x5f,0x85,0x72,0xb6,0x60,0x1,0x0,0x20,0x0,0x28,0x0,0x57,0x0,0x53,0x0,0x29, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x6b,0x22,0x8f,0xce,0x4f,0x7f,0x75,0x28,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xff,0x1,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x5b, + 0xbd,0x5e,0xa6,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x66, + 0xf4,0x5f,0xeb,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x6b,0x63,0x57,0x28,0x8f,0x7d,0x51,0x65,0x4e, + 0x0,0x4e,0x2a,0x4e,0xd,0x53,0xd7,0x65,0x2f,0x63,0x1,0x76,0x84,0x91,0x4d,0x7f, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e, + 0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33, + 0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73, + 0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x9a,0x71,0x52,0xa8,0x56,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x66,0x20,0x50,0xcf,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_fr-FR.qm + 0x0,0x0,0x97,0x1b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x5,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0x7b,0x0,0x0,0x0,0x53,0x0,0x0,0x6d,0x2,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0xa2,0x0,0x0,0x4,0xf2,0x0,0x0,0x52,0x71,0x0,0x0,0x5,0x12, + 0x0,0x0,0x54,0x64,0x0,0x0,0x5,0x3b,0x0,0x0,0x5f,0xd4,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x60,0x19,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x3b,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0xa1,0x0,0x0,0x29,0xa8,0x0,0x0,0x5,0x7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x5,0x46,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0xac,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x6,0x12,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0x78,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x96,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xc6,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4e,0x2,0x0,0x0,0x4d,0x85,0x0,0x0,0x4e,0x20,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5f,0xef,0x0,0x0,0x5d,0x81,0x0,0x0,0x87,0x55,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x69,0x0,0x2,0x97,0xd3,0x0,0x0,0x5,0x25,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x38,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x34,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xe4,0x0,0x4,0xa7,0x89,0x0,0x0,0x3f,0x35,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0xf0,0x0,0x4,0xc8,0xa4,0x0,0x0,0x45,0x1,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0xa5,0x0,0x4,0xd0,0x25,0x0,0x0,0x45,0x60,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0xf7,0x0,0x5,0x56,0x45,0x0,0x0,0x5f,0x61,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6d,0x1a,0x0,0x5,0x98,0xc5,0x0,0x0,0x6d,0xfe,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x71,0x87,0x0,0x5,0xc0,0x65,0x0,0x0,0x7f,0x1d,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0xe,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x47,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x17,0x0,0x2a,0xec,0x30,0x0,0x0,0xb,0x1b,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0xd,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xa8,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x22,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x82,0x3,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xce,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x9f,0x0,0x4c,0x99,0x62,0x0,0x0,0x41,0x7e,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0xab,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6c,0x7f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x74,0x5d,0x0,0x5a,0x6c,0x44,0x0,0x0,0x71,0xfc,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7e,0xcd,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7f,0x3e,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x89,0xeb,0x0,0x73,0x75,0x3e,0x0,0x0,0x36,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5f,0x17,0x0,0x97,0x96,0x4,0x0,0x0,0x39,0x0,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x50,0x8d,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x52,0x2b,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4b,0x8a,0x0,0xb8,0x5f,0x43,0x0,0x0,0x61,0xeb,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xd5,0x1,0x9,0x1c,0x92,0x0,0x0,0x43,0x4c,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xb4,0x1,0x39,0xa4,0xce,0x0,0x0,0x5b,0x3e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7e,0xf1,0x1,0x4c,0x50,0xee,0x0,0x0,0x6a,0x42,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4b,0x49,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x54,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7d,0x2c,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3d,0xa9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0xab,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0xb2,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0xe7,0x1,0xb0,0x47,0x5c,0x0,0x0,0x54,0x7f,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xb,0x3f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0xca,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xc,0xd,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x13,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x33,0x12,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6d,0xc2,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x74,0xb0,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0xdc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x76,0x47,0x2,0x23,0x3c,0x6b,0x0,0x0,0x75,0xda,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x75,0x6d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xa0,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4d,0x25,0x2,0x78,0x48,0x1a,0x0,0x0,0x55,0xab,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x87,0xb5,0x2,0x90,0x8d,0x12,0x0,0x0,0x44,0x11,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x62,0x76,0x2,0xad,0x4a,0x22,0x0,0x0,0x6a,0xaf,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0xb9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xe6,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xe2,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xa0,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x59,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x62,0x2a,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x8a,0xf,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0xa4,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x65,0xfd,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x46,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x22,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x49,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x54,0xa9,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0x5,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x2c,0x3,0x6a,0x66,0x2e,0x0,0x0,0x59,0x5d,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x57,0x22,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x9a,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0xdd,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xbd,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x80,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0xd0,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0xa2,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xa7,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5c,0x61,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x74,0xf7,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x73,0x34,0x3,0xe4,0x25,0x5a,0x0,0x0,0x72,0xfa,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x72,0xc0,0x3,0xe4,0x25,0x7a,0x0,0x0,0x72,0x86,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0xb4,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0xee,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xf7,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x6d,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x97,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x46,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0xca,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x55,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x65,0x4,0x51,0x79,0xb1,0x0,0x0,0x77,0x55,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x80,0x54,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x72,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x72,0x57,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3e,0x60,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3e,0x8b,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0xb9,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x31,0x4,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3a,0x5e,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x35,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xea,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xab,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5d,0xc4,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x34,0x68,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x51,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x4d,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5d,0xec,0x4,0xeb,0x2f,0xa,0x0,0x0,0x53,0x90,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0xd2,0x5,0x18,0x5,0x95,0x0,0x0,0x82,0x7b,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xcb,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0xdc,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5d,0x9b,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x88,0xa0,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xcc,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0xe9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x71,0xa8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x57,0x4c,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7e,0x74,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x78,0x6d,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x9d,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x74,0x85,0x5,0xb2,0x16,0x79,0x0,0x0,0x6b,0x16,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xa2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4b,0x4,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x41,0x1d,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x70,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xc7,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xc1,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4d,0x76,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x80,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x85,0xc7,0x5,0xd0,0x4f,0x11,0x0,0x0,0x86,0x73,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xc4,0x5,0xdf,0xba,0xba,0x0,0x0,0x86,0xc5,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x69,0xb4,0x6,0x7,0xd3,0xda,0x0,0x0,0x4f,0x77,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x39,0x2f,0x6,0x19,0x20,0x43,0x0,0x0,0x6e,0x2d,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3c,0x94,0x6,0x38,0x9f,0x35,0x0,0x0,0x3a,0x5,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xee,0x6,0x51,0xe6,0x13,0x0,0x0,0x7,0x6d,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x9a,0x6,0x6c,0xb8,0x3,0x0,0x0,0x83,0xe2,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0xd5,0x6,0x74,0xe,0x6a,0x0,0x0,0x63,0x47,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4c,0x46,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0xb,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0xdd,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3b,0x95,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x73,0x6e,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0xa4,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6d,0x80,0x6,0xc3,0xce,0xa3,0x0,0x0,0x76,0xb4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x47,0x5e,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0xd2,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0xa0,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0x6e,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4c,0xc,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x1d,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x56,0xd6,0x7,0x6,0x93,0xe3,0x0,0x0,0x89,0x82,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xb1,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x55,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x14,0x7,0x2a,0xb5,0xca,0x0,0x0,0x71,0x50,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5c,0xea,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0xdf,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x65,0x7d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xa2,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0xff,0x7,0x58,0x61,0xe5,0x0,0x0,0x4c,0x79,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xc9,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0x81,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0xc0,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6c,0xb3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x59,0x30,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6b,0xa9,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x60,0x87,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xc3,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x83,0x9f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x8a,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xba,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xd9,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x67,0x68,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x67,0xb,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3f,0x56,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6d,0x3b,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0x80,0x8,0x0,0x3f,0x29,0x0,0x0,0x66,0x8b,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5c,0x8d,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x6a,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x54,0xa,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7d,0xef,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x63,0x77,0x8,0x68,0x71,0xae,0x0,0x0,0x9,0x35,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7f,0x62,0x8,0x9b,0xc,0x24,0x0,0x0,0x6f,0xdd,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x51,0x43,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0xf1,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x51,0x7d,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0xb7,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3e,0xf,0x8,0xa9,0xcf,0x35,0x0,0x0,0x32,0x6a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x42,0x28,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0xf1,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x40,0x7f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x47,0xd,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0xbc,0x9,0x49,0xfa,0x4a,0x0,0x0,0x35,0x41,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0x7d,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0xc9,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x35,0x5,0x9,0x4e,0xde,0x64,0x0,0x0,0x7f,0xd7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5e,0x7b,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x59,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x53,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0xbf,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x68,0x71,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x64,0x9,0x88,0x63,0xa, + 0x0,0x0,0x31,0x2d,0x9,0x88,0x63,0x1a,0x0,0x0,0x31,0x59,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x85,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0xb1,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0xca,0x9,0x9f,0xe,0xe0,0x0,0x0,0xa,0x3b,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x6,0x30,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5e,0x3b,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x64,0xb9,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xf5,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5d,0x42,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0xdf,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xa1,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xdb,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0xd2,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x61,0xa,0x41,0x77,0x3, + 0x0,0x0,0x46,0x50,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x69,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0x9a,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x40,0x45,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0xe9,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x7,0x2,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x82,0xe0,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6f,0x12,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x77,0xa,0xa,0x98,0x1f,0x89,0x0,0x0,0x38,0x29,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0xde,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0xf5,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0x6f,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x75,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0x74,0xa,0xda,0x50,0x7e,0x0,0x0,0x81,0x1,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x62,0xa,0xea,0x46,0xf4,0x0,0x0,0x5e,0xb5,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x9c,0xb,0xa,0x72,0xc9,0x0,0x0,0x3b,0x67,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0xe8,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5a,0x9b,0xb,0x29,0x70,0x65, + 0x0,0x0,0x48,0x18,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xb8,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xb0,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0xf7,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xb4,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x49,0xb,0x95,0xed,0xa, + 0x0,0x0,0x56,0x83,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0xc9,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x3f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6e,0xe3,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x72,0x1c,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xeb,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0xe7,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4e,0x3e,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x89,0x48,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x65,0xc9,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x77,0xad,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x2f,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0xe,0xc,0x33,0xeb,0xe2,0x0,0x0,0x78,0x11,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0xb8,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xe7,0xc,0x48,0x83,0xde, + 0x0,0x0,0x67,0xbf,0xc,0x4a,0x5f,0x82,0x0,0x0,0x50,0x3f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x7a,0xb,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0xf6,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3c,0x54,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x7,0x2c,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x97,0xc,0x90,0x26,0xb5,0x0,0x0,0x81,0xa1,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x62,0xda,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x68,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x71,0x23,0xc,0xc8,0xdd,0x32,0x0,0x0,0x8,0x1e,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x60,0x3c,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x84,0x18,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x66,0xd5,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xf2,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xb4,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x88,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x85,0xee,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6b,0x5f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x87,0x1a,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0xb9,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x37,0x1b,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x9d,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3b,0x2c,0xd,0x88,0x48,0x23,0x0,0x0,0x32,0x25,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0xb6,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0xee,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x87,0xfb,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5f,0x84,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x86,0xf0,0xe,0x20,0x13,0x12,0x0,0x0,0x45,0x26,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x3f,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xb0,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x32,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xf1,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x73,0xe,0x62,0x79,0x4,0x0,0x0,0x3c,0x1b,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x71,0xe,0x7b,0xa1,0x23,0x0,0x0,0x56,0x24,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0xa0,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x35,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x69,0x30,0xe,0xbe,0x61,0x81,0x0,0x0,0x70,0x3b,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x70,0x75,0xe,0xbe,0x61,0x83,0x0,0x0,0x70,0xaf,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x70,0xe9,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0xf9,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x9f,0xe,0xe2,0x34,0x60,0x0,0x0,0x88,0xf4,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x89,0x1e,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x9d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xe8,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x68,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x89,0xb5,0xf,0x15,0xf4,0x85,0x0,0x0,0x4f,0x2a,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x79,0x1f,0xf,0x17,0x9c,0x64,0x0,0x0,0x83,0x4b,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x61,0xac,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x93,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x43,0xd,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0xd9,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x74,0x5,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x79,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0xb,0xf,0x70,0xaa,0x1a,0x0,0x0,0x86,0x32,0xf,0x74,0xd,0xca, + 0x0,0x0,0x6a,0xe6,0xf,0x85,0x7b,0xea,0x0,0x0,0x63,0x6,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xca,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x71,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x69,0xe2,0xf,0xd3,0x41,0x72,0x0,0x0,0x3d,0x54,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x52,0x8c,0xf,0xd9,0x8c,0xca,0x0,0x0,0x53,0xe,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0xcd,0xf,0xd9,0x8f,0xca,0x0,0x0,0x53,0x4f,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3f,0x9b,0xf,0xe2,0xe9,0x49,0x0,0x0,0x87,0x73,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x63,0xa9,0xf,0xf5,0xeb,0x52,0x0,0x0,0x63,0xed,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x64,0x31,0xf,0xf5,0xeb,0x54,0x0,0x0,0x64,0x75,0x69,0x0,0x0,0x8a, + 0x39,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x84,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x6e,0x0,0xe9,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x44, + 0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x6e,0x0,0x76,0x0,0x6f,0x0,0x79,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0xe0, + 0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0xe9, + 0x0,0x6e,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0xe9,0x0,0x73, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f, + 0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c, + 0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0xe9,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x28,0x0,0x73,0x0,0x29,0x0, + 0x20,0x0,0x64,0x0,0x27,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x54,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42, + 0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x41,0x0,0x20, + 0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x75, + 0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x56,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x70,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f, + 0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x79,0x0, + 0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x44,0x0, + 0xe9,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x78, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45, + 0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x46,0x0,0x69, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x26,0x0,0x44,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26, + 0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0xe9, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x26,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x45,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x41,0x0,0x69,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0, + 0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0xe8,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67, + 0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x26,0x0, + 0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe9,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64, + 0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d, + 0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x75,0x0,0x70,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0, + 0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e, + 0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x75,0x0,0x76, + 0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x4a,0x0,0x6f,0x0,0x75,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0xe9,0x0,0x66,0x0, + 0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72, + 0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0, + 0x20,0x0,0x54,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x47,0x0,0x72,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x45,0x0,0x6e,0x0,0x26, + 0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x63,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52, + 0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x53,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6d,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x53,0x0,0x26,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6d,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x46,0x0,0x65,0x0,0x6e, + 0x0,0xe8,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x52,0x0,0x65, + 0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c, + 0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x72,0x0,0x6f,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x47,0x0,0x61,0x0,0x75, + 0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4c, + 0x0,0x6f,0x0,0x67,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28, + 0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x53,0x0,0xe9,0x0,0x26,0x0,0x6c,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26, + 0x0,0x52,0x0,0xe9,0x0,0x67,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0xe9,0x0, + 0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x70,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0, + 0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x28,0x0, + 0x4b,0x0,0x65,0x0,0x65,0x0,0x70,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26, + 0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b, + 0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0, + 0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xe9,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x75,0x0,0x26,0x0,0x74,0x0,0x69, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x4d,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0xe0,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x26,0x0,0x75,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61, + 0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53, + 0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x75,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x45,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x28,0x0,0x44,0x0,0xe9, + 0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0xe8,0x0,0x6d,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74, + 0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0, + 0x72,0x0,0xe9,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x31,0x0,0x25,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x50,0x0,0x72,0x0,0xe9,0x0,0x63,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0,0x72,0x0,0xe9,0x0,0x63,0x0,0x69, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x69,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x32,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x6f,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0, + 0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35, + 0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d, + 0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20, + 0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x20,0x0,0x28, + 0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22, + 0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20, + 0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0, + 0x69,0x0,0xe8,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8c,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x53,0x0,0x27,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66, + 0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a, + 0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62, + 0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73, + 0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22, + 0x0,0x3e,0x0,0x74,0x0,0xe9,0x0,0x6c,0x0,0xe9,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x7a,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x6d,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x79,0x0,0x65,0x0,0x7a,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x41,0x0,0x72,0x0,0x72,0x0,0xea,0x0,0x74,0x0,0x20,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50, + 0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0xc0,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x41,0x0,0x6a,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x41,0x0,0x6a,0x0,0x6f, + 0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x6f,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x6f,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41, + 0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x4,0x4,0x0,0x55,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x78,0x0,0x20, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4c, + 0x0,0x69,0x0,0x62,0x0,0xe9,0x0,0x72,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45, + 0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66, + 0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa, + 0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47, + 0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c, + 0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61, + 0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43, + 0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64, + 0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e, + 0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61, + 0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64, + 0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79, + 0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c, + 0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77, + 0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c, + 0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d, + 0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69, + 0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e, + 0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa, + 0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f, + 0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73, + 0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b, + 0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e, + 0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73, + 0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73, + 0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61, + 0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61, + 0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45, + 0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4e,0x0,0x45,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0, + 0x75,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0xfb,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x45,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0xfb, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0xe9,0x0,0x65,0x0,0x20,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e, + 0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48, + 0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x62,0x0, + 0x61,0x0,0x73,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0xe9,0x0, + 0x6d,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4c, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41, + 0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41, + 0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67, + 0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x86,0x0,0x4c,0x0,0x61,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63, + 0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0xe9,0x0,0x73,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x63, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0xe9,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x65, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x6c,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0xe9,0x0,0x2e, + 0x0,0x20,0x0,0x43,0x0,0x65,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x69,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x63,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4c,0x0,0x27, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x75, + 0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x67, + 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x74,0x0,0x20, + 0x0,0xea,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x72, + 0x0,0x6d,0x0,0xe9,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x65, + 0x0,0x20,0x0,0xe9,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6e,0x0,0x6e, + 0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x75,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x6f,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x69, + 0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63, + 0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72, + 0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x56,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0, + 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0, + 0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0, + 0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe9,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0, + 0x68,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69, + 0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0xe9,0x0,0x20,0x0,0x28,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0xe9,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46, + 0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x44,0x0,0xe9,0x0,0x66, + 0x0,0x61,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x66,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0xe9,0x0,0x73,0x0,0x61,0x0,0x63, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0xe9,0x0,0xe9,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0xe9,0x0,0x6a,0x0,0xe0,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x20,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x90,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x54,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41,0x0, + 0x66,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x56,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x67,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0xe8,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x46,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x75, + 0x0,0x76,0x0,0x65,0x0,0x61,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69, + 0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52,0x0,0x65,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x28,0x0, + 0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20, + 0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0xe9,0x0,0x67,0x0,0x6c,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x45,0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x51, + 0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45, + 0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44, + 0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x4c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x70,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0xf4,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69, + 0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0xe9,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0, + 0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x28,0x0,0x26, + 0x0,0x4c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0, + 0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x50,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74,0x0,0x68, + 0x0,0xe9,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20, + 0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0xc9,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x63,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0, + 0x20,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x72,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0x61,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d, + 0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x46, + 0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4c,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x4c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0, + 0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x73,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x47,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79, + 0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f, + 0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61, + 0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70, + 0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0xe0, + 0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x4c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0, + 0x63,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x35,0x0,0x31,0x0, + 0x32,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20, + 0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65, + 0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x75,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0, + 0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x4d,0x0,0x61,0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,0x0,0xea,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65, + 0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x48,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x69,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0xe9,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x48,0x0, + 0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c, + 0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70, + 0x0,0x68,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35, + 0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x6d,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x6f,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x72,0x0,0xe9,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75, + 0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x45,0x0, + 0x6e,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x27,0x0,0x69,0x0,0x63,0x0,0xf4,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0xe9,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0,0xf4,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61, + 0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x69,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x63,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x27,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0xe9,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d, + 0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4d,0x0,0x61,0x0,0x67, + 0x0,0x6e,0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x74, + 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4c,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x6e,0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x6e,0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x70,0x0,0x74, + 0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x18,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x61,0x0,0x62, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73, + 0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e, + 0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f, + 0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67, + 0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xce,0x0,0x41,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0, + 0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0, + 0x65,0x0,0x74,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x73,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x64,0x0,0x41,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x7a,0x0, + 0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xd4,0x0,0x41,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x75, + 0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74, + 0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x63, + 0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe9,0x0,0x6d,0x0,0x6f,0x0, + 0x69,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63, + 0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65, + 0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20, + 0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe9,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74, + 0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0xe9,0x0,0x73, + 0x0,0x65,0x0,0x61,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x41,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72, + 0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x41,0x0,0x75,0x0, + 0x63,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x75,0x0, + 0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0, + 0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x75,0x0,0x76,0x0, + 0xe9,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x63,0x0,0x75,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x6b, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x6c,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0xe9,0x0,0x73,0x0,0x61,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x4c,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x75,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0xea,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0xe9,0x0,0x2e,0x0,0x20,0x0, + 0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65, + 0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64, + 0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53, + 0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70, + 0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70, + 0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x73, + 0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0xc9,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x66, + 0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0, + 0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0, + 0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20, + 0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0xe8,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0xe8,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0xe8,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0xe8,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0, + 0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x66,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x78,0x0,0xe9,0x0, + 0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x63,0x0, + 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x58,0x0,0x56,0x0,0x65,0x0,0x75,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0xe9,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50, + 0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0, + 0xe9,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x53,0x0,0x75,0x0, + 0x70,0x0,0x70,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x41, + 0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74, + 0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6e,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79,0x0, + 0x65,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0, + 0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0xea,0x0,0x74,0x0,0x72,0x0, + 0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0, + 0x79,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x75,0x0, + 0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x0,0x72,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x72,0x0, + 0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65, + 0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64, + 0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x41,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x79, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x46, + 0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0xe9,0x0,0x72, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0xe8,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x49, + 0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0,0x26,0x0,0x61,0x0,0x75, + 0x0,0x76,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x26,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x43,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x75,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xe9,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0, + 0x4e,0x0,0x27,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x65,0x0, + 0x7a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x74,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x72,0x0,0xe9,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0,0xe9,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x65,0x0,0x70,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x27,0x0,0x65,0x0,0x78,0x0,0xe9,0x0,0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73, + 0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x67, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x7a,0x0,0x53,0x0,0x61,0x0,0x75,0x0,0x76,0x0,0x65,0x0,0x67,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0xe8,0x0, + 0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x75,0x0, + 0x72,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0xe9,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73, + 0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67, + 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0,0xe9,0x0,0x6c,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64, + 0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70, + 0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64, + 0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x53,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe9,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0xe9,0x0,0x67,0x0, + 0x6c,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x6f,0x0,0x29,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42, + 0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4c,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42, + 0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x74, + 0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x53,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x26,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61, + 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x70,0x0,0xe9,0x0,0x63,0x0,0x69,0x0,0x66, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x6e,0x0,0xea,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57, + 0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x70,0x0, + 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x56,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x73,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x56,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34, + 0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x6d,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34, + 0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x28,0x0,0x73,0x0, + 0x29,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0, + 0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0, + 0x34,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0,0x36,0x0,0x20, + 0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x61,0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62,0x0, + 0x6f,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x63, + 0x0,0x6b,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72, + 0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0, + 0x70,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x63,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x75,0x0,0x78,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x72,0x0,0x61,0x0, + 0xee,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x49,0x0, + 0x44,0x0,0x45,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x61,0x0,0x69,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x60,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0xe9,0x0, + 0x73,0x0,0x65,0x0,0x61,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x20,0x0, + 0x70,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x90,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0xe9,0x0, + 0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0xe9,0x0, + 0x63,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0xe9,0x0,0x2e,0x0,0x20,0x0,0x45,0x0, + 0x74,0x0,0x65,0x0,0x73,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x73,0x0,0xfb,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x76,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x72,0x0,0x20,0x0, + 0x6c,0x0,0x27,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2, + 0x1c,0x0,0x49,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0xe9,0x0, + 0x74,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0xe8,0x0,0x73,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0xe9,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0xe0,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0xe9,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x6c,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0xea,0x0,0x6d,0x0,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x20,0x0, + 0xe9,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0xe9,0x0,0x70,0x0,0x6c,0x0, + 0x61,0x0,0x63,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x62,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6e,0x0, + 0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0xe9,0x0, + 0xe9,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f, + 0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c, + 0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69, + 0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65, + 0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x84,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xee,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0xe9,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x6c,0x0,0xe8,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0xe9,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a, + 0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, + 0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0xe8,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0xf4,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x79,0x0,0x6e, + 0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f, + 0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20, + 0x0,0x6e,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x49,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x49,0x0,0x6d,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x6e,0x0,0xe9,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x69, + 0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x63,0x0, + 0x63,0x0,0xe9,0x0,0x6c,0x0,0xe9,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x6c,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61, + 0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x49,0x0,0x6d,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x67,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0xe9,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20, + 0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0xe9,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0, + 0x20,0x0,0x45,0x0,0x63,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x22,0x0,0x4c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25, + 0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x27,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27, + 0x0,0x61,0x0,0x62,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x42, + 0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0xe9,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0xc9,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x42,0x0,0x69,0x0,0x65,0x0, + 0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57, + 0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63, + 0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69, + 0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x6c,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x64,0x0,0x56,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61, + 0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25, + 0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30, + 0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4c, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_en-US.qm + 0x0,0x0,0x8b,0x55, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x26,0x23,0x0,0x0,0x0,0x48, + 0x0,0x0,0x42,0xf1,0x0,0x0,0x0,0x53,0x0,0x0,0x63,0x6a,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x48,0x0,0x0,0x4,0xf2,0x0,0x0,0x4b,0xd9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x4d,0x9e,0x0,0x0,0x5,0x3b,0x0,0x0,0x57,0xa6,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x57,0xdf,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xe1,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x29,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x71,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xb0,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0xf8,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x40,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x88,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xa6,0x0,0x0,0x49,0xc3,0x0,0x0,0x25,0xe4,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x47,0xe0,0x0,0x0,0x4d,0x85,0x0,0x0,0x47,0xfe,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x57,0xc1,0x0,0x0,0x5d,0x81,0x0,0x0,0x7b,0xa9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x25,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0x8f,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x11,0x82,0x0,0x4,0x8c,0xaf,0x0,0x0,0x24,0x70,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x26,0x2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3a,0x39,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x3e,0xc8,0x0,0x4,0xc8,0xa4,0x0,0x0,0x3f,0xbb,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3d,0x7b,0x0,0x4,0xd0,0x25,0x0,0x0,0x40,0x12,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x42,0x6d,0x0,0x5,0x56,0x45,0x0,0x0,0x57,0x31,0x0,0x5,0x78,0x79, + 0x0,0x0,0x63,0x82,0x0,0x5,0x98,0xc5,0x0,0x0,0x64,0x66,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x67,0x8d,0x0,0x5,0xc0,0x65,0x0,0x0,0x74,0x5f,0x0,0x12,0x74,0x52, + 0x0,0x0,0x18,0x12,0x0,0x19,0x74,0x52,0x0,0x0,0x18,0x4b,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xbd,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xb,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0xeb,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0xc9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x11,0xca,0x0,0x34,0x9,0xc8,0x0,0x0,0x13,0x3e,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x76,0xe7,0x0,0x3b,0xa9,0x68,0x0,0x0,0x18,0xd2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1b,0x75,0x0,0x4c,0x99,0x62,0x0,0x0,0x3c,0x70,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x33,0x7f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x63,0x1,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6a,0x4b,0x0,0x5a,0x6c,0x44,0x0,0x0,0x68,0x2,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x73,0xff,0x0,0x5c,0x6,0x8a,0x0,0x0,0x74,0x80,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x7e,0x25,0x0,0x73,0x75,0x3e,0x0,0x0,0x32,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x56,0xf5,0x0,0x97,0x96,0x4,0x0,0x0,0x34,0xcc,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4a,0x17,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4b,0xa9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x45,0x8e,0x0,0xb8,0x5f,0x43,0x0,0x0,0x59,0x77,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x17,0xd9,0x1,0x9,0x1c,0x92,0x0,0x0,0x3e,0x38,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x28,0xae,0x1,0x39,0xa4,0xce,0x0,0x0,0x53,0xb6,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x74,0x23,0x1,0x4c,0x50,0xee,0x0,0x0,0x61,0x6,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x45,0x4f,0x1,0x61,0xac,0xc9,0x0,0x0,0x12,0x7e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x72,0xa0,0x1,0x7a,0x2c,0x99,0x0,0x0,0x38,0xcb,0x1,0x91,0xe,0x73, + 0x0,0x0,0x26,0xc5,0x1,0x9c,0xe0,0x83,0x0,0x0,0x47,0x92,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x4f,0x9,0x1,0xb0,0x47,0x5c,0x0,0x0,0x4d,0xb9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x2f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3d,0x9c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0xe3,0x1,0xdd,0x59,0x87,0x0,0x0,0xe,0xa3,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2f,0x4a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x64,0x2a,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6a,0x96,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0xcc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x6c,0x13,0x2,0x23,0x3c,0x6b,0x0,0x0,0x6b,0xb0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x6b,0x4d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x15,0xa8,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x47,0x17,0x2,0x78,0x48,0x1a,0x0,0x0,0x4e,0xc7,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x7c,0x9,0x2,0x90,0x8d,0x12,0x0,0x0,0x3e,0xe9,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x59,0xfe,0x2,0xad,0x4a,0x22,0x0,0x0,0x61,0x69,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xa9,0x2,0xb3,0xba,0xf1,0x0,0x0,0xb,0xc4,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xc,0xa2,0x2,0xbb,0x66,0x33,0x0,0x0,0x10,0xfe,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x11,0xa3,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x59,0xb6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x7e,0x49,0x3,0x5,0x38,0xb2,0x0,0x0,0x3c,0x94,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x5d,0x3d,0x3,0x41,0x45,0x12,0x0,0x0,0x13,0x62,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x14,0x34,0x3,0x4b,0x26,0xf2,0x0,0x0,0x14,0x5b,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x4d,0xe3,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xd,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x17,0x34,0x3,0x6a,0x66,0x2e,0x0,0x0,0x51,0xfd,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x4f,0xf6,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0x74,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2e,0x15,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x63,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x18,0x84,0x3,0xa4,0x35,0xa5,0x0,0x0,0x3e,0xa8,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x3e,0x7a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x18,0xab,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x54,0x79,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x6a,0xe1,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x69,0x4c,0x3,0xe4,0x25,0x5a,0x0,0x0,0x69,0x10,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x68,0xd4,0x3,0xe4,0x25,0x7a,0x0,0x0,0x68,0x98,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xc4,0x4,0x3,0xf6,0x9a,0x0,0x0,0x51,0x94,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x15,0xff,0x4,0x15,0x75,0x22,0x0,0x0,0x13,0x89,0x4,0x17,0x65,0x22, + 0x0,0x0,0x13,0xb3,0x4,0x1c,0x68,0x69,0x0,0x0,0x15,0x4e,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xa4,0x4,0x31,0xff,0xe9,0x0,0x0,0x24,0x91,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x27,0x7f,0x4,0x51,0x79,0xb1,0x0,0x0,0x6d,0x3,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x75,0x76,0x4,0x5b,0x53,0x1f,0x0,0x0,0x23,0xb0,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x68,0x65,0x4,0x7d,0xb,0xa4,0x0,0x0,0x39,0x76,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x39,0x9d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x31,0xd5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2d,0x46,0x4,0xb8,0x1,0x2e,0x0,0x0,0x36,0x4,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xf,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xa6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x16,0xb3,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x55,0xc6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x30,0x88,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x16,0x59,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1c,0x17,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x55,0xf0,0x4,0xeb,0x2f,0xa,0x0,0x0,0x4c,0xd8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x46,0xc6,0x5,0x18,0x5,0x95,0x0,0x0,0x77,0x53,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x14,0xd3,0x5,0x30,0xd3,0xe,0x0,0x0,0x38,0x14,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x55,0x9f,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x7c,0xde,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0x5a,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x39,0xf1,0x5,0x88,0x2e,0xd9,0x0,0x0,0x67,0xae,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x50,0x20,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x73,0xae,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x6e,0x5,0x5,0xa5,0x3a,0x79,0x0,0x0,0x24,0xd9,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6a,0x6f,0x5,0xb2,0x16,0x79,0x0,0x0,0x61,0xcc,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x43,0xde,0x5,0xb3,0x5f,0x79,0x0,0x0,0x45,0xa,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3c,0x13,0x5,0xb8,0x5d,0xad,0x0,0x0,0x14,0x82,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x12,0xed,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x13,0xdd,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x47,0x56,0x5,0xc1,0x4d,0x83,0x0,0x0,0x35,0x44,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x7a,0x35,0x5,0xd0,0x4f,0x11,0x0,0x0,0x7a,0xd7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0x58,0x5,0xdf,0xba,0xba,0x0,0x0,0x7b,0x1f,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x60,0x76,0x6,0x7,0xd3,0xda,0x0,0x0,0x49,0x21,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x34,0xf9,0x6,0x19,0x20,0x43,0x0,0x0,0x64,0x87,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x37,0xde,0x6,0x38,0x9f,0x35,0x0,0x0,0x35,0xb3,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1d,0x70,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x6f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x30,0xb8,0x6,0x6c,0xb8,0x3,0x0,0x0,0x78,0x88,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x45,0xd3,0x6,0x74,0xe,0x6a,0x0,0x0,0x5a,0xc1,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x46,0x3c,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1b,0xe1,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3a,0xdb,0x6,0x81,0xb7,0x1f,0x0,0x0,0x36,0xf1,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x69,0x88,0x6,0x96,0xa4,0x13,0x0,0x0,0x41,0x44,0x6,0x97,0x71,0x79, + 0x0,0x0,0x63,0xe8,0x6,0xc3,0xce,0xa3,0x0,0x0,0x6c,0x76,0x6,0xce,0x41,0x63, + 0x0,0x0,0x41,0xda,0x6,0xed,0xca,0xce,0x0,0x0,0x43,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x80,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x4c,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x46,0x6,0x7,0x0,0x57,0x53,0x0,0x0,0x26,0x3b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x4f,0xc6,0x7,0x6,0x93,0xe3,0x0,0x0,0x7d,0xbc,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1d,0x3d,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1c,0xb6,0x7,0x2a,0xb5,0xca,0x0,0x0,0x67,0x5a,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x55,0x0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x48,0xaf,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x5c,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x17,0xa6,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x30,0x31,0x7,0x58,0x61,0xe5,0x0,0x0,0x46,0x6f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0x25,0x7,0x70,0xb3,0xaa,0x0,0x0,0x40,0x33,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2d,0x16,0x7,0x9e,0x50,0x1e,0x0,0x0,0x63,0x25,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x51,0xd0,0x7,0xa3,0x63,0x9e,0x0,0x0,0x62,0x41,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x58,0x45,0x7,0xa4,0x32,0x89,0x0,0x0,0x1b,0x99,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x78,0x43,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x46,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x76,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x25,0x15,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x5e,0x7e,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x5e,0x33,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3a,0x5a,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x63,0xa3,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x48,0x5e,0x8,0x0,0x3f,0x29,0x0,0x0,0x5d,0xb5,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x54,0xa3,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0x3c,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x4d,0x56,0x8,0x60,0xe7,0xcd,0x0,0x0,0x73,0x33,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5a,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x13,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x74,0xa4,0x8,0x9b,0xc,0x24,0x0,0x0,0x65,0xe9,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4a,0xb9,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4b,0x6d,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4a,0xf5,0x8,0xa4,0xb,0xae,0x0,0x0,0x4b,0x31,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x39,0x25,0x8,0xa9,0xcf,0x35,0x0,0x0,0x2e,0xa2,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3c,0xfa,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xcf,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3b,0x7d,0x8,0xf7,0xb3,0xda,0x0,0x0,0x41,0x9b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x4d,0x8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x31,0x5d,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x31,0x99,0x9,0x49,0xfa,0x6a,0x0,0x0,0x30,0xe5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x31,0x21,0x9,0x4e,0xde,0x64,0x0,0x0,0x75,0x1,0x9,0x50,0x63,0x15, + 0x0,0x0,0x56,0x71,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0xff,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x17,0x5b,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x47,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x5f,0x6b,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xce,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2d,0x6d,0x9,0x88,0x63,0x1a,0x0,0x0,0x2d,0x97,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2d,0xc1,0x9,0x88,0x63,0x3a,0x0,0x0,0x2d,0xeb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x16,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x2d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x5e,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x56,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x5c,0x29,0x9,0xc2,0x33,0xa9,0x0,0x0,0x14,0xfd,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x55,0x54,0x9,0xd5,0x43,0xd3,0x0,0x0,0x32,0xcb,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0x1d,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0x53,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3b,0xce,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x37,0xa,0x41,0x77,0x3, + 0x0,0x0,0x40,0xf6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1b,0x39,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x42,0x10,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3b,0x41,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4a,0x65,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x6,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x77,0xa4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x65,0x3e,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x6c,0xc4,0xa,0x98,0x1f,0x89,0x0,0x0,0x33,0xfd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x33,0xb2,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x49,0x8d,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x33,0x4f,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x53,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x34,0x48,0xa,0xda,0x50,0x7e,0x0,0x0,0x76,0x15,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x0,0xa,0xea,0x46,0xf4,0x0,0x0,0x56,0xa1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x34,0x72,0xb,0xa,0x72,0xc9,0x0,0x0,0x36,0xc7,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xc8,0xb,0x1e,0xee,0xfe,0x0,0x0,0x53,0x23,0xb,0x29,0x70,0x65, + 0x0,0x0,0x42,0x8e,0xb,0x30,0x4b,0xa2,0x0,0x0,0xb,0x9a,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0x78,0xb,0x4e,0x19,0x54,0x0,0x0,0x4e,0x31,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0x6e,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0xef,0xb,0x95,0xed,0xa, + 0x0,0x0,0x4f,0x93,0xb,0x9d,0xe,0xa2,0x0,0x0,0x30,0x1,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x65,0x11,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x68,0x26,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x23,0x2f,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x44,0x23,0xb,0xe2,0xf9,0x49,0x0,0x0,0x48,0x1c,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x7d,0x86,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x5d,0x7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x6d,0x63,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0xed,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xf,0x9c,0xc,0x33,0xeb,0xe2,0x0,0x0,0x6d,0xab,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x40,0x66,0xc,0x42,0x70,0xde,0x0,0x0,0x27,0x1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x5e,0xc9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x49,0xc9,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x6f,0xbb,0xc,0x77,0x67,0x19,0x0,0x0,0x40,0xa2,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x37,0x9c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x30,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x2e,0xcf,0xc,0x90,0x26,0xb5,0x0,0x0,0x76,0x99,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5a,0x58,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x26,0x86,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x67,0x2d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xfc,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x57,0xfa,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x78,0xb8,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x5d,0xfd,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x18,0xf6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1c,0x6e,0xd,0x11,0x45,0x1a,0x0,0x0,0x25,0xae,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x7a,0x5c,0xd,0x4a,0x90,0xb2,0x0,0x0,0x62,0x11,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x7b,0x70,0xd,0x60,0xef,0x6a,0x0,0x0,0x49,0x51,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x33,0x7,0xd,0x77,0xa4,0xc0,0x0,0x0,0x3f,0x67,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x36,0x94,0xd,0x88,0x48,0x23,0x0,0x0,0x2e,0x5d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x39,0xc4,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0xdc,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x7c,0x45,0xd,0xf9,0x90,0xe9,0x0,0x0,0x57,0x52,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x7b,0x46,0xe,0x20,0x13,0x12,0x0,0x0,0x3f,0xdc,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x10,0xb9,0xe,0x48,0xfa,0xca,0x0,0x0,0x27,0xca,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x28,0x3c,0xe,0x48,0xfd,0xca,0x0,0x0,0x28,0x3,0xe,0x48,0xff,0xca, + 0x0,0x0,0x28,0x75,0xe,0x62,0x79,0x4,0x0,0x0,0x37,0x69,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1d,0xd,0xe,0x7b,0xa1,0x23,0x0,0x0,0x4f,0x4e,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2f,0xd4,0xe,0x98,0x18,0x54,0x0,0x0,0x25,0x63,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x60,0xa,0xe,0xbe,0x61,0x81,0x0,0x0,0x66,0x3d,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x66,0x79,0xe,0xbe,0x61,0x83,0x0,0x0,0x66,0xb5,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x66,0xf1,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x46,0xed,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x12,0xc3,0xe,0xe2,0x34,0x60,0x0,0x0,0x7d,0x32,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x7d,0x5c,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0x8d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xd,0x98,0xe,0xf7,0xac,0xae,0x0,0x0,0xf,0xe4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x7d,0xef,0xf,0x15,0xf4,0x85,0x0,0x0,0x48,0xdc,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x6e,0xd1,0xf,0x17,0x9c,0x64,0x0,0x0,0x77,0xfb,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x59,0x38,0xf,0x29,0x4d,0x2a,0x0,0x0,0x43,0x9,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x3d,0xf9,0xf,0x30,0x6b,0x3,0x0,0x0,0x2f,0x11,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x69,0xf7,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0x2d,0xf,0x70,0xaa,0x1a,0x0,0x0,0x7a,0x9e,0xf,0x74,0xd,0xca, + 0x0,0x0,0x61,0x9c,0xf,0x85,0x7b,0xea,0x0,0x0,0x5a,0x88,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x11,0xee,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0x2f,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x60,0xa6,0xf,0xd3,0x41,0x72,0x0,0x0,0x38,0x80,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4b,0xf4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x4c,0x66,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4c,0x2d,0xf,0xd9,0x8f,0xca,0x0,0x0,0x4c,0x9f,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3a,0x9f,0xf,0xe2,0xe9,0x49,0x0,0x0,0x7b,0xc7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5b,0x21,0xf,0xf5,0xeb,0x52,0x0,0x0,0x5b,0x63,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x5b,0xa5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x5b,0xe7,0x69,0x0,0x0,0x7e, + 0x73,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x40,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x28,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x66,0x0, + 0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35, + 0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66,0x0,0x70, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x41,0x0,0x62, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x62,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0, + 0x2d,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x73,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x41,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x44,0x0,0x65,0x0, + 0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x46,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x26,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x48,0x0,0x65,0x0,0x6c,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26, + 0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0, + 0x4b,0x0,0x65,0x0,0x79,0x0,0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62, + 0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x47,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x61,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f, + 0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x67,0x0,0x69,0x0, + 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x67,0x0,0x68, + 0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x41, + 0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52, + 0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66, + 0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x53,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x53,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x78,0x0, + 0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4b,0x0,0x65,0x0,0x65,0x0, + 0x70,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x20,0x0,0x77,0x0,0x69,0x0, + 0x74,0x0,0x68,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x54,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x55,0x0, + 0x70,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x57,0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x77,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0, + 0x70,0x0,0x74,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x62, + 0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42, + 0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49, + 0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22, + 0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30, + 0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20, + 0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x49,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x58,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x6c,0x0,0x6f, + 0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x75,0x0, + 0x74,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41, + 0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x62,0x0,0x6f,0x0,0x75,0x0, + 0x74,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0, + 0x64,0x0,0x64,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x64,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x65, + 0x0,0x77,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x64, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xc6,0x0,0x41,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xa, + 0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x73, + 0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61, + 0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47, + 0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64, + 0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79, + 0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x65, + 0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45, + 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f, + 0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65, + 0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72, + 0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c, + 0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37, + 0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b, + 0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72, + 0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68, + 0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c, + 0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65, + 0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20, + 0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, + 0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75, + 0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e, + 0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e, + 0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29, + 0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65, + 0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75, + 0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74, + 0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20, + 0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20, + 0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65, + 0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20, + 0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65, + 0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63, + 0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f, + 0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43, + 0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e, + 0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79, + 0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0, + 0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0, + 0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x61,0x0, + 0x73,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x65,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61, + 0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x20, + 0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x2,0xe2,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79, + 0x0,0x70,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x20, + 0x0,0x48,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79, + 0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x45,0x0,0x6e, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69, + 0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20, + 0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69, + 0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20, + 0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63, + 0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74, + 0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20, + 0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79, + 0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65, + 0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72, + 0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62, + 0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61, + 0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74, + 0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63, + 0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0, + 0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e, + 0x0,0x43,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20, + 0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e, + 0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67, + 0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x78,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x50,0x0,0x43,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44, + 0x0,0x65,0x0,0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20, + 0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x6f,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x44,0x0,0x6f,0x0,0x6e,0x0,0x27,0x0,0x74,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x44,0x0,0x6f,0x0,0x6e, + 0x0,0x27,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x77,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x67,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0, + 0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x26, + 0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x45,0x0,0x26,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x78, + 0x0,0x69,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x61,0x0,0x72,0x0,0x6c,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72, + 0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64, + 0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x45,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x66,0x0,0x75,0x0, + 0x6c,0x0,0x6c,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x57,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x2d,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x46,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46, + 0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74,0x0,0x68,0x0,0x20, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x46,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0, + 0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0, + 0x61,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75, + 0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x46,0x0,0x61,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x46,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x74, + 0x0,0x68,0x0,0x6f,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x46,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x64,0x0,0x2d,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x46,0x0,0x6c,0x0,0x6f, + 0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44, + 0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x76,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65, + 0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x73,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e, + 0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44, + 0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x74,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x48,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77, + 0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,0x0,0x65, + 0x0,0x61,0x0,0x64,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x48,0x0,0x65,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0, + 0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c, + 0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20, + 0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34, + 0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x4d,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0, + 0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x49,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0, + 0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0, + 0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x20,0x0, + 0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4c, + 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4c,0x0,0x6f, + 0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x0,0x44,0x0, + 0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0, + 0x20,0x0,0x44,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xea,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77, + 0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x70, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xb6,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4d,0x0,0x61,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0,0x61, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x79,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x65, + 0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f, + 0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x65,0x0, + 0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x79,0x0, + 0x70,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x65,0x0,0x77,0x0,0x20,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0,0x66,0x0,0x66,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70, + 0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0, + 0x64,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x50,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f, + 0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x64,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5c,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x20,0x0,0x46,0x0,0x38, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72, + 0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x51,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x79, + 0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61, + 0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x26, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x26,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x52,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x65,0x0, + 0x6d,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x77,0x0,0x6c,0x0,0x79,0x0,0x2d,0x0,0x63,0x0, + 0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x64,0x0, + 0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70, + 0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72, + 0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x65,0x0, + 0x73,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0, + 0x63,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63, + 0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x61, + 0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0, + 0x61,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x66,0x0,0x61,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x69, + 0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72, + 0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63, + 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x53,0x0,0x69,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69, + 0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x53,0x0,0x6c,0x0,0x6f,0x0,0x77,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x53,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x73,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e, + 0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x6f, + 0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x6f,0x0, + 0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x47,0x0,0x61,0x0,0x69,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64, + 0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x33,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53, + 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20,0x0,0x4d, + 0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64, + 0x0,0x6f,0x0,0x77,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x53,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x79,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x65,0x0,0x64,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x62,0x0, + 0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x62,0x0,0x75,0x0,0x74,0x0, + 0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x36,0x0,0x2d,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62, + 0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x38,0x0,0x2d,0x0, + 0x62,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72, + 0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x75,0x0,0x72, + 0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x54,0x0,0x61,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x26,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x68,0x0,0x6f,0x0,0x74,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65, + 0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x67,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x79,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72, + 0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x54,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54, + 0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65, + 0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8e,0x0,0x54,0x0,0x68,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x69,0x0, + 0x6c,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x77,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x79,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54, + 0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69, + 0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75, + 0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1, + 0xe0,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x75,0x0,0x6c,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x74,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x77,0x0, + 0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x66,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0, + 0x6e,0x0,0x67,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x20,0x0,0x77,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0, + 0x74,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0, + 0x73,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x69,0x0,0x66,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x64,0x0,0x20,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x65,0x0, + 0x64,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x67,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x68,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x64,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x44,0x0, + 0x6f,0x0,0x20,0x0,0x79,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x77,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x78,0x0,0x20,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x54,0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x20, + 0x0,0x77,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72, + 0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20, + 0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x65,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x55,0x0,0x6e, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c, + 0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x55,0x0,0x6e,0x0, + 0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x79,0x0, + 0x62,0x0,0x6f,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x63,0x0, + 0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74, + 0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x55,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x55,0x0, + 0x6e,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73, + 0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x6e,0x0,0x61,0x0, + 0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x77,0x0, + 0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0,0x6e,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0, + 0x6e,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x26,0x0,0x74,0x0,0x79,0x0,0x70,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74, + 0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf0,0x0,0x56, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20, + 0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79, + 0x0,0x2e,0x0,0x20,0x0,0x53,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61, + 0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f, + 0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e, + 0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x57,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0, + 0x65,0x0,0x6c,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x74,0x0,0x68,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x66,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x59,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0, + 0x61,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pt-PT.qm + 0x0,0x0,0x96,0x3b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xeb,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0x1d,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0xb6,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0xae,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0xbd,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0xae,0x0,0x0,0x5,0x3b,0x0,0x0,0x5f,0x14,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5f,0x5b,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x47,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x8f,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xd7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x5,0x16,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x5e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xa6,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xee,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0xc,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x96,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x7a,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x98,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5f,0x2f,0x0,0x0,0x5d,0x81,0x0,0x0,0x86,0x7d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x71,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xf5,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xe6,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xf0,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xc2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x61,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x66,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x6d,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xf5,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xc6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x75,0x0,0x5,0x56,0x45,0x0,0x0,0x5e,0x9f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0xce,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0xb2,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x70,0x2f,0x0,0x5,0xc0,0x65,0x0,0x0,0x7e,0x25,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xc2,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xfb,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x23,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xb3,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xa7,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x95,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x2e,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xc8,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x81,0x49,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x82,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x53,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xc4,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x4f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6b,0x45,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x73,0x27,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0xac,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7d,0xbf,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7e,0x46,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x89,0xb,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xdc,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5e,0x41,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x9c,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xef,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x8d,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xea,0x0,0xb8,0x5f,0x43,0x0,0x0,0x61,0x21,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x89,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xc6,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xaa,0x1,0x39,0xa4,0xce,0x0,0x0,0x5a,0xc4,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0xe3,0x1,0x4c,0x50,0xee,0x0,0x0,0x69,0x3e,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0xa5,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0xf0,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7c,0x42,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xc9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x91,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0x2c,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0x49,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0xc9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xd9,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x16,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xa1,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xaf,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x94,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6c,0x76,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x73,0x86,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x58,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x75,0x1d,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0xae,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x74,0x3f,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x56,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0xb3,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0xff,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x86,0xdd,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x87,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x61,0xb0,0x2,0xad,0x4a,0x22,0x0,0x0,0x69,0xa1,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x2b,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x80,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x6e,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x3e,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x7,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x61,0x64,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x89,0x2f,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xe6,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x65,0x3f,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0xec,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xd0,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0xf7,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0xf3,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xbb,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xe2,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x9b,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x56,0x8a,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x2e,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x59,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xc9,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x34,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x46,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x18,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x5b,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5b,0xa3,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0xcd,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x72,0x6,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0xc6,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x71,0x86,0x3,0xe4,0x25,0x7a,0x0,0x0,0x71,0x46,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x2a,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0x2c,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xad,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x13,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x3d,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xfc,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x60,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x1d,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x53,0x4,0x51,0x79,0xb1,0x0,0x0,0x76,0x3b,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7f,0x6c,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x1e,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x71,0xf,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x88,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xb1,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x3b,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x7e,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xea,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xcb,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xf2,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x61,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0xf6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xe2,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x7,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xfd,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5d,0x1a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0xe4,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x5e,0x5,0x18,0x5,0x95,0x0,0x0,0x81,0xcf,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x81,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0xa,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0xd1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x87,0xbe,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x70,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x11,0x5,0x88,0x2e,0xd9,0x0,0x0,0x70,0x52,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0xb4,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7d,0x6c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x77,0x5f,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x65,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x73,0x55,0x5,0xb2,0x16,0x79,0x0,0x0,0x6a,0x4,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0x1c,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x5e,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x5b,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x1e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x65,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x67,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xf0,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x20,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x84,0xf3,0x5,0xd0,0x4f,0x11,0x0,0x0,0x85,0xa1,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x5a,0x5,0xdf,0xba,0xba,0x0,0x0,0x85,0xef,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x68,0xa8,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0xcb,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xcd,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0xd9,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xd0,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x89,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xa6,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xd9,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x14,0x6,0x6c,0xb8,0x3,0x0,0x0,0x83,0x36,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x3d,0x6,0x74,0xe,0x6a,0x0,0x0,0x62,0x8f,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0xb6,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xbf,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0x9,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xed,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x72,0x46,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x12,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6c,0x34,0x6,0xc3,0xce,0xa3,0x0,0x0,0x75,0x8c,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xc4,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x76,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xfc,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xcc,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x78,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x3,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x56,0x3e,0x7,0x6,0x93,0xe3,0x0,0x0,0x88,0xa0,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x67,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x5d,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xc4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0xf6,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5c,0x2c,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x4f,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x64,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x56,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x81,0x7,0x58,0x61,0xe5,0x0,0x0,0x4c,0x5,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x71,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0xef,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x48,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6b,0x71,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x58,0x6e,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6a,0x87,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5f,0xcf,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x77,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x82,0xef,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x92,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xc2,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xa1,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x66,0x9a,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x66,0x5b,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x82,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0xef,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0xf8,0x8,0x0,0x3f,0x29,0x0,0x0,0x65,0xd9,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5b,0xcf,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x2,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x62,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0xf1,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x62,0xbf,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x91,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7e,0x6a,0x8,0x9b,0xc,0x24,0x0,0x0,0x6e,0x6b,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x9d,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0x51,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xd9,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0x15,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x33,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xea,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x60,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x51,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xb1,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x77,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0x10,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xbf,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xfd,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x43,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x81,0x9,0x4e,0xde,0x64,0x0,0x0,0x7e,0xe3,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5d,0x97,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x65,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x9,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0xad,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x67,0x89,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x34,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xa9,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xd5,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x1,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x2d,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x7c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xb9,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xc4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5d,0x5b,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x64,0x1,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xab,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5c,0x7e,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x7d,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x3f,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x7d,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x2,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xf7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xc0,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0xf,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0x4,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x75,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x49,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x74,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x82,0x40,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0xa0,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0xee,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xcd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x82,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0x51,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0x11,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xd1,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0x18,0xa,0xda,0x50,0x7e,0x0,0x0,0x80,0x39,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0xc,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0xcb,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x40,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0xb9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x42,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5a,0x1f,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0x98,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x56,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x42,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0x41,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x62,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xed,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0xed,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x49,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xe5,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6d,0x71,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0xcc,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x95,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x63,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0xb6,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x88,0x66,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x65,0x7,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x76,0xa5,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xc5,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0xb2,0xc,0x33,0xeb,0xe2,0x0,0x0,0x77,0x1,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x18,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xcf,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0xd9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0xa1,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x79,0x21,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x60,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x8c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x9a,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x15,0xc,0x90,0x26,0xb5,0x0,0x0,0x80,0xe3,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x62,0x16,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x4e,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0xc5,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x7a,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5f,0x80,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x83,0x6e,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x66,0x23,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xa6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x68,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x54,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x85,0x1a,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6a,0x4f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x86,0x44,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0xb,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0xb9,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x9,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x8a,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x9f,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xe4,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x5c,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x87,0x23,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5e,0xc4,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x86,0x1a,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x92,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xed,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x9e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x24,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xe1,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x67,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x5d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x25,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x90,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x20,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xfb,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x68,0x30,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0xbd,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0xff,0xe,0xbe,0x61,0x83,0x0,0x0,0x6f,0x41,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6f,0x83,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x89,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x3b,0xe,0xe2,0x34,0x60,0x0,0x0,0x88,0x12,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x88,0x3c,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x19,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x8c,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x2,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x88,0xd5,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x7c,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x78,0x29,0xf,0x17,0x9c,0x64,0x0,0x0,0x82,0xa1,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0xe2,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x35,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x85,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x5d,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0xcb,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x91,0xf,0x70,0xaa,0x1a,0x0,0x0,0x85,0x5c,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0xd4,0xf,0x85,0x7b,0xea,0x0,0x0,0x62,0x4c,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x50,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x9,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0xda,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x78,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xd8,0xf,0xd9,0x8c,0xca,0x0,0x0,0x52,0x5e,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0x1b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0xa1,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xc7,0xf,0xe2,0xe9,0x49,0x0,0x0,0x86,0x9b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0xf1,0xf,0xf5,0xeb,0x52,0x0,0x0,0x63,0x35,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x63,0x79,0xf,0xf5,0xeb,0x54,0x0,0x0,0x63,0xbd,0x69,0x0,0x0,0x89, + 0x59,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x8c,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74, + 0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f, + 0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41, + 0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e, + 0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65, + 0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20, + 0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x43,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48, + 0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0, + 0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e, + 0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x71,0x0,0x2f,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x0,0x71,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x41,0x0,0xe7, + 0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0xe2,0x0,0x6d,0x0,0x62,0x0,0x26,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0, + 0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x63,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f, + 0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76, + 0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x64,0x0, + 0x72,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f, + 0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72, + 0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x45,0x0,0x26,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x69,0x0,0x6f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6a,0x0, + 0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4f,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x69, + 0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0, + 0x26,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0, + 0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x4d,0x0,0x75,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76, + 0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0, + 0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61, + 0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x62,0x0,0x6f,0x0, + 0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0xed,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65, + 0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x26,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0xe9, + 0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53, + 0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c, + 0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70, + 0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x73,0x0, + 0x20,0x0,0x26,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71, + 0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0,0x74,0x0,0x75,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0xed,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x46,0x0,0x26,0x0,0x61,0x0,0x63,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x28,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x20,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0, + 0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31, + 0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0, + 0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x32,0x0,0x25, + 0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31, + 0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x0,0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x7e,0x0,0x4f,0x0,0x20, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x67, + 0x0,0x75,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1, + 0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x3c,0x0,0x2f, + 0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x0,0x65,0x0,0x2d,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61, + 0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa, + 0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, + 0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e, + 0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52, + 0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61, + 0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22, + 0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x72,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41, + 0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41, + 0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63, + 0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0, + 0x6f,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xf6,0x0,0x55,0x0,0x6d, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x6f, + 0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28, + 0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77, + 0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e, + 0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d, + 0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65, + 0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67, + 0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b, + 0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61, + 0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74, + 0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x55,0x0,0x73,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0xe7,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62, + 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69, + 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x54,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78, + 0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x84,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0xed,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20, + 0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0xe1,0x0,0x73,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x69,0x0,0x6f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67, + 0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x42,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x42,0x0,0x61,0x0,0x72,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x2e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69, + 0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44, + 0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4c,0x0,0x4f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0, + 0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x18, + 0x0,0x41,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x74, + 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0xf3, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c, + 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61, + 0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0, + 0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4d,0x0,0x75,0x0,0x64, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72, + 0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x43,0x0,0x6c,0x0,0x69,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x70,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0, + 0x69,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64, + 0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x64,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28, + 0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0xe1,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x6d,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62, + 0x0,0x41,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32, + 0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x41,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0, + 0x20,0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c, + 0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77, + 0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52, + 0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0xe2, + 0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6e,0x0,0xe2,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x65,0x0,0x66,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x45, + 0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x43,0x0,0x44,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x53,0x0,0x61, + 0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0, + 0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x6d, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6f,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x41,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0, + 0xe3,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20, + 0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x72, + 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x61,0x0, + 0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x46, + 0x0,0x6f,0x0,0x72,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe1, + 0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34, + 0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x46,0x0, + 0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x72,0x0, + 0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x46,0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74, + 0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x52,0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d, + 0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69, + 0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0, + 0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4d,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72, + 0x0,0xe3,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0,0x61,0x0, + 0x6e,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x54, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x41,0x0,0x73, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x49,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x74,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x35,0x0,0x31,0x0, + 0x32,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xed, + 0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0xe7,0x0,0x61, + 0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65, + 0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26, + 0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26, + 0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x47,0x0,0x72,0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35, + 0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45, + 0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79, + 0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0, + 0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49, + 0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0xed,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f, + 0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0, + 0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x78,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x2e,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x2e,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0xed,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d, + 0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xee,0x0,0x41,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0xe0,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed, + 0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73, + 0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1, + 0x14,0x0,0x43,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x62,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x62,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f, + 0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x66,0x0,0x43,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0, + 0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x43,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2d, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74, + 0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68, + 0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0, + 0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0, + 0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d, + 0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e, + 0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x45,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73, + 0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x52,0x0,0x65, + 0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4c,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x6e,0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x4e,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x75,0x0, + 0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x6b, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26, + 0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0xfa,0x0,0x63,0x0,0x6c, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xb4,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0, + 0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0, + 0x2e,0x0,0x20,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0xe7,0x0,0xf5,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x75,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0,0x4f,0x0,0x73,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2f,0x0, + 0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0, + 0x63,0x0,0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0, + 0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x64,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0, + 0x61,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0xe1,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e, + 0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6a,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75, + 0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d, + 0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x63,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65, + 0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64, + 0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0xe1, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4c,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x4c,0x0, + 0x65,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x65,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f, + 0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72, + 0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xe9,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0, + 0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x53,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x26,0x0,0x47,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x47,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x45,0x0,0x73, + 0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65, + 0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x56,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0, + 0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74, + 0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, + 0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0, + 0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e, + 0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xed,0x0,0x63,0x0,0x69,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72, + 0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x54,0x0, + 0x61,0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x63,0x0, + 0x69,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x78,0x0,0x41,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x9c,0x0, + 0x4f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0, + 0x20,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0xe1,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x2,0x1c,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x67,0x0,0x6e,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x69,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0xe7,0x0, + 0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0, + 0x6d,0x0,0x62,0x0,0xe9,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x75,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x51,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0, + 0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x69,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0xed,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0, + 0x70,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69, + 0x0,0x70,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c, + 0x0,0x4f,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73, + 0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x4f,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c, + 0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x21,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20, + 0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0, + 0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x61,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0, + 0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20, + 0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x63,0x0,0x72,0x0,0xe3,0x0, + 0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xf8,0x0,0x41,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0xe0,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x41,0x0,0x20, + 0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xed,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x47,0x0,0x72,0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0x65,0x0,0x6d,0x0,0x2d,0x0, + 0x76,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x47,0x0,0x72,0x0,0xe1, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0, + 0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0, + 0x69,0x0,0x64,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x45,0x0,0x73,0x0,0x74,0x0, + 0xe1,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x65,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_hr-HR.qm + 0x0,0x0,0x93,0x77, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xd5,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0x25,0x0,0x0,0x0,0x53,0x0,0x0,0x69,0xde,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x6c,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0xdb,0x0,0x0,0x5,0x12, + 0x0,0x0,0x52,0xb2,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0xec,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5d,0x3b,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x5,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x4d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x95,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xd4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x1c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x64,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xac,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xca,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x8a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0x6c,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x8a,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5d,0xf,0x0,0x0,0x5d,0x81,0x0,0x0,0x83,0xe5,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x43,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xb3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xa4,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xf8,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xa8,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0x51,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0x58,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0x8f,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x40,0xf7,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0xec,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0x81,0x0,0x5,0x56,0x45,0x0,0x0,0x5c,0x7f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x69,0xf6,0x0,0x5,0x98,0xc5,0x0,0x0,0x6a,0xd8,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6e,0x4f,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x25,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xd2,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0xb,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xe1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x75,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x93,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x89,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xec,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xb6,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7e,0xdd,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x92,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x87,0x0,0x4c,0x99,0x62,0x0,0x0,0x3f,0xcc,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x8f,0x0,0x58,0xc9,0xc4,0x0,0x0,0x69,0x7f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x71,0x49,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6e,0xc6,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7b,0xc1,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7c,0x44,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x86,0x47,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x3e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5c,0x27,0x0,0x97,0x96,0x4,0x0,0x0,0x37,0xda,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0xd9,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x50,0x9f,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0xe2,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5f,0x7,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x99,0x1,0x9,0x1c,0x92,0x0,0x0,0x41,0xb4,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x64,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0xde,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7b,0xe5,0x1,0x4c,0x50,0xee,0x0,0x0,0x67,0x32,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0xa1,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0xb0,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7a,0x48,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3b,0xd3,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x77,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0x20,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0x37,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0xcd,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x9b,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x1c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x6f,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xa7,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x2a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6a,0x9c,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x71,0x98,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x26,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x73,0x45,0x2,0x23,0x3c,0x6b,0x0,0x0,0x72,0xd0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x72,0x5b,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x54,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0x91,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0xed,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x84,0x45,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0x87,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5f,0x9a,0x2,0xad,0x4a,0x22,0x0,0x0,0x67,0x9b,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xe5,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x6a,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x62,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x12,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0xc5,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5f,0x44,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x86,0x6b,0x3,0x5,0x38,0xb2,0x0,0x0,0x3f,0xf2,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x63,0x21,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0xda,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xc6,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0xed,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0xf7,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xb9,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xe0,0x3,0x6a,0x66,0x2e,0x0,0x0,0x57,0x27,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0x2a,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xec,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x30,0xed,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x87,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x44,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0x38,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0xa,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x6b,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0xb7,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x71,0xe3,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x70,0x3e,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6f,0xfa,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6f,0xb6,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6f,0x72,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xe8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0xc2,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xab,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x1,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x2b,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xfa,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x1c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x19,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x35,0x4,0x51,0x79,0xb1,0x0,0x0,0x74,0x4f,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7d,0x40,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x32,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6f,0x31,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3c,0x8a,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3c,0xb3,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x34,0xb3,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x6,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xe,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xc9,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xc4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x5f,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5b,0xa,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0x72,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x5,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x33,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5b,0x30,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0xda,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0x40,0x5,0x18,0x5,0x95,0x0,0x0,0x7f,0x61,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x7f,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0x1c,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0xe7,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x85,0x2,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x5a,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xb,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6e,0x72,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0x52,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7b,0x6c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x75,0x79,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x61,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x71,0x6f,0x5,0xb2,0x16,0x79,0x0,0x0,0x68,0x18,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0x32,0x5,0xb3,0x5f,0x79,0x0,0x0,0x49,0x5c,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0x63,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x14,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x4b,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x55,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0xd6,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0x54,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x82,0x69,0x5,0xd0,0x4f,0x11,0x0,0x0,0x83,0xf,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x3e,0x5,0xdf,0xba,0xba,0x0,0x0,0x83,0x5b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x66,0xa2,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0xd9,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xb,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0xff,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3a,0xe4,0x6,0x38,0x9f,0x35,0x0,0x0,0x38,0xb5,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xac,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xa1,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xa0,0x6,0x6c,0xb8,0x3,0x0,0x0,0x80,0xb4,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0x33,0x6,0x74,0xe,0x6a,0x0,0x0,0x60,0x5b,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0xa8,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xf3,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3d,0xf1,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xd,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x70,0x82,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x42,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6a,0x5c,0x6,0xc3,0xce,0xa3,0x0,0x0,0x73,0xba,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0xdc,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0x8e,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xc4,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x94,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4a,0x6c,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xed,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0xfc,0x7,0x6,0x93,0xe3,0x0,0x0,0x85,0xe0,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x7b,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x25,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xea,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6e,0x14,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5a,0x42,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0x41,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x62,0x8f,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x66,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x17,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0xeb,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x39,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x15,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xcc,0x7,0x9e,0x50,0x1e,0x0,0x0,0x69,0xab,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0xfc,0x7,0xa3,0x63,0x9e,0x0,0x0,0x68,0xaf,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0xb3,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xab,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x80,0x6f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x64,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x94,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x9d,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x64,0x68,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x64,0x1b,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3d,0x72,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6a,0x17,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0xea,0x8,0x0,0x3f,0x29,0x0,0x0,0x63,0xa3,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0xe5,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xf8,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0x56,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7a,0xf1,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x60,0x8d,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x59,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0x66,0x8,0x9b,0xc,0x24,0x0,0x0,0x6c,0x87,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0x7f,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0x57,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0xc7,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0xf,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0x39,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x6c,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0x6a,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x17,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3e,0xb3,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0x99,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x4,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x3f,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x79,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0xcb,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x5,0x9,0x4e,0xde,0x64,0x0,0x0,0x7c,0xbd,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5b,0xa9,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x23,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x7,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x6b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x65,0x71,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xf2,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x2d,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x5d,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0x8d,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xbd,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x3a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x71,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x82,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5b,0x73,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0xdb,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xa9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0x9c,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xc5,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x19,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x4d,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x12,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xc7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0xf2,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x3b,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0x10,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3e,0x73,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0x29,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x34,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7f,0xc4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6b,0xce,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0xc,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xd,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xc0,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0x4b,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x55,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x9b,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x5a,0xa,0xda,0x50,0x7e,0x0,0x0,0x7d,0xed,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xfc,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0xdb,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x86,0xb,0xa,0x72,0xc9,0x0,0x0,0x39,0xe7,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0xc,0xb,0x1e,0xee,0xfe,0x0,0x0,0x58,0x39,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0xb0,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x3c,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x36,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0x45,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x46,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xd5,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0xc9,0xb,0x9d,0xe,0xa2,0x0,0x0,0x32,0xdf,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x3,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6b,0xa1,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6e,0xe8,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xa3,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0x77,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0xa8,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x85,0xaa,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x62,0xc3,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x74,0xbd,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xb3,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x9a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0x1d,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x4e,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xb1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x64,0xb5,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0x89,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0x55,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0x94,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3a,0xac,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x5e,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xa1,0xc,0x90,0x26,0xb5,0x0,0x0,0x7e,0x79,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0xf6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x38,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6d,0xeb,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x44,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5d,0x64,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x80,0xe4,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xeb,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xb6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x96,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x4c,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x82,0x90,0xd,0x4a,0x90,0xb2,0x0,0x0,0x68,0x7f,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x83,0xae,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0xf,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x1,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x25,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x39,0xaa,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x2f,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3c,0xdc,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x14,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x84,0x7d,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0x9e,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x83,0x84,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0xb0,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xbf,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x80,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xf2,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xb9,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x2b,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0x7b,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x45,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0x84,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xb6,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xf5,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x66,0x28,0xe,0xbe,0x61,0x81,0x0,0x0,0x6c,0xe3,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6d,0x25,0xe,0xbe,0x61,0x83,0x0,0x0,0x6d,0x67,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6d,0xa9,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0x67,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x1f,0xe,0xe2,0x34,0x60,0x0,0x0,0x85,0x56,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x85,0x80,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xe7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x6e,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xe4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x86,0x11,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x94,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x76,0x4d,0xf,0x17,0x9c,0x64,0x0,0x0,0x80,0x1b,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0xc8,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x3d,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0x6d,0xf,0x30,0x6b,0x3,0x0,0x0,0x31,0xe9,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x70,0xf7,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xff,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x53,0xf,0x70,0xaa,0x1a,0x0,0x0,0x82,0xd0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x67,0xd0,0xf,0x85,0x7b,0xea,0x0,0x0,0x60,0x22,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x14,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xef,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x66,0xd2,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0x80,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0xf6,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0x68,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x2f,0xf,0xd9,0x8f,0xca,0x0,0x0,0x51,0xa1,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3d,0xb7,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0x3,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0xc3,0xf,0xf5,0xeb,0x52,0x0,0x0,0x61,0x9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x61,0x4f,0xf,0xf5,0xeb,0x54,0x0,0x0,0x61,0x95,0x69,0x0,0x0,0x86, + 0x95,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x5e,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6a,0x0,0x75, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x50, + 0x0,0x44,0x0,0x46,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74, + 0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x53,0x0,0x76, + 0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6c, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x1,0xd,0x0,0x6b,0x0,0x69, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61, + 0x1,0xd,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x20,0x1,0x7,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x1, + 0xd,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2c,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x52,0x0,0x61, + 0x0,0x64,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61, + 0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c, + 0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41, + 0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x69,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x6b,0x0, + 0x75,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0, + 0x50,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6a,0x0,0x65,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61, + 0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a, + 0x0,0x65,0x1,0x7,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1, + 0x7,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x6b,0x0,0x6f,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x52,0x0,0x61, + 0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6a,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0, + 0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x50, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0, + 0x6f,0x0,0x6d,0x0,0x6f,0x1,0x7,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x26,0x0,0x53,0x0,0x61,0x0,0x6b,0x0,0x72,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73, + 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74, + 0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0, + 0x54,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x68,0x0,0x74,0x0,0x69,0x0, + 0x6a,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x76,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x1, + 0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72, + 0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6a,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x73,0x0, + 0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x69,0x0,0x20,0x0,0x7a,0x0, + 0x76,0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x26,0x0,0x4e,0x0,0x61,0x0,0x6a,0x0,0x62,0x0,0x6c,0x0,0x69,0x1,0x7e,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72, + 0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x75,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x73,0x0, + 0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x53, + 0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x75,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6a, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x68,0x0,0x6f,0x0,0x64, + 0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61, + 0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x55,0x0, + 0x6b,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0, + 0x26,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65, + 0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x26,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6c,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x41, + 0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52, + 0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66, + 0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x4f,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70, + 0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x26,0x0,0x4b,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x7a,0x0,0x61,0x0, + 0x64,0x0,0x72,0x1,0x7e,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0, + 0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26, + 0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b, + 0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0, + 0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x26,0x0,0x41,0x1,0x7e,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0, + 0x67,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6b,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e, + 0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0, + 0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0,0x65,0x0,0x64, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x42,0x0,0x69, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73, + 0x0,0x6c,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x46,0x0,0x61,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x28,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x6e,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28, + 0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x42,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x64,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x65,0x0, + 0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0, + 0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2c, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2c,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x31,0x0,0x2c,0x0, + 0x35,0x0,0x25,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x6e,0x0, + 0x6f,0x0,0x67,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x32,0x0,0x25,0x0,0x20, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x61, + 0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20, + 0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6b, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2c,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2c,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2c,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2c,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x34,0x0, + 0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x43,0x0,0x69,0x0,0x6a,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2c, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2c,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2c,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8c,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x61,0x1,0x7,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6c,0x0,0x6a, + 0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4d,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x6d, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6a,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20, + 0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74, + 0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x3c,0x0,0x2f,0x0,0x61, + 0x0,0x3e,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x73, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x75,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c, + 0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f, + 0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f, + 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d, + 0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74, + 0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f, + 0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38, + 0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x62,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x67,0x0, + 0x61,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0x7,0x0,0x69,0x0,0x20,0x0,0x74,0x0, + 0x76,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45, + 0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x6f, + 0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x64,0x0,0x69, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x73, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63, + 0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x76,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x53,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x3,0xfe,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x68, + 0x0,0x20,0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65, + 0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20, + 0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67, + 0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x72, + 0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x6f,0x0,0x3a,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x62,0x0,0x32,0x0,0x30,0x0,0x35,0x0,0xa,0x0,0xa,0x0,0x4f,0x0,0x62, + 0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x2e,0x0,0x20, + 0x0,0x5a,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x1,0x61,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6c, + 0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x20, + 0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x43,0x0,0x45,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x4a,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x67, + 0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20, + 0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68, + 0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x41, + 0x0,0x75,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0, + 0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30, + 0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0, + 0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30, + 0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x42,0x0,0x4f,0x0,0x73,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x5a,0x0,0x26,0x0, + 0x61,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x61,0x1,0x7,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x42,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53, + 0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x26,0x0,0x56,0x0,0x69,0x1,0x61,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41, + 0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41, + 0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67, + 0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61, + 0x0,0x6a,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11, + 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xe2,0x0,0x46,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x75,0x0,0x20,0x0,0x6f, + 0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x67, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61, + 0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75, + 0x1,0x7,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x6f, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x75,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x2e,0x0,0x20,0x0,0x4d,0x0,0x65,0x1,0x11,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0x2c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x65, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x69,0x1,0x7,0x0,0x69, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x2d, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x66,0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x75,0x1,0x7e,0x0,0x62,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0,0x61, + 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x69,0x0,0x6e,0x0,0x76, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66, + 0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f, + 0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66, + 0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20, + 0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50, + 0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77, + 0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65, + 0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65, + 0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e, + 0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e, + 0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f, + 0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20, + 0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61, + 0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4f,0x0,0x74, + 0x0,0x6b,0x0,0x61,0x1,0x7e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0, + 0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50, + 0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72, + 0x0,0x6e,0x0,0x6f,0x0,0x2d,0x0,0x62,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d, + 0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0, + 0x65,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4b,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x68,0x0,0x76,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x61,0x0,0x6d,0x0,0x6a, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f, + 0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x4e,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76,0x0, + 0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x6f,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4a,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x6c,0x0, + 0x61,0x0,0x67,0x0,0x6f,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0, + 0x28,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x29,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x72,0x0, + 0x69,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x6f,0x1,0x11,0x0,0x65,0x0,0x6e,0x0, + 0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x61, + 0x0,0x7a,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x49,0x0,0x73,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x5e,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x64,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32, + 0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x1,0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x6d,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x6c,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70, + 0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x65,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x61, + 0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x69,0x1,0x61,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x76,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x75, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x1,0xd,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6b, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61, + 0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0xd,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0, + 0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e, + 0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e, + 0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x49,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x49,0x0,0x7a,0x0,0x26,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x49,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x7a,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0, + 0x61,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4f,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x75,0x1,0x7,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f, + 0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0, + 0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0, + 0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0, + 0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x28,0x0, + 0x6c,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x76,0x0,0x72, + 0x1,0x61,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,0x1,0x7,0x0,0x65, + 0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x55,0x0,0x6c,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x69,0x0, + 0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0, + 0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x1, + 0xd,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45, + 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x47,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x1,0x7, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x7a,0x0,0x61,0x1,0x61,0x0,0x74,0x0,0x69,0x1,0x7, + 0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x70, + 0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57, + 0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x49,0x0, + 0x7a,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x6f,0x0,0x6d, + 0x0,0x6a,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x72,0x0,0x61, + 0x0,0x6a,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x69, + 0x0,0x73,0x0,0x61,0x0,0x6a,0x0,0x7a,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61, + 0x0,0x6a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4e,0x0, + 0x65,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x6a,0x0,0x65,0x1,0x61,0x0,0x6e,0x0, + 0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x72,0x0,0x65,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x75,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x6b,0x0,0x6f,0x0, + 0x67,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x50,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x75,0x0, + 0x73,0x0,0x70,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73, + 0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x72,0x0,0x7a,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61, + 0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x44,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x6d,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69, + 0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70, + 0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x73,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x6b, + 0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26, + 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x6f,0x0,0x6a,0x0,0x61,0x1, + 0xd,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x56,0x0,0x72,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x7a,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76, + 0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20, + 0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x64,0x0, + 0x6f,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x65,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x34, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6b,0x0,0x42,0x0,0x20,0x0,0x6e,0x0,0x69,0x0, + 0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72, + 0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e, + 0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70, + 0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x76,0x0,0x72,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x76,0x0,0x72, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f, + 0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x76,0x0,0x72,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0, + 0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x54,0x0,0x76,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73, + 0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x47,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0, + 0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x48,0x0,0x69,0x0,0x44,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53, + 0x0,0x61,0x0,0x6b,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x61,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49, + 0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a, + 0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x50,0x0,0x72,0x0,0x6f,0x1,0x61,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f, + 0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x53,0x0,0x61,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x28,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x29,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x65, + 0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42, + 0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x50,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46, + 0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x55,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x55,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6e,0x0, + 0x6a,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x4e,0x0,0x65,0x0,0x76,0x0,0x61,0x1,0x7e,0x0,0x65,0x1,0x7,0x0,0x69,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x75,0x0,0x72,0x0, + 0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x4e,0x0,0x65,0x0,0x76,0x0,0x61,0x1,0x7e,0x0,0x65,0x1,0x7,0x0,0x61,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0, + 0x75,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x32,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0, + 0x75,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0, + 0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72, + 0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0, + 0x6a,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55, + 0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11,0x0, + 0x61,0x0,0x6a,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4a,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x56,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61, + 0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x61, + 0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x61,0x0,0x6a,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x75, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x73,0x0, + 0x75,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x55,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0, + 0x7a,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0, + 0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d, + 0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4d,0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe6,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x62,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61, + 0x1,0xd,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x53,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa2,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x62,0x0, + 0x69,0x0,0x6c,0x0,0x6e,0x0,0x6f,0x0,0x6a,0x0,0x20,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75, + 0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e, + 0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74, + 0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69, + 0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74, + 0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x50,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0, + 0x76,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8a,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x6a,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x70,0x0,0x75,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x6a, + 0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72, + 0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65, + 0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77, + 0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0, + 0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x6a,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65, + 0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4f,0x0,0x73,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x6a, + 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x69, + 0x1,0x61,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4d,0x0, + 0x69,0x1,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x4d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x69,0x0,0x70,0x0, + 0x20,0x0,0x6d,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0, + 0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4e,0x0, + 0x69,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20, + 0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x7a,0x0,0x6e, + 0x0,0x69,0x0,0x6a,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63, + 0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x55,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x49,0x0,0x73,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0, + 0x75,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x55,0x0,0x6b,0x0,0x6c,0x0,0x6a,0x0,0x75,0x1,0xd,0x0,0x65,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x7a,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb6,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x7a,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x29,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x4d,0x0, + 0x6f,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x72,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x73,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x70,0x0, + 0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x72, + 0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68, + 0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x6b,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0,0x69,0x0,0x76,0x0,0x69, + 0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x65,0x1,0x11,0x0,0x61,0x0,0x6a,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x70,0x0,0x69,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x72,0x0,0x65,0x1,0x11, + 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x20,0x0,0x6e,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x72,0x0,0x56,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0, + 0x6b,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x6b,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x65,0x1, + 0x11,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x64,0x0,0x67,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6a,0x0, + 0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72, + 0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f, + 0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0,0x61,0x0,0x76,0x0, + 0x72,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x72,0x0, + 0x6f,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x61,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4d,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0, + 0x6d,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x1,0x7e,0x0,0x65,0x1, + 0x7,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x76,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x56,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53, + 0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45, + 0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72, + 0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x78,0x0,0x50,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x7a,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x73,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x6a,0x0, + 0x69,0x0,0x20,0x0,0x67,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x6d,0x0, + 0x69,0x1,0x61,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0, + 0x74,0x0,0x70,0x0,0x75,0x1,0x61,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x69,0x1,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31, + 0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x50, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x70,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x69,0x1,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x76,0x0,0x61,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x70, + 0x0,0x61,0x0,0x6d,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x61, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d, + 0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f, + 0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x75,0x0,0x20,0x0,0x26,0x0, + 0x62,0x0,0x6f,0x0,0x6a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6f, + 0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f, + 0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x53, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x82,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x62,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x69,0x0,0x68,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x69,0x0,0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20, + 0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1, + 0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43, + 0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43, + 0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31, + 0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61, + 0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x53, + 0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x66,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x72,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6a,0x0,0x73, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0, + 0x7a,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x73,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x20,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6a,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c, + 0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x5a,0x0,0x76, + 0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26, + 0x0,0x50,0x0,0x6f,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x6a,0x0,0x61,0x1, + 0xd,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x75,0x1,0xd, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76, + 0x0,0x75,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x5a,0x0,0x76,0x0,0x75,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x76,0x0,0x75,0x1,0xd,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4f,0x0,0x64,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x61, + 0x0,0x76,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x7a,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x7a,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0, + 0x64,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0,0x6e,0x0,0x75,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x42,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x42,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x6e,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53, + 0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x73,0x0, + 0x20,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0, + 0x72,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x74,0x0, + 0x69,0x0,0x70,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x36, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36, + 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x67,0x0,0x72,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x72,0x1,0x61,0x0,0x69,0x0,0x6e, + 0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66, + 0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x4e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0, + 0x76,0x0,0x69,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0, + 0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x26,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0, + 0x6b,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66, + 0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x54,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x6a,0x0, + 0x61,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72, + 0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x72,0x0, + 0x65,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x20,0x1, + 0x7,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x61,0x1, + 0xd,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x76,0x0,0x6c,0x0,0x6a,0x0,0x61,0x1,0xd,0x0,0x6b,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69, + 0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c, + 0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xac,0x0,0x4f,0x0,0x64,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x65,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x74,0x0,0x20,0x1, + 0x7,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x72,0x0, + 0x69,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x4a,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x75,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x75,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xee,0x0,0x54,0x0,0x6f,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x1,0xd,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x6d,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x1,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6c,0x0,0x69,0x1,0xd,0x0,0x69,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x11,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x67,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x6b,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x6a,0x0,0x65,0x1,0x61,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x1,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6a,0x0,0x69,0x0, + 0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x0, + 0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6a,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0xa,0x0,0xa,0x1, + 0x7d,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x7a,0x0, + 0x6e,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65, + 0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65, + 0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64, + 0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa, + 0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70, + 0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65, + 0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20, + 0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20, + 0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa, + 0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d, + 0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x4f, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x6f,0x0,0x67,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x72,0x0,0x69,0x0,0x6a,0x0, + 0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x54,0x0,0x69,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0,0x53, + 0x0,0x42,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6a, + 0x0,0x6f,0x1,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e, + 0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4e,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x47,0x0,0x68,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32, + 0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x52,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x75,0x1,0xd,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x62,0x0, + 0x72,0x0,0x7a,0x0,0x69,0x0,0x76,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74, + 0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0, + 0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x1,0xd,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x52,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x1,0x11,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x6f,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x1,0x7,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x65,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56, + 0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf8,0x0,0x56,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x75, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x2e,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70, + 0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x75, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f, + 0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x1,0xd,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x6a, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0, + 0x64,0x0,0x6f,0x1,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x1,0x60,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x62,0x0,0x72,0x1,0x7e,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20, + 0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x55,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x76,0x0, + 0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0, + 0x64,0x0,0x72,0x1,0x7e,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0x6a,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x73, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ru-RU.qm + 0x0,0x0,0x95,0x1f, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x11,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0x19,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0x54,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x56,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0xb9,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x9e,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x7a,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0xb5,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xef,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x51,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb3,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf2,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x54,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xb6,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0x18,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x36,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xce,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x86,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0xa4,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x95,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x6d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x43,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd1,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x52,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x3a,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xee,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x93,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x76,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x81,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0x5,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xee,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x7f,0x0,0x5,0x56,0x45,0x0,0x0,0x5e,0x9,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x6c,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x50,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0xd9,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x93,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x12,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x4b,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xcb,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xd5,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xfb,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xfd,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x9a,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x2,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0x4b,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xd2,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xbb,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xf2,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x4d,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0xcf,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0xcf,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0x5e,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7d,0x31,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0xb2,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xef,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xe6,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0xcb,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0xba,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xe5,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x89,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xd2,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x67,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xd9,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xd8,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xd2,0x1,0x39,0xa4,0xce,0x0,0x0,0x5a,0x76,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x55,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0xbe,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x8d,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x3e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0xaa,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3d,0x9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0xb9,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0x34,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0x29,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0xb9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xfd,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x28,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xe1,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0xf,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0xae,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6c,0x14,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x73,0x26,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x80,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0xbf,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x50,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xe1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x88,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x8d,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0xe5,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0xcd,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x97,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xf0,0x2,0xad,0x4a,0x22,0x0,0x0,0x69,0x27,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x55,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xce,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xd6,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xaa,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x73,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0xaa,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x88,0x13,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0x18,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0xa7,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x26,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x6,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x2d,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0xe3,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xed,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x14,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0xb9,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x56,0x86,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x52,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x81,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x71,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x84,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x56,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x28,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xab,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5b,0x49,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x6f,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0xce,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x8a,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x71,0x46,0x3,0xe4,0x25,0x7a,0x0,0x0,0x71,0x2,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x54,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0x44,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xdf,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x4d,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x77,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x2e,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x82,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x5b,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x83,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0xb9,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0xb8,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x58,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0xc7,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0xc8,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xf3,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x63,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0xaa,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3a,0x6,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x33,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xc4,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2e,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x93,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0xa0,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x34,0x12,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x39,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x55,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0xc4,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0xd8,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x38,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0xe9,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xb3,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0x3a,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x7b,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0xa2,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xc8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x4b,0x5,0x88,0x2e,0xd9,0x0,0x0,0x70,0x4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0xb4,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0xde,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0xcb,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0xa3,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xf9,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x90,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0x14,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x48,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x91,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x54,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xa3,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xa1,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xdc,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x34,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0xcf,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x85,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xba,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0xdd,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x68,0x2a,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0xe1,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xe9,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x7b,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xfa,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0xa7,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xe0,0x6,0x51,0xe6,0x13,0x0,0x0,0x7,0x15,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x42,0x6,0x6c,0xb8,0x3,0x0,0x0,0x82,0x26,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x21,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0xbf,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x96,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0x27,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0x41,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3b,0x7,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x72,0x12,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x42,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0xd2,0x6,0xc3,0xce,0xa3,0x0,0x0,0x75,0x2e,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xd4,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x70,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x3e,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0x4,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x5a,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x29,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x56,0x2a,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x86,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xad,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x27,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x1c,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0xa2,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0xd0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x67,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x64,0x1f,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xa6,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0xa3,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0xdf,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xdd,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0xf,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x7e,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6b,0x3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x58,0x7c,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6a,0x7,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5f,0x13,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xdf,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0xe3,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x64,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x94,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xdf,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xf6,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0xa9,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0xb4,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x8d,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0x4,0x8,0x0,0x3f,0x29,0x0,0x0,0x65,0x2f,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5b,0x73,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x64,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x50,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x59,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xcd,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0xd4,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xf7,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x99,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0x4d,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xd5,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0x11,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x75,0x8,0xa9,0xcf,0x35,0x0,0x0,0x32,0xe,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x84,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x7b,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xe7,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x97,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0x0,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xeb,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0x27,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x73,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0xaf,0x9,0x4e,0xde,0x64,0x0,0x0,0x7e,0x35,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5d,0x39,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0xd,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x3b,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x6f,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xed,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x10,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xd1,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xfd,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0x29,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x55,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x72,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xcb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xd4,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5d,0x5,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x63,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xdd,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5c,0x28,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x79,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x9d,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xd3,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x34,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x3b,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xf0,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x6d,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0xa,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0xa9,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x3d,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0xa2,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x81,0x42,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0x4c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x7a,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xc9,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x7e,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0x51,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0xd,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x7,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0x14,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x61,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x64,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x6d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x48,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0xdd,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x84,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0xcd,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa8,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xa0,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xa4,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0x31,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xb8,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x4f,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0xd3,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x6b,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x41,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6d,0x1f,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x80,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xd3,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x59,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0xc2,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0x4a,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0x73,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x76,0x1b,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x37,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0xa,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x6f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x42,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xf5,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0x43,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x93,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x7f,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x84,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0xb4,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xd0,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x39,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xf1,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x48,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x74,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0x73,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xb0,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0xd2,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x82,0x56,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x77,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xf6,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xc2,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x94,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x84,0x0,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0xd5,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x85,0x30,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0x19,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0xb5,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x25,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0xa4,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0xc7,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0x1c,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x86,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x86,0xb,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5e,0x28,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x85,0x6,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0xa8,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x59,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xce,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x50,0xe,0x48,0xfd,0xca,0x0,0x0,0x2b,0xf,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x91,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x7f,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x7d,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x70,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x42,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x3b,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0xac,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x53,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x9b,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0xe3,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6f,0x2b,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x63,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x79,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xf6,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x87,0x20,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x3d,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xe2,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x54,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0xb9,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x94,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x8f,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0xa5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0x28,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x31,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x99,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x77,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x7f,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x79,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xfb,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0x46,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x5e,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x7e,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xbc,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x75,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x5a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0xb0,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xd4,0xf,0xd9,0x8c,0xca,0x0,0x0,0x52,0x56,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0x15,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x97,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xf9,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x8b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0x23,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x73,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0xc3,0xf,0xf5,0xeb,0x54,0x0,0x0,0x63,0x13,0x69,0x0,0x0,0x88, + 0x3d,0x3,0x0,0x0,0x0,0x10,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x1f,0x4,0x10, + 0x4,0x23,0x4,0x17,0x4,0x10,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x1,0x60,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,0x4,0x43, + 0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x30,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3c,0x4,0x30,0x4,0x42, + 0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x33,0x4,0x3e, + 0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20, + 0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x3e,0x4,0x32,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3e, + 0x4,0x3a,0x4,0x43,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x4b,0x0,0x2c, + 0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30, + 0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f, + 0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x2c,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x43,0x4,0x42, + 0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x35, + 0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34, + 0x4,0x35,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x3e,0x4,0x32, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73, + 0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61, + 0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa, + 0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73, + 0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72, + 0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72, + 0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1a,0x4,0x3e,0x4,0x3d, + 0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x38, + 0x4,0x4f,0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x30,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x25,0x0, + 0x69,0x0,0x20,0x0,0x57,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x4,0x1c,0x4, + 0x11,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25, + 0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4, + 0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4, + 0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x32, + 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34, + 0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x4,0x1e,0x0,0x20, + 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x3c, + 0x4,0x35,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x14,0x4,0x35,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x2f,0x4,0x3d,0x4,0x42,0x4,0x30, + 0x4,0x40,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x42, + 0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x10,0x4, + 0x32,0x4,0x42,0x4,0x3e,0x4,0x3f,0x4,0x30,0x4,0x43,0x4,0x37,0x4,0x30,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4, + 0x35,0x4,0x40,0x4,0x35,0x0,0x20,0x4,0x44,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4, + 0x41,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75, + 0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75, + 0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x26,0x4,0x23,0x4,0x41,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x3d,0x4, + 0x51,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x4, + 0x1f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4, + 0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x4,0x14,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x12,0x4,0x4b, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x4,0x1f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x30,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x35,0x4,0x46,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1f,0x4, + 0x30,0x4,0x3f,0x4,0x3a,0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x4,0x1d, + 0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x20,0x4,0x4d, + 0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x3e,0x4,0x4d,0x4, + 0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4, + 0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x26,0x4,0x17,0x4,0x35,0x4,0x3b,0x4,0x51,0x4,0x3d,0x4, + 0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x42,0x4,0x35,0x4,0x3d,0x4, + 0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72, + 0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x4,0x25,0x4,0x3e,0x4,0x3b,0x4,0x3e, + 0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a, + 0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x4,0x1f,0x4, + 0x3e,0x4,0x3c,0x4,0x3e,0x4,0x49,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x26,0x4,0x21,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3a,0x4,0x43,0x0, + 0x20,0x4,0x41,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x4f,0x4,0x3d,0x4, + 0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69, + 0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x4,0x26,0x4,0x35,0x4,0x3b, + 0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42, + 0x4,0x30,0x4,0x31,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d, + 0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x4,0x18,0x4,0x3d,0x4,0x32,0x4, + 0x35,0x4,0x40,0x4,0x42,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x4,0x46,0x4,0x32,0x4,0x35,0x4,0x42,0x4,0x30,0x0, + 0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x26,0x4,0x1a,0x4,0x3b,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x30,0x4, + 0x42,0x4,0x43,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x35,0x4, + 0x31,0x4,0x43,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x45,0x4, + 0x32,0x4,0x30,0x4,0x42,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1b,0x4,0x38,0x4,0x3d,0x4,0x35, + 0x4,0x39,0x4,0x3d,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1d,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,0x42, + 0x4,0x35,0x4,0x3b,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x4,0x1e,0x0,0x26,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4, + 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x4,0x11,0x4,0x3b,0x4, + 0x38,0x4,0x36,0x4,0x30,0x4,0x39,0x4,0x48,0x4,0x38,0x4,0x39,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x4,0x1d,0x4,0x3e, + 0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x4,0x21,0x4,0x3e, + 0x4,0x37,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x4,0x1f, + 0x4,0x30,0x4,0x43,0x4,0x37,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x26,0x4,0x12,0x4,0x3e,0x4,0x41,0x4,0x3f,0x4,0x40,0x4, + 0x3e,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4, + 0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x4, + 0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4, + 0x4b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4, + 0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x4,0x21,0x4,0x3d,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43, + 0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35, + 0x4,0x34,0x4,0x4b,0x4,0x34,0x4,0x43,0x4,0x49,0x4,0x38,0x4,0x39,0x0,0x20, + 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76, + 0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x4,0x23,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x4,0x23,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x48,0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x26,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x4f,0x4,0x35, + 0x4,0x3c,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c, + 0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61, + 0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x3c,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x30,0x0, + 0x20,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,0x30,0x4,0x3b,0x4,0x3e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74, + 0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x1f,0x4,0x40, + 0x4,0x30,0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52, + 0x0,0x4c,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x3e,0x0,0x20, + 0x4,0x3b,0x4,0x35,0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x41,0x0,0x4c, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x48,0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x4,0x1d,0x4,0x30, + 0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20, + 0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x26,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x4,0x1a,0x4,0x32,0x4, + 0x30,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0, + 0x20,0x4,0x3f,0x4,0x38,0x4,0x3a,0x4,0x41,0x4,0x35,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x0,0x28,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4, + 0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4, + 0x3d,0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4, + 0x38,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x41,0x0, + 0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20, + 0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x26,0x4,0x18,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x48,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4, + 0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3d,0x4, + 0x30,0x4,0x47,0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x41,0x4, + 0x42,0x4,0x3e,0x4,0x4f,0x4,0x3d,0x4,0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x4,0x11,0x4,0x35,0x4,0x3b,0x4,0x4b,0x4,0x39,0x0,0x20, + 0x4,0x3e,0x4,0x42,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4, + 0x31,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x28,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35, + 0x4,0x3c,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x28,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x3e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1d,0x4,0x30,0x0,0x20,0x0, + 0x31,0x0,0x25,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4, + 0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e, + 0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x4,0x1c,0x4, + 0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x1d,0x4,0x30,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4, + 0x35,0x4,0x3d,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4, + 0x47,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x1d,0x4,0x30,0x0,0x20, + 0x0,0x32,0x0,0x25,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4,0x35, + 0x4,0x3d,0x4,0x3d,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47, + 0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c, + 0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0, + 0x38,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x4,0x13,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x47,0x0, + 0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42, + 0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x38,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49, + 0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22, + 0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30, + 0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20, + 0x4,0x13,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20, + 0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0, + 0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33, + 0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0, + 0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30, + 0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x4,0x26,0x4,0x35,0x4, + 0x3b,0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4, + 0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x41,0x4,0x48,0x4, + 0x42,0x4,0x30,0x4,0x31,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34, + 0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x4,0x13,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x4,0x13,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20, + 0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x35,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30, + 0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8a,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41, + 0x4,0x3c,0x4,0x3e,0x4,0x33,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42, + 0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x34,0x4,0x3d, + 0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x45, + 0x4,0x3e,0x4,0x34,0x4,0x4f,0x4,0x49,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20, + 0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e, + 0x4,0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38, + 0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x20, + 0x4,0x41,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x4,0x1f,0x4,0x3e,0x4,0x36,0x4,0x30,0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41, + 0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x4,0x41,0x4,0x3a,0x4,0x30,0x4,0x47,0x4,0x30, + 0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20, + 0x4,0x3d,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x1f,0x4,0x17, + 0x4,0x23,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x3b, + 0x4,0x35,0x4,0x3a,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x35,0x4,0x33, + 0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30, + 0x4,0x3b,0x4,0x3e,0x4,0x33,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac, + 0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, + 0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e, + 0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73, + 0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69, + 0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73, + 0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x76,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x4,0x21,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0, + 0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68, + 0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1e,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x12,0x4,0x4b,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x43,0x4, + 0x49,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x4e,0x4,0x49,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x36,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x21,0x4,0x3e,0x4,0x37,0x4,0x34, + 0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x4b, + 0x4,0x39,0x0,0x20,0x4,0x36,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x4,0x20,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x38,0x4,0x40,0x4,0x35, + 0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x4,0x12,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x44,0x4,0x30,0x4, + 0x39,0x4,0x3b,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x4,0x12,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xfa,0x4,0x2d,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4f, + 0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x40, + 0x4,0x4b,0x4,0x45,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x4,0x4c, + 0x4,0x4e,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x32,0x0,0xa,0x0,0xa, + 0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x4b,0x0,0x3a,0x0,0x20, + 0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72, + 0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38, + 0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39, + 0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f, + 0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c, + 0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73, + 0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a, + 0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x4,0x12,0x4,0x4b,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x30, + 0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34, + 0x0,0x20,0x4,0x3b,0x4,0x38,0x4,0x46,0x4,0x35,0x4,0x3d,0x4,0x37,0x4,0x38, + 0x4,0x35,0x4,0x39,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50, + 0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x4,0x32,0x4,0x35, + 0x4,0x40,0x4,0x41,0x4,0x38,0x4,0x38,0x0,0x20,0x0,0x32,0x0,0x20,0x4,0x38, + 0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x31,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x34,0x4,0x3d,0x4,0x35,0x4,0x39, + 0x0,0x2e,0x0,0x20,0x4,0x14,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d, + 0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x43,0x4,0x4e, + 0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x44,0x4,0x3e,0x4,0x40,0x4,0x3c,0x4,0x30, + 0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x20,0x4,0x41,0x4,0x3c,0x0,0x2e,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x35,0x0,0x20, + 0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x4,0x12,0x4,0x4b,0x0,0x20,0x4, + 0x43,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x2c,0x0, + 0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4, + 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x39,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x4,0x12, + 0x4,0x4b,0x0,0x20,0x4,0x43,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d, + 0x4,0x4b,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x45, + 0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b, + 0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20, + 0x4,0x45,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x43,0x4,0x4e, + 0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33, + 0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x4d,0x4,0x3c, + 0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x40,0x4,0x43,0x4,0x35,0x4,0x3c,0x4,0x3e, + 0x4,0x39,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0, + 0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26, + 0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0, + 0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26, + 0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4, + 0x4b,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x35,0x4,0x3a,0x4, + 0x42,0x4,0x3e,0x4,0x40,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x4,0x1d,0x4,0x30,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4, + 0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e,0x4, + 0x32,0x4,0x3a,0x4,0x43,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67, + 0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x20,0x4,0x30,0x4,0x37, + 0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e,0x4,0x3a, + 0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x14,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x4b,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69, + 0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x12,0x4,0x4b,0x4, + 0x3b,0x4,0x35,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4, + 0x32,0x4,0x51,0x4,0x40,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4, + 0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e, + 0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x26,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x3e, + 0x4,0x40,0x0,0x20,0x4,0x42,0x4,0x38,0x4,0x3f,0x4,0x3e,0x4,0x32,0x0,0x20, + 0x4,0x26,0x4,0x1f,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x4d, + 0x4,0x42,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x41,0x4,0x42, + 0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34, + 0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x4d,0x4,0x3c, + 0x4,0x43,0x4,0x3b,0x4,0x38,0x4,0x40,0x4,0x43,0x4,0x35,0x4,0x3c,0x4,0x3e, + 0x4,0x39,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35, + 0x4,0x3d,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x2d,0x4,0x42,0x4,0x3e,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x32,0x4,0x3e,0x4,0x3b,0x4,0x4f,0x4,0x35, + 0x4,0x42,0x0,0x20,0x4,0x32,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x46,0x4,0x35,0x4,0x41, + 0x4,0x41,0x4,0x3e,0x4,0x40,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3f, + 0x4,0x40,0x4,0x3e,0x4,0x42,0x4,0x38,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4,0x3c, + 0x0,0x20,0x4,0x41,0x4,0x3b,0x4,0x43,0x4,0x47,0x4,0x30,0x4,0x35,0x0,0x20, + 0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x3c,0x4,0x35,0x4,0x41, + 0x4,0x42,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x32,0x4,0x4b, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20, + 0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42, + 0x4,0x3e,0x4,0x39,0x0,0x2e,0x0,0x20,0x4,0x1e,0x4,0x34,0x4,0x3d,0x4,0x30, + 0x4,0x3a,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x42, + 0x4,0x3e,0x4,0x3b,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x4c,0x4,0x41, + 0x4,0x4f,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x41,0x4,0x3e, + 0x4,0x32,0x4,0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x3e, + 0x4,0x41,0x4,0x42,0x4,0x4c,0x4,0x4e,0x0,0x20,0x4,0x41,0x0,0x20,0x0,0x42, + 0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35, + 0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x39,0x0,0x20, + 0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x3b, + 0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x38,0x4,0x3c, + 0x0,0x20,0x4,0x1f,0x4,0x1e,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x3a, + 0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20, + 0x4,0x4d,0x4,0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x30, + 0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20, + 0x4,0x3e,0x4,0x44,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x4c, + 0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e, + 0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30, + 0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x38,0x0,0x20, + 0x4,0x32,0x4,0x41,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x30, + 0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x47, + 0x4,0x35,0x4,0x42,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x31,0x0,0x20,0x4,0x3e, + 0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x30,0x4,0x45,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x33,0x4,0x43,0x4,0x42,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42, + 0x4,0x4b,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x4,0x34,0x4,0x35,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x42, + 0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x26,0x4,0x1f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20, + 0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x4,0x1e,0x4,0x42,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4, + 0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4, + 0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4, + 0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x4,0x35,0x4,0x39,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x4,0x1a,0x4,0x30,0x4,0x41,0x4,0x41,0x4,0x35,0x4,0x42, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x41,0x4,0x41,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1a,0x4, + 0x30,0x4,0x41,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x30,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x58,0x4,0x18,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38, + 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40, + 0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x0,0x26,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4,0x40, + 0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3b,0x4,0x35,0x4,0x4f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1a,0x4,0x30,0x4,0x3d,0x4,0x30, + 0x4,0x3b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x4f,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x29,0x4,0x51,0x4,0x3b,0x4, + 0x3a,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x4b,0x4, + 0x48,0x4,0x4c,0x4,0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4, + 0x37,0x4,0x30,0x4,0x45,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x4, + 0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1d,0x4,0x30,0x4,0x41,0x4,0x42, + 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x34, + 0x4,0x3e,0x4,0x3b,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4, + 0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4, + 0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4, + 0x40,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x4,0x1d,0x4,0x35,0x0,0x20,0x4, + 0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c,0x0,0x20,0x4, + 0x38,0x4,0x41,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4, + 0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x3a,0x4, + 0x43,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66, + 0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1d,0x4,0x35, + 0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c, + 0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b, + 0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x17,0x4,0x30,0x4, + 0x34,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4, + 0x47,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c, + 0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x4,0x17,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4,0x47,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x4,0x26,0x4,0x38,0x4,0x3b,0x4,0x38,0x4,0x3d,0x4,0x34,0x4, + 0x40,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x4,0x3a, + 0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46, + 0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1f,0x4,0x3e,0x0,0x20, + 0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4,0x47,0x4,0x30,0x4,0x3d,0x4,0x38, + 0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x4,0x14, + 0x4,0x38,0x4,0x44,0x4,0x44,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46, + 0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b, + 0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x4,0x1e,0x4,0x42,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42, + 0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4, + 0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4,0x34,0x4, + 0x30,0x4,0x3d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x24,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x30, + 0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x43, + 0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x49,0x4,0x35,0x4,0x41, + 0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x21,0x4, + 0x3b,0x4,0x38,0x4,0x48,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x31,0x4, + 0x3e,0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4, + 0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x4,0x20,0x4,0x30, + 0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x35, + 0x4,0x32,0x4,0x4b,0x4,0x48,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x4,0x13,0x4,0x11,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x20,0x4,0x30,0x4,0x37, + 0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69, + 0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x4,0x14,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3b,0x4,0x35,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x25,0x4, + 0x3e,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x32,0x4,0x4b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4, + 0x30,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x4b,0x4, + 0x45,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1d,0x4,0x35,0x0,0x20, + 0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38, + 0x4,0x41,0x4,0x4b,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37, + 0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x4,0x11,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x3d, + 0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x4b, + 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x3e, + 0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x31,0x4,0x49,0x4,0x35,0x4,0x3d, + 0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x14,0x4,0x38,0x4,0x3d,0x4,0x30,0x4,0x3c, + 0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20, + 0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x4,0x38,0x4,0x3b, + 0x4,0x4f,0x4,0x42,0x4,0x3e,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,0x30,0x4, + 0x3c,0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x33,0x4, + 0x3e,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x4, + 0x30,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1d,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x0,0x20,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x18, + 0x0,0x26,0x4,0x37,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x47,0x4,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1f,0x0,0x26,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x3e,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x4,0x12,0x4,0x4b,0x4,0x45,0x4,0x3e,0x4,0x34,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x4,0x2d,0x0,0x26,0x4,0x3a,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4, + 0x42,0x0,0x20,0x4,0x32,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4, + 0x1f,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x4b,0x4,0x34,0x4,0x43,0x4,0x49,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4, + 0x32,0x4,0x3e,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4, + 0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x42,0x4, + 0x35,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4e,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54, + 0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x12,0x4, + 0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x0, + 0x28,0x4,0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x17,0x4,0x30,0x4,0x32, + 0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x42, + 0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32, + 0x4,0x3a,0x4,0x43,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x12,0x4,0x45,0x4,0x3e,0x4,0x34,0x0, + 0x20,0x4,0x32,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x3e,0x4, + 0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0, + 0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1e,0x4,0x48,0x4,0x38,0x4,0x31, + 0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72, + 0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4,0x1e, + 0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x3d, + 0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x37,0x4,0x30, + 0x4,0x46,0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x12,0x4,0x4b,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x28,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x49, + 0x4,0x38,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x0,0x20,0x4,0x37, + 0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x38,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x12,0x4,0x4b,0x4, + 0x45,0x4,0x3e,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x23, + 0x0,0x26,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38, + 0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x3e,0x4,0x42,0x4,0x3d, + 0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x41, + 0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x3d,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4, + 0x35,0x4,0x40,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x14, + 0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x46, + 0x0,0x4d,0x0,0x2d,0x4,0x41,0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x37, + 0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1d,0x4, + 0x35,0x0,0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4, + 0x4c,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4, + 0x3b,0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4, + 0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4, + 0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x0, + 0x20,0x4,0x43,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4c,0x0, + 0x20,0x4,0x3d,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x38,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x11,0x4,0x4b,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x4b,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46, + 0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1d, + 0x4,0x35,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38, + 0x4,0x3c,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3e,0x4,0x48,0x4,0x38,0x4,0x31, + 0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x4,0x18,0x4,0x3c,0x4,0x4f,0x0,0x20,0x4,0x44,0x4, + 0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1c,0x4,0x35,0x4,0x42,0x4,0x3e, + 0x4,0x34,0x0,0x20,0x4,0x44,0x4,0x38,0x4,0x3b,0x4,0x4c,0x4,0x42,0x4,0x40, + 0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x4,0x44,0x4,0x38,0x4,0x3a,0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20, + 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x30,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x14,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e, + 0x4,0x32,0x4,0x3e,0x4,0x34,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x13,0x4,0x38,0x4,0x31,0x4,0x3a, + 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38, + 0x0,0x20,0x4,0x38,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x13,0x4, + 0x38,0x4,0x31,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x38,0x4, + 0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x26,0x4,0x20,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x4f,0x4,0x33,0x4,0x38, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x3e,0x4,0x4d,0x4,0x3a,0x4,0x40, + 0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x40,0x4,0x35, + 0x4,0x36,0x4,0x38,0x4,0x3c,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74, + 0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x23,0x4,0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x22, + 0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45, + 0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20, + 0x0,0x26,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42, + 0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4, + 0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x64,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35, + 0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3e, + 0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20, + 0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,0x40, + 0x4,0x35,0x4,0x32,0x4,0x4b,0x4,0x48,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20, + 0x0,0x34,0x0,0x20,0x4,0x13,0x4,0x11,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x4,0x41,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4, + 0x3c,0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4, + 0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x3e,0x4, + 0x42,0x4,0x3b,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x4b,0x4,0x3c,0x0,0x20,0x4, + 0x3e,0x4,0x42,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x2c,0x0,0x20,0x4, + 0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4, + 0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x4e,0x4,0x42,0x4,0x41,0x4, + 0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49, + 0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77, + 0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a, + 0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32, + 0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x4,0x16,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x36,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a, + 0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e, + 0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x16,0x4,0x51,0x4,0x41,0x4,0x42,0x4, + 0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4, + 0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x4,0x16,0x4,0x51,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x25,0x4,0x3e, + 0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43, + 0x4,0x37,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x4,0x1e,0x4,0x31,0x4,0x3e,0x4,0x40,0x4,0x43,0x4, + 0x34,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4, + 0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4, + 0x3d,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x13, + 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x32,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x12,0x4,0x4b,0x4,0x41,0x4, + 0x3e,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4, + 0x31,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x35,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x4,0x21,0x0,0x26,0x4,0x3a,0x4,0x40,0x4,0x4b,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x3d,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20, + 0x4,0x38,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c,0x4,0x35, + 0x4,0x3d,0x4,0x42,0x4,0x3e,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x23,0x4,0x41,0x4,0x3a, + 0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x1a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x38, + 0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x30, + 0x4,0x3c,0x4,0x4f,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x23,0x4,0x41,0x4,0x42, + 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1d,0x4,0x30,0x4,0x31,0x4,0x3e,0x4, + 0x40,0x0,0x20,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4, + 0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x37,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x32,0x4, + 0x32,0x4,0x3e,0x4,0x34,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x12,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x3e,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4, + 0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x3b,0x4, + 0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74, + 0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1d,0x4,0x35,0x4, + 0x32,0x4,0x35,0x4,0x40,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4, + 0x3e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x3f,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4, + 0x3e,0x4,0x3d,0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4, + 0x46,0x4,0x38,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4, + 0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4, + 0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x38,0x4,0x3a,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4, + 0x1a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42, + 0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41, + 0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e, + 0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x23,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x32,0x4, + 0x3e,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x2f, + 0x4,0x37,0x4,0x4b,0x4,0x3a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x11,0x4,0x3e,0x4,0x3b,0x4,0x4c,0x4,0x48, + 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x38, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x17,0x4,0x30,0x4,0x44,0x4,0x38,0x4,0x3a, + 0x4,0x41,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4, + 0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x4,0x3d,0x4, + 0x38,0x4,0x3a,0x4,0x3e,0x4,0x33,0x4,0x34,0x4,0x30,0x0,0x20,0x4,0x3d,0x4, + 0x35,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x49,0x4,0x35,0x4,0x41,0x4,0x42,0x4, + 0x32,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3b,0x4,0x3e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20, + 0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x4,0x43,0x4,0x41,0x4, + 0x42,0x4,0x40,0x0,0x2d,0x4,0x32,0x4,0x3e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0, + 0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x0,0x2d,0x4,0x32,0x4,0x3e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3e,0x4,0x1c,0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x38, + 0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x35, + 0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f, + 0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x1c,0x4,0x30,0x4,0x33,0x4, + 0x3d,0x4,0x38,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f,0x4,0x42,0x4,0x38,0x4, + 0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x4b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x4,0x3c, + 0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f, + 0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x35,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x45, + 0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1a,0x4,0x3e, + 0x4,0x3c,0x4,0x3f,0x4,0x4c,0x4,0x4e,0x4,0x42,0x4,0x35,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x6,0x4,0x21,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f, + 0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41, + 0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x37, + 0x0,0x2d,0x4,0x37,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x42,0x4,0x41,0x4,0x43, + 0x4,0x42,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x44, + 0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20, + 0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30, + 0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x33,0x4,0x35,0x0,0x20,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x4,0x1f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d, + 0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e, + 0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x4,0x4e,0x0,0x20, + 0x4,0x41,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x43, + 0x4,0x4e,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x43,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x22,0x4,0x38,0x4,0x3f, + 0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d, + 0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x30, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa4,0x4, + 0x23,0x4,0x31,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x41,0x4, + 0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x0, + 0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x35,0x0, + 0x20,0x4,0x41,0x4,0x3e,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x3d,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x32,0x4, + 0x3c,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x3e,0x0,0x20,0x4, + 0x41,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b, + 0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69, + 0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20, + 0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6a,0x4,0x23,0x4,0x31,0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4, + 0x35,0x4,0x41,0x4,0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0, + 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x41,0x4,0x43,0x4, + 0x49,0x4,0x35,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x43,0x4,0x35,0x4,0x42,0x0, + 0x20,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4, + 0x3f,0x4,0x35,0x4,0x3d,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4, + 0x47,0x4,0x42,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x4,0x23,0x4,0x31, + 0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x2c, + 0x0,0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d, + 0x4,0x4f,0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43, + 0x4,0x3f,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x38,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4, + 0x1f,0x4,0x30,0x4,0x3c,0x4,0x4f,0x4,0x42,0x4,0x4c,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x1c,0x4,0x3e,0x4,0x3d,0x4,0x38,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x4f, + 0x4,0x49,0x4,0x35,0x4,0x3c,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38, + 0x4,0x3c,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x27, + 0x4,0x43,0x4,0x32,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x35, + 0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20, + 0x4,0x3c,0x4,0x4b,0x4,0x48,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74, + 0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x4,0x1c,0x4,0x4b,0x4,0x48,0x4,0x4c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x21,0x4,0x35,0x4,0x42,0x4,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x21,0x4,0x35,0x4,0x42, + 0x4,0x35,0x4,0x32,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x22,0x4,0x38,0x4, + 0x3f,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x42,0x4,0x38,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4, + 0x1d,0x4,0x3e,0x4,0x32,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4, + 0x41,0x4,0x42,0x4,0x32,0x4,0x30,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x39,0x4, + 0x34,0x4,0x35,0x4,0x3d,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4, + 0x3d,0x4,0x30,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x4b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4, + 0x1d,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x4,0x31,0x4,0x3e, + 0x4,0x3b,0x4,0x35,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d, + 0x4,0x4b,0x4,0x39,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75, + 0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x12,0x4,0x4b,0x4, + 0x3a,0x4,0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x12,0x4,0x3a,0x4, + 0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb6,0x4,0x1d,0x4,0x35,0x4,0x32,0x4, + 0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4, + 0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4,0x38,0x4, + 0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x40,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x0,0x2e,0x0,0x20,0x4, + 0x1f,0x4,0x3e,0x4,0x36,0x4,0x30,0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4, + 0x3b,0x4,0x4c,0x4,0x37,0x4,0x43,0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x20,0x4, + 0x34,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x3e,0x4,0x39,0x0,0x20,0x4,0x40,0x4, + 0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73, + 0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x28, + 0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x20,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70, + 0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x4,0x14,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x44,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x14,0x4,0x40,0x4,0x43,0x4,0x33,0x4,0x38, + 0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x4a,0x4,0x51,0x4,0x3c,0x4,0x3d,0x4,0x4b, + 0x4,0x35,0x0,0x20,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x40,0x0,0x2d,0x4,0x32, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41, + 0x4,0x30,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x4,0x23,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x39, + 0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x4,0x20,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0, + 0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4, + 0x30,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x4,0x12,0x4,0x40,0x4,0x35,0x4, + 0x3c,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4,0x3c,0x4, + 0x35,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x34,0x4, + 0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4, + 0x33,0x4,0x3e,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x47,0x4, + 0x35,0x4,0x40,0x4,0x3d,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35,0x0, + 0x20,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x3f,0x4,0x30,0x4,0x34,0x4,0x30,0x4, + 0x4e,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72, + 0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f, + 0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x3e,0x4,0x41,0x4, + 0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x32,0x4,0x4b,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x22,0x4,0x3e,0x4,0x47,0x4, + 0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x4,0x1f,0x4, + 0x3e,0x4,0x36,0x4,0x30,0x4,0x3b,0x4,0x43,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x30,0x0,0x2c,0x0,0x20,0x4,0x43,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x38,0x4, + 0x42,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4, + 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x3e,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x3c,0x4, + 0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x4,0x1f,0x4,0x3e,0x4,0x40,0x4,0x42,0x4,0x4b,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x4,0x38,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50, + 0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65, + 0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4, + 0x1d,0x4,0x30,0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1d,0x4,0x30, + 0x4,0x36,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73, + 0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x4,0x1d,0x4,0x30,0x4,0x36,0x4, + 0x3c,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x44,0x0,0x6e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x32,0x4, + 0x3e,0x4,0x37,0x4,0x32,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x20,0x4, + 0x32,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, + 0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x7c,0x4,0x1d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4, + 0x35,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x40,0x4,0x35,0x4, + 0x34,0x4,0x3d,0x4,0x4e,0x4,0x4e,0x0,0x20,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4, + 0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3c,0x4,0x4b,0x4,0x48,0x4,0x38,0x0, + 0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4, + 0x41,0x4,0x32,0x4,0x3e,0x4,0x31,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4c,0x4,0x1d,0x4,0x30,0x4,0x36,0x4,0x3c,0x4,0x38,0x4,0x42,0x4,0x35, + 0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20, + 0x4,0x47,0x4,0x42,0x4,0x3e,0x4,0x31,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x41, + 0x4,0x32,0x4,0x3e,0x4,0x31,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x35,0x4,0x41,0x4,0x41, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x4,0x27,0x4,0x35,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x38, + 0x4,0x47,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b, + 0x4,0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3a,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x3e,0x4,0x3c, + 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37, + 0x4,0x3c,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x3e, + 0x4,0x3b,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x4,0x46,0x4,0x32,0x4,0x35,0x4,0x42,0x4, + 0x3d,0x4,0x3e,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52, + 0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x4,0x40,0x4,0x35, + 0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52,0x0,0x41,0x0,0x57,0x0,0x20,0x4,0x3e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69, + 0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x4,0x20,0x4, + 0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x4,0x1d,0x4, + 0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x4c,0x4, + 0x42,0x4,0x35,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4,0x35,0x4, + 0x42,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x38,0x0,0x20,0x4,0x3e,0x4, + 0x42,0x4,0x44,0x4,0x3e,0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x38,0x4, + 0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4, + 0x3d,0x4,0x3e,0x4,0x32,0x4,0x4c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4, + 0x34,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4, + 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x12,0x4,0x3e,0x4,0x37,0x4, + 0x3e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x32,0x4,0x4b,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x3d,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30, + 0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x68,0x4,0x21,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x4,0x4d,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x4b,0x0, + 0x20,0x4,0x3a,0x4,0x30,0x4,0x3a,0x0,0x20,0x0,0x26,0x4,0x33,0x4,0x3b,0x4, + 0x3e,0x4,0x31,0x4,0x30,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x0,0x20,0x4,0x43,0x4,0x3c,0x4,0x3e,0x4,0x3b,0x4, + 0x47,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4, + 0x40,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x64,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x3c, + 0x4,0x35,0x4,0x34,0x4,0x38,0x4,0x30,0x0,0x2d,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x4,0x3e,0x4,0x32,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x20, + 0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x33,0x4,0x3e, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x33, + 0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30, + 0x4,0x3c,0x4,0x3c,0x4,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x12,0x4, + 0x4b,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4, + 0x40,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4, + 0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4, + 0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4, + 0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4, + 0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x34,0x4,0x3e,0x4, + 0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1d,0x4,0x30,0x4,0x41,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x39,0x4,0x3a,0x4,0x38,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x20,0x4,0x30,0x4,0x37,0x4,0x3c, + 0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x28,0x4,0x1c,0x4,0x11,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x1c,0x4,0x35,0x4,0x34,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1c,0x4,0x30,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x4c,0x4,0x3a,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x31, + 0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31, + 0x0,0x32,0x0,0x20,0x4,0x1a,0x4,0x11,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x4,0x23,0x4,0x41,0x4,0x38,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43, + 0x4,0x3a,0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x23,0x4, + 0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4, + 0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x17,0x4,0x32, + 0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x4f, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32, + 0x4,0x30,0x4,0x4f,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x37, + 0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c, + 0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x20,0x4,0x33,0x4,0x3b,0x4,0x30,0x4,0x32, + 0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3e,0x4,0x3a,0x4,0x3d, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x4,0x23,0x4,0x3a,0x4,0x30,0x4,0x37,0x4, + 0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x3c,0x4, + 0x35,0x4,0x40,0x4,0x4b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4, + 0x41,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x21,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x4c,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1e,0x4,0x42, + 0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x32,0x0, + 0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4, + 0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4, + 0x34,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0, + 0x34,0x0,0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4, + 0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x36, + 0x0,0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x3d, + 0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41, + 0x4,0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x38,0x0, + 0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4, + 0x4b,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e, + 0x4,0x3b,0x4,0x3b,0x4,0x35,0x4,0x40,0x4,0x4b,0x0,0x20,0x4,0x34,0x4,0x38, + 0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x66,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20, + 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4, + 0x21,0x4,0x34,0x4,0x35,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4, + 0x41,0x0,0x26,0x4,0x3a,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x48,0x4,0x3e,0x4, + 0x42,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b, + 0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x4,0x26,0x4,0x35,0x4,0x3b,0x4,0x35,0x4,0x32,0x4,0x30,0x4,0x4f,0x0, + 0x20,0x0,0x26,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x42,0x4, + 0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x3e,0x4,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x4,0x22,0x4,0x40,0x4,0x35,0x4,0x42,0x4,0x38,0x4, + 0x47,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4, + 0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54, + 0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x72,0x4,0x21,0x4,0x35,0x4,0x42,0x4,0x35,0x4,0x32,0x4,0x30,0x4,0x4f,0x0, + 0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4, + 0x40,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x31,0x4,0x43,0x4, + 0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x30,0x0,0x20,0x4, + 0x3d,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x43,0x4,0x3b,0x4,0x35,0x4,0x32,0x4, + 0x3e,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4, + 0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x94,0x4,0x12,0x4,0x4b,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4, + 0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4, + 0x41,0x4,0x30,0x4,0x3d,0x0,0x2e,0x0,0x20,0x4,0x12,0x4,0x4b,0x0,0x20,0x4, + 0x43,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x2c,0x0, + 0x20,0x4,0x47,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4, + 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4, + 0x3b,0x4,0x4c,0x4,0x37,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x35,0x4,0x33,0x4,0x3e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x2,0x26,0x4,0x2d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x3c,0x4, + 0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4, + 0x30,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x2c,0x0,0x20,0x4,0x47,0x4, + 0x42,0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4, + 0x35,0x4,0x3b,0x4,0x4c,0x4,0x41,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x4, + 0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x31,0x4,0x4b,0x4, + 0x3b,0x0,0x20,0x4,0x38,0x4,0x37,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x51,0x4, + 0x3d,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x35,0x0,0x20,0x4, + 0x42,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x3a,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x3b,0x0,0x20,0x4,0x41,0x4,0x3e,0x4, + 0x37,0x4,0x34,0x4,0x30,0x4,0x3d,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x44,0x4, + 0x44,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46,0x4,0x38,0x4,0x40,0x4, + 0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x4, + 0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0xa,0x0,0xa,0x4, + 0x2d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x3a,0x4,0x36,0x4, + 0x35,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x0,0x20,0x4, + 0x3f,0x4,0x40,0x4,0x3e,0x4,0x38,0x4,0x37,0x4,0x3e,0x4,0x39,0x4,0x42,0x4, + 0x38,0x0,0x2c,0x0,0x20,0x4,0x35,0x4,0x41,0x4,0x3b,0x4,0x38,0x0,0x20,0x4, + 0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x4,0x30,0x0,0x20,0x4,0x31,0x4,0x4b,0x4,0x3b,0x4, + 0x38,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4, + 0x49,0x4,0x35,0x4,0x3d,0x4,0x4b,0x0,0x20,0x4,0x38,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x3f,0x4,0x38,0x4,0x40,0x4,0x3e,0x4, + 0x32,0x4,0x30,0x4,0x3d,0x4,0x4b,0x0,0x2c,0x0,0x20,0x4,0x38,0x4,0x3b,0x4, + 0x38,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x2d,0x4,0x37,0x4,0x30,0x0,0x20,0x4, + 0x3e,0x4,0x48,0x4,0x38,0x4,0x31,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x32,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4, + 0x3c,0x4,0x35,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x3e,0x4,0x37,0x4,0x34,0x4, + 0x30,0x4,0x32,0x4,0x48,0x4,0x35,0x4,0x39,0x0,0x20,0x4,0x4d,0x4,0x42,0x4, + 0x3e,0x4,0x42,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x0, + 0xa,0x0,0xa,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x42,0x4, + 0x38,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x38,0x4,0x41,0x4,0x3f,0x4,0x40,0x4, + 0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x4,0x40,0x4, + 0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4b,0x4,0x35,0x0,0x20,0x4, + 0x3c,0x4,0x35,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d, + 0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68, + 0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68, + 0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f, + 0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f, + 0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b, + 0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74, + 0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70, + 0x4,0x2d,0x4,0x42,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x32, + 0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x42,0x0,0x20,0x4,0x3a,0x0,0x20,0x4,0x45, + 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x39,0x0,0x20, + 0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40, + 0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x35,0x0,0x20,0x4,0x4d,0x4,0x3c,0x4,0x43, + 0x4,0x3b,0x4,0x38,0x4,0x40,0x4,0x43,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x39, + 0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x4b,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x4, + 0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x30,0x0,0x20,0x4, + 0x43,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4, + 0x38,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x42,0x4, + 0x3e,0x4,0x3c,0x0,0x20,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e, + 0x4,0x3d,0x4,0x38,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x38,0x4,0x4f,0x0,0x20, + 0x4,0x32,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x38,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e, + 0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x22,0x4,0x43,0x4,0x40,0x4,0x31,0x4, + 0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x22,0x4,0x43,0x4, + 0x40,0x4,0x31,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x39,0x4,0x3c,0x4, + 0x38,0x4,0x3d,0x4,0x33,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x22,0x4,0x38,0x4,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36, + 0x4,0x38,0x4,0x32,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x41,0x4,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x4,0x1d,0x4,0x35,0x4, + 0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0, + 0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30,0x4,0x3b,0x4, + 0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4, + 0x4c,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x4,0x1d, + 0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d, + 0x4,0x3e,0x0,0x20,0x4,0x38,0x4,0x3d,0x4,0x38,0x4,0x46,0x4,0x38,0x4,0x30, + 0x4,0x3b,0x4,0x38,0x4,0x37,0x4,0x38,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x30, + 0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20, + 0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,0x4,0x43,0x4,0x35,0x4,0x42,0x4,0x41, + 0x4,0x4f,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64, + 0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x4,0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4, + 0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x37,0x4, + 0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x38,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x42,0x4, + 0x35,0x4,0x3b,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4,0x32,0x4, + 0x38,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x40,0x4,0x4b,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61, + 0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4, + 0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4, + 0x40,0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x30,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6c,0x4,0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4, + 0x36,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x40,0x4,0x35,0x4, + 0x33,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x40,0x4,0x3e,0x4, + 0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x31,0x4,0x3e,0x4,0x42,0x4,0x30,0x4,0x3d,0x4, + 0x3d,0x4,0x4b,0x4,0x39,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x41,0x0,0x57,0x0, + 0x29,0x0,0x20,0x4,0x32,0x4,0x32,0x4,0x3e,0x4,0x34,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e, + 0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4, + 0x1d,0x4,0x35,0x4,0x32,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4, + 0x3d,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4, + 0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x3e, + 0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4,0x38,0x4,0x32,0x4,0x30, + 0x4,0x35,0x4,0x3c,0x4,0x4b,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x4,0x37,0x4,0x32,0x4, + 0x43,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x4,0x22,0x4,0x38,0x4, + 0x3f,0x0,0x20,0x4,0x4d,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0, + 0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x24,0x4,0x30, + 0x4,0x39,0x4,0x3b,0x4,0x4b,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xec,0x4,0x12,0x4,0x38, + 0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4,0x3d, + 0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d, + 0x4,0x30,0x0,0x20,0x4,0x38,0x4,0x37,0x0,0x2d,0x4,0x37,0x4,0x30,0x0,0x20, + 0x4,0x3e,0x4,0x42,0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x41,0x4,0x42,0x4,0x32, + 0x4,0x38,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x30, + 0x0,0x20,0x4,0x35,0x4,0x51,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e, + 0x4,0x33,0x4,0x35,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x4,0x1f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35, + 0x4,0x3d,0x4,0x38,0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34, + 0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x4,0x4e, + 0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30, + 0x4,0x40,0x4,0x42,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68, + 0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69, + 0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72, + 0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x4,0x12,0x4,0x38,0x4,0x34,0x4,0x35,0x4,0x3e,0x4, + 0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x23,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x26,0x4,0x38, + 0x4,0x3a,0x4,0x3b,0x4,0x4b,0x0,0x20,0x4,0x3e,0x4,0x36,0x4,0x38,0x4,0x34, + 0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x14,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x36,0x4,0x30,0x4, + 0x3b,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x32,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x4,0x28,0x4,0x38,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x30,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x23,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x35,0x4,0x3b,0x4,0x4c,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x4, + 0x31,0x4,0x4b,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x39,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x4,0x12,0x4,0x4b,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4, + 0x43,0x4,0x36,0x4,0x30,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x3d,0x4, + 0x35,0x4,0x3f,0x4,0x3e,0x4,0x34,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x36,0x4, + 0x38,0x4,0x32,0x4,0x30,0x4,0x35,0x4,0x3c,0x4,0x43,0x4,0x4e,0x0,0x20,0x4, + 0x3a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x38,0x4,0x33,0x4,0x43,0x4,0x40,0x4, + 0x30,0x4,0x46,0x4,0x38,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x4b,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ko-KR.qm + 0x0,0x0,0x78,0x77, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x23,0x19,0x0,0x0,0x0,0x48, + 0x0,0x0,0x3a,0xe7,0x0,0x0,0x0,0x53,0x0,0x0,0x56,0x12,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x2,0xa4,0x0,0x0,0x4,0xf2,0x0,0x0,0x42,0xa7,0x0,0x0,0x5,0x12, + 0x0,0x0,0x44,0x1a,0x0,0x0,0x5,0x3b,0x0,0x0,0x4c,0x5c,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x4c,0x93,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0x43,0x0,0x0,0x29,0x98, + 0x0,0x0,0x3,0x97,0x0,0x0,0x29,0xa8,0x0,0x0,0x3,0xeb,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0x36,0x0,0x0,0x29,0xc8,0x0,0x0,0x4,0x8a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x4,0xde,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x32,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0x56,0x0,0x0,0x49,0xc3,0x0,0x0,0x22,0xde,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x3f,0x34,0x0,0x0,0x4d,0x85,0x0,0x0,0x3f,0x52,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x4c,0x77,0x0,0x0,0x5d,0x81,0x0,0x0,0x69,0x15,0x0,0x2,0x83,0x79, + 0x0,0x0,0x1,0xaf,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xf,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x10,0x7e,0x0,0x4,0x8c,0xaf,0x0,0x0,0x21,0x88,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x22,0xfa,0x0,0x4,0xa7,0x89,0x0,0x0,0x33,0x9f,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x37,0x7a,0x0,0x4,0xc8,0xa4,0x0,0x0,0x38,0x47,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x36,0x3d,0x0,0x4,0xd0,0x25,0x0,0x0,0x38,0x92,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x3a,0x81,0x0,0x5,0x56,0x45,0x0,0x0,0x4b,0xfb,0x0,0x5,0x78,0x79, + 0x0,0x0,0x56,0x2a,0x0,0x5,0x98,0xc5,0x0,0x0,0x57,0x12,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x59,0x81,0x0,0x5,0xc0,0x65,0x0,0x0,0x62,0xf7,0x0,0x12,0x74,0x52, + 0x0,0x0,0x16,0xae,0x0,0x19,0x74,0x52,0x0,0x0,0x16,0xe7,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0x19,0x0,0x2a,0xec,0x30,0x0,0x0,0x9,0x65,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xb,0x29,0x0,0x2b,0x72,0x89,0x0,0x0,0xc,0x25,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x10,0xd4,0x0,0x34,0x9,0xc8,0x0,0x0,0x12,0x8,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x65,0x11,0x0,0x3b,0xa9,0x68,0x0,0x0,0x17,0x6e,0x0,0x46,0x86,0x49, + 0x0,0x0,0x19,0xb9,0x0,0x4c,0x99,0x62,0x0,0x0,0x35,0x76,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x2d,0xf1,0x0,0x58,0xc9,0xc4,0x0,0x0,0x55,0xc3,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x5b,0xbb,0x0,0x5a,0x6c,0x44,0x0,0x0,0x59,0xe4,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x62,0xad,0x0,0x5c,0x6,0x8a,0x0,0x0,0x63,0x14,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x6b,0x47,0x0,0x73,0x75,0x3e,0x0,0x0,0x2c,0xd4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x4b,0xbb,0x0,0x97,0x96,0x4,0x0,0x0,0x2f,0xe,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x41,0x1f,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x42,0x7f,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x3d,0x30,0x0,0xb8,0x5f,0x43,0x0,0x0,0x4d,0xf7,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x16,0x75,0x1,0x9,0x1c,0x92,0x0,0x0,0x36,0xe4,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x25,0x78,0x1,0x39,0xa4,0xce,0x0,0x0,0x49,0x1e,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x62,0xcb,0x1,0x4c,0x50,0xee,0x0,0x0,0x54,0x14,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x3c,0xf7,0x1,0x61,0xac,0xc9,0x0,0x0,0x11,0x70,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x61,0x9e,0x1,0x7a,0x2c,0x99,0x0,0x0,0x32,0x45,0x1,0x91,0xe,0x73, + 0x0,0x0,0x23,0xb7,0x1,0x9c,0xe0,0x83,0x0,0x0,0x3e,0xf0,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x45,0x73,0x1,0xb0,0x47,0x5c,0x0,0x0,0x44,0x35,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0x9,0x8d,0x1,0xc8,0x65,0x8f,0x0,0x0,0x36,0x5c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xa,0x33,0x1,0xdd,0x59,0x87,0x0,0x0,0xd,0xf3,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x2a,0x76,0x1,0xe6,0x0,0xe9,0x0,0x0,0x56,0xd0,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x5b,0xfa,0x2,0x14,0x18,0x2e,0x0,0x0,0x9,0x2e,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x5d,0xd,0x2,0x23,0x3c,0x6b,0x0,0x0,0x5c,0xc8,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x5c,0x83,0x2,0x3c,0xaa,0x89,0x0,0x0,0x14,0x4c,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x3e,0x75,0x2,0x78,0x48,0x1a,0x0,0x0,0x45,0x39,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x69,0x75,0x2,0x90,0x8d,0x12,0x0,0x0,0x37,0x9b,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x4e,0x60,0x2,0xad,0x4a,0x22,0x0,0x0,0x54,0x67,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0x25,0x2,0xb3,0xba,0xf1,0x0,0x0,0xb,0x0,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xb,0xfa,0x2,0xbb,0x66,0x33,0x0,0x0,0x10,0x8,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x10,0xa5,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x4e,0x2c,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x6b,0x6b,0x3,0x5,0x38,0xb2,0x0,0x0,0x35,0x94,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x50,0xfd,0x3,0x41,0x45,0x12,0x0,0x0,0x12,0x32,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x12,0xee,0x3,0x4b,0x26,0xf2,0x0,0x0,0x13,0x15,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x44,0x5f,0x3,0x65,0x26,0xf2,0x0,0x0,0x15,0xb1,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x15,0xd8,0x3,0x6a,0x66,0x2e,0x0,0x0,0x47,0xe3,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x46,0x52,0x3,0x7d,0x6c,0xe,0x0,0x0,0x9,0xca,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x29,0x77,0x3,0x95,0x9d,0xe9,0x0,0x0,0x2,0xbf,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x17,0x20,0x3,0xa4,0x35,0xa5,0x0,0x0,0x37,0x5a,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x37,0x22,0x3,0xa5,0x26,0xf2,0x0,0x0,0x17,0x47,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x49,0xad,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x5c,0x3b,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x5b,0x4,0x3,0xe4,0x25,0x5a,0x0,0x0,0x5a,0xd0,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x5a,0x9c,0x3,0xe4,0x25,0x7a,0x0,0x0,0x5a,0x68,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0x7a,0x4,0x3,0xf6,0x9a,0x0,0x0,0x47,0x92,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x14,0xa3,0x4,0x15,0x75,0x22,0x0,0x0,0x12,0x59,0x4,0x17,0x65,0x22, + 0x0,0x0,0x12,0x83,0x4,0x1c,0x68,0x69,0x0,0x0,0x13,0xf2,0x4,0x23,0x29,0x55, + 0x0,0x0,0x9,0xfc,0x4,0x31,0xff,0xe9,0x0,0x0,0x21,0xa5,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x24,0x69,0x4,0x51,0x79,0xb1,0x0,0x0,0x5d,0xb7,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x63,0xe8,0x4,0x5b,0x53,0x1f,0x0,0x0,0x21,0x14,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x5a,0x3f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x32,0xd8,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x33,0x1,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x2c,0x7b,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x28,0xc0,0x4,0xb8,0x1,0x2e,0x0,0x0,0x30,0x22,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xb,0x51,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0x30,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x15,0x57,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x4a,0xc2,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x2b,0x78,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x14,0xfd,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1a,0x57,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x4a,0xe6,0x4,0xeb,0x2f,0xa,0x0,0x0,0x43,0x86,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x3e,0x32,0x5,0x18,0x5,0x95,0x0,0x0,0x65,0x69,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x13,0x77,0x5,0x30,0xd3,0xe,0x0,0x0,0x31,0xc8,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x4a,0x9f,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x6a,0xa,0x5,0x5f,0x7b,0x59,0x0,0x0,0xe,0x8c,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x33,0x5b,0x5,0x88,0x2e,0xd9,0x0,0x0,0x59,0x9e,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x46,0x72,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x62,0x78,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x5e,0x93,0x5,0xa5,0x3a,0x79,0x0,0x0,0x21,0xf3,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x5b,0xd9,0x5,0xb2,0x16,0x79,0x0,0x0,0x54,0xc8,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x3b,0xb2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x3c,0xb6,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x35,0x35,0x5,0xb8,0x5d,0xad,0x0,0x0,0x13,0x3c,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x11,0xcd,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x12,0xad,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x3e,0xb4,0x5,0xc1,0x4d,0x83,0x0,0x0,0x2f,0x80,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x67,0xcd,0x5,0xd0,0x4f,0x11,0x0,0x0,0x68,0x5b,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xd,0xa6,0x5,0xdf,0xba,0xba,0x0,0x0,0x68,0x9b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x53,0xaa,0x6,0x7,0xd3,0xda,0x0,0x0,0x40,0x65,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x2f,0x39,0x6,0x19,0x20,0x43,0x0,0x0,0x57,0x2f,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x31,0x9c,0x6,0x38,0x9f,0x35,0x0,0x0,0x2f,0xdb,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1b,0x5a,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x1f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x2b,0x9a,0x6,0x6c,0xb8,0x3,0x0,0x0,0x66,0x7e,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x3d,0x69,0x6,0x74,0xe,0x6a,0x0,0x0,0x4e,0xf9,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x3d,0xc2,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1a,0x25,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x34,0x35,0x6,0x81,0xb7,0x1f,0x0,0x0,0x30,0xef,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x5b,0x38,0x6,0x96,0xa4,0x13,0x0,0x0,0x39,0x96,0x6,0x97,0x71,0x79, + 0x0,0x0,0x56,0x90,0x6,0xc3,0xce,0xa3,0x0,0x0,0x5d,0x52,0x6,0xce,0x41,0x63, + 0x0,0x0,0x3a,0xe,0x6,0xed,0xca,0xce,0x0,0x0,0x3b,0x32,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0x2a,0x6,0xfa,0xae,0xd4,0x0,0x0,0x7,0xde,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x3d,0x94,0x7,0x0,0x57,0x53,0x0,0x0,0x23,0x31,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x46,0x26,0x7,0x6,0x93,0xe3,0x0,0x0,0x6a,0xe4,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1b,0x2f,0x7,0x8,0xa3,0xa9,0x0,0x0,0x2,0x6f,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1a,0xc4,0x7,0x2a,0xb5,0xca,0x0,0x0,0x59,0x54,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x4a,0x2e,0x7,0x35,0x7c,0x8a,0x0,0x0,0x3f,0xf5,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x50,0x9b,0x7,0x40,0xb5,0xe2,0x0,0x0,0x16,0x42,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x2b,0x25,0x7,0x58,0x61,0xe5,0x0,0x0,0x3d,0xe7,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x10,0x2f,0x7,0x70,0xb3,0xaa,0x0,0x0,0x38,0xaf,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x28,0x94,0x7,0x9e,0x50,0x1e,0x0,0x0,0x55,0xe3,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x47,0xc0,0x7,0xa3,0x63,0x9e,0x0,0x0,0x55,0x35,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x4c,0xfb,0x7,0xa4,0x32,0x89,0x0,0x0,0x19,0xdd,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x66,0x3f,0x7,0xcc,0xab,0x49,0x0,0x0,0x1,0xd0,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x0,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x22,0x35,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x51,0xfe,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x51,0xbf,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x33,0xc0,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x56,0x4b,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x3f,0xb2,0x8,0x0,0x3f,0x29,0x0,0x0,0x51,0x55,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x49,0xd1,0x8,0x31,0xf7,0xee,0x0,0x0,0xb,0x8a,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x43,0xea,0x8,0x60,0xe7,0xcd,0x0,0x0,0x61,0xfd,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x4f,0x25,0x8,0x68,0x71,0xae,0x0,0x0,0x7,0xa7,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x63,0x34,0x8,0x9b,0xc,0x24,0x0,0x0,0x58,0x37,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x41,0xaf,0x8,0xa3,0xdb,0xae,0x0,0x0,0x42,0x4b,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x41,0xe3,0x8,0xa4,0xb,0xae,0x0,0x0,0x42,0x17,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x32,0x93,0x8,0xa9,0xcf,0x35,0x0,0x0,0x29,0xea,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x35,0xd8,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0x77,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x34,0xb9,0x8,0xf7,0xb3,0xda,0x0,0x0,0x39,0xd9,0x9,0x9,0x24,0x29, + 0x0,0x0,0x43,0xaa,0x9,0x49,0xfa,0x4a,0x0,0x0,0x2c,0x1b,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x2c,0x4b,0x9,0x49,0xfa,0x6a,0x0,0x0,0x2b,0xbb,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x2b,0xeb,0x9,0x4e,0xde,0x64,0x0,0x0,0x63,0x83,0x9,0x50,0x63,0x15, + 0x0,0x0,0x4b,0x4f,0x9,0x57,0x6d,0x53,0x0,0x0,0x3,0x67,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x15,0xff,0x9,0x62,0x6d,0x53,0x0,0x0,0x3,0xbb,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x52,0xc3,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0x5a,0x9,0x88,0x63,0xa, + 0x0,0x0,0x28,0xdf,0x9,0x88,0x63,0x1a,0x0,0x0,0x29,0x5,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x29,0x2b,0x9,0x88,0x63,0x3a,0x0,0x0,0x29,0x51,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x4,0xae,0x9,0x9f,0xe,0xe0,0x0,0x0,0x8,0x9b,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x2,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x4b,0x1d,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x50,0x19,0x9,0xc2,0x33,0xa9,0x0,0x0,0x13,0xa1,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x4a,0x6a,0x9,0xd5,0x43,0xd3,0x0,0x0,0x2d,0x3b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0xf,0x45,0xa,0xf,0x3d,0xb9,0x0,0x0,0xf,0x77,0xa,0x17,0x34,0x34, + 0x0,0x0,0x34,0xf6,0xa,0x27,0x62,0x55,0x0,0x0,0xa,0x81,0xa,0x41,0x77,0x3, + 0x0,0x0,0x39,0x4e,0xa,0x4e,0x21,0xe,0x0,0x0,0x19,0x89,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x3a,0x3c,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x34,0x87,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x41,0x6b,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x5,0xbe,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x65,0xae,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x57,0xbe,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x5d,0x88,0xa,0x98,0x1f,0x89,0x0,0x0,0x2e,0x5d,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x2e,0x18,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x40,0xbd,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x2d,0xc1,0xa,0xbc,0x8a,0x94,0x0,0x0,0x6,0xff,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x2e,0xa2,0xa,0xda,0x50,0x7e,0x0,0x0,0x64,0x6d,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xe,0x38,0xa,0xea,0x46,0xf4,0x0,0x0,0x4b,0x77,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x2e,0xc4,0xb,0xa,0x72,0xc9,0x0,0x0,0x30,0xc9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0x62,0xb,0x1e,0xee,0xfe,0x0,0x0,0x48,0xaf,0xb,0x29,0x70,0x65, + 0x0,0x0,0x3a,0xa0,0xb,0x30,0x4b,0xa2,0x0,0x0,0xa,0xd0,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xb,0xc4,0xb,0x4e,0x19,0x54,0x0,0x0,0x44,0xad,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xc,0xc2,0xb,0x8c,0x46,0xe5,0x0,0x0,0xd,0x3d,0xb,0x95,0xed,0xa, + 0x0,0x0,0x45,0xf5,0xb,0x9d,0xe,0xa2,0x0,0x0,0x2a,0xfb,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x19,0x5f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x57,0x9b,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x5a,0x4,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x20,0xbd,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x3b,0xf3,0xb,0xe2,0xf9,0x49,0x0,0x0,0x3f,0x70,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x6a,0xb2,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x50,0xcf,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x5e,0xd,0xc,0x20,0xc4,0xde,0x0,0x0,0xc,0x4f,0xc,0x21,0xb6,0xce, + 0x0,0x0,0xe,0xce,0xc,0x33,0xeb,0xe2,0x0,0x0,0x5e,0x4f,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x38,0xd6,0xc,0x42,0x70,0xde,0x0,0x0,0x23,0xed,0xc,0x48,0x83,0xde, + 0x0,0x0,0x52,0x3d,0xc,0x4a,0x5f,0x82,0x0,0x0,0x40,0xe9,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x5f,0xa1,0xc,0x77,0x67,0x19,0x0,0x0,0x39,0x2,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x31,0x6a,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x5,0xe6,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x2a,0x15,0xc,0x90,0x26,0xb5,0x0,0x0,0x64,0xcf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x4e,0xa2,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x23,0x7c,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x59,0x33,0xc,0xc8,0xdd,0x32,0x0,0x0,0x6,0xa2,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x4c,0xae,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x66,0xa8,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x51,0x97,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x17,0x92,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1a,0x94,0xd,0x11,0x45,0x1a,0x0,0x0,0x22,0xb2,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x67,0xf6,0xd,0x4a,0x90,0xb2,0x0,0x0,0x55,0x9,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x68,0xe6,0xd,0x60,0xef,0x6a,0x0,0x0,0x40,0x8d,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x2d,0x7d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x37,0xff,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x30,0x9c,0xd,0x88,0x48,0x23,0x0,0x0,0x29,0xb5,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x33,0x2a,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x8,0x56,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x69,0xaf,0xd,0xf9,0x90,0xe9,0x0,0x0,0x4c,0x18,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x68,0xbc,0xe,0x20,0x13,0x12,0x0,0x0,0x38,0x64,0xe,0x29,0x81,0x1f, + 0x0,0x0,0xf,0xcd,0xe,0x48,0xfa,0xca,0x0,0x0,0x24,0xb4,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x25,0x16,0xe,0x48,0xfd,0xca,0x0,0x0,0x24,0xe5,0xe,0x48,0xff,0xca, + 0x0,0x0,0x25,0x47,0xe,0x62,0x79,0x4,0x0,0x0,0x31,0x3f,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1b,0x7,0xe,0x7b,0xa1,0x23,0x0,0x0,0x45,0xae,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x2a,0xd8,0xe,0x98,0x18,0x54,0x0,0x0,0x22,0x6f,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x53,0x4a,0xe,0xbe,0x61,0x81,0x0,0x0,0x58,0x73,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x58,0xa3,0xe,0xbe,0x61,0x83,0x0,0x0,0x58,0xd3,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x59,0x3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x3e,0x53,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x11,0xa7,0xe,0xe2,0x34,0x60,0x0,0x0,0x6a,0x5e,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x6a,0x88,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x8,0xf7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xc,0xee,0xe,0xf7,0xac,0xae,0x0,0x0,0xf,0x12,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x6b,0x11,0xf,0x15,0xf4,0x85,0x0,0x0,0x40,0x28,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x5f,0x11,0xf,0x17,0x9c,0x64,0x0,0x0,0x65,0xfd,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x4d,0xc0,0xf,0x29,0x4d,0x2a,0x0,0x0,0x3a,0xff,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x36,0xb1,0xf,0x30,0x6b,0x3,0x0,0x0,0x2a,0x47,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x5b,0x79,0xf,0x5a,0x14,0x2,0x0,0x0,0xd,0x6f,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x11,0x31,0xf,0x70,0xaa,0x1a,0x0,0x0,0x68,0x2e,0xf,0x74,0xd,0xca, + 0x0,0x0,0x54,0x9c,0xf,0x85,0x7b,0xea,0x0,0x0,0x4e,0xc8,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x10,0xfa,0xf,0xbd,0xdc,0x15,0x0,0x0,0xc,0x89,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x53,0xce,0xf,0xd3,0x41,0x72,0x0,0x0,0x32,0x10,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x42,0xc2,0xf,0xd9,0x8c,0xca,0x0,0x0,0x43,0x24,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x42,0xf3,0xf,0xd9,0x8f,0xca,0x0,0x0,0x43,0x55,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x34,0x5,0xf,0xe2,0xe9,0x49,0x0,0x0,0x69,0x33,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x4f,0x51,0xf,0xf5,0xeb,0x52,0x0,0x0,0x4f,0x83,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x4f,0xb5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x4f,0xe7,0x69,0x0,0x0,0x6b, + 0x95,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xca,0xc7,0x40,0x0,0x28,0xb2,0x94,0x0,0x29,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0x0,0x50, + 0x0,0x44,0x0,0x46,0xb8,0x5c,0x0,0x20,0xc7,0x90,0xb3,0xd9,0xbc,0xc0,0xd6,0x58, + 0xd5,0x58,0xb2,0x94,0x0,0x20,0xb3,0x70,0xc5,0xd0,0x0,0x20,0xd5,0x44,0xc6,0x94, + 0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa,0xd4,0x5c,0xc9,0x0, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0xd5,0x4,0xb9,0xb0,0xd1,0x30,0xb8,0x5c, + 0x0,0x20,0xbc,0xf4,0xb0,0xb4,0xc2,0xe0,0x0,0x20,0xc7,0x84,0xc7,0x58,0xc7,0x58, + 0x0,0x20,0xbb,0x38,0xc1,0x1c,0xb2,0x94,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0xd3,0xc,0xc7,0x7c, + 0xb8,0x5c,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xb4,0x29,0xb2,0xc8,0xb2,0xe4,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0xc7,0xa5, + 0xce,0x58,0x0,0x20,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x25,0x0,0x69,0x0,0x20,0xb3,0x0,0xae,0x30,0x0, + 0x20,0xc0,0xc1,0xd0,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25, + 0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20, + 0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x30,0x0,0x2e,0x0,0x35,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0xbc,0x30,0x0,0x28,0x0, + 0x26,0x0,0x31,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x32,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x32,0xbc, + 0x30,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0, + 0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x28,0x0,0x26,0x0, + 0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x34,0xbc,0x30, + 0x0,0x28,0x0,0x26,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26, + 0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x35,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0xbc,0x30,0x0,0x28,0x0,0x26, + 0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x38,0xbc,0x30, + 0x0,0x28,0x0,0x26,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xc5,0xd0,0x0,0x20,0xb3,0x0, + 0xd5,0x74,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0xb3,0xd9,0xc7,0x91,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xc8,0xfc,0xd6,0x69, + 0xc0,0xc9,0x0,0x20,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26,0x0,0x41, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0xc9,0xd1,0xc9,0x11,0xb8,0x25,0x0,0x20,0xc8,0x0,0xd5, + 0x58,0x0,0x20,0xc2,0xdc,0x0,0x20,0xc7,0x90,0xb3,0xd9,0x0,0x20,0xc7,0x7c,0xc2, + 0xdc,0x0,0x20,0xc9,0x11,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xd3,0xc9,0xad, + 0xe0,0xac,0x12,0x0,0x28,0x0,0x26,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c, + 0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0xae,0x30,0xbc,0xf8,0xac,0x12,0x0,0x28,0x0,0x26,0x0, + 0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0xbb,0x38,0xc1,0x1c,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20, + 0xbd,0x88,0xb7,0xec,0xc6,0x24,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xbd,0x88,0xb7, + 0xec,0xc6,0x24,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0xb9,0xe8,0xb0,0x5d,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xbe,0x68, + 0xb9,0xac,0xac,0x10,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xd3,0xf4,0xb3,0x54,0x0, + 0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xc8,0x4,0xcc,0xb4, + 0x0,0x20,0xd6,0x54,0xba,0x74,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xd6,0x55,0xb3,0x0, + 0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0xc8,0x4,0xcc,0xb4,0x0,0x20,0xd6,0x54,0xba,0x74,0x0,0x28,0x0,0x26,0x0, + 0x46,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xb1,0x79,0xc0, + 0xc9,0x0,0x20,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26,0x0,0x47,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xb3,0xc4,0xc6,0xc0,0xb9, + 0xd0,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0xc0,0xc1,0xd0,0xdc,0x0,0x20,0xbc,0x14,0x0,0x20,0xc2,0x28,0xae, + 0x30,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0xc8,0x15,0xc2,0x18,0xbc,0x30,0x0,0x20,0xd6,0x55,0xb3,0x0,0x0,0x28, + 0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0xc0,0xc9,0xc0,0xc1,0x0,0x20,0xbc, + 0x18,0xc8,0x4,0xb4,0x1c,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0xba, + 0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64, + 0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0xd0,0xa4,0xbc,0xf4,0xb4,0xdc,0xb2,0x94,0x0, + 0x20,0xce,0xa1,0xcc,0xd0,0xac,0x0,0x0,0x20,0xd5,0x44,0xc6,0x94,0xd5,0x68,0x0, + 0x28,0x0,0x26,0x0,0x4b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0xc1,0x20,0xd6,0x15,0x0,0x20,0xbc,0xf4,0xac,0x4, + 0xbc,0x95,0x0,0x28,0x0,0x26,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0xbb,0xf8,0xb5,0x14,0xc5,0xb4,0x0,0x28,0x0,0x26, + 0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d, + 0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc7, + 0x4c,0xc1,0x8c,0xac,0x70,0x0,0x28,0x0,0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xcd,0x5c,0xad,0xfc,0xbc,0x29,0x0,0x20,0xc7, + 0x74,0xc6,0xc3,0x0,0x20,0xbc,0xf4,0xac,0x4,0xbc,0x95,0x0,0x28,0x0,0x26,0x0, + 0x4e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0xc0,0xc8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x4e, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0xc0,0xc8,0xb8,0x5c,0x0,0x20, + 0xb9,0xcc,0xb4,0xe4,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0xc7,0x7c,0xc2,0xdc,0xc8,0x15,0xc9,0xc0,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xc7,0xac,0xc0,0xdd,0xd5, + 0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x50,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0xd6,0x58,0xac,0xbd,0xc1,0x24,0xc8,0x15,0x0,0x28,0x0, + 0x26,0x0,0x50,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0xd6,0x8c,0xc0,0xc9,0xc8,0x70,0x0,0x28,0x0, + 0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xb1,0x79,0xc7,0x4c,0xd5,0x58,0xae,0x30, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0xc7,0x74,0xc8,0x4,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0, + 0x0,0x20,0xb2,0xe4,0xc2,0xdc,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6,0x24,0xae,0x30, + 0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0xba,0xa9,0xb8,0x5d,0xc5,0xd0,0xc1,0x1c,0x0,0x20,0xc8,0x1c,0xac, + 0x70,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0xc2,0x50,0xc7,0x74,0xb3,0x54,0x0,0x20,0xb0,0x44,0xae, + 0x30,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xcc,0x3d,0x0,0x20, + 0xd0,0x6c,0xae,0x30,0x0,0x20,0xc8,0x70,0xc8,0x8,0x0,0x20,0xac,0x0,0xb2,0xa5, + 0xd5,0x58,0xac,0x8c,0x0,0x20,0xd5,0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x52, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xb9,0xe8,0xc5,0x5e,0xc7,0x3c,0xb8, + 0x5c,0x0,0x20,0xb4,0x18,0xac,0x10,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x52,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0xc6,0xb0, + 0xce,0x21,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0xb8,0x5c,0x0,0x20,0xc8,0x8c, + 0xce,0x21,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0xc7,0x85,0xb8,0x25,0x0,0x28, + 0x0,0x26,0x0,0x52,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c, + 0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0xc1,0x8c,0xd5,0x4, + 0xd2,0xb8,0xc6,0xe8,0xc5,0xb4,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28, + 0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0xc2,0x50,0xc7,0x74,0xb3,0x54,0x0,0x20,0xbd,0x88,0xb7,0xec, + 0xc6,0x24,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c, + 0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc1,0x24,0xc8,0x15,0x0,0x28,0x0,0x26, + 0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc5,0xf4,0xae,0x30,0x0, + 0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xc8,0x15,0xc0, + 0xac,0xac,0x1,0xd6,0x15,0x0,0x20,0xd5,0x3d,0xc1,0x40,0x0,0x20,0x0,0x28,0xbe, + 0x44,0xc7,0x28,0x0,0x20,0xc7,0x20,0xc9,0xc0,0x0,0x29,0x0,0x28,0x0,0x26,0x0, + 0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71, + 0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0xbe,0x44,0xb5,0x14,0xc6,0x24,0xc6,0x40,0x0,0x20,0xb3,0xd9,0xae, + 0x30,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69, + 0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xb3,0xc4, + 0xad,0x6c,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0xc0,0xc1,0xd0,0xdc,0x0,0x20,0xbc,0x14,0x0,0x20,0xc5, + 0x44,0xc7,0x74,0xcf,0x58,0x0,0x20,0xac,0x31,0xc2,0xe0,0xd5,0x58,0xae,0x30,0x0, + 0x28,0x0,0x26,0x0,0x55,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x4e,0x0,0x43,0x0,0x28,0x0,0x26,0x0,0x56, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xc2,0x18,0xc9,0xc1,0x0, + 0x20,0xb3,0xd9,0xae,0x30,0xd6,0x54,0x0,0x28,0x0,0x26,0x0,0x56,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xd4,0x5c,0xc2,0xdc,0x0,0x28, + 0x0,0x26,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0xd7,0x70,0xc0,0xc9,0x0,0x20,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x28,0x0,0x26, + 0x0,0x57,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xcc,0x3d,0x0,0x20,0xd4,0x5c,0xc2,0xdc,0x0, + 0x20,0xbc,0x30,0xc7,0x28,0x0,0x28,0x0,0x26,0x0,0x57,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x28,0xc2,0xdc,0xc2,0xa4,0xd1,0x5c,0x0,0x20, + 0xae,0x30,0xbc,0xf8,0xac,0x12,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x28,0xbe, + 0x44,0xc5,0xc8,0xc7,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x31,0x0,0x25,0x0,0x20,0xb0,0xae,0xc7,0x40,0x0,0x20,0xd6, + 0x8c,0xc8,0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x31, + 0x0,0x2e,0x0,0x35,0xbc,0x30,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0xb0,0xae,0xc7, + 0x40,0x0,0x20,0xd6,0x8c,0xc8,0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x32,0x0,0x25,0x0,0x20,0xb0,0xae,0xc7,0x40,0x0,0x20,0xd6,0x8c, + 0xc8,0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25, + 0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0, + 0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e, + 0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f, + 0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e, + 0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69, + 0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33, + 0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0, + 0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0xc8,0x15,0xc2, + 0x18,0xbc,0x30,0x0,0x20,0xd6,0x55,0xb3,0x0,0x0,0x28,0x0,0x26,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xc,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0xc5,0xd0,0xc1,0x1c,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x0,0x20,0xac,0x0, + 0xb2,0xa5,0xd5,0x5c,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0xc7,0x74, + 0xbb,0xf8,0xc9,0xc0,0xb9,0x7c,0x0,0x20,0xcc,0x3e,0xc7,0x44,0x0,0x20,0xc2,0x18, + 0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0xc1,0x38,0xd2,0xb8,0xb9,0x7c,0x0,0x3c, + 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22, + 0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f, + 0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0xb2,0xe4, + 0xc6,0xb4,0xb8,0x5c,0xb4,0xdc,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20, + 0xd6,0xc4,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22, + 0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0x0,0x20,0xc5,0x55, + 0xcd,0x95,0xc7,0x44,0x0,0x20,0xd4,0x80,0xc5,0xb4,0x0,0x20,0xc8,0xfc,0xc1,0x38, + 0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0xc8,0x85,0xb8,0xcc,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74, + 0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41, + 0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0xc5,0xd0,0x0,0x20,0xb3,0x0,0xd5,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xae,0x30,0xc8, + 0x74,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xc0,0xc8,0xb8,0x5c,0x0,0x20, + 0xc0,0xdd,0xc1,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xc5,0xb4,0xb4,0xdc,0xbc,0x34, + 0xc2,0xa4,0xb4,0xdc,0x0,0x20,0xc1,0x39,0xd1,0x30,0x0,0x20,0xc7,0x74,0xbb,0xf8, + 0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61, + 0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xba,0xa8,0xb4, + 0xe0,0x0,0x20,0xd3,0xc,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0xba,0xa8,0xb4,0xe0,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9, + 0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x6a, + 0xac,0xe0,0xc8,0x4,0x0,0x20,0xce,0xf4,0xd4,0xe8,0xd1,0x30,0x0,0x20,0xc5,0xd0, + 0xbb,0xac,0xb8,0x8,0xc7,0x74,0xd1,0x30,0x0,0xa,0x0,0xa,0xc8,0x0,0xc7,0x90, + 0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61, + 0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43, + 0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61, + 0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47, + 0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64, + 0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75, + 0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79, + 0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50, + 0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0xb7,0x7c,0xc7,0x74, + 0xc1,0x20,0xc2,0xa4,0x0,0x20,0x0,0x28,0xbc,0x84,0xc8,0x4,0x0,0x20,0x0,0x32, + 0x0,0x20,0xc7,0x74,0xc0,0xc1,0x0,0x29,0xc5,0xd0,0x0,0x20,0xc7,0x58,0xd5,0x74, + 0x0,0x20,0xbc,0x30,0xd3,0xec,0xb4,0x18,0xc5,0xc8,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4, + 0x0,0x2e,0x0,0x20,0xc7,0x90,0xc1,0x38,0xd5,0x5c,0x0,0x20,0xb0,0xb4,0xc6,0xa9, + 0xc7,0x40,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xc7,0x7d,0xc5,0xb4, + 0x0,0x20,0xc8,0xfc,0xc1,0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20, + 0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73, + 0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e, + 0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72, + 0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20, + 0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20, + 0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77, + 0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e, + 0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a, + 0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20, + 0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65, + 0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42, + 0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63, + 0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34, + 0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b, + 0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20, + 0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69, + 0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e, + 0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20, + 0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f, + 0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61, + 0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f, + 0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74, + 0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e, + 0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65, + 0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e, + 0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20, + 0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e, + 0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f, + 0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xb9,0x7c,0x0, + 0x20,0xb0,0x5d,0xb0,0xb4,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xc2,0xe4,0xd5,0x89,0xc9,0x11, + 0xc7,0x78,0x0,0x20,0xba,0x38,0xc2,0xe0,0xc7,0x44,0x0,0x20,0xc7,0xac,0xc2,0xdc, + 0xc7,0x91,0xd5,0x58,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68, + 0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc7,0x90, + 0xb3,0xd9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x42,0x0,0x54,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x0,0x28,0x0,0x26,0x0, + 0x36,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26, + 0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x42,0x0,0x54,0x0,0x37,0x0, + 0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0, + 0x29,0x0,0x28,0x0,0x26,0x0,0x37,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xae,0x30,0xbc,0xf8,0x0, + 0x20,0xc1,0x39,0xd1,0x30,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0xcd,0x94,0xc8,0x1,0x0,0x20,0xc2,0xdc,0xc7,0x91,0xd5, + 0x58,0xae,0x30,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e, + 0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xbe,0x14,0xb8,0x5d,0x0,0x20,0xd0,0x6c, + 0xae,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0xbc,0x84,0xc2,0xa4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0xbc,0x84,0xc2,0xa4,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28, + 0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9, + 0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0, + 0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0, + 0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0xc6,0x24,0xbc,0x84,0xc2,0xa4,0xce,0x94,0x0, + 0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f, + 0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72, + 0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x32,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x96,0xc7,0x74, + 0x0,0x20,0xc5,0xd0,0xbb,0xac,0xb8,0x8,0xc7,0x74,0xd2,0xb8,0xb4,0x1c,0x0,0x20, + 0xae,0x30,0xc8,0x85,0xc5,0xd0,0x0,0x20,0xb3,0x0,0xd5,0x74,0x0,0x20,0xc1,0x20, + 0xd0,0xdd,0xd5,0x5c,0x0,0x20,0xae,0x30,0xc8,0x85,0xc7,0x44,0x0,0x20,0xae,0x30, + 0xbc,0x18,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xd5,0x58,0xb2,0x94,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0xc8,0x85,0xb9,0x58,0x0,0x20,0xd5,0x44,0xd1,0x30, + 0xb9,0xc1,0xc7,0x74,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xb4,0x18,0xc9,0xc0,0x0,0x20, + 0xc5,0x4a,0xb3,0xc4,0xb8,0x5d,0x0,0x20,0xc1,0x24,0xc8,0x15,0xb4,0x18,0xc5,0xc8, + 0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa,0xb5,0x30,0xb7,0x7c, + 0xc1,0x1c,0x0,0x20,0xc1,0x20,0xd0,0xdd,0xb4,0x1c,0x0,0x20,0xba,0x38,0xc2,0xe0, + 0xac,0xfc,0x0,0x20,0xd6,0x38,0xd6,0x58,0xb4,0x18,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xb2,0x94,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0xb9,0x7c,0x0,0x20,0xc1,0x20, + 0xd0,0xdd,0xd5,0x58,0xc2,0xe4,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5, + 0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xd5,0x58,0xc9,0xc0,0xb9,0xcc,0x0,0x20, + 0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0,0x20, + 0xb2,0xe4,0xb9,0x78,0x0,0x20,0xc1,0x8c,0xd5,0x4,0xd2,0xb8,0xc6,0xe8,0xc5,0xb4, + 0xc6,0x40,0x0,0x20,0xd6,0x38,0xd6,0x58,0xb4,0x18,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xc7,0x44,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4, + 0x0,0x2e,0x0,0xa,0x0,0xa,0xc7,0x74,0x0,0x20,0xc1,0x24,0xc8,0x15,0xc7,0x44, + 0x0,0x20,0xd6,0x5c,0xc1,0x31,0xd6,0x54,0xd5,0x58,0xb2,0x94,0x0,0x20,0xac,0x83, + 0xc7,0x40,0x0,0x20,0xac,0xf5,0xc2,0xdd,0xc8,0x1,0xc7,0x3c,0xb8,0x5c,0x0,0x20, + 0xc9,0xc0,0xc6,0xd0,0xb4,0x18,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x3c,0xba,0x70, + 0x0,0x2c,0x0,0x20,0xc8,0x1c,0xcd,0x9c,0xb4,0x1c,0x0,0x20,0xbc,0x84,0xad,0xf8, + 0x0,0x20,0xbc,0xf4,0xac,0xe0,0xc1,0x1c,0xb2,0x94,0x0,0x20,0xc7,0x20,0xd6,0xa8, + 0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x4c,0xc7,0x3c,0xb8,0x5c,0x0,0x20, + 0xb2,0xeb,0xd7,0x90,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67, + 0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74, + 0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f, + 0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69, + 0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68, + 0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75, + 0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20, + 0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69, + 0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c, + 0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20, + 0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20, + 0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f, + 0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x50,0x0,0x55, + 0x0,0x20,0xc8,0x85,0xb9,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0xcd,0xe8,0xc1,0x8c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xce,0x74,0xb4,0xdc,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xce,0x74,0xd2, + 0xb8,0xb9,0xac,0xc9,0xc0,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xce,0x74,0xd2,0xb8,0xb9, + 0xac,0xc9,0xc0,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0xce,0x74,0xc1,0x38,0xd2,0xb8,0x0,0x20,0xd1,0x4c,0xc7,0x74,0xd5,0x4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xce,0x74,0xc1,0x38,0xd2, + 0xb8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xce,0x74,0xc1, + 0x38,0xd2,0xb8,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0xd7,0x51,0xbc,0x31, + 0x0,0x20,0xd4,0x5c,0xc2,0xdc,0xb9,0x7c,0x0,0x20,0xc7,0x4,0xd5,0x5c,0x0,0x20, + 0xbc,0x1d,0xae,0x30,0x0,0x20,0xc8,0x70,0xc8,0x15,0x0,0x28,0x0,0x26,0x0,0x4d, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xcc,0x44, + 0xb1,0x10,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x42,0x0,0x50,0x0,0x42,0x0,0x20,0xd6,0x55,0xc7,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0xc7,0x74,0x0,0x20,0xcc, + 0x3d,0xc7,0x44,0x0,0x20,0xd0,0x74,0xb9,0xad,0xd5,0x58,0xba,0x74,0x0,0x20,0xb9, + 0xc8,0xc6,0xb0,0xc2,0xa4,0xb9,0x7c,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x69,0xb2, + 0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc1,0x24, + 0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0xac,0xc4,0xc1,0x8d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f, + 0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0xd0,0xc0,0xc7,0x84,0xc2,0xa4,0xd0, + 0xec,0xd5,0x4,0xb9,0x7c,0x0,0x20,0xac,0xe0,0xce,0x60,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0xbe,0x44,0xb5,0x14,0xc6,0x24, + 0x0,0x20,0xb8,0xc,0xb3,0x54,0xb7,0xec,0xb9,0x7c,0x0,0x20,0xcd,0x8,0xae,0x30, + 0xd6,0x54,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x28,0x0,0x26,0x0,0x45,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0xc0,0xac,0xc6,0xa9,0xc7,0x90,0x0,0x20,0xc1,0x24,0xc8,0x15,0x0, + 0x20,0x0,0x28,0xb3,0x0,0xc6,0xa9,0xb7,0xc9,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac,0xc6,0xa9,0xc7,0x90,0x0,0x20,0xc1, + 0x24,0xc8,0x15,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xc2,0xe4,0xb9,0xb0,0xb3,0x54,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44, + 0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0xd0,0x74,0xb7,0xec,0xc2,0xa4,0xd1,0x30, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0xd0,0x74,0xb7, + 0xec,0xc2,0xa4,0xd1,0x30,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28, + 0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xae,0x30,0xbc,0xf8,0xac,0x12,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0xb5,0x14,0xd3,0x7c,0xb7,0xf0, + 0xc2,0xf1,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0xc0,0xac,0xc6,0xa9,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xc7,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0xb5, + 0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac,0x0,0x0, + 0x20,0xc0,0xdd,0xc1,0x31,0xb4,0x18,0xc5,0xc8,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74, + 0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x74,0x0,0x20,0xc7,0x74, + 0xbb,0xf8,0x0,0x20,0xc8,0x74,0xc7,0xac,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20, + 0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac, + 0x0,0x0,0x20,0xb1,0x8,0xbb,0x34,0x0,0x20,0xd0,0x7d,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20, + 0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xb2,0x94,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37, + 0x0,0x47,0x0,0x42,0x0,0x20,0xc7,0x74,0xc0,0xc1,0xc7,0x3c,0xb8,0x5c,0x0,0x20, + 0xc9,0xc0,0xc8,0x15,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5, + 0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc6,0xa9,0xb7,0xc9,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xb5, + 0x14,0xc2,0xa4,0xd5,0xc,0xb8,0x8,0xc7,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0xc1,0x24,0xc8,0x15,0xc7,0x44,0x0,0x20,0xc8,0x0,0xc7, + 0xa5,0xd5,0x58,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65, + 0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0xb0,0x5d,0xb0,0xb4,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xae, + 0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74, + 0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0xb3,0x6e,0xc5,0xb4,0xc4,0xf0,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x0,0x20,0xc5,0x48,0xd5,0x68,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65, + 0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xc7,0x74, + 0x0,0x20,0xba,0x54,0xc2,0xdc,0xc9,0xc0,0x0,0x20,0xad,0xf8,0xb9,0xcc,0x0,0x20, + 0xbc,0xf4,0xae,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65, + 0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0xb3,0xd9,0xc8,0x1,0x0,0x20,0xc7,0xac,0xce,0xf4, + 0xd3,0xc,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79, + 0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0xb3,0xd9,0xc8,0x1,0x0, + 0x20,0xc0,0xac,0xc7,0x74,0xc9,0x88,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x45,0x0,0x26,0x0,0x47,0x0, + 0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xae,0xbc, + 0xb0,0xb4,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbe,0x44,0xc5,0xc8,0xc7,0x4c,0x0,0x28,0x0, + 0x26,0x0,0x4d,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0xb0,0x5d,0xb0,0xb4,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x38,0x0,0x36,0x0,0x46,0xb8,0x5c,0x0,0x20,0xbc,0xf4,0xb0,0xb4,0xae, + 0x30,0x0,0x28,0x0,0x26,0x0,0x58,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74, + 0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc7,0x74,0xc8,0x4,0x0, + 0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0xb5,0x14,0xc2,0xa4,0xcf, + 0x54,0xb4,0xdc,0x0,0x20,0xc5,0xf0,0xb3,0xd9,0x0,0x20,0xd6,0x5c,0xc1,0x31,0xd6, + 0x54,0xd5,0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44, + 0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0xc0,0xac,0xc6, + 0xa9,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xc0, + 0xac,0xc6,0xa9,0x0,0x20,0x0,0x28,0xd6,0x4,0xc9,0xc0,0x0,0x20,0xc2,0xdc,0xac, + 0x4,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0xcd,0x94,0xc8,0x1, + 0x0,0x20,0xb0,0x5d,0xb0,0xb4,0xae,0x30,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xc8,0x4,0xcc,0xb4,0x0, + 0x20,0xd6,0x54,0xba,0x74,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xc8,0x4,0xd6,0x58,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e, + 0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc6,0x24,0xb9,0x58, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0xb8,0xc,0xb3,0x54,0xb7,0xec, + 0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0x0,0x20,0xc6,0x24,0xb9,0x58,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0xc7,0x74, + 0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6,0x24,0xae,0x30,0x0,0x20, + 0x0,0x28,0xc4,0xf0,0xae,0x30,0xbc,0x29,0xc9,0xc0,0x0,0x29,0x0,0x28,0x0,0x26, + 0x0,0x57,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0xb0,0x5d,0xb0,0xb4,0xae,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0xd6,0x54,0xba,0x74,0x0,0x20,0xbe,0x44,0xc7,0x28,0xc7,0x44,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xb9,0xde,0xcd,0x94, + 0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x44,0x0,0x20,0xce,0xe8,0xd2, + 0xb8,0xb8,0x64,0xb7,0xec,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x46,0x0,0x4d,0x0,0x20, + 0xc2,0xe0,0xb5,0x14,0xc0,0xac,0xc7,0x74,0xc8,0x0,0x0,0x20,0xb4,0xdc,0xb7,0x7c, + 0xc7,0x74,0xbc,0x84,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x61,0x0,0x6c,0x0,0x67, + 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x69, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7, + 0x74,0xbc,0x84,0xb9,0x7c,0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0xd5,0x58,0xc9, + 0xc0,0x0,0x20,0xba,0xbb,0xd5,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc1, + 0x24,0xc8,0x15,0xc5,0xd0,0x0,0x20,0xc2,0xe4,0xd3,0x28,0xd5,0x88,0xc2,0xb5,0xb2, + 0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xbe,0x60,0xb9, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xce,0x58,0xba,0x85,0xc8,0x1, + 0xc7,0x78,0x0,0x20,0xc6,0x24,0xb9,0x58,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xd3,0xc,0xc7,0x7c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0xd3,0xc,0xc7,0x7c,0xba,0x85,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xd5,0x44,0xd1,0x30, + 0x0,0x20,0xd6,0x15,0xc2,0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0xac,0xe0,0xc8,0x15,0x0,0x20,0xc0,0xac, + 0xc7,0x74,0xc9,0x88,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0xd5,0xc,0xb8,0x5c,0xd5,0x3c,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xd5,0xc,0xb8,0x5c, + 0xd5,0x3c,0x0,0x20,0x0,0x2f,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xd5, + 0xc,0xb8,0x5c,0xd5,0x3c,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0xd5,0xc,0xb7,0xed,0xc2,0xa4,0x0,0x20,0xc7,0x74,0xbb,0xf8, + 0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0xc8,0x4,0xcc,0xb4,0x0,0x20,0xd6,0x54,0xba,0x74,0x0,0x20,0xbe,0x44, + 0xc7,0x28,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26, + 0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc9,0x9d,0xac,0x0,0xac,0x12,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0xd6,0x8c,0xc0,0xc9,0xc8,0x70,0x0,0x20,0xd4,0x5c, + 0xd6,0x4,0xbc,0x29,0xc2,0xdd,0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79, + 0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x48,0x0,0x44,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8, + 0x64,0xb7,0xec,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xb2,0x94, + 0x0,0x20,0x0,0x34,0x0,0x47,0x0,0x42,0x0,0x20,0xc7,0x74,0xc0,0xc1,0xc7,0x3c, + 0xb8,0x5c,0x0,0x20,0xc9,0xc0,0xc8,0x15,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20, + 0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x20,0xbc,0x14,0xc7,0x74,0xd2,0xb8,0x0,0x20,0xc7,0x74,0xc6,0x78,0xc7,0x58,0x0, + 0x20,0xc1,0x39,0xd1,0x30,0x0,0x20,0xd0,0x6c,0xae,0x30,0xb9,0x7c,0x0,0x20,0xac, + 0x0,0xc9,0xc4,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0xb6,0x10,0xb2, + 0x94,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0xd6,0x15,0xc2,0xdd,0xc7, + 0x58,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xb9,0x7c,0x0,0x20,0xc0,0xdd,0xc1, + 0x31,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2, + 0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x44, + 0x0,0x58,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xd5,0x58,0xb4, + 0xdc,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0xd5,0x58,0xb4,0xdc,0x0,0x20,0xb5,0x14,0xc2,0xa4, + 0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xd5, + 0x58,0xb4,0xdc,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xd5,0x58,0xb4,0xdc,0x0,0x20, + 0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0xd5,0x58,0xb4, + 0xdc,0xc6,0xe8,0xc5,0xb4,0xb9,0x7c,0x0,0x20,0xc7,0x74,0xc6,0xa9,0xd5,0x60,0x0, + 0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xd5,0xe4,0xb4,0xdc,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc1,0x38,0xb8,0x5c,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x69,0x0, + 0x44,0x0,0x50,0x0,0x49,0x0,0x20,0xc2,0xa4,0xcf,0x0,0xc7,0x7c,0xb9,0xc1,0x0, + 0x28,0x0,0x26,0x0,0x44,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x20,0xad,0xf8,0xb7,0x98, + 0xd5,0x3d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20, + 0xba,0x54,0xba,0xa8,0xb9,0xac,0x0,0x20,0xd6,0x55,0xc7,0xa5,0x0,0x20,0xce,0x74, + 0xb4,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72, + 0x0,0x20,0xc7,0xa5,0xce,0x58,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xc5,0x44,0xc7,0x74,0xcf, + 0x58,0xc1,0x4b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49, + 0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xd3,0xec,0xb9,0xf7,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0xc7,0x85,0xb8,0x25,0x0,0x20,0xc7,0xa5,0xce,0x58,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xb0, + 0xb4,0xbd,0x80,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc7, + 0xa5,0xce,0x58,0xac,0x0,0x0,0x20,0xc6,0x2c,0xbc,0x14,0xb9,0x74,0xc9,0xc0,0x0, + 0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0xc6,0x2c,0xbc,0x14,0xb9,0x74,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc7,0x40,0x0, + 0x20,0xc1,0x24,0xc8,0x15,0xc7,0x85,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2, + 0xf1,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc8,0x70,0xc7, + 0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31, + 0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x33,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc5,0xb8,0xc5,0xb4, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67, + 0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0xb3,0x0,0xd6,0x15,0x0,0x20,0xbe,0x14,0xb8,0x5d,0x0,0x20,0x0,0x28,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0xd0,0x6c,0xae,0x30,0x0,0x20,0xac,0xe0,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73, + 0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4c,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0xac,0x0,0x0,0x20,0xc8,0x74,0xc7, + 0xac,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69, + 0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0xc7,0x85,0xb8,0x25,0x0,0x20,0xc7, + 0xa5,0xce,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d, + 0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x20,0xcd,0x9c,0xb8,0x25,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75, + 0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0xad,0x11,0xc7,0x90,0xae,0x30,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xad,0x11,0xc7,0x90,0xae, + 0x30,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xad,0x11,0xc7,0x90, + 0xae,0x30,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xae,0x30,0xc8,0x85,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0x0,0x20, + 0xd5,0x44,0xc6,0x94,0xd5,0x5c,0x0,0x20,0xb8,0x6c,0xd3,0xc,0xc7,0x7c,0xc7,0x74, + 0x0,0x20,0xc5,0xc6,0xc5,0xb4,0x0,0x20,0xae,0x30,0xc8,0x85,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0xc7,0x44,0x0,0x28,0xb9,0x7c,0x0,0x29, + 0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6, + 0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x0,0x20, + 0xac,0x0,0xb2,0xa5,0xd5,0x5c,0x0,0x20,0xae,0x30,0xc8,0x85,0xc7,0x3c,0xb8,0x5c, + 0x0,0x20,0xbc,0xc0,0xac,0xbd,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xba,0x38,0xc2,0xe0,0x0,0x20,0xc8,0x85, + 0xb9,0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0xae,0x30,0xc8,0x85,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0xc7,0x74,0x0,0x20,0xc1,0x24,0xce, + 0x58,0xb4,0x18,0xc5,0xc8,0xb2,0x94,0xc9,0xc0,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0xc5,0xd0,0x0,0x20,0xb3,0x0,0xc7, + 0x51,0xd5,0x58,0xb2,0x94,0x0,0x20,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c,0xc5, + 0xd0,0x0,0x20,0xc8,0x11,0xc1,0x8d,0xb4,0x18,0xc5,0xb4,0x0,0x20,0xc7,0x88,0xb2, + 0x94,0xc9,0xc0,0x0,0x20,0xd6,0x55,0xc7,0x78,0xd5,0x74,0x0,0x20,0xc8,0xfc,0xc1, + 0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e, + 0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f, + 0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0xd3,0xc,0xc7,0x7c,0xc7,0x74,0x0,0x20,0xc8,0x74,0xc7, + 0xac,0xd5,0x58,0xba,0x70,0x0,0x20,0xc7,0x7d,0xc7,0x44,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc7,0x88,0xb2,0x94,0xc9,0xc0,0x0,0x20,0xd6,0x55,0xc7,0x78,0xd5,0x69,0xb2, + 0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0xd3,0xc,0xc7,0x7c,0xc7,0x74,0x0,0x20,0xc4,0xf0,0xae,0x30, + 0x0,0x20,0xac,0x0,0xb2,0xa5,0xd5,0x5c,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0, + 0xb9,0xac,0xc5,0xd0,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xb4,0x18,0xac,0xe0,0x0,0x20, + 0xc7,0x88,0xb2,0x94,0xc9,0xc0,0x0,0x20,0xd6,0x55,0xc7,0x78,0xd5,0x69,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0xba,0x54,0xba,0xa8,0xb9,0xac,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57, + 0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0xba,0xa8,0xb2,0xc8,0xd1,0x30,0x0,0x20,0xc8,0x8,0xc8,0x4, + 0x0,0x20,0xba,0xa8,0xb4,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0xb9,0xc8,0xc6,0xb0,0xc2,0xa4,0x0,0x20,0xac,0x10,0xb3,0xc4,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0xb9,0xc8,0xc6,0xb0,0xc2,0xa4,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xb1,0x24,0xd2,0xb8, + 0xc6,0xcc,0xd0,0x6c,0x0,0x20,0xc5,0xb4,0xb3,0x11,0xd1,0x30,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0,0x6c,0x0,0x20,0xc8,0x85,0xb9, + 0x58,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xc0,0xc8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc7,0xa5,0xce,0x58,0xac,0x0,0x0,0x20,0xc5, + 0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x52,0x0,0x4f,0x0,0x4d,0xc7,0x44,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6, + 0x2c,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73, + 0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0xc5,0xc6,0xc7,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0xb3,0x54,0x0,0x20, + 0xc8,0x15,0xd6,0x55,0xd5,0x5c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63, + 0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0xd6,0x55,0xc7,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xae,0xbc,0xc9, + 0xd0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xcf,0x1c,0xc9,0xd0,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0xcf,0x54,0xc5,0xb4, + 0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30, + 0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x66,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0xb8,0xc,0xb3,0x54,0xb7,0xec,0xb9,0x7c,0x0,0x20,0xcd, + 0x8,0xae,0x30,0xd6,0x54,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2, + 0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xb2,0xe4,0xb9,0x78,0x0,0x20,0xb8, + 0xc,0xb3,0x54,0xb7,0xec,0xb9,0x7c,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x58,0xc2, + 0xed,0xc2,0xdc,0xc6,0x24,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x20,0xc2,0x50,0xc7,0x74,0xb3,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65, + 0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0xc1,0x24,0xc8,0x15,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0xae,0x30,0xd0,0xc0,0x0,0x20,0xc8,0xfc,0xbc,0xc0,0xae,0x30,0xae,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0xae,0x30,0xd0,0xc0,0x0,0x20,0xc7,0x74,0xb3,0xd9, + 0xc2,0xdd,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xc7,0xa5,0xce,0x58,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f, + 0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xb3,0x6e,0xc5,0xb4,0xc4,0xf0,0xae,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0xc7,0xa5,0xce,0x58,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x20,0xba,0xa8,0xb4,0xdc,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x4f,0x0, + 0x53,0x0,0x54,0x0,0x20,0xce,0x74,0xb4,0xdc,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8,0x2c,0x0,0x20,0xd3,0xec,0xd2, + 0xb8,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8,0x2c,0x0, + 0x20,0xd3,0xec,0xd2,0xb8,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xbc,0xd1,0xb8, + 0x2c,0x0,0x20,0xd3,0xec,0xd2,0xb8,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0xbd, + 0x80,0xba,0xa8,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0xc6,0x40,0x0,0x20,0xc7, + 0x90,0xc2,0xdd,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0xc7,0x58,0x0,0x20,0xd0, + 0xc0,0xc7,0x84,0xc2,0xa4,0xd0,0xec,0xd5,0x4,0xac,0x0,0x0,0x20,0xc7,0x7c,0xce, + 0x58,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20, + 0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74, + 0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0xc2,0xe4,0xd5,0x89,0x0,0x20,0xc7,0x7c,0xc2,0xdc,0x0,0x20,0xc9,0x11,0xc9, + 0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0xc6,0x44,0xbc,0xbd,0xd5,0x5c,0x0,0x20,0xd6,0x8c,0xc8, + 0x4,0xc2,0x18,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0xc6,0x2c,0xbc,0x14,0xb9,0x78,0x0,0x20,0xd3,0xc,0xc7,0x7c,0xba, + 0x85,0xc7,0x44,0x0,0x20,0xc9,0xc0,0xc8,0x15,0xd5,0x74,0x0,0x20,0xc8,0xfc,0xc1, + 0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xd3,0xec,0xd2,0xb8,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50, + 0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0xd6,0x58,0xac, + 0xbd,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c, + 0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0xd0, + 0xa4,0xb9,0x7c,0x0,0x20,0xb2,0x4,0xb9,0x74,0xba,0x74,0x0,0x20,0xcc,0x3d,0x0, + 0x20,0xba,0xa8,0xb4,0xdc,0xb8,0x5c,0x0,0x20,0xc8,0x4,0xd6,0x58,0xd5,0x69,0xb2, + 0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20, + 0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x2b,0x0,0x46,0x0,0x38,0xd0,0xa4,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0,0x20,0xac, + 0x0,0xc6,0xb4,0xb3,0x70,0x0,0x20,0xbc,0x84,0xd2,0xbc,0xc7,0x44,0x0,0x20,0xd0, + 0x74,0xb9,0xad,0xd5,0x58,0xba,0x74,0x0,0x20,0xb9,0xc8,0xc6,0xb0,0xc2,0xa4,0xb9, + 0x7c,0x0,0x20,0xd5,0x74,0xc8,0x1c,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x2b,0x0,0x46,0x0,0x38,0xd0,0xa4,0xb9,0x7c, + 0x0,0x20,0xb2,0x4,0xb9,0x74,0xba,0x74,0x0,0x20,0xb9,0xc8,0xc6,0xb0,0xc2,0xa4, + 0xb9,0x7c,0x0,0x20,0xd5,0x74,0xc8,0x1c,0xd5,0x69,0xb2,0xc8,0xb2,0xe4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0xc9,0xc4,0xd5,0x89,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0xc8,0x1c,0x0,0x34,0xc7,0x58,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79, + 0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0xcc,0x3d,0x0,0x20,0xd0,0x6c, + 0xae,0x30,0xc6,0x40,0x0,0x20,0xc7,0x4,0xce,0x58,0xb9,0x7c,0x0,0x20,0xae,0x30, + 0xc5,0xb5,0xd5,0x58,0xae,0x30,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0xcc,0x9c,0xc5,0xf0,0xc0,0xc9,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0xba,0xa8,0xb4,0xdc,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f, + 0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52, + 0x0,0x61,0x0,0x77,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xb8, + 0xc,0xb3,0x54,0xb7,0xec,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0xc0,0xc8,0xb8,0x5c,0x0, + 0x20,0xc0,0xdd,0xc1,0x31,0xd5,0x5c,0x0,0x20,0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe, + 0xc,0xc7,0x58,0x0,0x20,0xd3,0xc,0xd2,0xf0,0xc1,0x58,0x0,0x20,0xc1,0x24,0xc8, + 0x15,0xac,0xfc,0x0,0x20,0xd3,0xec,0xb9,0xf7,0xc7,0x44,0x0,0x20,0xaf,0x2d,0x0, + 0x20,0xd5,0x74,0xc8,0xfc,0xc1,0x38,0xc6,0x94,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc7,0xac,0xc2,0xdc,0xc7,0x91,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0xc2,0xe4,0xd5,0x89,0x0,0x20,0xc7, + 0xac,0xac,0x1c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73, + 0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0xd5,0x58,0xb4,0xdc,0xc6,0xe8,0xc5,0xb4,0x0,0x29,0x0,0x28,0x0,0x26,0x0,0x48, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc8,0x0,0xc7,0xa5,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0xc7,0x74,0x0,0x20,0xc1,0x24,0xc8,0x15,0xb4,0xe4,0xc7, + 0x44,0x0,0x20,0xc8,0x4,0xc5,0xed,0x0,0x20,0xae,0x30,0xbc,0xf8,0xac,0x12,0xc7, + 0x3c,0xb8,0x5c,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xd5,0x58,0xae,0x30,0x0,0x28,0x0, + 0x26,0x0,0x47,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0xc1,0x39,0xd1,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0xd5,0x4,0xb8,0x5c,0xad,0xf8,0xb7,0xa8,0x0,0x20,0xc7,0x91, + 0xc5,0xc5,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0xc1,0x1c, + 0x0,0x20,0xbb,0xf8,0xb5,0x14,0xc5,0xb4,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0, + 0x0,0x20,0xc1,0x20,0xd0,0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32, + 0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d, + 0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f, + 0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xbd,0x80,0xba, + 0xa8,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0xc1,0x20,0xd0,0xdd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc9,0xc1,0xb8,0x2c,0x0,0x20,0xd3, + 0xec,0xd2,0xb8,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xc1,0x24,0xc8,0x15,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc6,0xa9,0xb7,0xc9,0x0,0x28, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xb2,0x90,0xb9,0xb0,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0xc1,0x8c,0xd6,0x15,0x0,0x20,0xbe,0x14,0xb8,0x5d,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc0,0xac,0xc6,0xb4,0xb4,0xdc, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xc7,0x4c,0xb7,0xc9,0x0,0x20, + 0xc9,0x9d,0xd3,0xed,0x0,0x28,0x0,0x26,0x0,0x47,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0xc7,0x4c,0xb7,0xc9,0x0,0x20,0xc9,0x9d,0xd3,0xed,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac, + 0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0xc0,0xac,0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac,0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xce,0x74, + 0xb4,0xdc,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0xc0,0xac,0xc6,0xb4,0xb4,0xdc, + 0x0,0x20,0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xcc,0x3d, + 0x0,0x20,0xd0,0x6c,0xae,0x30,0x0,0x20,0xc9,0xc0,0xc8,0x15,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61, + 0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0xcc, + 0x3d,0x0,0x20,0xd0,0x6c,0xae,0x30,0x0,0x20,0xc9,0xc0,0xc8,0x15,0xd5,0x58,0xae, + 0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0xc1,0x8d,0xb3,0xc4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xc1, + 0x8d,0xb3,0xc4,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53, + 0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20, + 0xb2,0xe8,0xb3,0xc5,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d, + 0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0xd4,0x5c,0xc9,0x0,0x0,0x20,0x0,0x32,0xbc,0x84,0xd2,0xbc,0x0,0x20,0xc8, + 0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xd4,0x5c,0xc9,0x0,0x0,0x20,0x0, + 0x34,0xbc,0x84,0xd2,0xbc,0x0,0x20,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0xd4,0x5c, + 0xc9,0x0,0x0,0x20,0x0,0x36,0xbc,0x84,0xd2,0xbc,0x0,0x20,0xc8,0x70,0xc7,0x74, + 0xc2,0xa4,0xd2,0xf1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74, + 0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, + 0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0xd4,0x5c,0xc9,0x0,0x0,0x20,0x0,0x38,0xbc,0x84,0xd2,0xbc,0x0, + 0x20,0xc8,0x70,0xc7,0x74,0xc2,0xa4,0xd2,0xf1,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0xc7,0xa5,0xce,0x58,0x0,0x20,0xce,0xe8, + 0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xd4,0x5c, + 0xba,0x74,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0xc2,0xa4,0xd0, + 0x6c,0xb9,0xb0,0xc0,0xf7,0x0,0x20,0xcc,0xd,0xae,0x30,0x0,0x28,0x0,0x26,0x0, + 0x43,0x0,0x29,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0xba,0xa9,0xd4,0x5c,0x0,0x20,0xd5,0x4,0xb8,0x8,0xc7,0x84,0x0, + 0x20,0xb8,0x8,0xc7,0x74,0xd2,0xb8,0x0,0x28,0x0,0x26,0x0,0x46,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20, + 0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0xc8,0x1c,0x0,0x33,0xc7,0x58,0x0,0x20,0x0,0x49,0x0, + 0x44,0x0,0x45,0x0,0x20,0xce,0xe8,0xd2,0xb8,0xb8,0x64,0xb7,0xec,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0xb1,0x24,0xd2,0xb8,0xc6,0xcc,0xd0, + 0x6c,0x0,0x20,0xad,0x6c,0xc1,0x31,0xc7,0x74,0x0,0x20,0xb1,0x10,0x0,0x20,0xb4, + 0xdc,0xb7,0x7c,0xc7,0x74,0xbc,0x84,0xb8,0x5c,0x0,0x20,0xc8,0x4,0xd6,0x58,0xb4, + 0x29,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54, + 0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69, + 0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65, + 0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0xc1,0x20,0xd0,0xdd,0xd5,0x58,0xc2,0xe0,0x0, + 0x20,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xb3,0x6e,0xc5,0xb4,0xc5,0xc,0xc6, + 0xc1,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x58,0xc2, + 0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xf8,0xc7,0x74,0xb2,0x94,0x0,0x20,0xb5,0x14,0xd3, + 0x7c,0xb7,0xf0,0xc2,0xf1,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac,0x0,0x0, + 0x20,0xc0,0xdd,0xc1,0x31,0xb4,0x1c,0x0,0x20,0xd6,0xc4,0x0,0x20,0xbd,0x80,0xba, + 0xa8,0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0xac,0x0,0x0,0x20,0xc2,0x18,0xc8, + 0x15,0xb4,0x18,0xc5,0xc8,0xc7,0x4c,0xc7,0x44,0x0,0x20,0xc7,0x58,0xbb,0xf8,0xd5, + 0x60,0x0,0x20,0xc2,0x18,0x0,0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0, + 0x2e,0x0,0xa,0x0,0xa,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x0,0x20,0xd3,0xc,0xc7, + 0x7c,0xc7,0x74,0x0,0x20,0xc7,0x74,0xb3,0xd9,0x0,0x20,0xb6,0x10,0xb2,0x94,0x0, + 0x20,0xbc,0xf5,0xc0,0xac,0xb4,0x1c,0x0,0x20,0xac,0xbd,0xc6,0xb0,0x0,0x20,0xb6, + 0x10,0xb2,0x94,0x0,0x20,0xc7,0x74,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0xb9, + 0x7c,0x0,0x20,0xb9,0xcc,0xb4,0xe0,0x0,0x20,0xd5,0x4,0xb8,0x5c,0xad,0xf8,0xb7, + 0xa8,0xc7,0x58,0x0,0x20,0xbc,0x84,0xad,0xf8,0xb8,0x5c,0x0,0x20,0xc7,0x78,0xd5, + 0x74,0x0,0x20,0xbc,0x1c,0xc0,0xdd,0xd5,0x60,0x0,0x20,0xc2,0x18,0xb3,0xc4,0x0, + 0x20,0xc7,0x88,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x0,0xa,0x0,0xa,0xd0, + 0xc0,0xc7,0x84,0xc2,0xa4,0xd0,0xec,0xd5,0x4,0xb9,0x7c,0x0,0x20,0xc2,0x18,0xc8, + 0x15,0xd5,0x58,0xc2,0xdc,0xac,0xa0,0xc2,0xb5,0xb2,0xc8,0xae,0x4c,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c, + 0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72, + 0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65, + 0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68, + 0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20, + 0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69, + 0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xc9,0x11,0xc7,0x78,0x0,0x20,0xba,0x38, + 0xc2,0xe0,0xc7,0x74,0x0,0x20,0xc7,0xac,0xbd,0x80,0xd3,0x5,0xb4,0x29,0xb2,0xc8, + 0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0xc2,0xdc, + 0xac,0x4,0x0,0x20,0xb3,0xd9,0xae,0x30,0xd6,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0xd1,0x30,0xbc,0xf4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0xac,0xe0,0xc1,0x8d,0x0,0x20,0xb3,0xd9,0xc7,0x91,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0xd6,0x15,0xc2, + 0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0xd6,0x15,0xc2,0xdd,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x55,0x0,0x53,0x0,0x42, + 0xb2,0x94,0x0,0x20,0xc5,0x44,0xc9,0xc1,0x0,0x20,0xc9,0xc0,0xc6,0xd0,0xd5,0x58, + 0xc9,0xc0,0x0,0x20,0xc5,0x4a,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0xb9, + 0x7c,0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0xd5,0x60,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x53, + 0x0,0x44,0x0,0x4c,0xc7,0x44,0x0,0x20,0xcd,0x8,0xae,0x30,0xd6,0x54,0xd5,0x60, + 0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0xc7,0x74,0x0,0x20,0xd5,0x44,0xc6,0x94,0xd5,0x69,0xb2,0xc8,0xb2,0xe4, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0xd0,0xa4,0xbc,0xf4,0xb4,0xdc,0x0,0x20,0xac,0x0,0xc1,0x8d,0xae, + 0x30,0xb9,0x7c,0x0,0x20,0xbd,0x88,0xb7,0xec,0xc6,0x2c,0x0,0x20,0xc2,0x18,0x0, + 0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0xd3,0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xc7,0x7d,0xc7, + 0x44,0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x52,0x0,0x61,0x0,0x77,0x0,0x20,0xc7, + 0x85,0xb8,0x25,0xc7,0x44,0x0,0x20,0xb4,0xf1,0xb8,0x5d,0xd5,0x60,0x0,0x20,0xc2, + 0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e, + 0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0xd3, + 0xc,0xc7,0x7c,0xc7,0x44,0x0,0x20,0xc8,0x0,0xc7,0xa5,0xd5,0x60,0x0,0x20,0xc2, + 0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77, + 0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0xc9,0xc0,0xc6,0xd0,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5,0x4a, + 0xb2,0x94,0x0,0x20,0xb5,0x14,0xc2,0xa4,0xd0,0x6c,0x0,0x20,0xc7,0x74,0xbb,0xf8, + 0xc9,0xc0,0xc7,0x85,0xb2,0xc8,0xb2,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x0,0x20,0xc0,0xac,0xc6,0xb4,0xb4,0xdc,0x0,0x20,0xc0,0xac,0xc6,0xa9,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0xd6,0x54,0xba, + 0x74,0x0,0x20,0xc8,0x85,0xb9,0x58,0x0,0x28,0x0,0x26,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72, + 0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0xd3,0xc,0xc7,0x7c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x98,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x20,0xb5,0x14,0xb8,0x9,0xd1,0xa0,0xb9,0xac,0xc5,0xd0,0x0,0x20, + 0xd5,0x44,0xc6,0x94,0xd5,0x5c,0x0,0x20,0xb8,0x6c,0xd3,0xc,0xc7,0x7c,0xc7,0x74, + 0x0,0x20,0xc5,0xc6,0xc5,0xb4,0x0,0x20,0xbe,0x44,0xb5,0x14,0xc6,0x24,0x0,0x20, + 0xce,0x74,0xb4,0xdc,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0xc7,0x44,0x0,0x28,0xb9,0x7c,0x0,0x29,0x0,0x20,0xc0,0xac,0xc6,0xa9,0xd5,0x60, + 0x0,0x20,0xc2,0x18,0x0,0x20,0xc5,0xc6,0xc2,0xb5,0xb2,0xc8,0xb2,0xe4,0x0,0x2e, + 0x0,0x20,0xc0,0xac,0xc6,0xa9,0x0,0x20,0xac,0x0,0xb2,0xa5,0xd5,0x5c,0x0,0x20, + 0xae,0x30,0xc8,0x85,0xc7,0x3c,0xb8,0x5c,0x0,0x20,0xbc,0xc0,0xac,0xbd,0xd5,0x69, + 0xb2,0xc8,0xb2,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78, + 0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22, + 0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67, + 0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d, + 0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0xbe,0x44,0xb5,0x14,0xc6,0x24,0x0,0x20,0xce,0x74,0xb4,0xdc,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x6f, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x20,0xad,0xf8,0xb7,0x98,0xd5,0x3d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0xb3,0x0,0xae,0x30,0x0,0x20,0xc0,0xc1,0xd0,0xdc,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0xc5,0xd0,0x0,0x20,0xc5, + 0xb4,0xc1,0x1c,0xc6,0x24,0xc1,0x38,0xc6,0x94,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0xac,0x0,0xb8,0x5c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61, + 0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x58,0x0,0x47, + 0x0,0x41,0x0,0x20,0xad,0xf8,0xb7,0x98,0xd5,0x3d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0xb3,0x54,0x0,0x20,0xbe,0x60,0xb9,0x74,0xac, + 0x8c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0xc9,0xc0,0xc6,0xd0,0xd5,0x58,0xc9,0xc0,0x0,0x20,0xc5, + 0x4a,0xb2,0x94,0x0,0x20,0xc1,0x24,0xc8,0x15,0xc7,0x85,0xb2,0xc8,0xb2,0xe4,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0xb4,0xdc,0xb7,0x7c,0xc7,0x74,0xbe,0xc,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0xc7,0x74,0xbb,0xf8,0xc9,0xc0,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_fi-FI.qm + 0x0,0x0,0x91,0x83, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xd5,0x0,0x0,0x0,0x48, + 0x0,0x0,0x46,0xaf,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0xa4,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x80,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0x1f,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0xde,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0x54,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0x8f,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x19,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6b,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xbd,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xfc,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x4e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xa0,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xf2,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x10,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x8e,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0xfa,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x18,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5c,0x6f,0x0,0x0,0x5d,0x81,0x0,0x0,0x81,0xd5,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x5d,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xdb,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x86,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xfa,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xb0,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0x81,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0x60,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0x6b,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x3,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0xc6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0x27,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0xdf,0x0,0x5,0x78,0x79, + 0x0,0x0,0x68,0xbc,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0xba,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6c,0xf3,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0x21,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x46,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x7f,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xf5,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xd9,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0x23,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x23,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xce,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x50,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7c,0xb7,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1b,0x6,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xa1,0x0,0x4c,0x99,0x62,0x0,0x0,0x3f,0xd8,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x89,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0x1f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6f,0x99,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0x6c,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x79,0xbb,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7a,0x46,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x84,0x53,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x40,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0x89,0x0,0x97,0x96,0x4,0x0,0x0,0x37,0xd8,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0x3b,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0xeb,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0x46,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0x49,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x1a,0xd,0x1,0x9,0x1c,0x92,0x0,0x0,0x41,0xbe,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x66,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0x42,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x79,0xdf,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0x20,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0x5,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x7c,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x78,0x52,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3b,0xe7,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x77,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4b,0x9a,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x53,0x6f,0x1,0xb0,0x47,0x5c,0x0,0x0,0x51,0xf9,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xfd,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x28,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xd9,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x4d,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x5e,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0x7e,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6f,0xe8,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x78,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x71,0xa7,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0x32,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x70,0xbd,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xce,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0x3,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0x2b,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x82,0x35,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0x91,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0xd6,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0x7f,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x55,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xfc,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xfc,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xf0,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0xa7,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0x8c,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x84,0x77,0x3,0x5,0x38,0xb2,0x0,0x0,0x3f,0xfc,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0x37,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x74,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x50,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x77,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0x23,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0x33,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x5a,0x3,0x6a,0x66,0x2e,0x0,0x0,0x56,0x83,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x54,0x86,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x48,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x1d,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x9b,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0xb8,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0x40,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0x12,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xdf,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0xb,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0x31,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6e,0xb2,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6e,0x76,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0x3a,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6d,0xfe,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x2e,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0xa,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0x25,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x9b,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0xc5,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x74,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x8c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x2d,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x3f,0x4,0x51,0x79,0xb1,0x0,0x0,0x72,0xa5,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7b,0x3e,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x32,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6d,0xcb,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3c,0x90,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3c,0xd7,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x34,0xc3,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x3c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0x0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x4d,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xde,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x2e,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xd9,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5a,0x4e,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0x9e,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x7f,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x4f,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5a,0x76,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0x16,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4a,0xaa,0x5,0x18,0x5,0x95,0x0,0x0,0x7d,0x37,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xf9,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0x16,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0x27,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0x6,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xf0,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0x2f,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0x16,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0xb4,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x79,0x6c,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x73,0xa1,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x75,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6f,0xbf,0x5,0xb2,0x16,0x79,0x0,0x0,0x66,0xf2,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x47,0xa8,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0xba,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0x71,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x9e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xf5,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xef,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0x4c,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0x4e,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x80,0x27,0x5,0xd0,0x4f,0x11,0x0,0x0,0x80,0xe9,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xf8,0x5,0xdf,0xba,0xba,0x0,0x0,0x81,0x37,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0x9a,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0x47,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xb,0x6,0x19,0x20,0x43,0x0,0x0,0x69,0xe3,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3a,0xc8,0x6,0x38,0x9f,0x35,0x0,0x0,0x38,0xaf,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xe6,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xf1,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xcc,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7e,0x7c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0x89,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0x8f,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x49,0xf6,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0xd,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0x25,0x6,0x81,0xb7,0x1f,0x0,0x0,0x39,0xf5,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6e,0xee,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x4,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0x22,0x6,0xc3,0xce,0xa3,0x0,0x0,0x72,0x1c,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0x8c,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0xc,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x28,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0xc,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0xbe,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xed,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0x50,0x7,0x6,0x93,0xe3,0x0,0x0,0x83,0xe4,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xa7,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3f,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x6,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6c,0xc0,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0x92,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4c,0xc7,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0xb5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xda,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x3f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0x47,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x13,0x1d,0x7,0x70,0xb3,0xaa,0x0,0x0,0x43,0xef,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xf8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0x5f,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0x52,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0x75,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5c,0xfd,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xc5,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7e,0x33,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x7e,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xae,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xb1,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x80,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0x35,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3d,0xa2,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x68,0xdd,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0x78,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0xa9,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0x35,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x86,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0x90,0x8,0x60,0xe7,0xcd,0x0,0x0,0x78,0xf1,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0xbf,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xc9,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7a,0x6e,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0x4d,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0xeb,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0xab,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0x2b,0x8,0xa4,0xb,0xae,0x0,0x0,0x4f,0x6b,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0x3d,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xae,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0x68,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x75,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3e,0xcb,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0x4f,0x9,0x9,0x24,0x29, + 0x0,0x0,0x51,0x40,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x5b,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x8f,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0xf3,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x27,0x9,0x4e,0xde,0x64,0x0,0x0,0x7a,0xc7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0xf3,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x37,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x81,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x89,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0x75,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x1a,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x65,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x93,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xc1,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xef,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x6c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xdb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xbe,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0xb5,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0x13,0x9,0xc2,0x33,0xa9,0x0,0x0,0x17,0x23,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x59,0xe0,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xc5,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xe3,0xa,0xf,0x3d,0xb9,0x0,0x0,0x12,0x19,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x20,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x45,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0xb6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x65,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x45,0xc8,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3e,0x8d,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4e,0x91,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x7c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7d,0x98,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0xb0,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x72,0x66,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x5,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xbe,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4d,0xb7,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x51,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xfd,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x4c,0xa,0xda,0x50,0x7e,0x0,0x0,0x7b,0xdb,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x94,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0x2b,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x74,0xb,0xa,0x72,0xc9,0x0,0x0,0x39,0xcd,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x68,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0x9b,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0x48,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xac,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xd0,0xb,0x4e,0x19,0x54,0x0,0x0,0x52,0x71,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xdc,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x7b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x53,0xf5,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x9,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x3b,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0x81,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0x8e,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xb7,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0xf3,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0x36,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x83,0xae,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0xf9,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x73,0x7,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x4b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0x48,0xc,0x33,0xeb,0xe2,0x0,0x0,0x73,0x53,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x28,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xb9,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0xcb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0xf5,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x75,0x21,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0x68,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3a,0x90,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xaa,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xe3,0xc,0x90,0x26,0xb5,0x0,0x0,0x7c,0x63,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0x2e,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x38,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0x8f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xa6,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0xb2,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7e,0xb4,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x62,0xf3,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0x2a,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xb6,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x56,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x80,0x5c,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0x41,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x81,0x8a,0xd,0x60,0xef,0x6a,0x0,0x0,0x4d,0x79,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x1,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x11,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x39,0x98,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x69,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3c,0xfe,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x88,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x82,0x75,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0xa,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x81,0x60,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0x8e,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0xa3,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x8a,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xf8,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xc1,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x2f,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0x5d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x69,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0xb0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xde,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x3,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0x24,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0x9f,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6b,0xdb,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0x17,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0x53,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0xd7,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0xcb,0xe,0xe2,0x34,0x60,0x0,0x0,0x83,0x5a,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x83,0x84,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x47,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xf,0xa,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0xa6,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0x1d,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x4,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x74,0x3f,0xf,0x17,0x9c,0x64,0x0,0x0,0x7d,0xe7,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5d,0xf6,0xf,0x29,0x4d,0x2a,0x0,0x0,0x46,0xc7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0x81,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x27,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0x4f,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0xa5,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0x2b,0xf,0x70,0xaa,0x1a,0x0,0x0,0x80,0xb0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x66,0xb4,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0x58,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xf4,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x99,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0xd0,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0x88,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0x3a,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0xa8,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x50,0x71,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0xdf,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3d,0xe7,0xf,0xe2,0xe9,0x49,0x0,0x0,0x81,0xf3,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5f,0xf3,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0x3b,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0x83,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0xcb,0x69,0x0,0x0,0x84, + 0xa1,0x3,0x0,0x0,0x0,0x10,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x54,0x0,0x41, + 0x0,0x55,0x0,0x4b,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x1,0x7a,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x61,0x0,0x64,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2d, + 0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x74, + 0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x69, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4b,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x6b, + 0x0,0x69,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x2d,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6c, + 0x0,0xe4,0x0,0x68,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x79,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x72, + 0x0,0x6a,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73, + 0x0,0x29,0x0,0x20,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74, + 0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20, + 0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73, + 0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x2d,0x0,0x20, + 0x0,0x4c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x79, + 0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x64,0x0, + 0x6f,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28, + 0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0, + 0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26, + 0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x75,0x0, + 0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74,0x0, + 0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74, + 0x0,0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x72,0x0,0x75,0x0,0x75, + 0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x72,0x0,0x75, + 0x0,0x75,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x2f,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x54,0x0,0x6f,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x69,0x0,0x68, + 0x0,0x6b,0x0,0x61,0x0,0x6e,0x0,0x76,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41, + 0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0, + 0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x68,0x0,0xe4,0x0, + 0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75, + 0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4b,0x0, + 0x65,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x76,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26, + 0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26, + 0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61, + 0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x26,0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x61,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x4b,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x26, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x75,0x0,0x75,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4b,0x0, + 0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74, + 0x0,0x74,0x0,0xf6,0x0,0xf6,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3e,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0, + 0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0, + 0x6c,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56,0x0, + 0x26,0x0,0x69,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26, + 0x0,0x55,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x79,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x6b,0x0,0x79,0x0,0x6c, + 0x0,0x6d,0x0,0xe4,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x26,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x26,0x0,0x50,0x0,0x69,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x70,0x0, + 0x61,0x0,0x6c,0x0,0x6b,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x6b, + 0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x26,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0, + 0x74,0x0,0x74,0x0,0xf6,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0xe4,0x0, + 0x20,0x0,0x76,0x0,0xe4,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0, + 0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65, + 0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x0,0x56,0x0, + 0x61,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x70,0x0, + 0x70,0x0,0xe4,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xf6,0x0, + 0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x61,0x0, + 0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x4c,0x0,0x69,0x0,0x26,0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x61, + 0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0,0x79,0x0, + 0x6b,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x26,0x0,0x4c,0x0,0xe4,0x0,0x68,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x72,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x55, + 0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e, + 0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x55,0x0,0x75,0x0,0x73,0x0,0x69, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x75,0x0,0x6b,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x54,0x0,0x6f,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x53,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x61,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x73,0x0,0xe4,0x0,0x76,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x75,0x0,0x68,0x0,0x6f,0x0,0x69, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52, + 0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46, + 0x0,0x26,0x0,0x4c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x50,0x0, + 0x6f,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x72,0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0, + 0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61, + 0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x74, + 0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c, + 0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4b,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x75,0x0,0x75,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74, + 0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x4f,0x0,0x69, + 0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c, + 0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x56, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e, + 0x0,0x26,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4b, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x4d,0x0,0xe4,0x0, + 0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0, + 0x26,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x76,0x0, + 0x75,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x75,0x0, + 0x76,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x65,0x0, + 0x74,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0xe4,0x0,0x69,0x0,0x6c,0x0,0x79,0x0, + 0x74,0x0,0xe4,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x73,0x0, + 0x75,0x0,0x68,0x0,0x64,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c, + 0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x79,0x0, + 0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x6f,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x6f,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63, + 0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x54,0x0,0x79,0x0,0xf6,0x0,0x26,0x0,0x6b, + 0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x26,0x0,0x50,0x0,0xe4,0x0,0x69,0x0,0x76,0x0,0x69,0x0, + 0x74,0x0,0xe4,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x70,0x0, + 0x61,0x0,0x6c,0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x75,0x0, + 0x76,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xe4, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x26,0x0,0x61, + 0x0,0x6c,0x0,0x6b,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x26,0x0,0x49,0x0,0x6b,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x65,0x0, + 0x72,0x0,0x72,0x0,0x6f,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x28,0x0,0x4a,0x0,0xe4,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x28,0x0,0x74,0x0,0x79,0x0,0x68,0x0,0x6a,0x0,0xe4,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x31,0x0,0x25,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0, + 0x79,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x0,0x6e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x79,0x0, + 0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50, + 0x0,0x4d,0x0,0x3a,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x74,0x0, + 0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20, + 0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49, + 0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32, + 0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x47, + 0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32, + 0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x74,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0, + 0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33, + 0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0, + 0x20,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x69,0x0, + 0x73,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20, + 0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20, + 0x0,0x47,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e, + 0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e, + 0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20, + 0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e, + 0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30, + 0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36, + 0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x50, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x65,0x0,0x69, + 0x0,0x20,0x0,0x6c,0x0,0xf6,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x6e,0x0,0x79, + 0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6, + 0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x6f,0x0,0x69,0x0,0x74,0x0,0x20, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x3c,0x0,0x2f, + 0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x70, + 0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x72,0x0,0x6b,0x0,0x61,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2d,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x65, + 0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x0,0x2d,0x0,0x73,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x75,0x0, + 0x74,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41, + 0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3a,0x0, + 0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x4c,0x0,0x69,0x0,0x73,0x0,0xe4,0x0,0xe4,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x61,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0, + 0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45, + 0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4c,0x0,0x69, + 0x0,0x73,0x0,0xe4,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x73,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c, + 0x0,0x65,0x0,0x76,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4b,0x0,0x65, + 0x0,0x68,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x6e,0x0,0x65,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64, + 0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4b,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0, + 0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0, + 0x61,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xd8,0x0,0x56,0x0,0x61, + 0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0xe4, + 0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65, + 0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20, + 0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x75, + 0x0,0x75,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75, + 0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4a,0x0,0x75,0x0,0x6c,0x0,0x6b, + 0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20, + 0x0,0x6d,0x0,0x79,0x0,0xf6,0x0,0x68,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0xe4, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6b, + 0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x49, + 0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x2d,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x73, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e, + 0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64, + 0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68, + 0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61, + 0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63, + 0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e, + 0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35, + 0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65, + 0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61, + 0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20, + 0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e, + 0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29, + 0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20, + 0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43, + 0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65, + 0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20, + 0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f, + 0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61, + 0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68, + 0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f, + 0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20, + 0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69, + 0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f, + 0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68, + 0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75, + 0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72, + 0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e, + 0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72, + 0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x48,0x0, + 0x61,0x0,0x6c,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x69,0x0,0x6e,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x48,0x0,0x61,0x0,0x6c,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe4, + 0x0,0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0xe4, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x64, + 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75, + 0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0, + 0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0, + 0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42, + 0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0, + 0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42, + 0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x6c,0x0,0x6f,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0xe4,0x0,0x6c,0x0,0x6a,0x0, + 0x69,0x0,0x74,0x0,0x79,0x0,0x73,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42, + 0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x6f, + 0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c, + 0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x56,0x0,0xe4,0x0,0x79,0x0,0x6c,0x0,0xe4,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xe4,0x0,0x79,0x0,0x6c,0x0,0xe4, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0, + 0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0, + 0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0, + 0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x26,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x75,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69, + 0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43, + 0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x2d,0x0, + 0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xc,0x0,0x56,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x20, + 0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73,0x0,0x73,0x0,0xe4, + 0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x75,0x0,0x6c, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0xe4, + 0x0,0x6d,0x0,0xe4,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x68,0x0,0x64,0x0,0x6f, + 0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x79,0x0,0x68,0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6f, + 0x0,0x70,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x6b,0x0,0x79,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x6b,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x68,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x65, + 0x0,0x6c,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x3a,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x75, + 0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54, + 0x0,0xe4,0x0,0x6d,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6b, + 0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x20,0x0,0x65,0x0,0x69, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x69, + 0x0,0x6b,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x68,0x0,0x64, + 0x0,0x79,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74, + 0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x70,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x76, + 0x0,0x69,0x0,0x6e,0x0,0xe4,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53, + 0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70,0x0,0x70, + 0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x75,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x75,0x0, + 0x75,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64, + 0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x76, + 0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d, + 0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x54,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x4b,0x0,0x61,0x0,0x61,0x0,0x70,0x0,0x70,0x0, + 0x61,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x69,0x0,0x72,0x0,0x69,0x0, + 0x20,0x0,0x6b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x79,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x4a,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0, + 0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0, + 0x6e,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0x61,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43, + 0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x56,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69, + 0x0,0x6a,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f, + 0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x75,0x0,0x6b,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x28,0x0, + 0x73,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x75,0x0,0x6b,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x53,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x6c, + 0x0,0x6f,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d, + 0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x4d,0x0, + 0x46,0x0,0x20,0x0,0x28,0x0,0x6c,0x0,0x6f,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0, + 0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65, + 0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4f,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x66, + 0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x61, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x45, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73, + 0x0,0x73,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69, + 0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x6f,0x0,0x74,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0x6f, + 0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65, + 0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x4c,0x0,0x69,0x0,0x69,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b, + 0x0,0x75,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x68, + 0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6e, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x74,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c, + 0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69, + 0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x4e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x54,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x61,0x0, + 0x61,0x0,0x6e,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0xc4,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0xc4,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x0,0x72,0x0,0x76,0x0,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0xc4, + 0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0xc4,0x0,0x6c, + 0x0,0xe4,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20, + 0x0,0x74,0x0,0xe4,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77, + 0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44, + 0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0,0x74, + 0x0,0xe4,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0, + 0x79,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x26,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x65,0x0,0x73,0x0,0xe4,0x0,0x73,0x0,0x74, + 0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65, + 0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x54,0x0,0x79,0x0,0x68,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x75,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x46,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f, + 0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x41,0x0, + 0x69,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4b,0x0,0xe4,0x0, + 0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x2d,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6f,0x0, + 0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74, + 0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73,0x0, + 0x73,0x0,0xe4,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x4b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x73,0x0,0x73,0x0, + 0xe4,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4c,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0xe4,0x0,0x6c,0x0,0x6a,0x0,0x69,0x0,0x74, + 0x0,0x79,0x0,0x73,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20, + 0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x53,0x0,0x69,0x0,0x69,0x0,0x72,0x0, + 0x72,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0, + 0xf6,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x61,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72, + 0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56, + 0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x56,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6a, + 0x0,0xe4,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74, + 0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4f, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a,0x0,0x6f, + 0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x6a, + 0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x6f,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x50, + 0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x0,0x2d,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6, + 0x0,0x73,0x0,0x75,0x0,0x68,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0, + 0x6b,0x0,0x65,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x4d,0x0,0x2d,0x0,0x73,0x0,0x79,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61, + 0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x75, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6b,0x0, + 0x6b,0x0,0x6f,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x2d,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75, + 0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x4e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x54,0x0,0x69, + 0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x75,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73, + 0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74, + 0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b, + 0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0xe4,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4c,0x0,0x65, + 0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4c,0x0,0x65,0x0,0x76, + 0x0,0x79,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0, + 0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x46,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x2d,0x0,0x6c,0x0,0x65, + 0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74, + 0x0,0xf6,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x61, + 0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x61,0x0,0x73,0x0,0xe4, + 0x0,0x76,0x0,0x79,0x0,0x6d,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x6e,0x0,0x6f, + 0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79, + 0x0,0x70,0x0,0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0, + 0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0, + 0x79,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x5c,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76, + 0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x68,0x0,0x64,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x74,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b, + 0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x2d,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0, + 0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0, + 0x61,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x35,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79, + 0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x69,0x0, + 0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x69, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79, + 0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4b,0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48, + 0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x69,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x79, + 0x0,0x6c,0x0,0x6d,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0xe4,0x0,0x79, + 0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4c,0x0, + 0x61,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0, + 0x6c,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48, + 0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x4c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x70,0x0,0xe4,0x0,0xe4,0x0,0x74, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0, + 0x6f,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x53,0x0,0x75,0x0, + 0x75,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x44,0x0,0x50,0x0,0x49,0x0,0x2d,0x0, + 0x73,0x0,0x6b,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x50,0x0,0x69,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x79,0x0,0xf6,0x0,0x6b,0x0,0x61,0x0,0x6c, + 0x0,0x75,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x6b,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69, + 0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x2d,0x0,0x6d,0x0,0x75,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x6e, + 0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x2d,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x28,0x0, + 0x6b,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x29,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x2d,0x0,0x6c, + 0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0, + 0x75,0x0,0x76,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x65,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x54,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x75,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0, + 0x79,0x0,0xf6,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x6c,0x0,0x61,0x0,0x69,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x69,0x0, + 0x73,0x0,0xe4,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0, + 0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x56,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x69,0x0,0x72,0x0,0x68,0x0, + 0x65,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x20,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x79,0x0, + 0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x50,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x6b,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69, + 0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x2d,0x0, + 0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x68,0x0,0x6b,0x0,0x6f,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x74,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4c,0x0,0x75,0x0,0x6b,0x0,0x69,0x0,0x74, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0xe4,0x0,0x68,0x0,0xe4,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20, + 0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x2d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x6d,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x6b,0x0,0x61,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x74,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x73,0x0,0x69,0x0, + 0x73,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20, + 0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0, + 0x75,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x61,0x0, + 0x67,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x73,0x0, + 0x6f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0, + 0x61,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x4d,0x0,0x4f,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x6c,0x0,0x65, + 0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x54,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xcc,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xe4, + 0x0,0xe4,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x75, + 0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x75,0x0,0x6f, + 0x0,0x6b,0x0,0x73,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x61,0x0,0x69, + 0x0,0x68,0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x6b,0x0,0x65, + 0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64, + 0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70, + 0x0,0x70,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x69,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa8,0x0,0x56,0x0,0x61,0x0,0x72,0x0, + 0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0xe4,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x79,0x0, + 0x68,0x0,0x74,0x0,0x65,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x69,0x0, + 0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x79,0x0,0x68,0x0,0x74,0x0,0x65,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x76,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x68,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0xe4,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x6c,0x0,0x75,0x0,0x6b,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x70,0x0, + 0x6f,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x56,0x0,0x61,0x0,0x72,0x0,0x6d, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74, + 0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x73,0x0,0x6b,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a,0x0,0x6f,0x0,0x69, + 0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x75, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4d,0x0,0x75,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0xe4,0x0,0x79,0x0,0x74, + 0x0,0x74,0x0,0xf6,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x74, + 0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x79, + 0x0,0x79,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48,0x0, + 0x69,0x0,0x69,0x0,0x72,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0x65, + 0x0,0x72,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0, + 0x72,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x79,0x0,0x79,0x0, + 0x70,0x0,0x70,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x75,0x0,0x73,0x0, + 0x69,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0, + 0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x34,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0, + 0x69,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0xf6,0x0,0x79,0x0,0x74,0x0,0x79,0x0, + 0x6e,0x0,0x79,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e, + 0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x65,0x0, + 0x69,0x0,0x20,0x0,0x6c,0x0,0xf6,0x0,0x79,0x0,0x74,0x0,0x79,0x0,0x6e,0x0, + 0x79,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x45,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x6b,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x74, + 0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x50,0x0,0x6f,0x0,0x69,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0xe4,0x0,0xe4,0x0,0x6c,0x0,0x6c,0x0, + 0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30, + 0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x9a,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0,0x2d,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6a,0x0,0xe4,0x0,0x6e,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0xe4,0x0, + 0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0xf6,0x0,0x69,0x0,0x6a,0x0,0xe4,0x0,0xe4,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x76,0x0,0x61,0x0,0x72, + 0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x2d,0x0,0x61,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20, + 0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4d,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x68, + 0x0,0x65,0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x74, + 0x0,0x65,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x75, + 0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x74,0x0,0x65,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x76,0x0,0x61,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50, + 0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x2d,0x0,0x74,0x0, + 0x69,0x0,0x6c,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x2d,0x0, + 0x6b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0, + 0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0, + 0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0, + 0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x52,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0, + 0x61,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x59,0x0,0x6c,0x0,0xe4,0x0, + 0x2d,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x76,0x0,0x79,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x65,0x0,0x69,0x0,0x76,0x0,0xe4,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0xe4,0x0,0x73,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x79,0x0, + 0x73,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x54,0x0,0xe4,0x0,0x79,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0, + 0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x41,0x0, + 0x6e,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e, + 0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x53,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x50,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x66,0x0,0x50,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x69,0x0, + 0x20,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x6f,0x0,0x69,0x0, + 0x74,0x0,0x75,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0, + 0x61,0x0,0x61,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, + 0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x50,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x6b,0x0, + 0x65,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x61,0x0, + 0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x68,0x0,0x69,0x0, + 0x69,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72, + 0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x50,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x69, + 0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38, + 0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x45,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x79,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0xe4, + 0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6a,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x2c,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x61,0x0,0x61,0x0,0x6b, + 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75, + 0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x4d,0x0,0x75,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x20,0x0, + 0x6a,0x0,0x75,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x75,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x73,0x0, + 0x65,0x0,0x6d,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x69,0x0,0x68, + 0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x54,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x54,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0xe4,0x0, + 0x6d,0x0,0xe4,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x75,0x0, + 0x6b,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x62,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6b,0x0, + 0x73,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x75,0x0, + 0x6b,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20, + 0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f, + 0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61, + 0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x74, + 0x0,0x79,0x0,0xf6,0x0,0x68,0x0,0x61,0x0,0x6b,0x0,0x65,0x0,0x6d,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64, + 0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70, + 0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64, + 0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x79,0x0,0x6c,0x0,0xe4,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x61,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0x61,0x0,0x72,0x0,0x6a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0, + 0x6e,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x74,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x48,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f, + 0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x50,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x68, + 0x0,0x6b,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67, + 0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x74,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53, + 0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f, + 0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0xc4,0x0,0xe4, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0xc4,0x0,0xe4,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0xe4,0x0,0x20,0x0,0x70,0x0,0xe4,0x0,0xe4,0x0,0x69,0x0,0x6b,0x0,0x6b, + 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0, + 0x69,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x4e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x75,0x0, + 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45, + 0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61, + 0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x2d,0x0, + 0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x2f,0x0, + 0x2d,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6d,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x34,0x0,0x2d,0x0,0x70,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0, + 0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x36,0x0,0x2d, + 0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x69,0x0, + 0x20,0x0,0x38,0x0,0x2d,0x0,0x70,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x6b,0x0,0x6b,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6e, + 0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6d, + 0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b, + 0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4f,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x26,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x6b,0x0, + 0x61,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26, + 0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0, + 0x4b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6a,0x0, + 0x75,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x69,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72, + 0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0x6f,0x0,0x6c,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0, + 0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44, + 0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x6b,0x0, + 0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6f,0x0,0x6e,0x0, + 0x70,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x69,0x0, + 0x68,0x0,0x74,0x0,0x75,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x61,0x0,0x2d,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x69,0x0, + 0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x86,0x0,0x56,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0x76,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x2e,0x0,0x20,0x0,0x4f,0x0, + 0x6c,0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0xe4,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xe4,0x0,0xe4,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0xe4,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x2,0x2c,0x0,0x54,0x0,0xe4,0x0,0x6d,0x0,0xe4,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x61,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0xe4,0x0,0x20,0x0,0x79,0x0,0x6c,0x0,0xe4,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0, + 0x75,0x0,0x76,0x0,0x61,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x6d,0x0,0x75,0x0,0x6f,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0, + 0x75,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x6f,0x0, + 0x6e,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6a,0x0,0xe4,0x0,0x6c,0x0, + 0x6b,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4e,0x0, + 0xe4,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0xe4,0x0,0x79,0x0,0x64,0x0,0xe4,0x0,0x20,0x0,0x6d,0x0,0x79,0x0, + 0xf6,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x69,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x79,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0, + 0x6f,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x2e,0x0,0x20,0x0,0x4c,0x0,0x69,0x0, + 0x73,0x0,0xe4,0x0,0x6b,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x79,0x0, + 0x79,0x0,0x6e,0x0,0xe4,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76,0x0, + 0x79,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x75,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x73,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x72,0x0,0x68,0x0,0x65,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x6a,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x61,0x0, + 0x69,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x54,0x0,0xe4,0x0,0x6d,0x0,0xe4, + 0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0xe4,0x0,0xe4,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x69,0x0,0x64,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x75,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65, + 0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x4b,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x6f, + 0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69, + 0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x0, + 0x2d,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x6b,0x0, + 0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,0x0,0x79,0x0,0x79,0x0,0x70,0x0, + 0x70,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x54,0x0,0x79, + 0x0,0x79,0x0,0x70,0x0,0x70,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x2d,0x0,0x74,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0xe4,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x47,0x0, + 0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x70,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x5a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x3a,0x0,0x6e,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72, + 0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74, + 0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c, + 0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4e,0x0,0x4e,0x0,0xe4,0x0,0x70,0x0,0x70,0x0,0xe4,0x0,0x69,0x0,0x6e,0x0, + 0x6b,0x0,0x69,0x0,0x69,0x0,0x68,0x0,0x64,0x0,0x79,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0, + 0x6f,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x54,0x0,0x69,0x0,0x65,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x61,0x0,0x20,0x0,0x65,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x75,0x0, + 0x6b,0x0,0x65,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x52,0x0, + 0x61,0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x79,0x0,0xf6,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6b,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0xf6,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x70,0x0,0xe4,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x54,0x0, + 0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69,0x0, + 0x20,0x0,0x6b,0x0,0x69,0x0,0x72,0x0,0x6a,0x0,0x6f,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4c, + 0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0, + 0xe4,0x0,0x79,0x0,0x74,0x0,0xe4,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x2d,0x0,0xe4,0x0,0xe4,0x0,0x6e,0x0, + 0x74,0x0,0xe4,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x2d,0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x20,0x0, + 0x26,0x0,0x74,0x0,0x79,0x0,0x79,0x0,0x70,0x0,0x70,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2d,0x0,0x74,0x0,0x69,0x0,0x65, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe6,0x0,0x4e,0x0,0xe4,0x0,0x79, + 0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0,0x61,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xe4,0x0,0xe4, + 0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x76, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d, + 0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0x75,0x0,0x6f,0x0,0x6b, + 0x0,0x73,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x61,0x0,0x69,0x0,0x68, + 0x0,0x64,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6b, + 0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0x74,0x0,0xf6,0x0,0x6b,0x0,0x65,0x0,0x6c, + 0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x6e,0x0,0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x6f,0x0,0x68, + 0x0,0x6a,0x0,0x61,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0, + 0xe4,0x0,0x79,0x0,0x74,0x0,0xf6,0x0,0x6e,0x0,0x6f,0x0,0x68,0x0,0x6a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x2d, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x69,0x0,0x6b,0x0,0x6b, + 0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4f,0x0,0x64,0x0,0x6f,0x0,0x74,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x54,0x0,0x65,0x0,0x72,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6c,0x0, + 0x6f,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x69,0x0,0x69,0x0,0x6e,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0, + 0x65,0x0,0x76,0x0,0x65,0x0,0x79,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63, + 0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69, + 0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x66, + 0x0,0x69,0x0,0x69,0x0,0x6b,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x75,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x6e,0x0,0x6f,0x0,0x70,0x0,0x65,0x0, + 0x61,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4f,0x0,0x6c,0x0, + 0x65,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x69,0x0, + 0x2d,0x0,0x74,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x6a,0x0, + 0x61,0x0,0x20,0x0,0x6d,0x0,0xe4,0x0,0xe4,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6a,0x0,0xe4,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x75,0x0,0x76, + 0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49, + 0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0, + 0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_sk-SK.qm + 0x0,0x0,0x92,0xd9, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x27,0xcd,0x0,0x0,0x0,0x48, + 0x0,0x0,0x46,0x87,0x0,0x0,0x0,0x53,0x0,0x0,0x69,0x24,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x7a,0x0,0x0,0x4,0xf2,0x0,0x0,0x4f,0xf3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0xf8,0x0,0x0,0x5,0x3b,0x0,0x0,0x5c,0xc2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0xfd,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x13,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x5b,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xa3,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xe2,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x2a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x72,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xba,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xd8,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0x7a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0xd6,0x0,0x0,0x4d,0x85,0x0,0x0,0x4b,0xf4,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5c,0xdd,0x0,0x0,0x5d,0x81,0x0,0x0,0x83,0xf,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4f,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xc1,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x52,0x0,0x4,0x8c,0xaf,0x0,0x0,0x25,0xe4,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0xa2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3c,0x77,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x41,0x6e,0x0,0x4,0xc8,0xa4,0x0,0x0,0x42,0xaf,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x40,0x3,0x0,0x4,0xd0,0x25,0x0,0x0,0x43,0x10,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x45,0xf5,0x0,0x5,0x56,0x45,0x0,0x0,0x5c,0x51,0x0,0x5,0x78,0x79, + 0x0,0x0,0x69,0x3c,0x0,0x5,0x98,0xc5,0x0,0x0,0x6a,0x20,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6d,0xb3,0x0,0x5,0xc0,0x65,0x0,0x0,0x7a,0xb7,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x3e,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x77,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xef,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x63,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x57,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x4b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0x9a,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x4c,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7d,0xad,0x0,0x3b,0xa9,0x68,0x0,0x0,0x19,0xfe,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1c,0xb9,0x0,0x4c,0x99,0x62,0x0,0x0,0x3e,0xd8,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x35,0x6d,0x0,0x58,0xc9,0xc4,0x0,0x0,0x68,0xc5,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x70,0x8b,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6e,0x28,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7a,0x53,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7a,0xd6,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x85,0xa9,0x0,0x73,0x75,0x3e,0x0,0x0,0x34,0x18,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0xef,0x0,0x97,0x96,0x4,0x0,0x0,0x36,0xbe,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0x27,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4f,0xc3,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x49,0x64,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0xa5,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x5,0x1,0x9,0x1c,0x92,0x0,0x0,0x40,0xcc,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2a,0xb0,0x1,0x39,0xa4,0xce,0x0,0x0,0x58,0x8a,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7a,0x77,0x1,0x4c,0x50,0xee,0x0,0x0,0x66,0xb8,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0x23,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x64,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x78,0xf4,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3a,0xc9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x28,0x75,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4b,0x8a,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x53,0x8d,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0x13,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x89,0x1,0xc8,0x65,0x8f,0x0,0x0,0x40,0x2a,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x59,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x51,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x31,0x26,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0xe4,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x70,0xe2,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x2c,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x72,0x77,0x2,0x23,0x3c,0x6b,0x0,0x0,0x72,0xa,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x71,0x9d,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0xc2,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4a,0xf7,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0x53,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x83,0x6f,0x2,0x90,0x8d,0x12,0x0,0x0,0x41,0x9d,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5f,0x2e,0x2,0xad,0x4a,0x22,0x0,0x0,0x67,0x1f,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x11,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x30,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x1a,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xac,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x73,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0xe6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x85,0xcd,0x3,0x5,0x38,0xb2,0x0,0x0,0x3e,0xfc,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x62,0xd1,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x70,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x48,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x6f,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0x3d,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0x27,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x4e,0x3,0x6a,0x66,0x2e,0x0,0x0,0x56,0xc3,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x54,0x90,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xd8,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2f,0xf5,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x95,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0xb0,0x3,0xa4,0x35,0xa5,0x0,0x0,0x41,0x4e,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x41,0x20,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0xd7,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0x5d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x71,0x2d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6f,0x94,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6f,0x52,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6f,0x10,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6e,0xce,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xf6,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0x5a,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0x19,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0x97,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0xc1,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x68,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x8,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0x13,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x29,0x49,0x4,0x51,0x79,0xb1,0x0,0x0,0x73,0x69,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7b,0xfe,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0x42,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6e,0x8f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3b,0x98,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3b,0xc9,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x33,0x95,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2f,0x1e,0x4,0xb8,0x1,0x2e,0x0,0x0,0x38,0x10,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x7f,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xd0,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x3a,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0xcd,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5a,0xa8,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x32,0x6e,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x73,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0x65,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5a,0xcc,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0x2a,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4a,0xa8,0x5,0x18,0x5,0x95,0x0,0x0,0x7e,0x29,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x15,0xed,0x5,0x30,0xd3,0xe,0x0,0x0,0x3a,0xe,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5a,0x85,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x84,0x4e,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x2,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3c,0x27,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6d,0xd8,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x54,0xba,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7a,0x4,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x74,0x81,0x5,0xa5,0x3a,0x79,0x0,0x0,0x26,0x5b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x70,0xb5,0x5,0xb2,0x16,0x79,0x0,0x0,0x67,0x8c,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x47,0x7e,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0xde,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3e,0x6d,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0x96,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xf5,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xeb,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0x3c,0x5,0xc1,0x4d,0x83,0x0,0x0,0x37,0x42,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x81,0x5f,0x5,0xd0,0x4f,0x11,0x0,0x0,0x82,0x2f,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xfe,0x5,0xdf,0xba,0xba,0x0,0x0,0x82,0x87,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x66,0x3c,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0x27,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x36,0xe9,0x6,0x19,0x20,0x43,0x0,0x0,0x6a,0x45,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x39,0xd8,0x6,0x38,0x9f,0x35,0x0,0x0,0x37,0xb1,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1e,0xf8,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xb7,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x32,0x9c,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7f,0x82,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0xb1,0x6,0x74,0xe,0x6a,0x0,0x0,0x60,0x3,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0x1e,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x25,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3d,0x1d,0x6,0x81,0xb7,0x1f,0x0,0x0,0x38,0xff,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6f,0xd6,0x6,0x96,0xa4,0x13,0x0,0x0,0x44,0x80,0x6,0x97,0x71,0x79, + 0x0,0x0,0x69,0xa2,0x6,0xc3,0xce,0xa3,0x0,0x0,0x72,0xe4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x45,0x2e,0x6,0xed,0xca,0xce,0x0,0x0,0x46,0xda,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xf2,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xbe,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0xe6,0x7,0x0,0x57,0x53,0x0,0x0,0x27,0xe5,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0x60,0x7,0x6,0x93,0xe3,0x0,0x0,0x85,0x32,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0xb1,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x33,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x1a,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6d,0x7a,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0xe2,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4c,0xa7,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x62,0x47,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0xd2,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x32,0x11,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0x4f,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xd9,0x7,0x70,0xb3,0xaa,0x0,0x0,0x43,0x33,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2e,0xee,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0xf1,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x56,0x96,0x7,0xa3,0x63,0x9e,0x0,0x0,0x68,0x7,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0x67,0x7,0xa4,0x32,0x89,0x0,0x0,0x1c,0xdd,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7f,0x3b,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x70,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xa0,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0x97,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x64,0xa,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x63,0xb5,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3c,0x98,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x69,0x5d,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0x54,0x8,0x0,0x3f,0x29,0x0,0x0,0x63,0x3f,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x59,0x85,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xb0,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x51,0xa0,0x8,0x60,0xe7,0xcd,0x0,0x0,0x79,0x89,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x60,0x35,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x81,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7a,0xf8,0x8,0x9b,0xc,0x24,0x0,0x0,0x6b,0xcf,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0xd3,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4f,0x87,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0xf,0x8,0xa4,0xb,0xae,0x0,0x0,0x4f,0x4b,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3b,0x37,0x8,0xa9,0xcf,0x35,0x0,0x0,0x30,0x82,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3f,0x74,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x37,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3d,0xcb,0x8,0xf7,0xb3,0xda,0x0,0x0,0x44,0xe3,0x9,0x9,0x24,0x29, + 0x0,0x0,0x51,0x54,0x9,0x49,0xfa,0x4a,0x0,0x0,0x33,0x31,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x33,0x63,0x9,0x49,0xfa,0x6a,0x0,0x0,0x32,0xcd,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x32,0xff,0x9,0x4e,0xde,0x64,0x0,0x0,0x7b,0x61,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5b,0x49,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x31,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x75,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x79,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x65,0x11,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x0,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2f,0x45,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0x71,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2f,0x9d,0x9,0x88,0x63,0x3a,0x0,0x0,0x2f,0xc9,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x48,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x7f,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x90,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5b,0x11,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0x91,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x17,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0x40,0x9,0xd5,0x43,0xd3,0x0,0x0,0x34,0xb5,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xc9,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xfb,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3e,0x1e,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x9f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x44,0x18,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0x65,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x45,0x7e,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3d,0x8f,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4e,0x7f,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x3c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7e,0x92,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6b,0x1a,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x73,0x2a,0xa,0x98,0x1f,0x89,0x0,0x0,0x35,0xe9,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x35,0x9e,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4d,0x9d,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x35,0x3b,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xbb,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x36,0x34,0xa,0xda,0x50,0x7e,0x0,0x0,0x7c,0xc3,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xa8,0xa,0xea,0x46,0xf4,0x0,0x0,0x5b,0x7b,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x36,0x68,0xb,0xa,0x72,0xc9,0x0,0x0,0x38,0xd9,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x32,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0xe7,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0x22,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x2,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xee,0xb,0x4e,0x19,0x54,0x0,0x0,0x52,0x8b,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0xf2,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x91,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0xf,0xb,0x9d,0xe,0xa2,0x0,0x0,0x31,0xdb,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0x3b,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0xed,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6e,0x4a,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x24,0xd1,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0xc3,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0x12,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x84,0xf6,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x62,0x7f,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x73,0xd9,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x75,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x44,0xc,0x33,0xeb,0xe2,0x0,0x0,0x74,0x37,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x43,0x6c,0xc,0x42,0x70,0xde,0x0,0x0,0x28,0xbb,0xc,0x48,0x83,0xde, + 0x0,0x0,0x64,0x59,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0xe3,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x75,0xff,0xc,0x77,0x67,0x19,0x0,0x0,0x43,0xb4,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x39,0x9c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x6c,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x30,0xab,0xc,0x90,0x26,0xb5,0x0,0x0,0x7d,0x4f,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0x94,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0x30,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6d,0x49,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x64,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5d,0x1c,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7f,0xb4,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0x83,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x22,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1d,0xc8,0xd,0x11,0x45,0x1a,0x0,0x0,0x27,0x3c,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x81,0x8a,0xd,0x4a,0x90,0xb2,0x0,0x0,0x67,0xd7,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x82,0xd8,0xd,0x60,0xef,0x6a,0x0,0x0,0x4d,0x5f,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x34,0xf1,0xd,0x77,0xa4,0xc0,0x0,0x0,0x42,0x2b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x38,0x9e,0xd,0x88,0x48,0x23,0x0,0x0,0x30,0x3d,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3b,0xfa,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x44,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x83,0xb1,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0x76,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x82,0xae,0xe,0x20,0x13,0x12,0x0,0x0,0x42,0xd4,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x55,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0x94,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0x22,0xe,0x48,0xfd,0xca,0x0,0x0,0x29,0xdb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2a,0x69,0xe,0x62,0x79,0x4,0x0,0x0,0x39,0x67,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0x79,0xe,0x7b,0xa1,0x23,0x0,0x0,0x53,0xca,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x31,0xb2,0xe,0x98,0x18,0x54,0x0,0x0,0x26,0xf1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x65,0xc8,0xe,0xbe,0x61,0x81,0x0,0x0,0x6c,0x39,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6c,0x7d,0xe,0xbe,0x61,0x83,0x0,0x0,0x6c,0xc1,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6d,0x5,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0xcf,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0xc7,0xe,0xe2,0x34,0x60,0x0,0x0,0x84,0xa2,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x84,0xcc,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xe7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x20,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x8c,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x85,0x73,0xf,0x15,0xf4,0x85,0x0,0x0,0x4c,0xda,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x75,0x37,0xf,0x17,0x9c,0x64,0x0,0x0,0x7e,0xef,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0x66,0xf,0x29,0x4d,0x2a,0x0,0x0,0x46,0x9f,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x40,0x89,0xf,0x30,0x6b,0x3,0x0,0x0,0x30,0xf1,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x70,0x3f,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xbd,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xd,0xf,0x70,0xaa,0x1a,0x0,0x0,0x81,0xf2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x67,0x56,0xf,0x85,0x7b,0xea,0x0,0x0,0x5f,0xc2,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0xca,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xb3,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x66,0x6a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3a,0x7c,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0xe,0xf,0xd9,0x8c,0xca,0x0,0x0,0x50,0x9c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x50,0x55,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0xe3,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3c,0xdd,0xf,0xe2,0xe9,0x49,0x0,0x0,0x83,0x2d,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0x79,0xf,0xf5,0xeb,0x52,0x0,0x0,0x60,0xbf,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x61,0x5,0xf,0xf5,0xeb,0x54,0x0,0x0,0x61,0x4b,0x69,0x0,0x0,0x85, + 0xf7,0x3,0x0,0x0,0x0,0x1c,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x4f, + 0x0,0x5a,0x0,0x41,0x0,0x53,0x0,0x54,0x0,0x41,0x0,0x56,0x0,0x45,0x0,0x4e, + 0x0,0xdd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50, + 0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x60, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6b,0x0,0xe9,0x0,0x6b,0x0,0x6f, + 0x1,0x3e,0x0,0x76,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x76, + 0x0,0x79,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x76,0x1,0x61,0x0,0x65, + 0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0xfa,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70, + 0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xfa,0x0,0x20,0x0,0x74,0x0,0x6c,0x0,0x61, + 0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x65,0x1,0x48,0x0,0x20,0x0,0x62, + 0x0,0x75,0x0,0x64,0x0,0xfa,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69, + 0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x25,0x0,0x69,0x0,0x20,0x1, + 0xd,0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x28,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61, + 0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x4f, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x26,0x0, + 0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0, + 0x75,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70, + 0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f, + 0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0, + 0x50,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x56,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xe9,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0xfd,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6e, + 0x0,0x75,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x5a,0x0,0x6c,0x0,0x6f,0x1, + 0x7e,0x0,0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x52,0x0,0x6f, + 0x0,0x7a,0x1,0x61,0x0,0xed,0x0,0x72,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0xe1,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0, + 0x6b,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0, + 0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x6f,0x0, + 0x6d,0x0,0x6f,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x26,0x0,0x53,0x0,0x6b,0x0,0x72,0x0,0x79,0x1,0x65,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20, + 0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20,0x1,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0xe1,0x0,0x74,0x0,0x69,0x1,0x65,0x0, + 0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0, + 0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x79,0x1,0x7e,0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0xe1,0x0,0x62,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71, + 0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0xe1,0x0,0x72,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0, + 0x53,0x0,0x74,0x0,0xed,0x1,0x61,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x6a,0x0,0x62,0x0, + 0x6c,0x0,0x69,0x1,0x7e,0x1,0x61,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e, + 0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x50,0x0,0x26,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x72,0x0,0x61,0x1, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x62,0x0,0x79,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26, + 0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4f,0x0,0x64,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x68, + 0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x63,0x0,0x68, + 0x0,0xe1,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72, + 0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x76,0x0, + 0x69,0x0,0x6e,0x0,0x75,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x7a,0x0,0x61,0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26, + 0x0,0x50,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x1,0x3e,0x0,0x61, + 0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52, + 0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x5a,0x0,0x76, + 0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68, + 0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x26,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78, + 0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74, + 0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54, + 0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0, + 0x26,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x69,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0, + 0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0, + 0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26, + 0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x26,0x0,0x5a,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x26,0x0,0x42,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x26,0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x62,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0xe4,0x1,0xd,0x1,0x61,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x28,0x0,0x50,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74, + 0x0,0xe9,0x0,0x6d,0x0,0x75,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x28,0x0, + 0x70,0x0,0x72,0x0,0xe1,0x0,0x7a,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x31,0x0,0x25,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66, + 0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0, + 0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0, + 0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35, + 0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20, + 0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x32,0x0,0x25, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72, + 0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0, + 0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33, + 0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61, + 0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33, + 0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d, + 0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20, + 0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e, + 0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d, + 0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0, + 0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20, + 0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0, + 0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0, + 0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53, + 0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0, + 0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39, + 0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x0,0x20,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0, + 0xed,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20,0x1,0x61,0x0, + 0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0, + 0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x58,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x61,0x1,0x61,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x1,0x7e,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x1,0x3e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x69, + 0x0,0x64,0x1,0x7e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74, + 0x0,0xed,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x73,0x0,0x61, + 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x6f,0x0,0x76,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x75, + 0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x75,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x79, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x56,0x0,0x79,0x0, + 0x70,0x0,0x6e,0x0,0xfa,0x1,0x65,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74, + 0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41, + 0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,0x0,0x72,0x0, + 0x69,0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x50, + 0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64, + 0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x52,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64, + 0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x56,0x1,0x61,0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x73,0x0, + 0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x1,0x61,0x0,0x65,0x0,0x74,0x0, + 0x6b,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x79,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xe0,0x0,0x45, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x6f, + 0x0,0x76,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f, + 0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49, + 0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65, + 0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f, + 0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20, + 0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f, + 0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61, + 0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e, + 0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65, + 0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30, + 0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67, + 0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c, + 0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68, + 0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74, + 0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x5a,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x6a,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e, + 0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55, + 0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20, + 0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x32, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x1,0x61,0x0,0x65,0x0,0x6a,0x0,0x2e,0x0,0x20,0x0,0x50, + 0x0,0x6f,0x0,0x7a,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x61,0x0,0x63,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xed,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75, + 0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d, + 0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74, + 0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38, + 0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e, + 0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64, + 0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f, + 0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69, + 0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c, + 0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69, + 0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69, + 0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69, + 0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d, + 0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76, + 0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a, + 0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72, + 0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69, + 0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62, + 0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61, + 0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69, + 0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67, + 0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20, + 0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c, + 0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32, + 0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c, + 0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20, + 0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0,0x61,0x0,0x6f,0x0,0x7a,0x0, + 0x61,0x0,0x6a,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x1, + 0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0x61,0x0,0x6f,0x0,0x7a, + 0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x5a,0x0, + 0xe1,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x5a,0x0,0x61,0x1,0xd,0x0,0x61,0x1, + 0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1,0x65, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x5a,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x5a,0x0,0x62,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x79,0x0,0x74,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x75,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0, + 0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0, + 0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0, + 0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f, + 0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72, + 0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0, + 0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x2,0xb8,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0xfa,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x79, + 0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x1,0x3e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd, + 0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x54,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x6f, + 0x1,0x7e,0x1,0x48,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76, + 0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6b, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x62,0x0,0x79,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20, + 0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x6d, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xfd,0x0,0x2e,0x0,0x20,0x0,0x4d, + 0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x76,0x1,0x61,0x0,0x61,0x0,0x6b, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x65,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x6c,0x0,0xe9,0x0,0x6d,0x0,0x79, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x76,0x0,0xe9,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x68,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0xe9,0x0,0x6b,0x0,0x6f, + 0x1,0x3e,0x0,0x76,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0xe1, + 0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0xe1,0x0,0x63,0x0,0x68,0x0,0x20, + 0x0,0x6d,0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x79,0x1,0x65, + 0x0,0x20,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x76,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0, + 0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x76,0x0, + 0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x26,0x0,0xda, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x20, + 0x1,0xd,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x6f,0x0,0x62,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x79,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63, + 0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0xe1, + 0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68, + 0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1, + 0xd,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x61,0x0,0x64,0x0, + 0x69,0x1,0xd,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x69,0x1,0x65,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0, + 0xfa,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x74,0x0, + 0x6b,0x0,0x75,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74, + 0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x69,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65, + 0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x6c,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x28,0x0,0x76,0x0,0x65,0x1,0x3e,0x0, + 0x6b,0x0,0xe1,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x56,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0xe1,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x43,0x0,0x79,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31, + 0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46, + 0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0xfd,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76, + 0x0,0xe9,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52, + 0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x76, + 0x0,0xfd,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x56,0x0,0x79,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74, + 0x0,0xe1,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0, + 0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0xfa,0x0,0x62,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x75, + 0x1,0x7e,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75, + 0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c, + 0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xed,0x0,0x6c,0x0,0x69,0x1, + 0x61,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0xfd,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0x79, + 0x1,0x65,0x0,0x20,0x0,0x76,0x0,0xe4,0x1,0xd,0x1,0x61,0x0,0xed,0x0,0x20, + 0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x1,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x1,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0, + 0x65,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f, + 0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0x65,0x0,0x7a,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x1,0xf, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0xfa,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63, + 0x0,0x6b,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x79,0x0, + 0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1,0x65,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0, + 0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26, + 0x0,0x56,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x68,0x0,0x6e, + 0x0,0xfa,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x26,0x0,0x56,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x68,0x0, + 0x6e,0x0,0xfa,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x26,0x0,0x55,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x1,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0, + 0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x53,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0,0xe1,0x0,0x20,0x0, + 0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69, + 0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69, + 0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x75,0x0, + 0x74,0x0,0xe1,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0xe1,0x0, + 0x20,0x0,0x28,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x56,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0, + 0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72, + 0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x43, + 0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x48,0x0,0x43,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x69, + 0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x73,0x1,0x3e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0xd,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x45,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xfa,0x0,0x63,0x0,0x69,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0xe1, + 0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65, + 0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x55,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x1,0xd,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32, + 0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0xfd,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x4f,0x0,0x76,0x0,0x6c,0x0,0xe1,0x0,0x64,0x0,0x61,0x1,0xd, + 0x0,0x20,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73, + 0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65, + 0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63, + 0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x56,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x65,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x6c,0x0,0xe1,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5a,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x69,0x0, + 0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x7e,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73, + 0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6c,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4b,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0x79,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4e,0x0,0xe1,0x0,0x7a,0x0, + 0x6f,0x0,0x76,0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0, + 0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c, + 0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x53,0x0,0x70,0x0,0xf4,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x20, + 0x0,0x26,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0x6f, + 0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x1,0x65,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69, + 0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe1, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x6b,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4a,0x0,0x52,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x26,0x0,0x68, + 0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0xfa,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x5a,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x76, + 0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x26,0x0,0x6f,0x0,0x64,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x6a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79, + 0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0xf4,0x1,0x7e,0x0,0x75,0x0,0x20,0x0,0x62, + 0x0,0x79,0x1,0x65,0x0,0x20,0x0,0x76,0x0,0xe4,0x1,0xd,0x1,0x61,0x0,0xed, + 0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44, + 0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc0,0x0,0x4f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0xe1,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x58,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0, + 0x6f,0x0,0x73,0x1,0x65,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0x6f,0x0, + 0x76,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xfa,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74, + 0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68, + 0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73, + 0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64, + 0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x65,0x0,0x76,0x0, + 0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e, + 0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64, + 0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x65,0x0,0x76,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x65, + 0x0,0x76,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b, + 0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0, + 0xe9,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0, + 0x6e,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48, + 0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xfd,0x1,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x1,0x60,0x0, + 0x26,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x44,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x53,0x0,0x6b,0x0,0x72,0x0,0x79,0x1,0x65,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x6e,0x0,0xe1, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x6f,0x0,0x76,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0xe4, + 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6e,0x0, + 0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75, + 0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0, + 0xfa,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0xe1,0x0, + 0x74,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x56,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x69,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0, + 0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0, + 0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x72,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4a,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x65,0x1,0x3e, + 0x0,0x6b,0x0,0xe9,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x79, + 0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x55,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6b, + 0x0,0x6e,0x0,0xfa,0x1,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a, + 0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73, + 0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x88,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0, + 0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0, + 0x7a,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x64,0x0,0x79,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53, + 0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x76,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0, + 0xfd,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20, + 0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x6f,0x0,0x6f,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0xe9,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74, + 0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x16, + 0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0xfd,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x7a,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x22,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74, + 0x0,0x61,0x1,0xd,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64, + 0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xb4,0x0,0x55,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x2c,0x0, + 0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x1,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x6a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0xed,0x0, + 0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x55,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x61,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xfa,0x0, + 0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x1,0x7e,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x65,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0x65,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64, + 0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84, + 0x0,0x55,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x61,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6c,0x0,0x6f, + 0x1,0x7e,0x0,0x6b,0x0,0x79,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x20,0x0,0x73, + 0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f, + 0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x2c,0x0,0x20,0x0,0x64,0x0,0xe1,0x0,0x20, + 0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x1,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0xe4,0x1,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x70,0x0,0xe1,0x0,0x6e,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61, + 0x0,0xed,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f, + 0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x4d,0x0,0x79,0x1, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75, + 0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x69,0x0,0x65,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x65,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xfd, + 0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0xe9,0x0,0x72, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x44,0x0,0x72,0x0,0x75,0x0,0x68,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77, + 0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0, + 0x6e,0x0,0xe1,0x0,0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x1, + 0x7e,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x6a,0x0,0x64,0x0,0x65,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x1,0x7e,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e, + 0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x1,0x7d,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x6e,0x0,0x65,0x0,0x6a,0x1,0x61,0x0,0xed,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x56,0x0,0x79,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x56,0x0, + 0x79,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x73,0x1,0x3e,0x0,0x6f,0x0,0x76,0x0, + 0x61,0x1,0xd,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x69,0x0, + 0x6c,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0, + 0x2e,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6e, + 0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xed,0x0,0x73,0x0,0x6c,0x0,0x75, + 0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3a,0x1,0xe,0x0,0x61,0x0,0x6c,0x1,0x61,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x1,0x3e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65, + 0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x70,0x0,0xed,0x0,0x73,0x0,0x61,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x65,0x1,0x7e,0x0, + 0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x6b,0x0,0xf3,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20, + 0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x1,0xc,0x0,0x61,0x0,0x73,0x0,0x6f,0x0, + 0x76,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0xd,0x0,0x69,0x0,0x61,0x0, + 0x74,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0xfa,0x0, + 0x68,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0, + 0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x1, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0xe1,0x1,0xd,0x0, + 0x6b,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x6e,0x0,0xfa,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x6e,0x0,0xfd,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0, + 0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x64,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x62,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x74,0x0, + 0x6c,0x0,0x61,0x1,0xd,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x53,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x69,0x1,0x65,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0, + 0x53,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x74,0x0,0x65,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0, + 0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0, + 0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x53,0x0,0x74,0x0,0x6c,0x0,0x61,0x1, + 0xd,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0, + 0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0, + 0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x75,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31, + 0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x53, + 0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46, + 0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x76,0x0,0x6f,0x1,0x3e,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20, + 0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x68, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x1,0x60,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x74,0x0,0xfd,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72, + 0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74,0x0,0x61,0x1,0x65,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f, + 0x0,0x73,0x1,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6c, + 0x0,0x6f,0x0,0x68,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x66,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x6e,0x0,0xfd,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x65, + 0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f, + 0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0, + 0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x4e,0x0, + 0x65,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x75,0x0,0x64,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x72,0x0, + 0x6f,0x0,0x7a,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0xe1,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x62,0x0,0x6e,0x0,0x6f,0x0, + 0x76,0x0,0x69,0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53, + 0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44, + 0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x55,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69, + 0x1,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x55,0x0,0x6c,0x0, + 0x6f,0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0, + 0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0xe1,0x0,0x6c,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x76,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20, + 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63, + 0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e, + 0x0,0x56,0x0,0xfd,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x64,0x0,0x69,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76, + 0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6f, + 0x0,0x76,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d, + 0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d, + 0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67, + 0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x79,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1, + 0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0, + 0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74, + 0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x56,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x6f,0x0,0x6d,0x0, + 0x61,0x0,0x6c,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53, + 0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d, + 0x0,0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b, + 0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d, + 0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20, + 0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x5a, + 0x0,0x76,0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x26,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x6c,0x0, + 0x6e,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0, + 0x75,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53, + 0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x76, + 0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75, + 0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x61, + 0x0,0x64,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d, + 0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0x61,0x0,0x76, + 0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x1, + 0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x1,0x3e,0x0,0x6b,0x0,0x6f,0x0,0x73,0x1, + 0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x52,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x1, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0xfd,0x0, + 0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x1,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x1,0x60,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x32,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x1,0x60,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x34,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x1,0x60,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x36,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd, + 0x0,0x69,0x0,0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a, + 0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x1,0x60,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0, + 0xfd,0x0,0x20,0x0,0x38,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0x69,0x0, + 0x64,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x52,0x0,0x61,0x0,0x64, + 0x0,0x69,0x1,0xd,0x0,0x65,0x0,0x20,0x0,0xfa,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0, + 0x55,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x73,0x0, + 0x6e,0x0,0xed,0x0,0x6d,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x26,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x79,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20, + 0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x26,0x0,0x43,0x0,0x69,0x0,0x65,0x1,0x3e,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x20,0x0,0x73,0x0,0x6e,0x0,0xed,0x0,0x6d,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0, + 0xe1,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0, + 0x72,0x0,0x65,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44, + 0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x62,0x0, + 0x75,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0, + 0x76,0x0,0x6c,0x0,0xe1,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x5a,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x73,0x0, + 0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x70,0x0,0xed,0x0,0x73,0x0, + 0x61,0x0,0x6e,0x0,0xfd,0x0,0x2e,0x0,0x20,0x0,0x4e,0x0,0x61,0x0,0x6f,0x0, + 0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x63,0x0, + 0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x75,0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xf0,0x0,0x54,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0xf4,0x1, + 0x7e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x1,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x61,0x0,0x68,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x76,0x0, + 0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0xed,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x76,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0xe1,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x1,0x7e,0x0,0x20,0x0,0x6d,0x0,0xf4,0x1, + 0x7e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x1, + 0x65,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x62,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x70,0x0,0xed,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0xfd,0x0, + 0x2c,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0, + 0x6b,0x0,0x76,0x0,0xf4,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x79,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x2c,0x0,0x20,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x6c,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0, + 0x74,0x0,0x65,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0xd,0x0,0x69,0x0,0x61,0x0,0x74,0x0, + 0x6b,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x69,0x1,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54, + 0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74, + 0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, + 0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20, + 0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20, + 0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72, + 0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61, + 0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67, + 0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20, + 0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x50,0x0,0x6f,0x0,0x6b, + 0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xed, + 0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x79,0x0,0x6e, + 0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0xe1, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73, + 0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72, + 0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x54,0x0, + 0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x54,0x0, + 0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x61, + 0x1,0x3e,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0, + 0x63,0x0,0x69,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x7e,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x82,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x1,0x7e,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e, + 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64, + 0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x65,0x0,0x62,0x0, + 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0, + 0xe9,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0x61,0x1,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x6b,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x6b,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x65,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0x65,0x0, + 0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4a,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e, + 0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x4e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0, + 0x69,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0x65,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0xfa,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x1, + 0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x20,0x0,0x46,0x0, + 0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32, + 0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0xfa,0x0,0x62,0x0,0x6f, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x1e,0x0,0x56,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd, + 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6f,0x1,0x7e, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0xfd,0x0,0x62,0x0,0x61,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0xe4,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x20, + 0x0,0x7a,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x22,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75, + 0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68, + 0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69, + 0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72, + 0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x1,0x65,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20, + 0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0xe1, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x1,0xc,0x0,0x61,0x0,0x6b,0x0,0x61, + 0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76, + 0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x56,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6a,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x1,0x60,0x0, + 0xed,0x0,0x72,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61, + 0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50, + 0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x58, + 0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47, + 0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0, + 0x28,0x0,0x72,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6a,0x1, + 0x61,0x0,0xed,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0xfa,0x1, + 0x61,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x1,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfa,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0, + 0x69,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0, + 0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32, + 0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_it-IT.qm + 0x0,0x0,0x94,0xe9, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0x93,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0xc7,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0xa,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x82,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0x39,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x3a,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x42,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x81,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x1b,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x63,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xab,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xea,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x32,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x7a,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xc2,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xe0,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x54,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0xf6,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x14,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x5d,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x2b,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x49,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xc9,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xe6,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xb6,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x72,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x53,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x48,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x55,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0x7,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xb4,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x3d,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0xc9,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x22,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x6,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0x91,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x3f,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xbc,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xf5,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xf7,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xab,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xaf,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xa9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x2e,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xde,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0xd,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x7c,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x27,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xbe,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x9,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0x8f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0xa3,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0xe,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0xef,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0x60,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xb9,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x9e,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0x6f,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x5e,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0x67,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x9,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xa0,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x4b,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x83,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xb8,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x54,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xe4,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x13,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x72,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x61,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x6,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0x90,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xbd,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x33,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0xaa,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0xb5,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0x55,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xc9,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x28,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x91,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0xb5,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x66,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0xca,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x72,0xf6,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x72,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x7b,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x12,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xa9,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x54,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x33,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0x77,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0x8b,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x69,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xdc,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xdf,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x3b,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x7c,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x82,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x42,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x7,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x94,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x87,0xdd,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xe4,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x75,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x2,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xda,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x1,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0x7f,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xb9,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xe0,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x11,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0xb6,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x1e,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x29,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x9d,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x2e,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x28,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0xfa,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x55,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5a,0xc9,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x3d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x7c,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x3c,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x70,0xfc,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0xbc,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xfe,0x4,0x3,0xf6,0x9a,0x0,0x0,0x57,0x8a,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xab,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x29,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x53,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xfa,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x54,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0xe3,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x29,0xfd,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0x7f,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0x66,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x4,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x79,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x86,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xb1,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x11,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x48,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xaa,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xd3,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xca,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x5f,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0x2a,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xc4,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x5,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xdd,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0x4e,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0x60,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0xdc,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x81,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x7f,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xf6,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x3,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0x70,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x6e,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0xb4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0xec,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0x94,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0x9d,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x2b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xcd,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x4a,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0xca,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x16,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x45,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x28,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x87,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x7d,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0x6e,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xe4,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0xa7,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x4f,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x5a,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0x9b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xde,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0x45,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x93,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x29,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xbc,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x49,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x88,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xbd,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xf4,0x6,0x6c,0xb8,0x3,0x0,0x0,0x81,0xce,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0xef,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0xb9,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x54,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x93,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xf9,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xc9,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0xbc,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0xf8,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0x88,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xe4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0x8a,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x1e,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x6,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xde,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x20,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xab,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0x82,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x4c,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x47,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3b,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xae,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x52,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0x52,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0xc9,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0xeb,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x50,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x5f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0x81,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x71,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0xd5,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x10,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0xb7,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0xd8,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0xc5,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xef,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x4b,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0x8f,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6a,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9a,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x67,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xb4,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x63,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x74,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x43,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0x74,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xe7,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xf5,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0xe,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0xde,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x19,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xf1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xa3,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0x84,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xc5,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x19,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0xcd,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0x55,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0x91,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x2d,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xba,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x66,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x4f,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xa3,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x4d,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x8c,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x99,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xd5,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x21,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x5d,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0xe7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0xcd,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x39,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x7,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x81,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xb1,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x8,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x71,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x9f,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xcd,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xfb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x50,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xcb,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x98,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x91,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x3d,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xa9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0xb0,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x33,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x3f,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x79,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0xf8,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xe7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xaa,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xed,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xc8,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x63,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0xc1,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x54,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0xe2,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6c,0xf8,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x30,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x85,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x3a,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0xcd,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xc9,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xd1,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xd0,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x11,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0xc,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x7,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x2,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x9f,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x50,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x43,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0x66,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x50,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x54,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0xcd,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x56,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xed,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x37,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x29,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xc3,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xcb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x32,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x83,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x15,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0x32,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0x18,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0x3d,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xe1,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xd7,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0xb0,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x41,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x8,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x73,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0x3,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x1b,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x45,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x44,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x76,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x7e,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xe7,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xaf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x42,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0xf6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0x1d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x7a,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0xa4,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0xfc,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x2f,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xa0,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x4c,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x10,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0xce,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x95,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0xf4,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0x89,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x6f,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0xf7,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x5e,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x71,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xdc,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x72,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0xcf,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0xf0,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0xca,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x7a,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xf1,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x48,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xce,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0x8b,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x11,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x43,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x11,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0xf2,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xfe,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xbf,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x64,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x1d,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x5d,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0x9d,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xdd,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x7,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x5d,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xc4,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0xee,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x33,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x84,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xfe,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x83,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0xf6,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x63,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x47,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0xe,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0xdf,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x79,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x2d,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x4b,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x19,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x9f,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0xe,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x12,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x76,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x5e,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x17,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x10,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x6a,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0x54,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0xda,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x97,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x1d,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xb9,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x49,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0x25,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x6b,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0xb1,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xf7,0x69,0x0,0x0,0x88, + 0x7,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x64,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x72,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x51,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x72, + 0x0,0xe0,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f, + 0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c, + 0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x25, + 0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68, + 0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0, + 0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42, + 0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x46, + 0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x53,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x7a, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x64,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0, + 0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0, + 0x75,0x0,0x6f,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x4d,0x0,0x65,0x0,0x64,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76, + 0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x44, + 0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x41,0x0,0x26,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46, + 0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6c,0x0, + 0x6c,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x41,0x0,0x64,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x63, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73, + 0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x26,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x6d,0x0, + 0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x61, + 0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x0,0x26,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x63, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0, + 0x54,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x65,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x61,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x4d,0x0,0x75,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x44,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0xf9,0x0,0x20,0x0,0x76,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4e,0x0,0x75,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4e,0x0,0x75, + 0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x26,0x0,0x69,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0, + 0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0, + 0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x7a,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x52, + 0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x52,0x0,0x69,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x0,0x52,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6f,0x0,0x76,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52, + 0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x69,0x0, + 0x26,0x0,0x61,0x0,0x76,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x67,0x0,0x69,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65, + 0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x26,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73, + 0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c, + 0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0, + 0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0, + 0x26,0x0,0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0,0x74,0x0,0x72, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0,0x67,0x0,0x67,0x0, + 0x69,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x63, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69, + 0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69, + 0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x28,0x0,0x50, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x28,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74, + 0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52,0x0, + 0x50,0x0,0x4d,0x0,0x20,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e, + 0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0, + 0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x35,0x0,0x25,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x7a,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31, + 0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52, + 0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66, + 0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x53,0x0, + 0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e, + 0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22, + 0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36, + 0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0xf2, + 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6c,0x0,0x65, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68, + 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e, + 0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x65, + 0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x20,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f, + 0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c, + 0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f, + 0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f, + 0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d, + 0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74, + 0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f, + 0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x41,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x41,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x6e,0x0, + 0x67,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x41,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x6e,0x0,0x67, + 0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6f, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x75,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0, + 0x75,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x4,0x2,0x0,0x55, + 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x76,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x3a,0x0,0x20, + 0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72, + 0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74, + 0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38, + 0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39, + 0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20, + 0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f, + 0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69, + 0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c, + 0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73, + 0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a, + 0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69, + 0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69, + 0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62, + 0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72, + 0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c, + 0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x54,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x74,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x65,0x0,0x78, + 0x0,0x70,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f, + 0x0,0x74,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0xa,0x0,0xa,0x0,0x52,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x7a, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x62,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x76, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x6f, + 0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x67,0x0,0x69, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x53,0x0,0x65,0x0,0x69,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79, + 0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x53,0x0,0x65,0x0,0x69, + 0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x3f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x49,0x0, + 0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74, + 0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x6c, + 0x0,0x6f,0x0,0x63,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x53,0x0,0x6f,0x0,0x76,0x0, + 0x72,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61, + 0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20, + 0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x36,0x0,0x49,0x0,0x6c,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x67, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x67, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x51, + 0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x65,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x75, + 0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x2c,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x6d,0x0,0x69,0x0,0x2e,0x0,0x20,0x0,0xa,0x0,0xa,0x0,0x4c, + 0x0,0x27,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x75,0x0,0x66,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x6e, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6e, + 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41, + 0x0,0x6e,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72, + 0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0, + 0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x43,0x0,0x61, + 0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d, + 0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e, + 0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x46,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74, + 0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x61,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x58,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0, + 0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65, + 0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e, + 0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32, + 0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d, + 0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0, + 0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c, + 0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65, + 0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x69,0x0,0xe0,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76, + 0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69, + 0x0,0xf9,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x69, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29, + 0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x56,0x0,0x75,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x72,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x61,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x61, + 0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4e,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0xf9,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68, + 0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20, + 0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x45,0x0, + 0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45, + 0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x41,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f, + 0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x41,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0, + 0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x41,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x46, + 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x73,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x45,0x0,0x72,0x0,0x72, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x49,0x0,0x6d, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x29,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57, + 0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0, + 0x73,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46, + 0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72, + 0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72, + 0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44, + 0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46, + 0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0, + 0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0, + 0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x49,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x6f,0x0, + 0x6d,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61, + 0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d, + 0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20, + 0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0, + 0x66,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x4d, + 0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x68, + 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65, + 0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x67,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79, + 0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6c,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0xf9, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa6,0x0,0x4c,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x25,0x0, + 0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x69,0x0,0x61, + 0x0,0x76,0x0,0x76,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x54,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50, + 0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x45,0x0,0x73,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67, + 0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0, + 0x63,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49, + 0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61, + 0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x68,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63, + 0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73, + 0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6a,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0xe0,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x73,0x0, + 0x63,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44, + 0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x6e,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x6f,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x50,0x0,0x69, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x64,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x14,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6d, + 0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75, + 0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64, + 0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f, + 0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20, + 0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20, + 0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50, + 0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc2,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x68,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x67,0x0, + 0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x69, + 0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e, + 0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73, + 0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x52,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4e,0x0,0x75,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4e,0x0, + 0x65,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x75,0x0, + 0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x4e,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x69,0x0,0xf9,0x0,0x20,0x0,0x61,0x0,0x63, + 0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41,0x0,0x63,0x0,0x63,0x0,0x65,0x0, + 0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc0,0x0,0x4e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x55,0x0,0x74,0x0, + 0x69,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f, + 0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53, + 0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69, + 0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x6f, + 0x0,0x76,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f, + 0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x6f,0x0,0x76,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x4d,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0, + 0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0, + 0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6c,0x0,0x4c,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0, + 0x63,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20, + 0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74, + 0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x53,0x0,0x6f,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x73,0x0, + 0x65,0x0,0x63,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65, + 0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x70,0x0, + 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28, + 0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x7a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x6d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x43,0x0,0x61,0x0, + 0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73, + 0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x55,0x0,0x73,0x0,0x61,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0, + 0x69,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x72,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72, + 0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73, + 0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x52,0x0,0x26,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x7a,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26, + 0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20, + 0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69, + 0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0, + 0x26,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x52,0x0,0x69,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x70,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x69,0x0,0x61,0x0,0x76,0x0,0x76,0x0, + 0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x52,0x0, + 0x69,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x63,0x0, + 0x75,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63, + 0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x61, + 0x0,0x6c,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x53,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x26,0x0, + 0x70,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x53, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x76,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x42,0x0,0x6c,0x0,0x6f, + 0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x63, + 0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x75, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69, + 0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x47,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75, + 0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x5c,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x69, + 0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x53,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79, + 0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x56,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x63,0x0,0x69,0x0,0x74,0x0,0xe0,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x2e,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x70,0x0, + 0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x6c,0x0, + 0x73,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x75,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x36, + 0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f, + 0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x70,0x0,0x75,0x0, + 0x6c,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66, + 0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73, + 0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x66,0x0, + 0x6f,0x0,0x74,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65, + 0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x49,0x0, + 0x44,0x0,0x45,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x69,0x0, + 0x61,0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x74,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x72,0x0, + 0xe0,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6d,0x0,0x75,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x20,0x0, + 0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x49,0x0,0x6c,0x0,0x20,0x0, + 0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0xe0,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x76,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0, + 0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x69,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c, + 0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20, + 0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75, + 0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x46,0x0,0x51,0x0,0x75,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x62,0x0,0x62,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0, + 0x67,0x0,0x6e,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0, + 0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x6c,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x66,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x7a,0x0,0x69,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x75,0x0,0xf2,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x63,0x0, + 0x63,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x56,0x0,0x75,0x0,0x6f,0x0,0x69,0x0,0x20,0x0, + 0x61,0x0,0x67,0x0,0x67,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x61,0x0, + 0x72,0x0,0x63,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x51,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x76,0x0,0x76,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0xe0,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74, + 0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0, + 0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72, + 0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0,0x69,0x0,0x6e, + 0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61, + 0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x6c,0x0,0x27,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68, + 0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72, + 0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x53,0x0,0x42, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x49,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0, + 0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x49,0x0,0x6d, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0xe8,0x0,0x20, + 0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x67,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x69,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x55,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x69,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x26,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72, + 0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48, + 0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x1e,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x63,0x0,0x68,0x0,0x65, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0xe8,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x61, + 0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f, + 0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x68,0x0,0x65,0x0,0x7a,0x0, + 0x7a,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72, + 0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x70,0x0, + 0x69,0x0,0xf9,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0, + 0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x60,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x7a,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61, + 0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25, + 0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30, + 0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x55, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x49,0x0,0x6d,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0, + 0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32, + 0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_es-ES.qm + 0x0,0x0,0x95,0x29, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0x93,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0xd3,0x0,0x0,0x0,0x53,0x0,0x0,0x6a,0xd0,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x8c,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0x5d,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x56,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x36,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x79,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x25,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb5,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x3c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x84,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xcc,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xea,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x54,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x34,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x52,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x5b,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x6d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4d,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xaa,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xc2,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x72,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x43,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x2a,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x41,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xd1,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0x9c,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x53,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0xbf,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6a,0xe8,0x0,0x5,0x98,0xc5,0x0,0x0,0x6b,0xcc,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0x63,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x63,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0xb0,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xe9,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x6b,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x71,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x6b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xf2,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xa4,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0x1b,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x70,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x31,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xb6,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0xff,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0x4f,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0xb3,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6f,0xe2,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0xf3,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0x84,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xf9,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x9c,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0x71,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x52,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xab,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x33,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0x9e,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x2d,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x77,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0x86,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x5a,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xf2,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x17,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x54,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x5d,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0xbe,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0x6c,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xa3,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x3f,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0xe6,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0xe9,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0x71,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x91,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0xf4,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x67,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x63,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x48,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0x90,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x73,0xe,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x2c,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x97,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x32,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xcd,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x36,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x37,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0x8d,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0xcd,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x4b,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xb6,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xb9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x11,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x48,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x44,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xfe,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0xcb,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x6e,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x88,0x1d,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xda,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x49,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0xc8,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xae,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0xd5,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0x9b,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0x9b,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0xc2,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x1b,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0xfa,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xe6,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x3,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xa7,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x22,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0xa,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0xdc,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0x49,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5a,0xcd,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x5f,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x78,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x2e,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x70,0xe4,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0x9a,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x57,0xac,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0x8d,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0xef,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x19,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0xdc,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x18,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0xef,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x3,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0xa1,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0x86,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0xc8,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x57,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x68,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0x93,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x5,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x18,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xb0,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x9f,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xce,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x41,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0x28,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xa4,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0xe7,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xdb,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0x4a,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0x84,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0xe6,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x9f,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x61,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xea,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0xaa,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x20,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xf9,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0x86,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0x24,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0x9e,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0xb3,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x37,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xdf,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x1c,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0xd8,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x16,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x45,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0xfc,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x3f,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x43,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0x88,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xdc,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0xe7,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x95,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xc,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0xe3,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xc8,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0x87,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x89,0x6,0x19,0x20,0x43,0x0,0x0,0x6b,0xf3,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xaa,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x47,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x78,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xbb,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0xd6,0x6,0x6c,0xb8,0x3,0x0,0x0,0x82,0x2,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0xef,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0x97,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x60,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x9d,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xe9,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xb9,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0xc2,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0xfc,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0x4e,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xfc,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xb0,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x2e,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xe4,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xb6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x26,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xab,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0xc0,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x8c,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x35,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x3b,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x90,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x2c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0x56,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0xb,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0xc5,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x44,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x37,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0x93,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x33,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0xc3,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xe2,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0x83,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0xee,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0x9f,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xdf,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x55,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0xb3,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6e,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9e,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x73,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xb6,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x67,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x64,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x9,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0xb2,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xe3,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xf9,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xd4,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x4,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x23,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xd1,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x7b,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0xa8,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xa1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x5b,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0xfd,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0x91,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0xc7,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x9,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x96,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x52,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x2f,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0x9f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x63,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0xb0,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x85,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xc5,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x5,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x45,0x9,0x4e,0xde,0x64,0x0,0x0,0x7e,0x5,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0xcb,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x43,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0xe9,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x8b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xa5,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x12,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x43,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x73,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xa3,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xd3,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x5a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x7f,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa2,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x91,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x1f,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x8b,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0xac,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x41,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xfb,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x39,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0xf6,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xbd,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xaa,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xf9,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xf2,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x5d,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x5,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x52,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x81,0x4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6c,0xd2,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x62,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x7d,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x32,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0xb,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xcb,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xaf,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xc8,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x29,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xb8,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0xfa,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x93,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x2c,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x55,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0x7c,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x1e,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x16,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0xe9,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x18,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x9b,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x89,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x1,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xcf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xa3,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x8,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x3b,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x1f,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0x70,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0x52,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0xf,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xfd,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x9b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x62,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x57,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x6,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x85,0xc,0x48,0x83,0xde, + 0x0,0x0,0x66,0x3,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x5b,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x5f,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x4e,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x66,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x7c,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xc3,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xbf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x1c,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0xf6,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6e,0xf1,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x58,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0x94,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x82,0x38,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x2f,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x94,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x3c,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x12,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x84,0xe,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x67,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x85,0x34,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0xc5,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x7d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0xe3,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x54,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x49,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xca,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x46,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x86,0x11,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0xe6,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x85,0xa,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x66,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xad,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x4e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xd4,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0x91,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x17,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x37,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0xf3,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x44,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xd8,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xc1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x52,0xe,0xbe,0x61,0x81,0x0,0x0,0x6d,0xf9,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x37,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0x75,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xb3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x11,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x15,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xfe,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x87,0x28,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xed,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x42,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xb4,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0xc3,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x38,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x73,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x67,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5f,0xee,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0xeb,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x43,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0xf,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x53,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xc9,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x59,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0x50,0xf,0x74,0xd,0xca, + 0x0,0x0,0x68,0xec,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x54,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x18,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xdf,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x67,0xf8,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x52,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0x78,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0xfe,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0xbb,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x41,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xa9,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x8b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x62,0x7,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x4d,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x93,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xd9,0x69,0x0,0x0,0x88, + 0x47,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x68,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20, + 0x0,0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0xe1, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74, + 0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20, + 0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73, + 0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73, + 0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25, + 0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68, + 0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26, + 0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0xc1,0x0,0x6d,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d, + 0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x46,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x66,0x0,0x6f,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20, + 0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x44,0x0,0x6f, + 0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61, + 0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x41, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0xe1, + 0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72, + 0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0, + 0x70,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0, + 0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0, + 0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x52, + 0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65, + 0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x41,0x0,0x79,0x0,0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x4f,0x0,0x63,0x0,0x75,0x0, + 0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0, + 0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x26,0x0,0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0, + 0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26, + 0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65, + 0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x61, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e, + 0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x4d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6c,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x4d,0x0,0xe1,0x0,0x73,0x0,0x20,0x0, + 0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4e,0x0,0x75, + 0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4e, + 0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61, + 0x0,0x75,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0, + 0x75,0x0,0x63,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0, + 0x47,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x45,0x0,0x26,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x45,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65, + 0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x43, + 0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20,0x0,0x69,0x0,0x7a,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53, + 0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x26,0x0,0x50,0x0,0xed,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x63,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x2e,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71, + 0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0, + 0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x48,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56, + 0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26, + 0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x26,0x0,0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x28,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x76,0x0, + 0x61,0x0,0x63,0x0,0xed,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32, + 0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x31,0x0,0x2e,0x0,0x35,0x0, + 0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65, + 0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31, + 0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x7a,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x75, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x6e, + 0x0,0x67,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6a, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x65, + 0x0,0x78,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x6c, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x50,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x41,0x0, + 0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41, + 0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0, + 0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x41,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x41,0x0,0xf1,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x75,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x41,0x0,0xf1,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x20, + 0x0,0x4e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65, + 0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0,0x64,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0, + 0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xca,0x0,0x55, + 0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x72, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0xfc, + 0x0,0x6f,0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c, + 0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33, + 0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x79,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x79,0x0,0x20, + 0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x4c,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62, + 0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66, + 0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa, + 0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47, + 0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c, + 0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61, + 0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43, + 0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64, + 0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e, + 0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61, + 0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64, + 0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79, + 0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c, + 0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77, + 0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c, + 0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d, + 0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69, + 0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e, + 0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa, + 0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f, + 0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73, + 0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b, + 0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e, + 0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73, + 0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73, + 0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61, + 0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65, + 0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61, + 0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45, + 0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d, + 0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x54,0x0,0xbf,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x69,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xac,0x0,0xbf, + 0x0,0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67, + 0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72, + 0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0, + 0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0, + 0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41, + 0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0, + 0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0, + 0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x61,0x0,0x73,0x0, + 0x69,0x0,0x63,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e, + 0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c, + 0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52, + 0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0, + 0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x2, + 0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43, + 0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50, + 0x0,0x55,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x6c, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20, + 0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62, + 0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64, + 0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa, + 0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70, + 0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73, + 0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20, + 0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d, + 0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f, + 0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69, + 0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42, + 0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66, + 0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67, + 0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20, + 0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e, + 0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69, + 0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65, + 0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43, + 0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0,0x72,0x0, + 0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a, + 0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x43, + 0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x26, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x68,0x0,0x65,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x48,0x0, + 0x61,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74, + 0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64, + 0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x68,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72, + 0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0, + 0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x68, + 0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61, + 0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x65, + 0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x31, + 0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0,0xed,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0, + 0xbf,0x0,0x51,0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x67,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x6f, + 0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x61,0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x6e,0x0,0xe1,0x0,0x6d,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61, + 0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0, + 0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0xe1,0x0,0x6d,0x0, + 0x69,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0, + 0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e, + 0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e, + 0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x45,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x45, + 0x0,0x26,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x45,0x0,0x26,0x0,0x78,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45, + 0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x26,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74, + 0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x68,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0, + 0x6c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x54,0x0,0x65, + 0x0,0x72,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x45,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e, + 0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48, + 0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x53, + 0x0,0xf3,0x0,0x6c,0x0,0x6f,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70, + 0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x26,0x0,0x6f, + 0x0,0x72,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33, + 0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68, + 0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x60,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x49,0x0,0x6e,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0xe1,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x45,0x0,0x72, + 0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61, + 0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x41,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0, + 0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0, + 0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x26,0x0,0x4d, + 0x0,0xe9,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76, + 0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28, + 0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f, + 0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x61,0x0,0x6e,0x0, + 0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6a,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20, + 0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62, + 0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20, + 0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x9c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f, + 0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74, + 0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61, + 0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x44,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x45,0x0,0x71,0x0,0x75,0x0, + 0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77, + 0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61, + 0x0,0x62,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x6f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x6e,0x0,0x73,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4f, + 0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26, + 0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70, + 0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75, + 0x0,0x67,0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69, + 0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4a,0x0, + 0x75,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46, + 0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0, + 0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67, + 0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x42,0x0,0x6c,0x0,0x6f, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d, + 0x0,0x61,0x0,0xf1,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0, + 0x4e,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d, + 0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x4d,0x0,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x4d, + 0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xfe,0x0,0x4c,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x66, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x6e, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73, + 0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xca,0x0,0x41,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0xfa,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c, + 0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c, + 0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61, + 0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x41,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0xfa,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0xed,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x41,0x0,0x73,0x0,0x65,0x0,0x67, + 0x0,0xfa,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d, + 0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0, + 0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f, + 0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x68, + 0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65, + 0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x53,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x52,0x0,0x61,0x0,0x74,0x0,0xf3,0x0, + 0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75, + 0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x52, + 0x0,0x65,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65, + 0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x41,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4e,0x0,0x75,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4e,0x0,0x75, + 0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xe1,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6f, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x63, + 0x0,0x65,0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x4f,0x0,0x66,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0, + 0x4f,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e, + 0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xb0,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0, + 0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0, + 0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0, + 0x20,0x0,0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x65,0x0, + 0x20,0x0,0x6f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f, + 0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x4f,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69, + 0x0,0x63,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4f,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xed,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0, + 0x6f,0x0,0x64,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x20,0x0,0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6a,0x0, + 0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61, + 0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x64,0x0,0x4c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6d,0x0, + 0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0, + 0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x6a,0x0,0x6f,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0, + 0x63,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65, + 0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0, + 0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x61,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74, + 0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6e,0x0, + 0x20,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x79,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28, + 0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0, + 0x75,0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x53,0x0, + 0x75,0x0,0x70,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50, + 0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x75, + 0x0,0x6c,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73, + 0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x50,0x0,0x75,0x0,0x6c,0x0, + 0x73,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0x6f,0x0, + 0x6c,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, + 0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x50,0x0,0x75,0x0, + 0x6c,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x62,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50, + 0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d, + 0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x50,0x0,0x75,0x0,0x6c,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69, + 0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x6e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65, + 0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43, + 0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79, + 0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x52,0x0,0x65, + 0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20,0x0,0x79,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42, + 0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50, + 0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50, + 0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d, + 0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0, + 0x65,0x0,0x26,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x62,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x79,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x65,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x65,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x65,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x6a,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x0, + 0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d, + 0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53, + 0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20, + 0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26, + 0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x47,0x0,0x75,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x53,0x0,0x61,0x0,0x6c,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0, + 0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73, + 0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67, + 0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x65,0x0,0x63,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65, + 0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x69,0x0,0x6d,0x0,0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x62, + 0x0,0x61,0x0,0x6a,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x50,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53, + 0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0xf1,0x0,0x6f,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f, + 0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x42,0x0,0x6c, + 0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0xf1,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f, + 0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x47,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0, + 0x61,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64, + 0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x61,0x0,0x72, + 0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x32, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54, + 0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65, + 0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x44,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69, + 0x0,0x70,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e, + 0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x45,0x0,0x26,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79, + 0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x65,0x0,0x6c,0x0, + 0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0, + 0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x32,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0xe1,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62, + 0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4d,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x38,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67, + 0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x66, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75, + 0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x54,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x63,0x0,0x26,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54, + 0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9, + 0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x6a,0x0,0x65,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x54,0x0, + 0x65,0x0,0x72,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x4c,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0xe1,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x90,0x0,0x45,0x0,0x6c,0x0,0x20,0x0, + 0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0xbf,0x0, + 0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x73,0x0, + 0x61,0x0,0x72,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x2,0x8,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0xf3,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x75,0x0,0xe9,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0xa,0x0, + 0xa,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x69,0x0,0xe9,0x0,0x6e,0x0, + 0x20,0x0,0x70,0x0,0x75,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6f,0x0, + 0x63,0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0xe1,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x66,0x0, + 0x75,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x76,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x73,0x0, + 0x2c,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0xf3,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0xbf,0x0,0x51,0x0, + 0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x74,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f, + 0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c, + 0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69, + 0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74, + 0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65, + 0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x78,0x0,0x53,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0xe1, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73, + 0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x6e, + 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73, + 0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0, + 0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72, + 0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x54,0x0, + 0x65,0x0,0x6d,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x54,0x0, + 0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0xfa,0x0,0x6e, + 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x55,0x0,0x53,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x49,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x2c,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20, + 0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75, + 0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x52,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0xe9,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20, + 0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x55,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65, + 0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0,0x54,0x0,0x69,0x0, + 0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x56,0x0, + 0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x72,0x0,0x63,0x0,0x68, + 0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x22,0x0,0x4c, + 0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6a,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d, + 0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6d,0x0,0x62, + 0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6a, + 0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20, + 0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20, + 0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20, + 0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65, + 0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72, + 0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0, + 0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0xa1,0x0,0x42,0x0, + 0x69,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c, + 0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41,0x0,0x6e,0x0,0x63,0x0, + 0x68,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57, + 0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x58,0x0,0x47,0x0,0x41, + 0x0,0x20,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x70,0x0,0x68,0x0,0x69,0x0,0x63, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0, + 0x6d,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0xe1,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0, + 0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32, + 0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_cs-CZ.qm + 0x0,0x0,0x91,0xc7, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x27,0x8d,0x0,0x0,0x0,0x48, + 0x0,0x0,0x45,0xd9,0x0,0x0,0x0,0x53,0x0,0x0,0x68,0x46,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x6c,0x0,0x0,0x4,0xf2,0x0,0x0,0x4f,0x2f,0x0,0x0,0x5,0x12, + 0x0,0x0,0x51,0x24,0x0,0x0,0x5,0x3b,0x0,0x0,0x5b,0xde,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5c,0x19,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x5,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x4d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x95,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xd4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x1c,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x64,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xac,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xca,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0x3a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4b,0x26,0x0,0x0,0x4d,0x85,0x0,0x0,0x4b,0x44,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5b,0xf9,0x0,0x0,0x5d,0x81,0x0,0x0,0x81,0xfd,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x47,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xb3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x28,0x0,0x4,0x8c,0xaf,0x0,0x0,0x25,0xa4,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0x62,0x0,0x4,0xa7,0x89,0x0,0x0,0x3b,0xf5,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x40,0xd0,0x0,0x4,0xc8,0xa4,0x0,0x0,0x42,0xd,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x3f,0x75,0x0,0x4,0xd0,0x25,0x0,0x0,0x42,0x6e,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x45,0x53,0x0,0x5,0x56,0x45,0x0,0x0,0x5b,0x6f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x68,0x5e,0x0,0x5,0x98,0xc5,0x0,0x0,0x69,0x42,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6c,0xc9,0x0,0x5,0xc0,0x65,0x0,0x0,0x79,0xaf,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x4,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x3d,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xe1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x43,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x41,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x35,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0x70,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x14,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7c,0x9b,0x0,0x3b,0xa9,0x68,0x0,0x0,0x19,0xc4,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1c,0x7d,0x0,0x4c,0x99,0x62,0x0,0x0,0x3e,0x4c,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x35,0x3,0x0,0x58,0xc9,0xc4,0x0,0x0,0x67,0xe7,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x6f,0x9b,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6d,0x3e,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x79,0x4d,0x0,0x5c,0x6,0x8a,0x0,0x0,0x79,0xce,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x84,0x97,0x0,0x73,0x75,0x3e,0x0,0x0,0x33,0xb0,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5b,0xd,0x0,0x97,0x96,0x4,0x0,0x0,0x36,0x48,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4d,0x69,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x4e,0xff,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x48,0xb6,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5d,0xc5,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x18,0xcb,0x1,0x9,0x1c,0x92,0x0,0x0,0x40,0x40,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2a,0x5a,0x1,0x39,0xa4,0xce,0x0,0x0,0x57,0xae,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x79,0x71,0x1,0x4c,0x50,0xee,0x0,0x0,0x65,0xda,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x48,0x75,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x34,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x77,0xf0,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3a,0x55,0x1,0x91,0xe,0x73, + 0x0,0x0,0x28,0x35,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4a,0xda,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x52,0xb5,0x1,0xb0,0x47,0x5c,0x0,0x0,0x51,0x3f,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x6f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x3f,0x9c,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x3f,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x31,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x30,0xc6,0x1,0xe6,0x0,0xe9,0x0,0x0,0x69,0x6,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x6f,0xf2,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0xc,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x71,0x87,0x2,0x23,0x3c,0x6b,0x0,0x0,0x71,0x1a,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x70,0xad,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0x8a,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4a,0x47,0x2,0x78,0x48,0x1a,0x0,0x0,0x52,0x7b,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x82,0x5d,0x2,0x90,0x8d,0x12,0x0,0x0,0x40,0xff,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5e,0x50,0x2,0xad,0x4a,0x22,0x0,0x0,0x66,0x41,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xed,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x1a,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x4,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0x88,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x49,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5e,0x6,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x84,0xbb,0x3,0x5,0x38,0xb2,0x0,0x0,0x3e,0x70,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x61,0xe5,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x38,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x10,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x37,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x51,0x69,0x3,0x65,0x26,0xf2,0x0,0x0,0x17,0xef,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x16,0x3,0x6a,0x66,0x2e,0x0,0x0,0x55,0xeb,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x53,0xb8,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xc0,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x2f,0x95,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x87,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0x76,0x3,0xa4,0x35,0xa5,0x0,0x0,0x40,0xb0,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x40,0x82,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0x9d,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x58,0x85,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x70,0x3d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x6e,0xa2,0x3,0xe4,0x25,0x5a,0x0,0x0,0x6e,0x60,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6e,0x1e,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6d,0xdc,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xe8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x55,0x82,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x16,0xe1,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0x5f,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0x89,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x30,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xf0,0x4,0x31,0xff,0xe9,0x0,0x0,0x25,0xd3,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x29,0x3,0x4,0x51,0x79,0xb1,0x0,0x0,0x72,0x79,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7a,0xee,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0x0,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6d,0xa1,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3b,0x22,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3b,0x4d,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x33,0x2f,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2e,0xbe,0x4,0xb8,0x1,0x2e,0x0,0x0,0x37,0x9c,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x69,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xc8,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0x95,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x59,0xd0,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x32,0x8,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x3b,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0x29,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x59,0xf2,0x4,0xeb,0x2f,0xa,0x0,0x0,0x50,0x56,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x49,0xf8,0x5,0x18,0x5,0x95,0x0,0x0,0x7d,0x17,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x15,0xb5,0x5,0x30,0xd3,0xe,0x0,0x0,0x39,0x9c,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x59,0xad,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x83,0x3e,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0xe0,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3b,0xa5,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6c,0xee,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x53,0xe2,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x79,0x0,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x73,0x83,0x5,0xa5,0x3a,0x79,0x0,0x0,0x26,0x1b,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x6f,0xc5,0x5,0xb2,0x16,0x79,0x0,0x0,0x66,0xae,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x46,0xd2,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0x30,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3d,0xe3,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0x5e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xbd,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xb3,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4a,0x8a,0x5,0xc1,0x4d,0x83,0x0,0x0,0x36,0xca,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x80,0x4f,0x5,0xd0,0x4f,0x11,0x0,0x0,0x81,0x1d,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xda,0x5,0xdf,0xba,0xba,0x0,0x0,0x81,0x75,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x65,0x60,0x6,0x7,0xd3,0xda,0x0,0x0,0x4c,0x71,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x36,0x73,0x6,0x19,0x20,0x43,0x0,0x0,0x69,0x67,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x39,0x66,0x6,0x38,0x9f,0x35,0x0,0x0,0x37,0x3d,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1e,0xc0,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x9f,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x32,0x36,0x6,0x6c,0xb8,0x3,0x0,0x0,0x7e,0x72,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x49,0x3,0x6,0x74,0xe,0x6a,0x0,0x0,0x5f,0x19,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x49,0x70,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1c,0xe9,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3c,0x9b,0x6,0x81,0xb7,0x1f,0x0,0x0,0x38,0x8f,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x6e,0xe4,0x6,0x96,0xa4,0x13,0x0,0x0,0x43,0xe0,0x6,0x97,0x71,0x79, + 0x0,0x0,0x68,0xc4,0x6,0xc3,0xce,0xa3,0x0,0x0,0x71,0xf4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x44,0x8e,0x6,0xed,0xca,0xce,0x0,0x0,0x46,0x2c,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xd2,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x9c,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x49,0x38,0x7,0x0,0x57,0x53,0x0,0x0,0x27,0xa5,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x53,0x88,0x7,0x6,0x93,0xe3,0x0,0x0,0x84,0x22,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0x79,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x25,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1d,0xde,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6c,0x8e,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x59,0xa,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4b,0xf5,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x61,0x5b,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0x98,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x31,0xab,0x7,0x58,0x61,0xe5,0x0,0x0,0x49,0xa1,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xb5,0x7,0x70,0xb3,0xaa,0x0,0x0,0x42,0x93,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2e,0x8e,0x7,0x9e,0x50,0x1e,0x0,0x0,0x68,0x13,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x55,0xbe,0x7,0xa3,0x63,0x9e,0x0,0x0,0x67,0x29,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5c,0x83,0x7,0xa4,0x32,0x89,0x0,0x0,0x1c,0xa1,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x7e,0x2b,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x68,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x98,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0x57,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x63,0x24,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x62,0xcb,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3c,0x16,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x68,0x7f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4b,0xa4,0x8,0x0,0x3f,0x29,0x0,0x0,0x62,0x55,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x58,0xad,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0x9a,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x50,0xcc,0x8,0x60,0xe7,0xcd,0x0,0x0,0x78,0x85,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x5f,0x4b,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x5f,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x79,0xf0,0x8,0x9b,0xc,0x24,0x0,0x0,0x6a,0xe5,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4e,0xf,0x8,0xa3,0xdb,0xae,0x0,0x0,0x4e,0xc3,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4e,0x4b,0x8,0xa4,0xb,0xae,0x0,0x0,0x4e,0x87,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3a,0xc3,0x8,0xa9,0xcf,0x35,0x0,0x0,0x30,0x22,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x3e,0xe6,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x23,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3d,0x43,0x8,0xf7,0xb3,0xda,0x0,0x0,0x44,0x43,0x9,0x9,0x24,0x29, + 0x0,0x0,0x50,0x80,0x9,0x49,0xfa,0x4a,0x0,0x0,0x32,0xcb,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x32,0xfd,0x9,0x49,0xfa,0x6a,0x0,0x0,0x32,0x67,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x32,0x99,0x9,0x4e,0xde,0x64,0x0,0x0,0x7a,0x53,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5a,0x6b,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x23,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x3d,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x6b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x64,0x31,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xf2,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2e,0xe5,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0x11,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x2f,0x3d,0x9,0x88,0x63,0x3a,0x0,0x0,0x2f,0x69,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x3a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x5f,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x82,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5a,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x60,0xa7,0x9,0xc2,0x33,0xa9,0x0,0x0,0x15,0xdf,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x59,0x68,0x9,0xd5,0x43,0xd3,0x0,0x0,0x34,0x4b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xa5,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xd7,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3d,0x94,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x89,0xa,0x41,0x77,0x3, + 0x0,0x0,0x43,0x78,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0x25,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x44,0xde,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3d,0x7,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4d,0xbd,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x2e,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x7d,0x82,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6a,0x32,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x72,0x3a,0xa,0x98,0x1f,0x89,0x0,0x0,0x35,0x7f,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x35,0x34,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4c,0xe1,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x34,0xd1,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xa5,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x35,0xca,0xa,0xda,0x50,0x7e,0x0,0x0,0x7b,0xb1,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x86,0xa,0xea,0x46,0xf4,0x0,0x0,0x5a,0x9d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x35,0xf4,0xb,0xa,0x72,0xc9,0x0,0x0,0x38,0x69,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x10,0xb,0x1e,0xee,0xfe,0x0,0x0,0x57,0xb,0xb,0x29,0x70,0x65, + 0x0,0x0,0x45,0x7c,0xb,0x30,0x4b,0xa2,0x0,0x0,0xb,0xec,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xd8,0xb,0x4e,0x19,0x54,0x0,0x0,0x51,0xb7,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xd,0xda,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x6d,0xb,0x95,0xed,0xa, + 0x0,0x0,0x53,0x37,0xb,0x9d,0xe,0xa2,0x0,0x0,0x31,0x75,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1b,0xfb,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6a,0x5,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6d,0x60,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x24,0x8d,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x47,0x17,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4b,0x62,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x83,0xe6,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x61,0x93,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x72,0xdf,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x5f,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x22,0xc,0x33,0xeb,0xe2,0x0,0x0,0x73,0x39,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x42,0xce,0xc,0x42,0x70,0xde,0x0,0x0,0x28,0x7b,0xc,0x48,0x83,0xde, + 0x0,0x0,0x63,0x77,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4d,0x23,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x74,0xff,0xc,0x77,0x67,0x19,0x0,0x0,0x43,0x14,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x39,0x2a,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x54,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x30,0x4b,0xc,0x90,0x26,0xb5,0x0,0x0,0x7c,0x3d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5e,0xb0,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x27,0xf0,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6c,0x5f,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x4e,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5c,0x38,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x7e,0xa6,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x62,0x99,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x19,0xe8,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1d,0x8c,0xd,0x11,0x45,0x1a,0x0,0x0,0x26,0xfc,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x80,0x7a,0xd,0x4a,0x90,0xb2,0x0,0x0,0x66,0xf9,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x81,0xc6,0xd,0x60,0xef,0x6a,0x0,0x0,0x4c,0xa3,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x34,0x87,0xd,0x77,0xa4,0xc0,0x0,0x0,0x41,0x8b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x38,0x2c,0xd,0x88,0x48,0x23,0x0,0x0,0x2f,0xdd,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3b,0x78,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x20,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x82,0x9f,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5b,0x92,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x81,0x9c,0xe,0x20,0x13,0x12,0x0,0x0,0x42,0x32,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x31,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0x4e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x29,0xd4,0xe,0x48,0xfd,0xca,0x0,0x0,0x29,0x91,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2a,0x17,0xe,0x62,0x79,0x4,0x0,0x0,0x38,0xf5,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0x3d,0xe,0x7b,0xa1,0x23,0x0,0x0,0x52,0xf2,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x31,0x4c,0xe,0x98,0x18,0x54,0x0,0x0,0x26,0xb1,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x64,0xea,0xe,0xbe,0x61,0x81,0x0,0x0,0x6b,0x4f,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6b,0x93,0xe,0xbe,0x61,0x83,0x0,0x0,0x6b,0xd7,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6c,0x1b,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4a,0x1f,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0x8f,0xe,0xe2,0x34,0x60,0x0,0x0,0x83,0x92,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x83,0xbc,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xc7,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x8,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x6a,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x84,0x61,0xf,0x15,0xf4,0x85,0x0,0x0,0x4c,0x28,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x74,0x35,0xf,0x17,0x9c,0x64,0x0,0x0,0x7d,0xdf,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5d,0x86,0xf,0x29,0x4d,0x2a,0x0,0x0,0x45,0xf1,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x3f,0xfd,0xf,0x30,0x6b,0x3,0x0,0x0,0x30,0x91,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x6f,0x4d,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0x99,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x12,0xdf,0xf,0x70,0xaa,0x1a,0x0,0x0,0x80,0xe2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x66,0x78,0xf,0x85,0x7b,0xea,0x0,0x0,0x5e,0xdc,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0x9e,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0x9d,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x65,0x8c,0xf,0xd3,0x41,0x72,0x0,0x0,0x3a,0x8,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x4f,0x4a,0xf,0xd9,0x8c,0xca,0x0,0x0,0x4f,0xd0,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x4f,0x8d,0xf,0xd9,0x8f,0xca,0x0,0x0,0x50,0x13,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3c,0x5b,0xf,0xe2,0xe9,0x49,0x0,0x0,0x82,0x1b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x5f,0x8f,0xf,0xf5,0xeb,0x52,0x0,0x0,0x5f,0xd5,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x60,0x1b,0xf,0xf5,0xeb,0x54,0x0,0x0,0x60,0x61,0x69,0x0,0x0,0x84, + 0xe5,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x74,0x1,0x59,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20,0x0,0x70, + 0x1,0x59,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x1,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x44, + 0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4a,0x0,0x61,0x0,0x6b,0x0,0xe9, + 0x0,0x6b,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x20, + 0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x75, + 0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x65,0x0,0x63,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x74, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x6e,0x0,0x75,0x0,0x20, + 0x0,0x62,0x0,0x75,0x0,0x64,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x1,0x7e,0x0,0x65,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62, + 0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66, + 0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e, + 0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50, + 0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67, + 0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70, + 0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62, + 0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25, + 0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4b, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x25,0x0,0x69,0x0, + 0x20,0x1,0xd,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x63,0x0,0xed,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x28,0x0,0x79,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x41,0x0,0x6b,0x0,0x63,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x4a,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62, + 0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x56,0x0,0x26,0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0, + 0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x70,0x1,0x59,0x0, + 0x69,0x0,0x20,0x0,0x7a,0x0,0x74,0x0,0x72,0x0,0xe1,0x0,0x74,0x1,0x1b,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x1,0x1b,0x1,0x59,0x0,0x65,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x72,0x1, + 0x6f,0x0,0x6d,0x1,0x1b,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x56,0x0, + 0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b, + 0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0,0xed,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x74,0x0,0x6f,0x1,0xd,0x0,0x69, + 0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6b,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0, + 0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x74, + 0x0,0xe1,0x0,0x68,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x26,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0xe1,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0, + 0x6b,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67, + 0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0, + 0x5a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20, + 0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0xe1,0x0,0x26,0x0, + 0x70,0x0,0x6f,0x0,0x76,0x1,0x1b,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0, + 0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x1,0x59,0x0,0xe1,0x0,0x64,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x65,0x0,0x6c,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20, + 0x1,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e, + 0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74, + 0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x76,0x0, + 0x72,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x61,0x0, + 0x72,0x0,0x76,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26, + 0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x26,0x0,0x4b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6e,0x0, + 0x69,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x79,0x1,0x7e,0x0,0x61,0x0, + 0x64,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0xe1,0x0,0x62,0x1, + 0x1b,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0xe1,0x0,0x72, + 0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x5a,0x0,0x74,0x0,0x69,0x1, + 0x61,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x4e,0x0,0x65,0x0,0x6a,0x0,0x62,0x0,0x6c,0x0,0x69,0x1,0x7e,0x1, + 0x61,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x26,0x0,0x6f, + 0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75,0x73,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x50,0x1, + 0x59,0x0,0x65,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x64,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x73,0x0,0x74,0x0,0xed,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x1,0x61,0x0,0x65,0x0,0x64,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79, + 0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x61, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63, + 0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26, + 0x0,0x4e,0x0,0x61,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65, + 0x0,0x64,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65, + 0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x26,0x0,0x4f,0x0,0x64,0x0,0x65,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x26,0x0,0x4d,0x1,0x1b,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x74,0x0, + 0x6f,0x1,0xd,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x26,0x0,0x7a,0x0,0x61,0x1,0xd,0x0,0xe1,0x0,0x74,0x0,0x65,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x50, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x76, + 0x0,0xfd,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20, + 0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53, + 0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x5a,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64, + 0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x26,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65, + 0x0,0x6e,0x0,0xed,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x5a,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0, + 0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x1,0x1b,0x0,0x72,0x0,0x20,0x0,0x73,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x53,0x0,0x79,0x0,0x6e,0x0, + 0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69, + 0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26, + 0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x41,0x0, + 0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x1,0x59,0x0,0xe1,0x0,0x64,0x0,0x6b,0x0, + 0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61, + 0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x5a,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x42,0x0,0xed,0x0,0x6c,0x0,0xe1,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69, + 0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x4e,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0, + 0x62,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x7a,0x0,0x76,0x1,0x1b,0x0,0x74,0x1, + 0x61,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x28,0x0,0x56,0x0,0xfd, + 0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20, + 0x0,0x73,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0xe9,0x0,0x6d,0x0,0x75,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x28,0x0,0x70,0x0,0x72,0x0,0xe1,0x0,0x7a,0x0, + 0x64,0x0,0x6e,0x0,0xe9,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0, + 0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26, + 0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31, + 0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32, + 0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x31,0x0,0x2e,0x0,0x35,0x0, + 0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xfd,0x0,0x6d,0x0,0x69,0x0, + 0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c, + 0x0,0xfd,0x0,0x6d,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e,0x0,0x2f, + 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62, + 0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0, + 0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20, + 0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39, + 0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e, + 0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31, + 0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67, + 0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47, + 0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0, + 0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x43,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x65,0x0,0x6c,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x1,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63, + 0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35, + 0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0, + 0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35, + 0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36, + 0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x52,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x6c,0x0,0x20,0x1,0x7e,0x0,0xe1, + 0x0,0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x1,0x7e, + 0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d, + 0x1,0x1b,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65, + 0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75, + 0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36, + 0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x22,0x0,0x3e,0x0,0x53,0x0,0x74,0x0,0xe1,0x0,0x68,0x0,0x6e,0x1,0x1b, + 0x0,0x74,0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x73, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x1,0x6f,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x75, + 0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x79, + 0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61, + 0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61, + 0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67, + 0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f, + 0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61, + 0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f, + 0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64, + 0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x56,0x0,0x79,0x0, + 0x70,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x6b,0x0, + 0x72,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20, + 0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x50,0x1,0x59,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0, + 0xed,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x50,0x1,0x59,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x52,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x1,0x59, + 0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f, + 0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x56,0x1,0x61,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x56,0x1,0x61,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x79,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x1,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x3,0xd4,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72, + 0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x1,0x6f,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x1,0x59,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69, + 0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61, + 0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c, + 0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35, + 0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20, + 0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f, + 0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20, + 0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65, + 0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f, + 0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74, + 0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x5a, + 0x0,0x76,0x0,0x65,0x1,0x59,0x0,0x65,0x0,0x6a,0x0,0x6e,0x1,0x1b,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x20,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x47,0x0,0x4e, + 0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63, + 0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x32, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x76,0x1,0x1b,0x0,0x6a,0x1,0x61,0x0,0xed,0x0,0x2e,0x0,0x20,0x0,0x56, + 0x0,0x69,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0xed, + 0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0xed,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20, + 0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73, + 0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e, + 0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72, + 0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20, + 0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20, + 0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77, + 0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e, + 0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a, + 0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20, + 0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65, + 0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42, + 0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63, + 0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34, + 0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b, + 0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20, + 0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69, + 0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e, + 0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20, + 0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f, + 0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61, + 0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f, + 0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74, + 0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e, + 0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65, + 0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e, + 0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20, + 0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e, + 0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f, + 0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3a,0x0,0x4f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x64,0x0, + 0x75,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73, + 0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20, + 0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76, + 0x0,0x64,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x5a,0x0, + 0xe1,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x5a,0x0,0x61,0x1,0xd,0x0,0xed,0x0, + 0x74,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x1,0x6f,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x62,0x1,0x1b,0x0,0x72,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x62,0x1,0x1b,0x0,0x72, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0, + 0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x50,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x68,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59, + 0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0, + 0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xae, + 0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x62,0x0,0x79,0x0,0x6c, + 0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x1,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x75, + 0x0,0x6d,0x0,0x6f,0x1,0x7e,0x1,0x48,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20, + 0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x62, + 0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x6e,0x0,0xfd,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xed, + 0x0,0x2e,0x0,0x20,0x0,0x4d,0x1,0x6f,0x1,0x7e,0x0,0x6f,0x0,0x75,0x0,0x20, + 0x0,0x76,0x1,0x61,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0xed, + 0x1,0x7e,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f, + 0x0,0x53,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f, + 0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x6d,0x0,0x20,0x0,0x73, + 0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6d, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x68,0x0,0x6f, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0xed,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0xe1, + 0x0,0x6c,0x0,0x6e,0x1,0x1b,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0xe1,0x0,0x6b,0x0,0x6f, + 0x0,0x6c,0x0,0x69,0x0,0x76,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0xe1,0x1,0x61, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68, + 0x0,0x79,0x0,0x62,0x0,0xe1,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x68,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0xfd,0x0,0x74,0x0,0x20, + 0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x76,0x1,0x59,0x0,0x65,0x0,0x6e,0x0,0x79, + 0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0, + 0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65, + 0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0, + 0xe9,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x76,0x0, + 0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x55, + 0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20, + 0x1,0xd,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x6f,0x0,0x62,0x0,0xed,0x0,0x6c, + 0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f, + 0x0,0x76,0x0,0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27, + 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, + 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x42,0x0, + 0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65, + 0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6d,0x0,0x79,0x1, + 0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4e, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50,0x0,0x6f, + 0x0,0x6b,0x0,0x72,0x0,0x61,0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e, + 0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x1,0x58,0x0, + 0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x1, + 0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x1,0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x1,0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x50,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x20,0x1, + 0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43, + 0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61, + 0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72, + 0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0, + 0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x28,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0xfd,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f, + 0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x56,0x0,0x6c,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0xed,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x79,0x0,0x6c,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x56,0x0,0xfd,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xed,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x52,0x0,0x6f,0x0,0x7a, + 0x0,0x64,0x0,0xed,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x56, + 0x0,0x79,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x74,0x0, + 0x76,0x0,0x6f,0x1,0x59,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40, + 0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x69,0x1,0x7e,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x70,0x1,0x59,0x0,0xed,0x0,0x6c,0x0,0x69,0x1,0x61,0x0,0x20,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f, + 0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x52,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x1,0x6f,0x1,0x7e,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x62,0x0,0xfd,0x0,0x74, + 0x0,0x20,0x0,0x76,0x1,0x1b,0x0,0x74,0x1,0x61,0x0,0xed,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x1,0x7e,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0, + 0x6e,0x0,0xed,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61, + 0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x65,0x0, + 0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0x61,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74, + 0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x4e,0x0,0x65,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x69,0x0,0x73, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x4e,0x0,0x65,0x0,0x7a,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0xe1, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0x7a,0x0,0x70,0x0,0x72,0x0,0xe1,0x0,0x76,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77, + 0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x44, + 0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd, + 0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79, + 0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x56,0x0,0x48,0x0, + 0x44,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0xed,0x0, + 0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73, + 0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4e,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53, + 0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x56,0x0,0x79,0x0,0x6a, + 0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x56,0x0,0x79,0x0,0x6a,0x0,0x6d,0x0,0x6f,0x0, + 0x75,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d, + 0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26, + 0x0,0x55,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x45,0x0,0x26,0x0, + 0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45, + 0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0, + 0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44, + 0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x1,0xc,0x0,0x61,0x0,0x73,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72, + 0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x6d,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44, + 0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x5a,0x0, + 0x61,0x0,0x70,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0, + 0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x5a,0x0,0x61,0x0,0x70,0x0, + 0x6e,0x0,0x75,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xed,0x0, + 0x73,0x0,0x74,0x0,0x6e,0x0,0xed,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x73,0x0,0x74,0x0, + 0x75,0x0,0x70,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x1, + 0x7e,0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0, + 0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0, + 0x76,0x0,0x6b,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45, + 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x43,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x43,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61, + 0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69, + 0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63, + 0x0,0x69,0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6b,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0xd,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x45,0x0,0x78, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0xed,0x0,0x63,0x0,0xed, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x7a, + 0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x29,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69, + 0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x55,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x1,0xd,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x34,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x72,0x1,0x7e,0x0,0x6f, + 0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6d,0x1,0x1b, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18, + 0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c, + 0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0, + 0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x1,0x59,0x0,0x61,0x0,0x64,0x0,0x69,0x1, + 0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73,0x0,0x79, + 0x0,0x6e,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d, + 0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x6f, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x61,0x1,0x59,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x73,0x0, + 0xed,0x1,0x65,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x58,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x1, + 0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0, + 0x6b,0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0x79,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74, + 0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x52,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0xfd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4b,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79, + 0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0xe1,0x0,0x7a,0x0, + 0x65,0x0,0x76,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0, + 0x72,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44, + 0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0x6f, + 0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68, + 0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69, + 0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76, + 0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe1, + 0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70, + 0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x69, + 0x0,0x63,0x0,0x6b,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x48,0x0,0x52,0x0,0x65,0x1,0x7e,0x0,0xed,0x0,0x6d,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x26,0x0,0x68,0x0,0x6e, + 0x0,0x75,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20, + 0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x5a,0x0,0x65,0x0,0x73,0x0, + 0xed,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x64,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6f,0x0,0x64,0x0,0x73,0x0,0x74, + 0x0,0xed,0x0,0x6e,0x0,0x79,0x0,0x20,0x1,0x61,0x0,0x65,0x0,0x64,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63, + 0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0, + 0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x1,0x58,0x0,0x61,0x0,0x64,0x0,0x69,0x1, + 0xd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x66,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72, + 0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x1,0x6f,0x1,0x7e,0x0,0x6f,0x0,0x75, + 0x0,0x20,0x0,0x62,0x0,0xfd,0x0,0x74,0x0,0x20,0x0,0x76,0x1,0x1b,0x0,0x74, + 0x1,0x61,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x65,0x1,0x7e,0x0,0x20,0x0,0x34, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20, + 0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xbe,0x0,0x4f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x75,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x58,0x0,0x20,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0xed,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x20,0x0,0x6a,0x0, + 0x69,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x1,0x7e,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6a,0x0, + 0x74,0x1,0x6f,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65, + 0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74, + 0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x65,0x0, + 0x76,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x76, + 0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x65,0x0,0x76,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x79,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50, + 0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0, + 0x6e,0x0,0xfd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x48, + 0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x56,0x0,0xfd,0x1,0x61,0x0,0x6b,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x1,0x60,0x0, + 0x26,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63, + 0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x53,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x6e, + 0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6a,0x1,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f, + 0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34, + 0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42, + 0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x1,0x61,0x0,0xed,0x1,0x59,0x0,0x65, + 0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x1,0x1b,0x0,0x74, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52, + 0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x5a, + 0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe1,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0x73,0x0,0x74,0x0,0x75,0x0, + 0x70,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59,0x0,0xed,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x56,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x76,0x1,0x1b,0x0,0x6e,0x0,0xfd,0x0,0x20,0x1,0x59,0x0, + 0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x4e,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x1, + 0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61, + 0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x6e,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0,0xed,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x5a,0x0,0x61,0x1,0x59,0x0, + 0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4a,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6b,0x0,0xe9, + 0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x55,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6b,0x0,0x6e,0x0,0x6f, + 0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x79, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x1,0x1b, + 0x0,0x72,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0, + 0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0, + 0x69,0x0,0x6b,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x65,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65, + 0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0,0x73,0x0, + 0x74,0x0,0x75,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0,0xfd,0x0,0x73,0x0,0x74,0x0,0x75,0x0, + 0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44, + 0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4d,0x0, + 0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x70,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50, + 0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x16,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed, + 0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x2c, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x1,0x7e, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x1,0x1b,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63, + 0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x22,0x0,0x2e,0x0,0x20, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x70, + 0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x65, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6f,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61, + 0x1,0xd,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xb0,0x0,0x55,0x0,0x6a,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x1b,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x69,0x0,0x6e,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0, + 0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0, + 0x76,0x0,0xe1,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0xed,0x1,0x65,0x0, + 0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x70,0x0, + 0x6f,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x73,0x0,0x20,0x0, + 0x6e,0x0,0xed,0x0,0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0xed,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20, + 0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68, + 0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20, + 0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65, + 0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x64,0x0,0x55,0x0,0x6a,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x1b,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x6a,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x6a,0x0, + 0x65,0x0,0x6a,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x1,0xd,0x0,0xed,0x0, + 0x73,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x88,0x0,0x55,0x0,0x6a,0x0,0x69,0x0,0x73,0x0,0x74,0x1,0x1b, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x2c,0x0,0x20,0x1,0x7e, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x6b,0x0,0x79,0x0,0x2c,0x0,0x20, + 0x0,0x6b,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x64,0x0,0xe1,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20, + 0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e, + 0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69, + 0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x61,0x0, + 0x6d,0x1,0x1b,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0, + 0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63, + 0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65, + 0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e, + 0x0,0x69,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x70,0x0,0xe1,0x0,0x6e, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43, + 0x0,0x69,0x0,0x74,0x0,0x6c,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0xed,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x4d,0x0,0x79,0x1,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0xed,0x1,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0xed,0x1,0x65,0x0,0x6f, + 0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74, + 0x0,0xe9,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x72,0x0, + 0x75,0x0,0x68,0x0,0x20,0x0,0x73,0x0,0xed,0x0,0x74,0x1,0x1b,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x46,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x1,0x7e,0x0,0xe1,0x0,0x64,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59,0x0, + 0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x79,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x1,0x7e,0x0,0xe1,0x0,0x64,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x1,0x7d,0x0,0x61,0x0,0x64,0x0,0x6e,0x0,0xe9,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x73,0x0,0x6e, + 0x1,0x1b,0x0,0x6a,0x1,0x61,0x0,0xed,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20, + 0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x56,0x0,0x79,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x5a,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28, + 0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e, + 0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa4,0x0,0x56,0x0,0x79,0x0,0x6b,0x0, + 0x72,0x0,0x65,0x0,0x73,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0x61,0x1,0xd,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x70,0x0,0x6f,0x0,0x64,0x0,0x61,0x1,0x59,0x0,0x69,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x2e,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0x69,0x0,0x6a,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x69,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x4f,0x0, + 0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4a,0x0,0x69, + 0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0xed,0x0,0x73,0x0,0x6c, + 0x0,0x75,0x1,0x61,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x76,0x0,0xed, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x44,0x0,0x61,0x0,0x6c,0x1,0x61,0x0,0xed, + 0x0,0x20,0x0,0x76,0x0,0x79,0x0,0x6d,0x1,0x1b,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0xe1,0x0,0x20,0x0,0x7a,0x0,0x61,0x1,0x59, + 0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x73, + 0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x7a,0x0,0x61, + 0x1,0x59,0x0,0xed,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x52,0x0,0x65,0x1,0x7e,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54, + 0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0xf3,0x0,0x64,0x0,0x79,0x0,0x20,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0, + 0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x1,0xc,0x0, + 0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x64,0x1,0x59,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0, + 0x6f,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x1,0x59,0x0, + 0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x73,0x0,0x6f,0x0,0x75,0x0,0x68,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0xed,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20, + 0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74, + 0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x74,0x0, + 0xe1,0x1,0xd,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0, + 0x6d,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x5a,0x0,0x61,0x0, + 0x64,0x0,0x65,0x0,0x6a,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x7a,0x0, + 0x65,0x0,0x76,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0, + 0x72,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20, + 0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20, + 0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x50,0x1,0x59,0x0,0x65,0x0,0x64,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x62,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65, + 0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x6f,0x0, + 0x75,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x74,0x0,0x69, + 0x0,0x73,0x0,0x6b,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x43, + 0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b, + 0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x53,0x0, + 0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x72,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x65,0x1,0x7e,0x0,0x69,0x0, + 0x6d,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x76,0x0,0x6b,0x0, + 0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x59,0x0, + 0x65,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x74,0x0,0x6c,0x0,0x61,0x1, + 0xd,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x20,0x0,0x75,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x1,0x1b,0x0, + 0x6e,0x0,0xed,0x0,0x20,0x0,0x6d,0x0,0x79,0x1,0x61,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b, + 0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75, + 0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x53,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6e,0x1,0x1b,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x6e,0x1,0x1b,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6d,0x0,0x79, + 0x1,0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72, + 0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x72,0x1,0x6f,0x0,0x62,0x1,0x1b, + 0x0,0x68,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72, + 0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x1,0xc,0x0,0x74,0x0,0x76,0x0,0x72,0x0,0x74,0x0,0xfd,0x0,0x20, + 0x1,0x59,0x0,0x61,0x0,0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44, + 0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74, + 0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38, + 0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x76, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x7a,0x0,0x69,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0, + 0x26,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6e,0x0,0xfd,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f, + 0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x52, + 0x0,0x65,0x1,0x7e,0x0,0xed,0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x2e, + 0x0,0x2f,0x0,0x6d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xfd, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0, + 0x4e,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x65,0x1, + 0x48,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x1,0x1b,0x0, + 0x20,0x0,0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x1,0x59,0x0,0x65,0x0, + 0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x20,0x0, + 0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x1,0x1b,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61, + 0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65, + 0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4f,0x0,0x62,0x0,0x6e,0x0, + 0x6f,0x0,0x76,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x55,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x55,0x0, + 0x6c,0x0,0x6f,0x1,0x7e,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x74,0x0,0x6f,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0, + 0x6f,0x0,0x20,0x0,0x26,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0xe1,0x0, + 0x6c,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x76,0x0,0xfd,0x0,0x63,0x0,0x68,0x0, + 0x6f,0x0,0x7a,0x0,0xed,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68, + 0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20, + 0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0, + 0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x56,0x0,0xfd,0x0,0x62,0x1,0x1b, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0xe1,0x0,0x6c, + 0x0,0x6e,0x0,0xed,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x1,0x6f,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x76,0x0,0x6e,0x0,0xed,0x0,0x68,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0xe1,0x1,0x59, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x56,0x0,0x79,0x0, + 0x62,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x64,0x1,0x59,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0, + 0x76,0x0,0x69,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20, + 0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x50,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x6c,0x0,0xfd,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x6c,0x0,0xe9,0x0,0x20,0x0,0x62, + 0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x5a,0x0,0x65,0x0,0x73,0x0,0xed, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75, + 0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x65,0x0,0x73,0x0,0xed,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0, + 0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75, + 0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xe1, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x76, + 0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x6f, + 0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x5a,0x0,0x76,0x0,0x75,0x0,0x6b, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x5a,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x1,0x1b, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x68,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x6e, + 0x0,0xed,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69, + 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x26,0x0,0x5a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x52,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x79,0x0, + 0x63,0x0,0x68,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x32,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x34,0x0,0x74,0x0,0x6c,0x0, + 0x61,0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64, + 0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e, + 0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x36,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd, + 0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a, + 0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, + 0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69, + 0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0, + 0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6e,0x0, + 0xed,0x0,0x20,0x0,0x38,0x0,0x74,0x0,0x6c,0x0,0x61,0x1,0xd,0x0,0xed,0x0, + 0x74,0x0,0x6b,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x1,0x58,0x0,0x61,0x0,0x64, + 0x0,0x69,0x1,0xd,0x0,0x65,0x0,0x20,0x0,0xfa,0x0,0x6c,0x0,0x6f,0x1,0x7e, + 0x0,0x69,0x1,0x61,0x0,0x74,0x1,0x1b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x76,0x0,0x72,0x0,0x63,0x0,0x68,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x50,0x0,0x6f,0x1,0x59,0x0,0xed,0x0,0x64,0x0,0x69,0x0,0x74,0x0,0x20,0x0, + 0x26,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0, + 0x68,0x0,0x6f,0x0,0x74,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f, + 0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x43,0x0,0xed,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x6e,0x0,0xed,0x0,0x6d,0x0,0x6b,0x0, + 0x6f,0x0,0x76,0x0,0xe1,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x65,0x0,0x6b,0x0, + 0x76,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65, + 0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x54,0x1,0x59,0x0,0x65,0x0,0x74,0x0,0xed,0x0,0x20,0x1,0x59,0x0,0x61,0x0, + 0x64,0x0,0x69,0x1,0xd,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20, + 0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0xed,0x0,0x74,0x1,0x1b,0x0,0x20,0x0,0x62,0x0,0x75,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x6e,0x0, + 0x75,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x75,0x0,0x6c,0x0,0x6f,0x0,0x76,0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x76,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x1,0xd,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c, + 0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x5a,0x0,0x76,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x73,0x0,0x6f,0x0, + 0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70,0x0,0x73,0x0,0xe1,0x0, + 0x6e,0x0,0x2e,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0, + 0x64,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x63,0x0, + 0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x75,0x1,0x7e,0x0,0xed,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xec,0x0,0x54,0x0,0x6f,0x0,0x20,0x0,0x6d,0x1,0x6f,0x1, + 0x7e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x61,0x0,0x74,0x0,0x2c,0x0,0x20,0x1,0x7e,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x73,0x0,0x61,0x0,0x68,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x1,0x59,0x0,0x61,0x0,0x7a,0x0, + 0x65,0x0,0x6e,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x7a,0x0,0x6d,0x1,0x1b,0x0,0x6e,0x0, + 0x69,0x0,0x6c,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x76,0x0, + 0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x1,0x59,0x0,0x65,0x0,0x6e,0x0,0xed,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x64,0x0,0xed,0x0,0x6c,0x0,0x6f,0x0, + 0x76,0x0,0xe9,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x75,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x74,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6b,0x0,0xe9,0x0,0x20,0x0,0x6d,0x1,0x6f,0x1,0x7e,0x0, + 0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x64,0x0,0x20,0x0, + 0x62,0x0,0x79,0x0,0x6c,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x70,0x0,0xed,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x6e,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x70,0x1, + 0x59,0x0,0x65,0x0,0x73,0x0,0x75,0x0,0x6e,0x0,0x75,0x0,0x74,0x0,0x2c,0x0, + 0x20,0x0,0x6e,0x0,0x65,0x0,0x62,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x76,0x1, + 0x6f,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x1, + 0x1b,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0xfd,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6a,0x0,0x20,0x0, + 0x76,0x0,0x79,0x0,0x74,0x0,0x76,0x0,0x6f,0x1,0x59,0x0,0x69,0x0,0x6c,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x20,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x6b,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x74,0x0, + 0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20, + 0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66, + 0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63, + 0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20, + 0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74, + 0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77, + 0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70, + 0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20, + 0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69, + 0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20, + 0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x1,0xd,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0xed,0x0,0x6d,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74, + 0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x1,0xd,0x0,0xed,0x0,0x74,0x0,0x61,0x1,0xd,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68, + 0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x0,0x20,0x1,0xd,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0, + 0x6e,0x0,0xed,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72, + 0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x54,0x0,0x79,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x7a, + 0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0xed,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x4e,0x0,0x61,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0, + 0x62,0x0,0x61,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x68,0x0, + 0x6f,0x0,0x76,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68, + 0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x80,0x0,0x4e,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0x61,0x0,0x20, + 0x0,0x70,0x1,0x59,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x68,0x0,0x6f,0x0,0x76,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x1,0x59,0x0,0x65,0x0,0x62, + 0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64, + 0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e, + 0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x52,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0, + 0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x68,0x0,0x72,0x0,0xe1,0x0,0x74,0x0,0x20,0x0, + 0x6b,0x0,0x6c,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x6f,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x6b,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x6b,0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x70,0x1, + 0x59,0x0,0x65,0x1,0xd,0x0,0xed,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x73,0x0, + 0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4a,0x0,0x4e,0x0,0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4e,0x0, + 0x65,0x0,0x62,0x0,0x79,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1, + 0x7e,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0, + 0x73,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x75,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x65,0x0,0x70,0x0,0x6f, + 0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6e, + 0x0,0xfd,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0, + 0x74,0x0,0x20,0x0,0x7a,0x0,0x76,0x0,0x75,0x0,0x6b,0x0,0x20,0x0,0x46,0x0, + 0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32, + 0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x26,0x0,0x54,0x0,0x79,0x0,0x70,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41, + 0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x6f,0x0,0x75,0x0,0x62, + 0x0,0x6f,0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x1c,0x0,0x56,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75,0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x2c, + 0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6f,0x1,0x7e, + 0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x79,0x0,0x62,0x0,0xed,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x68, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6d,0x1,0x1b,0x0,0x74,0x0,0x69, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6c,0x0,0x6f,0x1,0x7e,0x0,0x63,0x0,0x65,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x6f,0x0,0x22,0x0,0x2e,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x70,0x1,0x59,0x0,0x65,0x0,0x70, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6a,0x0,0x69, + 0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x75, + 0x0,0x70,0x0,0x6e,0x0,0xfd,0x0,0x20,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70, + 0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68, + 0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69, + 0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72, + 0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0, + 0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44, + 0x0,0x50,0x0,0x6f,0x0,0x75,0x1,0x7e,0x0,0xed,0x0,0x74,0x0,0x20,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0xfd,0x0,0x20, + 0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0xe1, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x1,0xc,0x0,0x65,0x0,0x6b,0x0,0x61, + 0x0,0x63,0x0,0xed,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x76,0x0,0x79, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x56,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57, + 0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x1,0x60,0x0,0xed,0x1, + 0x59,0x0,0x6b,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61, + 0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72, + 0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0, + 0x72,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6c,0x0,0x65,0x0,0x6a,0x1,0x61,0x0, + 0xed,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46, + 0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x5e,0x0,0x50,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x0,0x75,0x1, + 0x61,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x20,0x0, + 0x6e,0x0,0x65,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6b,0x0, + 0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75, + 0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20, + 0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30, + 0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69, + 0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d,0x0,0x65, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x79,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x6b,0x1,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64, + 0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70, + 0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_hu-HU.qm + 0x0,0x0,0x94,0x6b, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xef,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0xf,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0x3a,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x7e,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0x6b,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x44,0x0,0x0,0x5,0x3b,0x0,0x0,0x5d,0xf4,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x3d,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x17,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x5f,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xa7,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xe6,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x2e,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x76,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xbe,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xdc,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xac,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x4a,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0x68,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0xf,0x0,0x0,0x5d,0x81,0x0,0x0,0x84,0xb5,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4f,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xc5,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x44,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x6,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0xcc,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x4b,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x66,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0xa1,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xff,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xfe,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x7b,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0x85,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x52,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x38,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0x77,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x99,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x28,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x61,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xf3,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xc3,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0xd7,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0xe9,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x8c,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x20,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7f,0x75,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xe8,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x87,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xca,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0xfd,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0xb5,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0x51,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6f,0xf2,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0x37,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7c,0xbc,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0x3b,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xae,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0x25,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x56,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0x8b,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x33,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xc6,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x21,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xef,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xc2,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x86,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xb2,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7c,0x5b,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x82,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x85,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x4c,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7a,0xd2,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xa9,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x97,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0xf0,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0xbd,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0x5f,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0xe7,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x26,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xbd,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x1,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x6a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0xfc,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x72,0xa0,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x6e,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x3f,0x2,0x23,0x3c,0x6b,0x0,0x0,0x73,0xd0,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0x61,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xaa,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x71,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0x7f,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0x15,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x95,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xae,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xeb,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x35,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xb0,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xb2,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xae,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x65,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x68,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x87,0x5f,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0xec,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x2f,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x44,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x26,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x4d,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0x89,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0xf,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x36,0x3,0x6a,0x66,0x2e,0x0,0x0,0x57,0xc9,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0xb0,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x36,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x19,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x99,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x9a,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x46,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x18,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xc1,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5a,0x7d,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x72,0xe9,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x52,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x16,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x70,0xda,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0x9e,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xfa,0x4,0x3,0xf6,0x9a,0x0,0x0,0x57,0x62,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0x1,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x6b,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x95,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x50,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x6a,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x35,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x57,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0x39,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7d,0xcc,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x58,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x5f,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0x66,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0x8f,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x29,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x3c,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xac,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x1,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xd0,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xb5,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5b,0xc6,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xc8,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x5b,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x33,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5b,0xf0,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0x6a,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x20,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x11,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xd5,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0xd8,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5b,0xa1,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x85,0xe6,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xc6,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0xeb,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0x9a,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0xe0,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7b,0xea,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0x4f,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x7d,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0x7b,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x4e,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xc,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x3a,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x63,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x74,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xbf,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xbf,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xb4,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0xee,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0x5,0x5,0xd0,0x4f,0x11,0x0,0x0,0x83,0xc7,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xb2,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0x17,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xf6,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0x93,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0x83,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x5d,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0x9a,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x55,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0xc6,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xb5,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x2,0x6,0x6c,0xb8,0x3,0x0,0x0,0x81,0x4c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x13,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0x73,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x84,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0xf3,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0xf3,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xad,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0x8e,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x34,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0xb8,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xae,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xd8,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x6a,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xf8,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xdc,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x4a,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x7,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0x7a,0x7,0x6,0x93,0xe3,0x0,0x0,0x86,0xca,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0x8b,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x29,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0xee,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x42,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0x6,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x15,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0x9d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xbc,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x61,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0xcd,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xdb,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0x1f,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0xe5,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0x96,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0xd3,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xb5,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xab,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x80,0xff,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x70,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xa0,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0xb9,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0x82,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x29,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x6c,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x73,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0xc8,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xa7,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xa9,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x34,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0xe8,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7b,0x6f,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xa9,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xa1,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0xe2,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xc9,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x3b,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0xf5,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0x79,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0xb7,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0xf,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xac,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x70,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x2b,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xab,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x93,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x94,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xad,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0xeb,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x31,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x6f,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0x41,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0x77,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x35,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x5d,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x7d,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xa5,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x4,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x61,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x8f,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0xbd,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xeb,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x4c,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xc7,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x94,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x35,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x62,0xf5,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xff,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0x58,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x4b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xa1,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xdf,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x4,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x13,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xe6,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x49,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0x18,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x65,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0xe1,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x46,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0x5c,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0x1c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0xf2,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x7b,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x2e,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0xfd,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xcd,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xbb,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xc8,0xa,0xda,0x50,0x7e,0x0,0x0,0x7e,0x8f,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x60,0xa,0xea,0x46,0xf4,0x0,0x0,0x5c,0xc1,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x2,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x7b,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x3e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x7,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa2,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x82,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x8a,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0xd7,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xa6,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x33,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x41,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x27,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x1f,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xef,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x14,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xbd,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x57,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0x86,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x86,0x8e,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x63,0xf5,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xa5,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x17,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0xc,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0xf5,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x4e,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0xd1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x65,0xdb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x41,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0xff,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x86,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x5c,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x72,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0xe1,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0x25,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0xa,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x52,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0xd,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x64,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0x6a,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0x7e,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x64,0xf3,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0xc,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x98,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x76,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0x38,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x9d,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0x70,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0xc9,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x87,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x3b,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x50,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x65,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xb8,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x66,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0x55,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0xa8,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0x46,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0xc4,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x53,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xa2,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x14,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xdb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x4d,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x25,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x57,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0xfc,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0xf8,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x15,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x6c,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x25,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x5f,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0x99,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xd3,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x43,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x97,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0x3a,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0x64,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x31,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xd4,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x60,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x5,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x4e,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0xf,0xf,0x17,0x9c,0x64,0x0,0x0,0x80,0xb5,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5f,0xe0,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x27,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x81,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x29,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x71,0xf7,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x67,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xf1,0xf,0x70,0xaa,0x1a,0x0,0x0,0x83,0x86,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x20,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x3a,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xb2,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x59,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x26,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x56,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0x86,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0xf8,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0xbf,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x31,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xb1,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0xd3,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x61,0xdd,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x23,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x69,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xaf,0x69,0x0,0x0,0x87, + 0x89,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x6a,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0,0x6b, + 0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f, + 0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x20,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x61,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0xe1,0x0,0x68,0x0,0x6f, + 0x0,0x7a,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x7a,0x0,0x20,0x0,0xe1, + 0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0xe1,0x0,0x6e,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72, + 0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x6d, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0xfc,0x0,0x6c,0x0,0x64,0x0,0xf6,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x75, + 0x0,0x6d,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a, + 0x0,0x6c,0x0,0x6b,0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x72,0x0,0x65,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65, + 0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d, + 0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20, + 0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79, + 0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65, + 0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e, + 0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x6b,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69, + 0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x72,0x0,0x61,0x0,0x6b,0x0, + 0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x69,0x0, + 0x6b,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x28,0x0,0x6f,0x0,0x6b,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74, + 0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48, + 0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2c,0x0, + 0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e, + 0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0, + 0x35,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66, + 0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0, + 0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0, + 0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a, + 0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35, + 0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x41,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20, + 0x0,0x26,0x0,0x6e,0x0,0xe9,0x0,0x76,0x0,0x6a,0x0,0x65,0x0,0x67,0x0,0x79, + 0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d, + 0x1,0x71,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x47,0x0,0x79,0x0,0xf6, + 0x0,0x6d,0x0,0x62,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a, + 0x0,0x65,0x0,0x6c,0x0,0x7a,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0, + 0x75,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x20,0x0,0x66,0x0,0xf3,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x7a,0x0, + 0x76,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x6b,0x0, + 0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75, + 0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75, + 0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x26,0x0,0xc1,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x20,0x0, + 0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x41,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0xe9,0x0,0x72,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x74,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26, + 0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6c,0x0,0xe9,0x0,0x76, + 0x1,0x51,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a, + 0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6e,0x0,0x79, + 0x0,0x69,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x67,0x0, + 0x6e,0x0,0x79,0x0,0x69,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73, + 0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x45,0x0,0x6c,0x1,0x51,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x76,0x0,0xe9,0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4d,0x0, + 0x61,0x0,0x70,0x0,0x70,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x0,0x4e, + 0x0,0x79,0x0,0xfa,0x0,0x6a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51, + 0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46, + 0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26,0x0, + 0x54,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x5a,0x0,0xf6,0x0,0x6c,0x0, + 0x64,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x7a,0x1, + 0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65, + 0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x26,0x0,0xfa,0x0,0x6a,0x0,0x72, + 0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x53,0x0,0xfa,0x0, + 0x67,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65, + 0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0xc1,0x0, + 0x6c,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x73,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x26,0x0,0x65,0x0,0x6c,0x0,0x72,0x0,0x65,0x0,0x6a,0x0, + 0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0xe9, + 0x0,0x70,0x0,0x26,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x26,0x0,0x45,0x0,0x67,0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x74, + 0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x65,0x0,0x7a,0x1,0x51,0x0,0x73,0x0,0x20, + 0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67, + 0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x0,0x26,0x0,0x49,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0, + 0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x7a,0x1,0x51,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74, + 0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x41,0x0,0x20,0x0,0x26,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x79,0x1, + 0x71,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x66,0x0, + 0x6f,0x0,0x67,0x0,0xe1,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x67,0x0, + 0xe9,0x0,0x6e,0x0,0x79,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71, + 0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0, + 0x4e,0x0,0xe9,0x0,0x6d,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x53,0x0,0x7a,0x0,0x6f,0x0, + 0x6d,0x0,0x73,0x0,0x7a,0x0,0xe9,0x0,0x64,0x0,0x6f,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0xda,0x0,0x6a, + 0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c, + 0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x6f, + 0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x26,0x0,0xda,0x0,0x6a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x53,0x0,0x7a,0x0,0xfc, + 0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x74, + 0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x26,0x0,0x4c,0x0,0x65,0x0,0x6a,0x0,0xe1,0x0,0x74,0x0,0x73,0x0,0x7a,0x0, + 0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c, + 0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0, + 0x42,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0, + 0x73,0x0,0x6f,0x0,0x6b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0, + 0x72,0x0,0x6b,0x0,0x65,0x0,0xe1,0x0,0x72,0x0,0x6e,0x0,0x79,0x0,0x61,0x0, + 0x6c,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x46, + 0x0,0x65,0x0,0x6c,0x0,0x76,0x0,0xe9,0x0,0x74,0x0,0x65,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x45,0x0,0x6c,0x1,0x51, + 0x0,0x7a,0x1,0x51,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1, + 0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61, + 0x0,0x74,0x0,0xf6,0x0,0x6c,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20, + 0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x6c,0x0, + 0x74,0x0,0xe1,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53,0x0, + 0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x65,0x0, + 0x6c,0x0,0x74,0x0,0xe1,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0xed,0x0,0x74,0x0, + 0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0xc1,0x0,0x74,0x0,0x6d, + 0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a, + 0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x56,0x0,0x69,0x0,0x73,0x0, + 0x73,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x72,0x0, + 0xe9,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x6a,0x0,0xe9,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x41,0x0,0x20,0x0,0x26,0x0,0x6a,0x0,0x6f, + 0x0,0x62,0x0,0x62,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74, + 0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x7a,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f, + 0x66,0x74,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0x6b,0x0,0x69,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73, + 0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63, + 0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66, + 0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4b,0x0,0x69,0x0,0x76,0x0, + 0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26, + 0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x4e,0x0,0xe9,0x0,0x67,0x0,0x79,0x0, + 0x7a,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0, + 0x70,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0, + 0x28,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c, + 0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x53,0x0,0x7a,0x0, + 0x69,0x0,0x6e,0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0, + 0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x76,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0xf3,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x20,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77, + 0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6, + 0x0,0x7a,0x0,0xf6,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0xc1,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x74,0x0, + 0x73,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x26,0x0,0x66,0x0,0x72,0x0,0x69,0x0, + 0x73,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e, + 0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0, + 0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x4e,0x0,0xe9,0x0,0x7a,0x0,0x65,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x68, + 0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c, + 0x0,0x7a,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57, + 0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x41,0x0,0x62,0x0,0x6c,0x0, + 0x61,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0xe9,0x0, + 0x6e,0x0,0x79,0x0,0x65,0x0,0x7a,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x28,0x0,0x41,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x79,0x0,0x65, + 0x0,0x6c,0x0,0x76,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0, + 0xfc,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x38,0x0,0x31,0x0,0x25,0x0,0x2d,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6,0x0,0x6b,0x0,0xe9,0x0, + 0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2c,0x0,0x26,0x0,0x35,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x2d,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6,0x0, + 0x6b,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20, + 0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50, + 0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x32,0x0,0x25,0x0,0x2d, + 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6, + 0x0,0x6b,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62, + 0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0, + 0x38,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x32,0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20, + 0x47,0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28, + 0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39, + 0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e, + 0x35,0x22,0x20,0x31,0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31, + 0x30,0x30,0x39,0x30,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67, + 0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47, + 0x42,0x20,0x28,0x47,0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x32,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0, + 0x36,0x0,0x33,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x33,0x39,0x36,0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36, + 0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x33,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x38,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x0,0x20,0x0,0x45,0x0, + 0x67,0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x74,0x0,0xe9,0x0,0x6e,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x1,0x51,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x67,0x0,0x79,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65, + 0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31, + 0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33, + 0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35, + 0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0, + 0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36, + 0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0, + 0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30, + 0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x52,0x0,0x41,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x7a, + 0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0xa,0x0,0xa,0x0,0x4b,0x0,0xe9,0x0,0x72, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x74,0x0,0xf6,0x0,0x6c,0x0,0x74,0x0,0x73, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6b, + 0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x74, + 0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6b, + 0x0,0xf6,0x0,0x6e,0x0,0x79,0x0,0x76,0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x62, + 0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x41,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0xe9,0x0,0x76,0x0, + 0x6a,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4d,0x0,0x65,0x0,0x67,0x0, + 0x6c,0x0,0xe9,0x0,0x76,0x1,0x51,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x20,0x0, + 0x68,0x0,0x6f,0x0,0x7a,0x0,0x7a,0x0,0xe1,0x0,0x61,0x0,0x64,0x0,0xe1,0x0, + 0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0xda, + 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c, + 0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x7a, + 0x0,0x7a,0x0,0xe1,0x0,0x61,0x0,0x64,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3e,0x0,0x54,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x62,0x0,0x62, + 0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x74, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6b, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61, + 0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x66,0x0,0xe1,0x0, + 0x6a,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4d,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xfe,0x0,0x52,0x0,0xe9, + 0x0,0x67,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xe1,0x0,0x6d,0x0,0xed, + 0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x46,0x0,0x65,0x0,0x6a,0x0,0x6c,0x0,0x65, + 0x0,0x73,0x0,0x7a,0x0,0x74,0x1,0x51,0x0,0x6b,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0x6f,0x0,0x74, + 0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x4c,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0x20,0x0,0x62,0x0,0xe1,0x0,0x27,0x0,0xa,0x0,0xa,0x0,0x4d,0x0,0x65, + 0x0,0x67,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75, + 0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x32,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0xfa,0x0,0x6a,0x0,0x61, + 0x0,0x62,0x0,0x62,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x2e,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x76,0x0,0xe1,0x0,0x62,0x0,0x62, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d, + 0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0x20, + 0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x4c, + 0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x66, + 0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20, + 0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73, + 0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e, + 0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72, + 0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20, + 0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20, + 0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77, + 0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e, + 0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a, + 0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20, + 0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65, + 0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42, + 0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63, + 0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34, + 0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b, + 0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20, + 0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69, + 0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e, + 0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20, + 0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f, + 0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61, + 0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f, + 0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74, + 0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e, + 0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65, + 0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e, + 0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20, + 0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e, + 0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f, + 0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x62,0x0,0x42,0x0,0x69,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0, + 0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0, + 0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x62,0x0, + 0xf3,0x0,0x6c,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42, + 0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x42, + 0x0,0x69,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0xe9, + 0x0,0x20,0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64, + 0x0,0xed,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x74, + 0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x3f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20, + 0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f, + 0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20, + 0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x6b,0x0,0x75, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e, + 0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48, + 0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x41,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x76,0x0,0x65,0x0,0x74,0x1,0x51,0x0, + 0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0, + 0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73, + 0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x79,0x0, + 0x6f,0x0,0x6d,0x0,0x6b,0x0,0xf6,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6b,0x0,0x65,0x0,0x7a,0x0, + 0x64,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42, + 0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x6c, + 0x0,0x6f,0x0,0x6b,0x0,0x6b,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63, + 0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0,0x61, + 0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0, + 0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x74,0x0, + 0xfa,0x0,0x6c,0x0,0x70,0x0,0xe1,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0, + 0x7a,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43, + 0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26, + 0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63, + 0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x33,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xfc,0x0,0x41,0x0,0x20, + 0x0,0x6b,0x0,0x69,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a, + 0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x75, + 0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x74, + 0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x7a,0x1,0x71,0x0,0x72, + 0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x76,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x74, + 0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x45,0x0,0x7a,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x76,0x0,0xe9,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x79,0x0,0x61,0x0,0x6e, + 0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x76, + 0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x0,0xe1,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x62,0x0,0x6b, + 0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6b, + 0x0,0x69,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74, + 0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x70, + 0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x6c,0x1,0x51,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x75,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x62,0x0,0x61,0x0,0x6e, + 0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61, + 0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x2d,0x0,0xe1,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73, + 0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x6b,0x0,0x6b,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x41,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c, + 0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x67, + 0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x7a,0x0,0xe9, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0xe9, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x6e,0x0,0x79, + 0x0,0xfa,0x0,0x6a,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x68, + 0x0,0x69,0x0,0x62,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x65,0x0,0x74,0x0,0x20, + 0x0,0xe9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x74,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6b,0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x7a,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x74, + 0x0,0x6a,0x0,0x75,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x7a,0x0,0x6f, + 0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50, + 0x55,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x4d,0x0,0xe9,0x0,0x67,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0, + 0x79,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0, + 0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0, + 0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0, + 0x74,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x2d,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0xf3,0x0,0x6b,0x0,0x61, + 0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0, + 0xf3,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0, + 0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0xf3,0x0,0x6b,0x0,0x61,0x0,0x7a,0x0, + 0x65,0x0,0x74,0x0,0x74,0x0,0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x52, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x7a, + 0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x6f,0x0,0x6b,0x0,0x72,0x0,0xf3,0x0,0x6d,0x0,0x20,0x0,0x6b, + 0x0,0x69,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x7a,0x1,0x51,0x0,0x68,0x0,0xf6, + 0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e, + 0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20, + 0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70, + 0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43, + 0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65, + 0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42,0x0, + 0x50,0x0,0x42,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x1, + 0x51,0x0,0x72,0x0,0x7a,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4b,0x0,0x61,0x0,0x74,0x0,0x74,0x0, + 0x69,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x20,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x66,0x0,0x6f,0x0,0x67,0x0,0xe1,0x0,0x73,0x0,0xe1,0x0,0x68,0x0, + 0x6f,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x42, + 0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73, + 0x0,0x6f,0x0,0x6b,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x46,0x0,0x6f,0x0,0x6c,0x0,0x79, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0, + 0x61,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0,0x61,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x61,0x0, + 0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x47,0x0,0x61,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x70,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0, + 0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0, + 0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x6a,0x0, + 0x61,0x0,0x76,0x0,0xed,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x69,0x0,0x64,0x1, + 0x51,0x0,0x62,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x67,0x0,0xe9,0x0, + 0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75, + 0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74, + 0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x60,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x76, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0xf3,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67, + 0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x74,0x1,0x51, + 0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0, + 0x67,0x0,0x79,0x0,0xe9,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x6e,0x0, + 0x61,0x0,0x67,0x0,0x79,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20,0x28,0x6c, + 0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x45,0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x6e,0x0,0x69,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x43, + 0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x31, + 0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x73, + 0x0,0x7a,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x41, + 0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0xfc,0x0,0x6c,0x0,0xf6, + 0x0,0x6e,0x0,0x62,0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x2d,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4c,0x0,0x65, + 0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x41,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0, + 0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x41,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x41,0x0,0x20,0x0, + 0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0, + 0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0xfa,0x0,0x6c,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x67,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f, + 0x6f,0x20,0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x66,0x0,0x41,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a, + 0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0xe9, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x68,0x0,0x61, + 0x0,0x74,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x2d,0x0,0x6f,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b, + 0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0xed,0x0,0x74,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x53,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x6e,0x0,0xe9,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0, + 0x61,0x0,0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61, + 0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x65,0x0, + 0x20,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0,0x6a,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e, + 0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0xed,0x0,0x72,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x6c,0x0,0xfc,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74, + 0x0,0x73,0x0,0x61,0x0,0x20,0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65, + 0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e, + 0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0xed, + 0x0,0x74,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20, + 0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x7a,0x0,0x74, + 0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x20,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74, + 0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0xfa,0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x64, + 0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70, + 0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x44,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x69,0x0,0x6b,0x0,0x75,0x0, + 0x73,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x62,0x1,0x51,0x0,0x76,0x0,0xfc,0x0, + 0x6c,0x1,0x51,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0, + 0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20, + 0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0, + 0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x62,0x0, + 0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0, + 0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47, + 0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b, + 0x0,0x69,0x0,0x61,0x0,0x64,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4b,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d, + 0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26, + 0x0,0x4b,0x0,0x69,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0,0xe9,0x0,0x73,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0, + 0x6d,0x0,0x62,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49, + 0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0xe1,0x0, + 0x62,0x0,0x62,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x0,0x67,0x0,0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0, + 0x20,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x45,0x0,0x6e,0x0, + 0x67,0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x7a,0x0, + 0x76,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x45,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x64,0x0,0xe9,0x0,0x6c,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x0,0x76,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x68,0x0, + 0x65,0x0,0x6c,0x0,0x79,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x64,0x1,0x51,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x79,0x0,0x6f, + 0x0,0x6d,0x0,0x6b,0x0,0xf6,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0xe9,0x0,0x73, + 0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x6a,0x0,0x65,0x0,0x7a, + 0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x54,0x0,0x65,0x0,0x6c,0x0, + 0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0, + 0x64,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0, + 0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74, + 0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x48,0x0,0x69,0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x54,0x0,0x48,0x0,0x69,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0xf6, + 0x0,0x72,0x0,0x74,0x0,0xe9,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6c, + 0x1,0x51,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b, + 0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69, + 0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6c,0x0,0xe9, + 0x0,0x76,0x1,0x51,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1, + 0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6e,0x0,0x79, + 0x0,0x69,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x26, + 0x0,0xed,0x0,0x72,0x0,0xe1,0x0,0x73,0x0,0x76,0x0,0xe9,0x0,0x64,0x0,0x65, + 0x0,0x74,0x0,0x74,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f, + 0x74,0x65,0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4b,0x0,0x69,0x0,0x6c,0x0,0xe9,0x0,0x70,0x0, + 0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52, + 0x0,0xf6,0x0,0x67,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0,0x70,0x0, + 0x70,0x0,0x79,0x0,0x2d,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0, + 0x6c,0x1,0x51,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46, + 0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x73, + 0x0,0x7a,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x7a, + 0x0,0xe1,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67, + 0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x2d,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x73,0x0,0xe9,0x0,0x67, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x4e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0xe1,0x0,0x6c,0x0,0xf3,0x0,0x7a,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0, + 0x73,0x0,0x7a,0x0,0x74,0x1,0x51,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0, + 0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0,0x79,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x56,0x0,0xe9,0x0,0x67, + 0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x68,0x0,0x69, + 0x0,0x62,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x46,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6e,0x0, + 0xe9,0x0,0x76,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46, + 0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x7a,0x1,0x71,0x0,0x72,0x0,0xe9,0x0,0x73, + 0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x52,0x0,0xf6, + 0x0,0x67,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20, + 0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x1,0x71,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65, + 0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x46,0x0,0x6c, + 0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x46,0x0,0x6c,0x0,0x6f, + 0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x43, + 0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26, + 0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x6c,0x0,0x6f,0x0, + 0x70,0x0,0x70,0x0,0x79,0x0,0x2d,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x46, + 0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65, + 0x0,0x6b,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x54, + 0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6b,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x73,0x0,0x20, + 0x0,0x26,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x7a, + 0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63, + 0x68,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x72,0x1,0x51,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x53,0x0,0x7a,0x0,0xfc,0x0,0x72, + 0x0,0x6b,0x0,0xe9,0x0,0x73,0x0,0x6b,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x26,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x7a, + 0x0,0x69,0x0,0xf3,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x6a,0x0,0xe1, + 0x0,0x72,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x2e,0x0,0x2d,0x0,0x76,0x0, + 0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f, + 0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62, + 0x0,0x41,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6c,0x0,0x65, + 0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x68, + 0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x67,0x0,0x79,0x0,0x6f,0x0,0x62,0x0,0x62,0x0,0x61,0x0,0x6b,0x0,0x20, + 0x0,0x34,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2d,0x0,0x6e,0x0,0xe1,0x0,0x6c, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x6d, + 0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88,0x0,0x41,0x0, + 0x7a,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x2d,0x0,0x74,0x1,0x51,0x0, + 0x6c,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0xe9,0x0,0x72,0x1,0x51,0x0, + 0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x1,0x71,0x0,0x20,0x0,0x48,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0, + 0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0, + 0x6b,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0, + 0x6d,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0, + 0x61,0x0,0x6b,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4d,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a, + 0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c, + 0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4d,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x4d,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x6c,0x0,0x65,0x0,0x6d, + 0x0,0x65,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0xfa, + 0x0,0x6a,0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74, + 0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61, + 0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0xe9,0x0,0x72,0x0,0x68,0x0,0x65,0x0,0x74,0x1,0x51,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f, + 0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x65,0x0,0x6a,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x61,0x0,0x67,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x67,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x69,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x74,0x0,0x6f,0x0,0x6f,0x0,0x6c,0x0,0x62, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x48,0x69, + 0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38, + 0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x0,0x2d,0x0,0x67,0x0,0x79, + 0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0xe1, + 0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x49, + 0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72, + 0x0,0x69,0x0,0x61,0x0,0x62,0x1,0x51,0x0,0x76,0x0,0xed,0x0,0x74,0x1,0x51, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20, + 0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x49,0x0,0x53,0x0, + 0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x28,0x0,0xf3,0x0, + 0x72,0x0,0x61,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67, + 0x0,0x67,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b, + 0x0,0xf6,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53, + 0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x49,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x6b,0x0,0xe9,0x0,0x73,0x0,0x7a,0x0,0x6c,0x0,0x65,0x0,0x74,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20, + 0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x75,0x0,0x6d,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65, + 0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x42,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0, + 0x7a,0x0,0xf6,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49, + 0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x65,0x0, + 0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0xc9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0xc9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0, + 0x6e,0x0,0x79,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x4a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0, + 0x7a,0x0,0x2e,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20, + 0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0, + 0x2e,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4a,0x0, + 0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x2e,0x0, + 0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4a,0x0,0xe1,0x0, + 0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0x2e,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0xe1,0x0,0x74,0x0, + 0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1, + 0x51,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b, + 0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x31,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6, + 0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c, + 0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b, + 0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4e,0x0,0x79,0x0,0x65,0x0,0x6c,0x0,0x76,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0,0x61,0x0,0x67, + 0x0,0x79,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x6b,0x0,0x6d, + 0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x52, + 0x0,0xf6,0x0,0x67,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0, + 0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x6d,0x0,0x65,0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0, + 0x6b,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x65,0x0,0x7a,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76, + 0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0, + 0x62,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x2d,0x0,0x6b,0x0, + 0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25, + 0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x6d,0x0, + 0x65,0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x4d,0x0,0x4f,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1, + 0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x7a,0x0,0xe1,0x0,0x6d,0x0,0xed, + 0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xf8,0x0,0x41,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xe1, + 0x0,0x6d,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x72,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70, + 0x0,0x70,0x0,0xe1,0x0,0x62,0x0,0xf3,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x69, + 0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x7a,0x0,0xf3,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x2d,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20, + 0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x45, + 0x0,0x68,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20, + 0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x69, + 0x0,0x6b,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x74,0x0,0x74, + 0x0,0x61,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x47,0x0,0xe9,0x0,0x70,0x0,0x74, + 0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x53,0x0,0x7a, + 0x0,0xe1,0x0,0x6d,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x67,0x0,0xe9,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xce,0x0, + 0x47,0x0,0x79,0x1,0x51,0x0,0x7a,0x1,0x51,0x0,0x64,0x0,0x6a,0x0,0xf6,0x0, + 0x6e,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x68,0x0,0x6f,0x0, + 0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x28,0x0,0x7a,0x0,0x29,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x70,0x0,0xed,0x0,0x74,0x0,0x76,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0xe9,0x0,0x73,0x0, + 0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0, + 0x63,0x0,0x61,0x0,0x70,0x0,0x2d,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x73,0x0, + 0x20,0x0,0x6b,0x0,0x61,0x0,0x70,0x0,0x63,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0, + 0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6c,0x0,0x47,0x0, + 0x79,0x1,0x51,0x0,0x7a,0x1,0x51,0x0,0x64,0x0,0x6a,0x0,0xf6,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x72,0x0, + 0xf3,0x0,0x6c,0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0, + 0x6c,0x0,0xe9,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x69,0x0,0x6b,0x0,0x20,0x0, + 0xe9,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x73,0x0, + 0x68,0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65, + 0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64, + 0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x7c,0x0,0x47,0x0,0x79,0x1,0x51,0x0,0x7a, + 0x1,0x51,0x0,0x64,0x0,0x6a,0x0,0xf6,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0xf3,0x0,0x6c,0x0,0x2c, + 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x67, + 0x0,0x79,0x0,0x20,0x0,0xed,0x0,0x72,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0xf3, + 0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x6e,0x0,0x79,0x0,0x76,0x0,0x74,0x0,0xe1, + 0x0,0x72,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61, + 0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d, + 0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0, + 0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f, + 0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x20,0x0,0x61, + 0x0,0x6c,0x0,0x76,0x0,0xf3,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0,0x64,0x0,0x62, + 0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45, + 0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x20,0x0,0xe9,0x0,0x72,0x0,0x7a,0x0,0xe9, + 0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x79,0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20, + 0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x45,0x0,0x67,0x0,0xe9,0x0,0x72,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x48,0x0,0xe1, + 0x0,0x6c,0x0,0xf3,0x0,0x7a,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0xe1,0x0,0x6c,0x0,0xf3,0x0,0x7a, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74, + 0x0,0x79,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0xe1,0x0, + 0x6c,0x0,0xf3,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x74,0x0, + 0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0xda,0x0, + 0x6a,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0, + 0x6c,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x68,0x0, + 0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x74,0x0,0x61,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74,0x0, + 0xf3,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0xf6,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x4e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x68,0x0, + 0x61,0x0,0x74,0x0,0xf3,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x67,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0, + 0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4e,0x0,0x69,0x0, + 0x6e,0x0,0x63,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e, + 0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e, + 0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x70,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x62,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20, + 0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x4b,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x70,0x0, + 0x63,0x0,0x73,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x42,0x0,0x65,0x0,0x6b,0x0,0x61,0x0,0x70,0x0,0x63,0x0, + 0x73,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20, + 0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72, + 0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70, + 0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xcc,0x0,0x41,0x0,0x7a,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x29,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x6a,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x74,0x1,0x51,0x0,0x2d,0x0,0x6d,0x0, + 0x6f,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0, + 0x2e,0x0,0x20,0x0,0x4b,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x68,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x6a,0x0, + 0x6f,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x69,0x0,0x6b,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x6c,0x1,0x51,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72, + 0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0, + 0x47,0x0,0x4c,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0, + 0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45, + 0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x62,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0xe1,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65, + 0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x45,0x0,0x67,0x0,0x79,0x0,0xe9,0x0,0x62,0x0,0x20, + 0x0,0x63,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe9,0x0,0x6c,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x72,0x0,0x6f,0x0,0x6c, + 0x0,0xf3,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65, + 0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x46,0x0,0x65,0x0,0x6c,0x0,0xfc,0x0,0x6c,0x0,0xed,0x0,0x72,0x0,0xe1, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72, + 0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x49,0x0,0x54,0x0, + 0x20,0x0,0xfc,0x0,0x7a,0x0,0x65,0x0,0x6d,0x0,0x6d,0x0,0xf3,0x0,0x64,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54,0x20,0x6d, + 0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x0,0x20,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0, + 0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x50,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x75,0x0,0x7a,0x0, + 0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50, + 0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0xe1,0x0,0x72,0x0, + 0x68,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x75,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c, + 0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0xe1,0x0,0x72,0x0,0x68,0x0,0x75,0x0, + 0x7a,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x41,0x0,0x20,0x0, + 0x73,0x0,0x7a,0x0,0xfc,0x0,0x6c,0x1,0x51,0x0,0x2d,0x0,0x20,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x72,0x0, + 0x6d,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0, + 0x20,0x0,0x69,0x0,0x64,0x1,0x51,0x0,0x62,0x0,0xe9,0x0,0x6c,0x0,0x79,0x0, + 0x65,0x0,0x67,0x0,0x65,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x7a,0x0,0x6e,0x0,0x65,0x0, + 0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x4b,0x0,0x69,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x73,0x0,0x7a,0x0, + 0xfc,0x0,0x6e,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0x65,0x0, + 0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0xf6,0x0, + 0x6b,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x42,0x0,0x41,0x0,0x64,0x0,0x6a,0x0,0x6f,0x0,0x6e,0x0, + 0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0x79,0x0, + 0x20,0x0,0xe9,0x0,0x72,0x0,0x76,0x0,0xe9,0x0,0x6e,0x0,0x79,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0, + 0x76,0x0,0x65,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d, + 0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x65,0x0,0xe1,0x0, + 0x6c,0x0,0x6c,0x0,0xed,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65, + 0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x4e,0x0,0x79,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0, + 0x65,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x79,0x0,0x6f,0x0,0x6d, + 0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x86,0x0,0x48,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x44,0x0,0x6e,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0, + 0x6b,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x61,0x0, + 0x62,0x0,0x6c,0x0,0x61,0x0,0x6b,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0x20,0x0, + 0x76,0x0,0x61,0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x73,0x0, + 0x73,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0xe9,0x0,0x72,0x0,0xe9,0x0,0x73,0x0, + 0x68,0x0,0x65,0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74, + 0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x4e,0x0,0x79,0x0, + 0x6f,0x0,0x6d,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0, + 0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0, + 0x31,0x0,0x32,0x0,0x2d,0x0,0x74,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x67,0x0, + 0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0xf6,0x0,0x7a,0x0,0xe9,0x0, + 0x70,0x0,0x73,0x1,0x51,0x0,0x20,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0, + 0x6f,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x67,0x0, + 0xe9,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x67,0x0, + 0xe9,0x0,0x64,0x0,0xe9,0x0,0x73,0x0,0xe9,0x0,0x68,0x0,0x65,0x0,0x7a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x58,0x0,0x4e,0x0,0x79,0x0,0x6f,0x0,0x6d,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x46, + 0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x2d,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0xe9,0x0,0x72,0x0,0x20, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x67,0x0,0xe9,0x0,0x64,0x0,0xe9, + 0x0,0x73,0x0,0xe9,0x0,0x68,0x0,0x65,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32, + 0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x46,0x0,0x6f, + 0x0,0x6c,0x0,0x79,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4e,0x0,0x65, + 0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x64,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0,0x76,0x0,0x65, + 0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4d,0x0,0xe9,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a, + 0x0,0xed,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x6a,0x0,0x65,0x0,0x67,0x0,0x79,0x0,0x7a,0x0,0xe9,0x0,0x73, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d, + 0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f, + 0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x7a,0x0, + 0xed,0x0,0x6e,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x2d,0x0,0x6d, + 0x0,0xf3,0x0,0x64,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x26,0x0,0x4d,0x0,0x65,0x0,0x67,0x0,0x6a,0x0,0x65,0x0, + 0x6c,0x0,0x65,0x0,0x6e,0x0,0xed,0x0,0x74,0x1,0x51,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0,0x4e,0x0,0x65,0x0,0x20,0x0, + 0x66,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6a,0x0,0x74,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0, + 0x69,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0, + 0x6d,0x0,0xe1,0x0,0x7a,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x7a,0x0, + 0x20,0x0,0xfa,0x0,0x6a,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0, + 0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x68,0x0,0x6f,0x0, + 0x7a,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0, + 0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x74,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0xda,0x0,0x6a,0x0, + 0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0xe1,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x46,0x0,0x6f,0x0, + 0x6c,0x0,0x79,0x0,0x74,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x76,0x0,0xe9,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x68,0x0, + 0x61,0x0,0x6a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63, + 0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0, + 0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0, + 0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x32,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72, + 0x0,0x64,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61, + 0x72,0x64,0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f, + 0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e, + 0x47,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x4d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0xe9,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x56,0x0,0x42,0x0,0x65,0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xed,0x0, + 0x74,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x73,0x0,0x20,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0xe9,0x0,0x72,0x0,0x74,0x0,0xe9,0x0, + 0x6b,0x0,0x6b,0x0,0xe9,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x66,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6b,0x0,0xe9, + 0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x76,0x0,0xe1, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x61, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72, + 0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x6b,0x0,0x61, + 0x0,0x6b,0x0,0xf6,0x0,0x6e,0x0,0x79,0x0,0x76,0x0,0x74,0x0,0xe1,0x0,0x72, + 0x0,0xe1,0x0,0x62,0x0,0xf3,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72, + 0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63, + 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x56,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x7a,0x0, + 0xfc,0x0,0x6c,0x1,0x51,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2d,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x53,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0,0x72,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0xe9,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42, + 0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x4c,0x0, + 0x61,0x0,0x73,0x0,0x73,0x0,0xfa,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x4b,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x6b,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c, + 0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61, + 0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x72,0x1,0x51,0x0,0x73,0x0,0x7a,0x0,0x61, + 0x0,0x62,0x0,0xe1,0x0,0x6c,0x0,0x79,0x0,0x7a,0x0,0xf3,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x65,0x0, + 0x72,0x1,0x51,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0xe1,0x0,0x6c,0x0, + 0x79,0x0,0x7a,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53, + 0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0xe1, + 0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74, + 0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x61, + 0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61, + 0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x48,0x0,0x61,0x0,0x6e,0x0,0x67, + 0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x46,0x1,0x51,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61, + 0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67, + 0x0,0x61,0x0,0x64,0x0,0xe1,0x0,0x73,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e, + 0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0xe9,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x7a,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x67,0x0,0x61,0x0, + 0x64,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64, + 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x62,0x0,0x65,0x0, + 0x73,0x0,0x73,0x0,0xe9,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x53,0x0,0x65,0x0,0x62,0x0,0x2e,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4b,0x0,0xfc,0x0,0x6c,0x0,0xf6,0x0,0x6e, + 0x0,0xe1,0x0,0x6c,0x0,0x6c,0x0,0xf3,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55, + 0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55, + 0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0, + 0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0, + 0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0, + 0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x0, + 0x28,0x0,0x6b,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0, + 0x76,0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x34,0x0, + 0x2d,0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6a,0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0, + 0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x76, + 0x0,0xe1,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x36,0x0,0x2d, + 0x0,0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6a, + 0x0,0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9, + 0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f, + 0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x0,0x53,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x76,0x0, + 0xe1,0x0,0x6e,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x38,0x0,0x2d,0x0, + 0x67,0x0,0x6f,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6a,0x0, + 0xe1,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0, + 0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x54,0x0,0xe1,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0xf3, + 0x0,0x76,0x0,0x65,0x0,0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67, + 0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x65,0x0,0x6c,0x0,0xfc, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0, + 0x26,0x0,0x4b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1, + 0x51,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0xe9,0x0,0x73,0x0, + 0x7a,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x0,0x65,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72, + 0x65,0x65,0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0xe9,0x0, + 0x6c,0x0,0x20,0x0,0x26,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x6b,0x0,0x6f,0x0, + 0x63,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x62,0x0,0x65,0x0,0x73,0x0, + 0x73,0x0,0xe9,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x54, + 0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61,0x74,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x67,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x2d,0x0,0x76,0x0,0x65,0x0, + 0x7a,0x0,0xe9,0x0,0x72,0x0,0x6c,0x1,0x51,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6e,0x0,0x41,0x0,0x20,0x0,0x68,0x0,0xe1,0x0,0x6c,0x0, + 0xf3,0x0,0x7a,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0xe1,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x20,0x0,0xe1,0x0,0x74,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0, + 0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0, + 0x20,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x74,0x1, + 0x51,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73, + 0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e, + 0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x94,0x0,0x41,0x0,0x20,0x0,0x6b,0x0,0x69,0x0,0x76,0x0, + 0xe1,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x74,0x0, + 0x74,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x66,0x0, + 0x65,0x0,0x6c,0x0,0xfc,0x0,0x6c,0x0,0xed,0x0,0x72,0x0,0xe1,0x0,0x73,0x0, + 0x72,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0, + 0x2e,0x0,0x20,0x0,0x42,0x0,0x69,0x0,0x7a,0x0,0x74,0x0,0x6f,0x0,0x73,0x0, + 0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x65,0x0, + 0x7a,0x0,0x74,0x0,0x20,0x0,0x6b,0x0,0xed,0x0,0x76,0x0,0xe1,0x0,0x6e,0x0, + 0x6a,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x6e,0x0, + 0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xce,0x0,0x45,0x0,0x7a,0x0,0x20,0x0,0x61,0x0,0x7a,0x0, + 0x74,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x68,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x68,0x0,0x6f,0x0, + 0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0xfc,0x0, + 0x6c,0x1,0x51,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6d,0x0,0xf3,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x74,0x0,0xe9,0x0,0x72,0x1,0x51,0x0, + 0x20,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xe1,0x0,0x73,0x0,0x61,0x0, + 0x20,0x0,0x75,0x0,0x74,0x0,0xe1,0x0,0x6e,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0x45,0x0,0x7a,0x0,0x20,0x0,0x61,0x0,0x6b,0x0,0x6b,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x1,0x51,0x0,0x66,0x0, + 0x6f,0x0,0x72,0x0,0x64,0x0,0x75,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x74,0x0, + 0x2c,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x70,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0xe1,0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6c,0x0, + 0x79,0x0,0x65,0x0,0x7a,0x0,0x74,0x0,0xe9,0x0,0x6b,0x0,0x20,0x0,0x76,0x0, + 0x61,0x0,0x67,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x6f,0x0, + 0x6c,0x0,0x74,0x0,0xe1,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x61,0x0, + 0x67,0x0,0x79,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0, + 0x65,0x0,0x7a,0x0,0x74,0x0,0x20,0x0,0x6c,0x0,0xe9,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x68,0x0,0x6f,0x0,0x7a,0x0,0xf3,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x68,0x0,0x69,0x0, + 0x62,0x0,0xe1,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x61,0x0, + 0x74,0x0,0x74,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x53,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x74,0x0,0x6e,0x0,0xe9,0x0,0x20,0x0,0x6b,0x0,0x69,0x0, + 0x6a,0x0,0x61,0x0,0x76,0x0,0xed,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0, + 0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x64,0x1,0x51,0x0,0x62,0x0, + 0xe9,0x0,0x6c,0x0,0x79,0x0,0x65,0x0,0x67,0x0,0x65,0x0,0x6b,0x0,0x65,0x0, + 0x74,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x45,0x0,0x7a,0x0,0x7a,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x76,0x0,0x65, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0xfa,0x0,0x6a, + 0x0,0x72,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0xed,0x0,0x74,0x0,0x6a, + 0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75, + 0x0,0x6c,0x0,0xe1,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x67,0x0,0xe9,0x0,0x70, + 0x0,0x65,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a, + 0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72, + 0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65, + 0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x49,0x0,0x64,0x1,0x51,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x69,0x0,0x6e, + 0x0,0x6b,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0xe1,0x0,0x63, + 0x0,0x69,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69, + 0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0, + 0x75,0x0,0x72,0x0,0x62,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0xf3,0x0,0x20,0x0,0x69,0x0, + 0x64,0x1,0x51,0x0,0x7a,0x0,0xed,0x0,0x74,0x0,0xe9,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d, + 0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x54,0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x54,0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x41,0x0,0x7a,0x0,0x20,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x6d,0x0,0xe9,0x0,0x67,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x6d,0x0,0x6f,0x0,0x67, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x65,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73, + 0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x80,0x0,0x41,0x0,0x7a,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x68,0x0,0x65,0x0,0x74, + 0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x61, + 0x0,0x7a,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64, + 0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20, + 0x0,0x73,0x0,0x7a,0x0,0xfc,0x0,0x6b,0x0,0x73,0x0,0xe9,0x0,0x67,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62, + 0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x5c,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x68,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x0,0x74,0x0, + 0xf6,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0, + 0x79,0x1,0x71,0x0,0x7a,0x0,0x65,0x0,0x74,0x0,0x67,0x0,0x79,0x0,0x6f,0x0, + 0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x61,0x0,0x74,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61, + 0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x20,0x0, + 0x66,0x0,0xe1,0x0,0x6a,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0, + 0x20,0x0,0x6f,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x73,0x0,0x68,0x0,0x61,0x0, + 0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x41,0x0,0x20,0x0, + 0x6b,0x0,0xf6,0x0,0x7a,0x0,0x76,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x65,0x0, + 0x6e,0x0,0x20,0x0,0x6e,0x0,0x79,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0, + 0x62,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0x72,0x0, + 0xe1,0x0,0x6c,0x0,0xe1,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0xfc,0x0, + 0x6c,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x20,0x0,0x66,0x0,0xe1,0x0, + 0x6a,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0xed,0x0, + 0x72,0x0,0x68,0x0,0x61,0x0,0x74,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69, + 0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x4e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0,0x6d, + 0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x20, + 0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x46,0x0,0x4c,0x0, + 0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x0,0x20,0x0,0x68,0x0,0x61,0x0, + 0x73,0x0,0x7a,0x0,0x6e,0x0,0xe1,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f, + 0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x6b,0x0, + 0xe9,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x79,0x1,0x51,0x0,0x20,0x0, + 0x26,0x0,0x74,0x0,0xed,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x66,0x0,0xe1,0x0,0x6a, + 0x0,0x6c,0x0,0x6f,0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xfa,0x0,0x41,0x0,0x20,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0xe9,0x0,0x72,0x0,0x68,0x0,0x65, + 0x0,0x74,0x1,0x51,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f, + 0x0,0x22,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x70,0x0,0x70,0x0,0xe1,0x0,0x62, + 0x0,0xf3,0x0,0x6c,0x0,0x20,0x0,0x68,0x0,0x69,0x0,0xe1,0x0,0x6e,0x0,0x79, + 0x0,0x7a,0x0,0xf3,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x2d,0x0,0x6b, + 0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x68,0x0,0x65,0x0,0x6c, + 0x0,0x79,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x67,0x0,0x79, + 0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x73,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6b, + 0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x65, + 0x0,0x72,0x0,0xfc,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x75,0x0,0x74,0x0,0x74, + 0x0,0x61,0x0,0x74,0x0,0xe1,0x0,0x73,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61, + 0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20, + 0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f, + 0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e, + 0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x56,0x0,0x69,0x0, + 0x64,0x0,0x65,0x0,0x6f,0x0,0x6b,0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64, + 0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x56, + 0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x0,0x2d,0x0,0x67,0x0,0x79, + 0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0xe1, + 0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x56,0x0,0xe1, + 0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x2e,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6b, + 0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x6f,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0xdc,0x0, + 0x64,0x0,0x76,0x0,0xf6,0x0,0x7a,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0xf6,0x0, + 0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f, + 0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0, + 0x7a,0x0,0xe9,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe9,0x0,0x67,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69, + 0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x58,0x0,0x47,0x0,0x41,0x0,0x2d,0x0,0x67, + 0x0,0x79,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0xed,0x0,0x74,0x0,0xf3,0x0,0x6b, + 0x0,0xe1,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x59,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x79,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x0,0x61,0x0,0x62,0x0,0x62,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x45,0x0,0x67,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0xe1,0x0, + 0x6d,0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x74,0x0,0x74,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0xe1,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x74,0x0,0x20,0x0,0x74,0x0, + 0xf6,0x0,0x6c,0x0,0x74,0x0,0x20,0x0,0x62,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61, + 0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15, + 0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29, + 0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d,0x0,0x6d,0x0,0x65, + 0x0,0x67,0x0,0x68,0x0,0x61,0x0,0x6a,0x0,0x74,0x0,0xf3,0x0,0x6b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x6d,0x0,0x65, + 0x0,0x7a,0x0,0x6b,0x0,0xe9,0x0,0x70,0x0,0x65,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c, + 0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pt-BR.qm + 0x0,0x0,0x96,0x45, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x75,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0xed,0x0,0x0,0x0,0x53,0x0,0x0,0x6c,0x54,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x92,0x0,0x0,0x4,0xf2,0x0,0x0,0x52,0xa3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x54,0x96,0x0,0x0,0x5,0x3b,0x0,0x0,0x5f,0xd2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x60,0xf,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x2b,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x73,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xbb,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xfa,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x42,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x8a,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xd2,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xf0,0x0,0x0,0x49,0xc3,0x0,0x0,0x29,0x1a,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4e,0x74,0x0,0x0,0x4d,0x85,0x0,0x0,0x4e,0x92,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5f,0xed,0x0,0x0,0x5d,0x81,0x0,0x0,0x86,0x7b,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x55,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd9,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0xda,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x84,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x29,0x46,0x0,0x4,0xa7,0x89,0x0,0x0,0x3f,0x4d,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x44,0x4c,0x0,0x4,0xc8,0xa4,0x0,0x0,0x45,0x5d,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x42,0xdd,0x0,0x4,0xd0,0x25,0x0,0x0,0x45,0xb6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x48,0x55,0x0,0x5,0x56,0x45,0x0,0x0,0x5f,0x5f,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6c,0x6e,0x0,0x5,0x98,0xc5,0x0,0x0,0x6d,0x52,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x70,0xb9,0x0,0x5,0xc0,0x65,0x0,0x0,0x7e,0x5d,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x10,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x49,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x4,0x7,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x73,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x95,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x8b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0x44,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0xf2,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x81,0x47,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xd0,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xb7,0x0,0x4c,0x99,0x62,0x0,0x0,0x41,0xb0,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x38,0x2d,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6b,0xdb,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x73,0xbb,0x0,0x5a,0x6c,0x44,0x0,0x0,0x71,0x36,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7e,0xd,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7e,0x7e,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x89,0x15,0x0,0x73,0x75,0x3e,0x0,0x0,0x36,0xb4,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5f,0x13,0x0,0x97,0x96,0x4,0x0,0x0,0x39,0x76,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x50,0xd5,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x52,0x73,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4b,0xc6,0x0,0xb8,0x5f,0x43,0x0,0x0,0x61,0xc5,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0xd7,0x1,0x9,0x1c,0x92,0x0,0x0,0x43,0xac,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2c,0x42,0x1,0x39,0xa4,0xce,0x0,0x0,0x5b,0x6a,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7e,0x31,0x1,0x4c,0x50,0xee,0x0,0x0,0x69,0xce,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4b,0x81,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x20,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7c,0x86,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3d,0xbd,0x1,0x91,0xe,0x73, + 0x0,0x0,0x2a,0x23,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4e,0x26,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x56,0x23,0x1,0xb0,0x47,0x5c,0x0,0x0,0x54,0xb1,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x99,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0xfe,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x91,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x93,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x33,0x5c,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6d,0x16,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x74,0x12,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x18,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x75,0x8b,0x2,0x23,0x3c,0x6b,0x0,0x0,0x75,0x26,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x74,0xc1,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0x74,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4d,0x8f,0x2,0x78,0x48,0x1a,0x0,0x0,0x55,0xd3,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x86,0xdb,0x2,0x90,0x8d,0x12,0x0,0x0,0x44,0x6d,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x62,0x52,0x2,0xad,0x4a,0x22,0x0,0x0,0x6a,0x31,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xf7,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x6e,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x62,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0x32,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0xfb,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x62,0x8,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x89,0x39,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0xd2,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x65,0xd5,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x16,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0xf4,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x1b,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x54,0xdb,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0xd9,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x0,0x3,0x6a,0x66,0x2e,0x0,0x0,0x59,0x83,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x57,0x6a,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xee,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x32,0x21,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0xad,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0x82,0x3,0xa4,0x35,0xa5,0x0,0x0,0x44,0x2c,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0xfe,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xa9,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5c,0x4b,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x74,0x59,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x72,0x90,0x3,0xe4,0x25,0x5a,0x0,0x0,0x72,0x50,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x72,0x10,0x3,0xe4,0x25,0x7a,0x0,0x0,0x71,0xd0,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0xe,0x4,0x3,0xf6,0x9a,0x0,0x0,0x59,0x14,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0xcb,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x3d,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x67,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x1a,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x20,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0xb1,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0xeb,0x4,0x51,0x79,0xb1,0x0,0x0,0x76,0x93,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7f,0x8a,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0xae,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x71,0x99,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3e,0x80,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3e,0xa9,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x36,0x11,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x31,0x46,0x4,0xb8,0x1,0x2e,0x0,0x0,0x3a,0xca,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0xbf,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xd6,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x32,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0x7f,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5d,0xb0,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x34,0xb8,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x25,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x5d,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5d,0xd4,0x4,0xeb,0x2f,0xa,0x0,0x0,0x53,0xca,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4d,0x3a,0x5,0x18,0x5,0x95,0x0,0x0,0x81,0xcf,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0x9f,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0xf6,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5d,0x89,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x87,0xc8,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0x56,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0xfd,0x5,0x88,0x2e,0xd9,0x0,0x0,0x70,0xdc,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x57,0x94,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7d,0xba,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x77,0xa7,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0xf9,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x73,0xe9,0x5,0xb2,0x16,0x79,0x0,0x0,0x6a,0x94,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xfa,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4b,0x3a,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x41,0x47,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x42,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0x95,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0x91,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4d,0xcc,0x5,0xc1,0x4d,0x83,0x0,0x0,0x3a,0xa,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x84,0xfb,0x5,0xd0,0x4f,0x11,0x0,0x0,0x85,0xa1,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0x3e,0x5,0xdf,0xba,0xba,0x0,0x0,0x85,0xed,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x69,0x38,0x6,0x7,0xd3,0xda,0x0,0x0,0x4f,0xc5,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x39,0xa5,0x6,0x19,0x20,0x43,0x0,0x0,0x6d,0x77,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3c,0xbc,0x6,0x38,0x9f,0x35,0x0,0x0,0x3a,0x61,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x20,0x0,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0xb9,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0xea,0x6,0x6c,0xb8,0x3,0x0,0x0,0x83,0x2c,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4c,0x19,0x6,0x74,0xe,0x6a,0x0,0x0,0x63,0x1b,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4c,0x92,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0x23,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0xf5,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3b,0xcb,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x72,0xd0,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0xfe,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6c,0xd4,0x6,0xc3,0xce,0xa3,0x0,0x0,0x75,0xf0,0x6,0xce,0x41,0x63, + 0x0,0x0,0x47,0x98,0x6,0xed,0xca,0xce,0x0,0x0,0x49,0x48,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xd6,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0xa6,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4c,0x54,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x8f,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x57,0x1e,0x7,0x6,0x93,0xe3,0x0,0x0,0x88,0xaa,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xc1,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x41,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x24,0x7,0x2a,0xb5,0xca,0x0,0x0,0x70,0x80,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5c,0xd4,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4f,0x49,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x65,0x57,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xa4,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x34,0x55,0x7,0x58,0x61,0xe5,0x0,0x0,0x4c,0xe1,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x65,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0xdd,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x31,0x10,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6c,0x7,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x59,0x56,0x7,0xa3,0x63,0x9e,0x0,0x0,0x6b,0x17,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x60,0x7d,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0xdb,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x82,0xe5,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x76,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0xa6,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x28,0x35,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x67,0x24,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x66,0xcf,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3f,0x6e,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6c,0x8f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0xf2,0x8,0x0,0x3f,0x29,0x0,0x0,0x66,0x4d,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5c,0x77,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xf6,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x54,0x48,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7d,0x35,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x63,0x4b,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x6b,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7e,0xa2,0x8,0x9b,0xc,0x24,0x0,0x0,0x6f,0x1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x51,0x83,0x8,0xa3,0xdb,0xae,0x0,0x0,0x52,0x37,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x51,0xbf,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0xfb,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3e,0x25,0x8,0xa9,0xcf,0x35,0x0,0x0,0x32,0xb2,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x42,0x46,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x2b,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x40,0x9f,0x8,0xf7,0xb3,0xda,0x0,0x0,0x47,0x4b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x53,0xf6,0x9,0x49,0xfa,0x4a,0x0,0x0,0x35,0x95,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0xd3,0x9,0x49,0xfa,0x6a,0x0,0x0,0x35,0x19,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x35,0x57,0x9,0x4e,0xde,0x64,0x0,0x0,0x7f,0x5,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5e,0x59,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x49,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x27,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x91,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x68,0x19,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x18,0x9,0x88,0x63,0xa, + 0x0,0x0,0x31,0x71,0x9,0x88,0x63,0x1a,0x0,0x0,0x31,0x9d,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0xc9,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0xf5,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x60,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x79,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa8,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5e,0x1d,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x64,0xa1,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0xc9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5d,0x36,0x9,0xd5,0x43,0xd3,0x0,0x0,0x37,0x5b,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0x2b,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x69,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0xee,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xe7,0xa,0x41,0x77,0x3, + 0x0,0x0,0x46,0xac,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x6b,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x47,0xd8,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x40,0x65,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x51,0x2f,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x54,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x82,0x3e,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6e,0x3c,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x76,0x46,0xa,0x98,0x1f,0x89,0x0,0x0,0x38,0xab,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x38,0x60,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x50,0x37,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x37,0xef,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xab,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x38,0xf6,0xa,0xda,0x50,0x7e,0x0,0x0,0x80,0x3f,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xee,0xa,0xea,0x46,0xf4,0x0,0x0,0x5e,0xa5,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x39,0x1e,0xb,0xa,0x72,0xc9,0x0,0x0,0x3b,0xa5,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x1c,0xb,0x1e,0xee,0xfe,0x0,0x0,0x5a,0xc7,0xb,0x29,0x70,0x65, + 0x0,0x0,0x48,0x78,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x44,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x36,0xb,0x4e,0x19,0x54,0x0,0x0,0x55,0x29,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x46,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xd1,0xb,0x95,0xed,0xa, + 0x0,0x0,0x56,0xcd,0xb,0x9d,0xe,0xa2,0x0,0x0,0x34,0x1d,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x37,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6e,0xf,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x71,0x56,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x26,0x25,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x4a,0x41,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4e,0xb0,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x88,0x70,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x65,0x9d,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x76,0xef,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xbb,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x98,0xc,0x33,0xeb,0xe2,0x0,0x0,0x77,0x49,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x46,0x6,0xc,0x42,0x70,0xde,0x0,0x0,0x2a,0x67,0xc,0x48,0x83,0xde, + 0x0,0x0,0x67,0x79,0xc,0x4a,0x5f,0x82,0x0,0x0,0x50,0x87,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x79,0x5f,0xc,0x77,0x67,0x19,0x0,0x0,0x46,0x4e,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3c,0x78,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x7a,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0xdd,0xc,0x90,0x26,0xb5,0x0,0x0,0x80,0xe3,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x62,0xa2,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0xda,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x70,0x49,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x54,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x60,0x2e,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x83,0x62,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x66,0x97,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0xf4,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xc8,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0xec,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x85,0x22,0xd,0x4a,0x90,0xb2,0x0,0x0,0x6a,0xdf,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x86,0x42,0xd,0x60,0xef,0x6a,0x0,0x0,0x50,0x5,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x37,0x97,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0xef,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3b,0x76,0xd,0x88,0x48,0x23,0x0,0x0,0x32,0x67,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0xd0,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x28,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x87,0x21,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5f,0x80,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x86,0x18,0xe,0x20,0x13,0x12,0x0,0x0,0x45,0x82,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xe1,0xe,0x48,0xfa,0xca,0x0,0x0,0x2b,0x36,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0xbc,0xe,0x48,0xfd,0xca,0x0,0x0,0x2b,0x79,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0xff,0xe,0x62,0x79,0x4,0x0,0x0,0x3c,0x49,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0x81,0xe,0x7b,0xa1,0x23,0x0,0x0,0x56,0x70,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0xf4,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x8b,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x68,0xc2,0xe,0xbe,0x61,0x81,0x0,0x0,0x6f,0x51,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6f,0x8f,0xe,0xbe,0x61,0x83,0x0,0x0,0x6f,0xcd,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x70,0xb,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4d,0x65,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x6b,0xe,0xe2,0x34,0x60,0x0,0x0,0x88,0x1c,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x88,0x46,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xd9,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x70,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xe8,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x88,0xdf,0xf,0x15,0xf4,0x85,0x0,0x0,0x4f,0x76,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x78,0x67,0xf,0x17,0x9c,0x64,0x0,0x0,0x82,0x9f,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x61,0x86,0xf,0x29,0x4d,0x2a,0x0,0x0,0x49,0x7,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x43,0x6b,0xf,0x30,0x6b,0x3,0x0,0x0,0x33,0x25,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x73,0x5b,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xfd,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0xad,0xf,0x70,0xaa,0x1a,0x0,0x0,0x85,0x5c,0xf,0x74,0xd,0xca, + 0x0,0x0,0x6a,0x64,0xf,0x85,0x7b,0xea,0x0,0x0,0x62,0xd8,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0x6c,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xff,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x69,0x6a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3d,0x6c,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x52,0xbe,0xf,0xd9,0x8c,0xca,0x0,0x0,0x53,0x44,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x53,0x1,0xf,0xd9,0x8f,0xca,0x0,0x0,0x53,0x87,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3f,0xb3,0xf,0xe2,0xe9,0x49,0x0,0x0,0x86,0x99,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x63,0x91,0xf,0xf5,0xeb,0x52,0x0,0x0,0x63,0xd5,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x64,0x19,0xf,0xf5,0xeb,0x54,0x0,0x0,0x64,0x5d,0x69,0x0,0x0,0x89, + 0x63,0x3,0x0,0x0,0x0,0x14,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x41,0x0,0x44,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x6e,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6e, + 0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d, + 0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x61, + 0x0,0x6c,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x70, + 0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa0, + 0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x20,0x66,0x6f,0x72, + 0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f,0x20,0x50,0x44,0x46, + 0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x73, + 0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x67,0x65,0x6e, + 0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20, + 0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20, + 0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69,0x6c,0x65,0x73,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32, + 0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43, + 0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x28,0x0,0x73,0x0,0x29,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42, + 0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0, + 0x30,0x0,0x2c,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0, + 0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x71, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x71,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf, + 0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x41,0x0,0xe7, + 0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0xe2,0x0,0x6d,0x0,0x62,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0, + 0x50,0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x61,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0, + 0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75, + 0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75, + 0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0,0x64,0x0,0x69,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44, + 0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74, + 0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x44, + 0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61, + 0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x41, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61, + 0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0, + 0x50,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26, + 0x0,0x54,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72, + 0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x26,0x0,0x54,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x65,0x0,0x69,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x26,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6a,0x0, + 0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26, + 0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x26,0x0,0x4f,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73, + 0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x26,0x49,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x64,0x0,0x69, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49, + 0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0, + 0x26,0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e, + 0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0, + 0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0, + 0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72, + 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x4d,0x0,0xed,0x0,0x64,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x53,0x0, + 0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x4d,0x0,0x61,0x0,0x69,0x0,0x73,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0xf3,0x0,0x78,0x0,0x69,0x0,0x6d,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67, + 0x0,0x65,0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75, + 0x0,0x73,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0, + 0x75,0x0,0x7a,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0, + 0xea,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x54,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e,0x0,0x7a,0x0,0x61,0x0, + 0x20,0x0,0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x47, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72, + 0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0, + 0x6f,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x4a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0xe1,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x74,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6d,0x0,0x65,0x0,0xe7,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x26, + 0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20, + 0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67,0x68,0x74, + 0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20,0x41,0x4c, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66,0x0,0x74, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65, + 0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0, + 0x50,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x26,0x0,0x73,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0xe7,0x0,0xe3,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20, + 0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79, + 0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x46,0x0,0x65,0x0,0x72, + 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x26,0x0,0x41,0x0, + 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0xed,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70, + 0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20, + 0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x26,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6c,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x45,0x0,0x78, + 0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x6f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65, + 0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4a,0x0,0x26,0x0,0x46,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x28,0x0,0x50,0x0,0x61,0x0,0x64,0x0,0x72, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x28,0x0,0x76,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d,0x70,0x74,0x79,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x31,0x0,0x25,0x0, + 0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x31,0x0,0x2c,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e, + 0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0, + 0x20,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65, + 0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30, + 0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x31,0x36,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x61, + 0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x52,0x0, + 0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x82,0x0,0x4f,0x0,0x20,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75, + 0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x6e, + 0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x76,0x0,0x6f, + 0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72, + 0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68, + 0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73, + 0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72, + 0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x22, + 0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c, + 0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75, + 0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65, + 0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75, + 0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73, + 0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74, + 0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61, + 0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74, + 0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38, + 0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x61,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f, + 0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41, + 0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0, + 0x6f,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f, + 0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x41,0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64, + 0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44, + 0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x41, + 0x0,0x64,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64, + 0x64,0x20,0x4e,0x65,0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x76, + 0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0, + 0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x64,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x4,0x2c,0x0,0x55,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x67,0x0,0x6f,0x0,0x73,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a, + 0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47, + 0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61, + 0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47, + 0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73, + 0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31, + 0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c, + 0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b, + 0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b, + 0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69, + 0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c, + 0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f, + 0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65, + 0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20, + 0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20, + 0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74, + 0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x72, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x7a,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x3a,0x0,0x20,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x4c,0x0,0x69, + 0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x53,0x0,0x69, + 0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x4c,0x0,0x61,0x0,0x6e, + 0x0,0xe7,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e, + 0x0,0xe7,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0xfa,0x0,0x62,0x0,0x6c,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x6a,0x0,0x61, + 0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63, + 0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72, + 0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28, + 0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61, + 0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20, + 0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20, + 0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d, + 0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61, + 0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e, + 0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d, + 0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20, + 0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67, + 0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63, + 0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20, + 0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77, + 0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30, + 0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64, + 0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70, + 0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20, + 0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65, + 0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74, + 0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20, + 0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c, + 0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20, + 0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c, + 0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69, + 0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53, + 0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d, + 0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x54,0x0,0x65,0x0, + 0x6d,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72, + 0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78, + 0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x88,0x0,0x54,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x63,0x0,0x65, + 0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x3f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75, + 0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68, + 0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d, + 0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0, + 0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0, + 0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f, + 0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0, + 0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x62,0x0, + 0xe1,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x0,0x49,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0, + 0x65,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x9,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20, + 0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x42,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e, + 0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x42,0x0,0x61, + 0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x43,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73, + 0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52, + 0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4f,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0, + 0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0, + 0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64, + 0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76, + 0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0, + 0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72, + 0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x3,0x48,0x0,0x41,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x65, + 0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x68,0x0,0x65,0x0,0x72, + 0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69, + 0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c, + 0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x61, + 0x0,0x2e,0x0,0x20,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69, + 0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x75, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41, + 0x0,0x20,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0xe7,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x6c, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0, + 0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72, + 0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x6c,0x0, + 0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x75,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25, + 0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x63,0x0, + 0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x43,0x0,0x61,0x0, + 0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x5c,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0xe1,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63, + 0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e, + 0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x66,0x0,0x69,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x43,0x0,0x6c,0x0, + 0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0, + 0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69, + 0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66, + 0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74, + 0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20, + 0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78, + 0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x4e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65, + 0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, + 0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45, + 0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0, + 0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0, + 0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73,0x74,0x6f,0x6d,0x20, + 0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43, + 0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28, + 0x0,0x63,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72, + 0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x32,0x0,0x30,0x0, + 0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44, + 0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30,0x34,0x38, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x61, + 0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x44,0x0,0x65, + 0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x41,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72, + 0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c, + 0x72,0x65,0x61,0x64,0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0, + 0x6d,0x0,0x75,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e, + 0x0,0x41,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x6f,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x54,0x0,0x61, + 0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x56,0x0,0xed,0x0, + 0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44, + 0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x48,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0, + 0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0, + 0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74, + 0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x69,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65, + 0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20, + 0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67, + 0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x6e,0x0,0xe2,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65, + 0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0xe2,0x0,0x6d,0x0,0x69,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63, + 0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0, + 0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x45,0x0,0x26,0x0,0x6a,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26, + 0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x56,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x53,0x0,0x61,0x0,0x69,0x0,0x72, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53, + 0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0,0x41,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x41,0x0,0x74,0x0, + 0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0, + 0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61, + 0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f, + 0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x46,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x6f, + 0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x0,0x9,0x0,0x43,0x0,0x74, + 0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x45,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x61,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x28, + 0x0,0x26,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x74, + 0x0,0x61,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x53,0x0,0x61,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0xe7,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74, + 0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x34, + 0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26, + 0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79, + 0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e, + 0x74,0x68,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20, + 0x0,0x55,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f, + 0x4e,0x54,0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2,0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f, + 0x4e,0x54,0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4a,0x0,0x46,0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x61,0x0,0x20,0x0, + 0x61,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77, + 0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74, + 0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x52,0x0,0xe1,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x72, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0xe9, + 0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f, + 0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44, + 0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74, + 0x0,0x65,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73, + 0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4d, + 0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x69,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f,0x64,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0,0x61,0x0, + 0x6e,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x54, + 0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x26, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0xe3, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x69,0x0,0x6e, + 0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73, + 0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4,0x0,0x43,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0,0x41, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e, + 0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x69, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x47,0x0,0x42,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x9e,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x6f,0x0,0x75,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x63,0x0, + 0x6f,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x61,0x0, + 0x6d,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0, + 0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x73,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48, + 0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73, + 0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35, + 0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f, + 0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0, + 0xed,0x0,0x67,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xed,0x0,0x67,0x0,0x69, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61, + 0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48, + 0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x43,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0xe7,0x0,0x61,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20, + 0x73,0x63,0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x4f,0x0,0x63,0x0,0x75,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x26,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x47,0x0,0x72, + 0x0,0xe1,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x49, + 0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20, + 0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44, + 0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61, + 0x0,0x6e,0x0,0x73,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e, + 0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x52,0x0,0x54,0x0,0x43,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x6f,0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67, + 0x0,0x67,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x49,0x53,0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x63,0x0,0x6f,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0xed,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x46,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x6e,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74, + 0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0, + 0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63, + 0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x49,0x0,0x64,0x0,0x69,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0,0x6c, + 0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20, + 0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20, + 0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x54, + 0x0,0x72,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x0,0x6e,0x0,0x68,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0, + 0x41,0x0,0x73,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0, + 0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x75,0x0, + 0x6e,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53, + 0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x2e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d, + 0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x2e,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x61,0x0, + 0xed,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x32,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0, + 0x74,0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x61,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d, + 0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x74, + 0x0,0x6f,0x0,0x2d,0x0,0xf3,0x0,0x70,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x4d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf6,0x0,0x41,0x0,0x20,0x0,0x6d, + 0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x22, + 0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0xe0,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20, + 0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x74, + 0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x4d,0x0,0x75,0x0,0x64,0x0,0x61, + 0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20, + 0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20, + 0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69, + 0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe1, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xd4,0x0,0x43,0x0,0x65,0x0,0x72,0x0, + 0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x2d,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x20,0x0,0x76,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x78,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0xed,0x0,0x76,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x43,0x0, + 0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0, + 0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x78,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0xe9,0x0, + 0x20,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20, + 0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78, + 0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64, + 0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x92, + 0x0,0x43,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71, + 0x0,0x75,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61, + 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x61,0x0,0x6c,0x0,0x76,0x0,0x6f,0x0,0x20, + 0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x72,0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x76,0x0,0xe1,0x0,0x76,0x0,0x65,0x0,0x6c, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65, + 0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69, + 0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65, + 0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x4d,0x0,0x65,0x0,0x6d,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x61,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72, + 0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0, + 0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0, + 0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74, + 0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4d,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x75,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xe3, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x64, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x72, + 0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76, + 0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x4d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x52,0x0,0x65,0x0,0x64,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x41,0x0,0x64,0x0,0x61, + 0x0,0x70,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20, + 0x61,0x64,0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0,0x65,0x0, + 0x6e,0x0,0x68,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x6f,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x65,0x0,0x6e,0x0, + 0x68,0x0,0x75,0x0,0x6d,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x4e,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6f,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x44,0x0,0x65,0x0,0x73,0x0,0x6c,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x4c,0x0,0x69,0x0,0x67,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0xfa,0x0,0x63,0x0,0x6c,0x0,0x65, + 0x0,0x6f,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xaa,0x0,0x4f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0xfa,0x0,0x63,0x0,0x6c,0x0,0x65,0x0,0x6f,0x0,0x20,0x0, + 0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0xf4,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0, + 0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33, + 0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65, + 0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20, + 0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68, + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f, + 0x0,0x75,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe9,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x6f, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65, + 0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x2e,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x76,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f, + 0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x53,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x65,0x0,0x72, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69, + 0x0,0x76,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54, + 0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x67,0x0,0x6e,0x0,0xf3,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x61,0x0, + 0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x41,0x0,0x20,0x0,0x64,0x0,0x61,0x0, + 0x74,0x0,0x61,0x0,0x2f,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x70,0x0,0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x66,0x0, + 0x69,0x0,0x6c,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20, + 0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73, + 0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74, + 0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65, + 0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x69,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x44,0x0,0x69,0x0, + 0x67,0x0,0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x6d,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0,0x20,0x0, + 0x76,0x0,0xe1,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70, + 0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x73,0x0, + 0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50, + 0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xea,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x61,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50, + 0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0, + 0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65, + 0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0, + 0x55,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0, + 0x6e,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x6a,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x74,0x75, + 0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64,0x20,0x6d, + 0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x41,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0, + 0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x75,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x65,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x65,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50, + 0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d, + 0x69,0x64,0x64,0x6c,0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20, + 0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x41,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36, + 0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20, + 0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0xe1, + 0x0,0x72,0x0,0x69,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19, + 0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43, + 0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4c,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65, + 0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x52,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61, + 0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x4c,0x0, + 0x65,0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x2d,0x0,0x73,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x63,0x0, + 0xe9,0x0,0x6d,0x0,0x2d,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d, + 0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69, + 0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20, + 0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73, + 0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x65,0x0,0x63,0x0,0x75,0x0, + 0xe7,0x0,0xe3,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52, + 0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x53,0x0,0x45,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x76, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x55,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x70,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x67,0x0,0x6c,0x0, + 0x6f,0x0,0x62,0x0,0x61,0x0,0x69,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x7e,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xed, + 0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x62, + 0x0,0x61,0x0,0x6c,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x20,0x0, + 0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x69,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0xe7,0x0,0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6e, + 0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c, + 0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x53,0x0,0x6f, + 0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e, + 0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x47, + 0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69, + 0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x47,0x0,0x61,0x0,0x6e,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x50,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73, + 0x0,0xf5,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x6a, + 0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70,0x0,0x61,0x0,0x6c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0xf5,0x0,0x65,0x0, + 0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69, + 0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x64,0x0, + 0x61,0x0,0x64,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x2e,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d, + 0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0,0xf4, + 0x0,0x6e,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55, + 0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0, + 0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0, + 0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0, + 0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4a,0x0,0x6f, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x36,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf5,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f, + 0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x20,0x0,0x62,0x0,0x6f,0x0, + 0x74,0x0,0xf5,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x6d,0x0,0x61, + 0x0,0x7a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x49,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0xed, + 0x0,0x63,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x43,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73,0x68,0x6f, + 0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x54,0x0,0x61,0x0,0x78,0x0,0x61,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0, + 0x72,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65, + 0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0, + 0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0xe1,0x0,0x72,0x0,0x69,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x41,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0, + 0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0xe1,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x9c,0x0,0x4f,0x0, + 0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x0, + 0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0, + 0xe1,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x56,0x0, + 0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x20,0x0, + 0x63,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x65,0x0,0x7a,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x73,0x0, + 0xe1,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x2,0x22,0x0,0x49,0x0,0x73,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x67,0x0, + 0x6e,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6f,0x0,0x72,0x0,0x69,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x69,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x70,0x0, + 0xf3,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x69,0x0, + 0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0, + 0x61,0x0,0x6c,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x6d,0x0, + 0x62,0x0,0xe9,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x63,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x20,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0, + 0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x64,0x0, + 0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0, + 0x73,0x0,0x20,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0, + 0x75,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6d,0x0, + 0x20,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x6f,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0, + 0xa,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x65,0x0, + 0x72,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x6d,0x0,0x70,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e, + 0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66, + 0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69, + 0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49, + 0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65, + 0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20, + 0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79, + 0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72, + 0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74, + 0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44, + 0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69, + 0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x0,0x49,0x0,0x73, + 0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72,0x0,0xe1,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe1,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64, + 0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x0,0x53,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0, + 0x20,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0, + 0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20, + 0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x61, + 0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f, + 0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f, + 0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x4f,0x0,0x20,0x0,0x55,0x0,0x53, + 0x0,0x42,0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x20, + 0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4e,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0, + 0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69, + 0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73, + 0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72, + 0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x2c,0x0,0x20,0x0,0xe9,0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65, + 0x0,0x73,0x0,0x73,0x0,0xe1,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x6f, + 0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c, + 0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62, + 0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, + 0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69, + 0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6a,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0, + 0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x73,0x0,0x20,0x0, + 0x61,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0, + 0x74,0x0,0x65,0x0,0x63,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64, + 0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0, + 0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56,0x0,0x4e,0x0, + 0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74,0x0, + 0x61,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20, + 0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x4e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x66,0x0, + 0x6f,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0xed,0x0, + 0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x65,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x61,0x0, + 0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77, + 0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x36,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6d, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x75, + 0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0, + 0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55, + 0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x54,0x0, + 0x69,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0, + 0x65,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65, + 0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x41,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x76,0x0,0x6f, + 0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0xc,0x0,0x41,0x0,0x20,0x0,0x70,0x0,0x6c, + 0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0xe0,0x0,0x20, + 0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x6f, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x74,0x0,0xf3,0x0,0x72, + 0x0,0x69,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f, + 0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x0,0x4d, + 0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20, + 0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0xed,0x0,0x76,0x0,0x65, + 0x0,0x6c,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69, + 0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69, + 0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20, + 0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52, + 0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f, + 0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f, + 0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x56,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x33,0x0,0x44,0x0,0x46,0x0,0x58, + 0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47, + 0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x42,0x0,0x65,0x0,0x6d,0x0,0x2d,0x0, + 0x76,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6f,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x4c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x72,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x47,0x0,0x72,0x0,0xe1,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72, + 0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x6d,0x0, + 0x61,0x0,0x69,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0xe1,0x0,0x70,0x0,0x69,0x0, + 0x64,0x0,0x6f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x56,0x0,0x6f,0x0,0x63,0x0,0xea,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe1,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0, + 0x20,0x0,0x75,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0xe3,0x0, + 0x6f,0x0,0x20,0x0,0x6e,0x0,0xe3,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c, + 0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x64,0x0,0x61, + 0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x20, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x5a,0x49,0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0, + 0x33,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c, + 0x69,0x62,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_pl-PL.qm + 0x0,0x0,0x93,0xd1, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0xaf,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0x43,0x0,0x0,0x0,0x53,0x0,0x0,0x69,0xf6,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x5c,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0xbf,0x0,0x0,0x5,0x12, + 0x0,0x0,0x52,0x92,0x0,0x0,0x5,0x3b,0x0,0x0,0x5d,0x36,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5d,0x75,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xf5,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x3d,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0x85,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xc4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0xc,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x54,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0x9c,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xba,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0x54,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0x80,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0x9e,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5d,0x51,0x0,0x0,0x5d,0x81,0x0,0x0,0x84,0x33,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x2b,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xa3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x66,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0xaa,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x28,0x80,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0x89,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0x98,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0xc1,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x1d,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0x1e,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0xa9,0x0,0x5,0x56,0x45,0x0,0x0,0x5c,0xbf,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6a,0xe,0x0,0x5,0x98,0xc5,0x0,0x0,0x6a,0xf2,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6e,0x75,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x5b,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x5c,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0x95,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xd1,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x59,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x67,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x4b,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xae,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x5a,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7f,0x17,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x1c,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xf,0x0,0x4c,0x99,0x62,0x0,0x0,0x3f,0xfe,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x83,0x0,0x58,0xc9,0xc4,0x0,0x0,0x69,0x85,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x71,0x69,0x0,0x5a,0x6c,0x44,0x0,0x0,0x6e,0xec,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7b,0xf9,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7c,0x80,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x86,0xa1,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0x28,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5c,0x69,0x0,0x97,0x96,0x4,0x0,0x0,0x37,0xce,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4e,0xdf,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x50,0x8f,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0x4,0x0,0xb8,0x5f,0x43,0x0,0x0,0x5e,0xfd,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x19,0x23,0x1,0x9,0x1c,0x92,0x0,0x0,0x41,0xfe,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0x62,0x1,0x39,0xa4,0xce,0x0,0x0,0x59,0xe,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7c,0x1d,0x1,0x4c,0x50,0xee,0x0,0x0,0x67,0x62,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x49,0xc1,0x1,0x61,0xac,0xc9,0x0,0x0,0x13,0x6c,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7a,0x94,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3b,0xf7,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0x51,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4c,0x34,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x54,0x1f,0x1,0xb0,0x47,0x5c,0x0,0x0,0x52,0xad,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xa,0x7f,0x1,0xc8,0x65,0x8f,0x0,0x0,0x41,0x44,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0x49,0x1,0xdd,0x59,0x87,0x0,0x0,0xf,0x49,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x31,0xf4,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6a,0xb6,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x71,0xc0,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x16,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x73,0x81,0x2,0x23,0x3c,0x6b,0x0,0x0,0x73,0xe,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x72,0x9b,0x2,0x3c,0xaa,0x89,0x0,0x0,0x16,0xe4,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4b,0xa3,0x2,0x78,0x48,0x1a,0x0,0x0,0x53,0xc7,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x84,0x93,0x2,0x90,0x8d,0x12,0x0,0x0,0x42,0xcd,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x5f,0x94,0x2,0xad,0x4a,0x22,0x0,0x0,0x67,0xc9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x8,0xcf,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0x3e,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0x24,0x2,0xbb,0x66,0x33,0x0,0x0,0x11,0xc6,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x12,0x87,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x5f,0x38,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x86,0xc5,0x3,0x5,0x38,0xb2,0x0,0x0,0x40,0x20,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x63,0x27,0x3,0x41,0x45,0x12,0x0,0x0,0x14,0x7e,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x15,0x60,0x3,0x4b,0x26,0xf2,0x0,0x0,0x15,0x87,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x52,0xd7,0x3,0x65,0x26,0xf2,0x0,0x0,0x18,0x49,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x18,0x70,0x3,0x6a,0x66,0x2e,0x0,0x0,0x57,0x33,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x55,0x20,0x3,0x7d,0x6c,0xe,0x0,0x0,0xa,0xcc,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x30,0xcf,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x77,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x19,0xce,0x3,0xa4,0x35,0xa5,0x0,0x0,0x42,0x78,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x42,0x4a,0x3,0xa5,0x26,0xf2,0x0,0x0,0x19,0xf5,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x59,0xe1,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x72,0x23,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x70,0x7a,0x3,0xe4,0x25,0x5a,0x0,0x0,0x70,0x34,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x6f,0xee,0x3,0xe4,0x25,0x7a,0x0,0x0,0x6f,0xa8,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x5,0xd8,0x4,0x3,0xf6,0x9a,0x0,0x0,0x56,0xc6,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x17,0x3b,0x4,0x15,0x75,0x22,0x0,0x0,0x14,0xa5,0x4,0x17,0x65,0x22, + 0x0,0x0,0x14,0xcf,0x4,0x1c,0x68,0x69,0x0,0x0,0x16,0x8a,0x4,0x23,0x29,0x55, + 0x0,0x0,0xa,0xfc,0x4,0x31,0xff,0xe9,0x0,0x0,0x26,0xdb,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0x13,0x4,0x51,0x79,0xb1,0x0,0x0,0x74,0x8d,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7d,0x88,0x4,0x5b,0x53,0x1f,0x0,0x0,0x25,0xdc,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x6f,0x63,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3c,0xbc,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3c,0xe5,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x34,0xa3,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x2f,0xf8,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0x16,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xc,0x8d,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xac,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x17,0xef,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5b,0x32,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0x5a,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x17,0x95,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1d,0xa9,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5b,0x56,0x4,0xeb,0x2f,0xa,0x0,0x0,0x51,0xde,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4b,0x4a,0x5,0x18,0x5,0x95,0x0,0x0,0x7f,0xb1,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xf,0x5,0x30,0xd3,0xe,0x0,0x0,0x3b,0x2c,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5b,0xd,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x85,0x5a,0x5,0x5f,0x7b,0x59,0x0,0x0,0xf,0xf8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3d,0x3b,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6e,0x9c,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x55,0x4a,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7b,0xa8,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x75,0xbf,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0x23,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x71,0x93,0x5,0xb2,0x16,0x79,0x0,0x0,0x68,0x36,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x48,0x50,0x5,0xb3,0x5f,0x79,0x0,0x0,0x49,0x7c,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x3f,0x85,0x5,0xb8,0x5d,0xad,0x0,0x0,0x15,0xae,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x13,0xf9,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x14,0xf9,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4b,0xe8,0x5,0xc1,0x4d,0x83,0x0,0x0,0x38,0x4e,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x82,0xb3,0x5,0xd0,0x4f,0x11,0x0,0x0,0x83,0x5f,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xe,0xee,0x5,0xdf,0xba,0xba,0x0,0x0,0x83,0xa3,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x66,0xd0,0x6,0x7,0xd3,0xda,0x0,0x0,0x4d,0xd1,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x37,0xfd,0x6,0x19,0x20,0x43,0x0,0x0,0x6b,0x17,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3a,0xf0,0x6,0x38,0x9f,0x35,0x0,0x0,0x38,0xbd,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x1f,0x3c,0x6,0x51,0xe6,0x13,0x0,0x0,0x6,0x85,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x33,0x8c,0x6,0x6c,0xb8,0x3,0x0,0x0,0x80,0xfa,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4a,0x53,0x6,0x74,0xe,0x6a,0x0,0x0,0x60,0x5d,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4a,0xc4,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1d,0x7b,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3e,0x35,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0x11,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x70,0xc0,0x6,0x96,0xa4,0x13,0x0,0x0,0x45,0x74,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6a,0x74,0x6,0xc3,0xce,0xa3,0x0,0x0,0x73,0xf4,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0x16,0x6,0xed,0xca,0xce,0x0,0x0,0x47,0xb0,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x7,0xae,0x6,0xfa,0xae,0xd4,0x0,0x0,0x8,0x80,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4a,0x8a,0x7,0x0,0x57,0x53,0x0,0x0,0x28,0xc7,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x54,0xf0,0x7,0x6,0x93,0xe3,0x0,0x0,0x86,0x38,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1e,0xfd,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0xf,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x5e,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6e,0x3c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5a,0x68,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0x57,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x62,0x9d,0x7,0x40,0xb5,0xe2,0x0,0x0,0x18,0xf0,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x32,0xeb,0x7,0x58,0x61,0xe5,0x0,0x0,0x4a,0xfb,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x11,0xf5,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x3f,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0xb8,0x7,0x9e,0x50,0x1e,0x0,0x0,0x69,0xaf,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0x6,0x7,0xa3,0x63,0x9e,0x0,0x0,0x68,0xb1,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5d,0xe1,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x33,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x80,0xb1,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x4c,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x7c,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x27,0x5f,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x64,0x68,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x64,0x17,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3d,0xaa,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6a,0x2f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4c,0xfe,0x8,0x0,0x3f,0x29,0x0,0x0,0x63,0x99,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0xb,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xba,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0x52,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7b,0x2d,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x60,0x8d,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x43,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0xa8,0x8,0x9b,0xc,0x24,0x0,0x0,0x6c,0xa5,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0x9f,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0x53,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x4f,0xdb,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0x17,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0x67,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x5a,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0x88,0x8,0xcc,0x85,0x75,0x0,0x0,0x6,0xfd,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3e,0xd9,0x8,0xf7,0xb3,0xda,0x0,0x0,0x45,0xd1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x8,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0x2f,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x69,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0xbb,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x33,0xf5,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0x11,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5b,0xd5,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x13,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0x97,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x5b,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x65,0x6f,0x9,0x82,0x6d,0x53,0x0,0x0,0x4,0xe2,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0x1f,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0x4b,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0x77,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0xa3,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x2a,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x71,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0x72,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5b,0x99,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x61,0xd7,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x39,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5a,0xc4,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xb1,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xc1,0xa,0xf,0x3d,0xb9,0x0,0x0,0x10,0xf5,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x30,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0x9f,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0x20,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xcf,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0x4c,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3e,0x9b,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0x41,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x12,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0x8,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6b,0xe8,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0x40,0xa,0x98,0x1f,0x89,0x0,0x0,0x36,0xff,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xb4,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0x45,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x43,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0x7f,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x4a,0xa,0xda,0x50,0x7e,0x0,0x0,0x7e,0x23,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0x9e,0xa,0xea,0x46,0xf4,0x0,0x0,0x5c,0x7,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x76,0xb,0xa,0x72,0xc9,0x0,0x0,0x39,0xeb,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x7,0xf4,0xb,0x1e,0xee,0xfe,0x0,0x0,0x58,0x69,0xb,0x29,0x70,0x65, + 0x0,0x0,0x46,0xd6,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x14,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xc,0xf8,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0x25,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x4,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0x8d,0xb,0x95,0xed,0xa, + 0x0,0x0,0x54,0xbd,0xb,0x9d,0xe,0xa2,0x0,0x0,0x32,0xb3,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xa5,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6b,0xbb,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6f,0x12,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x53,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0x95,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0xbc,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x86,0x2,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x62,0xeb,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x74,0xf1,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0x75,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x3a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0x5b,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0x76,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x8d,0xc,0x48,0x83,0xde, + 0x0,0x0,0x64,0xb9,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0x8f,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0x69,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0xbc,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3a,0xb4,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x3a,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0x83,0xc,0x90,0x26,0xb5,0x0,0x0,0x7e,0xbf,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x5f,0xf0,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x12,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6e,0xb,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x28,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5d,0x96,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0x2a,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x63,0xe1,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x40,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xc,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0x18,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x82,0xda,0xd,0x4a,0x90,0xb2,0x0,0x0,0x68,0x81,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x83,0xfc,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0x7,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x35,0xed,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x63,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x39,0xb0,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0x15,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0xc,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x2,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x84,0xd1,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5c,0xe2,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x83,0xd2,0xe,0x20,0x13,0x12,0x0,0x0,0x43,0xe6,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0x75,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0x5e,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0xe0,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0x9f,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0x21,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0x83,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0xc1,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0x78,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0x8a,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0xbb,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x66,0x3e,0xe,0xbe,0x61,0x81,0x0,0x0,0x6d,0x3,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6d,0x45,0xe,0xbe,0x61,0x83,0x0,0x0,0x6d,0x87,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6d,0xc9,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0x75,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x13,0xcf,0xe,0xe2,0x34,0x60,0x0,0x0,0x85,0xae,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x85,0xd8,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xd3,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x2e,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0x84,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x86,0x6b,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0x84,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x76,0x83,0xf,0x17,0x9c,0x64,0x0,0x0,0x80,0x63,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5e,0xbe,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x5b,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0xb3,0xf,0x30,0x6b,0x3,0x0,0x0,0x31,0xbf,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x71,0x1b,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xb3,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x13,0xf,0x70,0xaa,0x1a,0x0,0x0,0x83,0x1a,0xf,0x74,0xd,0xca, + 0x0,0x0,0x68,0x6,0xf,0x85,0x7b,0xea,0x0,0x0,0x60,0x1c,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x12,0xd4,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xb7,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x66,0xfc,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0xa2,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x50,0xda,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0x5c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x1b,0xf,0xd9,0x8f,0xca,0x0,0x0,0x51,0x9d,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3d,0xef,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0x51,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x60,0xbf,0xf,0xf5,0xeb,0x52,0x0,0x0,0x61,0x5,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x61,0x4b,0xf,0xf5,0xeb,0x54,0x0,0x0,0x61,0x91,0x69,0x0,0x0,0x86, + 0xef,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x46,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x6e, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x6e, + 0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x77,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69, + 0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x73,0x1,0x42,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x67,0x0,0xf3, + 0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x72,0x0,0x75, + 0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x1,0x5, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63, + 0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20, + 0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69, + 0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x36,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x72, + 0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x0,0x20,0x0,0x25,0x0,0x68,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x53,0x0,0x74,0x0, + 0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,0x0, + 0x6b,0x0,0x69,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73, + 0x74,0x61,0x74,0x65,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x25,0x75,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0, + 0x75,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0, + 0x53,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0, + 0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0, + 0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x35,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20, + 0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x37,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6,0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3,0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x38,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26, + 0x0,0x4f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41, + 0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x6b,0x0,0x63, + 0x0,0x6a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28, + 0x0,0x26,0x0,0x42,0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x7a,0x0,0x74,0x0,0x79, + 0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x0,0x26,0x0,0x41,0x0, + 0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0, + 0x7a,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x75,0x0,0x7a,0x0, + 0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x72,0x0, + 0x61,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6f,0x0,0x6b,0x0, + 0x75,0x0,0x73,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f, + 0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x1,0x5a,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x6e,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72, + 0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65, + 0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1, + 0x5b,0x0,0x6c,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44, + 0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x49,0x0,0x73, + 0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79, + 0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x49,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26, + 0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65, + 0x0,0x77,0x0,0x69,0x1,0x44,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6b, + 0x0,0x6f,0x1,0x44,0x0,0x63,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x54,0x0,0x65,0x0,0x63,0x0,0x7a,0x0, + 0x6b,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x54,0x0,0x72,0x0,0x79, + 0x0,0x62,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x63,0x0,0x69,0x1,0x5, + 0x0,0x67,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x65,0x1,0x42,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20, + 0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x50,0x0,0x65,0x1,0x42,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0, + 0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x5a,0x0,0x69,0x0, + 0x65,0x0,0x6c,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x54, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x50,0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x55,0x0,0x6b,0x0,0x72,0x0,0x79,0x0, + 0x6a,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x20,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2a,0x0,0x26,0x0,0x53,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x1,0x42, + 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73, + 0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x0,0x4f,0x0,0x64,0x0,0x77,0x0,0x72,0x0,0xf3,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0, + 0x61,0x0,0x69,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x77,0x0, + 0x79,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x77,0x0,0x79,0x0,0x74,0x0,0x75,0x0, + 0x20,0x0,0x6d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72, + 0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x4c,0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e,0x0,0x6f,0x1,0x5b,0x0,0x6e,0x0,0x69, + 0x0,0x6b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64, + 0x69,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x1, + 0x5a,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x26,0x0,0x4e,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x65,0x0, + 0x73,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65, + 0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26, + 0x0,0x4e,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61, + 0x0,0x75,0x0,0x7a,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x26,0x50,0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x26,0x0,0x4f,0x0,0x64,0x0,0x74,0x0,0x77,0x0,0xf3,0x0,0x72,0x0, + 0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0, + 0x6a,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x53,0x0,0x6b,0x0, + 0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x61,0x0,0x72,0x0, + 0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e,0x0,0x61, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x70, + 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x69,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f, + 0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x55,0x0,0x73,0x0,0x75,0x1,0x44,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x55,0x0,0x73,0x0, + 0x75,0x1,0x44,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x34,0x0,0x26,0x0,0x4f,0x0,0x6b,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x6f,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e, + 0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69, + 0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69, + 0x6e,0x64,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x26,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x77,0x0,0x69,0x1,0x44,0x0, + 0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x1, + 0x5,0x0,0x74,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x26,0x0,0x50,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x79, + 0x0,0x20,0x0,0x43,0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x74,0x0,0x6f, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x0,0x57,0x0,0x79,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x7a, + 0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x55,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4f,0x0,0x6b,0x0,0x72,0x0, + 0x65,0x1,0x5b,0x0,0x6c,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x26,0x0,0x4b,0x0, + 0x77,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x77,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x69,0x0,0x6b,0x0,0x73,0x0,0x65,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x28,0x0,0x5a,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x6f,0x0, + 0x77,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0, + 0x6f,0x0,0x72,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65,0x20,0x70,0x69,0x78, + 0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61,0x74,0x69,0x6f,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x5a,0x0, + 0x73,0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x7a,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x77,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20,0x76,0x69,0x64,0x65, + 0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x4e, + 0x0,0x61,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x26,0x0,0x41,0x0, + 0x6b,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x7a,0x0,0x75,0x0, + 0x6a,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x73,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61,0x74,0x65, + 0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63,0x6f,0x6e, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x56, + 0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x56, + 0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0, + 0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x57,0x0,0x69,0x0,0x64,0x0,0x6f,0x0,0x6b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56,0x69,0x65,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26,0x0,0x42,0x0,0x69, + 0x0,0x61,0x1,0x42,0x0,0x79,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26,0x0,0x43,0x0,0x7a,0x0, + 0x79,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x6b,0x0, + 0x61,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x28,0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x79, + 0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65, + 0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x28,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0, + 0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6c,0x0, + 0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x6f,0x0,0x74,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0, + 0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2c,0x0,0x34,0x0,0x34,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34, + 0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0, + 0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x1,0x7c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x65,0x0, + 0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x1,0x7c,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x64,0x0,0x65, + 0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2c,0x0,0x38,0x0,0x38,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2c,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2c,0x0,0x33,0x0,0x20,0x0,0x47,0x0,0x42, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0, + 0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x6b, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x53,0x0, + 0x6b,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x1,0x42,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0, + 0x69,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20,0x49,0x6e, + 0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2c,0x0,0x33,0x0,0x20,0x0,0x47,0x0, + 0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22, + 0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36, + 0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20,0x6b,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0,0x32,0x0, + 0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0xa4,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c, + 0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x1,0x7a, + 0x1,0x7,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3, + 0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20, + 0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x74,0x0,0x6b,0x0,0x75,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x50,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x7a,0x1,0x19,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x7a, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68, + 0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74, + 0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f, + 0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f, + 0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e, + 0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e, + 0x0,0x2c,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x70, + 0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x74, + 0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x22,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xac,0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61, + 0x62,0x6c,0x65,0x20,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa, + 0xa,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e, + 0x63,0x6f,0x6d,0x2f,0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72, + 0x65,0x6c,0x65,0x61,0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e, + 0x64,0x6f,0x77,0x6e,0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52, + 0x4f,0x4d,0x20,0x73,0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61, + 0x63,0x74,0x20,0x69,0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22, + 0x72,0x6f,0x6d,0x73,0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0, + 0x42,0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x41,0x0,0x43,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50, + 0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x0,0x4f,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0, + 0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0, + 0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x20,0x0,0x74,0x0,0x77,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61, + 0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x44,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b, + 0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x0,0x5a,0x0,0x61,0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x65, + 0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73, + 0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x57,0x0,0x73,0x0,0x7a,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41, + 0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x57,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x6b,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41,0x6c,0x6c, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x4,0x1e,0x0,0x45,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x79,0x0,0x63, + 0x0,0x68,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x75,0x0,0x74, + 0x0,0x65,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0xa, + 0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c, + 0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69, + 0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68, + 0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74, + 0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70, + 0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x69, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x74,0x1,0x42,0x0,0x75,0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x7a,0x0,0x3a,0x0,0x20,0x0,0x46,0x0,0x61, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x2d,0x0,0x53,0x0,0x68,0x0,0x6f,0x0,0x6b, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x79,0x0,0x64, + 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20, + 0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65,0x0,0x6e,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75,0x0,0x62,0x0,0x6c, + 0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x6e, + 0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6c,0x0,0x75, + 0x0,0x62,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x73,0x0,0x7a,0x0,0x65, + 0x0,0x6a,0x0,0x2e,0x0,0x20,0x0,0x5a,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x63, + 0x0,0x7a,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x75,0x0,0x7a, + 0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x77,0x0,0x69, + 0x1,0x19,0x0,0x63,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66, + 0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75, + 0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d, + 0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a, + 0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42, + 0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64, + 0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77, + 0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f, + 0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20, + 0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74, + 0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47, + 0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75, + 0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61, + 0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f, + 0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64, + 0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e, + 0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c, + 0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c, + 0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65, + 0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61, + 0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c, + 0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c, + 0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e, + 0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e, + 0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63, + 0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e, + 0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65, + 0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72, + 0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x65,0x1,0x5b,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x77,0x0,0x69,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0, + 0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6b,0x0, + 0x6f,0x1,0x44,0x0,0x63,0x0,0x7a,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x80,0x0,0x4a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x65,0x1,0x5b,0x0,0x20, + 0x0,0x70,0x0,0x65,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20,0x1,0x7c, + 0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x61,0x1,0x7, + 0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20, + 0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6a, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x79, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79, + 0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0, + 0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0, + 0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26, + 0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0, + 0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26, + 0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x50,0x0,0x6f,0x0,0x64,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x77,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x70,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0, + 0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x1,0x5b,0x0,0x6c,0x0,0x65,0x0,0x64,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52, + 0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x62, + 0x0,0x6c,0x0,0x6f,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4d,0x0,0x61,0x0,0x67, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4d,0x0,0x61,0x0,0x67,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19, + 0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44, + 0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4e,0x0,0x4f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x63,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x43,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0, + 0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x26,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50, + 0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28, + 0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0, + 0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4f,0x0, + 0x4d,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43, + 0x4f,0x4d,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64, + 0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x4f, + 0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0, + 0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xd0,0x0,0x57,0x0,0x79,0x0,0x62,0x0,0xf3, + 0x0,0x72,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a, + 0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73, + 0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x70,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x79,0x1,0x42, + 0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x64, + 0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e, + 0x0,0x79,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x50,0x0,0x6f,0x0,0x7a,0x0,0x77, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x6e, + 0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x62,0x0,0xf3,0x0,0x72,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0,0x79,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x77, + 0x0,0x79,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x6d, + 0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x1,0x5,0x0,0x2e,0x0,0x20, + 0x0,0x4a,0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x20,0x0,0x6d, + 0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x6b,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x7a,0x0,0x67,0x0,0x6f,0x0,0x64,0x0,0x6e,0x0,0x6f, + 0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x42,0x0,0x49, + 0x0,0x4f,0x0,0x53,0x0,0x2d,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x6d,0x0,0x61, + 0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6c,0x0,0x75, + 0x0,0x62,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0,0x20, + 0x0,0x6f,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d, + 0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6d,0x0,0x2e, + 0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x6b,0x0,0x74,0x0,0x79,0x0,0x77,0x0,0x61, + 0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70, + 0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x20,0x0,0x6b,0x0,0x61,0x1,0x7c,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x7a, + 0x0,0x67,0x1,0x42,0x0,0x6f,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x62,0x1,0x42,0x1,0x19,0x0,0x64,0x0,0x75,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x6d,0x0,0x6b, + 0x0,0x6e,0x0,0x69,0x1,0x19,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x61, + 0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x61, + 0x1,0x7c,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65, + 0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69, + 0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74, + 0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65, + 0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68, + 0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20, + 0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74, + 0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c, + 0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74, + 0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74, + 0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e, + 0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63, + 0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f, + 0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65, + 0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c, + 0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x52, + 0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x70,0x0,0x72, + 0x0,0x6f,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x41, + 0x0,0x6e,0x0,0x75,0x0,0x6c,0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0, + 0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4b,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0, + 0x79,0x0,0x64,0x1,0x7c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x3a,0x0,0x20,0x0, + 0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43, + 0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0, + 0x74,0x0,0x72,0x0,0x79,0x0,0x64,0x1,0x7c,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x73,0x0,0x65,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73,0x73,0x65, + 0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x61,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x5a,0x0,0x6d,0x0,0x69, + 0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x26,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x68,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x79,0x0,0x63,0x0,0x7a,0x0,0x6e, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61, + 0x0,0x6e,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68, + 0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f, + 0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69, + 0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x4b,0x0,0x61,0x0,0x6e,0x0,0x61,0x1,0x42,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x42,0x0, + 0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65, + 0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x4b,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x75,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x77,0x0,0x79,0x0, + 0x63,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x79,0x0, + 0x73,0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x43, + 0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x20, + 0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72, + 0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f, + 0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x6e,0x0,0x75, + 0x0,0x75,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f, + 0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x69,0x1,0x7,0x0,0x20,0x0, + 0x73,0x0,0x79,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x79,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x77,0x0, + 0x65,0x0,0x6a,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74, + 0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x4e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a, + 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0, + 0x20,0x0,0x28,0x0,0x64,0x0,0x75,0x1,0x7c,0x0,0x79,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x79,0x0,0x6c,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x72,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x6b,0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x44,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0,0x6c,0x0,0x6e,0x0,0x79, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x56,0x0,0x48, + 0x0,0x44,0x0,0x20,0x0,0x72,0x0,0xf3,0x1,0x7c,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x75,0x0,0x6a,0x1,0x5,0x0,0x63,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x56, + 0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x12,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8, + 0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x55,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0, + 0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0, + 0x7a,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x79, + 0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x75,0x1,0x7c,0x0,0x20, + 0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0, + 0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6a,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x75,0x1, + 0x7c,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x4f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73, + 0x0,0x6b,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x6d,0x0,0x6f,0x0,0x67,0x1,0x5,0x0,0x20,0x0,0x62,0x0,0x79,0x1,0x7, + 0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x73,0x0,0x7a,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61, + 0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74, + 0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b, + 0x20,0x73,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x45,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x43,0x0,0x7a,0x0,0x79,0x0,0x20,0x0, + 0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x75,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x61,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x1,0x44,0x0,0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x75, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x77,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x61, + 0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x44,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6b, + 0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19, + 0x0,0x63,0x0,0x65,0x0,0x6a,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x67,0x0,0x6f, + 0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6b, + 0x0,0x61,0x0,0x74,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20, + 0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x44,0x0,0x79,0x0,0x6e,0x0,0x61, + 0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x69,0x0,0x6c,0x0,0x61, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x6e,0x0, + 0x61,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x7a,0x0,0x6e,0x0,0x79,0x0,0x6d,0x0, + 0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x55,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x61,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0, + 0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x57,0x0,0x26,0x0,0x79,0x0,0x6a,0x0,0x6d,0x0,0x69,0x0,0x6a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x50,0x0,0x26,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x45,0x26,0x6d,0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x57,0x0,0x26,0x0,0x79,0x0,0x6a,0x0,0x64,0x1,0x7a,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26, + 0x78,0x69,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x45,0x0,0x26,0x0,0x6b,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x75,0x0,0x6a,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36, + 0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x57,0x0,0x63,0x0,0x7a,0x0,0x65,0x1,0x5b,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x70,0x1,0x19,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x57,0x1,0x42,0x1, + 0x5,0x0,0x63,0x0,0x7a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x0,0x20,0x0,0x7a,0x0, + 0x20,0x0,0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67, + 0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0, + 0x61,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x57,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x28,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x6c,0x0, + 0x6f,0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x5a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x44, + 0x0,0x63,0x0,0x7a,0x0,0x20,0x1,0x5b,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x50,0x0,0x72,0x0, + 0x7a,0x0,0x65,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x79,0x0,0x62,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x65,0x1,0x42,0x0, + 0x6e,0x0,0x6f,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0, + 0x77,0x0,0x65,0x0,0x67,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x42,0x1,0x42,0x1,0x5,0x0,0x64,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x42,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e,0x64,0x65, + 0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x0,0x49, + 0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x1,0x5,0x0,0x63, + 0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20, + 0x0,0x28,0x0,0x26,0x0,0x43,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x65, + 0x0,0x6d,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x5a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x1,0x44,0x0,0x63,0x0, + 0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x0,0x57,0x0,0x79, + 0x0,0x6d,0x0,0x75,0x1,0x5b,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x79, + 0x1,0x5b,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e, + 0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33, + 0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x79,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x28,0x0,0x53,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x77, + 0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x73,0x0,0x79,0x0,0x6e,0x0,0x74, + 0x0,0x65,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64, + 0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e, + 0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53, + 0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4a, + 0x0,0x65,0x0,0x64,0x0,0x6e,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x6b,0x0,0x61, + 0x0,0x20,0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x5e,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x64,0x0, + 0x61,0x1,0x42,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x6f,0x0, + 0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0, + 0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x64,0x0,0x61,0x1,0x42,0x0,0x6f,0x0,0x20,0x0,0x73,0x0, + 0x69,0x1,0x19,0x0,0x20,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0, + 0x69,0x1,0x7,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f, + 0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x53,0x0,0x7a,0x0,0x79,0x0,0x62,0x0, + 0x6b,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x62,0x1,0x42, + 0x1,0x5,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61, + 0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x4e,0x0,0x61,0x0,0x7a,0x0,0x77,0x0,0x61,0x0, + 0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4d,0x0,0x65, + 0x0,0x74,0x0,0x6f,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72, + 0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3a,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x73, + 0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x79,0x0,0x6d,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x69, + 0x0,0x65,0x0,0x74,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70, + 0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4e,0x0,0x61,0x0,0x70, + 0x1,0x19,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b, + 0x0,0x69,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x69,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19,0x0, + 0x64,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x69,0x0, + 0x65,0x0,0x74,0x0,0x65,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46,0x0,0x6c, + 0x0,0x75,0x0,0x78,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x30,0x0,0x46,0x0,0x75,0x0,0x6c,0x0,0x6c,0x0,0x73,0x0,0x63,0x0,0x72, + 0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x26,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c, + 0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20, + 0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x57,0x0,0x7a,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x54,0x0,0x79, + 0x0,0x70,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x77,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x6a,0x0,0x69,0x0,0x20,0x0,0x26,0x0,0x77,0x0,0x20,0x0,0x73, + 0x0,0x6b,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x61, + 0x0,0x72,0x0,0x6f,0x1,0x5b,0x0,0x63,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1a,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x0, + 0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x60,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0xf3,0x0,0x77, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x1,0x5,0x0,0x20,0x0,0x62,0x0,0x79, + 0x1,0x7,0x0,0x20,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x73,0x0,0x7a, + 0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x34,0x0,0x20, + 0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b, + 0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20, + 0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72, + 0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68, + 0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8c,0x0,0x4f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0, + 0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0, + 0x20,0x0,0x7a,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6b,0x0, + 0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0, + 0x79,0x0,0x6d,0x0,0x20,0x0,0x6e,0x0,0x69,0x1,0x7c,0x0,0x20,0x0,0x35,0x0, + 0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x73,0x1, + 0x5,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72, + 0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e, + 0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70, + 0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x6b,0x0, + 0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b, + 0x0,0x75,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65, + 0x0,0x67,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61, + 0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x44,0x0,0x79,0x0,0x73,0x0, + 0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a, + 0x0,0x44,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x74,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x77,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65, + 0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x74,0x0,0x20,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0, + 0x70,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48, + 0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69, + 0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x47,0x1,0x42,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x57,0x0,0x79,0x0, + 0x73,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x53,0x0,0x6b,0x0,0x61,0x0, + 0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x55, + 0x0,0x6b,0x0,0x72,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x26,0x0,0x70,0x0,0x61, + 0x0,0x73,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x7a, + 0x1,0x19,0x0,0x64,0x0,0x7a,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d, + 0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34, + 0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25, + 0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x30,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x73,0x0,0x7a,0x0,0x65, + 0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x49, + 0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x72,0x0,0x7a, + 0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x5a,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x77,0x0,0x20,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65, + 0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x46,0x0, + 0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x0,0x72,0x0, + 0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x77,0x0,0x65,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x77,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x77,0x0, + 0x6e,0x1,0x19,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x6e,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x75,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x70,0x0, + 0x72,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x0, + 0x61,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0, + 0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x4a,0x1,0x19,0x0,0x7a,0x0,0x79,0x0,0x6b,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4c,0x61,0x6e,0x67,0x75,0x61, + 0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x44, + 0x0,0x75,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x6b, + 0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x32,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x74,0x0,0x61,0x1,0x42, + 0x0,0x79,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0, + 0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52, + 0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4e,0x0,0x61,0x0, + 0x70,0x1,0x19,0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x0, + 0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x67,0x0, + 0x64,0x0,0x79,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x61,0x1,0x42,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f, + 0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x55,0x0, + 0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x0,0x20,0x0,0x77,0x0,0x65,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0, + 0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x4d,0x49,0x44,0x49,0x20, + 0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x34,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0, + 0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x79,0x0, + 0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65,0x0,0x20,0x0, + 0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25, + 0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19,0x0,0x64,0x0,0x79,0x0, + 0x20,0x0,0x4d,0x0,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xa,0x4d,0x4f,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79, + 0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61, + 0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xf2, + 0x0,0x4d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64, + 0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x2c, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x61, + 0x1,0x7c,0x0,0x20,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x75,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3, + 0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x77,0x0,0x20, + 0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a, + 0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e,0x1,0x5, + 0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x1,0x19, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68, + 0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74, + 0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69, + 0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x52,0x0,0x6f, + 0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73, + 0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0x61, + 0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc6,0x0,0x53,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x64,0x1,0x7a,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x7a,0x0, + 0x79,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0, + 0x77,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x63,0x0, + 0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x61,0x0, + 0x64,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x70,0x0,0x6f,0x1,0x42,0x1, + 0x5,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x6b,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x79,0x0, + 0x62,0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x20,0x0, + 0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75, + 0x72,0x65,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e, + 0x73,0x74,0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74, + 0x20,0x79,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69, + 0x62,0x70,0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65, + 0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74, + 0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0, + 0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x64,0x1,0x7a,0x0,0x2c,0x0, + 0x20,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x20,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x6a,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0, + 0x64,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x63,0x0,0x7a,0x0,0x79,0x0, + 0x74,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d, + 0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x84,0x0,0x53,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x64, + 0x1,0x7a,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x70, + 0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x79,0x0,0x73,0x0,0x77, + 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6b,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x7a, + 0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x0,0x6f, + 0x1,0x5b,0x0,0x63,0x0,0x69,0x1,0x5,0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x70, + 0x0,0x69,0x0,0x73,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61, + 0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c, + 0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x61,0x0,0x6d,0x0,0x69,0x1, + 0x19,0x1,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0, + 0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0, + 0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0, + 0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f, + 0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20, + 0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x4d, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x77, + 0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x79,0x0,0x62,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x7a,0x0,0x75,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f, + 0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0,0x72,0x0,0x61, + 0x1,0x7c,0x0,0x6c,0x0,0x69,0x0,0x77,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x20, + 0x0,0x6d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73, + 0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x4d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x69,0x0,0x65,0x1,0x7, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4b,0x0,0x61, + 0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70, + 0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0, + 0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x73,0x0, + 0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4e,0x0,0x6f,0x0, + 0x77,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x4e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x65,0x0, + 0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x72,0x0, + 0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x1,0x44,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e, + 0x6f,0x20,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66, + 0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0, + 0x65,0x0,0x7a,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x6f,0x0, + 0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x6f,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x1,0x7b,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65, + 0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x64,0x0,0x6f,0x0,0x6b,0x1,0x42,0x0,0x61, + 0x0,0x64,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6a,0x0,0x73,0x0,0x7a,0x0,0x79, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65, + 0x64,0x20,0x28,0x6d,0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x79,0x1,0x42,0x1,0x5,0x0, + 0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x57,0x1,0x42,0x1, + 0x5,0x0,0x63,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70, + 0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33, + 0x0,0x2e,0x0,0x30,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x7e,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x6f,0x0,0x77,0x0,0x61,0x1, + 0x7,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0, + 0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20,0x0, + 0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x20,0x0,0x55,0x1, + 0x7c,0x0,0x79,0x0,0x6a,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0, + 0x67,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f, + 0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29, + 0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, + 0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1c,0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72, + 0x0,0x79,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c, + 0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x4f,0x0,0x70,0x0,0x63,0x0,0x6a,0x0,0x65,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x49, + 0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x7a,0x1,0x5, + 0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x6a, + 0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74, + 0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x49,0x0,0x6e,0x0,0x6e, + 0x0,0x65,0x0,0x20,0x0,0x75,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6d, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6d,0x6f,0x76,0x61, + 0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4e,0x0,0x61,0x0,0x64,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x55,0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65, + 0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x0,0x54,0x0,0x72,0x0,0x79,0x0,0x62,0x0,0x20,0x0,0x50,0x0, + 0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0, + 0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x67,0x1, + 0x42,0x0,0x79,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0, + 0x6c,0x0,0x65,0x0,0x67,0x1,0x42,0x0,0x79,0x0,0x20,0x0,0x32,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0xf3,0x0, + 0x77,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x67,0x1,0x42,0x0,0x79,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x67,0x1,0x42,0x0,0x79,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x84,0x0,0x53,0x0, + 0x79,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x0,0x20,0x0,0x6e,0x0, + 0x61,0x0,0x64,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6e,0x0,0x65,0x0, + 0x67,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0, + 0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x67,0x0,0x6f,0x0, + 0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x7a,0x0,0x67,0x0,0x61,0x0, + 0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x1,0x5,0x0,0x20,0x0,0x73,0x0,0x69,0x1, + 0x19,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e, + 0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b, + 0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e, + 0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x0,0x5a,0x0,0x61,0x0,0x74,0x0,0x72,0x0,0x7a,0x0,0x79,0x0, + 0x6d,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6b,0x0,0x6f,0x0, + 0x6e,0x0,0x79,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65, + 0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x49,0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0, + 0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x6f,0x0,0x74,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52, + 0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4f,0x0, + 0x6b,0x0,0x72,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0, + 0x61,0x0,0x77,0x0,0x69,0x0,0x64,0x1,0x42,0x0,0x6f,0x0,0x77,0x1,0x5,0x0, + 0x20,0x0,0x6e,0x0,0x61,0x0,0x7a,0x0,0x77,0x1,0x19,0x0,0x20,0x0,0x70,0x0, + 0x6c,0x0,0x69,0x0,0x6b,0x0,0x75,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e, + 0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x43,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73, + 0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x6a,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e,0x0, + 0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4e, + 0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0,0x20, + 0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74, + 0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74, + 0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0, + 0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x73,0x0,0x7a,0x0, + 0x65,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0, + 0x61,0x0,0x62,0x0,0x79,0x0,0x20,0x0,0x77,0x0,0x72,0x0,0xf3,0x0,0x63,0x0, + 0x69,0x1,0x7,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0,0x74,0x0,0x72,0x0, + 0x79,0x0,0x62,0x0,0x75,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8c,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0, + 0x6e,0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0, + 0x69,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0,0x20,0x1, + 0x5b,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0, + 0x6b,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x75,0x0, + 0x20,0x0,0x75,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x79,0x0,0x73,0x0,0x7a,0x0, + 0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73, + 0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c, + 0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x60,0x0,0x4e,0x0,0x61,0x0,0x63,0x0,0x69,0x1,0x5b,0x0,0x6e, + 0x0,0x69,0x0,0x6a,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0,0x77,0x0,0x69, + 0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x63,0x0,0x65,0x0,0x6c, + 0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x79,0x0,0x73, + 0x0,0x7a,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72, + 0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72, + 0x6f,0x67,0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x38,0x0,0x43,0x0,0x7a,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20, + 0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x50,0x0,0x26,0x0,0x61,0x0,0x6d, + 0x0,0x69,0x1,0x19,0x0,0x74,0x0,0x61,0x0,0x6a,0x0,0x20,0x0,0x72,0x0,0x6f, + 0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x69, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x6a,0x1,0x19, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x26,0x0,0x4b,0x0, + 0x6f,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x54,0x0,0x72, + 0x0,0x79,0x0,0x62,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f,0x64,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x72,0x0,0x6f, + 0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x26,0x0,0x6e,0x0, + 0x64,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x86,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x7a,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x6d,0x0,0x6e,0x0,0x69,0x0,0x6a,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x79,0x0, + 0x63,0x0,0x6a,0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x73,0x0,0x66,0x0,0x6f,0x0, + 0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x75,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x20,0x0, + 0x75,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20, + 0x74,0x6f,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64, + 0x20,0x66,0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c, + 0x79,0x2d,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50,0x0,0x72,0x0, + 0x7a,0x0,0x79,0x0,0x77,0x0,0x72,0x0,0xf3,0x1,0x7,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x57,0x0,0x7a,0x0,0x6e,0x0,0xf3,0x0,0x77,0x0, + 0x20,0x0,0x77,0x0,0x79,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x79,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x5a,0x0,0x61,0x0,0x70,0x0,0x69, + 0x0,0x73,0x0,0x7a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x5a,0x0, + 0x61,0x0,0x70,0x0,0x69,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x75,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x61,0x0, + 0x20,0x0,0x6a,0x0,0x61,0x0,0x6b,0x0,0x6f,0x0,0x20,0x0,0x26,0x0,0x67,0x0, + 0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0, + 0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x6e,0x0, + 0x69,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x6d,0x0,0x79,0x1,0x5b,0x0, + 0x6c,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x53, + 0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e, + 0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x64,0x65, + 0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x0,0x53,0x0,0x65,0x0,0x6b,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63,0x74,0x6f, + 0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x76,0x0,0x57, + 0x0,0x79,0x0,0x62,0x0,0xf3,0x0,0x72,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x6c, + 0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x7a,0x0,0x20,0x0,0x6b, + 0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20, + 0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x6f,0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x67, + 0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61, + 0x0,0x6d,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65, + 0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77, + 0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x57,0x0,0x79,0x0, + 0x62,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0, + 0x64,0x0,0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6e,0x0,0x79,0x0,0x20,0x0, + 0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x67,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0,0x65,0x0, + 0x67,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0, + 0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x7a,0x0,0x65,0x0,0x72,0x0, + 0x65,0x0,0x67,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x33,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x53,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x34,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x55,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x65,0x0, + 0x6e,0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x50,0x0,0x6f,0x0, + 0x77,0x0,0x6f,0x0,0x6c,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x26,0x0,0x4d,0x0,0x61,0x1,0x42,0x0,0x65,0x0,0x20,0x0,0x62,0x0,0x6c, + 0x0,0x6f,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x44,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x57,0x0,0x7a,0x0,0x6d,0x0,0x6f, + 0x0,0x63,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20, + 0x0,0x26,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x75, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x57,0x0,0x7a,0x0,0x6d,0x0, + 0x6f,0x0,0x63,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x75,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77, + 0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x31, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77, + 0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b,0x0,0x61,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19, + 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x1,0x7a, + 0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4f,0x0,0x6b,0x0,0x72,0x0,0x65,0x1,0x5b, + 0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61, + 0x0,0x72,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x6b,0x0,0x6e,0x0,0x61,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20, + 0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x4f,0x0,0x6b,0x0,0x72,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x6f,0x0,0x7a,0x0,0x6d,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x79,0x0, + 0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53, + 0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x53,0x0,0x7a,0x0,0x79,0x0,0x62,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x53,0x0,0x7a,0x0,0x79,0x0, + 0x62,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x53,0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x64, + 0x0,0x7a,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x75, + 0x0,0x72,0x0,0x7a,0x1,0x5,0x0,0x64,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69, + 0x0,0x65,0x0,0x20,0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30, + 0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x6c,0x6f,0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x53,0x0,0x74,0x0,0x61,0x0, + 0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x65,0x0, + 0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x69,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x7a,0x0, + 0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x65,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74, + 0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x44,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0, + 0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x34,0x0,0x2d,0x0, + 0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73,0x0,0x6b,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x44,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0,0x6a,0x0,0x6f, + 0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x36, + 0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0,0x69,0x0,0x73, + 0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74, + 0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0, + 0x6a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0, + 0x20,0x0,0x38,0x0,0x2d,0x0,0x70,0x0,0x72,0x0,0x7a,0x0,0x79,0x0,0x63,0x0, + 0x69,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x79,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4b,0x0,0x6f,0x0,0x6e, + 0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x79,0x0,0x20, + 0x0,0x70,0x0,0x61,0x0,0x6d,0x0,0x69,0x1,0x19,0x0,0x63,0x0,0x69,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20, + 0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x4f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a, + 0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x7a,0x0,0x63,0x0,0x68,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63, + 0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x36,0x0,0x5a,0x0,0x72,0x0,0xf3,0x0,0x62,0x0,0x20,0x0,0x26,0x0, + 0x7a,0x0,0x72,0x0,0x7a,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6b,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x75,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65,0x6e,0x73, + 0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x65,0x0, + 0x6c,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6c,0x0,0x69,0x0, + 0x63,0x0,0x7a,0x0,0x62,0x0,0x61,0x0,0x20,0x0,0x6b,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x65,0x0,0x6b,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x6b,0x0,0x75,0x0,0x6e,0x0,0x64,0x1,0x19,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x38,0x0,0x54,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x72,0x0,0x7a,0x1,0x19,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x20,0x0, + 0x6b,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20, + 0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x72,0x0,0x4b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0, + 0x73,0x0,0x69,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x70,0x0, + 0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x69,0x0,0x6b,0x0,0x20,0x0, + 0x6e,0x0,0x75,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e, + 0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8a,0x0,0x57,0x0,0x79,0x0,0x62,0x0, + 0x72,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0, + 0x6b,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x70,0x0,0x69,0x0, + 0x73,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x2e,0x0,0x20,0x0,0x43,0x0,0x7a,0x0, + 0x79,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x77,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0, + 0x7a,0x0,0x20,0x0,0x75,0x1,0x7c,0x0,0x79,0x1,0x7,0x0,0x20,0x0,0x74,0x0, + 0x65,0x0,0x67,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0, + 0x75,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65, + 0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77, + 0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74, + 0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65, + 0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0x26,0x0, + 0x4d,0x0,0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x20,0x0, + 0x6f,0x0,0x7a,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x7a,0x0,0x61,0x1,0x7,0x0, + 0x2c,0x0,0x20,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0, + 0x61,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x7a,0x1, + 0x19,0x0,0x64,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0, + 0x74,0x0,0x61,0x1,0x42,0x0,0x20,0x0,0x7a,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x79,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x6f,0x0,0x77,0x0,0x61,0x0,0x6e,0x0, + 0x79,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x77,0x0, + 0x6f,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x75,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x75,0x0,0x20,0x0,0x72,0x0, + 0xf3,0x1,0x7c,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x75,0x0,0x6a,0x1,0x5,0x0, + 0x63,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x4d,0x0, + 0x6f,0x1,0x7c,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x1,0x19,0x0,0x20,0x0, + 0x74,0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x6e,0x0,0x69,0x0, + 0x65,0x1,0x7c,0x0,0x20,0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x7a,0x0, + 0x79,0x1,0x7,0x0,0x2c,0x0,0x20,0x0,0x6a,0x0,0x65,0x1,0x5b,0x0,0x6c,0x0, + 0x69,0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0, + 0x6f,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0, + 0x7a,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x61,0x1,0x42,0x0,0x79,0x0,0x20,0x0, + 0x70,0x0,0x72,0x0,0x7a,0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x73,0x0, + 0x69,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0, + 0x20,0x0,0x73,0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x69,0x0,0x6f,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x75,0x0,0x62,0x0, + 0x20,0x0,0x77,0x0,0x79,0x0,0x73,0x0,0x74,0x1,0x5,0x0,0x70,0x0,0x69,0x1, + 0x42,0x0,0x20,0x0,0x62,0x1,0x42,0x1,0x5,0x0,0x64,0x0,0x20,0x0,0x77,0x0, + 0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0, + 0x69,0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x6b,0x0,0x74,0x0,0xf3,0x0,0x72,0x0, + 0x79,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x7a,0x0, + 0x79,0x1,0x42,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x64,0x0, + 0x79,0x0,0x73,0x0,0x6b,0x0,0xa,0x0,0xa,0x0,0x43,0x0,0x7a,0x0,0x79,0x0, + 0x20,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0, + 0x6e,0x0,0x61,0x0,0x70,0x0,0x72,0x0,0x61,0x0,0x77,0x0,0x69,0x1,0x7,0x0, + 0x20,0x0,0x73,0x0,0x79,0x0,0x67,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x79,0x0,0x20,0x0,0x63,0x0,0x7a,0x0,0x61,0x0,0x73,0x0,0x6f,0x0, + 0x77,0x0,0x65,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54, + 0x68,0x69,0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74, + 0x68,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65, + 0x64,0x20,0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66, + 0x65,0x72,0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20, + 0x63,0x61,0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20, + 0x69,0x66,0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c, + 0x65,0x73,0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72, + 0x20,0x63,0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61, + 0x20,0x62,0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67, + 0x72,0x61,0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64, + 0x20,0x74,0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20, + 0x74,0x68,0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5a,0x0,0x54,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x77,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x6a, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x79, + 0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x77, + 0x0,0x69,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x6e,0x0,0x65, + 0x0,0x6a,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x6e, + 0x0,0x79,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68, + 0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73, + 0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20, + 0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0, + 0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x53, + 0x0,0x79,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x69, + 0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x6a,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x7a, + 0x0,0x61,0x0,0x73,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14, + 0x54,0x69,0x6d,0x65,0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5,0x54,0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x52,0x0,0x6f,0x0,0x7a,0x0,0x72,0x0,0x7a,0x1,0x5,0x0, + 0x64,0x0,0x79,0x0,0x20,0x0,0x54,0x0,0x75,0x0,0x72,0x0,0x62,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74, + 0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61,0x0,0x6a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0,0x61, + 0x0,0x6a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x6a,0x0,0x65,0x0,0x73,0x0,0x7a, + 0x0,0x63,0x0,0x7a,0x0,0x65,0x0,0x20,0x0,0x77,0x0,0x73,0x0,0x70,0x0,0x69, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x79, + 0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a,0x0,0x6f,0x0,0x77,0x0,0x61,0x1, + 0x7,0x0,0x20,0x0,0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0, + 0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69, + 0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72, + 0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x0,0x4e, + 0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x7a,0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x6a, + 0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x2c,0x0,0x20,0x0,0x77,0x0,0x79,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61, + 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e, + 0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e, + 0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61, + 0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64, + 0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4e,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0, + 0x61,0x1,0x42,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0, + 0x20,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0, + 0x61,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x6b,0x0, + 0x6c,0x0,0x61,0x0,0x77,0x0,0x69,0x0,0x61,0x0,0x74,0x0,0x75,0x0,0x72,0x0, + 0x6f,0x0,0x77,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c, + 0x6f,0x61,0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63, + 0x65,0x6c,0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0, + 0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x64,0x0,0x63,0x0, + 0x7a,0x0,0x79,0x0,0x74,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x0,0x4e,0x0, + 0x69,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x6a,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x73,0x0, + 0x75,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0, + 0x64,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x20,0x0,0x77,0x0, + 0x65,0x0,0x6a,0x1,0x5b,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x77,0x0,0x79,0x0, + 0x63,0x0,0x68,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65, + 0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4e,0x0,0x69,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x6f,0x1,0x7c,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x7a,0x0,0x61,0x0, + 0x70,0x0,0x69,0x0,0x73,0x0,0x61,0x1,0x7,0x0,0x20,0x0,0x70,0x0,0x6c,0x0, + 0x69,0x0,0x6b,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66, + 0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4e, + 0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x61, + 0x0,0x7a,0x0,0x20,0x0,0x64,0x0,0x79,0x0,0x73,0x0,0x6b,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x55,0x1,0x7c,0x0,0x79,0x0, + 0x6a,0x0,0x20,0x0,0x64,0x1,0x7a,0x0,0x77,0x0,0x69,0x1,0x19,0x0,0x6b,0x0, + 0x75,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0,0x33,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46, + 0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x52,0x0,0x6f,0x0,0x64,0x0,0x7a,0x0, + 0x61,0x0,0x6a,0x0,0x20,0x0,0x65,0x0,0x6b,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x75,0x0,0x20,0x0,0x26,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20, + 0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x50,0x0,0x6c,0x0,0x69,0x0,0x6b,0x0,0x69,0x0,0x20,0x0,0x56,0x0,0x48, + 0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48,0x44,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xfc, + 0x0,0x4b,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x77,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73, + 0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6a,0x0,0x65, + 0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19, + 0x0,0x70,0x0,0x6e,0x0,0x61,0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x61,0x1,0x7c,0x0,0x20,0x0,0x62,0x0,0x72, + 0x0,0x61,0x0,0x6b,0x0,0x75,0x0,0x6a,0x0,0x65,0x0,0x20,0x0,0x6f,0x0,0x62, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0xf3,0x0,0x77,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x61, + 0x0,0x6c,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e, + 0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x7a,0x0,0x65,0x1,0x42,0x1,0x5,0x0,0x63, + 0x0,0x7a,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x73,0x0,0x74,0x1,0x19,0x0,0x70,0x0,0x6e, + 0x1,0x5,0x0,0x20,0x0,0x6b,0x0,0x61,0x0,0x72,0x0,0x74,0x1,0x19,0x0,0x20, + 0x0,0x77,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64, + 0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d, + 0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69,0x64,0x65,0x6f,0x20,0x64,0x69, + 0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69, + 0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62, + 0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63,0x61,0x72,0x64,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x57,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61,0x0,0x20, + 0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x6f,0x0,0x63, + 0x0,0x7a,0x0,0x65,0x0,0x6b,0x0,0x69,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x69, + 0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x57,0x61, + 0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1e,0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x6d,0x0, + 0x79,0x0,0x20,0x0,0x77,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c, + 0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x53,0x0,0x7a,0x0,0x65,0x0, + 0x72,0x0,0x6f,0x0,0x6b,0x0,0x6f,0x1,0x5b,0x1,0x7,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x50, + 0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x47,0x0,0x72,0x0,0x61,0x0,0x66,0x0,0x69,0x0,0x6b,0x0,0x61, + 0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58, + 0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x59,0x0,0x4d,0x0,0x46,0x0, + 0x4d,0x0,0x20,0x0,0x28,0x0,0x73,0x0,0x7a,0x0,0x79,0x0,0x62,0x0,0x73,0x0, + 0x7a,0x0,0x79,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59, + 0x4d,0x46,0x4d,0x20,0x28,0x66,0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x1,0x41,0x0,0x61,0x0,0x64,0x0,0x75,0x0, + 0x6a,0x0,0x65,0x0,0x73,0x0,0x7a,0x0,0x20,0x0,0x6e,0x0,0x69,0x0,0x65,0x0, + 0x6f,0x0,0x62,0x0,0x73,0x1,0x42,0x0,0x75,0x0,0x67,0x0,0x69,0x0,0x77,0x0, + 0x61,0x0,0x6e,0x1,0x5,0x0,0x20,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0, + 0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x6a,0x1,0x19,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65, + 0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72, + 0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69, + 0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20, + 0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30, + 0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20, + 0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x4e,0x0,0x61,0x0,0x70,0x1,0x19, + 0x0,0x64,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x4f, + 0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x79,0x0,0x20,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0, + 0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0, + 0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_ca-ES.qm + 0x0,0x0,0x94,0x93, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x28,0x13,0x0,0x0,0x0,0x48, + 0x0,0x0,0x47,0x5f,0x0,0x0,0x0,0x53,0x0,0x0,0x6a,0x68,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x8a,0x0,0x0,0x4,0xf2,0x0,0x0,0x50,0xf3,0x0,0x0,0x5,0x12, + 0x0,0x0,0x52,0xdc,0x0,0x0,0x5,0x3b,0x0,0x0,0x5d,0xc2,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x5,0x0,0x0,0x29,0x88,0x0,0x0,0x4,0x23,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x6b,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb3,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf2,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x3a,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0x82,0x0,0x0,0x29,0xe8,0x0,0x0,0x5,0xca,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x5,0xe8,0x0,0x0,0x49,0xc3,0x0,0x0,0x27,0xd4,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4c,0xb2,0x0,0x0,0x4d,0x85,0x0,0x0,0x4c,0xd0,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5d,0xe7,0x0,0x0,0x5d,0x81,0x0,0x0,0x84,0xd9,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x4b,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd1,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x12,0x9c,0x0,0x4,0x8c,0xaf,0x0,0x0,0x26,0x3a,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x27,0xf2,0x0,0x4,0xa7,0x89,0x0,0x0,0x3d,0xe3,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x42,0xc6,0x0,0x4,0xc8,0xa4,0x0,0x0,0x43,0xf7,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0x6b,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0x50,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x46,0xe7,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0x55,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6a,0x80,0x0,0x5,0x98,0xc5,0x0,0x0,0x6b,0x64,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6e,0xcf,0x0,0x5,0xc0,0x65,0x0,0x0,0x7c,0x91,0x0,0x12,0x74,0x52, + 0x0,0x0,0x19,0x90,0x0,0x19,0x74,0x52,0x0,0x0,0x19,0xc9,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xff,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0x85,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xc,0x85,0x0,0x2b,0x72,0x89,0x0,0x0,0xd,0x77,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x12,0xe4,0x0,0x34,0x9,0xc8,0x0,0x0,0x14,0x8c,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x7f,0x91,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0x50,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0x13,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0x4c,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x36,0x91,0x0,0x53,0x72,0xd1,0x0,0x0,0x3,0x35,0x0,0x58,0xc9,0xc4, + 0x0,0x0,0x69,0xef,0x0,0x5a,0x6b,0xb4,0x0,0x0,0x71,0xcf,0x0,0x5a,0x6c,0x44, + 0x0,0x0,0x6f,0x44,0x0,0x5b,0xc8,0x8f,0x0,0x0,0x7c,0x35,0x0,0x5c,0x6,0x8a, + 0x0,0x0,0x7c,0xb4,0x0,0x72,0xf8,0xe3,0x0,0x0,0x87,0x63,0x0,0x73,0x75,0x3e, + 0x0,0x0,0x35,0xc,0x0,0x7a,0x20,0x54,0x0,0x0,0x5d,0x7,0x0,0x97,0x96,0x4, + 0x0,0x0,0x37,0xe4,0x0,0xa4,0xd5,0x15,0x0,0x0,0x4f,0x1b,0x0,0xaa,0xa8,0x9a, + 0x0,0x0,0x50,0xc3,0x0,0xac,0x9c,0x93,0x0,0x0,0x4a,0x1c,0x0,0xb8,0x5f,0x43, + 0x0,0x0,0x5f,0xd9,0x0,0xc0,0x3,0xf2,0x0,0x0,0x19,0x57,0x1,0x9,0x1c,0x92, + 0x0,0x0,0x42,0x26,0x1,0x30,0x54,0x2e,0x0,0x0,0x2a,0xce,0x1,0x39,0xa4,0xce, + 0x0,0x0,0x59,0x68,0x1,0x4b,0x75,0xc3,0x0,0x0,0x7c,0x59,0x1,0x4c,0x50,0xee, + 0x0,0x0,0x67,0xe8,0x1,0x54,0xc3,0xb9,0x0,0x0,0x49,0xdf,0x1,0x61,0xac,0xc9, + 0x0,0x0,0x13,0xac,0x1,0x72,0x4a,0xde,0x0,0x0,0x7a,0xae,0x1,0x7a,0x2c,0x99, + 0x0,0x0,0x3c,0x4b,0x1,0x91,0xe,0x73,0x0,0x0,0x28,0xbd,0x1,0x9c,0xe0,0x83, + 0x0,0x0,0x4c,0x66,0x1,0x9f,0x22,0x4a,0x0,0x0,0x54,0x75,0x1,0xb0,0x47,0x5c, + 0x0,0x0,0x52,0xf7,0x1,0xb0,0x6c,0xf2,0x0,0x0,0xa,0xab,0x1,0xc8,0x65,0x8f, + 0x0,0x0,0x41,0x90,0x1,0xd3,0x9,0x82,0x0,0x0,0xb,0x7b,0x1,0xdd,0x59,0x87, + 0x0,0x0,0xf,0x73,0x1,0xe2,0x3,0x79,0x0,0x0,0x31,0xb6,0x1,0xe6,0x0,0xe9, + 0x0,0x0,0x6b,0x28,0x1,0xf8,0xc4,0xc1,0x0,0x0,0x72,0x2a,0x2,0x14,0x18,0x2e, + 0x0,0x0,0xa,0x28,0x2,0x21,0x3c,0x6b,0x0,0x0,0x73,0xc5,0x2,0x23,0x3c,0x6b, + 0x0,0x0,0x73,0x54,0x2,0x2d,0x3c,0x6b,0x0,0x0,0x72,0xe3,0x2,0x3c,0xaa,0x89, + 0x0,0x0,0x17,0x16,0x2,0x3f,0x61,0xd7,0x0,0x0,0x4b,0xcb,0x2,0x78,0x48,0x1a, + 0x0,0x0,0x54,0x1d,0x2,0x90,0x5e,0xf9,0x0,0x0,0x85,0x39,0x2,0x90,0x8d,0x12, + 0x0,0x0,0x42,0xe7,0x2,0x9b,0xf0,0x3,0x0,0x0,0x60,0x60,0x2,0xad,0x4a,0x22, + 0x0,0x0,0x68,0x47,0x2,0xae,0xfe,0x6e,0x0,0x0,0x9,0xf,0x2,0xb3,0xba,0xf1, + 0x0,0x0,0xc,0x5a,0x2,0xb6,0x8c,0x95,0x0,0x0,0xd,0x50,0x2,0xbb,0x66,0x33, + 0x0,0x0,0x11,0xfc,0x2,0xbb,0xb0,0x43,0x0,0x0,0x12,0xbd,0x2,0xcc,0xe1,0xf3, + 0x0,0x0,0x60,0x18,0x2,0xf9,0x69,0xf0,0x0,0x0,0x87,0x87,0x3,0x5,0x38,0xb2, + 0x0,0x0,0x40,0x70,0x3,0x15,0xb6,0x4e,0x0,0x0,0x63,0xe5,0x3,0x41,0x45,0x12, + 0x0,0x0,0x14,0xb0,0x3,0x49,0x26,0xf2,0x0,0x0,0x15,0x92,0x3,0x4b,0x26,0xf2, + 0x0,0x0,0x15,0xb9,0x3,0x52,0xf3,0x99,0x0,0x0,0x53,0x21,0x3,0x65,0x26,0xf2, + 0x0,0x0,0x18,0x7b,0x3,0x69,0x26,0xf2,0x0,0x0,0x18,0xa2,0x3,0x6a,0x66,0x2e, + 0x0,0x0,0x57,0x83,0x3,0x79,0xf0,0x15,0x0,0x0,0x55,0x7c,0x3,0x7d,0x6c,0xe, + 0x0,0x0,0xa,0xfa,0x3,0x7f,0x76,0xa3,0x0,0x0,0x30,0x85,0x3,0x95,0x9d,0xe9, + 0x0,0x0,0x3,0xa5,0x3,0x97,0x26,0xf2,0x0,0x0,0x1a,0x2,0x3,0xa4,0x35,0xa5, + 0x0,0x0,0x42,0xa6,0x3,0xa4,0x6f,0x55,0x0,0x0,0x42,0x78,0x3,0xa5,0x26,0xf2, + 0x0,0x0,0x1a,0x29,0x3,0xc4,0x69,0x9a,0x0,0x0,0x5a,0x57,0x3,0xc6,0xfd,0xa9, + 0x0,0x0,0x72,0x6f,0x3,0xe4,0x25,0x4a,0x0,0x0,0x70,0x9e,0x3,0xe4,0x25,0x5a, + 0x0,0x0,0x70,0x5c,0x3,0xe4,0x25,0x6a,0x0,0x0,0x70,0x1a,0x3,0xe4,0x25,0x7a, + 0x0,0x0,0x6f,0xd8,0x3,0xfa,0xfa,0xce,0x0,0x0,0x6,0x6,0x4,0x3,0xf6,0x9a, + 0x0,0x0,0x57,0x12,0x4,0xa,0x1d,0x19,0x0,0x0,0x17,0x6d,0x4,0x15,0x75,0x22, + 0x0,0x0,0x14,0xd7,0x4,0x17,0x65,0x22,0x0,0x0,0x15,0x1,0x4,0x1c,0x68,0x69, + 0x0,0x0,0x16,0xbc,0x4,0x23,0x29,0x55,0x0,0x0,0xb,0x2c,0x4,0x31,0xff,0xe9, + 0x0,0x0,0x26,0x65,0x4,0x38,0xa0,0xf,0x0,0x0,0x29,0x7f,0x4,0x51,0x79,0xb1, + 0x0,0x0,0x74,0xe3,0x4,0x59,0x41,0xa4,0x0,0x0,0x7d,0xb0,0x4,0x5b,0x53,0x1f, + 0x0,0x0,0x25,0x86,0x4,0x61,0x71,0x3e,0x0,0x0,0x6f,0xa3,0x4,0x7d,0xb,0xa4, + 0x0,0x0,0x3d,0x4,0x4,0x7d,0x47,0xb9,0x0,0x0,0x3d,0x31,0x4,0x7e,0x9f,0x1e, + 0x0,0x0,0x34,0x69,0x4,0x98,0x49,0xbc,0x0,0x0,0x2f,0x98,0x4,0xb8,0x1,0x2e, + 0x0,0x0,0x39,0x66,0x4,0xb8,0x8e,0x14,0x0,0x0,0xc,0xb3,0x4,0xbc,0xa4,0x5e, + 0x0,0x0,0x2,0xcc,0x4,0xc2,0x5c,0xee,0x0,0x0,0x0,0x34,0x4,0xc5,0xa8,0xe9, + 0x0,0x0,0x18,0x21,0x4,0xcb,0xe6,0xdb,0x0,0x0,0x5b,0xb8,0x4,0xcf,0xa6,0xe5, + 0x0,0x0,0x33,0x10,0x4,0xd5,0xa8,0xe9,0x0,0x0,0x17,0xc7,0x4,0xe6,0xae,0xdb, + 0x0,0x0,0x1d,0xb9,0x4,0xea,0x36,0x9a,0x0,0x0,0x5b,0xde,0x4,0xeb,0x2f,0xa, + 0x0,0x0,0x52,0x12,0x4,0xeb,0x7b,0x6a,0x0,0x0,0x4b,0x7c,0x5,0x18,0x5,0x95, + 0x0,0x0,0x80,0x27,0x5,0x1b,0xa5,0x22,0x0,0x0,0x16,0x41,0x5,0x30,0xd3,0xe, + 0x0,0x0,0x3b,0x90,0x5,0x46,0x85,0x64,0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a, + 0x0,0x0,0x5b,0x8f,0x5,0x5f,0x67,0xa3,0x0,0x0,0x86,0x18,0x5,0x5f,0x7b,0x59, + 0x0,0x0,0x10,0x28,0x5,0x6b,0x37,0x6e,0x0,0x0,0x3d,0x99,0x5,0x88,0x2e,0xd9, + 0x0,0x0,0x6e,0xf0,0x5,0x8b,0xc9,0xde,0x0,0x0,0x55,0xa6,0x5,0xa1,0xa5,0x7e, + 0x0,0x0,0x7b,0xe0,0x5,0xa3,0x3d,0xd2,0x0,0x0,0x75,0xf7,0x5,0xa5,0x3a,0x79, + 0x0,0x0,0x26,0xad,0x5,0xa6,0xbb,0x7a,0x0,0x0,0x71,0xfb,0x5,0xb2,0x16,0x79, + 0x0,0x0,0x68,0xaa,0x5,0xb3,0x5f,0x79,0x0,0x0,0x48,0x62,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0x98,0x5,0xb4,0x6c,0x55,0x0,0x0,0x3f,0xdd,0x5,0xb8,0x5d,0xad, + 0x0,0x0,0x15,0xe0,0x5,0xb8,0x5d,0xdd,0x0,0x0,0x14,0x2b,0x5,0xbc,0x9b,0x9d, + 0x0,0x0,0x15,0x2b,0x5,0xc0,0x5a,0x12,0x0,0x0,0x4c,0x1a,0x5,0xc1,0x4d,0x83, + 0x0,0x0,0x38,0x7e,0x5,0xcf,0xac,0x2a,0x0,0x0,0x83,0x59,0x5,0xd0,0x4f,0x11, + 0x0,0x0,0x84,0x3,0x5,0xd1,0x13,0x7,0x0,0x0,0xf,0x1a,0x5,0xdf,0xba,0xba, + 0x0,0x0,0x84,0x4d,0x5,0xe8,0x9d,0xfa,0x0,0x0,0x67,0x58,0x6,0x7,0xd3,0xda, + 0x0,0x0,0x4e,0x1,0x6,0xc,0xc0,0xb4,0x0,0x0,0x38,0x15,0x6,0x19,0x20,0x43, + 0x0,0x0,0x6b,0x87,0x6,0x33,0xa9,0x24,0x0,0x0,0x3b,0x58,0x6,0x38,0x9f,0x35, + 0x0,0x0,0x38,0xfd,0x6,0x44,0xc6,0x5e,0x0,0x0,0x1f,0x42,0x6,0x51,0xe6,0x13, + 0x0,0x0,0x6,0xb5,0x6,0x5b,0x1,0x15,0x0,0x0,0x33,0x42,0x6,0x6c,0xb8,0x3, + 0x0,0x0,0x81,0x98,0x6,0x6f,0xe2,0xa3,0x0,0x0,0x4a,0x69,0x6,0x74,0xe,0x6a, + 0x0,0x0,0x61,0x3f,0x6,0x7c,0x21,0x44,0x0,0x0,0x4a,0xd2,0x6,0x7c,0x3f,0xa8, + 0x0,0x0,0x1d,0x7f,0x6,0x7d,0x4e,0x8e,0x0,0x0,0x3e,0x89,0x6,0x81,0xb7,0x1f, + 0x0,0x0,0x3a,0x6f,0x6,0x83,0xe4,0xa3,0x0,0x0,0x70,0xe0,0x6,0x96,0xa4,0x13, + 0x0,0x0,0x45,0xa0,0x6,0x97,0x71,0x79,0x0,0x0,0x6a,0xe6,0x6,0xc3,0xce,0xa3, + 0x0,0x0,0x74,0x36,0x6,0xce,0x41,0x63,0x0,0x0,0x46,0x4a,0x6,0xed,0xca,0xce, + 0x0,0x0,0x47,0xbe,0x6,0xf9,0x0,0x2e,0x0,0x0,0x7,0xec,0x6,0xfa,0xae,0xd4, + 0x0,0x0,0x8,0xb8,0x6,0xfe,0x2a,0xa,0x0,0x0,0x4a,0x9c,0x7,0x0,0x57,0x53, + 0x0,0x0,0x28,0x2b,0x7,0x3,0x2f,0xd3,0x0,0x0,0x55,0x4a,0x7,0x6,0x93,0xe3, + 0x0,0x0,0x86,0xf8,0x7,0x7,0xff,0x23,0x0,0x0,0x1f,0x1,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1e,0x60,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6e,0x9c,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5a,0xe0,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4d,0x87,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0x65,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0x24,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x32,0xa7,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0x23,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0x23,0x7,0x70,0xb3,0xaa,0x0,0x0,0x44,0x75,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x2f,0x60,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0x1b,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x57,0x56,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0x2d,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0x6b,0x7,0xa4,0x32,0x89,0x0,0x0,0x1d,0x37,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0x47,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6c,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9c,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x26,0xe9,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0x32,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x64,0xe3,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x4,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6a,0xa1,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4d,0x30,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0x63,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5a,0x83,0x8,0x31,0xf7,0xee,0x0,0x0,0xc,0xe6,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x52,0x8a,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7b,0x65,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0x6f,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0x7f,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7c,0xda,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0x29,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x4f,0xd3,0x8,0xa3,0xdb,0xae,0x0,0x0,0x50,0x87,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xf,0x8,0xa4,0xb,0xae,0x0,0x0,0x50,0x4b,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3c,0xad,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0x12,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x40,0xec,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x33,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0x41,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x1,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0x3e,0x9,0x49,0xfa,0x4a,0x0,0x0,0x33,0xed,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x34,0x2b,0x9,0x49,0xfa,0x6a,0x0,0x0,0x33,0x71,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x33,0xaf,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0x37,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5c,0x69,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0x41,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x18,0xc9,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x89,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0x2b,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x10,0x9,0x88,0x63,0xa, + 0x0,0x0,0x2f,0xc5,0x9,0x88,0x63,0x1a,0x0,0x0,0x2f,0xf5,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x30,0x25,0x9,0x88,0x63,0x3a,0x0,0x0,0x30,0x55,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x58,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0x7d,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xa0,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0x29,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x62,0xb5,0x9,0xc2,0x33,0xa9,0x0,0x0,0x16,0x6b,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0x38,0x9,0xd5,0x43,0xd3,0x0,0x0,0x35,0xc3,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x10,0xfb,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0x39,0xa,0x17,0x34,0x34, + 0x0,0x0,0x3f,0x92,0xa,0x27,0x62,0x55,0x0,0x0,0xb,0xcf,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0x50,0xa,0x4e,0x21,0xe,0x0,0x0,0x1c,0xd9,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0x88,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x5,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x4f,0x7f,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0x4c,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0xa0,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6c,0x5a,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x74,0x98,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0xf,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x36,0xc4,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4e,0x83,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0x53,0xa,0xbc,0x8a,0x94,0x0,0x0,0x7,0xb7,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0x5a,0xa,0xda,0x50,0x7e,0x0,0x0,0x7e,0x6d,0xa,0xe9,0x15,0x84, + 0x0,0x0,0xf,0xc8,0xa,0xea,0x46,0xf4,0x0,0x0,0x5c,0x9d,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x37,0x8c,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0x49,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x32,0xb,0x1e,0xee,0xfe,0x0,0x0,0x58,0xc3,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0x30,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0x26,0xb,0x4e,0x19,0x54,0x0,0x0,0x53,0x6f,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0x22,0xb,0x8c,0x46,0xe5,0x0,0x0,0xe,0xa9,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0x15,0xb,0x9d,0xe,0xa2,0x0,0x0,0x32,0x6f,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1c,0xaf,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0x2d,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x6f,0x62,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0x1,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x48,0xa9,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4c,0xee,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x86,0xc0,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x63,0xab,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0x43,0xc,0x20,0xc4,0xde,0x0,0x0,0xd,0xa5,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x10,0x6a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x75,0x9b,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x44,0xb2,0xc,0x42,0x70,0xde,0x0,0x0,0x29,0x1,0xc,0x48,0x83,0xde, + 0x0,0x0,0x65,0x7f,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4e,0xcf,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x77,0xaf,0xc,0x77,0x67,0x19,0x0,0x0,0x44,0xf8,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x14,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0x74,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x31,0x3b,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0x1d,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x60,0xc6,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x28,0x76,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6e,0x69,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0x60,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0x20,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x81,0xcc,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x64,0xab,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1a,0x74,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0x14,0xd,0x11,0x45,0x1a,0x0,0x0,0x27,0x98,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0x80,0xd,0x4a,0x90,0xb2,0x0,0x0,0x68,0xf3,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0xa2,0xd,0x60,0xef,0x6a,0x0,0x0,0x4e,0x41,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x35,0xff,0xd,0x77,0xa4,0xc0,0x0,0x0,0x43,0x93,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x6,0xd,0x88,0x48,0x23,0x0,0x0,0x30,0xc9,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3d,0x68,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x44,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0x7b,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5d,0x74,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0x78,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0x1a,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x11,0xa9,0xe,0x48,0xfa,0xca,0x0,0x0,0x29,0xca,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2a,0x4c,0xe,0x48,0xfd,0xca,0x0,0x0,0x2a,0xb,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2a,0x8d,0xe,0x62,0x79,0x4,0x0,0x0,0x3a,0xe3,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1e,0xc3,0xe,0x7b,0xa1,0x23,0x0,0x0,0x54,0xd0,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x32,0x46,0xe,0x98,0x18,0x54,0x0,0x0,0x27,0x47,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x66,0xdc,0xe,0xbe,0x61,0x81,0x0,0x0,0x6d,0x81,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6d,0xbb,0xe,0xbe,0x61,0x83,0x0,0x0,0x6d,0xf5,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0x2f,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4b,0xa1,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x3,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0x6c,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0x96,0xe,0xf0,0xc9,0xb2,0x0,0x0,0x9,0xeb,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0x4c,0xe,0xf7,0xac,0xae,0x0,0x0,0x10,0xbc,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x2d,0xf,0x15,0xf4,0x85,0x0,0x0,0x4d,0xb4,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x76,0xbd,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x3,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x5f,0x9a,0xf,0x29,0x4d,0x2a,0x0,0x0,0x47,0x77,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x41,0xdf,0xf,0x30,0x6b,0x3,0x0,0x0,0x31,0x81,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x71,0x71,0xf,0x5a,0x14,0x2,0x0,0x0,0xe,0xd7,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x13,0x49,0xf,0x70,0xaa,0x1a,0x0,0x0,0x83,0xc0,0xf,0x74,0xd,0xca, + 0x0,0x0,0x68,0x7a,0xf,0x85,0x7b,0xea,0x0,0x0,0x60,0xfe,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xa,0xf,0xbd,0xdc,0x15,0x0,0x0,0xd,0xe9,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x67,0x86,0xf,0xd3,0x41,0x72,0x0,0x0,0x3b,0xfe,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xe,0xf,0xd9,0x8c,0xca,0x0,0x0,0x51,0x90,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x51,0x4f,0xf,0xd9,0x8f,0xca,0x0,0x0,0x51,0xd1,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0x49,0xf,0xe2,0xe9,0x49,0x0,0x0,0x84,0xf7,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x61,0xa5,0xf,0xf5,0xeb,0x52,0x0,0x0,0x61,0xe9,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x2d,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0x71,0x69,0x0,0x0,0x87, + 0xb1,0x3,0x0,0x0,0x0,0x16,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x45,0x0,0x4e, + 0x0,0x20,0x0,0x50,0x0,0x41,0x0,0x55,0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x62,0x0,0x20,0x0,0xe9,0x0,0x73, + 0x0,0x20,0x0,0x6e,0x0,0x65,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0xe0, + 0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e, + 0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x61, + 0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe0,0x0,0x74,0x0,0x69,0x0,0x63, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74, + 0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x65,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61, + 0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69, + 0x0,0x6d,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x6f,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x65,0x0,0x6e,0x0,0xe8,0x0,0x72,0x0,0x69, + 0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0xe0,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69, + 0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73, + 0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63, + 0x20,0x63,0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20, + 0x74,0x6f,0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74, + 0x68,0x65,0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53, + 0x63,0x72,0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69, + 0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50, + 0x6f,0x73,0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20, + 0x66,0x69,0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x8,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30, + 0x0,0x32,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e, + 0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0xf3,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20,0x44,0x65,0x76,0x69, + 0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x25,0x0,0x69,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x28,0x0, + 0x73,0x0,0x29,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x45,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x25,0x69,0x20,0x65,0x73,0x74,0x61,0x74,0x28,0x73,0x29,0x20,0x64,0x27,0x65, + 0x73,0x70,0x65,0x72,0x61,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4, + 0x0,0x25,0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25, + 0x69,0x2c,0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x0, + 0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26, + 0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0, + 0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0,0x33,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35, + 0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26, + 0x0,0x36,0x0,0x30,0x0,0x20,0x0,0x66,0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20,0x66,0x70,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x36,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x37,0x0,0x35,0x0,0x20,0x0,0x66, + 0x0,0x70,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x0,0x51, + 0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41,0x63,0x74,0x69,0x6f,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x6f,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x41, + 0x0,0x6d,0x0,0x62,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x26,0x0,0x50,0x0, + 0x61,0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x75,0x0,0x74,0x0, + 0x6f,0x0,0x6d,0x0,0xe0,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0xe8,0x0, + 0x72,0x0,0x64,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x26,0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65, + 0x20,0x6f,0x6e,0x20,0x66,0x6f,0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x4d,0x0,0x69,0x0, + 0x74,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65,0x0,0x6c, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31, + 0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46, + 0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0, + 0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x26,0x0,0x44,0x0,0x6f,0x0,0x63,0x0,0x75,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x26,0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0, + 0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26, + 0x0,0x41,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7,0x0,0x20,0x0,0x72,0x0,0xe0, + 0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x26,0x46,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20, + 0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x43,0x0,0x61,0x0,0x72,0x0,0x70,0x0, + 0x65,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x26,0x0,0x45,0x0,0x73, + 0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0, + 0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0, + 0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0, + 0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26,0x46,0x75, + 0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c, + 0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x26,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69, + 0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x26,0x48,0x61,0x72,0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x41,0x0, + 0x6a,0x0,0x75,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x41,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61,0x74,0x75, + 0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x26,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x0,0x26,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0, + 0x72,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x69,0x0,0x6e,0x0, + 0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x74,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65,0x72,0x74,0x65,0x64,0x20,0x56, + 0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x54,0x0,0x65,0x0,0x63,0x0,0x6c,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x69,0x0,0x78,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0, + 0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1a,0x26,0x4b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69, + 0x72,0x65,0x73,0x20,0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4c,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10, + 0x0,0x26,0x0,0x4d,0x0,0x69,0x0,0x74,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0,0x53,0x0, + 0x69,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x0,0x4d,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73, + 0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x4e, + 0x0,0x6f,0x0,0x75,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x50,0x0,0x61,0x0,0x75,0x0,0x73, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50,0x61,0x75, + 0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26,0x0, + 0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x64,0x0,0x75,0x0,0x69,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x50,0x6c,0x61,0x79, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0,0x50,0x0, + 0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xe8,0x0,0x6e,0x0,0x63,0x0, + 0x69,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x69,0x0, + 0x73,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26, + 0x52,0x47,0x42,0x20,0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x0,0x47,0x0,0x72,0x0,0x61, + 0x0,0x76,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72, + 0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61, + 0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0xe8,0x0,0x76, + 0x0,0x69,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52, + 0x65,0x6c,0x6f,0x61,0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0, + 0x45,0x0,0x26,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x0, + 0x45,0x0,0x6c,0x0,0x69,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73, + 0x68,0x61,0x64,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32, + 0x0,0x26,0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72, + 0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x26,0x52,0x65,0x73, + 0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x52,0x0,0x65,0x0, + 0x62,0x0,0x6f,0x0,0x62,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69, + 0x6e,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43, + 0x0,0x54,0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x26,0x0,0x64,0x0,0x72,0x0,0x65, + 0x0,0x74,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x41,0x0,0x4c,0x0,0x54, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x72, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x26,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x68,0x0,0x61, + 0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68, + 0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1e,0x0,0x26,0x0,0x41,0x0,0x6a,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61, + 0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69, + 0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x0, + 0x26,0x0,0x50,0x0,0xed,0x0,0x78,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x73,0x0, + 0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x20,0x0, + 0x61,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x26,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6d,0x0, + 0x62,0x0,0x20,0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74, + 0x68,0x20,0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x0,0x45,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x26,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x62,0x0,0x61,0x0, + 0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26, + 0x55,0x70,0x64,0x61,0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61, + 0x72,0x20,0x69,0x63,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x0,0x26,0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x0,0x56,0x0,0x69, + 0x0,0x73,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x26,0x56,0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x26,0x0,0x42,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0, + 0x26,0x0,0x46,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x64,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x6e,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61,0x6c,0x65, + 0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x32,0x0,0x28,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d, + 0x0,0x61,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x28,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x28,0x0,0x62,0x0,0x75,0x0, + 0x69,0x0,0x74,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28, + 0x65,0x6d,0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x38,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0, + 0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66, + 0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x0,0x4d, + 0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31, + 0x2e,0x34,0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0, + 0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f, + 0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x31,0x0,0x38,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x32,0x0,0x25,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77, + 0x20,0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0, + 0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32, + 0x2e,0x38,0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x33,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0, + 0x67,0x0,0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28, + 0x47,0x69,0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32, + 0x0,0x38,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53, + 0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31, + 0x32,0x38,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x0,0x47, + 0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d, + 0x0,0x4f,0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x16,0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47, + 0x69,0x67,0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0, + 0x33,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0, + 0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20, + 0x32,0x33,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36, + 0x33,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0, + 0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x0, + 0x4d,0x0,0x42,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0, + 0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42, + 0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0, + 0x20,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x20,0x0, + 0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0, + 0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33, + 0x2e,0x35,0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20, + 0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0, + 0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x0, + 0x26,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26, + 0x33,0x20,0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32, + 0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x0,0x47,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20, + 0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x0,0x47,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22, + 0x0,0x20,0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30, + 0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0, + 0x30,0x0,0x20,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20, + 0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34, + 0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x37,0x0,0x32,0x0,0x30,0x0,0x20,0x0,0x6b,0x0,0x42,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x7a,0x0,0x38,0x0,0x36,0x0,0x42, + 0x0,0x6f,0x0,0x78,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x74, + 0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61, + 0x0,0x70,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65, + 0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x75,0x0,0x74,0x0,0x69, + 0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x53,0x0,0x69,0x0,0x20,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x75,0x0,0x2c,0x0,0x20,0x0,0x3c, + 0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d,0x0,0x22, + 0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f,0x0,0x2f, + 0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78, + 0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72,0x0,0x65, + 0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f,0x0,0x6c, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e,0x0,0x64, + 0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67, + 0x0,0x75,0x0,0x65,0x0,0x75,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0,0x75, + 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x4f, + 0x0,0x4d,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x72, + 0x0,0x65,0x0,0x75,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x20,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f, + 0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73, + 0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac,0x38,0x36, + 0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66,0x69, + 0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20,0x52,0x4f, + 0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x73, + 0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f,0x38,0x36, + 0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e,0x6c,0x6f, + 0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73,0x65,0x74, + 0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69,0x74,0x20, + 0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73,0x22,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0, + 0x20,0x0,0x76,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x38,0x36,0x42, + 0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x41,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0, + 0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68,0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0, + 0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41, + 0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0, + 0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x51,0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x74,0x0, + 0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0, + 0x41,0x0,0x66,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69, + 0x73,0x74,0x69,0x6e,0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x66,0x0,0x65, + 0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63, + 0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x75, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65, + 0x77,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67, + 0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0xe7, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c, + 0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64, + 0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x6f,0x0,0x74,0x0, + 0x73,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x41,0x6c,0x6c,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x6f,0x0,0x74,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x41,0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x3,0xc6,0x0,0x55,0x0,0x6e,0x0,0x20,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x27,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x63,0x0,0x73,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x75,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x73,0x0,0x3a,0x0,0x20,0x0,0x4d,0x0,0x69,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69,0x0,0x63,0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36,0x0,0x37,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69,0x0,0x6e,0x0,0x65, + 0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65,0x0,0x6b,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39,0x0,0x35,0x0,0x2c, + 0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62,0x0,0x72,0x0,0x65, + 0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x65,0x0,0x65, + 0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72,0x0,0x68,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d,0x0,0x61,0x0,0x6e, + 0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d,0x0,0x20,0x0,0x4c, + 0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a,0x0,0x65,0x0,0x2c, + 0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x28, + 0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73, + 0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x43,0x0,0x61, + 0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x6e,0x0,0x33, + 0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20, + 0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28, + 0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65,0x0,0x29,0x0,0x2c, + 0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e,0x0,0x6f,0x0,0x31, + 0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e, + 0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x57,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65, + 0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72, + 0x0,0x69,0x0,0x62,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73, + 0x0,0x20,0x0,0x66,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61, + 0x0,0x72,0x0,0x61,0x0,0x68,0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b, + 0x0,0x65,0x0,0x72,0x0,0x2c,0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c, + 0x0,0x65,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e, + 0x0,0x45,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c, + 0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73, + 0x0,0x79,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x61, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x0,0x41,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61, + 0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75, + 0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x65,0x0,0x72, + 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x6f,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x72,0x0,0x2e,0x0,0x20,0x0,0x56,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65, + 0x0,0x20,0x0,0x4c,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e,0x0,0x53, + 0x0,0x45,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x6d,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f, + 0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4,0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f,0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75, + 0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75,0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d, + 0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4,0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74, + 0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52,0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38, + 0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d,0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e, + 0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39,0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64, + 0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20,0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f, + 0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28,0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69, + 0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69,0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c, + 0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69,0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69, + 0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73,0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69, + 0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f,0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69, + 0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c,0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d, + 0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46,0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76, + 0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65,0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a, + 0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65,0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72, + 0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68, + 0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69,0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69, + 0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62, + 0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61, + 0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72,0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69, + 0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c,0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67, + 0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63,0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20, + 0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65, + 0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20, + 0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20,0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c, + 0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32, + 0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65,0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c, + 0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66,0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20, + 0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0, + 0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x20,0x0, + 0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0, + 0x75,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x24,0x41,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74,0x20,0x38,0x36,0x42,0x6f,0x78, + 0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x45,0x0,0x73, + 0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75, + 0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x76,0x0,0x6f, + 0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61, + 0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20, + 0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x41,0x0,0x75,0x0,0x74,0x0,0x6f,0x0,0x6d,0x0,0xe0,0x0,0x74,0x0,0x69, + 0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0, + 0x26,0x0,0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0, + 0x53,0x0,0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e, + 0x54,0x53,0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0, + 0x20,0x0,0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48, + 0x44,0x54,0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61,0x0, + 0x6c,0x0,0x73,0x0,0x20,0x0,0x62,0x0,0xe0,0x0,0x73,0x0,0x69,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42, + 0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0, + 0x6f,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0xe7,0x0,0x61,0x0,0x72,0x0,0x20,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x42,0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x4d, + 0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x62,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x42,0x0,0x75,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x42,0x0,0x75,0x0,0x73,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x55,0x0,0x6e, + 0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d, + 0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0, + 0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x0,0x4f,0x0,0x76,0x0,0x65,0x0, + 0x72,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x43,0x0,0x47,0x0, + 0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0,0x72,0x0,0x2f,0x0,0x54,0x0, + 0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0,0x45,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43,0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f, + 0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47, + 0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63,0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0, + 0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74, + 0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x31,0x20,0x44, + 0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0, + 0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69, + 0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33, + 0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d, + 0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x3,0xc,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x46,0x0,0x69,0x0,0x6c, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x62, + 0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0xe0,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x62, + 0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41, + 0x0,0x69,0x0,0x78,0x0,0xf2,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x20,0x0,0x70, + 0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20, + 0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20, + 0x0,0x73,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x20,0x0,0x69,0x0,0x6e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62, + 0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x61, + 0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x6d, + 0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x2e,0x0,0x20, + 0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x69,0x0,0x78,0x0,0xf2, + 0x0,0x2c,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0xe8,0x0,0x69,0x0,0x78,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x6c, + 0x0,0x61,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x75, + 0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61, + 0x0,0x72,0x0,0x69,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x41,0x0,0x63,0x0,0x74, + 0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x61,0x0,0x6a,0x0,0x75,0x0,0x73, + 0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x6f, + 0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x6d,0x0,0x65, + 0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x6f,0x0,0x72, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x65,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x73, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x61, + 0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x69,0x0,0x6e,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73, + 0x65,0x64,0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c, + 0x65,0x64,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54, + 0x68,0x69,0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73, + 0x73,0x69,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20, + 0x61,0x20,0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74, + 0x68,0x65,0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65, + 0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20, + 0x48,0x6f,0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79, + 0x20,0x72,0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70, + 0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68, + 0x20,0x74,0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f, + 0x53,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77, + 0x61,0x72,0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74, + 0x68,0x69,0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e, + 0x6f,0x74,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75, + 0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20, + 0x62,0x75,0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65, + 0x64,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20, + 0x61,0x73,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x43,0x0,0x50,0x0,0x55,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20,0x74,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x41, + 0x0,0x6e,0x0,0x75,0x1,0x40,0x0,0x6c,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x31,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x32,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x32,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x33,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x54,0x0,0x61,0x0, + 0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x34,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x43,0x0,0x61,0x0, + 0x72,0x0,0x74,0x0,0x75,0x0,0x74,0x0,0x78,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x75,0x0, + 0x74,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72, + 0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73, + 0x0,0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61, + 0x73,0x73,0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x43,0x61,0x73, + 0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x61,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x74,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x54,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x26,0x0,0x6d, + 0x0,0x6f,0x0,0x6e,0x0,0x6f,0x0,0x63,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27,0x43,0x68,0x61,0x6e,0x67,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20,0x66,0x6f,0x72,0x20,0x26,0x6d, + 0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20,0x64,0x69,0x73,0x70,0x6c,0x61, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x43,0x0,0x61, + 0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x72,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42, + 0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x0,0x46,0x0, + 0x65,0x0,0x75,0x0,0x20,0x0,0x63,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x74,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61, + 0x70,0x74,0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69, + 0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74, + 0x0,0x69,0x0,0x6e,0x0,0x75,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x33,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1c,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x72,0x0, + 0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x61,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64, + 0x20,0x6e,0x6f,0x74,0x20,0x66,0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x7a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20, + 0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69, + 0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74, + 0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a, + 0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76, + 0x69,0x64,0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0, + 0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x6f,0x0, + 0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x28,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x65,0x0,0x72,0x0, + 0x73,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0, + 0x61,0x0,0x74,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x43,0x0,0x69,0x0,0x6c,0x0,0x69,0x0, + 0x6e,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46, + 0x0,0x20,0x0,0x28,0x0,0x63,0x0,0x6c,0x0,0xfa,0x0,0x73,0x0,0x74,0x0,0x65, + 0x0,0x72,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75, + 0x73,0x74,0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x0, + 0x63,0x0,0x6c,0x0,0xfa,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x32,0x0,0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20, + 0x32,0x30,0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x50,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65, + 0x0,0x63,0x0,0x74,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7, + 0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66, + 0x0,0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e, + 0x63,0x69,0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x44,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x76,0x0,0x61,0x0,0x74,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4c,0x0,0x61,0x0, + 0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0, + 0x68,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74, + 0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x6a,0x0,0x61,0x0,0x20, + 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x69,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64, + 0x79,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0, + 0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0, + 0x6d,0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0, + 0x61,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x44,0x69,0x73, + 0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x62,0x0,0x4c,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20, + 0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61, + 0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x31,0x32,0x37,0x20,0x47,0x42, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x72, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0xe0,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73, + 0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x56,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3e,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0, + 0x73,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65, + 0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4e,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x63, + 0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x4e, + 0x0,0x6f,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x65, + 0x0,0x6a,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x6d,0x0,0xe9, + 0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x74,0x0,0x67, + 0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27, + 0x74,0x20,0x73,0x68,0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73, + 0x61,0x67,0x65,0x20,0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x69, + 0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x44,0x0,0x69, + 0x0,0x6e,0x0,0xe0,0x0,0x6d,0x0,0x69,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20,0x52,0x65,0x63,0x6f, + 0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x6e,0x0, + 0xe0,0x0,0x6d,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0, + 0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48, + 0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x0,0x26,0x0,0x41,0x0,0x6a,0x0,0x75,0x0,0x73,0x0,0x74,0x0, + 0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x45,0x0, + 0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f, + 0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x45,0x0,0x26,0x0,0x78, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x45,0x0,0x26,0x0,0x78,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0, + 0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d, + 0x70,0x74,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x26, + 0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69, + 0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0, + 0x45,0x0,0x26,0x0,0x78,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78, + 0x70,0x6f,0x72,0x74,0x20,0x74,0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0, + 0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x45,0x53,0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x6f,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72,0x6c,0x69,0x65,0x72,0x20,0x64, + 0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4c,0x0, + 0x48,0x0,0x61,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x61,0x0, + 0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65,0x0, + 0x67,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x61,0x0, + 0x6d,0x0,0x62,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x26,0x0,0x44,0x0, + 0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20,0x26,0x44,0x69,0x73, + 0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x41,0x0,0x63,0x0, + 0x74,0x0,0x69,0x0,0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x55,0x0, + 0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x41,0x0,0x63,0x0,0x74,0x0,0x69,0x0, + 0x76,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x28,0x0,0x68,0x0,0x6f,0x0,0x72,0x0, + 0x61,0x0,0x20,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x63,0x0,0x61,0x0,0x62, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xe7,0x0,0x61, + 0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e,0x64,0x20,0x74,0x72,0x61,0x63, + 0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x42,0x0,0x45,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0, + 0x6c,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0, + 0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45, + 0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65, + 0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x4c,0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63, + 0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64, + 0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f, + 0x72,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72, + 0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x46,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20, + 0x0,0x45,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4e,0x0,0x6f,0x0,0x6d,0x0,0xe9,0x0,0x73, + 0x0,0x2d,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61, + 0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65,0x63,0x74, + 0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xc,0x0,0x53,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x69,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x46,0x0,0x26,0x0,0x6f,0x0,0x72,0x0,0xe7, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x72,0x0,0xe0,0x0,0x74,0x0,0x69,0x0,0x6f, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x61, + 0x0,0x6e,0x0,0x65,0x0,0x6a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x65, + 0x0,0x74,0x0,0x2e,0x0,0x20,0x0,0x46,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68,0x20,0x64,0x72,0x69, + 0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x53, + 0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x4e,0x41,0x4d, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x39,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54,0x5f,0x53,0x49,0x5a, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x46,0x0,0x50, + 0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x50, + 0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x78,0x0,0x61,0x0,0x72,0x0,0x78,0x0, + 0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x46,0x61,0x69,0x6c,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x27,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x67,0x0, + 0x75,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x61,0x69, + 0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20,0x50,0x43, + 0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x52,0x0, + 0xe0,0x0,0x70,0x0,0x69,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16, + 0x0,0x45,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x66,0x0,0x61, + 0x0,0x74,0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x46,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69,0x6c,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4e,0x0,0x6f,0x0, + 0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x46,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x26,0x0,0x4d,0x0,0xe8,0x0,0x74, + 0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66, + 0x0,0x69,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74,0x65,0x72,0x20,0x6d,0x65,0x74, + 0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x56, + 0x0,0x48,0x0,0x44,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0x69, + 0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x78,0x0,0x61,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d,0x73,0x69,0x7a,0x65, + 0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x71,0x0,0x75, + 0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x25, + 0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x61, + 0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x20,0x0,0x69,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x16,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0, + 0x69,0x0,0x73,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x74,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x6c,0x0,0x75,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c,0x75,0x78,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x45, + 0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70, + 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x47,0x0, + 0x75,0x0,0x61,0x0,0x6e,0x0,0x79,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26, + 0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73, + 0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x61,0x0,0x20,0x0,0x67,0x0,0x72,0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x44,0x20,0x43,0x6f, + 0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x64,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d, + 0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65, + 0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x49,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x64, + 0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x73,0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x34, + 0x0,0x20,0x0,0x47,0x0,0x42,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2b,0x48,0x44,0x49,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67, + 0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e, + 0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x94,0x0, + 0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0, + 0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x6f,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x61,0x0,0x6d,0x0, + 0x62,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0, + 0x64,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x65,0x0, + 0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0, + 0x65,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0, + 0x73,0x0,0x27,0x0,0x61,0x0,0x64,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x65,0x0, + 0x6e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49, + 0x20,0x6f,0x72,0x20,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77, + 0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a, + 0x65,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32, + 0x20,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x48,0x0,0x44, + 0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x20,0x0, + 0x64,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x28,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x20,0x0,0x64,0x0,0x75,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x75,0x0, + 0x72,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72, + 0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x64, + 0x0,0x75,0x0,0x72,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x52,0x0,0x65,0x0,0x69,0x0,0x6e, + 0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x61,0x0,0x71,0x0, + 0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x16,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76, + 0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xa,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x41,0x0,0x6c,0x0,0xe7,0x0,0x61,0x0, + 0x64,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x48, + 0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x26,0x0,0x45,0x0,0x73,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63, + 0x61,0x6c,0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x41,0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x26, + 0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x27, + 0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x47,0x0,0x72, + 0x0,0xe0,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x49,0x0,0x42, + 0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35, + 0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49,0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25, + 0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20, + 0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x45,0x0,0x78,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x73,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d, + 0x0,0x65,0x0,0x6d,0x0,0xf2,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x49, + 0x0,0x53,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x49,0x53, + 0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45,0x78,0x70,0x61,0x6e,0x73,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x49,0x0, + 0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0,0x43,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41,0x20,0x52,0x54,0x43,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x44,0x0,0x69,0x0,0x73, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20, + 0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67,0x0,0x65, + 0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53,0x41,0x42, + 0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x6a,0x0, + 0x75,0x0,0x6e,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x63,0x0, + 0x6f,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x49,0x63,0x6f,0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0, + 0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x44,0x0,0x69,0x0,0x73,0x0, + 0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73,0x0, + 0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0, + 0x64,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70, + 0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0, + 0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3c,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0,0x64,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50, + 0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2a,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0, + 0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0, + 0x69,0x0,0x6e,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0,0x64,0x0,0x61,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64, + 0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x31,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0, + 0x6b,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x33,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x4a,0x0, + 0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0, + 0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4b,0x0,0x42,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c, + 0x50,0x54,0x32,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0,0x50, + 0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc, + 0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x4c,0x0, + 0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x49,0x0,0x64,0x0,0x69,0x0,0x6f, + 0x0,0x6d,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73,0x0,0x20, + 0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x32, + 0x0,0x20,0x0,0x4d,0x0,0x42,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c, + 0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x6a,0x0,0x61, + 0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68, + 0x69,0x73,0x20,0x73,0x69,0x7a,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4,0x0,0x4d,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0, + 0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0, + 0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28, + 0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x6e,0x0,0x4c,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x75,0x0, + 0x6e,0x0,0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0, + 0x20,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x6f,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0, + 0x6e,0x0,0x6f,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x65,0x0, + 0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x6d,0x0, + 0x61,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x4d,0x46,0x4d, + 0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53,0x44,0x49,0x20,0x43,0x44,0x2d, + 0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73,0x20,0x6e,0x65,0x76,0x65,0x72, + 0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x34,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0, + 0x49,0x0,0x44,0x0,0x49,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x44,0x0,0x69,0x0, + 0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x4d,0x0,0x49,0x0,0x44,0x0,0x49,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20, + 0x4f,0x75,0x74,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20, + 0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a,0x20,0x25,0x6c,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x55,0x0,0x6e,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x4d,0x0,0x4f,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x4d,0x0,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4d,0x4f, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x4d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe2,0x0,0x4c,0x0,0x61, + 0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61, + 0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e, + 0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c, + 0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0xe8, + 0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61, + 0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x61,0x0,0x20, + 0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71,0x0,0x75, + 0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20, + 0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61, + 0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69, + 0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68, + 0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20, + 0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63, + 0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c, + 0x61,0x62,0x6c,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x75, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6d,0x0,0xe0,0x0,0x71, + 0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0,0xe0, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xd0,0x0,0x41,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x2d,0x0,0x76,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0, + 0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x6e,0x0, + 0x65,0x0,0x78,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x78,0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6d,0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0, + 0x20,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x6c,0x69,0x62, + 0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74,0x61,0x6c,0x6c,0x65, + 0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79,0x6f,0x75,0x20,0x61, + 0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x2d, + 0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f, + 0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x66,0x0,0x41,0x0,0x73,0x0,0x73,0x0, + 0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x75,0x0,0x2d,0x0,0x76,0x0, + 0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x69,0x0, + 0x78,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6c,0x0, + 0x6c,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75, + 0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73, + 0x74,0x73,0x20,0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62, + 0x6c,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa0,0x0,0x41, + 0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x75, + 0x0,0x2d,0x0,0x76,0x0,0x6f,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65, + 0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74, + 0x0,0xe0,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x61,0x0,0x6e,0x0,0x74, + 0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x64, + 0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69, + 0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20, + 0x0,0x70,0x0,0x75,0x0,0x67,0x0,0x75,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72, + 0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x62,0x65, + 0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61,0x20,0x77, + 0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72, + 0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x4d,0x0, + 0x65,0x0,0x6d,0x0,0xf2,0x0,0x72,0x0,0x69,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0,0x63,0x0, + 0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0,0x53,0x0, + 0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53,0x69,0x64, + 0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x4d,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74, + 0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x6d,0x0,0x6f, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6c, + 0x0,0x76,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4d,0x6f, + 0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73,0x6c,0x65,0x65,0x70,0x20,0x6d, + 0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x53, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x69,0x0,0x6c,0x0,0x69, + 0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f,0x75,0x73,0x65,0x20,0x73,0x65, + 0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x52,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0, + 0xed,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d,0x6f,0x75, + 0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x58, + 0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x41,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x74,0x0,0x61, + 0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x78, + 0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64,0x61,0x70, + 0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x78,0x0,0x61,0x0,0x72,0x0,0x78,0x0,0x61,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74, + 0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x4e,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x49,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e, + 0x65,0x77,0x20,0x49,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x27,0x0,0x68,0x0, + 0x61,0x0,0x6e,0x0,0x20,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0, + 0x74,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73,0x0, + 0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x50,0x0,0x43,0x0, + 0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20, + 0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x73,0x0,0x27,0x0,0x68,0x0,0x61,0x0,0x20,0x0,0x74,0x0, + 0x72,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x70,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x43,0x0,0x61,0x0, + 0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4e,0x0,0x75,0x0,0x6b, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xe9,0x0,0x73,0x0,0x20, + 0x0,0x61,0x0,0x63,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x44,0x0,0x27,0x0,0x61,0x0,0x63, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2, + 0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x4f,0x0, + 0x66,0x0,0x66,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x6e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26, + 0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x20, + 0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30, + 0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xd0,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0, + 0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x69,0x0, + 0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x74,0x0, + 0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x72,0x0, + 0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0, + 0x20,0x0,0x43,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x29,0x0,0x2e,0x0,0x20,0x0, + 0x55,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x74,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x65,0x0, + 0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47, + 0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20, + 0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74,0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64, + 0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x53,0x0,0x68,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20, + 0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61, + 0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x4f,0x0,0x70,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0, + 0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x41, + 0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x69,0x0,0x66,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x72,0x0,0x65, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x78, + 0x0,0x74,0x0,0x72,0x0,0x61,0x0,0xef,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x73, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x6f, + 0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69, + 0x0,0x75,0x0,0x72,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4f,0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x73, + 0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61, + 0x0,0x70,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43, + 0x61,0x70,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0, + 0x50,0x0,0x49,0x0,0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x50,0x49,0x54,0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0, + 0x74,0x0,0x61,0x0,0x20,0x0,0x50,0x0,0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0xb7,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0, + 0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x32,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72, + 0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0xb7,0x0,0x6c,0x0, + 0x65,0x0,0x6c,0x0,0x20,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6e,0x0,0x4c,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0, + 0x70,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0, + 0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x69,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x64,0x0, + 0x65,0x0,0x69,0x0,0x78,0x0,0x65,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e,0x64,0x20,0x63,0x68, + 0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61, + 0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d,0x61,0x74,0x63,0x68, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x61,0x0, + 0x75,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0, + 0x78,0x0,0x65,0x0,0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65, + 0x63,0x75,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x0,0x45,0x0,0x73,0x0, + 0x70,0x0,0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x75,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0, + 0x6d,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0, + 0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x76,0x0,0xe0,0x0,0x6c,0x0,0x69,0x0, + 0x64,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61, + 0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x50,0x0,0x6f,0x0,0x72,0x0, + 0x74,0x0,0x73,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x69,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72,0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20, + 0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0xe8,0x0, + 0x6e,0x0,0x63,0x0,0x69,0x0,0x65,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x50,0x0,0x75,0x0,0x6c,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x53,0x0,0x75,0x0,0x70,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x0,0x50,0x0,0x75,0x0,0x6c,0x0,0x73, + 0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b, + 0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74, + 0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x68,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0, + 0x75,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0, + 0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x6e,0x0, + 0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0, + 0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x66,0x0,0x69,0x0, + 0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65, + 0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64,0x6f,0x77,0x65,0x64, + 0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x6e,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0xf3,0x0, + 0x20,0x0,0x63,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73,0x20,0x46, + 0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c,0x65,0x20, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x4a,0x0,0x50,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x65,0x0,0x75,0x0,0x20, + 0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x62, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x6c,0x0,0xed,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20,0x46,0x38,0x2b,0x46, + 0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x20,0x6d,0x6f, + 0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x50, + 0x0,0x72,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67,0x72,0x65,0x73,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x0,0x71,0x0,0x75, + 0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75,0x61,0x74,0x65,0x72, + 0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c, + 0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x26, + 0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x72, + 0x0,0x20,0x0,0x6d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d,0x62,0x65, + 0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0, + 0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x0,0x43,0x0,0x6f,0x0,0x6c,0x0,0x6f,0x0, + 0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26, + 0x43,0x6f,0x6c,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x4d,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20, + 0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x63, + 0x0,0x72,0x0,0x75,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d, + 0x0,0x67,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61, + 0x77,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x52,0x0,0x65,0x0,0x26,0x0, + 0x6e,0x0,0x64,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x64,0x0,0x6f,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52, + 0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x74,0x0,0x52,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x0, + 0x65,0x0,0x75,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x69,0x0, + 0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x69,0x0, + 0x20,0x0,0x66,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x69,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6e,0x0, + 0x6f,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x63,0x0,0x69,0x0,0xf3,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f,0x20,0x70,0x61,0x72, + 0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66,0x6f,0x72,0x6d,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d,0x63,0x72,0x65,0x61, + 0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x52,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0, + 0x65,0x0,0x6a,0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x28,0x0,0x52,0x0,0x65,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x64,0x0, + 0x72,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x78,0x0,0x65,0x0, + 0x63,0x0,0x75,0x0,0x63,0x0,0x69,0x0,0xf3,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x53,0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64, + 0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61, + 0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53, + 0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65, + 0x0,0x6e,0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x44,0x0,0x65,0x0,0x73, + 0x0,0x61,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x61, + 0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0,0x53,0x0, + 0x61,0x0,0x6c,0x0,0x76,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0, + 0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x61,0x0, + 0x72,0x0,0xe0,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0, + 0x20,0x0,0x26,0x0,0x64,0x0,0x65,0x0,0x66,0x0,0x65,0x0,0x63,0x0,0x74,0x0, + 0x65,0x0,0x20,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x6c,0x0, + 0x6d,0x0,0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65,0x74,0x74, + 0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61,0x6c,0x20, + 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x63, + 0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x88, + 0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f, + 0x0,0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74, + 0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x6d,0x0,0x75,0x0,0x6c,0x0,0x74, + 0x0,0x69,0x0,0x6d,0x0,0xe8,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x62,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67, + 0x0,0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69, + 0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72,0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72, + 0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69,0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63, + 0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0, + 0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0, + 0x6e,0x0,0x65,0x0,0x75,0x0,0x20,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x56,0x0, + 0x48,0x0,0x44,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0, + 0x20,0x0,0x73,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x31,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe8,0x0, + 0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0, + 0x72,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x65,0x0, + 0x20,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72, + 0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x50,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0xe8,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x20,0x0,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x41,0x0,0x6a,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6d,0x0,0x65,0x0, + 0x6e,0x0,0x74,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x14,0x0,0x4d,0x0,0x69,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x42,0x0,0x29,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa, + 0x53,0x69,0x7a,0x65,0x20,0x28,0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x8,0x0,0x4c,0x0,0x65,0x0,0x6e,0x0,0x74,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x42,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x73, + 0x0,0x20,0x0,0x70,0x0,0x65,0x0,0x74,0x0,0x69,0x0,0x74,0x0,0x73,0x0,0x20, + 0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x20,0x0,0x4b,0x0,0x42,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20, + 0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28,0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x53,0x0,0x6f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26,0x0,0x47,0x0,0x75,0x0,0x61, + 0x0,0x6e,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x75,0x0,0x61,0x0, + 0x6e,0x0,0x79,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x53,0x0,0x6f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47, + 0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x54, + 0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64, + 0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x32,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61, + 0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x33, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e, + 0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x54,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x74, + 0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20, + 0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f, + 0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x5e,0x0,0x45,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63, + 0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x44, + 0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0,0x6f,0x0,0x6e, + 0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20, + 0x0,0x46,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61, + 0x0,0x20,0x0,0x50,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x70, + 0x0,0x61,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70, + 0x65,0x63,0x69,0x66,0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f, + 0x77,0x20,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x0,0x45,0x0,0x26,0x0,0x73,0x0,0x70,0x0, + 0x65,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x69,0x0, + 0x6f,0x0,0x6e,0x0,0x73,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0, + 0x69,0x0,0x74,0x0,0x61,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x53,0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x0,0x56,0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x63,0x0,0x69,0x0,0x74,0x0, + 0x61,0x0,0x74,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53, + 0x70,0x65,0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e, + 0x0,0x4d,0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x20, + 0x0,0x61,0x0,0x75,0x0,0x74,0x0,0xf2,0x0,0x6e,0x0,0x6f,0x0,0x6d,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f, + 0x6e,0x65,0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0,0x73,0x0,0x74,0x0, + 0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0,0x20,0x0,0x65,0x0, + 0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0,0x61,0x0,0x72,0x0,0x64,0x0, + 0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x32,0x0,0x20,0x0,0x62,0x0,0x6f,0x0, + 0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1d,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74, + 0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0,0x79,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0,0x61,0x0, + 0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x34,0x0,0x20,0x0, + 0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d, + 0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0,0x79, + 0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0,0x29, + 0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0,0x61, + 0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x36,0x0,0x20, + 0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36, + 0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x4a,0x0,0x6f,0x0, + 0x79,0x0,0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x28,0x0,0x73,0x0, + 0x29,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x6e,0x0,0x64,0x0, + 0x61,0x0,0x72,0x0,0x64,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x38,0x0, + 0x20,0x0,0x62,0x0,0x6f,0x0,0x74,0x0,0x6f,0x0,0x6e,0x0,0x73,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, + 0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a,0x0,0x43,0x0,0x6f, + 0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x6f, + 0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x27,0x0,0x65,0x0,0x6d,0x0,0x6d, + 0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x74,0x0,0x7a,0x0,0x65,0x0,0x6d,0x0,0x61, + 0x0,0x74,0x0,0x67,0x0,0x65,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13, + 0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x73, + 0x0,0x75,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x69, + 0x0,0x61,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe, + 0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x50,0x0,0x72,0x0,0x65,0x0, + 0x6e,0x0,0x64,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x63,0x0,0x26,0x0,0x61,0x0, + 0x70,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65, + 0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x0,0x54,0x0,0x61,0x0, + 0x78,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0, + 0x66,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x63,0x0,0x20,0x0,0x6f,0x0,0x62,0x0, + 0x6a,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x75,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61, + 0x6d,0x65,0x72,0x61,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0, + 0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0, + 0x20,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x72,0x0, + 0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69, + 0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x74,0x0,0x4c,0x0, + 0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0, + 0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x78,0x0,0x61,0x0,0x72,0x0, + 0x78,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x61,0x0, + 0x6e,0x0,0x76,0x0,0x69,0x0,0x61,0x0,0x72,0x0,0xe0,0x0,0x20,0x0,0x61,0x0, + 0x6c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x20,0x0,0x6e,0x0,0x75,0x0, + 0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69, + 0x74,0x63,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c, + 0x6c,0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x96,0x0,0x45,0x0,0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0, + 0x78,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x65,0x0, + 0x63,0x0,0x63,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x74,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x62,0x0,0x72,0x0,0x65,0x0, + 0x65,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0xe0,0x0, + 0x2e,0x0,0x20,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x73,0x0,0x65,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x76,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x75,0x0,0x74,0x0,0x69,0x0,0x6c,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0, + 0x72,0x0,0x2d,0x0,0x6c,0x0,0x6f,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20, + 0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x76,0x65, + 0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20,0x79,0x6f, + 0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20, + 0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x1,0xfa,0x0,0x41,0x0,0x69,0x0,0x78,0x0,0xf2,0x0,0x20,0x0, + 0x70,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x20,0x0, + 0x70,0x0,0x65,0x0,0x72,0x0,0x71,0x0,0x75,0x0,0xe8,0x0,0x20,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x20,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x64,0x0,0x69,0x0, + 0x66,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x73,0x0,0x70,0x0,0x72,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x71,0x0,0x75,0x0, + 0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0, + 0x74,0x0,0x67,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x66,0x0,0x65,0x0, + 0x72,0x0,0x65,0x0,0x6e,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x20,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0xe9,0x0,0x73,0x0, + 0x2e,0x0,0xa,0x0,0xa,0x0,0x54,0x0,0x61,0x0,0x6d,0x0,0x62,0x0,0xe9,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x61,0x0,0x73,0x0, + 0x73,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x73,0x0,0x69,0x0,0x20,0x0,0x6c,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x69,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x76,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x73,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x6d,0x0,0x6f,0x0,0x67,0x0,0x75,0x0,0x64,0x0, + 0x65,0x0,0x73,0x0,0x20,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x70,0x0, + 0x69,0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x73,0x0,0x2c,0x0,0x20,0x0,0x6f,0x0, + 0x20,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0, + 0x20,0x0,0x66,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0, + 0x20,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x6f,0x0,0x67,0x0, + 0x72,0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x20,0x0,0x71,0x0,0x75,0x0,0x65,0x0, + 0x20,0x0,0x76,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x72,0x0,0x65,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x61,0x0,0x71,0x0,0x75,0x0,0x65,0x0,0x73,0x0,0x74,0x0, + 0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x2e,0x0,0xa,0x0,0xa,0x0, + 0xbf,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x20,0x0, + 0x63,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0, + 0x69,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x64,0x0, + 0x65,0x0,0x20,0x0,0x74,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0,0x3f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69,0x73,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61,0x74,0x20,0x74,0x68, + 0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77, + 0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x66,0x74,0x65, + 0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x63,0x72,0x65, + 0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61,0x6e,0x20,0x61,0x6c, + 0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66,0x20,0x74,0x68,0x65, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x77,0x65,0x72, + 0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63,0x6f,0x70,0x69,0x65, + 0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62,0x75,0x67,0x20,0x69, + 0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x74,0x68, + 0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74,0x68,0x69,0x73,0x20, + 0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68,0x65,0x20,0x74,0x69, + 0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x78,0x0,0x45,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x72, + 0x0,0xe0,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0,0x69, + 0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69,0x0,0xf3,0x0,0x20,0x0,0x63, + 0x0,0x6f,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20, + 0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x6c,0x0,0x61,0x0,0x20,0x0,0x6d,0x0,0xe0, + 0x0,0x71,0x0,0x75,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6d, + 0x0,0x75,0x0,0x6c,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20, + 0x68,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65, + 0x6d,0x75,0x6c,0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x54,0x0,0x68,0x0, + 0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73,0x0,0x74,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0, + 0x74,0x0,0x20,0x0,0x43,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0, + 0x6c,0x0,0x20,0x0,0x53,0x0,0x79,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x6d,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d, + 0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c,0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x53,0x0,0x69,0x0,0x6e,0x0,0x63,0x0,0x72, + 0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x63,0x0,0x69, + 0x0,0xf3,0x0,0x20,0x0,0x68,0x0,0x6f,0x0,0x72,0x0,0xe0,0x0,0x72,0x0,0x69, + 0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65, + 0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54, + 0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x54,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x73,0x0,0x20,0x0,0x74,0x0,0x75,0x0, + 0x72,0x0,0x62,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x54, + 0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0, + 0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x54,0x0,0x69,0x0,0x70, + 0x0,0x75,0x0,0x73,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5, + 0x54,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30, + 0x0,0x4c,0x0,0x27,0x0,0x55,0x0,0x53,0x0,0x42,0x0,0x20,0x0,0x65,0x0,0x6e, + 0x0,0x63,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20, + 0x0,0x73,0x0,0x27,0x0,0x61,0x0,0x64,0x0,0x6d,0x0,0x65,0x0,0x74,0x0,0x65, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x74,0x0, + 0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c,0x0, + 0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x47,0x0,0x68,0x0, + 0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0, + 0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20, + 0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x7a,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61, + 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20, + 0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x20,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x63,0x0,0x69,0x0,0x61,0x0,0x6c, + 0x0,0x69,0x0,0x74,0x0,0x7a,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x2c,0x0,0x20,0x0,0xe9,0x0,0x73,0x0,0x20,0x0,0x6e,0x0,0x65, + 0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x20, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65, + 0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53, + 0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32,0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20, + 0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x76,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x72,0x0, + 0x20,0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x20,0x0,0x61,0x0,0x63,0x0,0x63,0x0, + 0x65,0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x72,0x0, + 0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x20,0x0,0x74,0x0,0x65,0x0, + 0x63,0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61, + 0x64,0x20,0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c, + 0x65,0x72,0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x4c,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0, + 0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0, + 0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0, + 0x6c,0x0,0x6c,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x72,0x0,0x20,0x0,0x65,0x0, + 0x6c,0x0,0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x64,0x0,0x4e,0x0,0x6f,0x0,0x20,0x0,0x68,0x0, + 0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74,0x0, + 0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0,0x69,0x0,0x62,0x0,0x6c,0x0, + 0x65,0x0,0x20,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x69,0x0,0x73,0x0,0x74,0x0, + 0x72,0x0,0x61,0x0,0x72,0x0,0x20,0x0,0x6c,0x0,0x27,0x0,0x65,0x0,0x6e,0x0, + 0x74,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x61,0x0,0x20,0x0,0x65,0x0,0x6e,0x0, + 0x20,0x0,0x62,0x0,0x72,0x0,0x75,0x0,0x74,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x72, + 0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61,0x77,0x20,0x69,0x6e,0x70,0x75, + 0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0,0x4e,0x0, + 0x6f,0x0,0x20,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x73,0x0, + 0x74,0x0,0x61,0x0,0x74,0x0,0x20,0x0,0x70,0x0,0x6f,0x0,0x73,0x0,0x73,0x0, + 0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x63,0x0, + 0x72,0x0,0x69,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x20,0x0,0x65,0x0,0x6c,0x0, + 0x20,0x0,0x66,0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f, + 0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x49,0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67, + 0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73, + 0x0,0x63,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6d, + 0x0,0x70,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72, + 0x74,0x65,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x55,0x0,0x73,0x0,0x61,0x0, + 0x72,0x0,0x20,0x0,0x73,0x0,0x6f,0x0,0x20,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0, + 0x41,0x0,0x54,0x0,0x33,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54,0x33,0x32,0x20,0x73,0x6f,0x75, + 0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0, + 0x54,0x0,0x69,0x0,0x70,0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x64,0x0,0x65,0x0, + 0x20,0x0,0x70,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c,0x0,0x6c,0x0, + 0x61,0x0,0x20,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74, + 0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x46, + 0x0,0x69,0x0,0x74,0x0,0x78,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x20,0x0,0x56, + 0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x56,0x48, + 0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x1,0x0,0x0,0x4c,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x67, + 0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20,0x0,0x76, + 0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68, + 0x0,0x73,0x0,0x22,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x65,0x0,0x73, + 0x0,0x74,0x0,0xe0,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6f, + 0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x20,0x0,0x70,0x0,0x65, + 0x0,0x72,0x0,0x71,0x0,0x75,0x0,0xe8,0x0,0x20,0x0,0x66,0x0,0x61,0x0,0x6c, + 0x0,0x74,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20, + 0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x64,0x0,0x69,0x0,0x72,0x0,0x65,0x0,0x63, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e, + 0x0,0x20,0x0,0x43,0x0,0x61,0x0,0x6e,0x0,0x76,0x0,0x69,0x0,0x20,0x0,0x61, + 0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x74,0x0,0x61,0x0,0x72, + 0x0,0x67,0x0,0x65,0x0,0x74,0x0,0x61,0x0,0x20,0x0,0x64,0x0,0x65,0x0,0x20, + 0x0,0x76,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x20,0x0,0x64,0x0,0x69, + 0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x69,0x0,0x62,0x0,0x6c,0x0,0x65, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x56,0x0,0xed,0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x56,0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x47,0x0,0x72,0x0,0xe0,0x0,0x66,0x0,0x69, + 0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64,0x0,0x6f, + 0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f,0x6f,0x64, + 0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x45,0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x74, + 0x0,0x73,0x0,0x20,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x65,0x0,0x73,0x0,0x70, + 0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x42,0x0,0x65,0x0,0x6e,0x0, + 0x76,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x74,0x0,0x20,0x0,0x61,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x41,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x64,0x0, + 0x61,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64, + 0x74,0x68,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x47,0x0,0x72,0x0,0xe0,0x0,0x66, + 0x0,0x69,0x0,0x63,0x0,0x73,0x0,0x20,0x0,0x58,0x0,0x47,0x0,0x41,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20,0x47,0x72,0x61,0x70, + 0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0, + 0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x58, + 0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x58,0x0, + 0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0, + 0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x0,0x6d,0x0,0xe9,0x0, + 0x73,0x0,0x20,0x0,0x72,0x0,0xe0,0x0,0x70,0x0,0x69,0x0,0x64,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x5c,0x0,0x53,0x0,0x27,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0xe0,0x0,0x20,0x0, + 0x63,0x0,0x61,0x0,0x72,0x0,0x72,0x0,0x65,0x0,0x67,0x0,0x61,0x0,0x6e,0x0, + 0x74,0x0,0x20,0x0,0x75,0x0,0x6e,0x0,0x61,0x0,0x20,0x0,0x63,0x0,0x6f,0x0, + 0x6e,0x0,0x66,0x0,0x69,0x0,0x67,0x0,0x75,0x0,0x72,0x0,0x61,0x0,0x63,0x0, + 0x69,0x0,0xf3,0x0,0x20,0x0,0x6e,0x0,0x6f,0x0,0x20,0x0,0x73,0x0,0x75,0x0, + 0x70,0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x61,0x0,0x64,0x0,0x61,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c, + 0x6f,0x61,0x64,0x69,0x6e,0x67,0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74, + 0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a, + 0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x5a,0x49,0x50,0x20,0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25, + 0x73,0x29,0x3a,0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30, + 0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x32,0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x55,0x0,0x6e,0x0,0x69,0x0,0x74,0x0,0x61, + 0x0,0x74,0x0,0x73,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x49, + 0x0,0x6d,0x0,0x61,0x0,0x74,0x0,0x67,0x0,0x65,0x0,0x73,0x0,0x20,0x0,0x5a, + 0x0,0x49,0x0,0x50,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49, + 0x50,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x0,0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0, + 0x32,0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xb,0x67,0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x67,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0, + 0x0,0x1, + // K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/86box_uk-UA.qm + 0x0,0x0,0x94,0xdf, + 0x3c, + 0xb8,0x64,0x18,0xca,0xef,0x9c,0x95,0xcd,0x21,0x1c,0xbf,0x60,0xa1,0xbd,0xdd,0x42, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x43,0x0,0x0,0x29,0x33,0x0,0x0,0x0,0x48, + 0x0,0x0,0x48,0xf,0x0,0x0,0x0,0x53,0x0,0x0,0x6b,0x16,0x0,0x0,0x2,0xc5, + 0x0,0x0,0x3,0x58,0x0,0x0,0x4,0xf2,0x0,0x0,0x51,0xb7,0x0,0x0,0x5,0x12, + 0x0,0x0,0x53,0x86,0x0,0x0,0x5,0x3b,0x0,0x0,0x5e,0x52,0x0,0x0,0x5,0x5e, + 0x0,0x0,0x5e,0x8d,0x0,0x0,0x29,0x88,0x0,0x0,0x3,0xf1,0x0,0x0,0x29,0x98, + 0x0,0x0,0x4,0x53,0x0,0x0,0x29,0xa8,0x0,0x0,0x4,0xb5,0x0,0x0,0x29,0xb8, + 0x0,0x0,0x4,0xf4,0x0,0x0,0x29,0xc8,0x0,0x0,0x5,0x56,0x0,0x0,0x29,0xd8, + 0x0,0x0,0x5,0xb8,0x0,0x0,0x29,0xe8,0x0,0x0,0x6,0x1a,0x0,0x0,0x29,0xf8, + 0x0,0x0,0x6,0x38,0x0,0x0,0x49,0xc3,0x0,0x0,0x28,0xf0,0x0,0x0,0x4d,0x7a, + 0x0,0x0,0x4d,0x8a,0x0,0x0,0x4d,0x85,0x0,0x0,0x4d,0xa8,0x0,0x0,0x55,0xc6, + 0x0,0x0,0x5e,0x6d,0x0,0x0,0x5d,0x81,0x0,0x0,0x85,0x2d,0x0,0x2,0x83,0x79, + 0x0,0x0,0x2,0x49,0x0,0x2,0x97,0xd3,0x0,0x0,0x4,0xd3,0x0,0x2,0xbb,0x23, + 0x0,0x0,0x13,0x68,0x0,0x4,0x8c,0xaf,0x0,0x0,0x27,0x62,0x0,0x4,0x9c,0x6a, + 0x0,0x0,0x29,0x10,0x0,0x4,0xa7,0x89,0x0,0x0,0x3e,0x7d,0x0,0x4,0xb5,0x8a, + 0x0,0x0,0x43,0x6a,0x0,0x4,0xc8,0xa4,0x0,0x0,0x44,0x79,0x0,0x4,0xcf,0x4, + 0x0,0x0,0x41,0xfd,0x0,0x4,0xd0,0x25,0x0,0x0,0x44,0xe6,0x0,0x4,0xd7,0xfe, + 0x0,0x0,0x47,0x77,0x0,0x5,0x56,0x45,0x0,0x0,0x5d,0xe3,0x0,0x5,0x78,0x79, + 0x0,0x0,0x6b,0x2e,0x0,0x5,0x98,0xc5,0x0,0x0,0x6c,0x12,0x0,0x5,0xa3,0x67, + 0x0,0x0,0x6f,0xa9,0x0,0x5,0xc0,0x65,0x0,0x0,0x7d,0x57,0x0,0x12,0x74,0x52, + 0x0,0x0,0x1a,0x3e,0x0,0x19,0x74,0x52,0x0,0x0,0x1a,0x77,0x0,0x29,0x31,0xc8, + 0x0,0x0,0x3,0xcd,0x0,0x2a,0xec,0x30,0x0,0x0,0xa,0xef,0x0,0x2b,0x4c,0xa5, + 0x0,0x0,0xd,0x11,0x0,0x2b,0x72,0x89,0x0,0x0,0xe,0x19,0x0,0x2b,0xcf,0xc7, + 0x0,0x0,0x13,0xb0,0x0,0x34,0x9,0xc8,0x0,0x0,0x15,0x2a,0x0,0x35,0x8,0xbe, + 0x0,0x0,0x80,0x3,0x0,0x3b,0xa9,0x68,0x0,0x0,0x1a,0xfe,0x0,0x46,0x86,0x49, + 0x0,0x0,0x1d,0xeb,0x0,0x4c,0x99,0x62,0x0,0x0,0x40,0xe4,0x0,0x4e,0x79,0x5a, + 0x0,0x0,0x37,0x21,0x0,0x58,0xc9,0xc4,0x0,0x0,0x6a,0x93,0x0,0x5a,0x6b,0xb4, + 0x0,0x0,0x72,0x9d,0x0,0x5a,0x6c,0x44,0x0,0x0,0x70,0x2c,0x0,0x5b,0xc8,0x8f, + 0x0,0x0,0x7c,0xf5,0x0,0x5c,0x6,0x8a,0x0,0x0,0x7d,0x76,0x0,0x72,0xf8,0xe3, + 0x0,0x0,0x87,0xaf,0x0,0x73,0x75,0x3e,0x0,0x0,0x35,0xc6,0x0,0x7a,0x20,0x54, + 0x0,0x0,0x5d,0xa3,0x0,0x97,0x96,0x4,0x0,0x0,0x38,0x92,0x0,0xa4,0xd5,0x15, + 0x0,0x0,0x4f,0xe7,0x0,0xaa,0xa8,0x9a,0x0,0x0,0x51,0x87,0x0,0xac,0x9c,0x93, + 0x0,0x0,0x4a,0xce,0x0,0xb8,0x5f,0x43,0x0,0x0,0x60,0x41,0x0,0xc0,0x3,0xf2, + 0x0,0x0,0x1a,0x5,0x1,0x9,0x1c,0x92,0x0,0x0,0x42,0xcc,0x1,0x30,0x54,0x2e, + 0x0,0x0,0x2b,0xe6,0x1,0x39,0xa4,0xce,0x0,0x0,0x5a,0x34,0x1,0x4b,0x75,0xc3, + 0x0,0x0,0x7d,0x19,0x1,0x4c,0x50,0xee,0x0,0x0,0x68,0x7c,0x1,0x54,0xc3,0xb9, + 0x0,0x0,0x4a,0x87,0x1,0x61,0xac,0xc9,0x0,0x0,0x14,0x5e,0x1,0x72,0x4a,0xde, + 0x0,0x0,0x7b,0x72,0x1,0x7a,0x2c,0x99,0x0,0x0,0x3c,0xef,0x1,0x91,0xe,0x73, + 0x0,0x0,0x29,0xdb,0x1,0x9c,0xe0,0x83,0x0,0x0,0x4d,0x36,0x1,0x9f,0x22,0x4a, + 0x0,0x0,0x55,0x5,0x1,0xb0,0x47,0x5c,0x0,0x0,0x53,0xa1,0x1,0xb0,0x6c,0xf2, + 0x0,0x0,0xb,0x1b,0x1,0xc8,0x65,0x8f,0x0,0x0,0x42,0x20,0x1,0xd3,0x9,0x82, + 0x0,0x0,0xb,0xfb,0x1,0xdd,0x59,0x87,0x0,0x0,0x10,0x27,0x1,0xe2,0x3,0x79, + 0x0,0x0,0x32,0x8a,0x1,0xe6,0x0,0xe9,0x0,0x0,0x6b,0xd6,0x1,0xf8,0xc4,0xc1, + 0x0,0x0,0x72,0xf8,0x2,0x14,0x18,0x2e,0x0,0x0,0xa,0x94,0x2,0x21,0x3c,0x6b, + 0x0,0x0,0x74,0x8d,0x2,0x23,0x3c,0x6b,0x0,0x0,0x74,0x1e,0x2,0x2d,0x3c,0x6b, + 0x0,0x0,0x73,0xaf,0x2,0x3c,0xaa,0x89,0x0,0x0,0x17,0xb4,0x2,0x3f,0x61,0xd7, + 0x0,0x0,0x4c,0x8d,0x2,0x78,0x48,0x1a,0x0,0x0,0x54,0xc3,0x2,0x90,0x5e,0xf9, + 0x0,0x0,0x85,0x8d,0x2,0x90,0x8d,0x12,0x0,0x0,0x43,0x8b,0x2,0x9b,0xf0,0x3, + 0x0,0x0,0x60,0xc6,0x2,0xad,0x4a,0x22,0x0,0x0,0x68,0xe9,0x2,0xae,0xfe,0x6e, + 0x0,0x0,0x9,0x69,0x2,0xb3,0xba,0xf1,0x0,0x0,0xc,0xea,0x2,0xb6,0x8c,0x95, + 0x0,0x0,0xd,0xf2,0x2,0xbb,0x66,0x33,0x0,0x0,0x12,0xca,0x2,0xbb,0xb0,0x43, + 0x0,0x0,0x13,0x89,0x2,0xcc,0xe1,0xf3,0x0,0x0,0x60,0x84,0x2,0xf9,0x69,0xf0, + 0x0,0x0,0x87,0xd3,0x3,0x5,0x38,0xb2,0x0,0x0,0x41,0xc,0x3,0x15,0xb6,0x4e, + 0x0,0x0,0x64,0x6b,0x3,0x41,0x45,0x12,0x0,0x0,0x15,0x4e,0x3,0x49,0x26,0xf2, + 0x0,0x0,0x16,0x30,0x3,0x4b,0x26,0xf2,0x0,0x0,0x16,0x57,0x3,0x52,0xf3,0x99, + 0x0,0x0,0x53,0xcb,0x3,0x65,0x26,0xf2,0x0,0x0,0x19,0x19,0x3,0x69,0x26,0xf2, + 0x0,0x0,0x19,0x40,0x3,0x6a,0x66,0x2e,0x0,0x0,0x58,0x7f,0x3,0x79,0xf0,0x15, + 0x0,0x0,0x56,0x52,0x3,0x7d,0x6c,0xe,0x0,0x0,0xb,0x6c,0x3,0x7f,0x76,0xa3, + 0x0,0x0,0x31,0x63,0x3,0x95,0x9d,0xe9,0x0,0x0,0x3,0x73,0x3,0x97,0x26,0xf2, + 0x0,0x0,0x1a,0xb0,0x3,0xa4,0x35,0xa5,0x0,0x0,0x43,0x4a,0x3,0xa4,0x6f,0x55, + 0x0,0x0,0x43,0x1c,0x3,0xa5,0x26,0xf2,0x0,0x0,0x1a,0xd7,0x3,0xc4,0x69,0x9a, + 0x0,0x0,0x5b,0x19,0x3,0xc6,0xfd,0xa9,0x0,0x0,0x73,0x3d,0x3,0xe4,0x25,0x4a, + 0x0,0x0,0x71,0x9a,0x3,0xe4,0x25,0x5a,0x0,0x0,0x71,0x58,0x3,0xe4,0x25,0x6a, + 0x0,0x0,0x71,0x16,0x3,0xe4,0x25,0x7a,0x0,0x0,0x70,0xd4,0x3,0xfa,0xfa,0xce, + 0x0,0x0,0x6,0x56,0x4,0x3,0xf6,0x9a,0x0,0x0,0x58,0xc,0x4,0xa,0x1d,0x19, + 0x0,0x0,0x18,0xb,0x4,0x15,0x75,0x22,0x0,0x0,0x15,0x75,0x4,0x17,0x65,0x22, + 0x0,0x0,0x15,0x9f,0x4,0x1c,0x68,0x69,0x0,0x0,0x17,0x5a,0x4,0x23,0x29,0x55, + 0x0,0x0,0xb,0x9c,0x4,0x31,0xff,0xe9,0x0,0x0,0x27,0x83,0x4,0x38,0xa0,0xf, + 0x0,0x0,0x2a,0xa7,0x4,0x51,0x79,0xb1,0x0,0x0,0x75,0x85,0x4,0x59,0x41,0xa4, + 0x0,0x0,0x7e,0x74,0x4,0x5b,0x53,0x1f,0x0,0x0,0x26,0x7c,0x4,0x61,0x71,0x3e, + 0x0,0x0,0x70,0x97,0x4,0x7d,0xb,0xa4,0x0,0x0,0x3d,0xb0,0x4,0x7d,0x47,0xb9, + 0x0,0x0,0x3d,0xdd,0x4,0x7e,0x9f,0x1e,0x0,0x0,0x35,0x3d,0x4,0x98,0x49,0xbc, + 0x0,0x0,0x30,0x8a,0x4,0xb8,0x1,0x2e,0x0,0x0,0x39,0xda,0x4,0xb8,0x8e,0x14, + 0x0,0x0,0xd,0x4b,0x4,0xbc,0xa4,0x5e,0x0,0x0,0x2,0xca,0x4,0xc2,0x5c,0xee, + 0x0,0x0,0x0,0x30,0x4,0xc5,0xa8,0xe9,0x0,0x0,0x18,0xbf,0x4,0xcb,0xe6,0xdb, + 0x0,0x0,0x5c,0x6a,0x4,0xcf,0xa6,0xe5,0x0,0x0,0x33,0xee,0x4,0xd5,0xa8,0xe9, + 0x0,0x0,0x18,0x65,0x4,0xe6,0xae,0xdb,0x0,0x0,0x1e,0x89,0x4,0xea,0x36,0x9a, + 0x0,0x0,0x5c,0x92,0x4,0xeb,0x2f,0xa,0x0,0x0,0x52,0xc6,0x4,0xeb,0x7b,0x6a, + 0x0,0x0,0x4c,0x38,0x5,0x18,0x5,0x95,0x0,0x0,0x80,0x9d,0x5,0x1b,0xa5,0x22, + 0x0,0x0,0x16,0xdf,0x5,0x30,0xd3,0xe,0x0,0x0,0x3c,0x20,0x5,0x46,0x85,0x64, + 0x0,0x0,0x0,0x0,0x5,0x46,0xc9,0x8a,0x0,0x0,0x5c,0x45,0x5,0x5f,0x67,0xa3, + 0x0,0x0,0x86,0x62,0x5,0x5f,0x7b,0x59,0x0,0x0,0x10,0xe8,0x5,0x6b,0x37,0x6e, + 0x0,0x0,0x3e,0x35,0x5,0x88,0x2e,0xd9,0x0,0x0,0x6f,0xd4,0x5,0x8b,0xc9,0xde, + 0x0,0x0,0x56,0x80,0x5,0xa1,0xa5,0x7e,0x0,0x0,0x7c,0xa8,0x5,0xa3,0x3d,0xd2, + 0x0,0x0,0x76,0x91,0x5,0xa5,0x3a,0x79,0x0,0x0,0x27,0xcb,0x5,0xa6,0xbb,0x7a, + 0x0,0x0,0x72,0xc9,0x5,0xb2,0x16,0x79,0x0,0x0,0x69,0x58,0x5,0xb3,0x5f,0x79, + 0x0,0x0,0x49,0xc,0x5,0xb3,0x5f,0x79,0x0,0x0,0x4a,0x42,0x5,0xb4,0x6c,0x55, + 0x0,0x0,0x40,0x83,0x5,0xb8,0x5d,0xad,0x0,0x0,0x16,0x7e,0x5,0xb8,0x5d,0xdd, + 0x0,0x0,0x14,0xc9,0x5,0xbc,0x9b,0x9d,0x0,0x0,0x15,0xc9,0x5,0xc0,0x5a,0x12, + 0x0,0x0,0x4c,0xd8,0x5,0xc1,0x4d,0x83,0x0,0x0,0x39,0x12,0x5,0xcf,0xac,0x2a, + 0x0,0x0,0x83,0x89,0x5,0xd0,0x4f,0x11,0x0,0x0,0x84,0x45,0x5,0xd1,0x13,0x7, + 0x0,0x0,0xf,0xd6,0x5,0xdf,0xba,0xba,0x0,0x0,0x84,0x9b,0x5,0xe8,0x9d,0xfa, + 0x0,0x0,0x67,0xec,0x6,0x7,0xd3,0xda,0x0,0x0,0x4e,0xe3,0x6,0xc,0xc0,0xb4, + 0x0,0x0,0x38,0xc3,0x6,0x19,0x20,0x43,0x0,0x0,0x6c,0x3b,0x6,0x33,0xa9,0x24, + 0x0,0x0,0x3b,0xd8,0x6,0x38,0x9f,0x35,0x0,0x0,0x39,0x7b,0x6,0x44,0xc6,0x5e, + 0x0,0x0,0x20,0xe,0x6,0x51,0xe6,0x13,0x0,0x0,0x7,0x17,0x6,0x5b,0x1,0x15, + 0x0,0x0,0x34,0x24,0x6,0x6c,0xb8,0x3,0x0,0x0,0x81,0xe0,0x6,0x6f,0xe2,0xa3, + 0x0,0x0,0x4b,0x1f,0x6,0x74,0xe,0x6a,0x0,0x0,0x61,0x89,0x6,0x7c,0x21,0x44, + 0x0,0x0,0x4b,0x94,0x6,0x7c,0x3f,0xa8,0x0,0x0,0x1e,0x57,0x6,0x7d,0x4e,0x8e, + 0x0,0x0,0x3f,0x2f,0x6,0x81,0xb7,0x1f,0x0,0x0,0x3a,0xdf,0x6,0x83,0xe4,0xa3, + 0x0,0x0,0x71,0xdc,0x6,0x96,0xa4,0x13,0x0,0x0,0x46,0x36,0x6,0x97,0x71,0x79, + 0x0,0x0,0x6b,0x94,0x6,0xc3,0xce,0xa3,0x0,0x0,0x74,0xfc,0x6,0xce,0x41,0x63, + 0x0,0x0,0x46,0xc8,0x6,0xed,0xca,0xce,0x0,0x0,0x48,0x64,0x6,0xf9,0x0,0x2e, + 0x0,0x0,0x8,0x48,0x6,0xfa,0xae,0xd4,0x0,0x0,0x9,0xe,0x6,0xfe,0x2a,0xa, + 0x0,0x0,0x4b,0x58,0x7,0x0,0x57,0x53,0x0,0x0,0x29,0x4b,0x7,0x3,0x2f,0xd3, + 0x0,0x0,0x55,0xfa,0x7,0x6,0x93,0xe3,0x0,0x0,0x87,0x46,0x7,0x7,0xff,0x23, + 0x0,0x0,0x1f,0xdb,0x7,0x8,0xa3,0xa9,0x0,0x0,0x3,0x29,0x7,0x14,0x6,0x33, + 0x0,0x0,0x1f,0x4e,0x7,0x2a,0xb5,0xca,0x0,0x0,0x6f,0x72,0x7,0x2b,0x97,0x15, + 0x0,0x0,0x5b,0xa2,0x7,0x35,0x7c,0x8a,0x0,0x0,0x4e,0x6d,0x7,0x3b,0x96,0x3e, + 0x0,0x0,0x63,0xe9,0x7,0x40,0xb5,0xe2,0x0,0x0,0x19,0xd2,0x7,0x48,0xc3,0x85, + 0x0,0x0,0x33,0x7f,0x7,0x58,0x61,0xe5,0x0,0x0,0x4b,0xe3,0x7,0x61,0x4e,0xd3, + 0x0,0x0,0x12,0xfd,0x7,0x70,0xb3,0xaa,0x0,0x0,0x45,0x7,0x7,0x7c,0x4e,0xda, + 0x0,0x0,0x30,0x5e,0x7,0x9e,0x50,0x1e,0x0,0x0,0x6a,0xcb,0x7,0x9f,0x1,0xba, + 0x0,0x0,0x58,0x44,0x7,0xa3,0x63,0x9e,0x0,0x0,0x69,0xcf,0x7,0xa3,0xbe,0x3e, + 0x0,0x0,0x5e,0xef,0x7,0xa4,0x32,0x89,0x0,0x0,0x1e,0xf,0x7,0xb2,0xa0,0xf5, + 0x0,0x0,0x81,0x9d,0x7,0xcc,0xab,0x49,0x0,0x0,0x2,0x6a,0x7,0xcc,0xab,0xb9, + 0x0,0x0,0x2,0x9a,0x7,0xd0,0x1e,0xb3,0x0,0x0,0x28,0x7,0x7,0xe5,0xb8,0x33, + 0x0,0x0,0x65,0xa8,0x7,0xe5,0xbe,0x1c,0x0,0x0,0x65,0x55,0x7,0xe6,0x13,0x49, + 0x0,0x0,0x3e,0x9e,0x7,0xe7,0xc3,0xb9,0x0,0x0,0x6b,0x4f,0x7,0xeb,0x94,0x4e, + 0x0,0x0,0x4e,0x8,0x8,0x0,0x3f,0x29,0x0,0x0,0x64,0xdb,0x8,0xc,0x42,0xc4, + 0x0,0x0,0x5b,0x45,0x8,0x31,0xf7,0xee,0x0,0x0,0xd,0x7e,0x8,0x55,0xc4,0x45, + 0x0,0x0,0x53,0x3c,0x8,0x60,0xe7,0xcd,0x0,0x0,0x7c,0x21,0x8,0x66,0xcd,0xc4, + 0x0,0x0,0x61,0xbb,0x8,0x68,0x71,0xae,0x0,0x0,0x8,0xd7,0x8,0x84,0xc1,0x4, + 0x0,0x0,0x7d,0x98,0x8,0x9b,0xc,0x24,0x0,0x0,0x6d,0xc1,0x8,0xa3,0xab,0xae, + 0x0,0x0,0x50,0x97,0x8,0xa3,0xdb,0xae,0x0,0x0,0x51,0x4b,0x8,0xa3,0xfb,0xae, + 0x0,0x0,0x50,0xd3,0x8,0xa4,0xb,0xae,0x0,0x0,0x51,0xf,0x8,0xa5,0xea,0x53, + 0x0,0x0,0x3d,0x57,0x8,0xa9,0xcf,0x35,0x0,0x0,0x31,0xf0,0x8,0xc2,0x8,0xce, + 0x0,0x0,0x41,0x7a,0x8,0xcc,0x85,0x75,0x0,0x0,0x7,0x7d,0x8,0xd6,0x95,0xa9, + 0x0,0x0,0x3f,0xd9,0x8,0xf7,0xb3,0xda,0x0,0x0,0x46,0x8b,0x9,0x9,0x24,0x29, + 0x0,0x0,0x52,0xee,0x9,0x49,0xfa,0x4a,0x0,0x0,0x34,0xc9,0x9,0x49,0xfa,0x5a, + 0x0,0x0,0x35,0x3,0x9,0x49,0xfa,0x6a,0x0,0x0,0x34,0x55,0x9,0x49,0xfa,0x7a, + 0x0,0x0,0x34,0x8f,0x9,0x4e,0xde,0x64,0x0,0x0,0x7d,0xf7,0x9,0x50,0x63,0x15, + 0x0,0x0,0x5d,0x13,0x9,0x57,0x6d,0x53,0x0,0x0,0x4,0xf,0x9,0x5f,0xc0,0xa5, + 0x0,0x0,0x19,0x67,0x9,0x62,0x6d,0x53,0x0,0x0,0x4,0x71,0x9,0x76,0xb0,0x75, + 0x0,0x0,0x66,0xaf,0x9,0x82,0x6d,0x53,0x0,0x0,0x5,0x12,0x9,0x88,0x63,0xa, + 0x0,0x0,0x30,0xb3,0x9,0x88,0x63,0x1a,0x0,0x0,0x30,0xdf,0x9,0x88,0x63,0x2a, + 0x0,0x0,0x31,0xb,0x9,0x88,0x63,0x3a,0x0,0x0,0x31,0x37,0x9,0x92,0x6d,0x53, + 0x0,0x0,0x5,0x74,0x9,0x9f,0xe,0xe0,0x0,0x0,0x9,0xdd,0x9,0xa7,0x6d,0x53, + 0x0,0x0,0x5,0xd6,0x9,0xb1,0xe0,0x5a,0x0,0x0,0x5c,0xdb,0x9,0xbb,0x5b,0xf8, + 0x0,0x0,0x63,0x25,0x9,0xc2,0x33,0xa9,0x0,0x0,0x17,0x9,0x9,0xd3,0x9a,0xba, + 0x0,0x0,0x5b,0xfe,0x9,0xd5,0x43,0xd3,0x0,0x0,0x36,0x51,0x9,0xd6,0x27,0xbe, + 0x0,0x0,0x11,0xc3,0xa,0xf,0x3d,0xb9,0x0,0x0,0x11,0xf9,0xa,0x17,0x34,0x34, + 0x0,0x0,0x40,0x28,0xa,0x27,0x62,0x55,0x0,0x0,0xc,0x55,0xa,0x41,0x77,0x3, + 0x0,0x0,0x45,0xe4,0xa,0x4e,0x21,0xe,0x0,0x0,0x1d,0x9d,0xa,0x5b,0x3a,0xb5, + 0x0,0x0,0x46,0xfe,0xa,0x6a,0x3a,0xa9,0x0,0x0,0x3f,0x99,0xa,0x6e,0xc7,0x8e, + 0x0,0x0,0x50,0x3b,0xa,0x7a,0xb0,0x7e,0x0,0x0,0x6,0xa6,0xa,0x7e,0x2b,0x45, + 0x0,0x0,0x80,0xf4,0xa,0x8b,0xf6,0xb9,0x0,0x0,0x6d,0xc,0xa,0x8f,0x1,0x13, + 0x0,0x0,0x75,0x46,0xa,0x98,0x1f,0x89,0x0,0x0,0x37,0x9d,0xa,0x99,0x1d,0x49, + 0x0,0x0,0x37,0x52,0xa,0x9b,0x3f,0xf3,0x0,0x0,0x4f,0x53,0xa,0xb5,0xcb,0xce, + 0x0,0x0,0x36,0xe3,0xa,0xbc,0x8a,0x94,0x0,0x0,0x8,0x9,0xa,0xbc,0x8c,0x74, + 0x0,0x0,0x37,0xe8,0xa,0xda,0x50,0x7e,0x0,0x0,0x7f,0x15,0xa,0xe9,0x15,0x84, + 0x0,0x0,0x10,0x86,0xa,0xea,0x46,0xf4,0x0,0x0,0x5d,0x47,0xb,0x2,0xd7,0x49, + 0x0,0x0,0x38,0x24,0xb,0xa,0x72,0xc9,0x0,0x0,0x3a,0xb5,0xb,0x15,0x27,0x6e, + 0x0,0x0,0x8,0x8e,0xb,0x1e,0xee,0xfe,0x0,0x0,0x59,0x97,0xb,0x29,0x70,0x65, + 0x0,0x0,0x47,0xa2,0xb,0x30,0x4b,0xa2,0x0,0x0,0xc,0xbc,0xb,0x4c,0xa1,0x2e, + 0x0,0x0,0xd,0xbe,0xb,0x4e,0x19,0x54,0x0,0x0,0x54,0x19,0xb,0x8b,0xa6,0xa4, + 0x0,0x0,0xe,0xcc,0xb,0x8c,0x46,0xe5,0x0,0x0,0xf,0x65,0xb,0x95,0xed,0xa, + 0x0,0x0,0x55,0xa9,0xb,0x9d,0xe,0xa2,0x0,0x0,0x33,0x45,0xb,0xa9,0x6a,0x46, + 0x0,0x0,0x1d,0x71,0xb,0xab,0x6c,0xfa,0x0,0x0,0x6c,0xdf,0xb,0xbc,0x78,0x6e, + 0x0,0x0,0x70,0x4e,0xb,0xd2,0xd2,0xbf,0x0,0x0,0x25,0xf9,0xb,0xd4,0xb3,0xce, + 0x0,0x0,0x49,0x51,0xb,0xe2,0xf9,0x49,0x0,0x0,0x4d,0xc6,0xb,0xee,0x2e,0xa, + 0x0,0x0,0x87,0xa,0xb,0xf0,0x9f,0x8d,0x0,0x0,0x64,0x37,0xc,0x4,0xcd,0xf5, + 0x0,0x0,0x75,0xe3,0xc,0x20,0xc4,0xde,0x0,0x0,0xe,0x4b,0xc,0x21,0xb6,0xce, + 0x0,0x0,0x11,0x2a,0xc,0x33,0xeb,0xe2,0x0,0x0,0x76,0x37,0xc,0x3f,0x3,0x54, + 0x0,0x0,0x45,0x3c,0xc,0x42,0x70,0xde,0x0,0x0,0x2a,0x17,0xc,0x48,0x83,0xde, + 0x0,0x0,0x65,0xfb,0xc,0x4a,0x5f,0x82,0x0,0x0,0x4f,0x97,0xc,0x58,0xeb,0x4f, + 0x0,0x0,0x78,0x41,0xc,0x77,0x67,0x19,0x0,0x0,0x45,0x7e,0xc,0x78,0xcd,0x5, + 0x0,0x0,0x3b,0x92,0xc,0x7d,0xcd,0xb2,0x0,0x0,0x6,0xca,0xc,0x7f,0x8e,0x33, + 0x0,0x0,0x32,0x19,0xc,0x90,0x26,0xb5,0x0,0x0,0x7f,0xab,0xc,0x9e,0xe6,0x65, + 0x0,0x0,0x61,0x16,0xc,0xb7,0xf7,0x7a,0x0,0x0,0x29,0x96,0xc,0xbb,0x1,0x73, + 0x0,0x0,0x6f,0x3d,0xc,0xc8,0xdd,0x32,0x0,0x0,0x7,0xb2,0xc,0xce,0x1e,0xc9, + 0x0,0x0,0x5e,0xae,0xc,0xdd,0xaf,0x6e,0x0,0x0,0x82,0x10,0xc,0xdd,0xc2,0x3, + 0x0,0x0,0x65,0x23,0xc,0xdf,0x6b,0x4e,0x0,0x0,0x1b,0x22,0xc,0xea,0x58,0x4b, + 0x0,0x0,0x1e,0xf0,0xd,0x11,0x45,0x1a,0x0,0x0,0x28,0xb6,0xd,0x30,0xa6,0x23, + 0x0,0x0,0x83,0xba,0xd,0x4a,0x90,0xb2,0x0,0x0,0x69,0x9d,0xd,0x4d,0xdb,0x43, + 0x0,0x0,0x84,0xee,0xd,0x60,0xef,0x6a,0x0,0x0,0x4f,0x1b,0xd,0x6f,0x99,0x3e, + 0x0,0x0,0x36,0x8d,0xd,0x77,0xa4,0xc0,0x0,0x0,0x44,0x19,0xd,0x7e,0xc0,0x1a, + 0x0,0x0,0x3a,0x7c,0xd,0x88,0x48,0x23,0x0,0x0,0x31,0xa9,0xd,0xf0,0x75,0x7e, + 0x0,0x0,0x3e,0x6,0xd,0xf1,0xaf,0xd8,0x0,0x0,0x9,0x98,0xd,0xf9,0x86,0x4e, + 0x0,0x0,0x85,0xcb,0xd,0xf9,0x90,0xe9,0x0,0x0,0x5e,0x0,0xe,0x3,0x69,0xd0, + 0x0,0x0,0x84,0xc4,0xe,0x20,0x13,0x12,0x0,0x0,0x44,0xa0,0xe,0x29,0x81,0x1f, + 0x0,0x0,0x12,0x79,0xe,0x48,0xfa,0xca,0x0,0x0,0x2a,0xf2,0xe,0x48,0xfc,0xca, + 0x0,0x0,0x2b,0x6c,0xe,0x48,0xfd,0xca,0x0,0x0,0x2b,0x2f,0xe,0x48,0xff,0xca, + 0x0,0x0,0x2b,0xa9,0xe,0x62,0x79,0x4,0x0,0x0,0x3b,0x5d,0xe,0x6c,0xca,0xe3, + 0x0,0x0,0x1f,0xab,0xe,0x7b,0xa1,0x23,0x0,0x0,0x55,0x4a,0xe,0x85,0x4f,0x6a, + 0x0,0x0,0x33,0x1c,0xe,0x98,0x18,0x54,0x0,0x0,0x28,0x5f,0xe,0xa9,0x46,0x45, + 0x0,0x0,0x67,0x6e,0xe,0xbe,0x61,0x81,0x0,0x0,0x6e,0x1d,0xe,0xbe,0x61,0x82, + 0x0,0x0,0x6e,0x65,0xe,0xbe,0x61,0x83,0x0,0x0,0x6e,0xad,0xe,0xbe,0x61,0x84, + 0x0,0x0,0x6e,0xf5,0xe,0xbf,0xdf,0x3a,0x0,0x0,0x4c,0x63,0xe,0xc4,0x7b,0x99, + 0x0,0x0,0x14,0x99,0xe,0xe2,0x34,0x60,0x0,0x0,0x86,0xb6,0xe,0xe2,0x35,0xd0, + 0x0,0x0,0x86,0xe0,0xe,0xf0,0xc9,0xb2,0x0,0x0,0xa,0x4f,0xe,0xf7,0xe,0xa5, + 0x0,0x0,0xe,0xf4,0xe,0xf7,0xac,0xae,0x0,0x0,0x11,0x74,0xf,0xb,0xd2,0xc, + 0x0,0x0,0x87,0x79,0xf,0x15,0xf4,0x85,0x0,0x0,0x4e,0x9a,0xf,0x17,0x8e,0xaf, + 0x0,0x0,0x77,0x4b,0xf,0x17,0x9c,0x64,0x0,0x0,0x81,0x5f,0xf,0x25,0x17,0xa3, + 0x0,0x0,0x60,0x2,0xf,0x29,0x4d,0x2a,0x0,0x0,0x48,0x27,0xf,0x29,0x4d,0x4a, + 0x0,0x0,0x42,0x8f,0xf,0x30,0x6b,0x3,0x0,0x0,0x32,0x55,0xf,0x39,0x25,0x9e, + 0x0,0x0,0x72,0x4d,0xf,0x5a,0x14,0x2,0x0,0x0,0xf,0x93,0xf,0x5a,0x7d,0x32, + 0x0,0x0,0x14,0x19,0xf,0x70,0xaa,0x1a,0x0,0x0,0x84,0x2,0xf,0x74,0xd,0xca, + 0x0,0x0,0x69,0x26,0xf,0x85,0x7b,0xea,0x0,0x0,0x61,0x4c,0xf,0xb5,0xb0,0x82, + 0x0,0x0,0x13,0xd8,0xf,0xbd,0xdc,0x15,0x0,0x0,0xe,0x89,0xf,0xd1,0xcc,0xa2, + 0x0,0x0,0x68,0x1a,0xf,0xd3,0x41,0x72,0x0,0x0,0x3c,0x9a,0xf,0xd9,0x8a,0xca, + 0x0,0x0,0x51,0xd2,0xf,0xd9,0x8c,0xca,0x0,0x0,0x52,0x4c,0xf,0xd9,0x8d,0xca, + 0x0,0x0,0x52,0xf,0xf,0xd9,0x8f,0xca,0x0,0x0,0x52,0x89,0xf,0xe2,0xbf,0x45, + 0x0,0x0,0x3e,0xe3,0xf,0xe2,0xe9,0x49,0x0,0x0,0x85,0x4b,0xf,0xf5,0xeb,0x51, + 0x0,0x0,0x61,0xed,0xf,0xf5,0xeb,0x52,0x0,0x0,0x62,0x3b,0xf,0xf5,0xeb,0x53, + 0x0,0x0,0x62,0x89,0xf,0xf5,0xeb,0x54,0x0,0x0,0x62,0xd7,0x69,0x0,0x0,0x87, + 0xfd,0x3,0x0,0x0,0x0,0x12,0x0,0x20,0x0,0x2d,0x0,0x20,0x0,0x50,0x0,0x41, + 0x0,0x55,0x0,0x53,0x0,0x45,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x20,0x2d,0x20,0x50,0x41,0x55,0x53,0x45,0x44,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x64,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4,0x40, + 0x4,0x56,0x4,0x31,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x30,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3c,0x4,0x30,0x4,0x42, + 0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x35, + 0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b, + 0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x53, + 0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x4,0x32,0x0,0x20, + 0x0,0x50,0x0,0x44,0x0,0x46,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x41, + 0x4,0x56,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4,0x3c,0x4,0x35, + 0x4,0x3d,0x4,0x42,0x4,0x38,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x56, + 0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x30, + 0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x40, + 0x4,0x38,0x4,0x3d,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x50,0x0,0x6f, + 0x0,0x73,0x0,0x74,0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74, + 0x0,0x2c,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x34,0x4,0x43,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x35, + 0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x33, + 0x4,0x3b,0x4,0x4f,0x4,0x34,0x4,0x56,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x50,0x0,0x6f,0x0,0x73,0x0,0x74, + 0x0,0x53,0x0,0x63,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x74,0x0,0x20,0x0,0x28, + 0x0,0x2e,0x0,0x70,0x0,0x73,0x0,0x29,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa0,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61,0x74,0x69,0x63,0x20,0x63, + 0x6f,0x6e,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x66,0x69,0x6c,0x65,0x73,0x20,0x74,0x6f, + 0x20,0x50,0x44,0x46,0x2e,0xa,0xa,0x41,0x6e,0x79,0x20,0x64,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x73,0x20,0x73,0x65,0x6e,0x74,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x67,0x65,0x6e,0x65,0x72,0x69,0x63,0x20,0x50,0x6f,0x73,0x74,0x53,0x63,0x72, + 0x69,0x70,0x74,0x20,0x70,0x72,0x69,0x6e,0x74,0x65,0x72,0x20,0x77,0x69,0x6c,0x6c, + 0x20,0x62,0x65,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x61,0x73,0x20,0x50,0x6f,0x73, + 0x74,0x53,0x63,0x72,0x69,0x70,0x74,0x20,0x28,0x2e,0x70,0x73,0x29,0x20,0x66,0x69, + 0x6c,0x65,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0, + 0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x4,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x31,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x32, + 0x0,0x69,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x25,0x30,0x31,0x69, + 0x3a,0x25,0x30,0x32,0x69,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32, + 0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x56,0x4,0x33,0x4,0x43,0x4,0x40, + 0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38, + 0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x4e,0x0,0x20,0x0,0x25,0x0,0x68, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x25,0x68,0x73,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x20,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x57,0x0,0x53,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0x25,0x69,0x20,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65, + 0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x25, + 0x0,0x75,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x25,0x75,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x25,0x0,0x75,0x0,0x20,0x4, + 0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x43,0x0,0x48,0x0,0x53,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x2c,0x0, + 0x20,0x0,0x25,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x17,0x25,0x75,0x20,0x4d,0x42,0x20,0x28,0x43,0x48,0x53,0x3a,0x20,0x25,0x69,0x2c, + 0x20,0x25,0x69,0x2c,0x20,0x25,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x30,0x2e,0x35,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x31,0x0,0x78,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x31,0x78,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x32,0x0,0x35,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x32,0x0,0x20,0x4, + 0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x32,0x35,0x20,0x66,0x70,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x32,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x32,0x78,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x30,0x0,0x20,0x4, + 0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x32,0x0, + 0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x33,0x30,0x20,0x66,0x70,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x33,0x0, + 0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x33,0x78,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x0,0x34,0x0,0x3a,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x26,0x34,0x3a,0x33,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x34,0x0,0x78, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x34,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x35,0x0,0x30,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x32, + 0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34,0x4,0x43, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x35,0x30,0x20,0x66,0x70, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26,0x0,0x35, + 0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x35,0x78,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x36,0x0,0x30, + 0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0x20, + 0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d,0x4,0x34, + 0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x36,0x30,0x20, + 0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x36,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x36, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x26,0x0,0x37, + 0x0,0x35,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x56,0x4,0x32, + 0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x43,0x4,0x3d, + 0x4,0x34,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x37, + 0x35,0x20,0x66,0x70,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x26,0x0,0x37,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x26,0x37,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x26, + 0x0,0x38,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x26,0x38, + 0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x4,0x1f, + 0x4,0x40,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40, + 0x4,0x30,0x4,0x3c,0x4,0x43,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x26,0x41,0x62,0x6f,0x75,0x74,0x20,0x38,0x36,0x42,0x6f,0x78,0x2e,0x2e, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26,0x4,0x14, + 0x4,0x56,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x41, + 0x63,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a, + 0x0,0x26,0x4,0x11,0x4,0x43,0x4,0x40,0x4,0x48,0x4,0x42,0x4,0x38,0x4,0x3d, + 0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x42,0x4,0x56,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x26,0x41,0x6d,0x62,0x65,0x72,0x20,0x6d,0x6f,0x6e,0x69,0x74, + 0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4, + 0x10,0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x3f,0x4,0x30,0x4,0x43,0x4,0x37,0x4, + 0x30,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x42,0x4, + 0x40,0x4,0x30,0x4,0x42,0x4,0x56,0x0,0x20,0x4,0x44,0x4,0x3e,0x4,0x3a,0x4, + 0x43,0x4,0x41,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x26, + 0x41,0x75,0x74,0x6f,0x2d,0x70,0x61,0x75,0x73,0x65,0x20,0x6f,0x6e,0x20,0x66,0x6f, + 0x63,0x75,0x73,0x20,0x6c,0x6f,0x73,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x0,0x26,0x4,0x23,0x4,0x41,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x34,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x26,0x41,0x76,0x65,0x72,0x61,0x67,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x26,0x0,0x43,0x0,0x74,0x0,0x72, + 0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x44,0x0,0x65, + 0x0,0x6c,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x43, + 0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x44,0x65,0x6c,0x9,0x43,0x74,0x72,0x6c, + 0x2b,0x46,0x31,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0, + 0x26,0x4,0x17,0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4, + 0x32,0x4,0x47,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x4, + 0x3c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x26,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26, + 0x4,0x14,0x4,0x3e,0x4,0x3a,0x4,0x43,0x4,0x3c,0x4,0x35,0x4,0x3d,0x4,0x42, + 0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37, + 0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x4, + 0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x26,0x45,0x78, + 0x69,0x73,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2e,0x0,0x26,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c, + 0x4,0x3e,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f, + 0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x3a,0x4,0x56,0x4,0x3d,0x4,0x35,0x4,0x46, + 0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x46,0x61,0x73, + 0x74,0x20,0x66,0x6f,0x72,0x77,0x61,0x72,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65, + 0x20,0x65,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0, + 0x26,0x4,0x22,0x4,0x35,0x4,0x3a,0x4,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x26,0x46,0x6f,0x6c,0x64,0x65,0x72, + 0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0,0x26, + 0x4,0x1d,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x41,0x4,0x4c,0x0,0x20, + 0x4,0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x26,0x46,0x75,0x6c,0x6c,0x20,0x73,0x63,0x72,0x65,0x65,0x6e, + 0x20,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x44,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e,0x4, + 0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x9,0x0,0x43,0x0, + 0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0, + 0x50,0x0,0x67,0x0,0x55,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x19,0x26,0x46,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x9,0x43,0x74,0x72, + 0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x55,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x17,0x4,0x35,0x4,0x3b,0x4,0x35,0x4, + 0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x42,0x4, + 0x56,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x26,0x47,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x25,0x4,0x3e, + 0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42, + 0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x48,0x61,0x72, + 0x64,0x20,0x52,0x65,0x73,0x65,0x74,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x14,0x4,0x3e,0x4,0x3f,0x4,0x3e,0x4, + 0x3c,0x4,0x3e,0x4,0x33,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x48,0x65,0x6c,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2c,0x0,0x26,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x45,0x4,0x3e,0x4,0x32,0x4, + 0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x4f,0x4,0x34,0x4,0x3e,0x4, + 0x3a,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x43,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x26,0x48,0x69,0x64,0x65,0x20,0x73,0x74,0x61, + 0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x26,0x49, + 0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3c,0x0,0x26,0x4,0x26,0x4,0x56,0x4,0x3b,0x4,0x56,0x4,0x41,0x4,0x3d, + 0x4,0x3e,0x4,0x47,0x4,0x38,0x4,0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30, + 0x4,0x31,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x49,0x6e,0x74,0x65,0x67,0x65,0x72, + 0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x0,0x26,0x4,0x6,0x4,0x3d,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4, + 0x3b,0x4,0x4c,0x4,0x3e,0x4,0x40,0x4,0x38,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x26,0x49,0x6e,0x76,0x65, + 0x72,0x74,0x65,0x64,0x20,0x56,0x47,0x41,0x20,0x6d,0x6f,0x6e,0x69,0x74,0x6f,0x72, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x0,0x26,0x4,0x1a,0x4, + 0x3b,0x4,0x30,0x4,0x32,0x4,0x56,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x40,0x4, + 0x30,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4,0x40,0x4,0x35,0x4,0x31,0x4, + 0x43,0x4,0x54,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x45,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x26,0x4b,0x65, + 0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x73,0x20, + 0x63,0x61,0x70,0x74,0x75,0x72,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x12,0x0,0x26,0x4,0x1b,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x39,0x4,0x3d, + 0x4,0x38,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4c, + 0x69,0x6e,0x65,0x61,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x0,0x26,0x4,0x1d,0x4,0x3e,0x4,0x41,0x4,0x56,0x4,0x57,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x4d,0x65,0x64,0x69,0x61,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x4,0x12,0x4,0x56,0x4,0x34,0x4, + 0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4, + 0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x4d,0x75,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x0,0x26,0x4,0x1d,0x4,0x30,0x4,0x39,0x4,0x31,0x4,0x3b,0x4,0x38,0x4, + 0x36,0x4,0x47,0x4,0x38,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x8,0x26,0x4e,0x65,0x61,0x72,0x65,0x73,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x0,0x26,0x4,0x1d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39, + 0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0x2e, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x26,0x4e,0x65,0x77, + 0x20,0x69,0x6d,0x61,0x67,0x65,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x26,0x4,0x21,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x4e,0x65,0x77,0x2e,0x2e,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x26,0x4,0x1f,0x4,0x30,0x4,0x43, + 0x4,0x37,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x26,0x50, + 0x61,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0, + 0x26,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4, + 0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x26,0x50,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x26,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x35,0x4, + 0x42,0x4,0x40,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x26,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65, + 0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0, + 0x26,0x0,0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4, + 0x3e,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d,0x4,0x38,0x4,0x39,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x52,0x47,0x42,0x20,0x47,0x72, + 0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x63,0x6f,0x72,0x64,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x46,0x0,0x26,0x4,0x17,0x4,0x3d, + 0x4,0x3e,0x4,0x32,0x4,0x43,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30, + 0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x3d, + 0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x26,0x52,0x65,0x6c,0x6f,0x61, + 0x64,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x69,0x6d,0x61,0x67,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x1f,0x4, + 0x40,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x26,0x4,0x12,0x4,0x38,0x4, + 0x34,0x4,0x30,0x4,0x3b,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x48,0x4, + 0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xe,0x26,0x52,0x65,0x6d,0x6f,0x76,0x65,0x20,0x73,0x68,0x61,0x64,0x65, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x26,0x4,0x17, + 0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x40, + 0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x32,0x4,0x56, + 0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0x26,0x52,0x65,0x73,0x69,0x7a,0x65,0x61,0x62,0x6c,0x65,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x26,0x4, + 0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x42,0x4,0x43,0x4, + 0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x4,0x47,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x52,0x65,0x77,0x69,0x6e,0x64, + 0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x62,0x65,0x67,0x69,0x6e,0x6e,0x69,0x6e, + 0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x0,0x26,0x4,0x1f, + 0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x54, + 0x0,0x52,0x0,0x4c,0x0,0x20,0x0,0x2d,0x0,0x20,0x4,0x46,0x4,0x35,0x0,0x20, + 0x4,0x3b,0x4,0x56,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x41,0x0,0x4c, + 0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x26,0x52,0x69,0x67, + 0x68,0x74,0x20,0x43,0x54,0x52,0x4c,0x20,0x69,0x73,0x20,0x6c,0x65,0x66,0x74,0x20, + 0x41,0x4c,0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x53,0x0,0x6f,0x0,0x66, + 0x0,0x74,0x0,0x77,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xf,0x26,0x53,0x44,0x4c,0x20,0x28,0x53,0x6f,0x66,0x74, + 0x77,0x61,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x48,0x4,0x35,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x40,0x0,0x2e, + 0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x26,0x53, + 0x65,0x6c,0x65,0x63,0x74,0x20,0x73,0x68,0x61,0x64,0x65,0x72,0x2e,0x2e,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x26,0x4,0x1d,0x4,0x30, + 0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d, + 0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d, + 0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xc,0x26,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0,0x26,0x4,0x12,0x4,0x3a,0x4, + 0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x26,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x0, + 0x26,0x4,0x1a,0x4,0x32,0x4,0x30,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x42,0x4, + 0x3d,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x3a,0x4,0x41,0x4,0x35,0x4, + 0x3b,0x4,0x56,0x0,0x20,0x0,0x28,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40,0x4, + 0x35,0x4,0x33,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4, + 0x3d,0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x26,0x53,0x71,0x75,0x61,0x72,0x65, + 0x20,0x70,0x69,0x78,0x65,0x6c,0x73,0x20,0x28,0x4b,0x65,0x65,0x70,0x20,0x72,0x61, + 0x74,0x69,0x6f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0, + 0x26,0x4,0x21,0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4, + 0x56,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x20,0x4,0x37,0x0, + 0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x26,0x53,0x79,0x6e,0x63,0x20,0x77,0x69,0x74,0x68,0x20, + 0x76,0x69,0x64,0x65,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18, + 0x0,0x26,0x4,0x6,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x26,0x54,0x6f,0x6f,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x3e,0x0,0x26,0x4,0x1e,0x4,0x31,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4, + 0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x3d,0x4, + 0x30,0x4,0x47,0x4,0x3a,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x40,0x4,0x4f,0x4, + 0x34,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4, + 0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x26,0x55,0x70,0x64,0x61, + 0x74,0x65,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x62,0x61,0x72,0x20,0x69,0x63, + 0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x0,0x26, + 0x0,0x56,0x0,0x4e,0x0,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4, + 0x26,0x56,0x4e,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x26,0x0,0x56,0x0,0x53,0x0,0x79,0x0,0x6e,0x0,0x63,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x26,0x56,0x53,0x79,0x6e,0x63,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x33,0x4,0x3b, + 0x4,0x4f,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x26,0x56, + 0x69,0x65,0x77,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x26, + 0x4,0x11,0x4,0x56,0x4,0x3b,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x56, + 0x4,0x34,0x4,0x42,0x4,0x56,0x4,0x3d,0x4,0x3e,0x4,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xe,0x26,0x57,0x68,0x69,0x74,0x65,0x20,0x6d,0x6f,0x6e, + 0x69,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x0, + 0x26,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4,0x31,0x0, + 0x20,0x4,0x32,0x4,0x56,0x4,0x3a,0x4,0x3d,0x4,0x30,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x14,0x26,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x73,0x63,0x61, + 0x6c,0x65,0x20,0x66,0x61,0x63,0x74,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x16,0x0,0x28,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35, + 0x4,0x3c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x28,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x44,0x65,0x66,0x61, + 0x75,0x6c,0x74,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0, + 0x28,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x36,0x4,0x3d,0x4,0x4c,0x4, + 0x3e,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x28,0x65,0x6d, + 0x70,0x74,0x79,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x38,0x4, + 0x1d,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x25,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4, + 0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56,0x4,0x48,0x4,0x35,0x0, + 0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0, + 0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x31,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70,0x65,0x72,0x66,0x65,0x63, + 0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa, + 0x0,0x31,0x0,0x2e,0x0,0x26,0x0,0x35,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x31,0x2e,0x26,0x35,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x2e,0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x2e,0x32,0x20,0x4d,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x31,0x2e,0x32,0x35,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x34,0x0,0x20,0x4, + 0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x31,0x2e,0x34, + 0x34,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4, + 0x1d,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x35,0x0,0x25,0x0,0x20,0x4, + 0x3f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56,0x4, + 0x48,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4, + 0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x31,0x2e,0x35,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20, + 0x70,0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0,0x36,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x31,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x31,0x0, + 0x38,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x31,0x38,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x38,0x4,0x1d,0x4,0x30,0x0,0x20,0x0,0x32,0x0,0x25,0x0,0x20, + 0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56, + 0x4,0x48,0x4,0x35,0x0,0x20,0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x3e, + 0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x52,0x0,0x50,0x0,0x4d,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0x32,0x25,0x20,0x62,0x65,0x6c,0x6f,0x77,0x20,0x70, + 0x65,0x72,0x66,0x65,0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xe,0x0,0x32,0x0,0x2e,0x0,0x38,0x0,0x38,0x0,0x20,0x4, + 0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x32,0x2e,0x38, + 0x38,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x0, + 0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0, + 0x20,0x4,0x13,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0, + 0x61,0x0,0x4d,0x0,0x4f,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x33,0x2e,0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69, + 0x67,0x61,0x4d,0x4f,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x38, + 0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x31,0x32,0x38, + 0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x30,0x30,0x39,0x30,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x0,0x33,0x0,0x2e,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x2e,0x0,0x33,0x0,0x20,0x4,0x13,0x4,0x11, + 0x0,0x20,0x0,0x28,0x0,0x47,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x4d,0x0,0x4f, + 0x0,0x20,0x0,0x32,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x33,0x2e,0x35,0x22,0x20,0x32,0x2e,0x33,0x20,0x47,0x42,0x20,0x28,0x47,0x69,0x67, + 0x61,0x4d,0x4f,0x20,0x32,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x32,0x0,0x33,0x0, + 0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0, + 0x4f,0x0,0x20,0x0,0x31,0x0,0x33,0x0,0x39,0x0,0x36,0x0,0x33,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x32,0x33, + 0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x33,0x39,0x36,0x33,0x29, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0, + 0x35,0x0,0x22,0x0,0x20,0x0,0x35,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x1c,0x4, + 0x11,0x0,0x20,0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0, + 0x35,0x0,0x34,0x0,0x39,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x17,0x33,0x2e,0x35,0x22,0x20,0x35,0x34,0x30,0x20,0x4d,0x42,0x20,0x28, + 0x49,0x53,0x4f,0x20,0x31,0x35,0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2e,0x0,0x33,0x0,0x2e,0x0,0x35,0x0,0x22,0x0,0x20,0x0, + 0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x20,0x0,0x28,0x0, + 0x49,0x0,0x53,0x0,0x4f,0x0,0x20,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x39,0x0, + 0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x33,0x2e,0x35, + 0x22,0x20,0x36,0x34,0x30,0x20,0x4d,0x42,0x20,0x28,0x49,0x53,0x4f,0x20,0x31,0x35, + 0x34,0x39,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0, + 0x33,0x0,0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x6,0x33,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x33,0x0,0x36,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x33,0x36,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x44,0x4,0x26,0x4, + 0x56,0x4,0x3b,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x3e,0x4,0x47,0x4,0x38,0x4, + 0x41,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3c,0x4, + 0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4,0x31,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x26,0x0, + 0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x34,0x3a,0x26,0x33,0x20, + 0x49,0x6e,0x74,0x65,0x67,0x65,0x72,0x20,0x73,0x63,0x61,0x6c,0x65,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35, + 0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x20,0x4,0x13,0x4,0x11,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x35,0x2e,0x32,0x35,0x22,0x20,0x31,0x20,0x47,0x42, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0, + 0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x31,0x0,0x2e,0x0,0x33,0x0,0x20,0x4, + 0x13,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32, + 0x35,0x22,0x20,0x31,0x2e,0x33,0x20,0x47,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x0,0x35,0x0,0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20, + 0x0,0x36,0x0,0x30,0x0,0x30,0x0,0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xc,0x35,0x2e,0x32,0x35,0x22,0x20,0x36,0x30,0x30,0x20, + 0x4d,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x0,0x35,0x0, + 0x2e,0x0,0x32,0x0,0x35,0x0,0x22,0x0,0x20,0x0,0x36,0x0,0x35,0x0,0x30,0x0, + 0x20,0x4,0x1c,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x35, + 0x2e,0x32,0x35,0x22,0x20,0x36,0x35,0x30,0x20,0x4d,0x42,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x36,0x0,0x34,0x0,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x36,0x34,0x30,0x20, + 0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc,0x0,0x37,0x0, + 0x32,0x0,0x30,0x0,0x20,0x4,0x3a,0x4,0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x37,0x32,0x30,0x20,0x6b,0x42,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xa,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x38,0x36,0x42,0x6f,0x78,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x1,0x8e,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3c,0x4,0x56, + 0x4,0x33,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x36,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e, + 0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x56, + 0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x3b, + 0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38, + 0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x44, + 0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x20,0x4,0x37,0x0,0x20,0x4,0x1f, + 0x4,0x17,0x4,0x23,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x11,0x4,0x43,0x4,0x34, + 0x4,0x4c,0x0,0x20,0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20, + 0x0,0x3c,0x0,0x61,0x0,0x20,0x0,0x68,0x0,0x72,0x0,0x65,0x0,0x66,0x0,0x3d, + 0x0,0x22,0x0,0x68,0x0,0x74,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x3a,0x0,0x2f, + 0x0,0x2f,0x0,0x67,0x0,0x69,0x0,0x74,0x0,0x68,0x0,0x75,0x0,0x62,0x0,0x2e, + 0x0,0x63,0x0,0x6f,0x0,0x6d,0x0,0x2f,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f, + 0x0,0x78,0x0,0x2f,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x72, + 0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x73,0x0,0x2f, + 0x0,0x6c,0x0,0x61,0x0,0x74,0x0,0x65,0x0,0x73,0x0,0x74,0x0,0x22,0x0,0x3e, + 0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36, + 0x4,0x42,0x4,0x35,0x0,0x3c,0x0,0x2f,0x0,0x61,0x0,0x3e,0x0,0x20,0x4,0x3d, + 0x4,0x30,0x4,0x31,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23, + 0x0,0x20,0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x4f,0x4,0x33, + 0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x39,0x4,0x3e,0x4,0x33, + 0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30, + 0x4,0x3b,0x4,0x3e,0x4,0x33,0x0,0x20,0x0,0x22,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x22,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xac, + 0x38,0x36,0x42,0x6f,0x78,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20, + 0x66,0x69,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x75,0x73,0x61,0x62,0x6c,0x65,0x20, + 0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x2e,0xa,0xa,0x50,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x73,0x3a,0x2f,0x2f,0x67,0x69,0x74,0x68,0x75,0x62,0x2e,0x63,0x6f,0x6d,0x2f, + 0x38,0x36,0x42,0x6f,0x78,0x2f,0x72,0x6f,0x6d,0x73,0x2f,0x72,0x65,0x6c,0x65,0x61, + 0x73,0x65,0x73,0x2f,0x6c,0x61,0x74,0x65,0x73,0x74,0x22,0x3e,0x64,0x6f,0x77,0x6e, + 0x6c,0x6f,0x61,0x64,0x3c,0x2f,0x61,0x3e,0x20,0x61,0x20,0x52,0x4f,0x4d,0x20,0x73, + 0x65,0x74,0x20,0x61,0x6e,0x64,0x20,0x65,0x78,0x74,0x72,0x61,0x63,0x74,0x20,0x69, + 0x74,0x20,0x69,0x6e,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x22,0x72,0x6f,0x6d,0x73, + 0x22,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0, + 0x78,0x0,0x20,0x0,0x76,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x38,0x36,0x42,0x6f,0x78,0x20,0x76,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2c,0x4,0x21,0x4,0x38,0x4,0x33,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0, + 0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x35,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0,0x41,0x0,0x43,0x0,0x50,0x0,0x49,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x41,0x43,0x50,0x49,0x20,0x73,0x68, + 0x75,0x74,0x64,0x6f,0x77,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xa,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x5,0x41,0x54,0x41,0x50,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x22,0x0,0x41,0x0,0x54,0x0,0x41,0x0,0x50,0x0,0x49,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x41,0x54,0x41,0x50,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31, + 0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4, + 0x40,0x4,0x3e,0x0,0x20,0x0,0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x41,0x62,0x6f,0x75,0x74,0x20,0x38, + 0x36,0x42,0x6f,0x78,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4, + 0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4, + 0x56,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x36,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x16,0x41,0x64,0x64,0x20,0x45,0x78,0x69,0x73,0x74,0x69,0x6e, + 0x67,0x20,0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x38,0x4,0x21,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40, + 0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x36,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a, + 0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x41,0x64,0x64,0x20,0x4e,0x65,0x77,0x20, + 0x48,0x61,0x72,0x64,0x20,0x44,0x69,0x73,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x32,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x48,0x4,0x38,0x4,0x40, + 0x4,0x35,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e, + 0x4,0x40,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x41,0x64,0x76,0x61,0x6e,0x63,0x65,0x64,0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x12,0x4,0x12,0x4,0x41,0x4,0x56,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x41,0x6c,0x6c, + 0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x4,0x12,0x4,0x41,0x4,0x56,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4, + 0x30,0x4,0x37,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x41, + 0x6c,0x6c,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x3,0xf2,0x4,0x15,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4f,0x4,0x42, + 0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4,0x40,0x4,0x38, + 0x4,0x45,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3c,0x4,0x3f,0x0,0x27,0x4,0x4e, + 0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x56,0x4,0x32,0x0,0xa,0x0,0xa,0x4,0x10, + 0x4,0x32,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x38,0x0,0x3a,0x0,0x20,0x0,0x4d, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x20,0x0,0x47,0x0,0x72,0x1,0xd, + 0x0,0x61,0x0,0x20,0x0,0x28,0x0,0x4f,0x0,0x42,0x0,0x61,0x0,0x74,0x0,0x74, + 0x0,0x6c,0x0,0x65,0x0,0x72,0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x52,0x0,0x69, + 0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x47,0x0,0x38,0x0,0x36, + 0x0,0x37,0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x69, + 0x0,0x6e,0x0,0x65,0x0,0x20,0x0,0x49,0x0,0x77,0x0,0x61,0x0,0x6e,0x0,0x65, + 0x0,0x6b,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x43,0x0,0x31,0x0,0x39,0x0,0x39, + 0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x6c,0x0,0x64,0x0,0x62, + 0x0,0x72,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x64,0x0,0x2c,0x0,0x20,0x0,0x54, + 0x0,0x65,0x0,0x65,0x0,0x6d,0x0,0x75,0x0,0x20,0x0,0x4b,0x0,0x6f,0x0,0x72, + 0x0,0x68,0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x20,0x0,0x28,0x0,0x4d, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x61,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x29, + 0x0,0x2c,0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x61,0x0,0x6b,0x0,0x69,0x0,0x6d, + 0x0,0x20,0x0,0x4c,0x0,0x2e,0x0,0x20,0x0,0x47,0x0,0x69,0x0,0x6c,0x0,0x6a, + 0x0,0x65,0x0,0x2c,0x0,0x20,0x0,0x41,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x65, + 0x0,0x6e,0x0,0x20,0x0,0x4d,0x0,0x6f,0x0,0x75,0x0,0x6c,0x0,0x69,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x65,0x0,0x6c,0x0,0x79,0x0,0x6f,0x0,0x73,0x0,0x68, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x44,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x65, + 0x0,0x6c,0x0,0x20,0x0,0x42,0x0,0x61,0x0,0x6c,0x0,0x73,0x0,0x6f,0x0,0x6d, + 0x0,0x20,0x0,0x28,0x0,0x67,0x0,0x6c,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x29,0x0,0x2c,0x0,0x20, + 0x0,0x43,0x0,0x61,0x0,0x63,0x0,0x6f,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x6f, + 0x0,0x6e,0x0,0x33,0x0,0x34,0x0,0x35,0x0,0x2c,0x0,0x20,0x0,0x46,0x0,0x72, + 0x0,0x65,0x0,0x64,0x0,0x20,0x0,0x4e,0x0,0x2e,0x0,0x20,0x0,0x76,0x0,0x61, + 0x0,0x6e,0x0,0x20,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x20,0x0,0x28,0x0,0x77,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x6a,0x0,0x65, + 0x0,0x29,0x0,0x2c,0x0,0x20,0x0,0x54,0x0,0x69,0x0,0x73,0x0,0x65,0x0,0x6e, + 0x0,0x6f,0x0,0x31,0x0,0x30,0x0,0x30,0x0,0x2c,0x0,0x20,0x0,0x72,0x0,0x65, + 0x0,0x65,0x0,0x6e,0x0,0x69,0x0,0x67,0x0,0x6e,0x0,0x65,0x0,0x2c,0x0,0x20, + 0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f,0x0,0x74,0x0,0x68,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa,0x0,0x57,0x0,0x69,0x0,0x74, + 0x0,0x68,0x0,0x20,0x0,0x70,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f, + 0x0,0x75,0x0,0x73,0x0,0x20,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x20, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x62,0x0,0x75, + 0x0,0x74,0x0,0x69,0x0,0x6f,0x0,0x6e,0x0,0x73,0x0,0x20,0x0,0x66,0x0,0x72, + 0x0,0x6f,0x0,0x6d,0x0,0x20,0x0,0x53,0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x68, + 0x0,0x20,0x0,0x57,0x0,0x61,0x0,0x6c,0x0,0x6b,0x0,0x65,0x0,0x72,0x0,0x2c, + 0x0,0x20,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x2c, + 0x0,0x20,0x0,0x4a,0x0,0x6f,0x0,0x68,0x0,0x6e,0x0,0x45,0x0,0x6c,0x0,0x6c, + 0x0,0x69,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x2c,0x0,0x20,0x0,0x67,0x0,0x72, + 0x0,0x65,0x0,0x61,0x0,0x74,0x0,0x70,0x0,0x73,0x0,0x79,0x0,0x63,0x0,0x68, + 0x0,0x6f,0x0,0x2c,0x0,0x20,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x20,0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0xa,0x0,0xa, + 0x4,0x12,0x4,0x38,0x4,0x3f,0x4,0x43,0x4,0x41,0x4,0x3a,0x4,0x30,0x4,0x54, + 0x4,0x42,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x0,0x20, + 0x4,0x3b,0x4,0x56,0x4,0x46,0x4,0x35,0x4,0x3d,0x4,0x37,0x4,0x56,0x4,0x54, + 0x4,0x4e,0x0,0x20,0x0,0x47,0x0,0x4e,0x0,0x55,0x0,0x20,0x0,0x47,0x0,0x65, + 0x0,0x6e,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x20,0x0,0x50,0x0,0x75, + 0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x63,0x0,0x20,0x0,0x4c,0x0,0x69,0x0,0x63, + 0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x20,0x4,0x32,0x4,0x35,0x4,0x40, + 0x4,0x41,0x4,0x56,0x4,0x57,0x0,0x20,0x0,0x32,0x0,0x20,0x4,0x30,0x4,0x31, + 0x4,0x3e,0x0,0x20,0x4,0x31,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x48,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x37,0x4,0x3d,0x4,0x56,0x4,0x48,0x4,0x35, + 0x0,0x2e,0x0,0x20,0x4,0x14,0x4,0x3e,0x4,0x34,0x4,0x30,0x4,0x34,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x43,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x44,0x4,0x3e, + 0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x0,0x20,0x4,0x41, + 0x4,0x3c,0x0,0x2e,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x4,0x56,0x0,0x20,0x0,0x4c,0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x4e, + 0x0,0x53,0x0,0x45,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x1,0xe4, + 0x41,0x6e,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74,0x6f,0x72,0x20,0x6f,0x66,0x20,0x6f, + 0x6c,0x64,0x20,0x63,0x6f,0x6d,0x70,0x75,0x74,0x65,0x72,0x73,0xa,0xa,0x41,0x75, + 0x74,0x68,0x6f,0x72,0x73,0x3a,0x20,0x4d,0x69,0x72,0x61,0x6e,0x20,0x47,0x72,0xc4, + 0x8d,0x61,0x20,0x28,0x4f,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x29,0x2c,0x20,0x52, + 0x69,0x63,0x68,0x61,0x72,0x64,0x47,0x38,0x36,0x37,0x2c,0x20,0x4a,0x61,0x73,0x6d, + 0x69,0x6e,0x65,0x20,0x49,0x77,0x61,0x6e,0x65,0x6b,0x2c,0x20,0x54,0x43,0x31,0x39, + 0x39,0x35,0x2c,0x20,0x63,0x6f,0x6c,0x64,0x62,0x72,0x65,0x77,0x65,0x64,0x2c,0x20, + 0x54,0x65,0x65,0x6d,0x75,0x20,0x4b,0x6f,0x72,0x68,0x6f,0x6e,0x65,0x6e,0x20,0x28, + 0x4d,0x61,0x6e,0x61,0x61,0x74,0x74,0x69,0x29,0x2c,0x20,0x4a,0x6f,0x61,0x6b,0x69, + 0x6d,0x20,0x4c,0x2e,0x20,0x47,0x69,0x6c,0x6a,0x65,0x2c,0x20,0x41,0x64,0x72,0x69, + 0x65,0x6e,0x20,0x4d,0x6f,0x75,0x6c,0x69,0x6e,0x20,0x28,0x65,0x6c,0x79,0x6f,0x73, + 0x68,0x29,0x2c,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x42,0x61,0x6c,0x73,0x6f, + 0x6d,0x20,0x28,0x67,0x6c,0x6f,0x72,0x69,0x6f,0x75,0x73,0x63,0x6f,0x77,0x29,0x2c, + 0x20,0x43,0x61,0x63,0x6f,0x64,0x65,0x6d,0x6f,0x6e,0x33,0x34,0x35,0x2c,0x20,0x46, + 0x72,0x65,0x64,0x20,0x4e,0x2e,0x20,0x76,0x61,0x6e,0x20,0x4b,0x65,0x6d,0x70,0x65, + 0x6e,0x20,0x28,0x77,0x61,0x6c,0x74,0x6a,0x65,0x29,0x2c,0x20,0x54,0x69,0x73,0x65, + 0x6e,0x6f,0x31,0x30,0x30,0x2c,0x20,0x72,0x65,0x65,0x6e,0x69,0x67,0x6e,0x65,0x2c, + 0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa,0xa,0x57,0x69, + 0x74,0x68,0x20,0x70,0x72,0x65,0x76,0x69,0x6f,0x75,0x73,0x20,0x63,0x6f,0x72,0x65, + 0x20,0x63,0x6f,0x6e,0x74,0x72,0x69,0x62,0x75,0x74,0x69,0x6f,0x6e,0x73,0x20,0x66, + 0x72,0x6f,0x6d,0x20,0x53,0x61,0x72,0x61,0x68,0x20,0x57,0x61,0x6c,0x6b,0x65,0x72, + 0x2c,0x20,0x6c,0x65,0x69,0x6c,0x65,0x69,0x2c,0x20,0x4a,0x6f,0x68,0x6e,0x45,0x6c, + 0x6c,0x69,0x6f,0x74,0x74,0x2c,0x20,0x67,0x72,0x65,0x61,0x74,0x70,0x73,0x79,0x63, + 0x68,0x6f,0x2c,0x20,0x61,0x6e,0x64,0x20,0x6f,0x74,0x68,0x65,0x72,0x73,0x2e,0xa, + 0xa,0x52,0x65,0x6c,0x65,0x61,0x73,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,0x20, + 0x74,0x68,0x65,0x20,0x47,0x4e,0x55,0x20,0x47,0x65,0x6e,0x65,0x72,0x61,0x6c,0x20, + 0x50,0x75,0x62,0x6c,0x69,0x63,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x76, + 0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x32,0x20,0x6f,0x72,0x20,0x6c,0x61,0x74,0x65, + 0x72,0x2e,0x20,0x53,0x65,0x65,0x20,0x4c,0x49,0x43,0x45,0x4e,0x53,0x45,0x20,0x66, + 0x6f,0x72,0x20,0x6d,0x6f,0x72,0x65,0x20,0x69,0x6e,0x66,0x6f,0x72,0x6d,0x61,0x74, + 0x69,0x6f,0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a,0x4, + 0x12,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,0x4,0x32,0x4,0x3d,0x4, + 0x35,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4, + 0x45,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4, + 0x38,0x4,0x39,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x37,0x0,0x20,0x0,0x38,0x0, + 0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x24,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x65,0x78,0x69,0x74, + 0x20,0x38,0x36,0x42,0x6f,0x78,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x98,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,0x4,0x32, + 0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e, + 0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20, + 0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x32, + 0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x4f,0x0,0x20,0x4,0x35,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3c,0x4,0x30, + 0x4,0x48,0x4,0x38,0x4,0x3d,0x4,0x38,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x39,0x41,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65, + 0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x68,0x61,0x72, + 0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c, + 0x61,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x10,0x4,0x32,0x4,0x42,0x4,0x3e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x41,0x75,0x74,0x6f,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x42,0x0,0x54,0x0,0x26,0x0, + 0x36,0x0,0x30,0x0,0x31,0x0,0x20,0x0,0x28,0x0,0x4e,0x0,0x54,0x0,0x53,0x0, + 0x43,0x0,0x2f,0x0,0x50,0x0,0x41,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x42,0x54,0x26,0x36,0x30,0x31,0x20,0x28,0x4e,0x54,0x53, + 0x43,0x2f,0x50,0x41,0x4c,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x0,0x42,0x0,0x54,0x0,0x26,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x20,0x0, + 0x28,0x0,0x48,0x0,0x44,0x0,0x54,0x0,0x56,0x0,0x29,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x42,0x54,0x26,0x37,0x30,0x39,0x20,0x28,0x48,0x44,0x54, + 0x56,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1f,0x4, + 0x40,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4, + 0x41,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x3d,0x4,0x56,0x0, + 0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x42,0x61,0x73,0x69,0x63,0x20,0x73,0x65,0x63, + 0x74,0x6f,0x72,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x30,0x4,0x1f,0x4,0x3e,0x4,0x47,0x4,0x30,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0, + 0x6c,0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x42, + 0x65,0x67,0x69,0x6e,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b, + 0x54,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x20,0x4,0x3e, + 0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e, + 0x4,0x3a,0x4,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x42,0x6c,0x6f,0x63,0x6b,0x20,0x53,0x69,0x7a,0x65,0x3a,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x42,0x75,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x28,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x42,0x75,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1,0x43,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x24,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x20,0x0, + 0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0, + 0x20,0x0,0x25,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43, + 0x44,0x2d,0x52,0x4f,0x4d,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x14,0x4,0x38, + 0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x0,0x20, + 0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64, + 0x72,0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x0, + 0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x58,0x4,0x12,0x4, + 0x38,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4, + 0x3e,0x4,0x37,0x4,0x33,0x4,0x3e,0x4,0x40,0x4,0x42,0x4,0x3a,0x4,0x38,0x0, + 0x20,0x0,0x43,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x6a,0x0, + 0x72,0x0,0x2f,0x0,0x54,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x79,0x0,0x2f,0x0, + 0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0,0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0, + 0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x23,0x43, + 0x47,0x41,0x2f,0x50,0x43,0x6a,0x72,0x2f,0x54,0x61,0x6e,0x64,0x79,0x2f,0x45,0x26, + 0x47,0x41,0x2f,0x28,0x53,0x29,0x56,0x47,0x41,0x20,0x6f,0x76,0x65,0x72,0x73,0x63, + 0x61,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x43,0x0, + 0x48,0x0,0x20,0x0,0x46,0x0,0x6c,0x0,0x69,0x0,0x67,0x0,0x68,0x0,0x74,0x0, + 0x73,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x6b,0x0,0x20,0x0,0x50,0x0,0x72,0x0, + 0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x43,0x48,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x73,0x74,0x69,0x63,0x6b,0x20,0x50,0x72,0x6f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f, + 0x4d,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x39,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x33,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x43,0x4f,0x4d,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x2,0xf2,0x4,0x12,0x4,0x38, + 0x4,0x31,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x42,0x4,0x38,0x4,0x3f,0x4,0x56, + 0x4,0x32,0x0,0x20,0x4,0x26,0x4,0x1f,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x46,0x4,0x56,0x4,0x54,0x4,0x57,0x0,0x20,0x4,0x41,0x4,0x38, + 0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20, + 0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x30, + 0x0,0x20,0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x35, + 0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d, + 0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48,0x4,0x38,0x4,0x3d, + 0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x3a,0x4,0x3b,0x4,0x4e, + 0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x26, + 0x4,0x35,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x37,0x4,0x32,0x4,0x3e,0x4,0x3b, + 0x4,0x4f,0x4,0x54,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x46,0x4,0x35, + 0x4,0x41,0x4,0x3e,0x4,0x40,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x48,0x4,0x3e, + 0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3f,0x4,0x30,0x4,0x34, + 0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x43, + 0x4,0x3c,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x37, + 0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3e, + 0x4,0x4e,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x38, + 0x4,0x3d,0x4,0x41,0x4,0x4c,0x4,0x3a,0x4,0x3e,0x4,0x4e,0x0,0x20,0x4,0x3f, + 0x4,0x3b,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x4e,0x0,0x2e,0x0,0x20,0x4,0x1e, + 0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x3a,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x38, + 0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20, + 0x4,0x37,0x4,0x56,0x4,0x42,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x38, + 0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x37,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x41, + 0x4,0x43,0x4,0x3c,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x56,0x4,0x41,0x4,0x42, + 0x4,0x4e,0x0,0x20,0x4,0x37,0x0,0x20,0x0,0x42,0x0,0x49,0x0,0x4f,0x0,0x53, + 0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x3d, + 0x4,0x41,0x4,0x4c,0x4,0x3a,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0,0x20, + 0x4,0x56,0x4,0x3d,0x4,0x48,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x1f,0x4,0x1e, + 0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x12,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47, + 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x46,0x4,0x4c,0x4,0x3e, + 0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3c, + 0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x30,0x0,0x20,0x4,0x3e,0x4,0x44,0x4,0x56, + 0x4,0x46,0x4,0x56,0x4,0x39,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x3c, + 0x4,0x43,0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20, + 0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x3e, + 0x4,0x34,0x4,0x30,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x56, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x0,0x20,0x4,0x3f, + 0x4,0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x43,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x31,0x4,0x43, + 0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3a,0x4,0x40,0x4,0x38, + 0x4,0x42,0x4,0x56,0x0,0x20,0x4,0x4f,0x4,0x3a,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x4,0x34,0x4,0x56,0x4,0x39,0x4,0x41,0x4,0x3d,0x4,0x56,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x1,0x71,0x43,0x50,0x55,0x20,0x74,0x79,0x70,0x65, + 0x20,0x66,0x69,0x6c,0x74,0x65,0x72,0x69,0x6e,0x67,0x20,0x62,0x61,0x73,0x65,0x64, + 0x20,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63, + 0x68,0x69,0x6e,0x65,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x69,0x73,0x20,0x65,0x6d,0x75,0x6c,0x61,0x74, + 0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0xa,0xa,0x54,0x68,0x69, + 0x73,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x69,0x74,0x20,0x70,0x6f,0x73,0x73,0x69, + 0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x63,0x68,0x6f,0x6f,0x73,0x65,0x20,0x61,0x20, + 0x43,0x50,0x55,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x77,0x69,0x73,0x65,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62, + 0x6c,0x65,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65, + 0x63,0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x20,0x48,0x6f, + 0x77,0x65,0x76,0x65,0x72,0x2c,0x20,0x79,0x6f,0x75,0x20,0x6d,0x61,0x79,0x20,0x72, + 0x75,0x6e,0x20,0x69,0x6e,0x74,0x6f,0x20,0x69,0x6e,0x63,0x6f,0x6d,0x70,0x61,0x74, + 0x69,0x62,0x69,0x6c,0x69,0x74,0x69,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x74, + 0x68,0x65,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x42,0x49,0x4f,0x53,0x20, + 0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,0x77,0x61,0x72, + 0x65,0x2e,0xa,0xa,0x45,0x6e,0x61,0x62,0x6c,0x69,0x6e,0x67,0x20,0x74,0x68,0x69, + 0x73,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74, + 0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61,0x6c,0x6c,0x79,0x20,0x73,0x75,0x70,0x70, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x61,0x6e,0x79,0x20,0x62,0x75, + 0x67,0x20,0x72,0x65,0x70,0x6f,0x72,0x74,0x73,0x20,0x66,0x69,0x6c,0x65,0x64,0x20, + 0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x63,0x6c,0x6f,0x73,0x65,0x64,0x20,0x61,0x73, + 0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0xe,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x26,0x4,0x1f, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x50,0x55,0x20, + 0x74,0x79,0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe, + 0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x43,0x61,0x6e,0x63,0x65,0x6c,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4, + 0x42,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0, + 0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43, + 0x61,0x72,0x64,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x10,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20, + 0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x1a,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x34,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x43,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1a,0x4,0x30,0x4,0x40,0x4, + 0x42,0x4,0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x0,0x20,0x0,0x25,0x0,0x69,0x0, + 0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x11,0x43,0x61,0x72,0x74,0x72,0x69,0x64,0x67,0x65,0x20,0x25,0x69,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x34,0x4,0x36,0x4,0x56,0x4, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x43,0x61,0x72,0x74,0x72, + 0x69,0x64,0x67,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xc,0x4,0x1a,0x4,0x30,0x4,0x41,0x4,0x35,0x4,0x42, + 0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x61,0x73,0x73, + 0x65,0x74,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4, + 0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x3a,0x4, + 0x30,0x4,0x41,0x4,0x35,0x4,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x43,0x61,0x73,0x73,0x65,0x74,0x74,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1a,0x4,0x30,0x4, + 0x41,0x4,0x35,0x4,0x42,0x4,0x30,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x43,0x61,0x73,0x73,0x65,0x74,0x74, + 0x65,0x3a,0x20,0x25,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x56, + 0x4,0x17,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x42, + 0x4,0x3d,0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x26,0x4,0x3c, + 0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3c,0x4,0x3d, + 0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3f, + 0x4,0x3b,0x4,0x35,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x27, + 0x43,0x68,0x61,0x6e,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x73,0x74,0x20, + 0x66,0x6f,0x72,0x20,0x26,0x6d,0x6f,0x6e,0x6f,0x63,0x68,0x72,0x6f,0x6d,0x65,0x20, + 0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0xc,0x4,0x1a,0x4,0x30,0x4,0x3d,0x4,0x30,0x4,0x3b,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x35,0x4, + 0x40,0x4,0x35,0x4,0x32,0x4,0x56,0x4,0x40,0x4,0x4f,0x4,0x42,0x4,0x38,0x0, + 0x20,0x0,0x42,0x0,0x50,0x0,0x42,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x43,0x68,0x65,0x63,0x6b,0x20,0x42,0x50,0x42,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x44,0x4,0x1a,0x4,0x3b,0x4,0x30,0x4,0x46,0x4,0x3d,0x4, + 0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x38,0x4,0x48,0x4,0x35,0x4, + 0x4e,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x30,0x4, + 0x45,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x43,0x0,0x20,0x4,0x3a,0x4,0x43,0x4, + 0x40,0x4,0x41,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x16,0x43,0x6c,0x69,0x63,0x6b,0x20,0x74,0x6f,0x20,0x63,0x61,0x70,0x74, + 0x75,0x72,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x18,0x4,0x1d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x9,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1f,0x4,0x40,0x4,0x3e, + 0x4,0x34,0x4,0x3e,0x4,0x32,0x4,0x36,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x43,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x65, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1a,0x4,0x3e,0x4, + 0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0, + 0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x31,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65, + 0x72,0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4, + 0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4, + 0x40,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x20,0x33,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x34,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x6f,0x6e,0x74,0x72, + 0x6f,0x6c,0x6c,0x65,0x72,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x58,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4, + 0x3b,0x4,0x3e,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3f,0x4, + 0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x42,0x4, + 0x38,0x4,0x3c,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x43,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,0x3a,0x4, + 0x43,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x1c,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x66, + 0x69,0x78,0x20,0x56,0x48,0x44,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70, + 0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4e,0x4,0x1d,0x4,0x35, + 0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x41,0x4,0x4f, + 0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b, + 0x4,0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x0,0x20,0x4,0x32, + 0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x28,0x43,0x6f,0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x74,0x68,0x65,0x20,0x76,0x69,0x64, + 0x65,0x6f,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0, + 0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x26,0x0,0x45,0x0,0x73,0x0, + 0x63,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x43,0x74,0x72,0x6c,0x2b, + 0x41,0x6c,0x74,0x2b,0x26,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x30,0x4,0x17,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x42,0x4,0x38,0x0, + 0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4,0x47,0x4,0x3d,0x4,0x43,0x0,0x20,0x0, + 0x28,0x0,0x6c,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x65,0x0,0x29,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x43,0x75,0x73, + 0x74,0x6f,0x6d,0x20,0x28,0x6c,0x61,0x72,0x67,0x65,0x29,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x30,0x4,0x34,0x4, + 0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x40,0x4,0x43,0x4,0x47,0x4, + 0x3d,0x4,0x43,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x9,0x43,0x75,0x73,0x74,0x6f,0x6d,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x26,0x4,0x38,0x4,0x3b,0x4,0x56,0x4, + 0x3d,0x4,0x34,0x4,0x40,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x43,0x79,0x6c,0x69,0x6e,0x64,0x65,0x72,0x73,0x3a,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20, + 0x0,0x28,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x40, + 0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x32,0x0,0x34,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74, + 0x65,0x72,0x20,0x31,0x30,0x32,0x34,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x24,0x0,0x44,0x0,0x4d,0x0,0x46,0x0,0x20,0x0,0x28,0x4,0x3a,0x4, + 0x3b,0x4,0x30,0x4,0x41,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x32,0x0, + 0x30,0x0,0x34,0x0,0x38,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x44,0x4d,0x46,0x20,0x28,0x63,0x6c,0x75,0x73,0x74,0x65,0x72,0x20,0x32,0x30, + 0x34,0x38,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17, + 0x4,0x30,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4,0x32,0x4,0x47, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x4,0x3c,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x44,0x65,0x66,0x61,0x75,0x6c,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x42,0x4,0x14,0x4,0x38,0x4,0x44, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46,0x4,0x56,0x4,0x39,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20, + 0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x69,0x66,0x66,0x65,0x72,0x65,0x6e,0x63,0x69, + 0x6e,0x67,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x3a, + 0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x8,0x44,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x1e,0x4,0x31,0x4,0x40,0x4, + 0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x43,0x0, + 0x20,0x4,0x41,0x4,0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x35,0x4,0x3d,0x4, + 0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x69,0x73,0x6b,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b, + 0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x43,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x36, + 0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x54,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x61,0x6c,0x72,0x65,0x61,0x64,0x79,0x20, + 0x65,0x78,0x69,0x73,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x36,0x4,0x17,0x4,0x30,0x4,0x3d,0x4,0x30,0x4,0x34,0x4,0x42,0x4,0x3e,0x0, + 0x20,0x4,0x32,0x4,0x35,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0x44,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x74,0x6f,0x6f,0x20, + 0x6c,0x61,0x72,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x64, + 0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x3e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x3d,0x4,0x35, + 0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x32,0x4,0x38,0x4,0x49,0x4,0x43,0x4,0x32,0x4,0x30, + 0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x31,0x0,0x32,0x0,0x37,0x0,0x20,0x4,0x13, + 0x4,0x11,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x29,0x44,0x69, + 0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e,0x6f,0x74, + 0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61,0x6e,0x20, + 0x31,0x32,0x37,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1a,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20, + 0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xa,0x44,0x69,0x73,0x6b,0x20,0x73,0x69,0x7a,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x14,0x4,0x38,0x4, + 0x41,0x4,0x3f,0x4,0x3b,0x4,0x35,0x4,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x7,0x44,0x69,0x73,0x70,0x6c,0x61,0x79,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x48,0x4,0x27,0x4,0x38,0x0,0x20,0x4,0x31,0x4,0x30,0x4, + 0x36,0x4,0x30,0x4,0x54,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x38,0x0, + 0x20,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x33,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x3f,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x21,0x44,0x6f,0x20,0x79,0x6f,0x75,0x20,0x77,0x61, + 0x6e,0x74,0x20,0x74,0x6f,0x20,0x73,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x20,0x73, + 0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x16,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x45,0x4, + 0x3e,0x4,0x34,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xa,0x44,0x6f,0x6e,0x27,0x74,0x20,0x65,0x78,0x69,0x74,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x44,0x6f,0x6e,0x27,0x74,0x20,0x6f,0x76,0x65,0x72,0x77,0x72, + 0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x1d, + 0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30, + 0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x43,0x4,0x32, + 0x4,0x30,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb, + 0x44,0x6f,0x6e,0x27,0x74,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x11,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x48, + 0x4,0x35,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a, + 0x4,0x30,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x46,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x3e,0x4,0x3c,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x44,0x6f,0x6e,0x27,0x74,0x20,0x73,0x68, + 0x6f,0x77,0x20,0x74,0x68,0x69,0x73,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x20, + 0x61,0x67,0x61,0x69,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e, + 0x4,0x14,0x4,0x38,0x4,0x3d,0x4,0x30,0x4,0x3c,0x4,0x56,0x4,0x47,0x4,0x3d, + 0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3c, + 0x4,0x3f,0x4,0x56,0x4,0x3b,0x4,0x4f,0x4,0x42,0x4,0x3e,0x4,0x40,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x44,0x79,0x6e,0x61,0x6d,0x69,0x63,0x20, + 0x52,0x65,0x63,0x6f,0x6d,0x70,0x69,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x3d,0x4,0x30,0x4,0x3c,0x4,0x56,0x4,0x47,0x4,0x3d,0x4,0x3e,0x4, + 0x33,0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4, + 0x40,0x4,0x43,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x44,0x79,0x6e,0x61,0x6d, + 0x69,0x63,0x2d,0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68, + 0x64,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1d,0x4, + 0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0,0x45,0x0,0x26,0x0,0x47,0x0,0x41,0x0, + 0x2f,0x0,0x28,0x0,0x53,0x0,0x29,0x0,0x56,0x0,0x47,0x0,0x41,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45,0x26,0x47,0x41,0x2f,0x28,0x53,0x29,0x56, + 0x47,0x41,0x20,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x12,0x4,0x38,0x4,0x3b,0x4,0x43, + 0x4,0x47,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x45,0x26,0x6a,0x65,0x63,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xe,0x0,0x26,0x4,0x1f,0x4,0x43,0x4,0x41,0x4,0x42,0x4,0x38,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x45,0x26,0x6d,0x70,0x74, + 0x79,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x0,0x26,0x4,0x12, + 0x4,0x38,0x4,0x45,0x4,0x56,0x4,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x45,0x26,0x78,0x69,0x74,0x2e,0x2e,0x2e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x0,0x26,0x4,0x15,0x4, + 0x3a,0x4,0x41,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x4,0x32,0x0, + 0x20,0x0,0x38,0x0,0x36,0x0,0x46,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x45,0x26,0x78,0x70,0x6f,0x72,0x74,0x20,0x74, + 0x6f,0x20,0x38,0x36,0x46,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x4,0x45,0x53,0x44,0x49,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31, + 0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x53, + 0x44,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x11,0x4,0x56,0x4,0x3b,0x4, + 0x4c,0x4,0x48,0x0,0x20,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x56,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4, + 0x3e,0x4,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x61,0x72, + 0x6c,0x69,0x65,0x72,0x20,0x64,0x72,0x69,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x3a,0x4,0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x4, + 0x3d,0x4,0x43,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x42,0x4, + 0x35,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x0,0x20,0x0, + 0x26,0x0,0x44,0x0,0x69,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x72,0x0,0x64,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x6e,0x61,0x62,0x6c,0x65,0x20, + 0x26,0x44,0x69,0x73,0x63,0x6f,0x72,0x64,0x20,0x69,0x6e,0x74,0x65,0x67,0x72,0x61, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4, + 0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4, + 0x38,0x0,0x20,0x0,0x28,0x0,0x55,0x0,0x54,0x0,0x43,0x0,0x29,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28, + 0x55,0x54,0x43,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4, + 0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x4,0x3d,0x4,0x43,0x4,0x42,0x4, + 0x38,0x0,0x20,0x0,0x28,0x4,0x3c,0x4,0x56,0x4,0x41,0x4,0x46,0x4,0x35,0x4, + 0x32,0x4,0x35,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x45, + 0x6e,0x61,0x62,0x6c,0x65,0x64,0x20,0x28,0x6c,0x6f,0x63,0x61,0x6c,0x20,0x74,0x69, + 0x6d,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4,0x17, + 0x4,0x30,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x48,0x4,0x38,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x41,0x4,0x43,0x4,0x32,0x4,0x30, + 0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x9,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c, + 0x0,0x2b,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x45,0x6e, + 0x64,0x20,0x74,0x72,0x61,0x63,0x65,0x9,0x43,0x74,0x72,0x6c,0x2b,0x54,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34,0x4,0x12,0x4,0x45,0x4,0x56,0x4, + 0x34,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4, + 0x3e,0x4,0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x45,0x6e,0x74,0x65,0x72,0x69,0x6e,0x67,0x20, + 0x66,0x75,0x6c,0x6c,0x73,0x63,0x72,0x65,0x65,0x6e,0x20,0x6d,0x6f,0x64,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x1f,0x4,0x3e,0x4,0x3c, + 0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x5,0x45,0x72,0x72,0x6f,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x4,0x1f,0x4,0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x30, + 0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b, + 0x4,0x56,0x4,0x37,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x57,0x0,0x20,0x4,0x40, + 0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x4,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x45,0x72,0x72,0x6f,0x72,0x20, + 0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x69,0x6e,0x67,0x20,0x72,0x65,0x6e, + 0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4a, + 0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20, + 0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x28,0x0,0x26, + 0x4,0x17,0x4,0x30,0x4,0x45,0x4,0x38,0x4,0x41,0x4,0x42,0x0,0x20,0x4,0x32, + 0x4,0x56,0x4,0x34,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41, + 0x4,0x43,0x0,0x29,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x24,0x45,0x78,0x69,0x73,0x74,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x28,0x26,0x57,0x72,0x69,0x74,0x65,0x2d,0x70,0x72,0x6f,0x74,0x65, + 0x63,0x74,0x65,0x64,0x29,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x4,0x12,0x4,0x38,0x4,0x45,0x4,0x56,0x4,0x34,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x45,0x78,0x69,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x42,0x0,0x26,0x4,0x12,0x4,0x41,0x4,0x42,0x4,0x30, + 0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32, + 0x4,0x56,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x48,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x4f,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x56,0x4,0x3d, + 0x0,0x20,0x0,0x34,0x0,0x3a,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0x46,0x26,0x6f,0x72,0x63,0x65,0x20,0x34,0x3a,0x33,0x20,0x64,0x69,0x73, + 0x70,0x6c,0x61,0x79,0x20,0x72,0x61,0x74,0x69,0x6f,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4, + 0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x46,0x0,0x44,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x46,0x44,0x20,0x43,0x6f,0x6e,0x74, + 0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x2c,0x4,0x14,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4,0x35,0x4,0x40, + 0x0,0x20,0x0,0x46,0x0,0x4d,0x0,0x2d,0x4,0x41,0x4,0x38,0x4,0x3d,0x4,0x42, + 0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x30,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x46,0x4d,0x20,0x73,0x79,0x6e,0x74,0x68, + 0x20,0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x0,0x53,0x0,0x65,0x0,0x67,0x0,0x6f,0x0,0x65,0x0,0x20,0x0,0x55, + 0x0,0x49,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x4e,0x41,0x4d,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2, + 0x0,0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x46,0x4f,0x4e,0x54, + 0x5f,0x53,0x49,0x5a,0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8, + 0x0,0x46,0x0,0x50,0x0,0x55,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x46,0x50,0x55,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4,0x3b,0x4, + 0x3e,0x4,0x41,0x4,0x4f,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4, + 0x56,0x4,0x30,0x4,0x3b,0x4,0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4, + 0x35,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4, + 0x39,0x4,0x32,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x23,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x64,0x72, + 0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x36,0x4, + 0x1d,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x34,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4, + 0x41,0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4, + 0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x50,0x0, + 0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46, + 0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x73,0x65,0x74,0x20,0x75,0x70,0x20, + 0x50,0x43,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4, + 0x28,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x3a,0x4,0x38,0x4,0x39,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x61,0x73,0x74,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f, + 0x4,0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x61,0x74,0x61,0x6c,0x20,0x65,0x72,0x72,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x24,0x4,0x30, + 0x4,0x39,0x4,0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x46,0x69, + 0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x6,0x4, + 0x3c,0x0,0x27,0x4,0x4f,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4, + 0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x46,0x69,0x6c, + 0x65,0x20,0x6e,0x61,0x6d,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x4,0x1c,0x4,0x35,0x4,0x42,0x4,0x3e,0x4,0x34,0x0,0x20,0x4,0x44, + 0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x42,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x56, + 0x4,0x57,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x46,0x69,0x6c,0x74, + 0x65,0x72,0x20,0x6d,0x65,0x74,0x68,0x6f,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x3c,0x0,0x56,0x0,0x48,0x0,0x44,0x0,0x20,0x4,0x44,0x4,0x56, + 0x4,0x3a,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x33, + 0x4,0x3e,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40, + 0x4,0x43,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x76,0x0,0x68,0x0,0x64,0x0,0x29, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x46,0x69,0x78,0x65,0x64,0x2d, + 0x73,0x69,0x7a,0x65,0x20,0x56,0x48,0x44,0x20,0x28,0x2e,0x76,0x68,0x64,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x14,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x0,0x20,0x0,0x25,0x0,0x69, + 0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25, + 0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x46,0x6c, + 0x6f,0x70,0x70,0x79,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x13,0x4,0x3d, + 0x4,0x43,0x4,0x47,0x4,0x3a,0x4,0x56,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41, + 0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x56,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d, + 0x0,0x52,0x0,0x4f,0x0,0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16, + 0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x26,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20, + 0x64,0x72,0x69,0x76,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x13,0x4,0x3d,0x4,0x43,0x4,0x47,0x4,0x3a,0x4,0x56,0x0,0x20,0x4, + 0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x46,0x6c,0x6f,0x70,0x70,0x79,0x20,0x64,0x72,0x69,0x76, + 0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1e, + 0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x0,0x46,0x0,0x6c, + 0x0,0x75,0x0,0x78,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x46,0x6c, + 0x75,0x78,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x0,0x26,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x41,0x4,0x42, + 0x4,0x4f,0x4,0x33,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f, + 0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e, + 0x4,0x35,0x4,0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x3e,0x4,0x3c, + 0x4,0x43,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x4,0x56, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x46,0x75,0x6c,0x6c,0x73,0x63, + 0x72,0x65,0x65,0x6e,0x20,0x26,0x73,0x74,0x72,0x65,0x74,0x63,0x68,0x20,0x6d,0x6f, + 0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4, + 0x3e,0x4,0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x47,0x61,0x69,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3e,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20, + 0x4,0x3c,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3c, + 0x4,0x3d,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x0,0x26,0x4,0x3a,0x4,0x3e, + 0x4,0x3d,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30, + 0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a, + 0x47,0x72,0x61,0x79,0x73,0x63,0x61,0x6c,0x65,0x20,0x26,0x63,0x6f,0x6e,0x76,0x65, + 0x72,0x73,0x69,0x6f,0x6e,0x20,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x2,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x1,0x48,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1a,0x4, + 0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x0, + 0x20,0x0,0x48,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x48,0x44,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x4,0x20,0x4,0x3e,0x4,0x37, + 0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x4,0x56,0x4,0x32,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x3d, + 0x4,0x35,0x0,0x20,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3f, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x32,0x4,0x38,0x4,0x49,0x4,0x43,0x4,0x32, + 0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x34,0x0,0x20,0x4,0x13,0x4,0x11, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2b,0x48,0x44,0x49,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x63,0x61,0x6e,0x6e, + 0x6f,0x74,0x20,0x62,0x65,0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x74,0x68,0x61, + 0x6e,0x20,0x34,0x20,0x47,0x42,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x20,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x0,0x48, + 0x0,0x44,0x0,0x49,0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x68,0x0,0x64,0x0,0x69, + 0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x44,0x49,0x20, + 0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64,0x69,0x29,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4, + 0x37,0x4,0x38,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x20,0x4,0x30,0x4, + 0x31,0x4,0x3e,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x4,0x37,0x0, + 0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x4,0x3e,0x4, + 0x3c,0x0,0x20,0x4,0x41,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4, + 0x30,0x0,0x2c,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x3c,0x4,0x56,0x4, + 0x3d,0x4,0x3d,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x0, + 0x20,0x0,0x35,0x0,0x31,0x0,0x32,0x0,0x2c,0x0,0x20,0x4,0x3d,0x4,0x35,0x0, + 0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x3c,0x4, + 0x43,0x4,0x4e,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x46,0x48,0x44,0x49,0x20,0x6f,0x72,0x20,0x48,0x44, + 0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20, + 0x73,0x65,0x63,0x74,0x6f,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x6f,0x74,0x68,0x65, + 0x72,0x20,0x74,0x68,0x61,0x6e,0x20,0x35,0x31,0x32,0x20,0x61,0x72,0x65,0x20,0x6e, + 0x6f,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30, + 0x4,0x37,0x0,0x20,0x0,0x48,0x0,0x44,0x0,0x58,0x0,0x20,0x0,0x28,0x0,0x2e, + 0x0,0x68,0x0,0x64,0x0,0x78,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x10,0x48,0x44,0x58,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x28,0x2e,0x68,0x64, + 0x78,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x16,0x4, + 0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x4, + 0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x73,0x0, + 0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x48,0x61,0x72,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x28,0x25,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x2c,0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38, + 0x0,0x20,0x4,0x36,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x38, + 0x4,0x45,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x48,0x61,0x72,0x64,0x20,0x64, + 0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x16,0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4, + 0x3a,0x4,0x56,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x64,0x69, + 0x73,0x6b,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x16, + 0x4,0x3e,0x4,0x40,0x4,0x41,0x4,0x42,0x4,0x3a,0x4,0x56,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xb,0x48,0x61,0x72,0x64,0x20,0x64,0x69,0x73,0x6b,0x73,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x25,0x4,0x3e,0x4,0x3b, + 0x4,0x3e,0x4,0x34,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30, + 0x4,0x36,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xa,0x48,0x61,0x72,0x64,0x20,0x72,0x65,0x73,0x65,0x74,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1e,0x4,0x31,0x4,0x3b,0x4, + 0x30,0x4,0x34,0x4,0x3d,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4, + 0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4, + 0x3d,0x4,0x35,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x48,0x61,0x72, + 0x64,0x77,0x61,0x72,0x65,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61, + 0x62,0x6c,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x13, + 0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x32,0x4,0x3a,0x4,0x38,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x48,0x65,0x61,0x64,0x73,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x4,0x12,0x4,0x38,0x4,0x41,0x4, + 0x3e,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x48,0x65,0x69,0x67,0x68,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x28,0x4,0x1c,0x4,0x30,0x4,0x41,0x4,0x48,0x4,0x42,0x4,0x30,0x4, + 0x31,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x0, + 0x48,0x0,0x69,0x0,0x26,0x0,0x44,0x0,0x50,0x0,0x49,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xe,0x48,0x69,0x26,0x44,0x50,0x49,0x20,0x73,0x63,0x61,0x6c, + 0x69,0x6e,0x67,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x0,0x26, + 0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x45,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x42, + 0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x3d,0x4,0x35,0x4,0x3b,0x4,0x4c, + 0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x43,0x4,0x3c, + 0x4,0x35,0x4,0x3d,0x4,0x42,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x48,0x69,0x64,0x65,0x20,0x26,0x74,0x6f,0x6f,0x6c,0x62,0x61, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1f,0x4,0x40, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x4e,0x4,0x32,0x4,0x30, + 0x4,0x47,0x0,0x20,0x0,0x49,0x0,0x42,0x0,0x4d,0x0,0x20,0x0,0x38,0x0,0x35, + 0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x61,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x13,0x49,0x42,0x4d,0x20,0x38,0x35,0x31,0x34,0x2f,0x61,0x20,0x47,0x72,0x61, + 0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6, + 0x0,0x49,0x0,0x44,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3, + 0x49,0x44,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x0,0x49, + 0x0,0x44,0x0,0x45,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x49,0x44, + 0x45,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x49,0x0,0x44, + 0x0,0x45,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a, + 0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xf,0x49,0x44,0x45,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30, + 0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3c,0x4,0x1a, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37, + 0x4,0x48,0x4,0x38,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20, + 0x4,0x3f,0x4,0x30,0x4,0x3c,0x0,0x27,0x4,0x4f,0x4,0x42,0x4,0x56,0x0,0x20, + 0x0,0x28,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x14,0x49,0x53,0x41,0x20,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x20,0x45, + 0x78,0x70,0x61,0x6e,0x73,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x10,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x20,0x0,0x52,0x0,0x54,0x0, + 0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x49,0x53,0x41, + 0x20,0x52,0x54,0x43,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39, + 0x0,0x20,0x0,0x49,0x0,0x53,0x0,0x41,0x0,0x42,0x0,0x75,0x0,0x67,0x0,0x67, + 0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x49,0x53, + 0x41,0x42,0x75,0x67,0x67,0x65,0x72,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x1d,0x4,0x30,0x4,0x31,0x4, + 0x56,0x4,0x40,0x0,0x20,0x4,0x56,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3e,0x4, + 0x3a,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x49,0x63,0x6f, + 0x6e,0x20,0x73,0x65,0x74,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4, + 0x30,0x4,0x37,0x4,0x43,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x49,0x6d,0x61,0x67,0x65,0x20,0x46,0x6f,0x72,0x6d,0x61,0x74,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x1f,0x4,0x40,0x4,0x38,0x4, + 0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x4,0x32,0x4,0x32,0x4, + 0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x49,0x6e,0x70,0x75,0x74,0x20,0x64,0x65,0x76,0x69,0x63, + 0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x28,0x4,0x12,0x4, + 0x31,0x4,0x43,0x4,0x34,0x4,0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4, + 0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x49, + 0x6e,0x74,0x65,0x72,0x6e,0x61,0x6c,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c, + 0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1d,0x4, + 0x35,0x4,0x32,0x4,0x56,0x4,0x40,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4, + 0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0, + 0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x13,0x49,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x50,0x43,0x61,0x70,0x20, + 0x64,0x65,0x76,0x69,0x63,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x32,0x4,0x1d,0x4,0x35,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x3f,0x4,0x43,0x4, + 0x41,0x4,0x42,0x4,0x38,0x4,0x3c,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4, + 0x3d,0x4,0x44,0x4,0x56,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4,0x46,0x4, + 0x56,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x49,0x6e,0x76, + 0x61,0x6c,0x69,0x64,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4, + 0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0, + 0x31,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x31,0x2e,0x2e,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4, + 0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x32,0x0,0x2e,0x0, + 0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79, + 0x73,0x74,0x69,0x63,0x6b,0x20,0x32,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x0,0x20,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x20,0x33,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1a,0x4,0x14,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4, + 0x3a,0x0,0x20,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x20,0x34,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x14,0x4, + 0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4,0x38,0x4,0x3a,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4a,0x6f,0x79,0x73,0x74,0x69,0x63, + 0x6b,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x1a,0x4, + 0x11,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4b,0x42,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54, + 0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50, + 0x54,0x31,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4, + 0x40,0x4,0x56,0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x32,0x20, + 0x44,0x65,0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x39,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x33,0x20,0x44,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56,0x4,0x39,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xc,0x4c,0x50,0x54,0x34,0x20,0x44,0x65,0x76,0x69,0x63,0x65, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x1c,0x4,0x3e, + 0x4,0x32,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9, + 0x4c,0x61,0x6e,0x67,0x75,0x61,0x67,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x4,0x12,0x4,0x35,0x4,0x3b,0x4,0x38,0x4,0x3a,0x4,0x56, + 0x0,0x20,0x4,0x31,0x4,0x3b,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28, + 0x0,0x32,0x0,0x20,0x4,0x1c,0x4,0x11,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x13,0x4c,0x61,0x72,0x67,0x65,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73, + 0x20,0x28,0x32,0x20,0x4d,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x24,0x4,0x17,0x4,0x30,0x4,0x44,0x4,0x56,0x4,0x3a,0x4,0x41,0x4,0x43, + 0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37, + 0x4,0x3c,0x4,0x56,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4c,0x6f,0x63,0x6b,0x20,0x74,0x6f,0x20,0x74,0x68,0x69,0x73,0x20,0x73,0x69,0x7a, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x1c,0x4,0x11, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4d,0x42,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0, + 0x52,0x0,0x4c,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d, + 0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0, + 0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0, + 0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x13,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25, + 0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6a,0x0, + 0x4d,0x0,0x46,0x0,0x4d,0x0,0x2f,0x0,0x52,0x0,0x4c,0x0,0x4c,0x0,0x20,0x4, + 0x30,0x4,0x31,0x4,0x3e,0x0,0x20,0x0,0x45,0x0,0x53,0x0,0x44,0x0,0x49,0x0, + 0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4, + 0x34,0x4,0x56,0x4,0x32,0x0,0x20,0x0,0x43,0x0,0x44,0x0,0x2d,0x0,0x52,0x0, + 0x4f,0x0,0x4d,0x0,0x20,0x4,0x3d,0x4,0x56,0x4,0x3a,0x4,0x3e,0x4,0x3b,0x4, + 0x38,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x41,0x4,0x3d,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x3b,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x2b,0x4d,0x46,0x4d,0x2f,0x52,0x4c,0x4c,0x20,0x6f,0x72,0x20,0x45,0x53, + 0x44,0x49,0x20,0x43,0x44,0x2d,0x52,0x4f,0x4d,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x20,0x6e,0x65,0x76,0x65,0x72,0x20,0x65,0x78,0x69,0x73,0x74,0x65,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x4d,0x0,0x49,0x0,0x44,0x0, + 0x49,0x0,0x20,0x0,0x49,0x0,0x6e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0, + 0x2d,0x4,0x56,0x4,0x39,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x4d,0x49,0x44,0x49,0x20,0x49,0x6e,0x20,0x44,0x65,0x76,0x69,0x63,0x65,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x4d,0x0,0x49,0x0, + 0x44,0x0,0x49,0x0,0x20,0x0,0x4f,0x0,0x75,0x0,0x74,0x0,0x20,0x4,0x3f,0x4, + 0x40,0x4,0x38,0x0,0x2d,0x4,0x56,0x4,0x39,0x0,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0x4d,0x49,0x44,0x49,0x20,0x4f,0x75,0x74,0x20,0x44,0x65, + 0x76,0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x4,0x1c,0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x3e,0x4,0x3e, + 0x4,0x3f,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20, + 0x0,0x25,0x0,0x69,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x6c,0x0,0x73,0x0,0x29, + 0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x10,0x4d,0x4f,0x20,0x25,0x69,0x20,0x28,0x25,0x6c,0x73,0x29,0x3a, + 0x20,0x25,0x6c,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4, + 0x1c,0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4, + 0x3f,0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x34,0x4, + 0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x0, + 0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x4d,0x4f,0x20,0x64,0x72, + 0x69,0x76,0x65,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x3a, + 0x4,0x1e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x4,0x3c, + 0x4,0x30,0x4,0x33,0x4,0x3d,0x4,0x56,0x4,0x42,0x4,0x3e,0x4,0x3e,0x4,0x3f, + 0x4,0x42,0x4,0x38,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x45,0x0,0x20,0x4,0x34, + 0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x9,0x4d,0x4f,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1a,0x4,0x3e,0x4,0x3c,0x4,0x3f, + 0x0,0x27,0x4,0x4e,0x4,0x42,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x1,0x2,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x35, + 0x4,0x3c,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3b,0x4,0x30,0x4,0x42, + 0x4,0x30,0x0,0x20,0x0,0x22,0x0,0x25,0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20, + 0x4,0x3d,0x4,0x35,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f, + 0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37, + 0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x3d, + 0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39, + 0x4,0x3b,0x4,0x43,0x0,0x20,0x4,0x57,0x4,0x57,0x0,0x20,0x4,0x1f,0x4,0x17, + 0x4,0x23,0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30, + 0x4,0x3b,0x4,0x3e,0x4,0x37,0x4,0x56,0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d, + 0x0,0x73,0x0,0x2f,0x0,0x6d,0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e, + 0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x20,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35, + 0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f, + 0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42, + 0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x43,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x75,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x22,0x25,0x68,0x73,0x22,0x20, + 0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65, + 0x20,0x64,0x75,0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20, + 0x52,0x4f,0x4d,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73, + 0x2f,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x73,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x20,0x53,0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74, + 0x6f,0x20,0x61,0x6e,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x6d, + 0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x16,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48, + 0x4,0x38,0x4,0x3d,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xd,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x74,0x79,0x70,0x65,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x21,0x4,0x38,0x4,0x41, + 0x4,0x42,0x4,0x35,0x4,0x3c,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x3b, + 0x4,0x30,0x4,0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x8,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa8,0x4,0x1f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4, + 0x3e,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x35,0x4,0x41,0x4,0x4c,0x0, + 0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x20,0x4,0x32,0x4,0x41,0x4,0x42,0x4, + 0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x56,0x0,0x20,0x4,0x32,0x4,0x30,0x4,0x48,0x4,0x35,0x0, + 0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x35,0x4,0x32,0x4, + 0x35,0x0,0x20,0x4,0x37,0x0,0x27,0x4,0x54,0x4,0x34,0x4,0x3d,0x4,0x30,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x41,0x4,0x43,0x4,0x3c,0x4, + 0x56,0x4,0x41,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x37,0x0,0x20,0x0,0x6c,0x0, + 0x69,0x0,0x62,0x0,0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x0,0x2e,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5b,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65, + 0x20,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x20,0x69,0x73,0x20,0x69,0x6e,0x73,0x74, + 0x61,0x6c,0x6c,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x79, + 0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6f,0x6e,0x20,0x61,0x20,0x6c,0x69,0x62,0x70, + 0x63,0x61,0x70,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x6c,0x65,0x20,0x6e, + 0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f, + 0x6e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x4,0x1f,0x4, + 0x35,0x4,0x40,0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x39,0x4, + 0x42,0x4,0x35,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0, + 0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x54,0x0,0x20,0x4, + 0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x38,0x4, + 0x3c,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x47,0x4,0x38,0x4, + 0x42,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x2a,0x4d,0x61,0x6b,0x65,0x20,0x73,0x75,0x72,0x65,0x20,0x74, + 0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x65,0x78,0x69,0x73,0x74,0x73,0x20,0x61, + 0x6e,0x64,0x20,0x69,0x73,0x20,0x72,0x65,0x61,0x64,0x61,0x62,0x6c,0x65,0x2e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x96,0x4,0x1f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x42,0x4,0x35, + 0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4,0x44, + 0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x37,0x4,0x31,0x4,0x35,0x4,0x40, + 0x4,0x56,0x4,0x33,0x4,0x30,0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f, + 0x0,0x20,0x4,0x32,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b, + 0x4,0x3e,0x4,0x33,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x4,0x38,0x4,0x39, + 0x0,0x20,0x4,0x54,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41,0x4,0x42,0x4,0x43, + 0x4,0x3f,0x4,0x3d,0x4,0x38,0x4,0x3c,0x0,0x20,0x4,0x34,0x4,0x3b,0x4,0x4f, + 0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x43,0x0,0x2e, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3a,0x4d,0x61,0x6b,0x65,0x20,0x73, + 0x75,0x72,0x65,0x20,0x74,0x68,0x65,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x62,0x65,0x69,0x6e,0x67,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x74,0x6f,0x20,0x61, + 0x20,0x77,0x72,0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x64,0x69,0x72,0x65,0x63,0x74, + 0x6f,0x72,0x79,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4, + 0x1f,0x4,0x30,0x4,0x3c,0x0,0x27,0x4,0x4f,0x4,0x42,0x4,0x4c,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x4d,0x65,0x6d,0x6f,0x72,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x0,0x4d,0x0,0x69,0x0, + 0x63,0x0,0x72,0x0,0x6f,0x0,0x73,0x0,0x6f,0x0,0x66,0x0,0x74,0x0,0x20,0x0, + 0x53,0x0,0x69,0x0,0x64,0x0,0x65,0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0, + 0x65,0x0,0x72,0x0,0x20,0x0,0x50,0x0,0x61,0x0,0x64,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x18,0x4d,0x69,0x63,0x72,0x6f,0x73,0x6f,0x66,0x74,0x20,0x53, + 0x69,0x64,0x65,0x57,0x69,0x6e,0x64,0x65,0x72,0x20,0x50,0x61,0x64,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1c,0x4,0x3e,0x4,0x3d,0x4,0x56, + 0x4,0x42,0x4,0x3e,0x4,0x40,0x0,0x20,0x4,0x43,0x0,0x20,0x4,0x41,0x4,0x3f, + 0x4,0x3b,0x4,0x4f,0x4,0x47,0x4,0x3e,0x4,0x3c,0x4,0x43,0x0,0x20,0x4,0x40, + 0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x4,0x56,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0x4d,0x6f,0x6e,0x69,0x74,0x6f,0x72,0x20,0x69,0x6e,0x20,0x73, + 0x6c,0x65,0x65,0x70,0x20,0x6d,0x6f,0x64,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x20,0x4,0x27,0x4,0x43,0x4,0x42,0x4,0x3b,0x4,0x38,0x4,0x32, + 0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x38,0x4,0x48, + 0x4,0x56,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4d,0x6f, + 0x75,0x73,0x65,0x20,0x73,0x65,0x6e,0x73,0x69,0x74,0x69,0x76,0x69,0x74,0x79,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x1c,0x4,0x38,0x4, + 0x48,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x4d, + 0x6f,0x75,0x73,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xc, + 0x4,0x1c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x30,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x7,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x1c,0x4,0x35,0x4,0x40,0x4,0x35, + 0x4,0x36,0x4,0x35,0x4,0x32,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x30,0x4,0x34, + 0x4,0x30,0x4,0x3f,0x4,0x42,0x4,0x35,0x4,0x40,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x61,0x64, + 0x61,0x70,0x74,0x65,0x72,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x16,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4, + 0x35,0x4,0x36,0x4,0x56,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x20,0x74,0x79,0x70,0x65,0x3a,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4,0x1d,0x4,0x3e,0x4,0x32,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4e,0x65,0x77,0x20,0x49,0x6d,0x61, + 0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x1f,0x4, + 0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x57,0x0,0x20,0x0, + 0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4, + 0x37,0x4,0x3d,0x4,0x30,0x4,0x39,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x56,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x6f,0x20,0x50,0x43,0x61,0x70, + 0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,0x4,0x17,0x4,0x23,0x0, + 0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x39,0x4, + 0x34,0x4,0x35,0x4,0x3d,0x4,0x56,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xd,0x4e,0x6f,0x20,0x52,0x4f,0x4d,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x4,0x1d,0x4,0x56,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x4e,0x6f,0x6e,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x28,0x0,0x4e,0x0,0x75,0x0,0x6b,0x0,0x65,0x0,0x64, + 0x0,0x20,0x0,0x28,0x4,0x31,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x48,0x0,0x20, + 0x4,0x42,0x4,0x3e,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x4e,0x75,0x6b,0x65,0x64,0x20,0x28,0x6d, + 0x6f,0x72,0x65,0x20,0x61,0x63,0x63,0x75,0x72,0x61,0x74,0x65,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x4,0x0,0x4f,0x0,0x4b,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x4b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x8,0x4,0x12,0x4,0x38,0x4,0x3c,0x4,0x3a,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x4f,0x66,0x66,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0xa,0x4,0x23,0x4,0x32,0x4,0x56,0x4,0x3c,0x4,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2,0x4f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1a,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x26,0x0,0x47, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x4f,0x70,0x65,0x6e,0x26,0x47,0x4c,0x20, + 0x28,0x33,0x2e,0x30,0x20,0x43,0x6f,0x72,0x65,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xb4,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4, + 0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4, + 0x46,0x4,0x56,0x4,0x30,0x4,0x3b,0x4,0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4, + 0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0, + 0x6e,0x0,0x47,0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x33,0x0,0x2e,0x0,0x30,0x0, + 0x29,0x0,0x2e,0x0,0x20,0x4,0x11,0x4,0x43,0x4,0x34,0x4,0x4c,0x0,0x20,0x4, + 0x3b,0x4,0x30,0x4,0x41,0x4,0x3a,0x4,0x30,0x0,0x2c,0x0,0x20,0x4,0x32,0x4, + 0x38,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x3e,0x4, + 0x32,0x4,0x43,0x4,0x39,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x3d,0x4, + 0x48,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x34,0x4, + 0x35,0x4,0x40,0x4,0x35,0x4,0x40,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4a,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x28,0x33,0x2e,0x30,0x20,0x43, + 0x6f,0x72,0x65,0x29,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x20,0x63,0x6f, + 0x75,0x6c,0x64,0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x69,0x6e,0x69,0x74,0x69, + 0x61,0x6c,0x69,0x7a,0x65,0x64,0x2e,0x20,0x55,0x73,0x65,0x20,0x61,0x6e,0x6f,0x74, + 0x68,0x65,0x72,0x20,0x72,0x65,0x6e,0x64,0x65,0x72,0x65,0x72,0x2e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x28,0x4,0x35,0x4,0x39,0x4,0x34, + 0x4,0x35,0x4,0x40,0x4,0x38,0x0,0x20,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x4f,0x70, + 0x65,0x6e,0x47,0x4c,0x20,0x53,0x68,0x61,0x64,0x65,0x72,0x73,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4, + 0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x38,0x0,0x20,0x0,0x4f,0x0,0x70,0x0, + 0x65,0x0,0x6e,0x0,0x47,0x0,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xe,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x20,0x6f,0x70,0x74,0x69,0x6f,0x6e,0x73,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x6,0x4,0x3d,0x4,0x48, + 0x4,0x30,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x38,0x4,0x44,0x4,0x35, + 0x4,0x40,0x4,0x56,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11, + 0x4f,0x74,0x68,0x65,0x72,0x20,0x70,0x65,0x72,0x69,0x70,0x68,0x65,0x72,0x61,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x6,0x4,0x3d, + 0x4,0x48,0x4,0x56,0x0,0x20,0x4,0x37,0x4,0x3d,0x4,0x56,0x4,0x3c,0x4,0x3d, + 0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x0,0x2d,0x4,0x3e,0x4,0x57, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x17,0x4f,0x74,0x68,0x65,0x72,0x20, + 0x72,0x65,0x6d,0x6f,0x76,0x61,0x62,0x6c,0x65,0x20,0x64,0x65,0x76,0x69,0x63,0x65, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x1f,0x4,0x35, + 0x4,0x40,0x4,0x35,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x30, + 0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x4f,0x76, + 0x65,0x72,0x77,0x72,0x69,0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x1c,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x39,0x0,0x20,0x0,0x50,0x0,0x43,0x0,0x61,0x0,0x70,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x50,0x43,0x61,0x70,0x20,0x64,0x65,0x76, + 0x69,0x63,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4, + 0x20,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x20,0x0,0x50,0x0,0x49,0x0, + 0x54,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x49,0x54, + 0x20,0x6d,0x6f,0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x14,0x4,0x1a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x50,0x0, + 0x4f,0x0,0x53,0x0,0x54,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50, + 0x4f,0x53,0x54,0x20,0x63,0x61,0x72,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2a,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4, + 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4, + 0x40,0x4,0x42,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x31,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20, + 0x70,0x6f,0x72,0x74,0x20,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x2a,0x4,0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4, + 0x4c,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4, + 0x42,0x0,0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x32,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f, + 0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4, + 0x1f,0x4,0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4, + 0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0, + 0x20,0x0,0x4c,0x0,0x50,0x0,0x54,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74, + 0x20,0x33,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4,0x1f,0x4, + 0x30,0x4,0x40,0x4,0x30,0x4,0x3b,0x4,0x35,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0, + 0x4c,0x0,0x50,0x0,0x54,0x0,0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0xf,0x50,0x61,0x72,0x61,0x6c,0x6c,0x65,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x82,0x4,0x22,0x4,0x38,0x4, + 0x3c,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x56,0x0,0x20,0x4, + 0x3c,0x4,0x56,0x4,0x42,0x4,0x3a,0x4,0x38,0x0,0x20,0x4,0x31,0x4,0x30,0x4, + 0x42,0x4,0x4c,0x4,0x3a,0x4,0x56,0x4,0x32,0x4,0x41,0x4,0x4c,0x4,0x3a,0x4, + 0x3e,0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x34,0x4, + 0x3e,0x4,0x47,0x4,0x56,0x4,0x40,0x4,0x3d,0x4,0x4c,0x4,0x3e,0x4,0x33,0x4, + 0x3e,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x56,0x4,0x32,0x0, + 0x20,0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x3f,0x4,0x56,0x4,0x32,0x4, + 0x3f,0x4,0x30,0x4,0x34,0x4,0x30,0x4,0x4e,0x4,0x42,0x4,0x4c,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x2d,0x50,0x61,0x72,0x65,0x6e,0x74,0x20,0x61,0x6e, + 0x64,0x20,0x63,0x68,0x69,0x6c,0x64,0x20,0x64,0x69,0x73,0x6b,0x20,0x74,0x69,0x6d, + 0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x20,0x64,0x6f,0x20,0x6e,0x6f,0x74,0x20,0x6d, + 0x61,0x74,0x63,0x68,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x4, + 0x1f,0x4,0x40,0x4,0x38,0x4,0x37,0x4,0x43,0x4,0x3f,0x4,0x38,0x4,0x3d,0x4, + 0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4, + 0x3d,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xf,0x50,0x61,0x75,0x73,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69, + 0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x22,0x4, + 0x3e,0x4,0x47,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x52,0x0,0x50,0x0, + 0x4d,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x50,0x65,0x72,0x66,0x65, + 0x63,0x74,0x20,0x52,0x50,0x4d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x3a,0x4,0x12,0x4,0x3a,0x4,0x30,0x4,0x36,0x4,0x56,0x4,0x42,0x4,0x4c,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x3b,0x4,0x4c,0x4, + 0x3d,0x4,0x35,0x0,0x20,0x4,0x56,0x4,0x3c,0x0,0x27,0x4,0x4f,0x0,0x20,0x4, + 0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x21,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x70,0x65,0x63, + 0x69,0x66,0x79,0x20,0x61,0x20,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x69,0x6c,0x65, + 0x20,0x6e,0x61,0x6d,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x22,0x4,0x1f,0x4,0x3e,0x4,0x40,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x28,0x0, + 0x43,0x0,0x4f,0x0,0x4d,0x0,0x20,0x4,0x38,0x0,0x20,0x0,0x4c,0x0,0x50,0x0, + 0x54,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x50,0x6f,0x72, + 0x74,0x73,0x20,0x28,0x43,0x4f,0x4d,0x20,0x26,0x20,0x4c,0x50,0x54,0x29,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x1f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x38,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xb,0x50,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1d,0x4,0x30,0x4, + 0x42,0x4,0x38,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x38,0x0,0x20,0x0, + 0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c,0x0,0x74,0x0, + 0x2b,0x0,0x44,0x0,0x65,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b, + 0x44,0x65,0x6c,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2c,0x4,0x1d, + 0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4,0x3d,0x4,0x43,0x4,0x42,0x4,0x38, + 0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0,0x41,0x0,0x6c, + 0x0,0x74,0x0,0x2b,0x0,0x45,0x0,0x73,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x12,0x50,0x72,0x65,0x73,0x73,0x20,0x43,0x74,0x72,0x6c,0x2b,0x41, + 0x6c,0x74,0x2b,0x45,0x73,0x63,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x70,0x4,0x1d,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4,0x3d,0x4,0x56,0x4, + 0x42,0x4,0x4c,0x0,0x20,0x0,0x43,0x0,0x74,0x0,0x72,0x0,0x6c,0x0,0x2b,0x0, + 0x41,0x0,0x6c,0x0,0x74,0x0,0x2b,0x0,0x50,0x0,0x67,0x0,0x44,0x0,0x6e,0x0, + 0x20,0x4,0x34,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4, + 0x35,0x4,0x40,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4, + 0x43,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x3d,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2f,0x50,0x72,0x65,0x73,0x73, + 0x20,0x43,0x74,0x72,0x6c,0x2b,0x41,0x6c,0x74,0x2b,0x50,0x67,0x44,0x6e,0x20,0x74, + 0x6f,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x74,0x6f,0x20,0x77,0x69,0x6e,0x64, + 0x6f,0x77,0x65,0x64,0x20,0x6d,0x6f,0x64,0x65,0x2e,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x7c,0x4,0x1d,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4, + 0x3d,0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0, + 0x46,0x0,0x31,0x0,0x32,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0,0x20,0x4, + 0x41,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x34,0x4,0x3d,0x4,0x4e,0x0,0x20,0x4, + 0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x3c,0x4, + 0x38,0x4,0x48,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x4,0x31,0x0, + 0x20,0x4,0x37,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4, + 0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x2e,0x50,0x72,0x65,0x73,0x73, + 0x20,0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x6f,0x72,0x20,0x6d,0x69,0x64,0x64,0x6c, + 0x65,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65, + 0x61,0x73,0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x4c,0x4,0x1d,0x4,0x30,0x4,0x42,0x4,0x38,0x4,0x41,0x4,0x3d, + 0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x0,0x46,0x0,0x38,0x0,0x2b,0x0,0x46, + 0x0,0x31,0x0,0x32,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x4,0x31,0x0,0x20, + 0x4,0x37,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4,0x42, + 0x4,0x38,0x0,0x20,0x4,0x3a,0x4,0x43,0x4,0x40,0x4,0x41,0x4,0x3e,0x4,0x40, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x50,0x72,0x65,0x73,0x73,0x20, + 0x46,0x38,0x2b,0x46,0x31,0x32,0x20,0x74,0x6f,0x20,0x72,0x65,0x6c,0x65,0x61,0x73, + 0x65,0x20,0x6d,0x6f,0x75,0x73,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x10,0x4,0x1f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x35,0x4,0x41, + 0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x50,0x72,0x6f,0x67, + 0x72,0x65,0x73,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x34, + 0x4,0x27,0x4,0x35,0x4,0x42,0x4,0x32,0x4,0x35,0x4,0x40,0x4,0x42,0x4,0x38, + 0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x49,0x0,0x44,0x0,0x45, + 0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b, + 0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x51,0x75, + 0x61,0x74,0x65,0x72,0x6e,0x61,0x72,0x79,0x20,0x49,0x44,0x45,0x20,0x43,0x6f,0x6e, + 0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x0,0x26,0x4,0x17,0x4,0x30,0x4,0x3f,0x4,0x30,0x4,0x3c,0x0,0x27, + 0x4,0x4f,0x4,0x42,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e, + 0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x0,0x20,0x4,0x56,0x0,0x20,0x4,0x41, + 0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x49,0x4,0x35, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x52,0x26,0x65,0x6d,0x65,0x6d, + 0x62,0x65,0x72,0x20,0x73,0x69,0x7a,0x65,0x20,0x26,0x26,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0, + 0x52,0x0,0x47,0x0,0x42,0x0,0x20,0x0,0x26,0x4,0x3a,0x4,0x3e,0x4,0x3b,0x4, + 0x4c,0x4,0x3e,0x4,0x40,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x52,0x47,0x42,0x20,0x26,0x43,0x6f,0x6c,0x6f, + 0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x0,0x52,0x0,0x50, + 0x0,0x4d,0x0,0x20,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x38,0x4,0x3c,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x52,0x50,0x4d,0x20,0x6d,0x6f, + 0x64,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x0,0x52, + 0x0,0x41,0x0,0x57,0x0,0x20,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x37, + 0x0,0x20,0x0,0x28,0x0,0x2e,0x0,0x69,0x0,0x6d,0x0,0x67,0x0,0x29,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x52,0x61,0x77,0x20,0x69,0x6d,0x61,0x67, + 0x65,0x20,0x28,0x2e,0x69,0x6d,0x67,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x14,0x0,0x26,0x4,0x20,0x4,0x35,0x4,0x3d,0x4,0x34,0x4,0x35,0x4, + 0x40,0x4,0x38,0x4,0x3d,0x4,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x9,0x52,0x65,0x26,0x6e,0x64,0x65,0x72,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x76,0x4,0x1d,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x30,0x4, + 0x31,0x4,0x43,0x4,0x34,0x4,0x4c,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x40,0x4, + 0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x42,0x4,0x38,0x4,0x42,0x4,0x38,0x0, + 0x20,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34,0x4,0x44,0x4, + 0x3e,0x4,0x40,0x4,0x3c,0x4,0x30,0x4,0x42,0x4,0x43,0x4,0x32,0x4,0x30,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x41,0x4, + 0x42,0x4,0x32,0x4,0x3e,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x39,0x52,0x65,0x6d,0x65,0x6d,0x62,0x65,0x72,0x20,0x74,0x6f, + 0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x61,0x6e,0x64,0x20,0x66, + 0x6f,0x72,0x6d,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x6e,0x65,0x77,0x6c,0x79,0x2d, + 0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x64,0x72,0x69,0x76,0x65,0x2e,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,0x4,0x35,0x4,0x40,0x4, + 0x35,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4, + 0x36,0x4,0x38,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x5,0x52,0x65,0x73,0x65,0x74,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x26,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x3d,0x4,0x3e,0x4,0x32,0x4,0x38,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0x52,0x65,0x73,0x75,0x6d,0x65,0x20,0x65,0x78,0x65,0x63,0x75,0x74,0x69,0x6f, + 0x6e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2,0x0,0x53,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x53,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x8,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x43,0x53,0x49,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x20,0x0,0x53,0x0,0x43,0x0,0x53,0x0,0x49,0x0,0x20,0x0, + 0x28,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0, + 0x32,0x0,0x69,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x53, + 0x43,0x53,0x49,0x20,0x28,0x25,0x30,0x31,0x69,0x3a,0x25,0x30,0x32,0x69,0x29,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x0,0x53,0x0,0x44,0x0,0x4c, + 0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x48,0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x77, + 0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xf,0x53,0x44,0x4c,0x20,0x28,0x26,0x48,0x61,0x72,0x64,0x77,0x61,0x72,0x65, + 0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1a,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x4f,0x0,0x70,0x0,0x65,0x0,0x6e, + 0x0,0x47,0x0,0x4c,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd, + 0x53,0x44,0x4c,0x20,0x28,0x26,0x4f,0x70,0x65,0x6e,0x47,0x4c,0x29,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x10,0x4,0x17,0x4,0x31,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x33,0x4,0x42,0x4,0x38,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x4,0x53,0x61,0x76,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x68,0x4,0x17,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x33,0x4,0x42,0x4, + 0x38,0x0,0x20,0x4,0x46,0x4,0x56,0x0,0x20,0x4,0x3f,0x4,0x30,0x4,0x40,0x4, + 0x30,0x4,0x3c,0x4,0x35,0x4,0x42,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x4f,0x4, + 0x3a,0x0,0x20,0x0,0x26,0x4,0x33,0x4,0x3b,0x4,0x3e,0x4,0x31,0x4,0x30,0x4, + 0x3b,0x4,0x4c,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x37,0x4,0x30,0x0,0x20,0x4, + 0x37,0x4,0x30,0x4,0x3c,0x4,0x3e,0x4,0x32,0x4,0x47,0x4,0x43,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x4,0x3c,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x27,0x53,0x61,0x76,0x65,0x20,0x74,0x68,0x65,0x73,0x65,0x20,0x73,0x65, + 0x74,0x74,0x69,0x6e,0x67,0x73,0x20,0x61,0x73,0x20,0x26,0x67,0x6c,0x6f,0x62,0x61, + 0x6c,0x20,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x73,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x10,0x4,0x21,0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4, + 0x40,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x53, + 0x65,0x63,0x74,0x6f,0x72,0x73,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x6e,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x35,0x4,0x40,0x4,0x56,0x4,0x42, + 0x4,0x4c,0x0,0x20,0x4,0x3c,0x4,0x35,0x4,0x34,0x4,0x56,0x4,0x30,0x0,0x2d, + 0x4,0x37,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x35,0x4,0x3d, + 0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x37,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x31, + 0x4,0x3e,0x4,0x47,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x40, + 0x4,0x35,0x4,0x3a,0x4,0x42,0x4,0x3e,0x4,0x40,0x4,0x56,0x4,0x57,0x0,0x20, + 0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4,0x38, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x32,0x53,0x65,0x6c,0x65,0x63,0x74, + 0x20,0x6d,0x65,0x64,0x69,0x61,0x20,0x69,0x6d,0x61,0x67,0x65,0x73,0x20,0x66,0x72, + 0x6f,0x6d,0x20,0x70,0x72,0x6f,0x67,0x72,0x61,0x6d,0x20,0x77,0x6f,0x72,0x6b,0x69, + 0x6e,0x67,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x35,0x4, + 0x40,0x4,0x56,0x4,0x42,0x4,0x4c,0x0,0x20,0x4,0x31,0x4,0x30,0x4,0x42,0x4, + 0x4c,0x4,0x3a,0x4,0x56,0x4,0x32,0x4,0x41,0x4,0x4c,0x4,0x3a,0x4,0x38,0x4, + 0x39,0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61, + 0x72,0x65,0x6e,0x74,0x20,0x56,0x48,0x44,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4, + 0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x31, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4, + 0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4, + 0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x32,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4, + 0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0, + 0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0,0x33,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61,0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x33, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4, + 0x41,0x4,0x3b,0x4,0x56,0x4,0x34,0x4,0x3e,0x4,0x32,0x0,0x2e,0x0,0x20,0x4, + 0x3f,0x4,0x3e,0x4,0x40,0x4,0x42,0x0,0x20,0x0,0x43,0x0,0x4f,0x0,0x4d,0x0, + 0x34,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x65,0x72,0x69,0x61, + 0x6c,0x20,0x70,0x6f,0x72,0x74,0x20,0x34,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x18,0x4,0x1d,0x4,0x30,0x4,0x3b,0x4,0x30,0x4,0x48,0x4,0x42,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x8,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x18,0x4,0x20,0x4,0x3e,0x4,0x37,0x4,0x3c, + 0x4,0x56,0x4,0x40,0x0,0x20,0x0,0x28,0x4,0x1c,0x4,0x11,0x0,0x29,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x53,0x69,0x7a,0x65,0x20,0x28, + 0x4d,0x42,0x29,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x12,0x4, + 0x1f,0x4,0x3e,0x4,0x32,0x4,0x56,0x4,0x3b,0x4,0x4c,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x53,0x6c,0x6f,0x77,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x1c,0x4,0x30,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x4c,0x4,0x3a,0x4,0x56,0x0,0x20,0x4,0x31,0x4,0x3b, + 0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x32, + 0x0,0x20,0x4,0x1a,0x4,0x11,0x0,0x29,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x15,0x53,0x6d,0x61,0x6c,0x6c,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x28, + 0x35,0x31,0x32,0x20,0x4b,0x42,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x8,0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x5,0x53,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x26,0x0,0x26,0x4,0x1f,0x4,0x3e,0x4,0x41,0x4,0x38,0x4,0x3b, + 0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43, + 0x4,0x3a,0x4,0x43,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xe,0x53,0x6f,0x75,0x6e,0x64,0x20,0x26,0x67,0x61,0x69,0x6e,0x2e, + 0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1f,0x4, + 0x3e,0x4,0x41,0x4,0x38,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0, + 0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x43,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xa,0x53,0x6f,0x75,0x6e,0x64,0x20,0x47,0x61,0x69,0x6e,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x32,0x4,0x43, + 0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4,0x40, + 0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x31,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64,0x20,0x31, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17,0x4,0x32, + 0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30, + 0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x32,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61,0x72,0x64, + 0x20,0x32,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20,0x4,0x17, + 0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x4,0x3a, + 0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x33,0x0,0x3a,0x8,0x0, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20,0x63,0x61, + 0x72,0x64,0x20,0x33,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x20, + 0x4,0x17,0x4,0x32,0x4,0x43,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x34,0x0,0x3a, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x53,0x6f,0x75,0x6e,0x64,0x20, + 0x63,0x61,0x72,0x64,0x20,0x34,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x3e,0x4,0x12,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4,0x42,0x4,0x38, + 0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4,0x40,0x4,0x38, + 0x0,0x20,0x4,0x33,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x32,0x4,0x3d,0x4,0x3e, + 0x4,0x33,0x4,0x3e,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x3a,0x4,0x3d,0x4,0x30, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1e,0x53,0x70,0x65,0x63,0x69,0x66, + 0x79,0x20,0x4d,0x61,0x69,0x6e,0x20,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x44,0x69, + 0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x26,0x0,0x26,0x4,0x12,0x4,0x3a,0x4,0x30,0x4,0x37,0x4,0x30,0x4, + 0x42,0x4,0x38,0x0,0x20,0x4,0x40,0x4,0x3e,0x4,0x37,0x4,0x3c,0x4,0x56,0x4, + 0x40,0x4,0x38,0x0,0x2e,0x0,0x2e,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0x53,0x70,0x65,0x63,0x69,0x66,0x79,0x20,0x64,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x73,0x2e,0x2e,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x12,0x4,0x28,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x3a,0x4,0x56,0x4, + 0x41,0x4,0x42,0x4,0x4c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x53, + 0x70,0x65,0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4, + 0x28,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x3a,0x4,0x56,0x4,0x41,0x4,0x42,0x4, + 0x4c,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x53,0x70,0x65, + 0x65,0x64,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1e,0x4,0x1e, + 0x4,0x3a,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x4d, + 0x0,0x50,0x0,0x55,0x0,0x2d,0x0,0x34,0x0,0x30,0x0,0x31,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x12,0x53,0x74,0x61,0x6e,0x64,0x61,0x6c,0x6f,0x6e,0x65, + 0x20,0x4d,0x50,0x55,0x2d,0x34,0x30,0x31,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x32,0x0,0x2d,0x4, + 0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x32,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x28,0x73,0x29,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4, + 0x30,0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x34,0x0, + 0x2d,0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4, + 0x38,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4, + 0x42,0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53, + 0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x34,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e, + 0x20,0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4,0x30, + 0x4,0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x36,0x0,0x2d, + 0x4,0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x38, + 0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42, + 0x4,0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74, + 0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x36,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20, + 0x6a,0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x40,0x4,0x21,0x4,0x42,0x4,0x30,0x4,0x3d,0x4,0x34,0x4,0x30,0x4, + 0x40,0x4,0x42,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x0,0x38,0x0,0x2d,0x4, + 0x3a,0x4,0x3d,0x4,0x3e,0x4,0x3f,0x4,0x3a,0x4,0x3e,0x4,0x32,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x34,0x4,0x36,0x4,0x3e,0x4,0x39,0x4,0x41,0x4,0x42,0x4, + 0x38,0x4,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x38,0x2d,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6a, + 0x6f,0x79,0x73,0x74,0x69,0x63,0x6b,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, + 0x0,0x22,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x42,0x4,0x40,0x4,0x3e,0x4,0x3b, + 0x4,0x35,0x4,0x40,0x4,0x38,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x53,0x74, + 0x6f,0x72,0x61,0x67,0x65,0x20,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4,0x1e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x32,0x4,0x35, + 0x4,0x40,0x4,0x45,0x4,0x3d,0x4,0x56,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0xe,0x53,0x75,0x72,0x66,0x61,0x63,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x73, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x17,0x4,0x40,0x4, + 0x3e,0x4,0x31,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x26,0x4,0x37,0x4, + 0x3d,0x4,0x56,0x4,0x3c,0x4,0x3e,0x4,0x3a,0x0,0x9,0x0,0x43,0x0,0x74,0x0, + 0x72,0x0,0x6c,0x0,0x2b,0x0,0x46,0x0,0x31,0x0,0x31,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x19,0x54,0x61,0x6b,0x65,0x20,0x73,0x26,0x63,0x72,0x65,0x65, + 0x6e,0x73,0x68,0x6f,0x74,0x9,0x43,0x74,0x72,0x6c,0x2b,0x46,0x31,0x31,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x26,0x4,0x56,0x4,0x3b,0x4, + 0x4c,0x4,0x3e,0x4,0x32,0x4,0x30,0x0,0x20,0x0,0x26,0x4,0x47,0x4,0x30,0x4, + 0x41,0x4,0x42,0x4,0x3e,0x4,0x42,0x4,0x30,0x0,0x20,0x4,0x3a,0x4,0x30,0x4, + 0x34,0x4,0x40,0x4,0x56,0x4,0x32,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x11,0x54,0x61,0x72,0x67,0x65,0x74,0x20,0x26,0x66,0x72,0x61,0x6d,0x65,0x72,0x61, + 0x74,0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2e,0x4,0x22,0x4, + 0x40,0x4,0x35,0x4,0x42,0x4,0x38,0x4,0x3d,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x20,0x4,0x3a,0x4,0x3e,0x4,0x3d,0x4, + 0x42,0x4,0x40,0x4,0x3e,0x4,0x3b,0x4,0x35,0x4,0x40,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x17,0x54,0x65,0x72,0x74,0x69,0x61,0x72,0x79,0x20,0x49,0x44, + 0x45,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x6c,0x65,0x72,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x4,0x1a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4, + 0x56,0x4,0x33,0x4,0x43,0x4,0x40,0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x0, + 0x20,0x4,0x3c,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x36,0x4,0x56,0x0,0x20,0x4, + 0x31,0x4,0x43,0x4,0x34,0x4,0x35,0x0,0x20,0x4,0x37,0x4,0x3c,0x4,0x56,0x4, + 0x3d,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4, + 0x3d,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x32,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x34,0x4,0x40,0x4,0x30,0x4,0x39,0x4,0x32,0x4,0x35,0x4,0x40,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x3d,0x54,0x68,0x65,0x20,0x6e,0x65,0x74, + 0x77,0x6f,0x72,0x6b,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69, + 0x6f,0x6e,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x73,0x77,0x69,0x74,0x63, + 0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x6e,0x75,0x6c,0x6c,0x20, + 0x64,0x72,0x69,0x76,0x65,0x72,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x9a,0x4,0x12,0x4,0x38,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x38,0x4, + 0x39,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x0,0x20,0x4,0x31,0x4, + 0x43,0x4,0x34,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4, + 0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4,0x41,0x4,0x30,0x4,0x3d,0x4,0x3e,0x0, + 0x2e,0x0,0x20,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x32,0x4,0x3f,0x4,0x35,0x4, + 0x32,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4, + 0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0, + 0x20,0x4,0x32,0x4,0x38,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x41,0x4, + 0x42,0x4,0x3e,0x4,0x32,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0, + 0x20,0x4,0x39,0x4,0x3e,0x4,0x33,0x4,0x3e,0x0,0x3f,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x47,0x54,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65, + 0x64,0x20,0x66,0x69,0x6c,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f, + 0x76,0x65,0x72,0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x2e,0x20,0x41,0x72,0x65,0x20, + 0x79,0x6f,0x75,0x20,0x73,0x75,0x72,0x65,0x20,0x79,0x6f,0x75,0x20,0x77,0x61,0x6e, + 0x74,0x20,0x74,0x6f,0x20,0x75,0x73,0x65,0x20,0x69,0x74,0x3f,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x2,0x2c,0x4,0x26,0x4,0x35,0x0,0x20,0x4,0x3c,0x4, + 0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4,0x30,0x4, + 0x47,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0, + 0x20,0x4,0x31,0x4,0x30,0x4,0x42,0x4,0x4c,0x4,0x3a,0x4,0x56,0x4,0x32,0x4, + 0x41,0x4,0x4c,0x4,0x3a,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4,0x31,0x4, + 0x40,0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x32,0x0,0x20,0x4, + 0x37,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x35,0x4,0x3d,0x4,0x38,0x4,0x39,0x0, + 0x20,0x4,0x3f,0x4,0x56,0x4,0x41,0x4,0x3b,0x4,0x4f,0x0,0x20,0x4,0x42,0x4, + 0x3e,0x4,0x33,0x4,0x3e,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x0,0x20,0x4, + 0x31,0x4,0x43,0x4,0x3b,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x32,0x4, + 0x3e,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x3e,0x0,0x20,0x4,0x34,0x4,0x38,0x4, + 0x44,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3d,0x4,0x46,0x4,0x56,0x4,0x39,0x4, + 0x3e,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x38,0x4,0x39,0x0,0x20,0x4,0x3e,0x4, + 0x31,0x4,0x40,0x4,0x30,0x4,0x37,0x0,0x2e,0x0,0xa,0x0,0xa,0x4,0x26,0x4, + 0x35,0x0,0x20,0x4,0x42,0x4,0x30,0x4,0x3a,0x4,0x3e,0x4,0x36,0x0,0x20,0x4, + 0x3c,0x4,0x3e,0x4,0x36,0x4,0x35,0x0,0x20,0x4,0x41,0x4,0x42,0x4,0x30,0x4, + 0x42,0x4,0x38,0x4,0x41,0x4,0x4f,0x0,0x2c,0x0,0x20,0x4,0x4f,0x4,0x3a,0x4, + 0x49,0x4,0x3e,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x37,0x4,0x3e,0x4,0x31,0x4,0x40,0x4,0x30,0x4,0x36,0x4,0x35,0x4, + 0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x31,0x4,0x43,0x4,0x3b,0x4,0x38,0x0, + 0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x3c,0x4,0x56,0x4,0x49,0x4, + 0x35,0x4,0x3d,0x4,0x56,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0,0x20,0x4, + 0x41,0x4,0x3a,0x4,0x3e,0x4,0x3f,0x4,0x56,0x4,0x39,0x4,0x3e,0x4,0x32,0x4, + 0x30,0x4,0x3d,0x4,0x56,0x0,0x2c,0x0,0x20,0x4,0x30,0x4,0x31,0x4,0x3e,0x0, + 0x20,0x4,0x47,0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x3c,0x4,0x38,0x4,0x3b,0x4,0x3a,0x4,0x43,0x0,0x20,0x4,0x32,0x0, + 0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x33,0x4,0x40,0x4,0x30,0x4,0x3c,0x4, + 0x56,0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4,0x41,0x4,0x42,0x4, + 0x32,0x4,0x3e,0x4,0x40,0x4,0x38,0x4,0x3b,0x4,0x30,0x0,0x20,0x4,0x46,0x4, + 0x35,0x4,0x39,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x0,0x2e,0x0, + 0xa,0x0,0x20,0x0,0xa,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x45,0x4,0x3e,0x4, + 0x47,0x4,0x35,0x4,0x42,0x4,0x35,0x0,0x20,0x4,0x32,0x4,0x38,0x4,0x3f,0x4, + 0x40,0x4,0x30,0x4,0x32,0x4,0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x42,0x4, + 0x38,0x4,0x3c,0x4,0x47,0x4,0x30,0x4,0x41,0x4,0x3e,0x4,0x32,0x4,0x56,0x0, + 0x20,0x4,0x3f,0x4,0x3e,0x4,0x37,0x4,0x3d,0x4,0x30,0x4,0x47,0x4,0x3a,0x4, + 0x38,0x0,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf0,0x54,0x68,0x69, + 0x73,0x20,0x63,0x6f,0x75,0x6c,0x64,0x20,0x6d,0x65,0x61,0x6e,0x20,0x74,0x68,0x61, + 0x74,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x72,0x65,0x6e,0x74,0x20,0x69,0x6d,0x61, + 0x67,0x65,0x20,0x77,0x61,0x73,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20, + 0x61,0x66,0x74,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x69,0x66,0x66,0x65,0x72, + 0x65,0x6e,0x63,0x69,0x6e,0x67,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x77,0x61,0x73, + 0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x2e,0xa,0xa,0x49,0x74,0x20,0x63,0x61, + 0x6e,0x20,0x61,0x6c,0x73,0x6f,0x20,0x68,0x61,0x70,0x70,0x65,0x6e,0x20,0x69,0x66, + 0x20,0x74,0x68,0x65,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x66,0x69,0x6c,0x65,0x73, + 0x20,0x77,0x65,0x72,0x65,0x20,0x6d,0x6f,0x76,0x65,0x64,0x20,0x6f,0x72,0x20,0x63, + 0x6f,0x70,0x69,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x62,0x79,0x20,0x61,0x20,0x62, + 0x75,0x67,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x72,0x6f,0x67,0x72,0x61, + 0x6d,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x74, + 0x68,0x69,0x73,0x20,0x64,0x69,0x73,0x6b,0x2e,0xa,0xa,0x44,0x6f,0x20,0x79,0x6f, + 0x75,0x20,0x77,0x61,0x6e,0x74,0x20,0x74,0x6f,0x20,0x66,0x69,0x78,0x20,0x74,0x68, + 0x65,0x20,0x74,0x69,0x6d,0x65,0x73,0x74,0x61,0x6d,0x70,0x73,0x3f,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x70,0x4,0x26,0x4,0x35,0x0,0x20,0x4,0x3f, + 0x4,0x40,0x4,0x38,0x4,0x37,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x0,0x20, + 0x4,0x34,0x4,0x3e,0x0,0x20,0x4,0x45,0x4,0x3e,0x4,0x3b,0x4,0x3e,0x4,0x34, + 0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3f,0x4,0x35,0x4,0x40,0x4,0x35, + 0x4,0x37,0x4,0x30,0x4,0x33,0x4,0x40,0x4,0x43,0x4,0x37,0x4,0x3a,0x4,0x38, + 0x0,0x20,0x4,0x35,0x4,0x3c,0x4,0x43,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x32, + 0x4,0x30,0x4,0x3d,0x4,0x3e,0x4,0x57,0x0,0x20,0x4,0x3c,0x4,0x30,0x4,0x48, + 0x4,0x38,0x4,0x3d,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2a,0x54,0x68,0x69,0x73,0x20,0x77,0x69,0x6c,0x6c,0x20,0x68,0x61,0x72,0x64, + 0x20,0x72,0x65,0x73,0x65,0x74,0x20,0x74,0x68,0x65,0x20,0x65,0x6d,0x75,0x6c,0x61, + 0x74,0x65,0x64,0x20,0x6d,0x61,0x63,0x68,0x69,0x6e,0x65,0x2e,0x7,0x0,0x0,0x0, + 0x0,0x1,0x3,0x0,0x0,0x0,0x50,0x4,0x21,0x4,0x38,0x4,0x41,0x4,0x42,0x4, + 0x35,0x4,0x3c,0x4,0x30,0x0,0x20,0x4,0x43,0x4,0x3f,0x4,0x40,0x4,0x30,0x4, + 0x32,0x4,0x3b,0x4,0x56,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x20,0x4,0x3f,0x4, + 0x3e,0x4,0x3b,0x4,0x4c,0x4,0x3e,0x4,0x42,0x4,0x3e,0x4,0x3c,0x0,0x20,0x0, + 0x54,0x0,0x68,0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0, + 0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x22,0x54,0x68,0x72,0x75,0x73,0x74,0x6d,0x61,0x73,0x74,0x65,0x72,0x20,0x46,0x6c, + 0x69,0x67,0x68,0x74,0x20,0x43,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x20,0x53,0x79,0x73, + 0x74,0x65,0x6d,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24,0x4,0x21, + 0x4,0x38,0x4,0x3d,0x4,0x45,0x4,0x40,0x4,0x3e,0x4,0x3d,0x4,0x56,0x4,0x37, + 0x4,0x30,0x4,0x46,0x4,0x56,0x4,0x4f,0x0,0x20,0x4,0x47,0x4,0x30,0x4,0x41, + 0x4,0x43,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x54,0x69,0x6d,0x65, + 0x20,0x73,0x79,0x6e,0x63,0x68,0x72,0x6f,0x6e,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xa,0x4,0x22,0x4,0x43,0x4, + 0x40,0x4,0x31,0x4,0x3e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54, + 0x75,0x72,0x62,0x6f,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c,0x4, + 0x22,0x4,0x43,0x4,0x40,0x4,0x31,0x4,0x3e,0x0,0x20,0x4,0x42,0x4,0x30,0x4, + 0x39,0x4,0x3c,0x4,0x56,0x4,0x3d,0x4,0x33,0x4,0x38,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0xd,0x54,0x75,0x72,0x62,0x6f,0x20,0x74,0x69,0x6d,0x69,0x6e, + 0x67,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x6,0x4,0x22,0x4, + 0x38,0x4,0x3f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x54,0x79,0x70, + 0x65,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x8,0x4,0x22,0x4,0x38, + 0x4,0x3f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x54,0x79, + 0x70,0x65,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x32,0x0,0x55, + 0x0,0x53,0x0,0x42,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x3a,0x4,0x38,0x0,0x20, + 0x4,0x3d,0x4,0x35,0x0,0x20,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40, + 0x4,0x38,0x4,0x3c,0x4,0x43,0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x55,0x53,0x42,0x20,0x69,0x73, + 0x20,0x6e,0x6f,0x74,0x20,0x79,0x65,0x74,0x20,0x73,0x75,0x70,0x70,0x6f,0x72,0x74, + 0x65,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x48,0x4,0x1d,0x4, + 0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0, + 0x20,0x4,0x56,0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b,0x4, + 0x56,0x4,0x37,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0, + 0x47,0x0,0x68,0x0,0x6f,0x0,0x73,0x0,0x74,0x0,0x73,0x0,0x63,0x0,0x72,0x0, + 0x69,0x0,0x70,0x0,0x74,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x20,0x55, + 0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, + 0x69,0x7a,0x65,0x20,0x47,0x68,0x6f,0x73,0x74,0x73,0x63,0x72,0x69,0x70,0x74,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5e,0x4,0x1d,0x4,0x35,0x4,0x3c, + 0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x56, + 0x4,0x3d,0x4,0x56,0x4,0x46,0x4,0x56,0x4,0x30,0x4,0x3b,0x4,0x56,0x4,0x37, + 0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x0,0x53,0x0,0x44, + 0x0,0x4c,0x0,0x2c,0x0,0x20,0x4,0x3f,0x4,0x3e,0x4,0x42,0x4,0x40,0x4,0x56, + 0x4,0x31,0x4,0x3d,0x4,0x3e,0x0,0x20,0x0,0x53,0x0,0x44,0x0,0x4c,0x0,0x32, + 0x0,0x2e,0x0,0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x2e,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74, + 0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x53,0x44,0x4c,0x2c,0x20,0x53,0x44,0x4c,0x32, + 0x2e,0x64,0x6c,0x6c,0x20,0x69,0x73,0x20,0x72,0x65,0x71,0x75,0x69,0x72,0x65,0x64, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x5c,0x4,0x1d,0x4,0x35,0x4, + 0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4, + 0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4, + 0x38,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x38,0x4,0x41,0x4, + 0x3a,0x4,0x3e,0x4,0x40,0x4,0x4e,0x4,0x32,0x4,0x30,0x4,0x47,0x4,0x56,0x0, + 0x20,0x4,0x3a,0x4,0x3b,0x4,0x30,0x4,0x32,0x4,0x56,0x4,0x30,0x4,0x42,0x4, + 0x43,0x4,0x40,0x4,0x38,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x25,0x55,0x6e,0x61,0x62,0x6c,0x65,0x20,0x74,0x6f,0x20,0x6c,0x6f,0x61,0x64,0x20, + 0x6b,0x65,0x79,0x62,0x6f,0x61,0x72,0x64,0x20,0x61,0x63,0x63,0x65,0x6c,0x65,0x72, + 0x61,0x74,0x6f,0x72,0x73,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x30,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4, + 0x32,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4,0x3e,0x4,0x47,0x4,0x38,0x4, + 0x42,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x13,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x66,0x69,0x6c,0x65,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x68,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4, + 0x3e,0x4,0x36,0x4,0x3b,0x4,0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x37,0x4, + 0x30,0x4,0x40,0x4,0x40,0x4,0x35,0x4,0x54,0x4,0x41,0x4,0x42,0x4,0x40,0x4, + 0x43,0x4,0x32,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x3d,0x4,0x35,0x4, + 0x3e,0x4,0x31,0x4,0x40,0x4,0x3e,0x4,0x31,0x4,0x3b,0x4,0x35,0x4,0x3d,0x4, + 0x35,0x0,0x20,0x0,0x28,0x0,0x52,0x0,0x41,0x0,0x57,0x0,0x29,0x0,0x20,0x4, + 0x32,0x4,0x32,0x4,0x35,0x4,0x34,0x4,0x35,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0, + 0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x72,0x65,0x67,0x69,0x73,0x74,0x65,0x72,0x20,0x72,0x61, + 0x77,0x20,0x69,0x6e,0x70,0x75,0x74,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x2e,0x4,0x1d,0x4,0x35,0x4,0x3c,0x4,0x3e,0x4,0x36,0x4,0x3b,0x4, + 0x38,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x3f,0x4,0x38,0x4, + 0x41,0x4,0x30,0x4,0x42,0x4,0x38,0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4, + 0x3b,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x55,0x6e,0x61,0x62,0x6c, + 0x65,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,0x65,0x20,0x66,0x69,0x6c,0x65,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x40,0x4,0x1e,0x4,0x31,0x4,0x40, + 0x4,0x30,0x4,0x37,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x30, + 0x0,0x2c,0x0,0x20,0x4,0x49,0x4,0x3e,0x0,0x20,0x4,0x3d,0x4,0x35,0x0,0x20, + 0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4,0x38,0x4,0x3c,0x4,0x43, + 0x4,0x54,0x4,0x42,0x4,0x4c,0x4,0x41,0x4,0x4f,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x16,0x55,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x64,0x69,0x73,0x6b,0x20,0x69,0x6d,0x61,0x67,0x65,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0x18,0x0,0x46,0x0,0x4c,0x0,0x4f,0x0,0x41,0x0,0x54,0x0, + 0x33,0x0,0x32,0x0,0x20,0x4,0x37,0x4,0x32,0x4,0x43,0x4,0x3a,0x8,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x55,0x73,0x65,0x20,0x46,0x4c,0x4f,0x41,0x54, + 0x33,0x32,0x20,0x73,0x6f,0x75,0x6e,0x64,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1e,0x0,0x26,0x4,0x22,0x4,0x38,0x4,0x3f,0x0,0x20,0x4,0x35,0x4, + 0x3a,0x4,0x40,0x4,0x30,0x4,0x3d,0x4,0x30,0x0,0x20,0x0,0x56,0x0,0x47,0x0, + 0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x56,0x47,0x41,0x20,0x73, + 0x63,0x72,0x65,0x65,0x6e,0x20,0x26,0x74,0x79,0x70,0x65,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0x12,0x4,0x24,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x38, + 0x0,0x20,0x0,0x56,0x0,0x48,0x0,0x44,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x9,0x56,0x48,0x44,0x20,0x66,0x69,0x6c,0x65,0x73,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xec,0x4,0x12,0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e, + 0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x30,0x0,0x20,0x0,0x22,0x0,0x25, + 0x0,0x68,0x0,0x73,0x0,0x22,0x0,0x20,0x4,0x3d,0x4,0x35,0x4,0x34,0x4,0x3e, + 0x4,0x41,0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x47, + 0x4,0x35,0x4,0x40,0x4,0x35,0x4,0x37,0x0,0x20,0x4,0x32,0x4,0x56,0x4,0x34, + 0x4,0x41,0x4,0x43,0x4,0x42,0x4,0x3d,0x4,0x56,0x4,0x41,0x4,0x42,0x4,0x4c, + 0x0,0x20,0x4,0x44,0x4,0x30,0x4,0x39,0x4,0x3b,0x4,0x43,0x0,0x20,0x4,0x57, + 0x4,0x57,0x0,0x20,0x4,0x1f,0x4,0x17,0x4,0x23,0x0,0x20,0x4,0x32,0x0,0x20, + 0x4,0x3a,0x4,0x30,0x4,0x42,0x4,0x30,0x4,0x3b,0x4,0x3e,0x4,0x37,0x4,0x56, + 0x0,0x20,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x2f,0x0,0x76,0x0,0x69, + 0x0,0x64,0x0,0x65,0x0,0x6f,0x0,0x2e,0x0,0x20,0x4,0x1f,0x4,0x35,0x4,0x40, + 0x4,0x35,0x4,0x3a,0x4,0x3b,0x4,0x4e,0x4,0x47,0x4,0x35,0x4,0x3d,0x4,0x3d, + 0x4,0x4f,0x0,0x20,0x4,0x3d,0x4,0x30,0x0,0x20,0x4,0x34,0x4,0x3e,0x4,0x41, + 0x4,0x42,0x4,0x43,0x4,0x3f,0x4,0x3d,0x4,0x43,0x0,0x20,0x4,0x32,0x4,0x56, + 0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x40,0x4,0x42,0x4,0x43, + 0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x78,0x56,0x69,0x64,0x65, + 0x6f,0x20,0x63,0x61,0x72,0x64,0x20,0x22,0x25,0x68,0x73,0x22,0x20,0x69,0x73,0x20, + 0x6e,0x6f,0x74,0x20,0x61,0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x64,0x75, + 0x65,0x20,0x74,0x6f,0x20,0x6d,0x69,0x73,0x73,0x69,0x6e,0x67,0x20,0x52,0x4f,0x4d, + 0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x72,0x6f,0x6d,0x73,0x2f,0x76,0x69, + 0x64,0x65,0x6f,0x20,0x64,0x69,0x72,0x65,0x63,0x74,0x6f,0x72,0x79,0x2e,0x20,0x53, + 0x77,0x69,0x74,0x63,0x68,0x69,0x6e,0x67,0x20,0x74,0x6f,0x20,0x61,0x6e,0x20,0x61, + 0x76,0x61,0x69,0x6c,0x61,0x62,0x6c,0x65,0x20,0x76,0x69,0x64,0x65,0x6f,0x20,0x63, + 0x61,0x72,0x64,0x2e,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x4, + 0x12,0x4,0x56,0x4,0x34,0x4,0x35,0x4,0x3e,0x4,0x3a,0x4,0x30,0x4,0x40,0x4, + 0x42,0x4,0x30,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x56, + 0x69,0x64,0x65,0x6f,0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x24, + 0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e,0x4,0x40,0x4,0x4e, + 0x4,0x32,0x4,0x30,0x4,0x47,0x0,0x20,0x0,0x56,0x0,0x6f,0x0,0x6f,0x0,0x64, + 0x0,0x6f,0x0,0x6f,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x56,0x6f, + 0x6f,0x64,0x6f,0x6f,0x20,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x22,0x4,0x26,0x4,0x38,0x4,0x3a,0x4,0x3b, + 0x4,0x38,0x0,0x20,0x4,0x3e,0x4,0x47,0x4,0x56,0x4,0x3a,0x4,0x43,0x4,0x32, + 0x4,0x30,0x4,0x3d,0x4,0x3d,0x4,0x4f,0x0,0x3a,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0xc,0x57,0x61,0x69,0x74,0x20,0x73,0x74,0x61,0x74,0x65,0x73,0x3a, + 0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x30,0x4,0x1b,0x4,0x30,0x4, + 0x41,0x4,0x3a,0x4,0x30,0x4,0x32,0x4,0x3e,0x0,0x20,0x4,0x3f,0x4,0x40,0x4, + 0x3e,0x4,0x41,0x4,0x38,0x4,0x3c,0x4,0x3e,0x0,0x20,0x4,0x32,0x0,0x20,0x0, + 0x38,0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x21,0x8,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x11,0x57,0x65,0x6c,0x63,0x6f,0x6d,0x65,0x20,0x74,0x6f,0x20, + 0x38,0x36,0x42,0x6f,0x78,0x21,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0xe,0x4,0x28,0x4,0x38,0x4,0x40,0x4,0x38,0x4,0x3d,0x4,0x30,0x0,0x3a,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x57,0x69,0x64,0x74,0x68,0x3a,0x7, + 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x57,0x0,0x69,0x0,0x6e, + 0x0,0x50,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x7,0x57,0x69,0x6e,0x50,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1,0x3, + 0x0,0x0,0x0,0x1e,0x4,0x1f,0x4,0x40,0x4,0x38,0x4,0x41,0x4,0x3a,0x4,0x3e, + 0x4,0x40,0x4,0x4e,0x4,0x32,0x4,0x30,0x4,0x47,0x0,0x20,0x0,0x58,0x0,0x47, + 0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0x58,0x47,0x41,0x20, + 0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x6,0x0,0x58,0x0,0x54,0x0,0x41,0x8,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x3,0x58,0x54,0x41,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x1e,0x0,0x58,0x0,0x54,0x0,0x41,0x0,0x20,0x0,0x28,0x0,0x25,0x0,0x30,0x0, + 0x31,0x0,0x69,0x0,0x3a,0x0,0x25,0x0,0x30,0x0,0x31,0x0,0x69,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x58,0x54,0x41,0x20,0x28,0x25,0x30, + 0x31,0x69,0x3a,0x25,0x30,0x31,0x69,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0, + 0x0,0x0,0x1c,0x0,0x59,0x0,0x4d,0x0,0x46,0x0,0x4d,0x0,0x20,0x0,0x28,0x4, + 0x48,0x4,0x32,0x4,0x38,0x4,0x34,0x4,0x48,0x4,0x38,0x4,0x39,0x0,0x29,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xd,0x59,0x4d,0x46,0x4d,0x20,0x28,0x66, + 0x61,0x73,0x74,0x65,0x72,0x29,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0, + 0x56,0x4,0x12,0x4,0x38,0x0,0x20,0x4,0x37,0x4,0x30,0x4,0x32,0x4,0x30,0x4, + 0x3d,0x4,0x42,0x4,0x30,0x4,0x36,0x4,0x43,0x4,0x54,0x4,0x42,0x4,0x35,0x0, + 0x20,0x4,0x3d,0x4,0x35,0x4,0x3f,0x4,0x56,0x4,0x34,0x4,0x42,0x4,0x40,0x4, + 0x38,0x4,0x3c,0x4,0x43,0x4,0x32,0x4,0x30,0x4,0x3d,0x4,0x43,0x0,0x20,0x4, + 0x3a,0x4,0x3e,0x4,0x3d,0x4,0x44,0x4,0x56,0x4,0x33,0x4,0x43,0x4,0x40,0x4, + 0x30,0x4,0x46,0x4,0x56,0x4,0x4e,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x2c,0x59,0x6f,0x75,0x20,0x61,0x72,0x65,0x20,0x6c,0x6f,0x61,0x64,0x69,0x6e,0x67, + 0x20,0x61,0x6e,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20, + 0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x7,0x0,0x0, + 0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x2a,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20, + 0x0,0x25,0x0,0x30,0x0,0x33,0x0,0x69,0x0,0x20,0x0,0x25,0x0,0x69,0x0,0x20, + 0x0,0x28,0x0,0x25,0x0,0x73,0x0,0x29,0x0,0x3a,0x0,0x20,0x0,0x25,0x0,0x6c, + 0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x5a,0x49,0x50,0x20, + 0x25,0x30,0x33,0x69,0x20,0x25,0x69,0x20,0x28,0x25,0x73,0x29,0x3a,0x20,0x25,0x6c, + 0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49, + 0x0,0x50,0x0,0x20,0x0,0x31,0x0,0x30,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x7,0x5a,0x49,0x50,0x20,0x31,0x30,0x30,0x7,0x0,0x0,0x0,0x0, + 0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x0,0x32, + 0x0,0x35,0x0,0x30,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x7,0x5a,0x49, + 0x50,0x20,0x32,0x35,0x30,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x1c, + 0x0,0x5a,0x0,0x49,0x0,0x50,0x0,0x20,0x4,0x34,0x4,0x38,0x4,0x41,0x4,0x3a, + 0x4,0x3e,0x4,0x32,0x4,0x3e,0x4,0x34,0x4,0x38,0x0,0x3a,0x8,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0xb,0x5a,0x49,0x50,0x20,0x64,0x72,0x69,0x76,0x65,0x73, + 0x3a,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x14,0x4,0x1e,0x4,0x31, + 0x4,0x40,0x4,0x30,0x4,0x37,0x4,0x38,0x0,0x20,0x0,0x5a,0x0,0x49,0x0,0x50, + 0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xa,0x5a,0x49,0x50,0x20,0x69,0x6d, + 0x61,0x67,0x65,0x73,0x7,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x16,0x0, + 0x67,0x0,0x73,0x0,0x64,0x0,0x6c,0x0,0x6c,0x0,0x33,0x0,0x32,0x0,0x2e,0x0, + 0x64,0x0,0x6c,0x0,0x6c,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xb,0x67, + 0x73,0x64,0x6c,0x6c,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x7,0x0,0x0,0x0,0x0,0x1, + 0x3,0x0,0x0,0x0,0xa,0x0,0x6c,0x0,0x69,0x0,0x62,0x0,0x67,0x0,0x73,0x8, + 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x6c,0x69,0x62,0x67,0x73,0x7,0x0, + 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0xe,0x0,0x6c,0x0,0x69,0x0,0x62,0x0, + 0x70,0x0,0x63,0x0,0x61,0x0,0x70,0x8,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x7,0x6c,0x69,0x62,0x70,0x63,0x61,0x70,0x7,0x0,0x0,0x0,0x0,0x1, + +}; + +static const unsigned char qt_resource_name[] = { + // 86box_sl-SI.qm + 0x0,0xe, + 0x6,0xa,0x86,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x73,0x0,0x6c,0x0,0x2d,0x0,0x53,0x0,0x49,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ja-JP.qm + 0x0,0xe, + 0xd,0x32,0xff,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x6a,0x0,0x61,0x0,0x2d,0x0,0x4a,0x0,0x50,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_tr-TR.qm + 0x0,0xe, + 0xc,0x4,0x96,0xfd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x74,0x0,0x72,0x0,0x2d,0x0,0x54,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_zh-TW.qm + 0x0,0xe, + 0x2,0x4,0x65,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x7a,0x0,0x68,0x0,0x2d,0x0,0x54,0x0,0x57,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_en-GB.qm + 0x0,0xe, + 0x8,0x36,0x90,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x47,0x0,0x42,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_de-DE.qm + 0x0,0xe, + 0x1,0x35,0xc0,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x64,0x0,0x65,0x0,0x2d,0x0,0x44,0x0,0x45,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_zh-CN.qm + 0x0,0xe, + 0x2,0x3d,0xd5,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x7a,0x0,0x68,0x0,0x2d,0x0,0x43,0x0,0x4e,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_fr-FR.qm + 0x0,0xe, + 0xc,0x36,0x90,0x3d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x66,0x0,0x72,0x0,0x2d,0x0,0x46,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_en-US.qm + 0x0,0xe, + 0x8,0x7,0xa0,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x65,0x0,0x6e,0x0,0x2d,0x0,0x55,0x0,0x53,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_pt-PT.qm + 0x0,0xe, + 0xe,0x8,0xb7,0x7d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x50,0x0,0x54,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_hr-HR.qm + 0x0,0xe, + 0xc,0x30,0x90,0x7d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x68,0x0,0x72,0x0,0x2d,0x0,0x48,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ru-RU.qm + 0x0,0xe, + 0x1,0xa,0xc6,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x72,0x0,0x75,0x0,0x2d,0x0,0x52,0x0,0x55,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ko-KR.qm + 0x0,0xe, + 0xb,0x4d,0x9e,0x5d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x6b,0x0,0x6f,0x0,0x2d,0x0,0x4b,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_fi-FI.qm + 0x0,0xe, + 0x5,0x37,0x80,0x1d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x66,0x0,0x69,0x0,0x2d,0x0,0x46,0x0,0x49,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_sk-SK.qm + 0x0,0xe, + 0x7,0xa,0x26,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x73,0x0,0x6b,0x0,0x2d,0x0,0x53,0x0,0x4b,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_it-IT.qm + 0x0,0xe, + 0xe,0x33,0xbf,0x9d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x69,0x0,0x74,0x0,0x2d,0x0,0x49,0x0,0x54,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_es-ES.qm + 0x0,0xe, + 0xf,0x37,0xa0,0x1d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x65,0x0,0x73,0x0,0x2d,0x0,0x45,0x0,0x53,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_cs-CZ.qm + 0x0,0xe, + 0xf,0x35,0x10,0xdd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x63,0x0,0x73,0x0,0x2d,0x0,0x43,0x0,0x5a,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_hu-HU.qm + 0x0,0xe, + 0x1,0x30,0xc0,0x5d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x68,0x0,0x75,0x0,0x2d,0x0,0x48,0x0,0x55,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_pt-BR.qm + 0x0,0xe, + 0xe,0x3a,0x97,0x7d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x70,0x0,0x74,0x0,0x2d,0x0,0x42,0x0,0x52,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_pl-PL.qm + 0x0,0xe, + 0x6,0x9,0x37,0x5d, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x70,0x0,0x6c,0x0,0x2d,0x0,0x50,0x0,0x4c,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_ca-ES.qm + 0x0,0xe, + 0xd,0x37,0xa0,0xbd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x63,0x0,0x61,0x0,0x2d,0x0,0x45,0x0,0x53,0x0,0x2e,0x0,0x71,0x0,0x6d, + // 86box_uk-UA.qm + 0x0,0xe, + 0x7,0x5,0x6,0xfd, + 0x0,0x38, + 0x0,0x36,0x0,0x62,0x0,0x6f,0x0,0x78,0x0,0x5f,0x0,0x75,0x0,0x6b,0x0,0x2d,0x0,0x55,0x0,0x41,0x0,0x2e,0x0,0x71,0x0,0x6d, + +}; + +static const unsigned char qt_resource_struct[] = { + // : + 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/86box_ru-RU.qm + 0x0,0x0,0x1,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xed,0xb9, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x87, + // :/86box_hu-HU.qm + 0x0,0x0,0x2,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xdb,0xa0, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x63, + // :/86box_de-DE.qm + 0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x98,0x2f, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x57, + // :/86box_zh-TW.qm + 0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9c,0xb1, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0xa0, + // :/86box_zh-CN.qm + 0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x31,0x7e, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x9d, + // :/86box_fi-FI.qm + 0x0,0x0,0x1,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfb,0x57, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x61, + // :/86box_pl-PL.qm + 0x0,0x0,0x2,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x6,0x58, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x81, + // :/86box_sl-SI.qm + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x8a, + // :/86box_uk-UA.qm + 0x0,0x0,0x2,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xc,0x2e,0xc4, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x99, + // :/86box_sk-SK.qm + 0x0,0x0,0x1,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x8c,0xde, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x88, + // :/86box_en-US.qm + 0x0,0x0,0x1,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x38,0xa6, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x5a, + // :/86box_en-GB.qm + 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xc,0xd4, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x57, + // :/86box_ko-KR.qm + 0x0,0x0,0x1,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x82,0xdc, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x7b, + // :/86box_tr-TR.qm + 0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb,0x18, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x8f, + // :/86box_hr-HR.qm + 0x0,0x0,0x1,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x5a,0x3e, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x66, + // :/86box_fr-FR.qm + 0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa1,0x87, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x62, + // :/86box_ja-JP.qm + 0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x92,0x63, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x79, + // :/86box_ca-ES.qm + 0x0,0x0,0x2,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x9a,0x2d, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x56, + // :/86box_pt-PT.qm + 0x0,0x0,0x1,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc3,0xff, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x81, + // :/86box_it-IT.qm + 0x0,0x0,0x1,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x1f,0xbb, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x73, + // :/86box_pt-BR.qm + 0x0,0x0,0x2,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x70,0xf, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x81, + // :/86box_cs-CZ.qm + 0x0,0x0,0x2,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x49,0xd5, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x52, + // :/86box_es-ES.qm + 0x0,0x0,0x2,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xb4,0xa8, +0x0,0x0,0x1,0x8b,0x2c,0x1e,0xb4,0x5d, + +}; + +#ifdef QT_NAMESPACE +# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name +# define QT_RCC_MANGLE_NAMESPACE0(x) x +# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b +# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) +# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ + QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) +#else +# define QT_RCC_PREPEND_NAMESPACE(name) name +# define QT_RCC_MANGLE_NAMESPACE(name) name +#endif + +#ifdef QT_NAMESPACE +namespace QT_NAMESPACE { +#endif + +bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); +bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); + +#ifdef QT_NAMESPACE +} +#endif + +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_translations)(); +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_translations)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_translations)(); +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_translations)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +namespace { + struct initializer { + initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_translations)(); } + ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_translations)(); } + } dummy; +} diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp new file mode 100644 index 000000000..55acc728b --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp @@ -0,0 +1,153 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_d3d9renderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_d3d9renderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_d3d9renderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_D3D9Renderer_t { + QByteArrayData data[4]; + char stringdata0[32]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_D3D9Renderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_D3D9Renderer_t qt_meta_stringdata_D3D9Renderer = { + { +QT_MOC_LITERAL(0, 0, 12), // "D3D9Renderer" +QT_MOC_LITERAL(1, 13, 11), // "initialized" +QT_MOC_LITERAL(2, 25, 0), // "" +QT_MOC_LITERAL(3, 26, 5) // "error" + + }, + "D3D9Renderer\0initialized\0\0error" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_D3D9Renderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 2, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 24, 2, 0x06 /* Public */, + 3, 1, 25, 2, 0x06 /* Public */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, QMetaType::QString, 2, + + 0 // eod +}; + +void D3D9Renderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->initialized(); break; + case 1: _t->error((*reinterpret_cast< QString(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (D3D9Renderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&D3D9Renderer::initialized)) { + *result = 0; + return; + } + } + { + using _t = void (D3D9Renderer::*)(QString ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&D3D9Renderer::error)) { + *result = 1; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject D3D9Renderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_D3D9Renderer.data, + qt_meta_data_D3D9Renderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *D3D9Renderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *D3D9Renderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_D3D9Renderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QWidget::qt_metacast(_clname); +} + +int D3D9Renderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = -1; + _id -= 2; + } + return _id; +} + +// SIGNAL 0 +void D3D9Renderer::initialized() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void D3D9Renderer::error(QString _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp.d new file mode 100644 index 000000000..9610c0cb6 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp.d @@ -0,0 +1,535 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_d3d9renderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/d3d9.h \ + C:/msys64/mingw64/include/d3d9caps.h \ + C:/msys64/mingw64/include/d3d9types.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp new file mode 100644 index 000000000..261ab2418 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_deviceconfig.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_deviceconfig.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_deviceconfig.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_DeviceConfig_t { + QByteArrayData data[1]; + char stringdata0[13]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_DeviceConfig_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_DeviceConfig_t qt_meta_stringdata_DeviceConfig = { + { +QT_MOC_LITERAL(0, 0, 12) // "DeviceConfig" + + }, + "DeviceConfig" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_DeviceConfig[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void DeviceConfig::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject DeviceConfig::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_DeviceConfig.data, + qt_meta_data_DeviceConfig, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *DeviceConfig::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *DeviceConfig::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_DeviceConfig.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int DeviceConfig::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp.d new file mode 100644 index 000000000..7cbeed4fa --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp.d @@ -0,0 +1,291 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_deviceconfig.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp new file mode 100644 index 000000000..6a014a559 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp @@ -0,0 +1,169 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_filefield.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_filefield.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_filefield.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_FileField_t { + QByteArrayData data[7]; + char stringdata0[80]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_FileField_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_FileField_t qt_meta_stringdata_FileField = { + { +QT_MOC_LITERAL(0, 0, 9), // "FileField" +QT_MOC_LITERAL(1, 10, 12), // "fileSelected" +QT_MOC_LITERAL(2, 23, 0), // "" +QT_MOC_LITERAL(3, 24, 8), // "fileName" +QT_MOC_LITERAL(4, 33, 8), // "precheck" +QT_MOC_LITERAL(5, 42, 15), // "fileTextEntered" +QT_MOC_LITERAL(6, 58, 21) // "on_pushButton_clicked" + + }, + "FileField\0fileSelected\0\0fileName\0" + "precheck\0fileTextEntered\0on_pushButton_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_FileField[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 4, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 2, 39, 2, 0x06 /* Public */, + 1, 1, 44, 2, 0x26 /* Public | MethodCloned */, + 5, 2, 47, 2, 0x06 /* Public */, + 5, 1, 52, 2, 0x26 /* Public | MethodCloned */, + + // slots: name, argc, parameters, tag, flags + 6, 0, 55, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::QString, QMetaType::Bool, 3, 4, + QMetaType::Void, QMetaType::QString, 3, + QMetaType::Void, QMetaType::QString, QMetaType::Bool, 3, 4, + QMetaType::Void, QMetaType::QString, 3, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void FileField::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->fileSelected((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 1: _t->fileSelected((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 2: _t->fileTextEntered((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 3: _t->fileTextEntered((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 4: _t->on_pushButton_clicked(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (FileField::*)(const QString & , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&FileField::fileSelected)) { + *result = 0; + return; + } + } + { + using _t = void (FileField::*)(const QString & , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&FileField::fileTextEntered)) { + *result = 2; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject FileField::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_FileField.data, + qt_meta_data_FileField, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *FileField::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *FileField::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_FileField.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int FileField::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + *reinterpret_cast(_a[0]) = -1; + _id -= 5; + } + return _id; +} + +// SIGNAL 0 +void FileField::fileSelected(const QString & _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 2 +void FileField::fileTextEntered(const QString & _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 2, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp.d new file mode 100644 index 000000000..2b7bb7b10 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_filefield.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp new file mode 100644 index 000000000..196b4f6aa --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp @@ -0,0 +1,192 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_harddiskdialog.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_harddiskdialog.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_harddiskdialog.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_HarddiskDialog_t { + QByteArrayData data[18]; + char stringdata0[332]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_HarddiskDialog_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_HarddiskDialog_t qt_meta_stringdata_HarddiskDialog = { + { +QT_MOC_LITERAL(0, 0, 14), // "HarddiskDialog" +QT_MOC_LITERAL(1, 15, 12), // "fileProgress" +QT_MOC_LITERAL(2, 28, 0), // "" +QT_MOC_LITERAL(3, 29, 1), // "i" +QT_MOC_LITERAL(4, 31, 6), // "accept" +QT_MOC_LITERAL(5, 38, 35), // "on_comboBoxType_currentIndexC..." +QT_MOC_LITERAL(6, 74, 5), // "index" +QT_MOC_LITERAL(7, 80, 29), // "on_lineEditSectors_textEdited" +QT_MOC_LITERAL(8, 110, 4), // "arg1" +QT_MOC_LITERAL(9, 115, 27), // "on_lineEditHeads_textEdited" +QT_MOC_LITERAL(10, 143, 31), // "on_lineEditCylinders_textEdited" +QT_MOC_LITERAL(11, 175, 26), // "on_lineEditSize_textEdited" +QT_MOC_LITERAL(12, 202, 34), // "on_comboBoxBus_currentIndexCh..." +QT_MOC_LITERAL(13, 237, 37), // "on_comboBoxFormat_currentInde..." +QT_MOC_LITERAL(14, 275, 15), // "onCreateNewFile" +QT_MOC_LITERAL(15, 291, 22), // "onExistingFileSelected" +QT_MOC_LITERAL(16, 314, 8), // "fileName" +QT_MOC_LITERAL(17, 323, 8) // "precheck" + + }, + "HarddiskDialog\0fileProgress\0\0i\0accept\0" + "on_comboBoxType_currentIndexChanged\0" + "index\0on_lineEditSectors_textEdited\0" + "arg1\0on_lineEditHeads_textEdited\0" + "on_lineEditCylinders_textEdited\0" + "on_lineEditSize_textEdited\0" + "on_comboBoxBus_currentIndexChanged\0" + "on_comboBoxFormat_currentIndexChanged\0" + "onCreateNewFile\0onExistingFileSelected\0" + "fileName\0precheck" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_HarddiskDialog[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 11, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 69, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 0, 72, 2, 0x0a /* Public */, + 5, 1, 73, 2, 0x08 /* Private */, + 7, 1, 76, 2, 0x08 /* Private */, + 9, 1, 79, 2, 0x08 /* Private */, + 10, 1, 82, 2, 0x08 /* Private */, + 11, 1, 85, 2, 0x08 /* Private */, + 12, 1, 88, 2, 0x08 /* Private */, + 13, 1, 91, 2, 0x08 /* Private */, + 14, 0, 94, 2, 0x08 /* Private */, + 15, 2, 95, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, 3, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::QString, 8, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::QString, QMetaType::Bool, 16, 17, + + 0 // eod +}; + +void HarddiskDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->fileProgress((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->accept(); break; + case 2: _t->on_comboBoxType_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_lineEditSectors_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 4: _t->on_lineEditHeads_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 5: _t->on_lineEditCylinders_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 6: _t->on_lineEditSize_textEdited((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 7: _t->on_comboBoxBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->on_comboBoxFormat_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->onCreateNewFile(); break; + case 10: _t->onExistingFileSelected((*reinterpret_cast< const QString(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (HarddiskDialog::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&HarddiskDialog::fileProgress)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject HarddiskDialog::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_HarddiskDialog.data, + qt_meta_data_HarddiskDialog, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *HarddiskDialog::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *HarddiskDialog::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_HarddiskDialog.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int HarddiskDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 11) + qt_static_metacall(this, _c, _id, _a); + _id -= 11; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 11) + *reinterpret_cast(_a[0]) = -1; + _id -= 11; + } + return _id; +} + +// SIGNAL 0 +void HarddiskDialog::fileProgress(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp.d new file mode 100644 index 000000000..c56889060 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_harddiskdialog.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp new file mode 100644 index 000000000..73ec298ec --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp @@ -0,0 +1,128 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_hardwarerenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_hardwarerenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_hardwarerenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_HardwareRenderer_t { + QByteArrayData data[8]; + char stringdata0[41]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_HardwareRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_HardwareRenderer_t qt_meta_stringdata_HardwareRenderer = { + { +QT_MOC_LITERAL(0, 0, 16), // "HardwareRenderer" +QT_MOC_LITERAL(1, 17, 6), // "onBlit" +QT_MOC_LITERAL(2, 24, 0), // "" +QT_MOC_LITERAL(3, 25, 7), // "buf_idx" +QT_MOC_LITERAL(4, 33, 1), // "x" +QT_MOC_LITERAL(5, 35, 1), // "y" +QT_MOC_LITERAL(6, 37, 1), // "w" +QT_MOC_LITERAL(7, 39, 1) // "h" + + }, + "HardwareRenderer\0onBlit\0\0buf_idx\0x\0y\0" + "w\0h" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_HardwareRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 5, 19, 2, 0x0a /* Public */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 3, 4, 5, 6, 7, + + 0 // eod +}; + +void HardwareRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject HardwareRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_HardwareRenderer.data, + qt_meta_data_HardwareRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *HardwareRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *HardwareRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_HardwareRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QOpenGLFunctions")) + return static_cast< QOpenGLFunctions*>(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QOpenGLWindow::qt_metacast(_clname); +} + +int HardwareRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QOpenGLWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp.d new file mode 100644 index 000000000..e8da526af --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp.d @@ -0,0 +1,601 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_hardwarerenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/GL/gl.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QMargins \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/QScopedPointer \ + C:/msys64/mingw64/include/QtCore/QSharedDataPointer \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qcoreapplication.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qeventloop.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qt_windows.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/QKeyEvent \ + C:/msys64/mingw64/include/QtGui/QMatrix3x3 \ + C:/msys64/mingw64/include/QtGui/QMatrix4x4 \ + C:/msys64/mingw64/include/QtGui/QOpenGLBuffer \ + C:/msys64/mingw64/include/QtGui/QOpenGLContext \ + C:/msys64/mingw64/include/QtGui/QOpenGLFunctions \ + C:/msys64/mingw64/include/QtGui/QOpenGLPixelTransferOptions \ + C:/msys64/mingw64/include/QtGui/QOpenGLShader \ + C:/msys64/mingw64/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw64/include/QtGui/QOpenGLTexture \ + C:/msys64/mingw64/include/QtGui/QOpenGLTextureBlitter \ + C:/msys64/mingw64/include/QtGui/QOpenGLVertexArrayObject \ + C:/msys64/mingw64/include/QtGui/QOpenGLWindow \ + C:/msys64/mingw64/include/QtGui/QPaintDevice \ + C:/msys64/mingw64/include/QtGui/QPaintDeviceWindow \ + C:/msys64/mingw64/include/QtGui/QPainter \ + C:/msys64/mingw64/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw64/include/QtGui/QWindow \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw64/include/QtGui/qguiapplication.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qinputmethod.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw64/include/QtGui/qopengl.h \ + C:/msys64/mingw64/include/QtGui/qopenglbuffer.h \ + C:/msys64/mingw64/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw64/include/QtGui/qopenglext.h \ + C:/msys64/mingw64/include/QtGui/qopenglfunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglpixeltransferoptions.h \ + C:/msys64/mingw64/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw64/include/QtGui/qopengltexture.h \ + C:/msys64/mingw64/include/QtGui/qopengltextureblitter.h \ + C:/msys64/mingw64/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglvertexarrayobject.h \ + C:/msys64/mingw64/include/QtGui/qopenglwindow.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevicewindow.h \ + C:/msys64/mingw64/include/QtGui/qpainter.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpen.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qquaternion.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qsurface.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtextoption.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qvector3d.h \ + C:/msys64/mingw64/include/QtGui/qvector4d.h \ + C:/msys64/mingw64/include/QtGui/qwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QApplication \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qapplication.h \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/mutex \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp new file mode 100644 index 000000000..e41f35af9 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp @@ -0,0 +1,121 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_joystickconfiguration.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_joystickconfiguration.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_joystickconfiguration.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_JoystickConfiguration_t { + QByteArrayData data[4]; + char stringdata0[67]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_JoystickConfiguration_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_JoystickConfiguration_t qt_meta_stringdata_JoystickConfiguration = { + { +QT_MOC_LITERAL(0, 0, 21), // "JoystickConfiguration" +QT_MOC_LITERAL(1, 22, 37), // "on_comboBoxDevice_currentInde..." +QT_MOC_LITERAL(2, 60, 0), // "" +QT_MOC_LITERAL(3, 61, 5) // "index" + + }, + "JoystickConfiguration\0" + "on_comboBoxDevice_currentIndexChanged\0" + "\0index" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_JoystickConfiguration[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 19, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + + 0 // eod +}; + +void JoystickConfiguration::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_comboBoxDevice_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject JoystickConfiguration::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_JoystickConfiguration.data, + qt_meta_data_JoystickConfiguration, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *JoystickConfiguration::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *JoystickConfiguration::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_JoystickConfiguration.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int JoystickConfiguration::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp.d new file mode 100644 index 000000000..a27dacd20 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_joystickconfiguration.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp new file mode 100644 index 000000000..664839d2a --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp @@ -0,0 +1,282 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_machinestatus.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_machinestatus.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_machinestatus.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_ClickableLabel_t { + QByteArrayData data[5]; + char stringdata0[46]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_ClickableLabel_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_ClickableLabel_t qt_meta_stringdata_ClickableLabel = { + { +QT_MOC_LITERAL(0, 0, 14), // "ClickableLabel" +QT_MOC_LITERAL(1, 15, 7), // "clicked" +QT_MOC_LITERAL(2, 23, 0), // "" +QT_MOC_LITERAL(3, 24, 13), // "doubleClicked" +QT_MOC_LITERAL(4, 38, 7) // "dropped" + + }, + "ClickableLabel\0clicked\0\0doubleClicked\0" + "dropped" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_ClickableLabel[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 3, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 3, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 29, 2, 0x06 /* Public */, + 3, 1, 32, 2, 0x06 /* Public */, + 4, 1, 35, 2, 0x06 /* Public */, + + // signals: parameters + QMetaType::Void, QMetaType::QPoint, 2, + QMetaType::Void, QMetaType::QPoint, 2, + QMetaType::Void, QMetaType::QString, 2, + + 0 // eod +}; + +void ClickableLabel::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->clicked((*reinterpret_cast< QPoint(*)>(_a[1]))); break; + case 1: _t->doubleClicked((*reinterpret_cast< QPoint(*)>(_a[1]))); break; + case 2: _t->dropped((*reinterpret_cast< QString(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (ClickableLabel::*)(QPoint ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ClickableLabel::clicked)) { + *result = 0; + return; + } + } + { + using _t = void (ClickableLabel::*)(QPoint ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ClickableLabel::doubleClicked)) { + *result = 1; + return; + } + } + { + using _t = void (ClickableLabel::*)(QString ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&ClickableLabel::dropped)) { + *result = 2; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject ClickableLabel::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_ClickableLabel.data, + qt_meta_data_ClickableLabel, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *ClickableLabel::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *ClickableLabel::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_ClickableLabel.stringdata0)) + return static_cast(this); + return QLabel::qt_metacast(_clname); +} + +int ClickableLabel::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QLabel::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 3) + *reinterpret_cast(_a[0]) = -1; + _id -= 3; + } + return _id; +} + +// SIGNAL 0 +void ClickableLabel::clicked(QPoint _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 1 +void ClickableLabel::doubleClicked(QPoint _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} + +// SIGNAL 2 +void ClickableLabel::dropped(QString _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 2, _a); +} +struct qt_meta_stringdata_MachineStatus_t { + QByteArrayData data[10]; + char stringdata0[79]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MachineStatus_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MachineStatus_t qt_meta_stringdata_MachineStatus = { + { +QT_MOC_LITERAL(0, 0, 13), // "MachineStatus" +QT_MOC_LITERAL(1, 14, 7), // "refresh" +QT_MOC_LITERAL(2, 22, 0), // "" +QT_MOC_LITERAL(3, 23, 11), // "QStatusBar*" +QT_MOC_LITERAL(4, 35, 4), // "sbar" +QT_MOC_LITERAL(5, 40, 7), // "message" +QT_MOC_LITERAL(6, 48, 3), // "msg" +QT_MOC_LITERAL(7, 52, 9), // "updateTip" +QT_MOC_LITERAL(8, 62, 3), // "tag" +QT_MOC_LITERAL(9, 66, 12) // "refreshIcons" + + }, + "MachineStatus\0refresh\0\0QStatusBar*\0" + "sbar\0message\0msg\0updateTip\0tag\0" + "refreshIcons" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MachineStatus[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 4, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 34, 2, 0x0a /* Public */, + 5, 1, 37, 2, 0x0a /* Public */, + 7, 1, 40, 2, 0x0a /* Public */, + 9, 0, 43, 2, 0x0a /* Public */, + + // slots: parameters + QMetaType::Void, 0x80000000 | 3, 4, + QMetaType::Void, QMetaType::QString, 6, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, + + 0 // eod +}; + +void MachineStatus::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->refresh((*reinterpret_cast< QStatusBar*(*)>(_a[1]))); break; + case 1: _t->message((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 2: _t->updateTip((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->refreshIcons(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject MachineStatus::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MachineStatus.data, + qt_meta_data_MachineStatus, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MachineStatus::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MachineStatus::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MachineStatus.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int MachineStatus::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 4) + qt_static_metacall(this, _c, _id, _a); + _id -= 4; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 4) + *reinterpret_cast(_a[0]) = -1; + _id -= 4; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp.d new file mode 100644 index 000000000..7d6705ed0 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp.d @@ -0,0 +1,305 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_machinestatus.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QMimeData \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qmimedata.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QMouseEvent \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QLabel \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qframe.h \ + C:/msys64/mingw64/include/QtWidgets/qlabel.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp new file mode 100644 index 000000000..69ae5048e --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp @@ -0,0 +1,844 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mainwindow.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mainwindow.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mainwindow.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_MainWindow_t { + QByteArrayData data[107]; + char stringdata0[2695]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = { + { +QT_MOC_LITERAL(0, 0, 10), // "MainWindow" +QT_MOC_LITERAL(1, 11, 5), // "paint" +QT_MOC_LITERAL(2, 17, 0), // "" +QT_MOC_LITERAL(3, 18, 5), // "image" +QT_MOC_LITERAL(4, 24, 14), // "resizeContents" +QT_MOC_LITERAL(5, 39, 1), // "w" +QT_MOC_LITERAL(6, 41, 1), // "h" +QT_MOC_LITERAL(7, 43, 21), // "resizeContentsMonitor" +QT_MOC_LITERAL(8, 65, 13), // "monitor_index" +QT_MOC_LITERAL(9, 79, 16), // "statusBarMessage" +QT_MOC_LITERAL(10, 96, 3), // "msg" +QT_MOC_LITERAL(11, 100, 20), // "updateStatusBarPanes" +QT_MOC_LITERAL(12, 121, 23), // "updateStatusBarActivity" +QT_MOC_LITERAL(13, 145, 3), // "tag" +QT_MOC_LITERAL(14, 149, 6), // "active" +QT_MOC_LITERAL(15, 156, 20), // "updateStatusBarEmpty" +QT_MOC_LITERAL(16, 177, 5), // "empty" +QT_MOC_LITERAL(17, 183, 18), // "updateStatusBarTip" +QT_MOC_LITERAL(18, 202, 23), // "updateMenuResizeOptions" +QT_MOC_LITERAL(19, 226, 26), // "updateWindowRememberOption" +QT_MOC_LITERAL(20, 253, 19), // "initRendererMonitor" +QT_MOC_LITERAL(21, 273, 22), // "destroyRendererMonitor" +QT_MOC_LITERAL(22, 296, 33), // "initRendererMonitorForNonQtTh..." +QT_MOC_LITERAL(23, 330, 36), // "destroyRendererMonitorForNonQ..." +QT_MOC_LITERAL(24, 367, 18), // "hardResetCompleted" +QT_MOC_LITERAL(25, 386, 8), // "setTitle" +QT_MOC_LITERAL(26, 395, 5), // "title" +QT_MOC_LITERAL(27, 401, 13), // "setFullscreen" +QT_MOC_LITERAL(28, 415, 5), // "state" +QT_MOC_LITERAL(29, 421, 15), // "setMouseCapture" +QT_MOC_LITERAL(30, 437, 25), // "showMessageForNonQtThread" +QT_MOC_LITERAL(31, 463, 5), // "flags" +QT_MOC_LITERAL(32, 469, 6), // "header" +QT_MOC_LITERAL(33, 476, 7), // "message" +QT_MOC_LITERAL(34, 484, 22), // "getTitleForNonQtThread" +QT_MOC_LITERAL(35, 507, 8), // "wchar_t*" +QT_MOC_LITERAL(36, 516, 12), // "showSettings" +QT_MOC_LITERAL(37, 529, 9), // "hardReset" +QT_MOC_LITERAL(38, 539, 11), // "togglePause" +QT_MOC_LITERAL(39, 551, 23), // "initRendererMonitorSlot" +QT_MOC_LITERAL(40, 575, 26), // "destroyRendererMonitorSlot" +QT_MOC_LITERAL(41, 602, 18), // "updateUiPauseState" +QT_MOC_LITERAL(42, 621, 29), // "on_actionFullscreen_triggered" +QT_MOC_LITERAL(43, 651, 27), // "on_actionSettings_triggered" +QT_MOC_LITERAL(44, 679, 23), // "on_actionExit_triggered" +QT_MOC_LITERAL(45, 703, 29), // "on_actionAuto_pause_triggered" +QT_MOC_LITERAL(46, 733, 24), // "on_actionPause_triggered" +QT_MOC_LITERAL(47, 758, 31), // "on_actionCtrl_Alt_Del_triggered" +QT_MOC_LITERAL(48, 790, 31), // "on_actionCtrl_Alt_Esc_triggered" +QT_MOC_LITERAL(49, 822, 29), // "on_actionHard_Reset_triggered" +QT_MOC_LITERAL(50, 852, 41), // "on_actionRight_CTRL_is_left_A..." +QT_MOC_LITERAL(51, 894, 44), // "on_actionKeyboard_requires_ca..." +QT_MOC_LITERAL(52, 939, 35), // "on_actionResizable_window_tri..." +QT_MOC_LITERAL(53, 975, 7), // "checked" +QT_MOC_LITERAL(54, 983, 39), // "on_actionInverted_VGA_monitor..." +QT_MOC_LITERAL(55, 1023, 23), // "on_action0_5x_triggered" +QT_MOC_LITERAL(56, 1047, 21), // "on_action1x_triggered" +QT_MOC_LITERAL(57, 1069, 23), // "on_action1_5x_triggered" +QT_MOC_LITERAL(58, 1093, 21), // "on_action2x_triggered" +QT_MOC_LITERAL(59, 1115, 21), // "on_action3x_triggered" +QT_MOC_LITERAL(60, 1137, 21), // "on_action4x_triggered" +QT_MOC_LITERAL(61, 1159, 21), // "on_action5x_triggered" +QT_MOC_LITERAL(62, 1181, 21), // "on_action6x_triggered" +QT_MOC_LITERAL(63, 1203, 21), // "on_action7x_triggered" +QT_MOC_LITERAL(64, 1225, 21), // "on_action8x_triggered" +QT_MOC_LITERAL(65, 1247, 25), // "on_actionLinear_triggered" +QT_MOC_LITERAL(66, 1273, 26), // "on_actionNearest_triggered" +QT_MOC_LITERAL(67, 1300, 33), // "on_actionFullScreen_int_trigg..." +QT_MOC_LITERAL(68, 1334, 35), // "on_actionFullScreen_int43_tri..." +QT_MOC_LITERAL(69, 1370, 39), // "on_actionFullScreen_keepRatio..." +QT_MOC_LITERAL(70, 1410, 32), // "on_actionFullScreen_43_triggered" +QT_MOC_LITERAL(71, 1443, 37), // "on_actionFullScreen_stretch_t..." +QT_MOC_LITERAL(72, 1481, 32), // "on_actionWhite_monitor_triggered" +QT_MOC_LITERAL(73, 1514, 32), // "on_actionGreen_monitor_triggered" +QT_MOC_LITERAL(74, 1547, 32), // "on_actionAmber_monitor_triggered" +QT_MOC_LITERAL(75, 1580, 32), // "on_actionRGB_Grayscale_triggered" +QT_MOC_LITERAL(76, 1613, 28), // "on_actionRGB_Color_triggered" +QT_MOC_LITERAL(77, 1642, 26), // "on_actionAverage_triggered" +QT_MOC_LITERAL(78, 1669, 29), // "on_actionBT709_HDTV_triggered" +QT_MOC_LITERAL(79, 1699, 33), // "on_actionBT601_NTSC_PAL_trigg..." +QT_MOC_LITERAL(80, 1733, 32), // "on_actionDocumentation_triggered" +QT_MOC_LITERAL(81, 1766, 30), // "on_actionAbout_86Box_triggered" +QT_MOC_LITERAL(82, 1797, 27), // "on_actionAbout_Qt_triggered" +QT_MOC_LITERAL(83, 1825, 42), // "on_actionForce_4_3_display_ra..." +QT_MOC_LITERAL(84, 1868, 57), // "on_actionChange_contrast_for_..." +QT_MOC_LITERAL(85, 1926, 52), // "on_actionCGA_PCjr_Tandy_EGA_S..." +QT_MOC_LITERAL(86, 1979, 45), // "on_actionRemember_size_and_po..." +QT_MOC_LITERAL(87, 2025, 37), // "on_actionSpecify_dimensions_t..." +QT_MOC_LITERAL(88, 2063, 32), // "on_actionHiDPI_scaling_triggered" +QT_MOC_LITERAL(89, 2096, 34), // "on_actionHide_status_bar_trig..." +QT_MOC_LITERAL(90, 2131, 32), // "on_actionHide_tool_bar_triggered" +QT_MOC_LITERAL(91, 2164, 42), // "on_actionUpdate_status_bar_ic..." +QT_MOC_LITERAL(92, 2207, 34), // "on_actionTake_screenshot_trig..." +QT_MOC_LITERAL(93, 2242, 29), // "on_actionSound_gain_triggered" +QT_MOC_LITERAL(94, 2272, 30), // "on_actionPreferences_triggered" +QT_MOC_LITERAL(95, 2303, 45), // "on_actionEnable_Discord_integ..." +QT_MOC_LITERAL(96, 2349, 35), // "on_actionRenderer_options_tri..." +QT_MOC_LITERAL(97, 2385, 16), // "refreshMediaMenu" +QT_MOC_LITERAL(98, 2402, 12), // "showMessage_" +QT_MOC_LITERAL(99, 2415, 9), // "getTitle_" +QT_MOC_LITERAL(100, 2425, 30), // "on_actionMCA_devices_triggered" +QT_MOC_LITERAL(101, 2456, 22), // "on_actionPen_triggered" +QT_MOC_LITERAL(102, 2479, 30), // "on_actionCursor_Puck_triggered" +QT_MOC_LITERAL(103, 2510, 32), // "on_actionACPI_Shutdown_triggered" +QT_MOC_LITERAL(104, 2543, 44), // "on_actionShow_non_primary_mon..." +QT_MOC_LITERAL(105, 2588, 42), // "on_actionOpen_screenshots_fol..." +QT_MOC_LITERAL(106, 2631, 63) // "on_actionApply_fullscreen_str..." + + }, + "MainWindow\0paint\0\0image\0resizeContents\0" + "w\0h\0resizeContentsMonitor\0monitor_index\0" + "statusBarMessage\0msg\0updateStatusBarPanes\0" + "updateStatusBarActivity\0tag\0active\0" + "updateStatusBarEmpty\0empty\0" + "updateStatusBarTip\0updateMenuResizeOptions\0" + "updateWindowRememberOption\0" + "initRendererMonitor\0destroyRendererMonitor\0" + "initRendererMonitorForNonQtThread\0" + "destroyRendererMonitorForNonQtThread\0" + "hardResetCompleted\0setTitle\0title\0" + "setFullscreen\0state\0setMouseCapture\0" + "showMessageForNonQtThread\0flags\0header\0" + "message\0getTitleForNonQtThread\0wchar_t*\0" + "showSettings\0hardReset\0togglePause\0" + "initRendererMonitorSlot\0" + "destroyRendererMonitorSlot\0" + "updateUiPauseState\0on_actionFullscreen_triggered\0" + "on_actionSettings_triggered\0" + "on_actionExit_triggered\0" + "on_actionAuto_pause_triggered\0" + "on_actionPause_triggered\0" + "on_actionCtrl_Alt_Del_triggered\0" + "on_actionCtrl_Alt_Esc_triggered\0" + "on_actionHard_Reset_triggered\0" + "on_actionRight_CTRL_is_left_ALT_triggered\0" + "on_actionKeyboard_requires_capture_triggered\0" + "on_actionResizable_window_triggered\0" + "checked\0on_actionInverted_VGA_monitor_triggered\0" + "on_action0_5x_triggered\0on_action1x_triggered\0" + "on_action1_5x_triggered\0on_action2x_triggered\0" + "on_action3x_triggered\0on_action4x_triggered\0" + "on_action5x_triggered\0on_action6x_triggered\0" + "on_action7x_triggered\0on_action8x_triggered\0" + "on_actionLinear_triggered\0" + "on_actionNearest_triggered\0" + "on_actionFullScreen_int_triggered\0" + "on_actionFullScreen_int43_triggered\0" + "on_actionFullScreen_keepRatio_triggered\0" + "on_actionFullScreen_43_triggered\0" + "on_actionFullScreen_stretch_triggered\0" + "on_actionWhite_monitor_triggered\0" + "on_actionGreen_monitor_triggered\0" + "on_actionAmber_monitor_triggered\0" + "on_actionRGB_Grayscale_triggered\0" + "on_actionRGB_Color_triggered\0" + "on_actionAverage_triggered\0" + "on_actionBT709_HDTV_triggered\0" + "on_actionBT601_NTSC_PAL_triggered\0" + "on_actionDocumentation_triggered\0" + "on_actionAbout_86Box_triggered\0" + "on_actionAbout_Qt_triggered\0" + "on_actionForce_4_3_display_ratio_triggered\0" + "on_actionChange_contrast_for_monochrome_display_triggered\0" + "on_actionCGA_PCjr_Tandy_EGA_S_VGA_overscan_triggered\0" + "on_actionRemember_size_and_position_triggered\0" + "on_actionSpecify_dimensions_triggered\0" + "on_actionHiDPI_scaling_triggered\0" + "on_actionHide_status_bar_triggered\0" + "on_actionHide_tool_bar_triggered\0" + "on_actionUpdate_status_bar_icons_triggered\0" + "on_actionTake_screenshot_triggered\0" + "on_actionSound_gain_triggered\0" + "on_actionPreferences_triggered\0" + "on_actionEnable_Discord_integration_triggered\0" + "on_actionRenderer_options_triggered\0" + "refreshMediaMenu\0showMessage_\0getTitle_\0" + "on_actionMCA_devices_triggered\0" + "on_actionPen_triggered\0" + "on_actionCursor_Puck_triggered\0" + "on_actionACPI_Shutdown_triggered\0" + "on_actionShow_non_primary_monitors_triggered\0" + "on_actionOpen_screenshots_folder_triggered\0" + "on_actionApply_fullscreen_stretch_mode_when_maximized_triggered" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MainWindow[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 90, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 20, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 464, 2, 0x06 /* Public */, + 4, 2, 467, 2, 0x06 /* Public */, + 7, 3, 472, 2, 0x06 /* Public */, + 9, 1, 479, 2, 0x06 /* Public */, + 11, 0, 482, 2, 0x06 /* Public */, + 12, 2, 483, 2, 0x06 /* Public */, + 15, 2, 488, 2, 0x06 /* Public */, + 17, 1, 493, 2, 0x06 /* Public */, + 18, 0, 496, 2, 0x06 /* Public */, + 19, 0, 497, 2, 0x06 /* Public */, + 20, 1, 498, 2, 0x06 /* Public */, + 21, 1, 501, 2, 0x06 /* Public */, + 22, 1, 504, 2, 0x06 /* Public */, + 23, 1, 507, 2, 0x06 /* Public */, + 24, 0, 510, 2, 0x06 /* Public */, + 25, 1, 511, 2, 0x06 /* Public */, + 27, 1, 514, 2, 0x06 /* Public */, + 29, 1, 517, 2, 0x06 /* Public */, + 30, 3, 520, 2, 0x06 /* Public */, + 34, 1, 527, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 36, 0, 530, 2, 0x0a /* Public */, + 37, 0, 531, 2, 0x0a /* Public */, + 38, 0, 532, 2, 0x0a /* Public */, + 39, 1, 533, 2, 0x0a /* Public */, + 40, 1, 536, 2, 0x0a /* Public */, + 41, 0, 539, 2, 0x0a /* Public */, + 42, 0, 540, 2, 0x08 /* Private */, + 43, 0, 541, 2, 0x08 /* Private */, + 44, 0, 542, 2, 0x08 /* Private */, + 45, 0, 543, 2, 0x08 /* Private */, + 46, 0, 544, 2, 0x08 /* Private */, + 47, 0, 545, 2, 0x08 /* Private */, + 48, 0, 546, 2, 0x08 /* Private */, + 49, 0, 547, 2, 0x08 /* Private */, + 50, 0, 548, 2, 0x08 /* Private */, + 51, 0, 549, 2, 0x08 /* Private */, + 52, 1, 550, 2, 0x08 /* Private */, + 54, 0, 553, 2, 0x08 /* Private */, + 55, 0, 554, 2, 0x08 /* Private */, + 56, 0, 555, 2, 0x08 /* Private */, + 57, 0, 556, 2, 0x08 /* Private */, + 58, 0, 557, 2, 0x08 /* Private */, + 59, 0, 558, 2, 0x08 /* Private */, + 60, 0, 559, 2, 0x08 /* Private */, + 61, 0, 560, 2, 0x08 /* Private */, + 62, 0, 561, 2, 0x08 /* Private */, + 63, 0, 562, 2, 0x08 /* Private */, + 64, 0, 563, 2, 0x08 /* Private */, + 65, 0, 564, 2, 0x08 /* Private */, + 66, 0, 565, 2, 0x08 /* Private */, + 67, 0, 566, 2, 0x08 /* Private */, + 68, 0, 567, 2, 0x08 /* Private */, + 69, 0, 568, 2, 0x08 /* Private */, + 70, 0, 569, 2, 0x08 /* Private */, + 71, 0, 570, 2, 0x08 /* Private */, + 72, 0, 571, 2, 0x08 /* Private */, + 73, 0, 572, 2, 0x08 /* Private */, + 74, 0, 573, 2, 0x08 /* Private */, + 75, 0, 574, 2, 0x08 /* Private */, + 76, 0, 575, 2, 0x08 /* Private */, + 77, 0, 576, 2, 0x08 /* Private */, + 78, 0, 577, 2, 0x08 /* Private */, + 79, 0, 578, 2, 0x08 /* Private */, + 80, 0, 579, 2, 0x08 /* Private */, + 81, 0, 580, 2, 0x08 /* Private */, + 82, 0, 581, 2, 0x08 /* Private */, + 83, 0, 582, 2, 0x08 /* Private */, + 84, 0, 583, 2, 0x08 /* Private */, + 85, 0, 584, 2, 0x08 /* Private */, + 86, 0, 585, 2, 0x08 /* Private */, + 87, 0, 586, 2, 0x08 /* Private */, + 88, 0, 587, 2, 0x08 /* Private */, + 89, 0, 588, 2, 0x08 /* Private */, + 90, 0, 589, 2, 0x08 /* Private */, + 91, 0, 590, 2, 0x08 /* Private */, + 92, 0, 591, 2, 0x08 /* Private */, + 93, 0, 592, 2, 0x08 /* Private */, + 94, 0, 593, 2, 0x08 /* Private */, + 95, 1, 594, 2, 0x08 /* Private */, + 96, 0, 597, 2, 0x08 /* Private */, + 97, 0, 598, 2, 0x08 /* Private */, + 98, 3, 599, 2, 0x08 /* Private */, + 99, 1, 606, 2, 0x08 /* Private */, + 100, 0, 609, 2, 0x08 /* Private */, + 101, 0, 610, 2, 0x08 /* Private */, + 102, 0, 611, 2, 0x08 /* Private */, + 103, 0, 612, 2, 0x08 /* Private */, + 104, 0, 613, 2, 0x08 /* Private */, + 105, 0, 614, 2, 0x08 /* Private */, + 106, 1, 615, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::QImage, 3, + QMetaType::Void, QMetaType::Int, QMetaType::Int, 5, 6, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, 5, 6, 8, + QMetaType::Void, QMetaType::QString, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, QMetaType::Bool, 13, 14, + QMetaType::Void, QMetaType::Int, QMetaType::Bool, 13, 16, + QMetaType::Void, QMetaType::Int, 13, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, + QMetaType::Void, QMetaType::QString, 26, + QMetaType::Void, QMetaType::Bool, 28, + QMetaType::Void, QMetaType::Bool, 28, + QMetaType::Void, QMetaType::Int, QMetaType::QString, QMetaType::QString, 31, 32, 33, + QMetaType::Void, 0x80000000 | 35, 26, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 53, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 53, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, QMetaType::QString, QMetaType::QString, 31, 32, 33, + QMetaType::Void, 0x80000000 | 35, 26, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 53, + + 0 // eod +}; + +void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->paint((*reinterpret_cast< const QImage(*)>(_a[1]))); break; + case 1: _t->resizeContents((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break; + case 2: _t->resizeContentsMonitor((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3]))); break; + case 3: _t->statusBarMessage((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 4: _t->updateStatusBarPanes(); break; + case 5: _t->updateStatusBarActivity((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 6: _t->updateStatusBarEmpty((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< bool(*)>(_a[2]))); break; + case 7: _t->updateStatusBarTip((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->updateMenuResizeOptions(); break; + case 9: _t->updateWindowRememberOption(); break; + case 10: _t->initRendererMonitor((*reinterpret_cast< int(*)>(_a[1]))); break; + case 11: _t->destroyRendererMonitor((*reinterpret_cast< int(*)>(_a[1]))); break; + case 12: _t->initRendererMonitorForNonQtThread((*reinterpret_cast< int(*)>(_a[1]))); break; + case 13: _t->destroyRendererMonitorForNonQtThread((*reinterpret_cast< int(*)>(_a[1]))); break; + case 14: _t->hardResetCompleted(); break; + case 15: _t->setTitle((*reinterpret_cast< const QString(*)>(_a[1]))); break; + case 16: _t->setFullscreen((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 17: _t->setMouseCapture((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 18: _t->showMessageForNonQtThread((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QString(*)>(_a[3]))); break; + case 19: _t->getTitleForNonQtThread((*reinterpret_cast< wchar_t*(*)>(_a[1]))); break; + case 20: _t->showSettings(); break; + case 21: _t->hardReset(); break; + case 22: _t->togglePause(); break; + case 23: _t->initRendererMonitorSlot((*reinterpret_cast< int(*)>(_a[1]))); break; + case 24: _t->destroyRendererMonitorSlot((*reinterpret_cast< int(*)>(_a[1]))); break; + case 25: _t->updateUiPauseState(); break; + case 26: _t->on_actionFullscreen_triggered(); break; + case 27: _t->on_actionSettings_triggered(); break; + case 28: _t->on_actionExit_triggered(); break; + case 29: _t->on_actionAuto_pause_triggered(); break; + case 30: _t->on_actionPause_triggered(); break; + case 31: _t->on_actionCtrl_Alt_Del_triggered(); break; + case 32: _t->on_actionCtrl_Alt_Esc_triggered(); break; + case 33: _t->on_actionHard_Reset_triggered(); break; + case 34: _t->on_actionRight_CTRL_is_left_ALT_triggered(); break; + case 35: _t->on_actionKeyboard_requires_capture_triggered(); break; + case 36: _t->on_actionResizable_window_triggered((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 37: _t->on_actionInverted_VGA_monitor_triggered(); break; + case 38: _t->on_action0_5x_triggered(); break; + case 39: _t->on_action1x_triggered(); break; + case 40: _t->on_action1_5x_triggered(); break; + case 41: _t->on_action2x_triggered(); break; + case 42: _t->on_action3x_triggered(); break; + case 43: _t->on_action4x_triggered(); break; + case 44: _t->on_action5x_triggered(); break; + case 45: _t->on_action6x_triggered(); break; + case 46: _t->on_action7x_triggered(); break; + case 47: _t->on_action8x_triggered(); break; + case 48: _t->on_actionLinear_triggered(); break; + case 49: _t->on_actionNearest_triggered(); break; + case 50: _t->on_actionFullScreen_int_triggered(); break; + case 51: _t->on_actionFullScreen_int43_triggered(); break; + case 52: _t->on_actionFullScreen_keepRatio_triggered(); break; + case 53: _t->on_actionFullScreen_43_triggered(); break; + case 54: _t->on_actionFullScreen_stretch_triggered(); break; + case 55: _t->on_actionWhite_monitor_triggered(); break; + case 56: _t->on_actionGreen_monitor_triggered(); break; + case 57: _t->on_actionAmber_monitor_triggered(); break; + case 58: _t->on_actionRGB_Grayscale_triggered(); break; + case 59: _t->on_actionRGB_Color_triggered(); break; + case 60: _t->on_actionAverage_triggered(); break; + case 61: _t->on_actionBT709_HDTV_triggered(); break; + case 62: _t->on_actionBT601_NTSC_PAL_triggered(); break; + case 63: _t->on_actionDocumentation_triggered(); break; + case 64: _t->on_actionAbout_86Box_triggered(); break; + case 65: _t->on_actionAbout_Qt_triggered(); break; + case 66: _t->on_actionForce_4_3_display_ratio_triggered(); break; + case 67: _t->on_actionChange_contrast_for_monochrome_display_triggered(); break; + case 68: _t->on_actionCGA_PCjr_Tandy_EGA_S_VGA_overscan_triggered(); break; + case 69: _t->on_actionRemember_size_and_position_triggered(); break; + case 70: _t->on_actionSpecify_dimensions_triggered(); break; + case 71: _t->on_actionHiDPI_scaling_triggered(); break; + case 72: _t->on_actionHide_status_bar_triggered(); break; + case 73: _t->on_actionHide_tool_bar_triggered(); break; + case 74: _t->on_actionUpdate_status_bar_icons_triggered(); break; + case 75: _t->on_actionTake_screenshot_triggered(); break; + case 76: _t->on_actionSound_gain_triggered(); break; + case 77: _t->on_actionPreferences_triggered(); break; + case 78: _t->on_actionEnable_Discord_integration_triggered((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 79: _t->on_actionRenderer_options_triggered(); break; + case 80: _t->refreshMediaMenu(); break; + case 81: _t->showMessage_((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< const QString(*)>(_a[2])),(*reinterpret_cast< const QString(*)>(_a[3]))); break; + case 82: _t->getTitle_((*reinterpret_cast< wchar_t*(*)>(_a[1]))); break; + case 83: _t->on_actionMCA_devices_triggered(); break; + case 84: _t->on_actionPen_triggered(); break; + case 85: _t->on_actionCursor_Puck_triggered(); break; + case 86: _t->on_actionACPI_Shutdown_triggered(); break; + case 87: _t->on_actionShow_non_primary_monitors_triggered(); break; + case 88: _t->on_actionOpen_screenshots_folder_triggered(); break; + case 89: _t->on_actionApply_fullscreen_stretch_mode_when_maximized_triggered((*reinterpret_cast< bool(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (MainWindow::*)(const QImage & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::paint)) { + *result = 0; + return; + } + } + { + using _t = void (MainWindow::*)(int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::resizeContents)) { + *result = 1; + return; + } + } + { + using _t = void (MainWindow::*)(int , int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::resizeContentsMonitor)) { + *result = 2; + return; + } + } + { + using _t = void (MainWindow::*)(const QString & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::statusBarMessage)) { + *result = 3; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarPanes)) { + *result = 4; + return; + } + } + { + using _t = void (MainWindow::*)(int , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarActivity)) { + *result = 5; + return; + } + } + { + using _t = void (MainWindow::*)(int , bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarEmpty)) { + *result = 6; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateStatusBarTip)) { + *result = 7; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateMenuResizeOptions)) { + *result = 8; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::updateWindowRememberOption)) { + *result = 9; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::initRendererMonitor)) { + *result = 10; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::destroyRendererMonitor)) { + *result = 11; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::initRendererMonitorForNonQtThread)) { + *result = 12; + return; + } + } + { + using _t = void (MainWindow::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::destroyRendererMonitorForNonQtThread)) { + *result = 13; + return; + } + } + { + using _t = void (MainWindow::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::hardResetCompleted)) { + *result = 14; + return; + } + } + { + using _t = void (MainWindow::*)(const QString & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::setTitle)) { + *result = 15; + return; + } + } + { + using _t = void (MainWindow::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::setFullscreen)) { + *result = 16; + return; + } + } + { + using _t = void (MainWindow::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::setMouseCapture)) { + *result = 17; + return; + } + } + { + using _t = void (MainWindow::*)(int , const QString & , const QString & ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::showMessageForNonQtThread)) { + *result = 18; + return; + } + } + { + using _t = void (MainWindow::*)(wchar_t * ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&MainWindow::getTitleForNonQtThread)) { + *result = 19; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject MainWindow::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MainWindow.data, + qt_meta_data_MainWindow, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MainWindow::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MainWindow::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata0)) + return static_cast(this); + return QMainWindow::qt_metacast(_clname); +} + +int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QMainWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 90) + qt_static_metacall(this, _c, _id, _a); + _id -= 90; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 90) + *reinterpret_cast(_a[0]) = -1; + _id -= 90; + } + return _id; +} + +// SIGNAL 0 +void MainWindow::paint(const QImage & _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 1 +void MainWindow::resizeContents(int _t1, int _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} + +// SIGNAL 2 +void MainWindow::resizeContentsMonitor(int _t1, int _t2, int _t3) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))) }; + QMetaObject::activate(this, &staticMetaObject, 2, _a); +} + +// SIGNAL 3 +void MainWindow::statusBarMessage(const QString & _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 3, _a); +} + +// SIGNAL 4 +void MainWindow::updateStatusBarPanes() +{ + QMetaObject::activate(this, &staticMetaObject, 4, nullptr); +} + +// SIGNAL 5 +void MainWindow::updateStatusBarActivity(int _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 5, _a); +} + +// SIGNAL 6 +void MainWindow::updateStatusBarEmpty(int _t1, bool _t2) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))) }; + QMetaObject::activate(this, &staticMetaObject, 6, _a); +} + +// SIGNAL 7 +void MainWindow::updateStatusBarTip(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 7, _a); +} + +// SIGNAL 8 +void MainWindow::updateMenuResizeOptions() +{ + QMetaObject::activate(this, &staticMetaObject, 8, nullptr); +} + +// SIGNAL 9 +void MainWindow::updateWindowRememberOption() +{ + QMetaObject::activate(this, &staticMetaObject, 9, nullptr); +} + +// SIGNAL 10 +void MainWindow::initRendererMonitor(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 10, _a); +} + +// SIGNAL 11 +void MainWindow::destroyRendererMonitor(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 11, _a); +} + +// SIGNAL 12 +void MainWindow::initRendererMonitorForNonQtThread(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 12, _a); +} + +// SIGNAL 13 +void MainWindow::destroyRendererMonitorForNonQtThread(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 13, _a); +} + +// SIGNAL 14 +void MainWindow::hardResetCompleted() +{ + QMetaObject::activate(this, &staticMetaObject, 14, nullptr); +} + +// SIGNAL 15 +void MainWindow::setTitle(const QString & _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 15, _a); +} + +// SIGNAL 16 +void MainWindow::setFullscreen(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 16, _a); +} + +// SIGNAL 17 +void MainWindow::setMouseCapture(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 17, _a); +} + +// SIGNAL 18 +void MainWindow::showMessageForNonQtThread(int _t1, const QString & _t2, const QString & _t3) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))) }; + QMetaObject::activate(this, &staticMetaObject, 18, _a); +} + +// SIGNAL 19 +void MainWindow::getTitleForNonQtThread(wchar_t * _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 19, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp.d new file mode 100644 index 000000000..dbb79e370 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp.d @@ -0,0 +1,307 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mainwindow.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QFocusEvent \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QLabel \ + C:/msys64/mingw64/include/QtWidgets/QMainWindow \ + C:/msys64/mingw64/include/QtWidgets/qframe.h \ + C:/msys64/mingw64/include/QtWidgets/qlabel.h \ + C:/msys64/mingw64/include/QtWidgets/qmainwindow.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtabwidget.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp new file mode 100644 index 000000000..13b298d39 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mcadevicelist.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mcadevicelist.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mcadevicelist.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_MCADeviceList_t { + QByteArrayData data[1]; + char stringdata0[14]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MCADeviceList_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MCADeviceList_t qt_meta_stringdata_MCADeviceList = { + { +QT_MOC_LITERAL(0, 0, 13) // "MCADeviceList" + + }, + "MCADeviceList" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MCADeviceList[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void MCADeviceList::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject MCADeviceList::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MCADeviceList.data, + qt_meta_data_MCADeviceList, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MCADeviceList::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MCADeviceList::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MCADeviceList.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int MCADeviceList::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp.d new file mode 100644 index 000000000..3001eab25 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mcadevicelist.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp new file mode 100644 index 000000000..4405ca359 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp @@ -0,0 +1,85 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mediahistorymanager.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mediahistorymanager.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mediahistorymanager.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_ui_t { + QByteArrayData data[7]; + char stringdata0[44]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_ui_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_ui_t qt_meta_stringdata_ui = { + { +QT_MOC_LITERAL(0, 0, 2), // "ui" +QT_MOC_LITERAL(1, 3, 9), // "MediaType" +QT_MOC_LITERAL(2, 13, 6), // "Floppy" +QT_MOC_LITERAL(3, 20, 7), // "Optical" +QT_MOC_LITERAL(4, 28, 3), // "Zip" +QT_MOC_LITERAL(5, 32, 2), // "Mo" +QT_MOC_LITERAL(6, 35, 8) // "Cassette" + + }, + "ui\0MediaType\0Floppy\0Optical\0Zip\0Mo\0" + "Cassette" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_ui[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 1, 14, // enums/sets + 0, 0, // constructors + 4, // flags + 0, // signalCount + + // enums: name, alias, flags, count, data + 1, 1, 0x2, 5, 19, + + // enum data: key, value + 2, uint(ui::MediaType::Floppy), + 3, uint(ui::MediaType::Optical), + 4, uint(ui::MediaType::Zip), + 5, uint(ui::MediaType::Mo), + 6, uint(ui::MediaType::Cassette), + + 0 // eod +}; + +QT_INIT_METAOBJECT const QMetaObject ui::staticMetaObject = { { + nullptr, + qt_meta_stringdata_ui.data, + qt_meta_data_ui, + nullptr, + nullptr, + nullptr +} }; + +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp.d new file mode 100644 index 000000000..bf356ac30 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp.d @@ -0,0 +1,292 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediahistorymanager.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QString \ + C:/msys64/mingw64/include/QtCore/QVector \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + K:/emu_dev/86Box_clean_ex_k/src/include/86box/86box.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp new file mode 100644 index 000000000..d43681ca7 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_mediamenu.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_mediamenu.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_mediamenu.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_MediaMenu_t { + QByteArrayData data[1]; + char stringdata0[10]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_MediaMenu_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_MediaMenu_t qt_meta_stringdata_MediaMenu = { + { +QT_MOC_LITERAL(0, 0, 9) // "MediaMenu" + + }, + "MediaMenu" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_MediaMenu[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void MediaMenu::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject MediaMenu::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_MediaMenu.data, + qt_meta_data_MediaMenu, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *MediaMenu::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *MediaMenu::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_MediaMenu.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int MediaMenu::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp.d new file mode 100644 index 000000000..184761582 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp.d @@ -0,0 +1,296 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_mediamenu.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QMap \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QString \ + C:/msys64/mingw64/include/QtCore/QVector \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + K:/emu_dev/86Box_clean_ex_k/src/include/86box/86box.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp new file mode 100644 index 000000000..48decf732 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp @@ -0,0 +1,144 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_newfloppydialog.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_newfloppydialog.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_newfloppydialog.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_NewFloppyDialog_t { + QByteArrayData data[5]; + char stringdata0[41]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_NewFloppyDialog_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_NewFloppyDialog_t qt_meta_stringdata_NewFloppyDialog = { + { +QT_MOC_LITERAL(0, 0, 15), // "NewFloppyDialog" +QT_MOC_LITERAL(1, 16, 12), // "fileProgress" +QT_MOC_LITERAL(2, 29, 0), // "" +QT_MOC_LITERAL(3, 30, 1), // "i" +QT_MOC_LITERAL(4, 32, 8) // "onCreate" + + }, + "NewFloppyDialog\0fileProgress\0\0i\0" + "onCreate" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_NewFloppyDialog[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 24, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 0, 27, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, 3, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void NewFloppyDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->fileProgress((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->onCreate(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (NewFloppyDialog::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&NewFloppyDialog::fileProgress)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject NewFloppyDialog::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_NewFloppyDialog.data, + qt_meta_data_NewFloppyDialog, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *NewFloppyDialog::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *NewFloppyDialog::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_NewFloppyDialog.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int NewFloppyDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = -1; + _id -= 2; + } + return _id; +} + +// SIGNAL 0 +void NewFloppyDialog::fileProgress(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp.d new file mode 100644 index 000000000..eca7eb0de --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_newfloppydialog.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp new file mode 100644 index 000000000..a7f924aba --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp @@ -0,0 +1,95 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_opengloptions.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_opengloptions.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_opengloptions.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_OpenGLOptions_t { + QByteArrayData data[1]; + char stringdata0[14]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_OpenGLOptions_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_OpenGLOptions_t qt_meta_stringdata_OpenGLOptions = { + { +QT_MOC_LITERAL(0, 0, 13) // "OpenGLOptions" + + }, + "OpenGLOptions" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_OpenGLOptions[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void OpenGLOptions::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject OpenGLOptions::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_OpenGLOptions.data, + qt_meta_data_OpenGLOptions, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *OpenGLOptions::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *OpenGLOptions::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_OpenGLOptions.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int OpenGLOptions::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp.d new file mode 100644 index 000000000..c2faa4d5f --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp.d @@ -0,0 +1,526 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptions.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/GL/gl.h \ + C:/msys64/mingw64/include/QtCore/QList \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QScopedPointer \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qt_windows.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QOpenGLContext \ + C:/msys64/mingw64/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw64/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw64/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw64/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw64/include/QtGui/qopengl.h \ + C:/msys64/mingw64/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw64/include/QtGui/qopenglext.h \ + C:/msys64/mingw64/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw64/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw64/include/QtGui/qquaternion.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qvector3d.h \ + C:/msys64/mingw64/include/QtGui/qvector4d.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp new file mode 100644 index 000000000..d3a9b185f --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp @@ -0,0 +1,161 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_opengloptionsdialog.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_opengloptionsdialog.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_opengloptionsdialog.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_OpenGLOptionsDialog_t { + QByteArrayData data[7]; + char stringdata0[87]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_OpenGLOptionsDialog_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_OpenGLOptionsDialog_t qt_meta_stringdata_OpenGLOptionsDialog = { + { +QT_MOC_LITERAL(0, 0, 19), // "OpenGLOptionsDialog" +QT_MOC_LITERAL(1, 20, 14), // "optionsChanged" +QT_MOC_LITERAL(2, 35, 0), // "" +QT_MOC_LITERAL(3, 36, 14), // "OpenGLOptions*" +QT_MOC_LITERAL(4, 51, 7), // "options" +QT_MOC_LITERAL(5, 59, 6), // "accept" +QT_MOC_LITERAL(6, 66, 20) // "on_addShader_clicked" + + }, + "OpenGLOptionsDialog\0optionsChanged\0\0" + "OpenGLOptions*\0options\0accept\0" + "on_addShader_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_OpenGLOptionsDialog[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 3, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 29, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 5, 0, 32, 2, 0x0a /* Public */, + 6, 0, 33, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, 0x80000000 | 3, 4, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +void OpenGLOptionsDialog::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->optionsChanged((*reinterpret_cast< OpenGLOptions*(*)>(_a[1]))); break; + case 1: _t->accept(); break; + case 2: _t->on_addShader_clicked(); break; + default: ; + } + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + switch (_id) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 0: + switch (*reinterpret_cast(_a[1])) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 0: + *reinterpret_cast(_a[0]) = qRegisterMetaType< OpenGLOptions* >(); break; + } + break; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (OpenGLOptionsDialog::*)(OpenGLOptions * ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&OpenGLOptionsDialog::optionsChanged)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject OpenGLOptionsDialog::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_OpenGLOptionsDialog.data, + qt_meta_data_OpenGLOptionsDialog, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *OpenGLOptionsDialog::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *OpenGLOptionsDialog::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_OpenGLOptionsDialog.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int OpenGLOptionsDialog::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } + return _id; +} + +// SIGNAL 0 +void OpenGLOptionsDialog::optionsChanged(OpenGLOptions * _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp.d new file mode 100644 index 000000000..dea1ef211 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp.d @@ -0,0 +1,554 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_opengloptionsdialog.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/GL/gl.h \ + C:/msys64/mingw64/include/QtCore/QList \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QScopedPointer \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qt_windows.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QOpenGLContext \ + C:/msys64/mingw64/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw64/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw64/include/QtGui/qopengl.h \ + C:/msys64/mingw64/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw64/include/QtGui/qopenglext.h \ + C:/msys64/mingw64/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw64/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qquaternion.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qvector3d.h \ + C:/msys64/mingw64/include/QtGui/qvector4d.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp new file mode 100644 index 000000000..4708eef1e --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp @@ -0,0 +1,191 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_openglrenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_openglrenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_openglrenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_OpenGLRenderer_t { + QByteArrayData data[14]; + char stringdata0[116]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_OpenGLRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_OpenGLRenderer_t qt_meta_stringdata_OpenGLRenderer = { + { +QT_MOC_LITERAL(0, 0, 14), // "OpenGLRenderer" +QT_MOC_LITERAL(1, 15, 11), // "initialized" +QT_MOC_LITERAL(2, 27, 0), // "" +QT_MOC_LITERAL(3, 28, 17), // "errorInitializing" +QT_MOC_LITERAL(4, 46, 6), // "onBlit" +QT_MOC_LITERAL(5, 53, 7), // "buf_idx" +QT_MOC_LITERAL(6, 61, 1), // "x" +QT_MOC_LITERAL(7, 63, 1), // "y" +QT_MOC_LITERAL(8, 65, 1), // "w" +QT_MOC_LITERAL(9, 67, 1), // "h" +QT_MOC_LITERAL(10, 69, 6), // "render" +QT_MOC_LITERAL(11, 76, 13), // "updateOptions" +QT_MOC_LITERAL(12, 90, 14), // "OpenGLOptions*" +QT_MOC_LITERAL(13, 105, 10) // "newOptions" + + }, + "OpenGLRenderer\0initialized\0\0" + "errorInitializing\0onBlit\0buf_idx\0x\0y\0" + "w\0h\0render\0updateOptions\0OpenGLOptions*\0" + "newOptions" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_OpenGLRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 2, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 39, 2, 0x06 /* Public */, + 3, 0, 40, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 5, 41, 2, 0x0a /* Public */, + 10, 0, 52, 2, 0x08 /* Private */, + 11, 1, 53, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 5, 6, 7, 8, 9, + QMetaType::Void, + QMetaType::Void, 0x80000000 | 12, 13, + + 0 // eod +}; + +void OpenGLRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->initialized(); break; + case 1: _t->errorInitializing(); break; + case 2: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + case 3: _t->render(); break; + case 4: _t->updateOptions((*reinterpret_cast< OpenGLOptions*(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + switch (_id) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 4: + switch (*reinterpret_cast(_a[1])) { + default: *reinterpret_cast(_a[0]) = -1; break; + case 0: + *reinterpret_cast(_a[0]) = qRegisterMetaType< OpenGLOptions* >(); break; + } + break; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (OpenGLRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&OpenGLRenderer::initialized)) { + *result = 0; + return; + } + } + { + using _t = void (OpenGLRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&OpenGLRenderer::errorInitializing)) { + *result = 1; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject OpenGLRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_OpenGLRenderer.data, + qt_meta_data_OpenGLRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *OpenGLRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *OpenGLRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_OpenGLRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QOpenGLExtraFunctions")) + return static_cast< QOpenGLExtraFunctions*>(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QWindow::qt_metacast(_clname); +} + +int OpenGLRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } + return _id; +} + +// SIGNAL 0 +void OpenGLRenderer::initialized() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void OpenGLRenderer::errorInitializing() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp.d new file mode 100644 index 000000000..812deef10 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp.d @@ -0,0 +1,579 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_openglrenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/GL/gl.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QList \ + C:/msys64/mingw64/include/QtCore/QMargins \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/QScopedPointer \ + C:/msys64/mingw64/include/QtCore/QTimer \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbasictimer.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qt_windows.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtimer.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/QOpenGLContext \ + C:/msys64/mingw64/include/QtGui/QOpenGLExtraFunctions \ + C:/msys64/mingw64/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw64/include/QtGui/QResizeEvent \ + C:/msys64/mingw64/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw64/include/QtGui/QWindow \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw64/include/QtGui/qopengl.h \ + C:/msys64/mingw64/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw64/include/QtGui/qopenglext.h \ + C:/msys64/mingw64/include/QtGui/qopenglextrafunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglfunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw64/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qquaternion.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qsurface.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qvector3d.h \ + C:/msys64/mingw64/include/QtGui/qvector4d.h \ + C:/msys64/mingw64/include/QtGui/qwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtOpenGLExtensions/QOpenGLExtensions \ + C:/msys64/mingw64/include/QtOpenGLExtensions/qopenglextensions.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp new file mode 100644 index 000000000..26f4eabaf --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp @@ -0,0 +1,138 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_progsettings.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_progsettings.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_progsettings.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_ProgSettings_t { + QByteArrayData data[8]; + char stringdata0[138]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_ProgSettings_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_ProgSettings_t qt_meta_stringdata_ProgSettings = { + { +QT_MOC_LITERAL(0, 0, 12), // "ProgSettings" +QT_MOC_LITERAL(1, 13, 6), // "accept" +QT_MOC_LITERAL(2, 20, 0), // "" +QT_MOC_LITERAL(3, 21, 22), // "on_pushButton_released" +QT_MOC_LITERAL(4, 44, 30), // "on_pushButtonLanguage_released" +QT_MOC_LITERAL(5, 75, 32), // "on_horizontalSlider_valueChanged" +QT_MOC_LITERAL(6, 108, 5), // "value" +QT_MOC_LITERAL(7, 114, 23) // "on_pushButton_2_clicked" + + }, + "ProgSettings\0accept\0\0on_pushButton_released\0" + "on_pushButtonLanguage_released\0" + "on_horizontalSlider_valueChanged\0value\0" + "on_pushButton_2_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_ProgSettings[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 0, 39, 2, 0x09 /* Protected */, + 3, 0, 40, 2, 0x08 /* Private */, + 4, 0, 41, 2, 0x08 /* Private */, + 5, 1, 42, 2, 0x08 /* Private */, + 7, 0, 45, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + + 0 // eod +}; + +void ProgSettings::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->accept(); break; + case 1: _t->on_pushButton_released(); break; + case 2: _t->on_pushButtonLanguage_released(); break; + case 3: _t->on_horizontalSlider_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_pushButton_2_clicked(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject ProgSettings::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_ProgSettings.data, + qt_meta_data_ProgSettings, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *ProgSettings::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *ProgSettings::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_ProgSettings.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int ProgSettings::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + *reinterpret_cast(_a[0]) = -1; + _id -= 5; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp.d new file mode 100644 index 000000000..23d6182ed --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp.d @@ -0,0 +1,292 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_progsettings.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QTranslator \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtranslator.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp new file mode 100644 index 000000000..217d47536 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp @@ -0,0 +1,192 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_rendererstack.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_rendererstack.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_rendererstack.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_RendererStack_t { + QByteArrayData data[13]; + char stringdata0[101]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_RendererStack_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_RendererStack_t qt_meta_stringdata_RendererStack = { + { +QT_MOC_LITERAL(0, 0, 13), // "RendererStack" +QT_MOC_LITERAL(1, 14, 14), // "blitToRenderer" +QT_MOC_LITERAL(2, 29, 0), // "" +QT_MOC_LITERAL(3, 30, 7), // "buf_idx" +QT_MOC_LITERAL(4, 38, 1), // "x" +QT_MOC_LITERAL(5, 40, 1), // "y" +QT_MOC_LITERAL(6, 42, 1), // "w" +QT_MOC_LITERAL(7, 44, 1), // "h" +QT_MOC_LITERAL(8, 46, 4), // "blit" +QT_MOC_LITERAL(9, 51, 15), // "rendererChanged" +QT_MOC_LITERAL(10, 67, 10), // "blitCommon" +QT_MOC_LITERAL(11, 78, 12), // "blitRenderer" +QT_MOC_LITERAL(12, 91, 9) // "blitDummy" + + }, + "RendererStack\0blitToRenderer\0\0buf_idx\0" + "x\0y\0w\0h\0blit\0rendererChanged\0blitCommon\0" + "blitRenderer\0blitDummy" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_RendererStack[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 6, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 3, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 5, 44, 2, 0x06 /* Public */, + 8, 4, 55, 2, 0x06 /* Public */, + 9, 0, 64, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 10, 4, 65, 2, 0x0a /* Public */, + 11, 4, 74, 2, 0x0a /* Public */, + 12, 4, 83, 2, 0x0a /* Public */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 3, 4, 5, 6, 7, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + QMetaType::Void, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 4, 5, 6, 7, + + 0 // eod +}; + +void RendererStack::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->blitToRenderer((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + case 1: _t->blit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + case 2: _t->rendererChanged(); break; + case 3: _t->blitCommon((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + case 4: _t->blitRenderer((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + case 5: _t->blitDummy((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (RendererStack::*)(int , int , int , int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RendererStack::blitToRenderer)) { + *result = 0; + return; + } + } + { + using _t = void (RendererStack::*)(int , int , int , int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RendererStack::blit)) { + *result = 1; + return; + } + } + { + using _t = void (RendererStack::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RendererStack::rendererChanged)) { + *result = 2; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject RendererStack::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_RendererStack.data, + qt_meta_data_RendererStack, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *RendererStack::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *RendererStack::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_RendererStack.stringdata0)) + return static_cast(this); + return QStackedWidget::qt_metacast(_clname); +} + +int RendererStack::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QStackedWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 6) + qt_static_metacall(this, _c, _id, _a); + _id -= 6; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 6) + *reinterpret_cast(_a[0]) = -1; + _id -= 6; + } + return _id; +} + +// SIGNAL 0 +void RendererStack::blitToRenderer(int _t1, int _t2, int _t3, int _t4, int _t5) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))), const_cast(reinterpret_cast(std::addressof(_t4))), const_cast(reinterpret_cast(std::addressof(_t5))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} + +// SIGNAL 1 +void RendererStack::blit(int _t1, int _t2, int _t3, int _t4) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))), const_cast(reinterpret_cast(std::addressof(_t2))), const_cast(reinterpret_cast(std::addressof(_t3))), const_cast(reinterpret_cast(std::addressof(_t4))) }; + QMetaObject::activate(this, &staticMetaObject, 1, _a); +} + +// SIGNAL 2 +void RendererStack::rendererChanged() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp.d new file mode 100644 index 000000000..8889ff04a --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp.d @@ -0,0 +1,310 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_rendererstack.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QCursor \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/QKeyEvent \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QStackedWidget \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qframe.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qstackedwidget.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp new file mode 100644 index 000000000..78db00f11 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp @@ -0,0 +1,119 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settings.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settings.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settings.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_Settings_t { + QByteArrayData data[3]; + char stringdata0[17]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_Settings_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_Settings_t qt_meta_stringdata_Settings = { + { +QT_MOC_LITERAL(0, 0, 8), // "Settings" +QT_MOC_LITERAL(1, 9, 6), // "accept" +QT_MOC_LITERAL(2, 16, 0) // "" + + }, + "Settings\0accept\0" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_Settings[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 0, 19, 2, 0x09 /* Protected */, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void Settings::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->accept(); break; + default: ; + } + } + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject Settings::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_Settings.data, + qt_meta_data_Settings, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *Settings::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *Settings::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_Settings.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int Settings::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp.d new file mode 100644 index 000000000..7b6f7b2a8 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settings.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp new file mode 100644 index 000000000..4867e90a5 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp @@ -0,0 +1,161 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsdisplay.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsdisplay.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsdisplay.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsDisplay_t { + QByteArrayData data[14]; + char stringdata0[347]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsDisplay_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsDisplay_t qt_meta_stringdata_SettingsDisplay = { + { +QT_MOC_LITERAL(0, 0, 15), // "SettingsDisplay" +QT_MOC_LITERAL(1, 16, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 40, 0), // "" +QT_MOC_LITERAL(3, 41, 9), // "machineId" +QT_MOC_LITERAL(4, 51, 39), // "on_pushButtonConfigureSeconda..." +QT_MOC_LITERAL(5, 91, 45), // "on_comboBoxVideoSecondary_cur..." +QT_MOC_LITERAL(6, 137, 5), // "index" +QT_MOC_LITERAL(7, 143, 30), // "on_checkBoxVoodoo_stateChanged" +QT_MOC_LITERAL(8, 174, 5), // "state" +QT_MOC_LITERAL(9, 180, 27), // "on_checkBoxXga_stateChanged" +QT_MOC_LITERAL(10, 208, 36), // "on_comboBoxVideo_currentIndex..." +QT_MOC_LITERAL(11, 245, 36), // "on_pushButtonConfigureVoodoo_..." +QT_MOC_LITERAL(12, 282, 33), // "on_pushButtonConfigureXga_cli..." +QT_MOC_LITERAL(13, 316, 30) // "on_pushButtonConfigure_clicked" + + }, + "SettingsDisplay\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConfigureSecondary_clicked\0" + "on_comboBoxVideoSecondary_currentIndexChanged\0" + "index\0on_checkBoxVoodoo_stateChanged\0" + "state\0on_checkBoxXga_stateChanged\0" + "on_comboBoxVideo_currentIndexChanged\0" + "on_pushButtonConfigureVoodoo_clicked\0" + "on_pushButtonConfigureXga_clicked\0" + "on_pushButtonConfigure_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsDisplay[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 9, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 59, 2, 0x0a /* Public */, + 4, 0, 62, 2, 0x08 /* Private */, + 5, 1, 63, 2, 0x08 /* Private */, + 7, 1, 66, 2, 0x08 /* Private */, + 9, 1, 69, 2, 0x08 /* Private */, + 10, 1, 72, 2, 0x08 /* Private */, + 11, 0, 75, 2, 0x08 /* Private */, + 12, 0, 76, 2, 0x08 /* Private */, + 13, 0, 77, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 8, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +void SettingsDisplay::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureSecondary_clicked(); break; + case 2: _t->on_comboBoxVideoSecondary_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_checkBoxVoodoo_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_checkBoxXga_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxVideo_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_pushButtonConfigureVoodoo_clicked(); break; + case 7: _t->on_pushButtonConfigureXga_clicked(); break; + case 8: _t->on_pushButtonConfigure_clicked(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsDisplay::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsDisplay.data, + qt_meta_data_SettingsDisplay, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsDisplay::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsDisplay::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsDisplay.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsDisplay::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 9) + qt_static_metacall(this, _c, _id, _a); + _id -= 9; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 9) + *reinterpret_cast(_a[0]) = -1; + _id -= 9; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp.d new file mode 100644 index 000000000..cd048fe98 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsdisplay.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp new file mode 100644 index 000000000..e57f7360c --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp @@ -0,0 +1,167 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsfloppycdrom.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsfloppycdrom.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsfloppycdrom.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsFloppyCDROM_t { + QByteArrayData data[16]; + char stringdata0[338]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsFloppyCDROM_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsFloppyCDROM_t qt_meta_stringdata_SettingsFloppyCDROM = { + { +QT_MOC_LITERAL(0, 0, 19), // "SettingsFloppyCDROM" +QT_MOC_LITERAL(1, 20, 30), // "on_comboBoxCDROMType_activated" +QT_MOC_LITERAL(2, 51, 0), // "" +QT_MOC_LITERAL(3, 52, 5), // "index" +QT_MOC_LITERAL(4, 58, 28), // "on_comboBoxChannel_activated" +QT_MOC_LITERAL(5, 87, 24), // "on_comboBoxBus_activated" +QT_MOC_LITERAL(6, 112, 26), // "on_comboBoxSpeed_activated" +QT_MOC_LITERAL(7, 139, 34), // "on_comboBoxBus_currentIndexCh..." +QT_MOC_LITERAL(8, 174, 31), // "on_comboBoxFloppyType_activated" +QT_MOC_LITERAL(9, 206, 32), // "on_checkBoxCheckBPB_stateChanged" +QT_MOC_LITERAL(10, 239, 4), // "arg1" +QT_MOC_LITERAL(11, 244, 36), // "on_checkBoxTurboTimings_state..." +QT_MOC_LITERAL(12, 281, 18), // "onFloppyRowChanged" +QT_MOC_LITERAL(13, 300, 11), // "QModelIndex" +QT_MOC_LITERAL(14, 312, 7), // "current" +QT_MOC_LITERAL(15, 320, 17) // "onCDROMRowChanged" + + }, + "SettingsFloppyCDROM\0on_comboBoxCDROMType_activated\0" + "\0index\0on_comboBoxChannel_activated\0" + "on_comboBoxBus_activated\0" + "on_comboBoxSpeed_activated\0" + "on_comboBoxBus_currentIndexChanged\0" + "on_comboBoxFloppyType_activated\0" + "on_checkBoxCheckBPB_stateChanged\0arg1\0" + "on_checkBoxTurboTimings_stateChanged\0" + "onFloppyRowChanged\0QModelIndex\0current\0" + "onCDROMRowChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsFloppyCDROM[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 10, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 64, 2, 0x08 /* Private */, + 4, 1, 67, 2, 0x08 /* Private */, + 5, 1, 70, 2, 0x08 /* Private */, + 6, 1, 73, 2, 0x08 /* Private */, + 7, 1, 76, 2, 0x08 /* Private */, + 8, 1, 79, 2, 0x08 /* Private */, + 9, 1, 82, 2, 0x08 /* Private */, + 11, 1, 85, 2, 0x08 /* Private */, + 12, 1, 88, 2, 0x08 /* Private */, + 15, 1, 91, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, 0x80000000 | 13, 14, + QMetaType::Void, 0x80000000 | 13, 14, + + 0 // eod +}; + +void SettingsFloppyCDROM::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_comboBoxCDROMType_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_comboBoxChannel_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 2: _t->on_comboBoxBus_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxSpeed_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_comboBoxBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxFloppyType_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_checkBoxCheckBPB_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_checkBoxTurboTimings_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->onFloppyRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + case 9: _t->onCDROMRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsFloppyCDROM::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsFloppyCDROM.data, + qt_meta_data_SettingsFloppyCDROM, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsFloppyCDROM::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsFloppyCDROM::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsFloppyCDROM.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsFloppyCDROM::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 10) + qt_static_metacall(this, _c, _id, _a); + _id -= 10; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 10) + *reinterpret_cast(_a[0]) = -1; + _id -= 10; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp.d new file mode 100644 index 000000000..1bc3424dd --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp new file mode 100644 index 000000000..350d6be17 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp @@ -0,0 +1,152 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsharddisks.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsharddisks.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsharddisks.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsHarddisks_t { + QByteArrayData data[12]; + char stringdata0[257]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsHarddisks_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsHarddisks_t qt_meta_stringdata_SettingsHarddisks = { + { +QT_MOC_LITERAL(0, 0, 17), // "SettingsHarddisks" +QT_MOC_LITERAL(1, 18, 38), // "on_comboBoxChannel_currentInd..." +QT_MOC_LITERAL(2, 57, 0), // "" +QT_MOC_LITERAL(3, 58, 5), // "index" +QT_MOC_LITERAL(4, 64, 36), // "on_comboBoxSpeed_currentIndex..." +QT_MOC_LITERAL(5, 101, 27), // "on_pushButtonRemove_clicked" +QT_MOC_LITERAL(6, 129, 29), // "on_pushButtonExisting_clicked" +QT_MOC_LITERAL(7, 159, 24), // "on_pushButtonNew_clicked" +QT_MOC_LITERAL(8, 184, 34), // "on_comboBoxBus_currentIndexCh..." +QT_MOC_LITERAL(9, 219, 17), // "onTableRowChanged" +QT_MOC_LITERAL(10, 237, 11), // "QModelIndex" +QT_MOC_LITERAL(11, 249, 7) // "current" + + }, + "SettingsHarddisks\0" + "on_comboBoxChannel_currentIndexChanged\0" + "\0index\0on_comboBoxSpeed_currentIndexChanged\0" + "on_pushButtonRemove_clicked\0" + "on_pushButtonExisting_clicked\0" + "on_pushButtonNew_clicked\0" + "on_comboBoxBus_currentIndexChanged\0" + "onTableRowChanged\0QModelIndex\0current" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsHarddisks[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 49, 2, 0x08 /* Private */, + 4, 1, 52, 2, 0x08 /* Private */, + 5, 0, 55, 2, 0x08 /* Private */, + 6, 0, 56, 2, 0x08 /* Private */, + 7, 0, 57, 2, 0x08 /* Private */, + 8, 1, 58, 2, 0x08 /* Private */, + 9, 1, 61, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, 0x80000000 | 10, 11, + + 0 // eod +}; + +void SettingsHarddisks::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_comboBoxChannel_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_comboBoxSpeed_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 2: _t->on_pushButtonRemove_clicked(); break; + case 3: _t->on_pushButtonExisting_clicked(); break; + case 4: _t->on_pushButtonNew_clicked(); break; + case 5: _t->on_comboBoxBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->onTableRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsHarddisks::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsHarddisks.data, + qt_meta_data_SettingsHarddisks, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsHarddisks::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsHarddisks::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsHarddisks.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsHarddisks::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp.d new file mode 100644 index 000000000..6030d8455 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsharddisks.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp new file mode 100644 index 000000000..358e2acdb --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp @@ -0,0 +1,155 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsinput.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsinput.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsinput.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsInput_t { + QByteArrayData data[12]; + char stringdata0[292]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsInput_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsInput_t qt_meta_stringdata_SettingsInput = { + { +QT_MOC_LITERAL(0, 0, 13), // "SettingsInput" +QT_MOC_LITERAL(1, 14, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 38, 0), // "" +QT_MOC_LITERAL(3, 39, 9), // "machineId" +QT_MOC_LITERAL(4, 49, 35), // "on_pushButtonConfigureMouse_c..." +QT_MOC_LITERAL(5, 85, 39), // "on_comboBoxJoystick_currentIn..." +QT_MOC_LITERAL(6, 125, 5), // "index" +QT_MOC_LITERAL(7, 131, 36), // "on_comboBoxMouse_currentIndex..." +QT_MOC_LITERAL(8, 168, 30), // "on_pushButtonJoystick1_clicked" +QT_MOC_LITERAL(9, 199, 30), // "on_pushButtonJoystick2_clicked" +QT_MOC_LITERAL(10, 230, 30), // "on_pushButtonJoystick3_clicked" +QT_MOC_LITERAL(11, 261, 30) // "on_pushButtonJoystick4_clicked" + + }, + "SettingsInput\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConfigureMouse_clicked\0" + "on_comboBoxJoystick_currentIndexChanged\0" + "index\0on_comboBoxMouse_currentIndexChanged\0" + "on_pushButtonJoystick1_clicked\0" + "on_pushButtonJoystick2_clicked\0" + "on_pushButtonJoystick3_clicked\0" + "on_pushButtonJoystick4_clicked" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsInput[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 8, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 54, 2, 0x0a /* Public */, + 4, 0, 57, 2, 0x08 /* Private */, + 5, 1, 58, 2, 0x08 /* Private */, + 7, 1, 61, 2, 0x08 /* Private */, + 8, 0, 64, 2, 0x08 /* Private */, + 9, 0, 65, 2, 0x08 /* Private */, + 10, 0, 66, 2, 0x08 /* Private */, + 11, 0, 67, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + + 0 // eod +}; + +void SettingsInput::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureMouse_clicked(); break; + case 2: _t->on_comboBoxJoystick_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxMouse_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_pushButtonJoystick1_clicked(); break; + case 5: _t->on_pushButtonJoystick2_clicked(); break; + case 6: _t->on_pushButtonJoystick3_clicked(); break; + case 7: _t->on_pushButtonJoystick4_clicked(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsInput::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsInput.data, + qt_meta_data_SettingsInput, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsInput::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsInput::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsInput.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsInput::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 8) + qt_static_metacall(this, _c, _id, _a); + _id -= 8; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 8) + *reinterpret_cast(_a[0]) = -1; + _id -= 8; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp.d new file mode 100644 index 000000000..3da671557 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsinput.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp new file mode 100644 index 000000000..664894fc2 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp @@ -0,0 +1,170 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsmachine.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsmachine.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsmachine.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsMachine_t { + QByteArrayData data[11]; + char stringdata0[275]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsMachine_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsMachine_t qt_meta_stringdata_SettingsMachine = { + { +QT_MOC_LITERAL(0, 0, 15), // "SettingsMachine" +QT_MOC_LITERAL(1, 16, 21), // "currentMachineChanged" +QT_MOC_LITERAL(2, 38, 0), // "" +QT_MOC_LITERAL(3, 39, 9), // "machineId" +QT_MOC_LITERAL(4, 49, 30), // "on_pushButtonConfigure_clicked" +QT_MOC_LITERAL(5, 80, 34), // "on_comboBoxFPU_currentIndexCh..." +QT_MOC_LITERAL(6, 115, 5), // "index" +QT_MOC_LITERAL(7, 121, 36), // "on_comboBoxSpeed_currentIndex..." +QT_MOC_LITERAL(8, 158, 34), // "on_comboBoxCPU_currentIndexCh..." +QT_MOC_LITERAL(9, 193, 38), // "on_comboBoxMachine_currentInd..." +QT_MOC_LITERAL(10, 232, 42) // "on_comboBoxMachineType_curren..." + + }, + "SettingsMachine\0currentMachineChanged\0" + "\0machineId\0on_pushButtonConfigure_clicked\0" + "on_comboBoxFPU_currentIndexChanged\0" + "index\0on_comboBoxSpeed_currentIndexChanged\0" + "on_comboBoxCPU_currentIndexChanged\0" + "on_comboBoxMachine_currentIndexChanged\0" + "on_comboBoxMachineType_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsMachine[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 1, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 1, 49, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 0, 52, 2, 0x08 /* Private */, + 5, 1, 53, 2, 0x08 /* Private */, + 7, 1, 56, 2, 0x08 /* Private */, + 8, 1, 59, 2, 0x08 /* Private */, + 9, 1, 62, 2, 0x08 /* Private */, + 10, 1, 65, 2, 0x08 /* Private */, + + // signals: parameters + QMetaType::Void, QMetaType::Int, 3, + + // slots: parameters + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, QMetaType::Int, 6, + + 0 // eod +}; + +void SettingsMachine::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->currentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigure_clicked(); break; + case 2: _t->on_comboBoxFPU_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxSpeed_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_comboBoxCPU_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxMachine_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxMachineType_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (SettingsMachine::*)(int ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&SettingsMachine::currentMachineChanged)) { + *result = 0; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsMachine::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsMachine.data, + qt_meta_data_SettingsMachine, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsMachine::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsMachine::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsMachine.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsMachine::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} + +// SIGNAL 0 +void SettingsMachine::currentMachineChanged(int _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 0, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp.d new file mode 100644 index 000000000..fd213ff87 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsmachine.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp new file mode 100644 index 000000000..6cad4e19d --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp @@ -0,0 +1,152 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsnetwork.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsnetwork.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsnetwork.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsNetwork_t { + QByteArrayData data[13]; + char stringdata0[225]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsNetwork_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsNetwork_t qt_meta_stringdata_SettingsNetwork = { + { +QT_MOC_LITERAL(0, 0, 15), // "SettingsNetwork" +QT_MOC_LITERAL(1, 16, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 40, 0), // "" +QT_MOC_LITERAL(3, 41, 9), // "machineId" +QT_MOC_LITERAL(4, 51, 26), // "on_pushButtonConf1_clicked" +QT_MOC_LITERAL(5, 78, 26), // "on_pushButtonConf2_clicked" +QT_MOC_LITERAL(6, 105, 26), // "on_pushButtonConf3_clicked" +QT_MOC_LITERAL(7, 132, 26), // "on_pushButtonConf4_clicked" +QT_MOC_LITERAL(8, 159, 20), // "on_comboIndexChanged" +QT_MOC_LITERAL(9, 180, 5), // "index" +QT_MOC_LITERAL(10, 186, 14), // "enableElements" +QT_MOC_LITERAL(11, 201, 20), // "Ui::SettingsNetwork*" +QT_MOC_LITERAL(12, 222, 2) // "ui" + + }, + "SettingsNetwork\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConf1_clicked\0" + "on_pushButtonConf2_clicked\0" + "on_pushButtonConf3_clicked\0" + "on_pushButtonConf4_clicked\0" + "on_comboIndexChanged\0index\0enableElements\0" + "Ui::SettingsNetwork*\0ui" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsNetwork[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 49, 2, 0x0a /* Public */, + 4, 0, 52, 2, 0x08 /* Private */, + 5, 0, 53, 2, 0x08 /* Private */, + 6, 0, 54, 2, 0x08 /* Private */, + 7, 0, 55, 2, 0x08 /* Private */, + 8, 1, 56, 2, 0x08 /* Private */, + 10, 1, 59, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, 0x80000000 | 11, 12, + + 0 // eod +}; + +void SettingsNetwork::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConf1_clicked(); break; + case 2: _t->on_pushButtonConf2_clicked(); break; + case 3: _t->on_pushButtonConf3_clicked(); break; + case 4: _t->on_pushButtonConf4_clicked(); break; + case 5: _t->on_comboIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->enableElements((*reinterpret_cast< Ui::SettingsNetwork*(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsNetwork::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsNetwork.data, + qt_meta_data_SettingsNetwork, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsNetwork::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsNetwork::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsNetwork.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsNetwork::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp.d new file mode 100644 index 000000000..0f46b831c --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsnetwork.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp new file mode 100644 index 000000000..cb0995cff --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp @@ -0,0 +1,171 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsotherperipherals.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsotherperipherals.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsotherperipherals.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsOtherPeripherals_t { + QByteArrayData data[15]; + char stringdata0[427]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsOtherPeripherals_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsOtherPeripherals_t qt_meta_stringdata_SettingsOtherPeripherals = { + { +QT_MOC_LITERAL(0, 0, 24), // "SettingsOtherPeripherals" +QT_MOC_LITERAL(1, 25, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 49, 0), // "" +QT_MOC_LITERAL(3, 50, 9), // "machineId" +QT_MOC_LITERAL(4, 60, 35), // "on_pushButtonConfigureCard4_c..." +QT_MOC_LITERAL(5, 96, 36), // "on_comboBoxCard4_currentIndex..." +QT_MOC_LITERAL(6, 133, 5), // "index" +QT_MOC_LITERAL(7, 139, 35), // "on_pushButtonConfigureCard3_c..." +QT_MOC_LITERAL(8, 175, 36), // "on_comboBoxCard3_currentIndex..." +QT_MOC_LITERAL(9, 212, 35), // "on_pushButtonConfigureCard2_c..." +QT_MOC_LITERAL(10, 248, 36), // "on_comboBoxCard2_currentIndex..." +QT_MOC_LITERAL(11, 285, 35), // "on_pushButtonConfigureCard1_c..." +QT_MOC_LITERAL(12, 321, 36), // "on_comboBoxCard1_currentIndex..." +QT_MOC_LITERAL(13, 358, 33), // "on_pushButtonConfigureRTC_cli..." +QT_MOC_LITERAL(14, 392, 34) // "on_comboBoxRTC_currentIndexCh..." + + }, + "SettingsOtherPeripherals\0" + "onCurrentMachineChanged\0\0machineId\0" + "on_pushButtonConfigureCard4_clicked\0" + "on_comboBoxCard4_currentIndexChanged\0" + "index\0on_pushButtonConfigureCard3_clicked\0" + "on_comboBoxCard3_currentIndexChanged\0" + "on_pushButtonConfigureCard2_clicked\0" + "on_comboBoxCard2_currentIndexChanged\0" + "on_pushButtonConfigureCard1_clicked\0" + "on_comboBoxCard1_currentIndexChanged\0" + "on_pushButtonConfigureRTC_clicked\0" + "on_comboBoxRTC_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsOtherPeripherals[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 11, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 69, 2, 0x0a /* Public */, + 4, 0, 72, 2, 0x08 /* Private */, + 5, 1, 73, 2, 0x08 /* Private */, + 7, 0, 76, 2, 0x08 /* Private */, + 8, 1, 77, 2, 0x08 /* Private */, + 9, 0, 80, 2, 0x08 /* Private */, + 10, 1, 81, 2, 0x08 /* Private */, + 11, 0, 84, 2, 0x08 /* Private */, + 12, 1, 85, 2, 0x08 /* Private */, + 13, 0, 88, 2, 0x08 /* Private */, + 14, 1, 89, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + + 0 // eod +}; + +void SettingsOtherPeripherals::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureCard4_clicked(); break; + case 2: _t->on_comboBoxCard4_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_pushButtonConfigureCard3_clicked(); break; + case 4: _t->on_comboBoxCard3_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_pushButtonConfigureCard2_clicked(); break; + case 6: _t->on_comboBoxCard2_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_pushButtonConfigureCard1_clicked(); break; + case 8: _t->on_comboBoxCard1_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_pushButtonConfigureRTC_clicked(); break; + case 10: _t->on_comboBoxRTC_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsOtherPeripherals::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsOtherPeripherals.data, + qt_meta_data_SettingsOtherPeripherals, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsOtherPeripherals::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsOtherPeripherals::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsOtherPeripherals.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsOtherPeripherals::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 11) + qt_static_metacall(this, _c, _id, _a); + _id -= 11; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 11) + *reinterpret_cast(_a[0]) = -1; + _id -= 11; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp.d new file mode 100644 index 000000000..e6c981f45 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherperipherals.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp new file mode 100644 index 000000000..b68759700 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp @@ -0,0 +1,168 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsotherremovable.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsotherremovable.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsotherremovable.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsOtherRemovable_t { + QByteArrayData data[16]; + char stringdata0[338]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsOtherRemovable_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsOtherRemovable_t qt_meta_stringdata_SettingsOtherRemovable = { + { +QT_MOC_LITERAL(0, 0, 22), // "SettingsOtherRemovable" +QT_MOC_LITERAL(1, 23, 30), // "on_checkBoxZIP250_stateChanged" +QT_MOC_LITERAL(2, 54, 0), // "" +QT_MOC_LITERAL(3, 55, 4), // "arg1" +QT_MOC_LITERAL(4, 60, 31), // "on_comboBoxZIPChannel_activated" +QT_MOC_LITERAL(5, 92, 5), // "index" +QT_MOC_LITERAL(6, 98, 27), // "on_comboBoxZIPBus_activated" +QT_MOC_LITERAL(7, 126, 37), // "on_comboBoxZIPBus_currentInde..." +QT_MOC_LITERAL(8, 164, 27), // "on_comboBoxMOType_activated" +QT_MOC_LITERAL(9, 192, 30), // "on_comboBoxMOChannel_activated" +QT_MOC_LITERAL(10, 223, 26), // "on_comboBoxMOBus_activated" +QT_MOC_LITERAL(11, 250, 36), // "on_comboBoxMOBus_currentIndex..." +QT_MOC_LITERAL(12, 287, 14), // "onMORowChanged" +QT_MOC_LITERAL(13, 302, 11), // "QModelIndex" +QT_MOC_LITERAL(14, 314, 7), // "current" +QT_MOC_LITERAL(15, 322, 15) // "onZIPRowChanged" + + }, + "SettingsOtherRemovable\0" + "on_checkBoxZIP250_stateChanged\0\0arg1\0" + "on_comboBoxZIPChannel_activated\0index\0" + "on_comboBoxZIPBus_activated\0" + "on_comboBoxZIPBus_currentIndexChanged\0" + "on_comboBoxMOType_activated\0" + "on_comboBoxMOChannel_activated\0" + "on_comboBoxMOBus_activated\0" + "on_comboBoxMOBus_currentIndexChanged\0" + "onMORowChanged\0QModelIndex\0current\0" + "onZIPRowChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsOtherRemovable[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 10, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 64, 2, 0x08 /* Private */, + 4, 1, 67, 2, 0x08 /* Private */, + 6, 1, 70, 2, 0x08 /* Private */, + 7, 1, 73, 2, 0x08 /* Private */, + 8, 1, 76, 2, 0x08 /* Private */, + 9, 1, 79, 2, 0x08 /* Private */, + 10, 1, 82, 2, 0x08 /* Private */, + 11, 1, 85, 2, 0x08 /* Private */, + 12, 1, 88, 2, 0x08 /* Private */, + 15, 1, 91, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, QMetaType::Int, 5, + QMetaType::Void, 0x80000000 | 13, 14, + QMetaType::Void, 0x80000000 | 13, 14, + + 0 // eod +}; + +void SettingsOtherRemovable::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_checkBoxZIP250_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_comboBoxZIPChannel_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 2: _t->on_comboBoxZIPBus_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_comboBoxZIPBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 4: _t->on_comboBoxMOType_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 5: _t->on_comboBoxMOChannel_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxMOBus_activated((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_comboBoxMOBus_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->onMORowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + case 9: _t->onZIPRowChanged((*reinterpret_cast< const QModelIndex(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsOtherRemovable::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsOtherRemovable.data, + qt_meta_data_SettingsOtherRemovable, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsOtherRemovable::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsOtherRemovable::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsOtherRemovable.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsOtherRemovable::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 10) + qt_static_metacall(this, _c, _id, _a); + _id -= 10; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 10) + *reinterpret_cast(_a[0]) = -1; + _id -= 10; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp.d new file mode 100644 index 000000000..5aa1ef788 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsotherremovable.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp new file mode 100644 index 000000000..609f13f07 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp @@ -0,0 +1,175 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsports.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsports.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsports.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsPorts_t { + QByteArrayData data[16]; + char stringdata0[452]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsPorts_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsPorts_t qt_meta_stringdata_SettingsPorts = { + { +QT_MOC_LITERAL(0, 0, 13), // "SettingsPorts" +QT_MOC_LITERAL(1, 14, 34), // "on_checkBoxSerialPassThru4_cl..." +QT_MOC_LITERAL(2, 49, 0), // "" +QT_MOC_LITERAL(3, 50, 7), // "checked" +QT_MOC_LITERAL(4, 58, 34), // "on_checkBoxSerialPassThru3_cl..." +QT_MOC_LITERAL(5, 93, 34), // "on_checkBoxSerialPassThru2_cl..." +QT_MOC_LITERAL(6, 128, 36), // "on_pushButtonSerialPassThru4_..." +QT_MOC_LITERAL(7, 165, 36), // "on_pushButtonSerialPassThru3_..." +QT_MOC_LITERAL(8, 202, 36), // "on_pushButtonSerialPassThru2_..." +QT_MOC_LITERAL(9, 239, 36), // "on_pushButtonSerialPassThru1_..." +QT_MOC_LITERAL(10, 276, 34), // "on_checkBoxSerialPassThru1_cl..." +QT_MOC_LITERAL(11, 311, 33), // "on_checkBoxParallel3_stateCha..." +QT_MOC_LITERAL(12, 345, 4), // "arg1" +QT_MOC_LITERAL(13, 350, 33), // "on_checkBoxParallel2_stateCha..." +QT_MOC_LITERAL(14, 384, 33), // "on_checkBoxParallel1_stateCha..." +QT_MOC_LITERAL(15, 418, 33) // "on_checkBoxParallel4_stateCha..." + + }, + "SettingsPorts\0on_checkBoxSerialPassThru4_clicked\0" + "\0checked\0on_checkBoxSerialPassThru3_clicked\0" + "on_checkBoxSerialPassThru2_clicked\0" + "on_pushButtonSerialPassThru4_clicked\0" + "on_pushButtonSerialPassThru3_clicked\0" + "on_pushButtonSerialPassThru2_clicked\0" + "on_pushButtonSerialPassThru1_clicked\0" + "on_checkBoxSerialPassThru1_clicked\0" + "on_checkBoxParallel3_stateChanged\0" + "arg1\0on_checkBoxParallel2_stateChanged\0" + "on_checkBoxParallel1_stateChanged\0" + "on_checkBoxParallel4_stateChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsPorts[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 12, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 74, 2, 0x08 /* Private */, + 4, 1, 77, 2, 0x08 /* Private */, + 5, 1, 80, 2, 0x08 /* Private */, + 6, 0, 83, 2, 0x08 /* Private */, + 7, 0, 84, 2, 0x08 /* Private */, + 8, 0, 85, 2, 0x08 /* Private */, + 9, 0, 86, 2, 0x08 /* Private */, + 10, 1, 87, 2, 0x08 /* Private */, + 11, 1, 90, 2, 0x08 /* Private */, + 13, 1, 93, 2, 0x08 /* Private */, + 14, 1, 96, 2, 0x08 /* Private */, + 15, 1, 99, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 3, + QMetaType::Void, QMetaType::Int, 12, + QMetaType::Void, QMetaType::Int, 12, + QMetaType::Void, QMetaType::Int, 12, + QMetaType::Void, QMetaType::Int, 12, + + 0 // eod +}; + +void SettingsPorts::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_checkBoxSerialPassThru4_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 1: _t->on_checkBoxSerialPassThru3_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 2: _t->on_checkBoxSerialPassThru2_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 3: _t->on_pushButtonSerialPassThru4_clicked(); break; + case 4: _t->on_pushButtonSerialPassThru3_clicked(); break; + case 5: _t->on_pushButtonSerialPassThru2_clicked(); break; + case 6: _t->on_pushButtonSerialPassThru1_clicked(); break; + case 7: _t->on_checkBoxSerialPassThru1_clicked((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 8: _t->on_checkBoxParallel3_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_checkBoxParallel2_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 10: _t->on_checkBoxParallel1_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 11: _t->on_checkBoxParallel4_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsPorts::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsPorts.data, + qt_meta_data_SettingsPorts, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsPorts::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsPorts::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsPorts.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsPorts::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 12) + qt_static_metacall(this, _c, _id, _a); + _id -= 12; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 12) + *reinterpret_cast(_a[0]) = -1; + _id -= 12; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp.d new file mode 100644 index 000000000..da53974bf --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsports.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp new file mode 100644 index 000000000..1a9ac5977 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp @@ -0,0 +1,191 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingssound.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingssound.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingssound.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsSound_t { + QByteArrayData data[20]; + char stringdata0[612]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsSound_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsSound_t qt_meta_stringdata_SettingsSound = { + { +QT_MOC_LITERAL(0, 0, 13), // "SettingsSound" +QT_MOC_LITERAL(1, 14, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 38, 0), // "" +QT_MOC_LITERAL(3, 39, 9), // "machineId" +QT_MOC_LITERAL(4, 49, 36), // "on_pushButtonConfigureMPU401_..." +QT_MOC_LITERAL(5, 86, 30), // "on_checkBoxMPU401_stateChanged" +QT_MOC_LITERAL(6, 117, 4), // "arg1" +QT_MOC_LITERAL(7, 122, 36), // "on_pushButtonConfigureMidiIn_..." +QT_MOC_LITERAL(8, 159, 37), // "on_pushButtonConfigureMidiOut..." +QT_MOC_LITERAL(9, 197, 37), // "on_comboBoxMidiIn_currentInde..." +QT_MOC_LITERAL(10, 235, 5), // "index" +QT_MOC_LITERAL(11, 241, 38), // "on_comboBoxMidiOut_currentInd..." +QT_MOC_LITERAL(12, 280, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(13, 321, 41), // "on_comboBoxSoundCard1_current..." +QT_MOC_LITERAL(14, 363, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(15, 404, 41), // "on_comboBoxSoundCard2_current..." +QT_MOC_LITERAL(16, 446, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(17, 487, 41), // "on_comboBoxSoundCard3_current..." +QT_MOC_LITERAL(18, 529, 40), // "on_pushButtonConfigureSoundCa..." +QT_MOC_LITERAL(19, 570, 41) // "on_comboBoxSoundCard4_current..." + + }, + "SettingsSound\0onCurrentMachineChanged\0" + "\0machineId\0on_pushButtonConfigureMPU401_clicked\0" + "on_checkBoxMPU401_stateChanged\0arg1\0" + "on_pushButtonConfigureMidiIn_clicked\0" + "on_pushButtonConfigureMidiOut_clicked\0" + "on_comboBoxMidiIn_currentIndexChanged\0" + "index\0on_comboBoxMidiOut_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard1_clicked\0" + "on_comboBoxSoundCard1_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard2_clicked\0" + "on_comboBoxSoundCard2_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard3_clicked\0" + "on_comboBoxSoundCard3_currentIndexChanged\0" + "on_pushButtonConfigureSoundCard4_clicked\0" + "on_comboBoxSoundCard4_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsSound[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 15, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 89, 2, 0x0a /* Public */, + 4, 0, 92, 2, 0x08 /* Private */, + 5, 1, 93, 2, 0x08 /* Private */, + 7, 0, 96, 2, 0x08 /* Private */, + 8, 0, 97, 2, 0x08 /* Private */, + 9, 1, 98, 2, 0x08 /* Private */, + 11, 1, 101, 2, 0x08 /* Private */, + 12, 0, 104, 2, 0x08 /* Private */, + 13, 1, 105, 2, 0x08 /* Private */, + 14, 0, 108, 2, 0x08 /* Private */, + 15, 1, 109, 2, 0x08 /* Private */, + 16, 0, 112, 2, 0x08 /* Private */, + 17, 1, 113, 2, 0x08 /* Private */, + 18, 0, 116, 2, 0x08 /* Private */, + 19, 1, 117, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 6, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 10, + + 0 // eod +}; + +void SettingsSound::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonConfigureMPU401_clicked(); break; + case 2: _t->on_checkBoxMPU401_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 3: _t->on_pushButtonConfigureMidiIn_clicked(); break; + case 4: _t->on_pushButtonConfigureMidiOut_clicked(); break; + case 5: _t->on_comboBoxMidiIn_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxMidiOut_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_pushButtonConfigureSoundCard1_clicked(); break; + case 8: _t->on_comboBoxSoundCard1_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_pushButtonConfigureSoundCard2_clicked(); break; + case 10: _t->on_comboBoxSoundCard2_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 11: _t->on_pushButtonConfigureSoundCard3_clicked(); break; + case 12: _t->on_comboBoxSoundCard3_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 13: _t->on_pushButtonConfigureSoundCard4_clicked(); break; + case 14: _t->on_comboBoxSoundCard4_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsSound::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsSound.data, + qt_meta_data_SettingsSound, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsSound::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsSound::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsSound.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsSound::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 15) + qt_static_metacall(this, _c, _id, _a); + _id -= 15; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 15) + *reinterpret_cast(_a[0]) = -1; + _id -= 15; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp.d new file mode 100644 index 000000000..3cfbea28c --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingssound.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp new file mode 100644 index 000000000..ffbde1624 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp @@ -0,0 +1,211 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_settingsstoragecontrollers.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_settingsstoragecontrollers.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_settingsstoragecontrollers.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SettingsStorageControllers_t { + QByteArrayData data[24]; + char stringdata0[663]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SettingsStorageControllers_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SettingsStorageControllers_t qt_meta_stringdata_SettingsStorageControllers = { + { +QT_MOC_LITERAL(0, 0, 26), // "SettingsStorageControllers" +QT_MOC_LITERAL(1, 27, 23), // "onCurrentMachineChanged" +QT_MOC_LITERAL(2, 51, 0), // "" +QT_MOC_LITERAL(3, 52, 9), // "machineId" +QT_MOC_LITERAL(4, 62, 26), // "on_pushButtonSCSI4_clicked" +QT_MOC_LITERAL(5, 89, 26), // "on_pushButtonSCSI3_clicked" +QT_MOC_LITERAL(6, 116, 26), // "on_pushButtonSCSI2_clicked" +QT_MOC_LITERAL(7, 143, 26), // "on_pushButtonSCSI1_clicked" +QT_MOC_LITERAL(8, 170, 36), // "on_comboBoxSCSI4_currentIndex..." +QT_MOC_LITERAL(9, 207, 5), // "index" +QT_MOC_LITERAL(10, 213, 36), // "on_comboBoxSCSI3_currentIndex..." +QT_MOC_LITERAL(11, 250, 36), // "on_comboBoxSCSI2_currentIndex..." +QT_MOC_LITERAL(12, 287, 36), // "on_comboBoxSCSI1_currentIndex..." +QT_MOC_LITERAL(13, 324, 34), // "on_pushButtonQuaternaryIDE_cl..." +QT_MOC_LITERAL(14, 359, 32), // "on_pushButtonTertiaryIDE_clicked" +QT_MOC_LITERAL(15, 392, 23), // "on_pushButtonFD_clicked" +QT_MOC_LITERAL(16, 416, 23), // "on_pushButtonHD_clicked" +QT_MOC_LITERAL(17, 440, 32), // "on_pushButtonCDInterface_clicked" +QT_MOC_LITERAL(18, 473, 37), // "on_checkBoxQuaternaryIDE_stat..." +QT_MOC_LITERAL(19, 511, 4), // "arg1" +QT_MOC_LITERAL(20, 516, 35), // "on_checkBoxTertiaryIDE_stateC..." +QT_MOC_LITERAL(21, 552, 33), // "on_comboBoxFD_currentIndexCha..." +QT_MOC_LITERAL(22, 586, 33), // "on_comboBoxHD_currentIndexCha..." +QT_MOC_LITERAL(23, 620, 42) // "on_comboBoxCDInterface_curren..." + + }, + "SettingsStorageControllers\0" + "onCurrentMachineChanged\0\0machineId\0" + "on_pushButtonSCSI4_clicked\0" + "on_pushButtonSCSI3_clicked\0" + "on_pushButtonSCSI2_clicked\0" + "on_pushButtonSCSI1_clicked\0" + "on_comboBoxSCSI4_currentIndexChanged\0" + "index\0on_comboBoxSCSI3_currentIndexChanged\0" + "on_comboBoxSCSI2_currentIndexChanged\0" + "on_comboBoxSCSI1_currentIndexChanged\0" + "on_pushButtonQuaternaryIDE_clicked\0" + "on_pushButtonTertiaryIDE_clicked\0" + "on_pushButtonFD_clicked\0on_pushButtonHD_clicked\0" + "on_pushButtonCDInterface_clicked\0" + "on_checkBoxQuaternaryIDE_stateChanged\0" + "arg1\0on_checkBoxTertiaryIDE_stateChanged\0" + "on_comboBoxFD_currentIndexChanged\0" + "on_comboBoxHD_currentIndexChanged\0" + "on_comboBoxCDInterface_currentIndexChanged" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SettingsStorageControllers[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 19, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 109, 2, 0x0a /* Public */, + 4, 0, 112, 2, 0x08 /* Private */, + 5, 0, 113, 2, 0x08 /* Private */, + 6, 0, 114, 2, 0x08 /* Private */, + 7, 0, 115, 2, 0x08 /* Private */, + 8, 1, 116, 2, 0x08 /* Private */, + 10, 1, 119, 2, 0x08 /* Private */, + 11, 1, 122, 2, 0x08 /* Private */, + 12, 1, 125, 2, 0x08 /* Private */, + 13, 0, 128, 2, 0x08 /* Private */, + 14, 0, 129, 2, 0x08 /* Private */, + 15, 0, 130, 2, 0x08 /* Private */, + 16, 0, 131, 2, 0x08 /* Private */, + 17, 0, 132, 2, 0x08 /* Private */, + 18, 1, 133, 2, 0x08 /* Private */, + 20, 1, 136, 2, 0x08 /* Private */, + 21, 1, 139, 2, 0x08 /* Private */, + 22, 1, 142, 2, 0x08 /* Private */, + 23, 1, 145, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Int, 19, + QMetaType::Void, QMetaType::Int, 19, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + QMetaType::Void, QMetaType::Int, 9, + + 0 // eod +}; + +void SettingsStorageControllers::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onCurrentMachineChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_pushButtonSCSI4_clicked(); break; + case 2: _t->on_pushButtonSCSI3_clicked(); break; + case 3: _t->on_pushButtonSCSI2_clicked(); break; + case 4: _t->on_pushButtonSCSI1_clicked(); break; + case 5: _t->on_comboBoxSCSI4_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 6: _t->on_comboBoxSCSI3_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 7: _t->on_comboBoxSCSI2_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 8: _t->on_comboBoxSCSI1_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 9: _t->on_pushButtonQuaternaryIDE_clicked(); break; + case 10: _t->on_pushButtonTertiaryIDE_clicked(); break; + case 11: _t->on_pushButtonFD_clicked(); break; + case 12: _t->on_pushButtonHD_clicked(); break; + case 13: _t->on_pushButtonCDInterface_clicked(); break; + case 14: _t->on_checkBoxQuaternaryIDE_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 15: _t->on_checkBoxTertiaryIDE_stateChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 16: _t->on_comboBoxFD_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 17: _t->on_comboBoxHD_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 18: _t->on_comboBoxCDInterface_currentIndexChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SettingsStorageControllers::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SettingsStorageControllers.data, + qt_meta_data_SettingsStorageControllers, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SettingsStorageControllers::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SettingsStorageControllers::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SettingsStorageControllers.stringdata0)) + return static_cast(this); + return QWidget::qt_metacast(_clname); +} + +int SettingsStorageControllers::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QWidget::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 19) + qt_static_metacall(this, _c, _id, _a); + _id -= 19; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 19) + *reinterpret_cast(_a[0]) = -1; + _id -= 19; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp.d new file mode 100644 index 000000000..3cdb3268c --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp.d @@ -0,0 +1,289 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp new file mode 100644 index 000000000..b503068fd --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp @@ -0,0 +1,126 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_softwarerenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_softwarerenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_softwarerenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SoftwareRenderer_t { + QByteArrayData data[8]; + char stringdata0[41]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SoftwareRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SoftwareRenderer_t qt_meta_stringdata_SoftwareRenderer = { + { +QT_MOC_LITERAL(0, 0, 16), // "SoftwareRenderer" +QT_MOC_LITERAL(1, 17, 6), // "onBlit" +QT_MOC_LITERAL(2, 24, 0), // "" +QT_MOC_LITERAL(3, 25, 7), // "buf_idx" +QT_MOC_LITERAL(4, 33, 1), // "x" +QT_MOC_LITERAL(5, 35, 1), // "y" +QT_MOC_LITERAL(6, 37, 1), // "w" +QT_MOC_LITERAL(7, 39, 1) // "h" + + }, + "SoftwareRenderer\0onBlit\0\0buf_idx\0x\0y\0" + "w\0h" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SoftwareRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 5, 19, 2, 0x0a /* Public */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 3, 4, 5, 6, 7, + + 0 // eod +}; + +void SoftwareRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SoftwareRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SoftwareRenderer.data, + qt_meta_data_SoftwareRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SoftwareRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SoftwareRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SoftwareRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QRasterWindow::qt_metacast(_clname); +} + +int SoftwareRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QRasterWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp.d new file mode 100644 index 000000000..68d56c6f9 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp.d @@ -0,0 +1,308 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_softwarerenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QMargins \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/QPaintDevice \ + C:/msys64/mingw64/include/QtGui/QPaintDeviceWindow \ + C:/msys64/mingw64/include/QtGui/QRasterWindow \ + C:/msys64/mingw64/include/QtGui/QWindow \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevicewindow.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qrasterwindow.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qsurface.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp new file mode 100644 index 000000000..7065b488b --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp @@ -0,0 +1,124 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_soundgain.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_soundgain.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_soundgain.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SoundGain_t { + QByteArrayData data[5]; + char stringdata0[70]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SoundGain_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SoundGain_t qt_meta_stringdata_SoundGain = { + { +QT_MOC_LITERAL(0, 0, 9), // "SoundGain" +QT_MOC_LITERAL(1, 10, 30), // "on_verticalSlider_valueChanged" +QT_MOC_LITERAL(2, 41, 0), // "" +QT_MOC_LITERAL(3, 42, 5), // "value" +QT_MOC_LITERAL(4, 48, 21) // "on_SoundGain_rejected" + + }, + "SoundGain\0on_verticalSlider_valueChanged\0" + "\0value\0on_SoundGain_rejected" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SoundGain[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 2, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 1, 24, 2, 0x08 /* Private */, + 4, 0, 27, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, QMetaType::Int, 3, + QMetaType::Void, + + 0 // eod +}; + +void SoundGain::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_verticalSlider_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break; + case 1: _t->on_SoundGain_rejected(); break; + default: ; + } + } +} + +QT_INIT_METAOBJECT const QMetaObject SoundGain::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SoundGain.data, + qt_meta_data_SoundGain, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SoundGain::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SoundGain::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SoundGain.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int SoundGain::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 2) + qt_static_metacall(this, _c, _id, _a); + _id -= 2; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 2) + *reinterpret_cast(_a[0]) = -1; + _id -= 2; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp.d new file mode 100644 index 000000000..ef43b5e81 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_soundgain.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp new file mode 100644 index 000000000..046b21556 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp @@ -0,0 +1,120 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_specifydimensions.h' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_specifydimensions.h" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_specifydimensions.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_SpecifyDimensions_t { + QByteArrayData data[3]; + char stringdata0[49]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_SpecifyDimensions_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_SpecifyDimensions_t qt_meta_stringdata_SpecifyDimensions = { + { +QT_MOC_LITERAL(0, 0, 17), // "SpecifyDimensions" +QT_MOC_LITERAL(1, 18, 29), // "on_SpecifyDimensions_accepted" +QT_MOC_LITERAL(2, 48, 0) // "" + + }, + "SpecifyDimensions\0on_SpecifyDimensions_accepted\0" + "" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_SpecifyDimensions[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 1, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // slots: name, argc, parameters, tag, flags + 1, 0, 19, 2, 0x08 /* Private */, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void SpecifyDimensions::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->on_SpecifyDimensions_accepted(); break; + default: ; + } + } + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject SpecifyDimensions::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_SpecifyDimensions.data, + qt_meta_data_SpecifyDimensions, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *SpecifyDimensions::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *SpecifyDimensions::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_SpecifyDimensions.stringdata0)) + return static_cast(this); + return QDialog::qt_metacast(_clname); +} + +int SpecifyDimensions::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QDialog::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 1) + qt_static_metacall(this, _c, _id, _a); + _id -= 1; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 1) + *reinterpret_cast(_a[0]) = -1; + _id -= 1; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp.d new file mode 100644 index 000000000..c8fbbcba6 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp.d @@ -0,0 +1,290 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_specifydimensions.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.h \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp new file mode 100644 index 000000000..1454100e2 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp @@ -0,0 +1,248 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_unixmanagerfilter.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_unixmanagerfilter.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_unixmanagerfilter.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_UnixManagerSocket_t { + QByteArrayData data[11]; + char stringdata0[119]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_UnixManagerSocket_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_UnixManagerSocket_t qt_meta_stringdata_UnixManagerSocket = { + { +QT_MOC_LITERAL(0, 0, 17), // "UnixManagerSocket" +QT_MOC_LITERAL(1, 18, 5), // "pause" +QT_MOC_LITERAL(2, 24, 0), // "" +QT_MOC_LITERAL(3, 25, 10), // "ctrlaltdel" +QT_MOC_LITERAL(4, 36, 12), // "showsettings" +QT_MOC_LITERAL(5, 49, 7), // "resetVM" +QT_MOC_LITERAL(6, 57, 16), // "request_shutdown" +QT_MOC_LITERAL(7, 74, 14), // "force_shutdown" +QT_MOC_LITERAL(8, 89, 12), // "dialogstatus" +QT_MOC_LITERAL(9, 102, 4), // "open" +QT_MOC_LITERAL(10, 107, 11) // "readyToRead" + + }, + "UnixManagerSocket\0pause\0\0ctrlaltdel\0" + "showsettings\0resetVM\0request_shutdown\0" + "force_shutdown\0dialogstatus\0open\0" + "readyToRead" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_UnixManagerSocket[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 8, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 7, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 54, 2, 0x06 /* Public */, + 3, 0, 55, 2, 0x06 /* Public */, + 4, 0, 56, 2, 0x06 /* Public */, + 5, 0, 57, 2, 0x06 /* Public */, + 6, 0, 58, 2, 0x06 /* Public */, + 7, 0, 59, 2, 0x06 /* Public */, + 8, 1, 60, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 10, 0, 63, 2, 0x09 /* Protected */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 9, + + // slots: parameters + QMetaType::Void, + + 0 // eod +}; + +void UnixManagerSocket::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->pause(); break; + case 1: _t->ctrlaltdel(); break; + case 2: _t->showsettings(); break; + case 3: _t->resetVM(); break; + case 4: _t->request_shutdown(); break; + case 5: _t->force_shutdown(); break; + case 6: _t->dialogstatus((*reinterpret_cast< bool(*)>(_a[1]))); break; + case 7: _t->readyToRead(); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::pause)) { + *result = 0; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::ctrlaltdel)) { + *result = 1; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::showsettings)) { + *result = 2; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::resetVM)) { + *result = 3; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::request_shutdown)) { + *result = 4; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::force_shutdown)) { + *result = 5; + return; + } + } + { + using _t = void (UnixManagerSocket::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&UnixManagerSocket::dialogstatus)) { + *result = 6; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject UnixManagerSocket::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_UnixManagerSocket.data, + qt_meta_data_UnixManagerSocket, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *UnixManagerSocket::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *UnixManagerSocket::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_UnixManagerSocket.stringdata0)) + return static_cast(this); + return QLocalSocket::qt_metacast(_clname); +} + +int UnixManagerSocket::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QLocalSocket::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 8) + qt_static_metacall(this, _c, _id, _a); + _id -= 8; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 8) + *reinterpret_cast(_a[0]) = -1; + _id -= 8; + } + return _id; +} + +// SIGNAL 0 +void UnixManagerSocket::pause() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void UnixManagerSocket::ctrlaltdel() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} + +// SIGNAL 2 +void UnixManagerSocket::showsettings() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} + +// SIGNAL 3 +void UnixManagerSocket::resetVM() +{ + QMetaObject::activate(this, &staticMetaObject, 3, nullptr); +} + +// SIGNAL 4 +void UnixManagerSocket::request_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 4, nullptr); +} + +// SIGNAL 5 +void UnixManagerSocket::force_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 5, nullptr); +} + +// SIGNAL 6 +void UnixManagerSocket::dialogstatus(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 6, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp.d new file mode 100644 index 000000000..d338016f9 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp.d @@ -0,0 +1,271 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_unixmanagerfilter.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtNetwork/QLocalSocket \ + C:/msys64/mingw64/include/QtNetwork/qabstractsocket.h \ + C:/msys64/mingw64/include/QtNetwork/qlocalsocket.h \ + C:/msys64/mingw64/include/QtNetwork/qtnetwork-config.h \ + C:/msys64/mingw64/include/QtNetwork/qtnetworkglobal.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp new file mode 100644 index 000000000..f880aad02 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp @@ -0,0 +1,167 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_vulkanwindowrenderer.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_vulkanwindowrenderer.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_vulkanwindowrenderer.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_VulkanWindowRenderer_t { + QByteArrayData data[10]; + char stringdata0[83]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_VulkanWindowRenderer_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_VulkanWindowRenderer_t qt_meta_stringdata_VulkanWindowRenderer = { + { +QT_MOC_LITERAL(0, 0, 20), // "VulkanWindowRenderer" +QT_MOC_LITERAL(1, 21, 19), // "rendererInitialized" +QT_MOC_LITERAL(2, 41, 0), // "" +QT_MOC_LITERAL(3, 42, 17), // "errorInitializing" +QT_MOC_LITERAL(4, 60, 6), // "onBlit" +QT_MOC_LITERAL(5, 67, 7), // "buf_idx" +QT_MOC_LITERAL(6, 75, 1), // "x" +QT_MOC_LITERAL(7, 77, 1), // "y" +QT_MOC_LITERAL(8, 79, 1), // "w" +QT_MOC_LITERAL(9, 81, 1) // "h" + + }, + "VulkanWindowRenderer\0rendererInitialized\0" + "\0errorInitializing\0onBlit\0buf_idx\0x\0" + "y\0w\0h" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_VulkanWindowRenderer[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 3, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 2, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 29, 2, 0x06 /* Public */, + 3, 0, 30, 2, 0x06 /* Public */, + + // slots: name, argc, parameters, tag, flags + 4, 5, 31, 2, 0x0a /* Public */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + + // slots: parameters + QMetaType::Void, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, QMetaType::Int, 5, 6, 7, 8, 9, + + 0 // eod +}; + +void VulkanWindowRenderer::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->rendererInitialized(); break; + case 1: _t->errorInitializing(); break; + case 2: _t->onBlit((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2])),(*reinterpret_cast< int(*)>(_a[3])),(*reinterpret_cast< int(*)>(_a[4])),(*reinterpret_cast< int(*)>(_a[5]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (VulkanWindowRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&VulkanWindowRenderer::rendererInitialized)) { + *result = 0; + return; + } + } + { + using _t = void (VulkanWindowRenderer::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&VulkanWindowRenderer::errorInitializing)) { + *result = 1; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject VulkanWindowRenderer::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_VulkanWindowRenderer.data, + qt_meta_data_VulkanWindowRenderer, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *VulkanWindowRenderer::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *VulkanWindowRenderer::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_VulkanWindowRenderer.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "RendererCommon")) + return static_cast< RendererCommon*>(this); + return QVulkanWindow::qt_metacast(_clname); +} + +int VulkanWindowRenderer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QVulkanWindow::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 3) + qt_static_metacall(this, _c, _id, _a); + _id -= 3; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 3) + *reinterpret_cast(_a[0]) = -1; + _id -= 3; + } + return _id; +} + +// SIGNAL 0 +void VulkanWindowRenderer::rendererInitialized() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void VulkanWindowRenderer::errorInitializing() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp.d new file mode 100644 index 000000000..3ddbf85b9 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp.d @@ -0,0 +1,328 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QMargins \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversionnumber.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/QVulkanWindow \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qquaternion.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qsurface.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector3d.h \ + C:/msys64/mingw64/include/QtGui/qvector4d.h \ + C:/msys64/mingw64/include/QtGui/qvulkaninstance.h \ + C:/msys64/mingw64/include/QtGui/qvulkanwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h264std.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h264std_decode.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h265std.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h265std_decode.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codecs_common.h \ + C:/msys64/mingw64/include/vulkan/vk_platform.h \ + C:/msys64/mingw64/include/vulkan/vulkan.h \ + C:/msys64/mingw64/include/vulkan/vulkan_core.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.hpp diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp new file mode 100644 index 000000000..ca9497512 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp @@ -0,0 +1,241 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_winmanagerfilter.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_winmanagerfilter.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_winmanagerfilter.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_WindowsManagerFilter_t { + QByteArrayData data[10]; + char stringdata0[108]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_WindowsManagerFilter_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_WindowsManagerFilter_t qt_meta_stringdata_WindowsManagerFilter = { + { +QT_MOC_LITERAL(0, 0, 20), // "WindowsManagerFilter" +QT_MOC_LITERAL(1, 21, 5), // "pause" +QT_MOC_LITERAL(2, 27, 0), // "" +QT_MOC_LITERAL(3, 28, 10), // "ctrlaltdel" +QT_MOC_LITERAL(4, 39, 12), // "showsettings" +QT_MOC_LITERAL(5, 52, 5), // "reset" +QT_MOC_LITERAL(6, 58, 16), // "request_shutdown" +QT_MOC_LITERAL(7, 75, 14), // "force_shutdown" +QT_MOC_LITERAL(8, 90, 12), // "dialogstatus" +QT_MOC_LITERAL(9, 103, 4) // "open" + + }, + "WindowsManagerFilter\0pause\0\0ctrlaltdel\0" + "showsettings\0reset\0request_shutdown\0" + "force_shutdown\0dialogstatus\0open" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_WindowsManagerFilter[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 7, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 7, // signalCount + + // signals: name, argc, parameters, tag, flags + 1, 0, 49, 2, 0x06 /* Public */, + 3, 0, 50, 2, 0x06 /* Public */, + 4, 0, 51, 2, 0x06 /* Public */, + 5, 0, 52, 2, 0x06 /* Public */, + 6, 0, 53, 2, 0x06 /* Public */, + 7, 0, 54, 2, 0x06 /* Public */, + 8, 1, 55, 2, 0x06 /* Public */, + + // signals: parameters + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, + QMetaType::Void, QMetaType::Bool, 9, + + 0 // eod +}; + +void WindowsManagerFilter::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + auto *_t = static_cast(_o); + (void)_t; + switch (_id) { + case 0: _t->pause(); break; + case 1: _t->ctrlaltdel(); break; + case 2: _t->showsettings(); break; + case 3: _t->reset(); break; + case 4: _t->request_shutdown(); break; + case 5: _t->force_shutdown(); break; + case 6: _t->dialogstatus((*reinterpret_cast< bool(*)>(_a[1]))); break; + default: ; + } + } else if (_c == QMetaObject::IndexOfMethod) { + int *result = reinterpret_cast(_a[0]); + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::pause)) { + *result = 0; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::ctrlaltdel)) { + *result = 1; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::showsettings)) { + *result = 2; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::reset)) { + *result = 3; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::request_shutdown)) { + *result = 4; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::force_shutdown)) { + *result = 5; + return; + } + } + { + using _t = void (WindowsManagerFilter::*)(bool ); + if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&WindowsManagerFilter::dialogstatus)) { + *result = 6; + return; + } + } + } +} + +QT_INIT_METAOBJECT const QMetaObject WindowsManagerFilter::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_WindowsManagerFilter.data, + qt_meta_data_WindowsManagerFilter, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *WindowsManagerFilter::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *WindowsManagerFilter::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_WindowsManagerFilter.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QAbstractNativeEventFilter")) + return static_cast< QAbstractNativeEventFilter*>(this); + return QObject::qt_metacast(_clname); +} + +int WindowsManagerFilter::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 7) + qt_static_metacall(this, _c, _id, _a); + _id -= 7; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 7) + *reinterpret_cast(_a[0]) = -1; + _id -= 7; + } + return _id; +} + +// SIGNAL 0 +void WindowsManagerFilter::pause() +{ + QMetaObject::activate(this, &staticMetaObject, 0, nullptr); +} + +// SIGNAL 1 +void WindowsManagerFilter::ctrlaltdel() +{ + QMetaObject::activate(this, &staticMetaObject, 1, nullptr); +} + +// SIGNAL 2 +void WindowsManagerFilter::showsettings() +{ + QMetaObject::activate(this, &staticMetaObject, 2, nullptr); +} + +// SIGNAL 3 +void WindowsManagerFilter::reset() +{ + QMetaObject::activate(this, &staticMetaObject, 3, nullptr); +} + +// SIGNAL 4 +void WindowsManagerFilter::request_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 4, nullptr); +} + +// SIGNAL 5 +void WindowsManagerFilter::force_shutdown() +{ + QMetaObject::activate(this, &staticMetaObject, 5, nullptr); +} + +// SIGNAL 6 +void WindowsManagerFilter::dialogstatus(bool _t1) +{ + void *_a[] = { nullptr, const_cast(reinterpret_cast(std::addressof(_t1))) }; + QMetaObject::activate(this, &staticMetaObject, 6, _a); +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp.d new file mode 100644 index 000000000..d1382d362 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp.d @@ -0,0 +1,230 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winmanagerfilter.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QAbstractNativeEventFilter \ + C:/msys64/mingw64/include/QtCore/QByteArray \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/qabstractnativeeventfilter.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp new file mode 100644 index 000000000..b91bc45b2 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp @@ -0,0 +1,97 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'qt_winrawinputfilter.hpp' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.15.10) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include +#include "../../../../../qt/qt_winrawinputfilter.hpp" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'qt_winrawinputfilter.hpp' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.15.10. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_WindowsRawInputFilter_t { + QByteArrayData data[1]; + char stringdata0[22]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_WindowsRawInputFilter_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_WindowsRawInputFilter_t qt_meta_stringdata_WindowsRawInputFilter = { + { +QT_MOC_LITERAL(0, 0, 21) // "WindowsRawInputFilter" + + }, + "WindowsRawInputFilter" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_WindowsRawInputFilter[] = { + + // content: + 8, // revision + 0, // classname + 0, 0, // classinfo + 0, 0, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + 0 // eod +}; + +void WindowsRawInputFilter::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + (void)_o; + (void)_id; + (void)_c; + (void)_a; +} + +QT_INIT_METAOBJECT const QMetaObject WindowsRawInputFilter::staticMetaObject = { { + QMetaObject::SuperData::link(), + qt_meta_stringdata_WindowsRawInputFilter.data, + qt_meta_data_WindowsRawInputFilter, + qt_static_metacall, + nullptr, + nullptr +} }; + + +const QMetaObject *WindowsRawInputFilter::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *WindowsRawInputFilter::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_WindowsRawInputFilter.stringdata0)) + return static_cast(this); + if (!strcmp(_clname, "QAbstractNativeEventFilter")) + return static_cast< QAbstractNativeEventFilter*>(this); + return QObject::qt_metacast(_clname); +} + +int WindowsRawInputFilter::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE diff --git a/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp.d b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp.d new file mode 100644 index 000000000..0fea6731b --- /dev/null +++ b/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp.d @@ -0,0 +1,548 @@ +K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/EWIEGA46WW/moc_qt_winrawinputfilter.cpp: K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + C:/msys64/mingw64/include/QtCore/QAbstractNativeEventFilter \ + C:/msys64/mingw64/include/QtCore/QByteArray \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/qabstractnativeeventfilter.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QFocusEvent \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtWidgets/QLabel \ + C:/msys64/mingw64/include/QtWidgets/QMainWindow \ + C:/msys64/mingw64/include/QtWidgets/qframe.h \ + C:/msys64/mingw64/include/QtWidgets/qlabel.h \ + C:/msys64/mingw64/include/QtWidgets/qmainwindow.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qtabwidget.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.hpp diff --git a/src/build64/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp b/src/build64/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp new file mode 100644 index 000000000..67db6ac9f --- /dev/null +++ b/src/build64/src/qt/ui_autogen/VNU7RW3YIC/qrc_qt_resources.cpp @@ -0,0 +1,25777 @@ +/**************************************************************************** +** Resource object code +** +** Created by: The Resource Compiler for Qt version 5.15.10 +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +static const unsigned char qt_resource_data[] = { + // K:/emu_dev/86Box_clean_ex_k/src/qt/texture_vert.spv + 0x0,0x0,0x3,0xc8, + 0x3, + 0x2,0x23,0x7,0x0,0x0,0x1,0x0,0x1,0x0,0x8,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1, + 0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0, + 0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, + 0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0, + 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x1b, + 0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x5, + 0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0,0x0,0x0,0x0,0x5, + 0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x76,0x5f,0x74,0x65,0x78,0x63,0x6f,0x6f,0x72, + 0x64,0x0,0x0,0x5,0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x74,0x65,0x78,0x63,0x6f, + 0x6f,0x72,0x64,0x0,0x0,0x0,0x0,0x5,0x0,0x6,0x0,0xe,0x0,0x0,0x0,0x67, + 0x6c,0x5f,0x50,0x65,0x72,0x56,0x65,0x72,0x74,0x65,0x78,0x0,0x0,0x0,0x0,0x6, + 0x0,0x6,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x6c,0x5f,0x50,0x6f, + 0x73,0x69,0x74,0x69,0x6f,0x6e,0x0,0x5,0x0,0x3,0x0,0x10,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x3,0x0,0x14,0x0,0x0,0x0,0x62,0x75,0x66,0x0,0x6, + 0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x70,0x0,0x5, + 0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x75,0x62,0x75,0x66,0x0,0x0,0x0,0x0,0x5, + 0x0,0x5,0x0,0x1b,0x0,0x0,0x0,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x0, + 0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x48,0x0,0x5,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0x2, + 0x0,0x0,0x0,0x48,0x0,0x4,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x5,0x0,0x14,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x47,0x0,0x3,0x0,0x14, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x22, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x16,0x0,0x0,0x0,0x21, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x1b,0x0,0x0,0x0,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21, + 0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6, + 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xa,0x0,0x0,0x0,0xb, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0xe,0x0,0x0,0x0,0xd, + 0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe, + 0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x15,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x2b,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x18,0x0,0x4,0x0,0x13,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x1e,0x0,0x3,0x0,0x14,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x15,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x3b, + 0x0,0x4,0x0,0x15,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x17,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x3b, + 0x0,0x4,0x0,0x1a,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20, + 0x0,0x4,0x0,0x1e,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x36, + 0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x7, + 0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9, + 0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x41,0x0,0x5,0x0,0x17,0x0,0x0,0x0,0x18, + 0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0x13, + 0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xd, + 0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x91,0x0,0x5,0x0,0xd, + 0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x41, + 0x0,0x5,0x0,0x1e,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x12, + 0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x1f,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xfd, + 0x0,0x1,0x0,0x38,0x0,0x1,0x0, + // K:/emu_dev/86Box_clean_ex_k/src/qt/texture_frag.spv + 0x0,0x0,0x2,0x2c, + 0x3, + 0x2,0x23,0x7,0x0,0x0,0x1,0x0,0x1,0x0,0x8,0x0,0x14,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x11,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0xb,0x0,0x6,0x0,0x1, + 0x0,0x0,0x0,0x47,0x4c,0x53,0x4c,0x2e,0x73,0x74,0x64,0x2e,0x34,0x35,0x30,0x0, + 0x0,0x0,0x0,0xe,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, + 0x0,0x7,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0, + 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x10,0x0,0x3,0x0,0x4, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x0,0x0,0xb8, + 0x1,0x0,0x0,0x5,0x0,0x4,0x0,0x4,0x0,0x0,0x0,0x6d,0x61,0x69,0x6e,0x0, + 0x0,0x0,0x0,0x5,0x0,0x5,0x0,0x9,0x0,0x0,0x0,0x66,0x72,0x61,0x67,0x43, + 0x6f,0x6c,0x6f,0x72,0x0,0x0,0x0,0x5,0x0,0x3,0x0,0xd,0x0,0x0,0x0,0x74, + 0x65,0x78,0x0,0x5,0x0,0x5,0x0,0x11,0x0,0x0,0x0,0x76,0x5f,0x74,0x65,0x78, + 0x63,0x6f,0x6f,0x72,0x64,0x0,0x0,0x47,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x22, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0xd,0x0,0x0,0x0,0x21, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x0,0x4,0x0,0x11,0x0,0x0,0x0,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x21, + 0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x16,0x0,0x3,0x0,0x6, + 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0x7,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x8,0x0,0x0,0x0,0x9, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x19,0x0,0x9,0x0,0xa,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x3,0x0,0xb, + 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0xc,0x0,0x0,0x0,0xd, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x20,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x3b,0x0,0x4,0x0,0x10,0x0,0x0,0x0,0x11, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x0,0x5,0x0,0x2,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xf8,0x0,0x2,0x0,0x5, + 0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xd, + 0x0,0x0,0x0,0x3d,0x0,0x4,0x0,0xf,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x11, + 0x0,0x0,0x0,0x57,0x0,0x5,0x0,0x7,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xe, + 0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3e,0x0,0x3,0x0,0x9,0x0,0x0,0x0,0x13, + 0x0,0x0,0x0,0xfd,0x0,0x1,0x0,0x38,0x0,0x1,0x0, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom.ico + 0x0,0x0,0x4,0x13, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xe5,0x5a,0xbd,0x6e,0xdc,0x30,0xc,0xe6,0x21,0x41,0xe, + 0x41,0x87,0xcb,0x90,0x21,0x5b,0x6e,0xec,0xd8,0x7,0x28,0x90,0x4c,0x45,0x1f,0xa3, + 0x53,0xd1,0xa7,0x68,0xdc,0xad,0x63,0x1f,0xa3,0x53,0xe7,0x8c,0x79,0x94,0x7b,0x82, + 0xe2,0xc6,0xc,0x41,0x58,0xd1,0xb6,0x6c,0x89,0x22,0x29,0xca,0x67,0x14,0x28,0x2a, + 0x83,0xb8,0xd8,0x16,0xbf,0x8f,0xfa,0xfb,0x44,0x19,0x1,0xd8,0xc0,0x39,0x5c,0x5d, + 0x41,0xf8,0xdd,0xc3,0x97,0x73,0x80,0xf,0x0,0x70,0x7d,0x3d,0xdc,0x3f,0x5e,0x0, + 0xfc,0xa,0xcf,0x6e,0x6e,0x86,0xfb,0xef,0x97,0x0,0x9f,0xdf,0x0,0xec,0xf7,0xc3, + 0xfd,0xcf,0xe0,0xf7,0x3b,0xd4,0x7d,0x1b,0x7c,0xc2,0x9f,0xe1,0xc9,0xf0,0x9c,0xca, + 0xfd,0x39,0x78,0xb,0x2a,0x66,0x97,0xae,0xc3,0xde,0x70,0x2e,0x30,0x5d,0x68,0xe3, + 0x4,0xbf,0xa1,0xfe,0x6c,0xdc,0x1f,0x1f,0x3f,0xf6,0x56,0x60,0x24,0xbe,0xe9,0xef, + 0xec,0x9f,0xf8,0x46,0xfc,0x14,0x63,0x8c,0x5b,0xc2,0x48,0xfd,0xd3,0xd8,0x26,0xff, + 0xa4,0xcd,0x5,0x46,0xc4,0xe5,0xbe,0x29,0x46,0xe2,0x9b,0x61,0xd0,0x7d,0xec,0xaf, + 0xf8,0x4e,0xf3,0x17,0x30,0x58,0x1f,0xcd,0xf5,0x78,0x1d,0x86,0xdd,0xc7,0x6a,0xf9, + 0xa7,0x3c,0x89,0x7f,0xd1,0xbf,0x2c,0xfe,0x69,0x3c,0x4,0xfe,0xc2,0x37,0xf6,0x3b, + 0x9b,0x4f,0xc0,0x31,0xd2,0x31,0xe0,0xbe,0xf4,0x17,0xe1,0x16,0xf3,0x69,0xfc,0xe5, + 0xe3,0xcf,0xfc,0x63,0x4c,0x88,0x79,0x9f,0x4f,0xf7,0xc2,0x1c,0x94,0xb8,0xb9,0xbf, + 0xe8,0xcb,0xe7,0x61,0xc2,0x8d,0xa5,0x9f,0x7f,0x1d,0x72,0x13,0xca,0xf3,0x2d,0xe2, + 0x61,0x8b,0xf8,0x74,0x86,0xd8,0x6d,0x6,0xb,0x14,0xbd,0x6d,0xba,0xc1,0xe2,0x7d, + 0x7c,0x4f,0x75,0xc9,0x87,0x7c,0x49,0x67,0x82,0xdc,0xf4,0x7a,0x13,0x75,0xe6,0xc7, + 0x45,0x35,0x42,0x5e,0x96,0xe9,0x8d,0xd6,0x6e,0x36,0x5e,0x18,0xc7,0x65,0x81,0x8e, + 0x49,0x58,0x13,0x5e,0x5c,0x2f,0x8d,0xba,0xe6,0xd1,0x38,0x51,0xe7,0x62,0x6c,0xca, + 0xbc,0x92,0x62,0x33,0xf1,0x14,0xdd,0x13,0xe7,0x3b,0x8f,0x4d,0x9a,0xcb,0x9a,0xe, + 0x22,0x16,0x73,0x51,0xc4,0x4a,0xf1,0x34,0x5d,0x8c,0xcf,0xf8,0x5c,0xf1,0xe8,0xac, + 0xa4,0x93,0xa5,0xd6,0xc5,0x52,0xd7,0x5d,0x8e,0x95,0xc7,0xb6,0xc,0x8f,0xdb,0x8a, + 0x78,0x8a,0xb6,0x97,0x78,0x86,0xce,0x57,0xb5,0x9e,0x69,0xbe,0xd9,0x3f,0xa2,0xf6, + 0x8f,0x17,0xd7,0xae,0x74,0x7e,0x6b,0x7d,0x5d,0xcc,0x1,0xd0,0xb5,0x34,0xb9,0xcf, + 0x30,0x3d,0xba,0x6e,0x68,0x7b,0x86,0xa9,0xae,0x5f,0x19,0x4b,0xc2,0xcb,0xd6,0x50, + 0xe3,0xbe,0xa1,0xe1,0x81,0xa5,0x57,0x12,0xae,0x86,0x77,0xaa,0x4e,0x3b,0xf6,0xa7, + 0x58,0x5e,0x69,0xbf,0x9,0x7b,0xcf,0x1,0x1e,0xf0,0x9,0xee,0x7a,0xeb,0xe0,0xb6, + 0x37,0x80,0x1d,0xc2,0x91,0x59,0x78,0x16,0xdf,0xc7,0xfa,0xe4,0x4b,0x18,0x84,0x45, + 0xfb,0x55,0x48,0xa1,0xe1,0x1d,0xcc,0xfb,0xd6,0xa7,0xcb,0xe6,0x96,0xc4,0xb2,0xce, + 0xfe,0x95,0x16,0x65,0xee,0x63,0xba,0x46,0x96,0x72,0x29,0xba,0x91,0xe3,0x63,0x7d, + 0x2f,0x5a,0x80,0xad,0xe2,0x5b,0xf3,0xbb,0x82,0x9d,0xaf,0x13,0x5,0xdb,0xb3,0x86, + 0x2a,0x6b,0x50,0xc2,0x37,0xd6,0x57,0x8e,0x5d,0xd9,0x67,0x33,0xed,0xb0,0xb0,0x25, + 0xe,0x6b,0xdf,0x8d,0x26,0xe8,0x69,0x13,0x7e,0xe5,0x8c,0x3,0x82,0xfe,0x9b,0x3c, + 0xca,0xf9,0x89,0x73,0x2c,0xda,0xff,0x52,0xe,0x6b,0x9f,0xd6,0xb1,0x7d,0x1c,0xb5, + 0xf7,0xff,0x30,0x7e,0x25,0x57,0xc8,0xf1,0x9d,0x79,0x43,0x86,0xed,0x1c,0xdf,0x58, + 0x6a,0x79,0x84,0xba,0x6e,0x2a,0xf3,0xb3,0x98,0xcb,0x52,0x4c,0x62,0x9e,0x12,0xb5, + 0x0,0xe6,0xbe,0x52,0xd6,0x97,0xc8,0x61,0xe6,0x2d,0x39,0xb6,0x79,0x96,0xd4,0x38, + 0xd4,0x3c,0x66,0xc6,0x6e,0xc1,0xcf,0x34,0xc5,0xd4,0x50,0x1,0xdb,0x89,0x6f,0x62, + 0xb,0x1c,0xee,0x7c,0xc7,0x8b,0x2d,0x8c,0xb7,0x1b,0x7f,0xc9,0x1e,0xec,0xcf,0xaf, + 0xd6,0xcb,0x25,0x9c,0xf9,0x56,0x2c,0xf8,0xd,0xf1,0x25,0xe4,0x4e,0xcf,0x21,0x8f, + 0x3a,0x86,0x9c,0xea,0x0,0xdb,0x90,0x4b,0x9d,0x85,0xbc,0x6a,0x33,0x19,0xbc,0xf, + 0xf1,0x7d,0x65,0x16,0x9e,0xa5,0x75,0xc8,0x87,0x7c,0x9,0x83,0xb0,0x8,0x93,0xb0, + 0x29,0xf,0xdb,0x7,0xbb,0x87,0x39,0xf,0xeb,0xae,0x4e,0x6a,0xed,0x14,0x7a,0xc5, + 0xd6,0x2f,0xc6,0xfe,0x3a,0x8f,0xef,0x78,0xad,0x19,0x4b,0x65,0xaf,0x45,0x89,0x7f, + 0x58,0x41,0xf5,0xef,0x17,0x1e,0x6e,0xc7,0xba,0x2e,0xf9,0xb1,0xfe,0x7d,0x62,0x65, + 0xee,0x2a,0x7f,0xa3,0x46,0x78,0xb8,0x73,0xed,0xac,0x70,0x7b,0xb5,0x24,0xcd,0x8f, + 0x56,0xe8,0xfb,0x26,0x3d,0x73,0xe4,0xb1,0x76,0xfb,0x1d,0xdc,0x56,0xc,0xce,0x5c, + 0x5a,0x6f,0x3f,0xfa,0xb8,0x25,0x7e,0x2b,0xf,0x76,0xb5,0xbf,0x81,0x5b,0x8a,0xc1, + 0xc8,0x93,0xd5,0x18,0x98,0xe6,0x37,0x71,0x4b,0xfc,0xde,0x18,0x96,0x9e,0xb,0x34, + 0x7e,0x2b,0xcf,0x94,0xf2,0x38,0x5d,0xd3,0xea,0x79,0xb5,0x14,0x83,0x75,0x8e,0x48, + 0x62,0x60,0xfc,0x5a,0x59,0xc6,0xef,0x88,0xc1,0xc1,0xdd,0x1e,0x43,0x4b,0xdd,0xff, + 0x98,0xdf,0x79,0x66,0xca,0xf9,0x3d,0x63,0xea,0xe0,0x77,0x9e,0xa9,0x32,0xee,0x6c, + 0xbe,0x5a,0xbf,0x15,0x7e,0xf1,0xcc,0xe5,0x58,0x7f,0x18,0xfd,0x3d,0xed,0xa7,0x52, + 0x3b,0x4b,0xf2,0x18,0x1c,0xfa,0x53,0x8d,0x41,0xd2,0xdf,0x91,0xd7,0xd6,0xd2,0xf1, + 0x32,0xce,0x85,0xae,0x18,0x94,0x73,0xa8,0x87,0xbb,0xe5,0xdc,0xa5,0xc6,0x20,0xec, + 0x81,0xae,0x76,0x37,0xf2,0x8b,0x31,0xa8,0xdf,0xcf,0x9d,0xdc,0x8d,0xfc,0x45,0xc, + 0x95,0x6f,0x85,0x1a,0xf7,0x29,0xfc,0x55,0x6e,0x31,0x6,0x85,0x7b,0x21,0x7f,0x95, + 0x3b,0x8b,0xa1,0xbc,0x9a,0xcf,0xe5,0x4b,0xb8,0x95,0x18,0x9a,0xcf,0xed,0xa7,0x70, + 0xa7,0x31,0x8c,0x71,0x2c,0xe2,0x5f,0xfb,0x1c,0x18,0x75,0xc2,0xe2,0xff,0x9b,0x67, + 0xe1,0x85,0xdf,0x1e,0xd2,0x82,0xc7,0x5d,0xff,0xcf,0x7,0xaf,0x0,0xf,0x2f,0x0, + 0x77,0xcf,0x0,0xb7,0x47,0x80,0xdd,0x1,0x60,0xfb,0x4,0x70,0x46,0xd6,0x1,0x6c, + 0xa2,0xf5,0x4f,0xb6,0xe1,0xed,0xee,0x98,0x1b,0x3d,0xb,0xef,0xd2,0xba,0xd1,0x9f, + 0xb0,0xa8,0x16,0x61,0x13,0x7,0x71,0xf5,0xff,0xf0,0x10,0xb8,0xff,0x0,0x10,0x91, + 0xe6,0x4e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge_empty.ico + 0x0,0x0,0x1,0xd7, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x57,0xbd,0x4e,0xc3,0x30,0x10,0x3e,0xa4,0xa8,0x52, + 0xc5,0x92,0xa1,0x43,0xc7,0x8c,0x8c,0x3c,0x42,0x27,0xde,0x20,0xea,0x18,0x94,0x1, + 0xf1,0x16,0xcd,0xc8,0xc8,0x23,0x74,0x60,0x40,0x19,0xe8,0xda,0x8d,0x3c,0xf,0x3, + 0x5b,0x16,0x24,0x64,0x2e,0x8d,0xac,0x12,0xb,0xc7,0x7f,0xe7,0xe0,0x80,0x4f,0xaa, + 0xbe,0xc6,0x8a,0x73,0xf7,0x9d,0x2f,0xf7,0x5d,0x0,0x2e,0x20,0x81,0x34,0x5,0xc4, + 0xc,0xee,0x13,0x80,0x1b,0x0,0x58,0xad,0xfa,0xeb,0xe3,0x2,0xe0,0x5,0xd7,0xd6, + 0xeb,0xfe,0xfa,0x61,0x9,0x70,0x77,0x9,0x90,0x65,0xfd,0xf5,0x33,0xee,0x7b,0xc7, + 0x7b,0xaf,0x70,0xf,0xfe,0xc5,0x95,0x7e,0xbd,0xb3,0x4d,0x2,0x3a,0xc6,0x14,0x28, + 0xb5,0xaa,0xaa,0x98,0xe,0x8e,0x59,0xd3,0x34,0xa7,0x7b,0x9e,0xf6,0xfb,0x1f,0x71, + 0x2c,0xe,0xfe,0x7c,0xd9,0x5e,0x13,0xff,0x22,0x9a,0xf8,0xe7,0x58,0x96,0xe5,0x0, + 0x4d,0xfc,0x33,0xb4,0xef,0xc8,0xd7,0xff,0x8b,0x7f,0x71,0xaf,0x89,0x7f,0xf1,0xbc, + 0xe7,0x58,0x7f,0x2e,0xfe,0x4d,0xde,0xbf,0xb6,0x60,0xec,0xed,0xc0,0x58,0xbb,0xb5, + 0xc3,0xae,0xcf,0x60,0xbb,0x39,0xf5,0x1b,0xde,0x67,0x1e,0x17,0x2a,0x96,0x3,0x1e, + 0xba,0x28,0x35,0x5d,0xde,0x94,0x75,0x40,0x59,0x17,0x14,0x75,0x42,0xd1,0xb7,0xf8, + 0xbd,0xe2,0xbb,0x27,0xbe,0x83,0x26,0xf1,0xc9,0x7a,0x1,0xc7,0x50,0xe2,0x13,0xfb, + 0x1d,0xc7,0x18,0x9f,0x5e,0x7c,0xa1,0x9f,0x2f,0x65,0x7c,0xb2,0x7e,0x42,0xd9,0xe7, + 0x43,0xeb,0x2f,0x14,0xf1,0xb9,0xf4,0xe7,0x36,0x47,0xbd,0xa9,0x51,0x77,0xf2,0x1d, + 0x9,0x76,0x7a,0x85,0x23,0x34,0x5c,0xc3,0x59,0xb7,0x6e,0x97,0xaa,0xac,0xc,0x78, + 0xda,0xa2,0xd4,0x6c,0xf3,0xe4,0x53,0xd7,0x7c,0xd6,0xa1,0x4f,0xdd,0xf3,0xa9,0x83, + 0x53,0xf4,0x25,0x9f,0x7d,0x74,0x2e,0xf1,0xcb,0x34,0x4f,0xf6,0x6d,0x12,0x5a,0xfc, + 0x53,0xe4,0x5f,0x37,0x47,0xa1,0xc6,0x3f,0xf7,0xfc,0xc7,0xf8,0xe5,0xf1,0xeb,0xea, + 0x95,0xcf,0xb9,0x24,0x74,0xfd,0xf2,0x11,0x3f,0xe5,0xfc,0xd0,0xe6,0x5,0xce,0x4b, + 0x7,0x9c,0x9b,0xb6,0x5e,0xb0,0x9b,0xc3,0x32,0xfc,0x6d,0xe0,0x3c,0x87,0x55,0xa9, + 0x2a,0x8b,0x3,0x13,0xf3,0xe2,0x8a,0xda,0x46,0x95,0x6f,0x93,0xf9,0x4d,0x34,0xd7, + 0x7a,0x32,0xa9,0x2f,0x19,0x7f,0x2a,0xdf,0x91,0xbf,0x3b,0x7f,0xdd,0x79,0xd8,0x66, + 0x3e,0x56,0xf1,0xd7,0xd5,0x12,0x17,0xfd,0x92,0xf1,0x37,0xd5,0x33,0x1b,0x7d,0x8b, + 0xfc,0x23,0xff,0x31,0xfe,0xba,0xb3,0xb8,0xcb,0xf7,0x4b,0xc8,0xfc,0xe3,0xf9,0xc7, + 0xf3,0xb7,0xc1,0xc8,0x3f,0xf2,0xff,0xb,0xfc,0x6d,0xe7,0xfd,0x38,0xff,0x46,0xfe, + 0x73,0xe6,0x3f,0xc5,0xf7,0xef,0x67,0x9e,0xef,0x3e,0xea,0xfa,0x15,0xb1,0xf8,0xd, + 0xfc,0x2,0x6,0x6b,0xd1,0x89, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/ports.ico + 0x0,0x0,0x5,0x32, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x57,0x4f,0x48,0xa3,0x47,0x14,0x9f,0x4c,0xbe,0xc6, + 0x2e,0x6b,0x1a,0xf,0x2b,0x88,0x42,0x57,0xf1,0x60,0x3d,0x28,0x7b,0xf3,0x24,0x9, + 0xb,0xa6,0x3d,0x2d,0x14,0x29,0x78,0x8,0x34,0x5,0x6d,0x8b,0xff,0x50,0x50,0x5c, + 0x51,0x13,0xbd,0x2c,0xbd,0x2c,0x88,0x42,0x24,0x1e,0xfc,0x13,0x4,0x95,0x62,0x4f, + 0x1e,0x3c,0x54,0x13,0x58,0xec,0xdd,0x5b,0xf,0x3d,0x2c,0xdd,0xfb,0x76,0x6f,0x2e, + 0xc5,0x3a,0x9d,0x49,0xf2,0xe2,0xcb,0x7c,0x33,0xf3,0xcd,0x67,0x62,0xbb,0xb,0x3e, + 0x78,0x24,0x99,0x79,0xef,0xf7,0xde,0x9b,0x79,0xf3,0xde,0xb,0x21,0x1,0xe2,0x90, + 0xa6,0x26,0xc2,0x3f,0xdb,0xc9,0x8f,0xe,0x21,0x71,0x42,0xc8,0xa3,0x47,0xa5,0xdf, + 0x27,0x21,0x42,0x7e,0xe1,0x6b,0x2d,0x2d,0xa5,0xdf,0x3f,0x3d,0x20,0xe4,0xfb,0x87, + 0x84,0xb4,0xb7,0x97,0x7e,0x1f,0x70,0xbd,0xb7,0x5c,0xf6,0xb,0xae,0xc3,0xbf,0xf2, + 0x95,0xd2,0xba,0xa0,0x98,0x43,0x5c,0xd4,0xd7,0xd7,0x47,0x17,0x17,0x17,0xdb,0xf8, + 0x57,0x6,0x6b,0x4b,0x4b,0x4b,0xce,0xf2,0xf2,0x32,0x2b,0x14,0xa,0x4c,0x7c,0x8a, + 0xbd,0x81,0x81,0x1,0xac,0xcd,0x82,0xc1,0x60,0x5b,0x47,0x47,0x7,0xdd,0xdd,0xdd, + 0xd,0xa,0x19,0x90,0x3,0x1,0x59,0x1f,0xaf,0xc3,0xda,0xf0,0xf0,0xb0,0xb3,0xb7, + 0xb7,0x57,0xd4,0x17,0x84,0xe5,0xca,0xdf,0x31,0x57,0xf4,0x41,0x76,0x7c,0x7c,0xdc, + 0x19,0x1c,0x1c,0x74,0x64,0xfb,0xf0,0x1b,0xb3,0xbc,0x27,0x7e,0x73,0xff,0x9d,0x8d, + 0x8d,0x8d,0x20,0xda,0x67,0xd8,0x6,0x90,0xac,0xf,0xb2,0x89,0x44,0xc2,0x39,0x3c, + 0x3c,0xac,0x9c,0x95,0xac,0xaf,0xb3,0xf,0xb2,0xa3,0xa3,0xa3,0x46,0x7d,0x9d,0x7d, + 0x90,0x9d,0x99,0x99,0x71,0xe,0xe,0xe,0xb4,0xfa,0x62,0x4d,0xbe,0x3,0x2c,0xbb, + 0xb0,0xb0,0xe0,0xec,0xef,0xef,0x1b,0xf5,0xcf,0xce,0xce,0xb4,0xfa,0x63,0x63,0x63, + 0x4e,0x26,0x93,0x51,0x9e,0x3f,0xe8,0x9f,0x9e,0x9e,0x6a,0xcf,0x7f,0x68,0x68,0xe8, + 0x93,0x78,0x3c,0xee,0x28,0xee,0x5a,0x17,0x7f,0x15,0x77,0x77,0x77,0x17,0x6d,0xcf, + 0xce,0xce,0xfe,0xa1,0xba,0x73,0x88,0x5f,0xbe,0xb,0xec,0x83,0x7c,0x56,0x98,0x65, + 0x1c,0x79,0xf,0xf4,0x6b,0x61,0x9c,0xd7,0xe4,0xe6,0x47,0x29,0xc7,0x81,0x15,0x6f, + 0x8,0xbd,0x13,0x72,0x7c,0x7c,0x4c,0x89,0x4c,0x42,0x6,0xb3,0x86,0x5a,0x5a,0x18, + 0x6b,0x7c,0x52,0xe2,0x4f,0x9b,0xf4,0x2c,0xae,0x4,0xf3,0xef,0x6d,0x8c,0xfd,0x1a, + 0x65,0x4c,0xd4,0x19,0x5e,0x6e,0x8a,0xf5,0x6,0xea,0xcc,0x6a,0x48,0x6d,0xab,0xb5, + 0xb5,0x15,0xfc,0x2c,0xfa,0x13,0xe,0x87,0x2b,0x7e,0xeb,0xea,0xc5,0xc4,0xc4,0x44, + 0x95,0xe,0x60,0x70,0x39,0x7a,0x74,0x74,0x44,0x55,0xb5,0xc7,0x84,0xc7,0xdf,0xdc, + 0x67,0x62,0x6d,0x6a,0x6a,0xea,0x4a,0xac,0xb,0xc,0xfe,0x29,0x6a,0x40,0x80,0xe7, + 0x3a,0xb5,0xac,0x45,0x95,0xfd,0x91,0x91,0x91,0x8,0xd6,0x11,0x18,0xfc,0x53,0xe0, + 0xd0,0x8b,0x8b,0xb,0x97,0x7f,0x1e,0xb9,0xe0,0x7a,0x23,0x2,0xa3,0xec,0x1f,0x5d, + 0x5f,0x5f,0xa7,0xba,0x5a,0x25,0xe7,0x67,0x36,0x9b,0xfd,0x1b,0xcb,0x80,0x8e,0xc0, + 0x0,0xbc,0x9e,0x9e,0x1e,0xea,0x55,0x7b,0x80,0xb6,0xb6,0xb6,0xfe,0xc1,0x32,0xa0, + 0x23,0x30,0x0,0x8f,0xaf,0x69,0xf1,0x64,0xdc,0xed,0xed,0x6d,0x25,0x9e,0xc0,0x0, + 0xbc,0x7c,0x3e,0x6f,0xc4,0x3,0x36,0xe1,0x9,0xc,0x5b,0xff,0x30,0x73,0xbc,0x2b, + 0x83,0x7f,0xd4,0xcb,0x3f,0xf9,0x3e,0x3c,0xfc,0xab,0x1b,0x1e,0x9c,0x5f,0x2a,0x95, + 0xa2,0x90,0xcf,0xb5,0xe0,0x95,0xf3,0xb9,0x78,0x7e,0x9b,0x9b,0x9b,0xca,0x7c,0x56, + 0xe1,0xed,0xec,0xec,0x54,0xe1,0x81,0xe,0xb7,0x43,0x43,0xa1,0x50,0xb0,0xb7,0xb7, + 0x97,0x8a,0xd9,0x43,0xf5,0xae,0x0,0xf,0xa8,0xec,0xdf,0xb5,0x4a,0xb6,0xbf,0xbf, + 0x9f,0x36,0x37,0x37,0xd3,0xc9,0xc9,0x49,0x2a,0xdf,0x21,0xae,0xdf,0xb8,0x8e,0x3, + 0xa6,0xee,0xd,0x26,0x93,0x49,0x7a,0x79,0x79,0x19,0xd0,0xc5,0x66,0xd3,0x1f,0x70, + 0xed,0x59,0x5d,0x5d,0x15,0xb5,0xa0,0x82,0x57,0xb,0x9,0xbc,0xf3,0xf3,0x73,0xba, + 0xb2,0xb2,0x12,0xb0,0xed,0x31,0x5e,0x9c,0x4e,0xa7,0x3,0xa8,0xd6,0x41,0xbd,0xc0, + 0xb,0x25,0xdb,0x4c,0xdd,0x8f,0x94,0x3a,0x37,0xeb,0xc5,0xdc,0x9e,0xe1,0xfc,0xdd, + 0xcb,0x97,0xe,0xda,0x50,0xf6,0xa7,0xaf,0x52,0x29,0x87,0xcf,0x35,0x14,0xf4,0x60, + 0xfd,0xe7,0xf0,0xb7,0xac,0xa1,0x31,0xc2,0x42,0x4e,0x84,0x39,0xd4,0x8e,0x9,0x71, + 0xf3,0xdb,0x86,0x34,0x7b,0xd5,0x18,0x2d,0xf6,0x2d,0x3e,0x42,0x93,0x27,0xe4,0xa6, + 0x6f,0x25,0x1f,0xa8,0x22,0x70,0x51,0x55,0x9c,0xb9,0x5c,0xae,0xd2,0x9f,0xe4,0x7e, + 0x33,0x3d,0x3d,0x4d,0x8b,0xf0,0x48,0xb7,0xab,0xab,0xab,0xea,0xac,0xa5,0xb3,0x72, + 0xf5,0xab,0xf9,0xf9,0x79,0x38,0x33,0x57,0x9f,0x98,0x9b,0x9b,0x13,0x7b,0x54,0xa7, + 0xb,0x7b,0x18,0x1f,0x72,0x48,0x15,0x97,0xaa,0x5f,0x72,0xa,0x1a,0x74,0x5d,0x79, + 0xa3,0xd0,0xd7,0xf5,0x4e,0xd7,0x4c,0xe3,0xd7,0x7f,0x9b,0xdc,0xc6,0xb2,0xa,0xff, + 0x5d,0xf8,0x36,0xb5,0x4d,0x37,0x57,0xdb,0xf8,0x8f,0xe3,0xc6,0xf8,0x32,0xa9,0xf0, + 0xe5,0x33,0x53,0xe1,0xeb,0x6a,0xbd,0x5c,0x7b,0x4c,0xff,0xb,0x6e,0x8b,0xf,0x7c, + 0xd7,0xf8,0xb8,0xa6,0xd7,0xb,0xdf,0xe6,0x7e,0xef,0xf1,0x3f,0x7c,0xfc,0x5a,0xde, + 0xaf,0x8c,0xdf,0xd9,0xd9,0x29,0xff,0xaf,0xd2,0xce,0x2a,0xf2,0xbc,0x22,0xe1,0x2b, + 0x6b,0x5e,0x2c,0x16,0xab,0xfa,0xff,0xa3,0x62,0x8c,0x25,0xcf,0x2f,0xa6,0x19,0x46, + 0x60,0x26,0x12,0x89,0x2a,0x7c,0xd3,0x59,0xd8,0xcc,0x33,0x8a,0x33,0xb,0xc8,0xf8, + 0xaa,0x3a,0x66,0x62,0x15,0x1,0x3e,0x9e,0x4b,0x74,0xe7,0xe3,0x45,0x86,0xbe,0xa0, + 0x24,0xb1,0xb7,0xb6,0xb6,0x16,0x3e,0xc9,0xe7,0x9d,0xf5,0x6c,0xf6,0xa1,0x4e,0x5f, + 0x85,0x63,0xc2,0x45,0x32,0x62,0x6e,0xb,0x7c,0xf3,0xe2,0x5,0x4d,0x9f,0x9c,0x50, + 0x22,0xcf,0x56,0xac,0x7a,0xc6,0x12,0x32,0x5f,0x3e,0x7b,0x46,0x41,0xcf,0xb,0x1f, + 0xd3,0xd7,0xb9,0x5c,0xa0,0x6c,0x94,0x29,0x99,0xd3,0x40,0x26,0x63,0xc4,0xbc,0x7c, + 0xfa,0x3,0x7b,0xf3,0x34,0xce,0xde,0xbc,0xe2,0x4c,0x7e,0x63,0x7f,0x92,0xb8,0x2f, + 0x7e,0x4d,0x42,0xac,0x40,0x28,0xe2,0x20,0x7b,0x47,0xfe,0xe2,0x1c,0x61,0xd7,0x2b, + 0xe9,0xe2,0x1c,0xd6,0xce,0x39,0x46,0x6e,0xe6,0xb0,0xe5,0x26,0x3f,0x51,0x16,0x49, + 0x79,0xee,0x72,0xce,0xe3,0xdc,0xb5,0xc5,0xf0,0x22,0xf9,0xcd,0xe9,0xf6,0x4d,0x72, + 0x5e,0x18,0x5e,0xf6,0xf1,0x9b,0x51,0xed,0x79,0xc5,0x6f,0xc2,0xb0,0xb1,0xef,0x85, + 0x6b,0x63,0xbf,0xce,0xf1,0x9b,0xe6,0x4d,0x57,0x1d,0xae,0x67,0xfc,0x5e,0xf5,0x42, + 0x95,0xb,0xf5,0x8c,0xdf,0xa6,0xce,0xab,0x7a,0x5f,0x3d,0xe3,0x7,0xfb,0x3a,0xb2, + 0x9c,0x9d,0xad,0xed,0x13,0xcd,0x4c,0x6d,0xea,0x49,0xb2,0x7d,0x22,0xe5,0x84,0x1f, + 0xfb,0xb6,0x33,0xab,0xbc,0x87,0x75,0x14,0xb3,0x4d,0x5d,0xec,0xdb,0xc6,0x7f,0x57, + 0xf6,0xff,0xef,0xf8,0x55,0xfc,0x5f,0xd9,0xf7,0xf3,0xfe,0xee,0xed,0xdf,0xdb,0xbf, + 0xb7,0xff,0x71,0xda,0x47,0xfd,0xcb,0x65,0x5f,0x55,0x7b,0x75,0xfd,0xf,0x30,0x7c, + 0x92,0x6b,0xae,0xc1,0xf5,0x4f,0xf5,0x7f,0x4b,0xb2,0xaf,0x9c,0x89,0xfc,0xc6,0x2e, + 0xd7,0x57,0x2f,0xfb,0xba,0xfa,0xec,0xc7,0x7,0x9b,0xbb,0xd6,0xf9,0xe6,0x95,0x13, + 0x7e,0xec,0xeb,0xee,0xd8,0x8b,0x55,0xe4,0xd7,0xbe,0xa9,0xc7,0xda,0xbc,0x1,0xcd, + 0x1d,0xf8,0x22,0xac,0xa3,0x3b,0x13,0xaf,0x58,0x6f,0x99,0xfb,0x5a,0x7f,0x6c,0xb8, + 0x5e,0xf6,0x14,0xe,0x94,0xe2,0xd3,0xf1,0x2d,0x67,0x5d,0xbf,0xf6,0xb5,0xe7,0x7e, + 0xd7,0xf6,0xcb,0x3e,0x18,0xd9,0x27,0x5d,0xbf,0x7f,0x9c,0xbe,0x5a,0xfc,0x3c,0x7a, + 0xf5,0xbc,0xcc,0xc9,0x50,0xf4,0x2a,0x46,0x6b,0x67,0x42,0xa2,0xef,0x9,0x79,0x8c, + 0xf9,0xba,0x10,0x4c,0xb3,0xd7,0xd,0xac,0xc2,0xef,0x22,0xec,0x5f,0x96,0x6c,0xcf, + 0x66, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/network_active.ico + 0x0,0x0,0x4,0xb3, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x5a,0xbd,0x6e,0xdc,0x38,0x10,0x9e,0xc5,0x1a,0x31, + 0xe2,0x14,0x36,0x76,0x53,0xb8,0x5b,0x37,0x1,0xae,0xbc,0x37,0x88,0xab,0x7b,0x8e, + 0xab,0xe,0xf7,0xc,0x57,0xac,0x8,0xb8,0x49,0x15,0xe4,0x31,0xe,0x2e,0xae,0x4e, + 0x1a,0x7b,0xab,0x24,0x5d,0x9a,0x3c,0xc0,0x3e,0xc1,0xc1,0x65,0x3a,0xde,0x8c,0xa4, + 0x11,0x87,0xa3,0xa1,0x48,0xca,0xda,0xb,0x8d,0xf,0x6b,0x51,0x9a,0x6f,0x7e,0x44, + 0xce,0xc,0xd7,0x6,0x58,0xc1,0x19,0x5c,0x5d,0x1,0x7e,0xde,0xc0,0x9f,0x67,0x0, + 0xbf,0x1,0xc0,0xeb,0xd7,0xdd,0xf5,0xc7,0x17,0x0,0xff,0xe0,0xdc,0xf5,0x75,0x77, + 0xfd,0xee,0x25,0xc0,0x1f,0xaf,0x0,0x6e,0x6e,0xba,0xeb,0xbf,0x51,0xee,0x5f,0x7c, + 0xf6,0x17,0x94,0xc1,0x5f,0x71,0xa6,0x9b,0xa7,0x71,0x7b,0x6,0xc9,0xb1,0xbd,0xd8, + 0x78,0x82,0x71,0xcb,0x27,0x10,0xcb,0x79,0xef,0xc1,0x39,0xbf,0xc1,0xdf,0x37,0x1d, + 0x4f,0xb,0x87,0x73,0xce,0xf5,0x32,0x4e,0xa0,0xe7,0x68,0xf6,0x7b,0xdf,0x34,0xfb, + 0x48,0x9e,0xe6,0x48,0xee,0x70,0x38,0x74,0xb2,0x8e,0xee,0xe2,0x7d,0xf9,0xe3,0x62, + 0x3b,0x48,0x86,0xed,0x27,0xd9,0x4e,0x26,0xe8,0x2b,0x91,0xdf,0x8c,0xe4,0xfd,0xc0, + 0x31,0x25,0xcf,0x3e,0x6f,0x2f,0xb6,0x2d,0x48,0x9e,0x65,0xc9,0x7e,0xe9,0x3,0xf, + 0x96,0x6f,0x9a,0x26,0x82,0x6b,0x5c,0x2f,0xf,0xe1,0x39,0xc1,0x11,0xae,0x5d,0x2b, + 0xbf,0x47,0xbb,0x69,0x50,0xac,0xe8,0xba,0x8b,0x59,0xd0,0x2f,0x39,0x64,0x3c,0x9c, + 0xd0,0x6f,0xd,0x19,0x43,0xa7,0x64,0xa3,0xf7,0x87,0xf2,0xda,0x7f,0x2,0x5d,0xf, + 0xef,0x5e,0xf0,0xb8,0x60,0x3b,0xb0,0xfc,0xc3,0xc3,0x43,0x6b,0xf7,0xe3,0xe3,0xe3, + 0x0,0xba,0xa6,0xf9,0x8e,0x23,0x86,0x5c,0x9c,0xec,0xeb,0xa7,0xbf,0x60,0x4,0xe2, + 0xd8,0xd8,0x6b,0x7a,0x18,0xec,0x3f,0x3d,0xe7,0xbf,0xbf,0xf7,0xfe,0x1e,0x5a,0x90, + 0x3c,0xd9,0xb1,0x7d,0xb5,0x9d,0x94,0x67,0xfd,0x1c,0x3,0x46,0xad,0xfe,0xd4,0xc8, + 0xc9,0x93,0xfe,0x76,0xdd,0xf4,0x9f,0x12,0xb4,0x36,0x8,0x53,0xf2,0xdf,0xd6,0xf8, + 0x66,0x56,0x8,0x74,0xfb,0x6b,0xf,0x7a,0x5d,0xc0,0xa0,0x7b,0xf4,0xcc,0x39,0xa2, + 0x19,0x83,0xf2,0xc,0xa6,0x9b,0x36,0xdf,0x70,0x9e,0xf9,0xf0,0x62,0x4a,0x63,0xd1, + 0x48,0xe5,0x1c,0xed,0x4b,0xd1,0x7d,0x33,0xff,0xa8,0x75,0xdc,0xdd,0x77,0xc3,0xae, + 0x81,0x7e,0x7f,0x5,0xe,0xb1,0xfe,0xac,0x7c,0xa0,0xf2,0x42,0xbb,0x1f,0xd,0x3e, + 0x9a,0xf,0x7b,0x14,0xd2,0xf9,0x4d,0xf1,0x75,0x7a,0x15,0x84,0x5d,0xf4,0x5c,0xa7, + 0xb3,0x8c,0x4f,0xc6,0x88,0xed,0xe1,0x89,0x38,0x7f,0x2c,0xc5,0x97,0xc9,0xa7,0x36, + 0x9f,0xb9,0x6,0x4a,0xf2,0x2b,0xf,0x19,0xbf,0x29,0xe4,0xf2,0xad,0xce,0x9b,0x6c, + 0x83,0xcc,0xbb,0xd2,0xf7,0x68,0x9d,0x64,0xb8,0xe2,0x98,0xdb,0x83,0xef,0xb3,0x9c, + 0xce,0xc7,0x83,0xbd,0xe2,0x5d,0xe4,0x7c,0xe,0x8,0x7c,0x32,0x47,0x5b,0xb9,0x36, + 0xb3,0x37,0x23,0xff,0x53,0x39,0xbb,0xc6,0x3e,0x19,0x5b,0x8b,0x43,0xf3,0x71,0xac, + 0xac,0x7a,0x20,0x39,0x73,0x5c,0x9a,0x8f,0x64,0x74,0x7d,0x78,0x2e,0x9f,0xc4,0x73, + 0xf9,0x72,0x31,0x2c,0xe1,0x93,0x9c,0xa9,0x35,0x58,0xcb,0xc7,0x9c,0x19,0xfb,0xb2, + 0xc3,0x1f,0xdf,0xfa,0x3b,0xb7,0xc3,0x67,0x2f,0x7,0x7c,0xee,0xe1,0x86,0xb9,0x5d, + 0xb,0x7,0x6f,0xdb,0x1a,0xe6,0xb0,0x66,0xb9,0xcb,0x18,0x7,0xc4,0x71,0xd7,0xd5, + 0x2d,0x6c,0xa1,0xe1,0x57,0x8,0x75,0xeb,0xf7,0x97,0x35,0x5e,0x4d,0x9b,0x9b,0x41, + 0xc9,0xf3,0x49,0xde,0xa1,0xaf,0xca,0xd7,0xb4,0x4e,0x66,0xa2,0xae,0x5,0xbe,0x38, + 0x1f,0xc,0x5c,0x99,0x1c,0x9d,0xab,0x73,0xb2,0xd6,0x15,0xd5,0xbb,0xca,0xba,0x67, + 0x71,0xd7,0xf0,0x73,0x90,0x88,0xc7,0xca,0x33,0x21,0x8f,0xc7,0x31,0x5e,0x82,0x5f, + 0x72,0xcb,0x5a,0x3b,0x83,0x3f,0x5b,0x27,0xb5,0x8e,0x9a,0xf8,0xd7,0xd6,0xcd,0x9c, + 0x8e,0x76,0x5e,0xd9,0x28,0xd7,0x4b,0xbc,0x6e,0x7c,0xba,0xd6,0xb9,0x89,0x9a,0x5f, + 0x58,0xa7,0xb5,0xfd,0xa5,0xd0,0x7d,0xc0,0x54,0xce,0xac,0xd5,0x21,0xfb,0x2,0x5e, + 0x27,0xd3,0xef,0x20,0xc4,0x28,0xa7,0x2b,0xd5,0x27,0xa4,0xd6,0x50,0xd8,0x83,0xf1, + 0x59,0x70,0xd2,0x1f,0x63,0xf,0x95,0x80,0x39,0x75,0x3f,0x62,0x70,0x8f,0xf8,0x73, + 0x43,0xf7,0x65,0xe3,0x9e,0x67,0xba,0x4f,0xe1,0x77,0x69,0xf5,0x15,0x72,0x7d,0xa5, + 0xf6,0x8c,0xc5,0x6b,0xf1,0x93,0x3c,0xf7,0x18,0xdc,0x67,0x30,0x7f,0x1b,0x1f,0x88, + 0x6c,0x5d,0xa4,0x8f,0x61,0x7e,0xb9,0xef,0x96,0xec,0x6b,0xd8,0x6e,0x1d,0x9f,0x39, + 0xfc,0xe9,0xf5,0x1f,0xf4,0x2f,0xdd,0xf7,0xe8,0xf1,0x9c,0x3e,0xc8,0xca,0x73,0x1a, + 0x2a,0x96,0x55,0xa3,0x74,0xaf,0x15,0xf7,0x5d,0x3f,0xce,0xfd,0xdd,0x71,0x8d,0xcf, + 0xae,0x86,0xf7,0xf7,0x5,0xf1,0x99,0xe2,0x3c,0xca,0x15,0x2b,0x9c,0x23,0xac,0x7b, + 0x5c,0x86,0x5e,0x4c,0xe0,0x80,0x38,0x22,0x9e,0x56,0x5d,0x1f,0x76,0x83,0xb8,0x85, + 0xd0,0x87,0xb9,0xab,0x5a,0xaf,0xab,0x46,0xae,0x37,0xab,0x8e,0x79,0x8d,0x5e,0xb5, + 0x76,0xa6,0xf2,0x67,0xce,0x8e,0x62,0xbb,0x79,0xdd,0x45,0x3d,0x8,0xeb,0x4a,0xd5, + 0xfe,0x71,0x1e,0x8f,0x7b,0x8d,0x4c,0x4f,0x29,0xfd,0xe5,0xef,0x71,0x8b,0x7b,0x3f, + 0xa3,0xc7,0xe9,0xed,0x6,0xde,0x23,0xb9,0x9e,0x33,0xf2,0x57,0xc5,0x77,0x8e,0x7e, + 0xde,0x2f,0xa1,0x86,0x28,0x18,0x79,0x5f,0xf7,0x74,0x55,0xba,0x13,0x7d,0xa4,0xf5, + 0x5e,0xad,0xfb,0xb2,0x66,0xff,0xdf,0xfa,0x59,0xf7,0xcf,0xd6,0x3f,0xab,0xaf,0x5e, + 0x48,0xbf,0xfc,0xbe,0xab,0xaa,0xef,0x5e,0x4c,0x7f,0xd0,0xed,0xdc,0x4c,0x1b,0xc6, + 0xb9,0xa8,0x24,0x77,0x7a,0xed,0xbf,0xee,0x3d,0xe7,0xe8,0xaf,0xa9,0x6b,0xb1,0xff, + 0xb1,0xd,0xfa,0xdc,0x60,0xe9,0x1d,0xee,0x89,0x3c,0xc8,0x9c,0x25,0xf5,0x3b,0xe5, + 0xbf,0x5,0x6b,0x4c,0x9d,0x33,0xac,0x73,0x8c,0xfe,0x94,0xf9,0xc7,0xda,0x83,0x45, + 0xe7,0xf,0xa1,0x5b,0xae,0xa9,0x3a,0xfd,0x5e,0xf8,0x58,0x67,0x8b,0x3e,0xa7,0x48, + 0xfd,0xcc,0x9f,0x7b,0x7,0xd6,0x3a,0x70,0x5,0x36,0xa4,0xce,0x48,0x73,0x86,0xb4, + 0x21,0x9c,0x3b,0xa,0xce,0x82,0x89,0x9c,0x3e,0x17,0x52,0xa7,0x75,0x9e,0x8e,0xe6, + 0x26,0xf2,0x4d,0x69,0xe,0xb0,0x72,0x82,0xac,0xb,0x32,0x27,0x85,0xef,0xf1,0xa7, + 0xfb,0xd2,0xe7,0xf8,0xbf,0x44,0x3f,0x5c,0x93,0x3,0x86,0x3e,0xa5,0xf7,0x7f,0xce, + 0xb9,0x2a,0xa5,0xbf,0x64,0xc8,0xb3,0xc4,0xd2,0xfa,0xe9,0xd3,0x3a,0x7,0xeb,0xf3, + 0x70,0x6a,0x4f,0x2e,0xa1,0x9f,0x38,0xfc,0xfd,0x9b,0x11,0xb4,0x7e,0x38,0x41,0xfc, + 0x23,0xfd,0xed,0x59,0x3a,0xad,0xff,0x54,0xf1,0x2f,0xf5,0xff,0x94,0xf1,0xb7,0x60, + 0x7d,0x1f,0x72,0xa,0xff,0x73,0xb9,0x4e,0x9f,0xa3,0x97,0xd0,0x2f,0x6d,0x98,0x33, + 0x96,0xd0,0xcf,0x36,0xd4,0xe4,0xa0,0x25,0xbe,0x57,0xb0,0x6c,0x38,0x55,0x9e,0xb5, + 0x6,0xbe,0xd1,0x1d,0xfd,0x17,0xc2,0xd3,0x1e,0xd6,0xb7,0x0,0xab,0x1e,0xf0,0xe3, + 0x9,0x71,0x8c,0xe1,0x62,0xd1,0x55,0x8f,0x35,0xe2,0x1c,0xef,0x5d,0x22,0x76,0x88, + 0xc6,0xf5,0x7f,0x3b,0x4a,0xe1,0x80,0x38,0x22,0x9e,0x60,0xe7,0xff,0x3,0xdb,0x9b, + 0xc6,0x7d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_disabled.ico + 0x0,0x0,0x4,0x86, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xb5,0x59,0xbd,0x6e,0x14,0x31,0x10,0x9e,0x44,0x97,0x48, + 0x88,0x22,0x57,0x4,0x29,0x1d,0x57,0x52,0xf2,0x8,0x17,0x9,0xd1,0x92,0x22,0x5b, + 0x43,0x85,0x78,0x8a,0xc4,0xa2,0x4a,0x7,0x8f,0x70,0x42,0x14,0x91,0x23,0x41,0x17, + 0xd1,0xf1,0x6,0xe9,0xee,0x15,0x52,0xf2,0xa,0xc6,0xbb,0x3e,0xdf,0x7a,0x66,0x67, + 0x3c,0xe3,0xd,0x58,0xb2,0xbe,0xf3,0xcf,0xce,0x8f,0x3d,0x9e,0x19,0xfb,0x0,0xe, + 0x60,0x1,0xcb,0x25,0x44,0x5c,0xc1,0xa7,0x5,0xc0,0x5b,0x0,0x38,0x3d,0x4d,0xed, + 0x5f,0xc7,0x0,0x3f,0x62,0xdf,0xd9,0x59,0x6a,0xdf,0x3c,0x3,0xf8,0xf8,0x1c,0x60, + 0xb5,0x4a,0xed,0xdb,0xf8,0xdd,0x9f,0x38,0xf7,0x55,0xfc,0x26,0xfe,0x8c,0x3d,0xa9, + 0xbf,0x2f,0xeb,0x5,0xd4,0x4a,0x30,0x20,0xad,0x43,0x71,0xce,0xa1,0xb9,0xb9,0x4d, + 0x30,0xd6,0x50,0xd4,0x44,0x23,0xcf,0x79,0x78,0x78,0x40,0xf8,0x7d,0xb3,0x29,0xd0, + 0xed,0xbf,0xeb,0xcb,0x8e,0xd5,0x5e,0x86,0xdc,0x97,0x69,0xdd,0xdf,0xdf,0xf,0xf8, + 0xf8,0xf8,0xb8,0x9b,0x9b,0xbe,0x4f,0xb4,0x42,0x48,0x3c,0x2,0xd2,0x21,0xd3,0xa0, + 0x72,0x24,0x5a,0x99,0x7f,0x9e,0x87,0x74,0x98,0xf0,0xcf,0xdf,0x66,0xfe,0xa9,0xed, + 0x2,0xd6,0xdf,0x21,0xfd,0xb3,0xcc,0x19,0x31,0xff,0x52,0x8e,0x54,0x8b,0x35,0x17, + 0xf5,0x97,0x68,0xe6,0xb5,0xe5,0xf8,0xb,0x7b,0x37,0xa1,0xcd,0xf1,0xa7,0x7a,0x4b, + 0xba,0x70,0xfc,0xf3,0x9c,0x4c,0x4b,0xc2,0xfc,0x2d,0xc7,0x9f,0xf2,0x2b,0xf6,0x17, + 0xd1,0x28,0xc7,0x25,0xfd,0xb2,0xe,0xd7,0xd7,0xd7,0x88,0x46,0xfe,0xb6,0xe4,0x2f, + 0xd9,0x70,0xfe,0x36,0x23,0xdd,0x27,0x6e,0x7d,0x29,0xd,0x7a,0xb6,0x6a,0xfc,0x29, + 0x5e,0x13,0xa4,0xe3,0x7d,0xd9,0x9e,0x87,0xe0,0x5d,0x8,0xdd,0x22,0xe1,0x76,0xb9, + 0x6b,0xf7,0xfd,0x3e,0x62,0xc7,0xe0,0xdd,0x88,0xbd,0x9f,0x89,0xee,0x66,0xf0,0x37, + 0xd9,0xcf,0x7c,0x3d,0x86,0x5a,0x61,0xf7,0x46,0x40,0xa9,0x22,0xbd,0x73,0x9f,0x62, + 0xbb,0xe4,0xfc,0xd9,0xfc,0x90,0xe6,0x8f,0xb0,0xdd,0xda,0xfc,0x82,0xcd,0x3f,0xe5, + 0xf9,0x36,0x3f,0x85,0xcf,0xde,0xe8,0xaf,0x32,0x4d,0x8b,0xdf,0xe4,0x69,0x8d,0xf2, + 0xe1,0xf3,0x8b,0xfd,0xa8,0xa4,0x63,0x5d,0xbe,0x91,0xa6,0x65,0xfd,0x24,0x7f,0xc2, + 0xfb,0x57,0x9b,0x9f,0xa5,0x98,0xf7,0x99,0xfa,0xdb,0x39,0x7e,0x97,0xda,0x8e,0x64, + 0x53,0x9c,0x7c,0xd2,0x5c,0x69,0x7d,0x39,0xdf,0x42,0x6d,0x45,0xf3,0xed,0x14,0x6b, + 0x7e,0x1a,0xc7,0xb6,0xa9,0xee,0x74,0xbc,0xe6,0xb7,0xad,0x48,0x69,0xb6,0xf8,0x71, + 0x10,0xfc,0xc,0xa5,0x59,0x5b,0x3f,0x4a,0xf3,0xea,0xea,0xa,0xa1,0x74,0x36,0x39, + 0xf9,0x28,0xcd,0x1c,0x23,0x24,0x7f,0xdf,0x12,0x77,0xb4,0xf8,0x63,0x89,0x21,0x12, + 0xad,0x39,0xf2,0xcd,0x8d,0x4f,0x28,0x4e,0x5d,0xbc,0xc,0x7e,0x73,0x12,0xe3,0xd2, + 0x49,0xc4,0x2f,0x61,0xfb,0xe6,0x5d,0xf0,0xdf,0x72,0x3b,0x62,0x3f,0xee,0x7f,0xc6, + 0xb8,0xf4,0xbe,0x82,0xbf,0xf7,0xd8,0xc7,0xab,0x98,0x42,0xc3,0x6b,0x18,0xe3,0xd6, + 0x87,0x67,0x50,0x2b,0x55,0x3b,0x52,0x90,0xd6,0x72,0xbc,0xf9,0x5c,0xe2,0x3d,0x10, + 0x63,0xda,0x30,0x4e,0xf7,0x53,0xda,0x5f,0x1c,0xdf,0x86,0x99,0x7b,0x7a,0x65,0x61, + 0x78,0x28,0xb9,0xb3,0x1c,0x4f,0x88,0x8f,0x6,0x8e,0x87,0x24,0xbf,0x44,0x1b,0xc7, + 0x17,0x57,0xd0,0x1b,0xe9,0x8c,0x7d,0x38,0x6f,0xb0,0xc5,0xae,0x52,0xfe,0x51,0x6e, + 0xbe,0x6d,0x5f,0x7f,0x9c,0x33,0x8f,0xf4,0xa7,0xf9,0x85,0x9b,0xc8,0x4f,0xf3,0x5f, + 0xbb,0xfc,0x12,0x8f,0xf6,0xf5,0xa7,0xbc,0x29,0x8f,0xb1,0xca,0xf6,0x63,0x8d,0xcd, + 0x9c,0x8d,0x72,0xf6,0x54,0xca,0x4f,0xef,0x2d,0xda,0x5a,0x61,0x1e,0xb4,0xd6,0xe3, + 0x84,0x16,0xbb,0xb5,0x18,0x6e,0xc9,0xb,0xe6,0xfa,0xc,0x4b,0x9c,0x6b,0x95,0x5f, + 0xda,0xa7,0x9a,0xfc,0x9a,0xff,0xd1,0x6c,0x81,0x93,0x1f,0xe7,0x92,0x76,0x94,0x6c, + 0x1,0x18,0xfb,0x97,0xf2,0x1e,0x10,0xfc,0x3f,0xe5,0x51,0xcb,0x83,0xb4,0x7b,0x42, + 0xce,0x33,0xa4,0x3b,0x29,0xdd,0x27,0x4e,0x7e,0x89,0x36,0x8d,0xef,0x34,0x67,0xa0, + 0xb4,0x5b,0xe4,0xd7,0x72,0x8,0xc9,0xbe,0x80,0xf1,0x11,0x92,0x1e,0x9a,0xfc,0x16, + 0xda,0xda,0x5a,0x59,0x73,0x20,0xcb,0xfa,0x6b,0xf9,0x95,0x26,0x7f,0x4b,0x9e,0x45, + 0xf3,0x2d,0xa9,0xcd,0xe6,0x5d,0xdd,0x51,0xcc,0x97,0xe,0x43,0x77,0x79,0x10,0xfc, + 0xed,0x2a,0xe6,0x59,0xcb,0x88,0x37,0x11,0xd7,0xa9,0xdd,0xf7,0xf7,0xe3,0xc3,0x3c, + 0x1f,0xb1,0xab,0xe2,0x16,0xb5,0xef,0x86,0x3c,0x6c,0x15,0xeb,0x1a,0xc6,0x3c,0xcc, + 0x2d,0xa1,0x56,0xaa,0xe7,0x6d,0x26,0xd2,0xca,0xcd,0x13,0xf2,0xaf,0xd9,0xbe,0x78, + 0x57,0xd9,0xf8,0x32,0xd4,0x92,0x8f,0xd5,0x8e,0x24,0x7f,0x4a,0xb0,0xe0,0x25,0xc5, + 0x4f,0x47,0x65,0x10,0xef,0xf,0x52,0x3c,0x90,0xee,0xfe,0x65,0x9e,0xc1,0x15,0x12, + 0xc7,0x91,0x1c,0x92,0xbe,0x5a,0x7c,0x29,0x73,0x1f,0x86,0xc7,0x7e,0x7d,0xb0,0xc, + 0x7b,0xfe,0x26,0xfd,0x35,0xa4,0xf9,0x28,0xcd,0x1b,0x4b,0x3f,0x68,0x95,0xc1,0x8a, + 0xd3,0xb5,0x77,0x61,0xa4,0x47,0xdb,0x93,0xfe,0xc0,0xf1,0x7e,0xaa,0xfe,0xd3,0xb7, + 0x9f,0x71,0x1d,0x28,0x7f,0x2d,0x36,0xce,0xd5,0x9f,0xcb,0xaf,0x35,0xfd,0x69,0xe, + 0x62,0x95,0x81,0xf2,0xa7,0xe3,0x15,0xdb,0x10,0xed,0x1f,0xdf,0x7b,0xf4,0x1c,0xcd, + 0x2e,0x83,0x6c,0x7b,0x92,0xfe,0x52,0x6e,0x44,0xdf,0x4e,0xa7,0x3c,0x68,0x95,0xcf, + 0xbf,0x76,0xb7,0xc9,0x58,0x7f,0x73,0x73,0x8c,0xaf,0x99,0xfa,0xa4,0x7e,0x5e,0x8b, + 0xff,0x93,0xfe,0xf7,0x90,0x64,0x28,0xe5,0xc0,0xfe,0x2f,0x8d,0xcd,0xc9,0xa3,0xb5, + 0x71,0xeb,0xfd,0xc6,0x72,0x4f,0xd0,0xde,0x12,0x34,0x19,0xac,0x77,0x82,0xff,0xa9, + 0x3f,0x6f,0xff,0x6d,0xf7,0xa4,0xb9,0x77,0x31,0xed,0x8e,0x36,0x47,0x7f,0xcd,0xfe, + 0x5b,0xd7,0xa9,0xe5,0x9e,0x48,0xed,0x5f,0x7b,0xf7,0xb6,0xdb,0xa8,0x1e,0xff,0x6d, + 0xbe,0x67,0x1a,0x37,0x24,0xbf,0x69,0xf9,0x9f,0x11,0xc7,0xca,0x76,0xd4,0x64,0xa8, + 0xdd,0x23,0xb4,0xd8,0xa3,0xdd,0x4b,0x33,0x4a,0x32,0xd4,0xf4,0x97,0xd6,0x9c,0xf2, + 0xa6,0xf7,0xd5,0x8c,0xf4,0xbd,0x5c,0xf3,0xdd,0x35,0xfd,0x25,0xde,0xd2,0xbd,0x56, + 0xba,0xbb,0x49,0xeb,0x50,0xd3,0x5f,0x7b,0x3,0x93,0x78,0x4b,0x77,0x3b,0xcb,0xff, + 0x1b,0x54,0x2e,0xe9,0x7d,0xa4,0x55,0xff,0xa7,0x9c,0xff,0x56,0xde,0xda,0xdb,0x2, + 0xa7,0x3f,0x95,0xe1,0x5f,0xed,0xff,0x1c,0xde,0xd6,0x7c,0xb7,0x75,0xff,0xe7,0x9c, + 0xff,0xb9,0x32,0xc0,0x8c,0xfd,0x6f,0x8d,0x63,0xd2,0xfb,0x82,0xf6,0xee,0xc0,0xc8, + 0xa,0xdb,0xee,0xf2,0x85,0xf7,0x9b,0xc3,0xae,0x5b,0x1f,0x78,0xef,0xa0,0xeb,0xce, + 0xcf,0x23,0x6e,0xb6,0xdd,0xe2,0xc2,0xfb,0xcf,0xab,0xae,0x3b,0x5a,0x46,0x74,0xbb, + 0x7e,0x48,0xf3,0xfa,0xf9,0xfd,0x77,0xde,0x77,0xb1,0xb4,0xe0,0x16,0xb7,0xef,0xfe, + 0x2,0x8,0xfb,0x4a,0x22, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cartridge.ico + 0x0,0x0,0x1,0xcb, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x57,0x3b,0x4e,0xc3,0x40,0x14,0x1c,0xa4,0x28,0x51, + 0x44,0x11,0x17,0x29,0xd2,0xe1,0x92,0x92,0x1b,0x90,0x8a,0x73,0x20,0x17,0x8,0x89, + 0x1b,0xd0,0x40,0x49,0x49,0x95,0x33,0x50,0x21,0xd1,0xc1,0x5,0x38,0x7,0xe2,0x0, + 0xc8,0x25,0x5,0x92,0x79,0x8e,0x85,0xb3,0x36,0xbb,0xeb,0xdd,0xf5,0x3e,0x7b,0x9, + 0xfb,0xa4,0x51,0x62,0xc7,0xef,0x8d,0x3f,0x9b,0x99,0x31,0x70,0x80,0x9,0x92,0x4, + 0xf4,0x99,0xe2,0x72,0x2,0x9c,0x1,0x58,0x2e,0xab,0xed,0xe7,0x29,0xf0,0x48,0xfb, + 0x56,0xab,0x6a,0xfb,0x6e,0xe,0x5c,0x1c,0x2,0x69,0x5a,0x6d,0x3f,0x50,0xdf,0x7, + 0x1d,0x7b,0x4c,0x3d,0xf4,0x95,0xf6,0x54,0xfb,0xcb,0x5a,0x4f,0x60,0x52,0x45,0x7, + 0xd4,0x75,0xfd,0x52,0x74,0x42,0x37,0x83,0x7e,0x7f,0x7a,0x2f,0x8a,0xab,0x57,0x39, + 0x86,0xec,0x2f,0x3f,0x45,0xd8,0xf4,0x6f,0x8f,0xdb,0xa0,0x81,0x7a,0xbf,0x61,0x7f, + 0xbb,0x6c,0xfb,0xb3,0x2c,0x6b,0x60,0x68,0x7e,0x64,0x9b,0x6,0x86,0xec,0xaf,0x9f, + 0x95,0x80,0xa1,0xd7,0xcf,0x58,0xfd,0x86,0xff,0xc1,0xba,0xf2,0x45,0x51,0xbc,0xcd, + 0xdc,0x51,0xea,0xc,0xc9,0xcd,0x56,0x6f,0x7e,0x74,0xe6,0x7e,0xaa,0x3c,0x43,0xb1, + 0xba,0x74,0xc6,0xaf,0xee,0x78,0xd4,0x21,0xdf,0xcf,0xb5,0xef,0xbc,0xb6,0x56,0x89, + 0x9a,0x65,0x3b,0x4f,0xa6,0x5d,0xa2,0x86,0xed,0xe3,0x3c,0x55,0xb9,0xce,0x6b,0x6b, + 0xaf,0xa8,0xc1,0x21,0x9c,0x5f,0x5b,0x5b,0x45,0x8d,0x8d,0xf3,0xf4,0xf3,0x64,0xde, + 0x22,0x7a,0x4c,0x8,0x7a,0x10,0xe2,0x3c,0x47,0x8d,0xae,0x2b,0x7,0xf9,0xd,0x6e, + 0xbc,0xa1,0xf4,0x2b,0x8a,0xd0,0x38,0xc1,0xce,0xb7,0xce,0xe7,0xca,0x2b,0x10,0xcb, + 0xd6,0xb7,0x78,0x7d,0x8c,0xd1,0xd7,0xb8,0xd7,0xd,0x97,0xef,0x71,0xfb,0x20,0xb7, + 0x8f,0xc5,0xf9,0x7a,0xdf,0xe3,0xf6,0x69,0x5f,0xbe,0xcd,0x3d,0x9f,0xfb,0xfe,0xa8, + 0x7c,0x93,0xdb,0x97,0xe3,0xfc,0xbf,0x3f,0x5f,0x97,0x93,0x86,0xca,0x4d,0xa1,0xfb, + 0x17,0xc7,0x7c,0x4f,0x19,0xa2,0xae,0x1c,0xb,0xca,0x4b,0x33,0x36,0x94,0x39,0x2c, + 0x25,0xac,0xb1,0xcb,0x61,0xb7,0x89,0xf2,0xa,0x65,0xd5,0x37,0x8f,0x99,0xe7,0x33, + 0xae,0xfb,0x6d,0x9a,0xdf,0x24,0xfc,0x7d,0xd6,0x93,0xf5,0xfa,0x8a,0xfc,0x41,0xf3, + 0x9b,0xe6,0x61,0xe7,0x7c,0xac,0xe1,0xb7,0xc9,0x83,0xce,0xf9,0x30,0xf2,0x47,0xfe, + 0x80,0xf9,0x5d,0xcb,0x17,0xbf,0xe9,0xfb,0x86,0xf3,0xfb,0x47,0xe4,0xd7,0xf2,0x8f, + 0xfd,0xfc,0x4d,0xf3,0xbc,0x73,0xbe,0x8f,0xfc,0x91,0x3f,0xf2,0x4b,0xf9,0xeb,0x7e, + 0x7,0xec,0x4b,0xfe,0x8c,0xfc,0xff,0x8f,0x9f,0xe9,0x1d,0xf8,0x57,0x7d,0x1,0xa7, + 0x9f,0xc0,0xd1,0x58,0xf8,0x6,0x67,0x33,0xf6,0x36, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette.ico + 0x0,0x0,0x2,0xc1, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x6e,0xe3,0x30,0x10,0x7d,0x6,0x8c,0x0, + 0xc1,0x16,0x71,0x91,0x22,0xdd,0xba,0xdc,0x32,0x47,0x48,0xb5,0xe7,0x48,0x15,0xe4, + 0x18,0x2c,0x53,0xee,0x31,0xb6,0xda,0x3a,0xa5,0x4f,0x94,0x5,0x36,0x5a,0xc7,0xf9, + 0x81,0x21,0x2d,0xd3,0x1e,0xe,0x87,0x14,0x45,0xc9,0x56,0x3e,0x7a,0xc0,0x80,0xe2, + 0x67,0x7e,0x14,0x39,0x33,0x12,0x30,0xc1,0x14,0xb3,0x19,0x4c,0x3b,0xc7,0xf5,0x14, + 0xf8,0x9,0xe0,0xf4,0xb4,0xee,0xdf,0x1e,0x1,0x7f,0xcc,0xd8,0xd9,0x59,0xdd,0xbf, + 0x39,0x6,0xae,0xbe,0x1,0xf3,0x79,0xdd,0xff,0x6d,0xf8,0xee,0xcc,0xda,0x1f,0x86, + 0xc7,0x3c,0x9a,0x91,0x7a,0xdc,0xe2,0x62,0x8a,0xf7,0xa,0x5d,0x48,0x80,0x32,0x6d, + 0x29,0xa1,0x6e,0x2d,0xcc,0xd3,0xb6,0x75,0x63,0x8b,0xc5,0xc2,0x9b,0x5f,0xf3,0xe8, + 0x1d,0x1f,0xe5,0x5f,0xaf,0xdd,0xc8,0x90,0xe0,0x78,0xdd,0x3a,0xce,0x4f,0xe1,0xd6, + 0xd0,0xd6,0x93,0xc5,0xf8,0x29,0x45,0x75,0xb3,0xf9,0x80,0x1f,0xd8,0x8e,0xbb,0x56, + 0x29,0xe5,0xad,0xe5,0xf3,0x9c,0xdf,0xdb,0x4f,0xc6,0x13,0x9b,0xf7,0xfa,0x1b,0x72, + 0xfb,0x1e,0xeb,0x4b,0xfb,0xff,0xb4,0xac,0xf4,0xe3,0xf2,0x9f,0x5e,0x55,0x95,0x7e, + 0x59,0xfe,0xd7,0xd5,0xfd,0x5f,0xfd,0x50,0xdd,0xeb,0x67,0xf3,0xbc,0xda,0xb4,0xaf, + 0xab,0xa5,0x7e,0x79,0x32,0xad,0x21,0x62,0x53,0xf9,0x19,0xfa,0x4,0x70,0xe7,0x41, + 0x4d,0xcc,0x3b,0x40,0x33,0xd9,0x75,0x14,0x36,0xce,0x98,0x70,0xb3,0x8e,0x37,0x2e, + 0xce,0xfc,0x3a,0x1a,0xd0,0xa1,0xf7,0x85,0xd2,0xb8,0xd6,0x6f,0x9c,0x4b,0xc5,0x3d, + 0xc0,0x8b,0x5d,0x41,0xfc,0x13,0xe2,0xe1,0x76,0x3c,0x11,0x7,0x9b,0xe2,0xa1,0xbb, + 0xf3,0x7c,0xbd,0x14,0x97,0xa5,0x78,0x98,0xdd,0xa,0xf6,0x51,0xc4,0xec,0x94,0xc6, + 0x45,0xfb,0x84,0xd8,0x4a,0xf5,0x6e,0x63,0xa8,0x86,0xb8,0x56,0x94,0xc7,0x63,0x2d, + 0xd1,0xeb,0xe4,0x51,0x1d,0xde,0xda,0x88,0xbc,0xe0,0x1d,0x91,0xf1,0xc0,0x37,0x89, + 0x9f,0xf3,0x6e,0xc8,0x7b,0x6f,0x4d,0xe3,0xd2,0xfe,0xa1,0xfc,0xfd,0x4a,0xe7,0xaf, + 0x2b,0x7a,0xc9,0xb,0xe1,0x7d,0x1b,0xd1,0x11,0xf4,0x1d,0x29,0x7c,0x37,0x7b,0x7a, + 0x92,0x4d,0x76,0x3d,0x87,0xcd,0x57,0xa6,0x84,0xc6,0x39,0x76,0x79,0xeb,0xf2,0x78, + 0x40,0x7,0x47,0xa4,0xd0,0x57,0x1e,0xdd,0x6f,0x5e,0xd,0xef,0x7d,0xab,0x3c,0x2b, + 0xe5,0x42,0x1a,0x73,0x73,0xf3,0x2e,0xed,0xc7,0x74,0x48,0x39,0x9e,0xcf,0x7b,0xf6, + 0x27,0xbe,0x47,0xb2,0x62,0x6a,0x46,0x5e,0xce,0x89,0xf9,0xd9,0xb9,0x41,0xb0,0xdf, + 0xb3,0x29,0xd3,0xf,0x69,0x9d,0x64,0xbf,0x98,0xdb,0x59,0xde,0xb6,0x64,0x79,0xdd, + 0xb3,0x27,0x8b,0xf3,0x4a,0xf2,0xe1,0xe7,0x7a,0x5e,0x67,0x48,0xf2,0xa9,0xd,0x94, + 0x37,0xa7,0x4e,0xf0,0xf6,0x51,0xa0,0x60,0x2f,0x24,0x79,0x5c,0x96,0x23,0x7a,0xe, + 0x52,0x24,0xac,0x1b,0xe4,0xfc,0xa0,0x47,0xd9,0xc2,0xfd,0xed,0x1b,0x7b,0xa9,0x63, + 0xc2,0xf8,0x36,0xe2,0x93,0x83,0x9f,0x2b,0x85,0x49,0x51,0xae,0xb5,0x7c,0x12,0x6c, + 0x1d,0x36,0x37,0x74,0x81,0x5d,0x1d,0xa6,0x66,0x87,0xf4,0x70,0xc4,0x88,0x6c,0xec, + 0xab,0xe,0x1d,0xb6,0x4e,0x6d,0x8e,0xf3,0xd1,0x3c,0x48,0x73,0x6f,0xab,0x5c,0xac, + 0x58,0x5d,0xa9,0xf2,0xf2,0x64,0xec,0xdf,0x78,0xae,0xd,0xe2,0xbc,0xa0,0xbb,0xcd, + 0xff,0xa8,0xd8,0xb8,0xe8,0x67,0x4c,0x47,0x82,0xbf,0xc9,0x7f,0x67,0x43,0x71,0x9d, + 0xd0,0xa6,0xe,0xea,0xb1,0xc6,0x2a,0xfd,0x7f,0x77,0x48,0x1b,0x52,0xfe,0x73,0x74, + 0xd1,0x15,0xbc,0x97,0x6,0xff,0x79,0x5d,0xee,0xd9,0xa0,0xf2,0xce,0x43,0xa0,0x83, + 0xc9,0x8a,0xf9,0xef,0x7d,0x4f,0xf0,0x96,0xcc,0xd3,0x6f,0x12,0x47,0xe2,0xb7,0x4f, + 0x44,0x56,0xd4,0x7f,0x62,0xaf,0x95,0x45,0xed,0x6e,0xa3,0x9f,0xef,0x63,0x4a,0x56, + 0x89,0xff,0x29,0xea,0xec,0x3f,0xd7,0x41,0xef,0x71,0x6e,0x5c,0xd7,0x88,0xca,0x6a, + 0x3c,0xff,0x82,0xac,0x4e,0x77,0x8c,0xd0,0x47,0xb9,0xff,0x5f,0x32,0xfe,0xe1,0x80, + 0xba,0x11,0xea,0x3f,0x34,0xc8,0xdd,0x18,0xae,0x6,0x1b,0x31,0xe2,0x8b,0x43,0xba, + 0x9b,0xca,0xfe,0x32,0xe8,0x11,0x56,0x5e,0x2c,0xe,0xbc,0x1,0xe7,0x95,0xed,0x2e, + + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525.ico + 0x0,0x0,0x2,0x46, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0x3,0x31,0x10,0x9d,0x85,0x55,0x20, + 0xa2,0xc8,0x16,0x29,0x52,0xa4,0xd8,0x92,0x92,0x13,0xa0,0xd0,0xa0,0x1c,0x83,0xa, + 0x51,0x72,0x4,0x97,0x54,0x11,0xc7,0xa0,0xa2,0xa6,0xdc,0x43,0xe4,0x0,0x9c,0x0, + 0x71,0x83,0xc5,0xde,0x95,0xb5,0x13,0x63,0x7b,0x3d,0xfe,0x90,0xf,0x1e,0xe9,0x29, + 0xb1,0xbd,0x33,0xcf,0x8e,0xbd,0x6f,0xc6,0x1,0x28,0xa0,0x84,0xaa,0x2,0xfe,0x59, + 0xc3,0x53,0x9,0x70,0xf,0x0,0xf3,0x79,0xdf,0xfe,0x98,0x0,0xbc,0xf3,0xbe,0xc5, + 0xa2,0x6f,0xbf,0x4c,0x1,0x1e,0xaf,0x0,0xea,0xba,0x6f,0xbf,0x71,0xbf,0x2f,0xfe, + 0xec,0x35,0xf7,0xe1,0x5f,0x79,0x4f,0xdf,0x2f,0x6c,0x55,0x82,0xce,0xda,0x10,0xac, + 0xd7,0xad,0x13,0x18,0x63,0xbf,0x20,0xfd,0xb7,0xdb,0xb6,0xdd,0x6c,0xec,0x50,0x4d, + 0xfa,0x8b,0x5,0xb8,0xc4,0x68,0x9a,0x66,0x7,0xb1,0xf8,0x6d,0xfe,0x78,0xfd,0xba, + 0x31,0x9b,0xbf,0x5c,0x9b,0x34,0x35,0xc6,0xa1,0xfb,0xa3,0x18,0x1d,0xa8,0xeb,0x1f, + 0x83,0xab,0xbf,0x6d,0x6f,0x5c,0xf6,0x4f,0xec,0xb3,0x6e,0x3c,0xb5,0x3f,0x7e,0x6f, + 0xc4,0xb8,0xed,0xf7,0xd7,0x41,0xee,0x99,0xa9,0x3d,0xf4,0xf,0x60,0xe8,0x7b,0xd1, + 0xc,0xc0,0xcf,0x60,0x9c,0xd5,0x6d,0x2b,0x74,0x86,0xcb,0x4d,0xa7,0x37,0x52,0x67, + 0x5e,0x27,0xf1,0x75,0xc6,0x57,0x77,0x6c,0xfa,0xe3,0xa3,0x43,0x26,0x3d,0xf1,0xd5, + 0x15,0x93,0xbe,0xf8,0xea,0xdc,0xbe,0xe6,0xe7,0xfb,0x1e,0x87,0xe8,0x82,0x4d,0x5f, + 0xa9,0xf1,0xc6,0xf4,0xee,0xd4,0xe2,0xa1,0x98,0x5a,0x7d,0xf6,0x89,0x17,0x7b,0x7f, + 0x5,0x5c,0xce,0x0,0xe5,0xbc,0x98,0xf4,0x38,0xc7,0xb3,0xe7,0x31,0x35,0x9e,0xcb, + 0xf9,0x73,0xcd,0x4d,0xb6,0xfc,0x34,0x8c,0xcf,0x76,0xc0,0x94,0x36,0x3c,0x23,0xa8, + 0x63,0xa,0x8a,0xcb,0x59,0x97,0xb7,0x78,0x9,0xd,0x37,0x28,0x6f,0x3d,0x4c,0xd3, + 0xe7,0xad,0xd0,0x3c,0xe6,0x9a,0xd3,0x62,0xe8,0xb2,0xcd,0x62,0xc4,0x37,0xe5,0xa8, + 0x90,0x3c,0x45,0x9d,0x3f,0x35,0xaf,0x1e,0xda,0xfc,0x63,0xe9,0x72,0x88,0xce,0x60, + 0x9f,0xb1,0x7c,0xec,0x1b,0x5f,0x6a,0xc4,0x58,0xfe,0xf3,0x89,0xaf,0xe6,0x56,0x17, + 0x8e,0xff,0x14,0xdf,0xc0,0x11,0xfd,0xfc,0x60,0x5d,0x4c,0x71,0x3e,0x53,0x9f,0x7f, + 0xf1,0x9c,0x44,0x8a,0xf3,0x8f,0xb5,0x3d,0x66,0x5d,0x94,0xe3,0xef,0x37,0xbe,0xae, + 0xbe,0xc2,0xfd,0x63,0xf1,0xc7,0x20,0xb5,0x80,0x5a,0x73,0x49,0xe,0x15,0x4c,0xed, + 0x5b,0x72,0xdc,0x22,0x2c,0x1d,0xeb,0x9f,0x3b,0xe8,0xea,0xb0,0x9a,0x63,0x5,0x43, + 0x1d,0xc6,0x2a,0x9d,0x9a,0xa5,0xad,0xc3,0xc6,0x10,0x52,0xa7,0x51,0xeb,0xb6,0xd8, + 0x75,0x9c,0xa,0x5b,0xdd,0x92,0xa2,0x8e,0x51,0x41,0xb1,0xbc,0xfe,0xc3,0x58,0xbf, + 0xd4,0x8a,0x18,0x73,0x38,0xc6,0xf5,0x9f,0xd2,0xfe,0x53,0x10,0xa3,0xce,0xa2,0xdc, + 0xb,0x62,0xf3,0x53,0xef,0xd,0x31,0xf9,0xe5,0x7b,0xa3,0x1a,0x65,0xe,0xbe,0xfc, + 0x26,0x6e,0xea,0x1c,0x32,0xff,0x71,0xee,0xbf,0x65,0xe,0x7f,0x76,0xfe,0x95,0x39, + 0x38,0xdd,0xeb,0x52,0xf0,0x87,0x20,0x16,0x7f,0x88,0x76,0x86,0xf2,0xb,0x3f,0x97, + 0x3b,0x4b,0xa,0x7e,0xea,0xbd,0x29,0xf3,0x67,0xfe,0xcc,0x1f,0x87,0x5f,0xfd,0x5f, + 0x1,0xb7,0x7d,0xf8,0xa9,0x90,0xb9,0xce,0xe7,0x7f,0x7,0x9d,0x8f,0xc9,0x98,0xae, + 0xb3,0x68,0x0,0xce,0x3f,0x1,0x2e,0xbe,0x7,0x88,0xb6,0xe8,0xa7,0x5a,0x59,0xc1, + 0xf,0x97,0x33,0x93,0x6, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk.ico + 0x0,0x0,0x3,0x8f, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x31,0x6e,0xdb,0x40,0x10,0x5c,0xc1,0x82,0x1, + 0x23,0x45,0x54,0xb8,0x70,0x17,0x35,0x1,0x52,0xe6,0x9,0xae,0xf2,0x8e,0x40,0x45, + 0x10,0x20,0x3f,0x48,0xc5,0x32,0x65,0x9e,0xe0,0x22,0x45,0x90,0xc2,0x75,0xd2,0xb1, + 0xf2,0x3b,0x5c,0xa9,0xcc,0x17,0x98,0x5b,0x9,0x6b,0x8f,0x7,0xbb,0xc7,0xbb,0x13, + 0x29,0x25,0x81,0x17,0x58,0x88,0xa4,0x78,0x3b,0x4b,0xf2,0x6e,0x76,0xf6,0x44,0x16, + 0xb2,0x94,0xd5,0x4a,0xd2,0xef,0x5a,0x3e,0x2e,0x45,0xde,0x89,0xc8,0xe5,0xe5,0xfe, + 0xfc,0xe7,0xb9,0xc8,0x6d,0xba,0x76,0x75,0xb5,0x3f,0xff,0x72,0x21,0xf2,0xe1,0x85, + 0xc8,0x7a,0xbd,0x3f,0xff,0x9e,0xc6,0xfd,0x4e,0xf7,0xbe,0x49,0x63,0xd2,0x61,0xba, + 0xb2,0xbf,0xae,0x76,0xbd,0x94,0xbf,0xd5,0x86,0x46,0x97,0xcd,0x66,0x33,0xb4,0xba, + 0xc6,0xd0,0xdf,0x6f,0x37,0x37,0x43,0xd7,0x75,0x3b,0xd7,0x63,0x76,0xfe,0x4f,0x8f, + 0xbd,0xf1,0xfa,0xbb,0xdd,0x6e,0x7,0xb5,0xbe,0xef,0x1f,0xce,0xf5,0x58,0x5d,0x4d, + 0xcf,0xf5,0x3a,0x8f,0xc7,0x7b,0xd4,0xf4,0x1a,0xc6,0xd1,0xf8,0x76,0x4f,0x34,0x1e, + 0xb1,0xf0,0x1a,0xe6,0x6c,0x79,0x8e,0x8d,0x37,0xaf,0x19,0x6f,0xf9,0xdb,0x38,0xce, + 0x5f,0x3e,0xff,0xa,0xc7,0xe3,0xf3,0xd9,0x78,0xcb,0x47,0xff,0x7b,0xfd,0x63,0x18, + 0x3e,0xdd,0xd,0xbb,0x18,0xd1,0x78,0x8e,0x61,0x63,0xcd,0x35,0x86,0x3d,0x3,0x8f, + 0x6f,0xf1,0x43,0xe7,0xe0,0x91,0xd6,0x56,0xd6,0x6c,0xbe,0x75,0x8b,0xf4,0x6e,0xa5, + 0xcc,0xf5,0x5e,0x33,0xe5,0x99,0x44,0x37,0x3b,0xbe,0x31,0x9e,0xf9,0x7a,0x7e,0xc2, + 0x7,0x3a,0xcc,0x5a,0x79,0x68,0x52,0x5e,0x2a,0xe1,0xa9,0x88,0xab,0x90,0xa3,0xf8, + 0x7c,0x8c,0xf7,0x6c,0xcd,0x1a,0x4f,0x21,0x87,0xd9,0x1a,0x67,0xe,0x8b,0xd6,0xb1, + 0xdd,0x67,0x31,0x6d,0xc,0x5e,0xc3,0x75,0x1a,0xc5,0x43,0x5e,0x42,0xc3,0xdc,0xec, + 0xdc,0xe3,0xa8,0x88,0xa7,0x38,0xa6,0xc7,0xdd,0xa5,0xf1,0x2c,0x16,0xf3,0x2f,0x72, + 0x21,0x7f,0x83,0xe8,0x7b,0x20,0xf7,0x59,0x3e,0x1c,0xab,0x25,0x3f,0xfc,0xb6,0x1e, + 0x57,0x97,0xc6,0xc3,0xef,0x8b,0xdf,0x98,0xf3,0x45,0xbe,0x1f,0x8b,0x67,0x31,0x39, + 0x56,0xc4,0xff,0x25,0xf1,0xbc,0x5a,0x10,0xd5,0x83,0xdc,0xf7,0x38,0xd4,0x2d,0x9e, + 0x71,0x2,0xe2,0xb7,0xba,0xc5,0x9b,0x8a,0x67,0x66,0x63,0xd3,0x9,0xed,0xa1,0x4e, + 0xc9,0xab,0x94,0xef,0xcb,0x6a,0xef,0x92,0xf7,0x69,0x2c,0xd6,0xad,0x24,0xa1,0xe5, + 0xad,0x3c,0xd6,0xad,0xf7,0x17,0x27,0x7c,0xc0,0x7f,0xdb,0xa6,0xaa,0x9b,0x4f,0x6a, + 0xa8,0xda,0x94,0x75,0x94,0x6b,0xaa,0xc6,0x37,0x2e,0xe1,0x35,0x16,0xf5,0x0,0x63, + 0xb5,0x97,0x79,0x84,0xe3,0xb3,0xce,0xc7,0x7a,0xc1,0x1c,0xcc,0x3d,0x87,0xc7,0x7b, + 0x18,0x1f,0x75,0x37,0xd7,0x58,0xac,0x1b,0x16,0x83,0xeb,0x79,0x49,0x7c,0x8c,0xcd, + 0x35,0x29,0xea,0x79,0xb0,0x26,0x44,0xf1,0xb9,0x26,0x47,0x1a,0x21,0xa7,0x1f,0x72, + 0xef,0x9f,0x7b,0xa,0x1e,0x8f,0xfa,0xc4,0xfe,0xc3,0xba,0x80,0xdf,0x7e,0x2c,0xbe, + 0x57,0x67,0x73,0x5a,0xa5,0x26,0x3e,0xd6,0x5d,0xfe,0x7e,0x91,0x76,0xc9,0xe9,0xe, + 0x6f,0xfe,0x70,0xbf,0x8a,0x78,0x1c,0x5b,0xeb,0x71,0xae,0xce,0x73,0x7c,0x74,0xd4, + 0xf,0x9e,0xe,0xb1,0x9a,0x9f,0xab,0xfb,0x63,0xeb,0xcb,0xe2,0x47,0xeb,0x4b,0x31, + 0xd4,0x4b,0xf2,0xcf,0x69,0xb,0xfe,0x3f,0xe2,0x9d,0xe8,0xfd,0x4f,0xe9,0xac,0x63, + 0xa6,0xd0,0x1c,0xde,0xf3,0x19,0x87,0xce,0x85,0x31,0x77,0x1d,0x98,0xb6,0x4,0xfe, + 0x9f,0x36,0x80,0x75,0x72,0x96,0xde,0xd9,0xa2,0xb9,0xa6,0x77,0xc9,0x7b,0x59,0x60, + 0xc8,0x9d,0xe,0x5b,0x27,0xbf,0x96,0x47,0x1d,0xd6,0xad,0x8e,0xf7,0x7c,0xcf,0x56, + 0x65,0x73,0xe8,0xbc,0x93,0xea,0xc0,0x52,0x9d,0xa8,0xc7,0x5e,0x1d,0x28,0xd5,0x84, + 0x25,0xf7,0xe5,0x74,0x64,0xe,0x9f,0xf7,0x4c,0x59,0x9b,0x45,0xb5,0xcf,0xd3,0x97, + 0x51,0x1d,0x8c,0xf0,0xbd,0xfd,0x8a,0x9c,0x36,0xc4,0x1c,0x3c,0xfd,0x59,0x83,0xcf, + 0x1a,0x82,0xb5,0x21,0xef,0x67,0xb3,0xce,0xcd,0xe5,0x50,0xb2,0x5f,0xc1,0xfa,0x28, + 0xa7,0x8b,0x79,0x4f,0x83,0xf7,0xf5,0x39,0x87,0xb1,0xfd,0x17,0x4f,0x2b,0xf3,0x7e, + 0x9b,0x87,0xcd,0xfa,0x37,0xca,0xa1,0x4,0x7f,0x4c,0xaf,0xe7,0xf6,0x74,0x58,0x53, + 0x72,0xaf,0x10,0xe1,0x73,0x3f,0xe3,0x3d,0xf,0xba,0xf7,0xee,0x19,0x1b,0xe7,0xa3, + 0x69,0xb9,0x1c,0x3e,0x63,0xb3,0x36,0xe6,0x79,0x1c,0xf5,0x1e,0x63,0xfd,0x5e,0xe, + 0xdf,0x7b,0xa7,0x63,0xf8,0xde,0x7b,0x42,0xfc,0x5c,0x1f,0x32,0x15,0x3e,0xf6,0x71, + 0xc7,0xc4,0x47,0x6c,0xaf,0xd7,0x60,0xcc,0x1a,0x7c,0x9e,0x4f,0x3c,0xff,0xf0,0x9d, + 0x7b,0xf3,0xc5,0xd3,0xcf,0x25,0xeb,0xf,0x7b,0x1c,0xaf,0xa7,0xe5,0x79,0x57,0x8a, + 0x5d,0x82,0x8f,0xd8,0x88,0xef,0xf1,0xb1,0xc7,0xcb,0x88,0x8f,0xfd,0x63,0xd,0xff, + 0xd6,0x60,0x63,0xe,0x5e,0x8f,0xc9,0x39,0x94,0xd6,0x9f,0xa8,0xdf,0xac,0xc1,0xe6, + 0x1e,0xb7,0xb6,0xfe,0x46,0x75,0x90,0x3d,0xc2,0xe6,0x1e,0xb8,0x6,0xdf,0xd3,0x1f, + 0x1e,0x6e,0x49,0xef,0xdd,0x8a,0xef,0x7d,0x8f,0x96,0xde,0x1c,0x3d,0x5a,0xff,0xc7, + 0x74,0x4f,0x83,0xe6,0x9e,0x7f,0xe,0x47,0xfc,0x53,0xe5,0x80,0xf8,0xa7,0xe8,0x5, + 0x5a,0x1a,0xa5,0x67,0x9b,0xd6,0x6,0xb0,0x4e,0xe4,0x4c,0x74,0xbb,0x60,0x6,0x4b, + 0xb1,0xa5,0x4f,0x7e,0x2f,0x4f,0x37,0x2a,0xfe,0x0,0x9a,0x58,0xe7,0x1c, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty_active.ico + 0x0,0x0,0x3,0x2f, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xbd,0x6e,0x13,0x41,0x10,0x1e,0x27,0x26,0x51, + 0x44,0x11,0x17,0x41,0x4a,0x67,0x97,0x94,0xbc,0x1,0xa6,0xa1,0x4e,0x91,0xab,0xa1, + 0x42,0x3c,0xc6,0x95,0x94,0x3c,0x42,0xca,0xe8,0x90,0xa0,0xa5,0xc3,0x3c,0x84,0xfb, + 0x48,0xf4,0x28,0x2,0x62,0xc,0x32,0xc,0x73,0xe7,0x5b,0x7b,0x6f,0x3c,0xb3,0x3f, + 0xf7,0x63,0x40,0xf6,0x58,0xab,0xcf,0x77,0xb7,0x3b,0x3f,0xbb,0x7b,0x33,0xdf,0x1e, + 0x40,0xf,0xfa,0x30,0x18,0x0,0xe1,0x8,0x5e,0xf6,0x1,0x9e,0x2,0xc0,0xd9,0xd9, + 0xf2,0xfa,0xfd,0x11,0xc0,0x5b,0xba,0x77,0x7e,0xbe,0xbc,0x7e,0x75,0x2,0xf0,0xe2, + 0x3e,0xc0,0x68,0xb4,0xbc,0xbe,0xa6,0x71,0x9f,0xa9,0xef,0x43,0x1a,0x43,0x7f,0xe9, + 0xce,0xf2,0x7e,0x2e,0xe3,0x3e,0x34,0x15,0xb4,0x5a,0xfc,0xd8,0xd4,0x6a,0x9b,0x3a, + 0x50,0x45,0xea,0x9f,0xb,0xd8,0x3f,0x4b,0x47,0x9a,0xa6,0x4e,0x74,0x8d,0x37,0x7d, + 0x26,0x93,0x49,0x5,0x8b,0xfe,0x46,0x87,0xc7,0xbe,0xe9,0xcb,0xc7,0x56,0xb0,0xd4, + 0x61,0x84,0xdb,0xe7,0x63,0x44,0x7f,0xac,0xf9,0x5b,0xc5,0x26,0xc4,0xcb,0x75,0x69, + 0xcf,0x6d,0xfb,0xda,0x5c,0xda,0x7d,0xc5,0xb9,0xad,0xfe,0x77,0x8e,0x91,0x9e,0xfb, + 0xd6,0xce,0xbb,0xb6,0x96,0xbe,0x1f,0xb3,0x2f,0x5,0x2e,0x66,0x77,0x5,0x7e,0xff, + 0xf6,0xb5,0xc0,0x79,0x89,0xbf,0xe6,0xb3,0x25,0xfe,0xbc,0xe3,0x7b,0xac,0x91,0xfd, + 0xff,0x59,0xf0,0x13,0x4d,0xde,0x47,0xc4,0x29,0xcd,0x62,0x96,0x22,0x26,0x6,0x9f, + 0x10,0x66,0x84,0x49,0x15,0xa7,0x49,0x65,0x1b,0x63,0x9e,0x67,0x28,0xdd,0x14,0xf9, + 0xc6,0xe4,0x99,0xd7,0x47,0xed,0xb9,0x27,0xb4,0xfa,0xba,0x52,0xa1,0xd5,0xd1,0x29, + 0xe5,0x3,0x21,0x2f,0x4,0x63,0x80,0xbe,0xa8,0x7d,0x19,0xe8,0x9f,0x96,0xb7,0x78, + 0x4e,0x8c,0xf1,0x4f,0xcb,0xa3,0x52,0x2e,0x8c,0xf5,0xcf,0x89,0x2c,0xbf,0x6a,0x79, + 0x96,0xfb,0xa5,0xf9,0x69,0x74,0xf2,0x26,0xe5,0x1d,0x9e,0x2b,0x57,0xf3,0xc6,0xe2, + 0x8,0xc9,0xc3,0xa1,0x39,0xdc,0xd8,0x8,0xc9,0x8b,0xc6,0x8f,0x8d,0x75,0x55,0xfc, + 0xe3,0xf7,0xa5,0xf9,0xf3,0xf9,0x11,0xe3,0x5f,0xd0,0xfa,0xa,0x68,0xfc,0xb4,0xfd, + 0x13,0xf7,0x5b,0x4,0xba,0xea,0xea,0xae,0xd6,0x88,0x7f,0x41,0x70,0xfe,0x18,0xf1, + 0x76,0x88,0x78,0x73,0x8a,0xd9,0xd5,0x29,0x26,0x63,0x86,0x17,0x43,0xaa,0x4f,0xef, + 0xa8,0x4e,0x3d,0x13,0xf0,0xc3,0x46,0x5e,0xc8,0xeb,0x15,0x51,0x68,0x78,0x4,0xeb, + 0xba,0xf5,0xfc,0xa4,0x1b,0xd7,0x85,0xd6,0x9e,0xee,0xb6,0x6a,0x1a,0x17,0xa3,0xcb, + 0x5f,0xe3,0x6a,0xe9,0x56,0xf3,0xbf,0x6e,0x23,0xbc,0xa6,0x46,0xea,0x8f,0x7e,0x9f, + 0x23,0xf4,0xf3,0x9c,0xaa,0xd5,0x47,0xa9,0x96,0x85,0xfa,0xaf,0xd5,0x32,0xed,0xba, + 0x8e,0xff,0x41,0x75,0xdd,0x42,0x97,0x8d,0xb2,0x4f,0xe3,0x3a,0xe0,0xa9,0xf9,0x20, + 0xf9,0xef,0xab,0xfb,0x52,0x1c,0xc2,0xfb,0x25,0xd6,0x31,0x1f,0xf,0xd0,0x6a,0x7c, + 0x97,0xbc,0xc0,0xe7,0x3,0xb7,0xe7,0x1a,0xcb,0xb1,0xb,0xde,0xf0,0x37,0x78,0x84, + 0x8b,0x5f,0xf8,0xde,0xdf,0xba,0x28,0xf9,0xdf,0x36,0xc2,0x7a,0xbd,0x5a,0xe3,0x32, + 0x7b,0x6e,0xb3,0x5b,0x82,0x78,0x8c,0xf8,0xfb,0x10,0x71,0xd1,0x43,0x9c,0x3,0x4e, + 0x2f,0x0,0xb3,0x6b,0x20,0xbe,0x55,0xe2,0x65,0x8f,0xf8,0xd5,0x1,0xf1,0xac,0x7b, + 0x84,0x19,0x61,0x22,0xe2,0x34,0x61,0x1f,0xe,0x4a,0xc9,0x79,0xd8,0x88,0xda,0x18, + 0xd6,0x3c,0x2c,0x1d,0x6c,0x37,0x44,0xa1,0x6d,0xcf,0xae,0xce,0xdf,0xba,0xf4,0x3, + 0xbd,0xfc,0xae,0x2d,0x1e,0xc9,0x25,0x84,0x7b,0xb4,0xc5,0x33,0xdb,0xb7,0xef,0xac, + 0x87,0x5e,0x8c,0xb1,0xad,0xf0,0xb0,0x46,0xd8,0xc0,0x7e,0x11,0x84,0xa7,0xce,0x6a, + 0x5c,0x31,0x8a,0x77,0x46,0xf2,0xd0,0x28,0x1f,0x3a,0x8a,0xdf,0x37,0x2f,0x21,0x9c, + 0xb8,0x69,0xfc,0xc1,0x9c,0xa0,0xc1,0xfe,0x6f,0x85,0x67,0xd5,0xb3,0x1f,0xbc,0xfe, + 0x31,0x3e,0x68,0x7e,0xac,0x9e,0xa5,0xf2,0xf7,0x3e,0x6d,0xce,0x63,0x7d,0x70,0x9e, + 0x5f,0xa8,0x49,0x3c,0x54,0xe0,0x8f,0xa2,0xf,0x31,0xfb,0x41,0x3a,0xdf,0x98,0xe7, + 0x21,0xe7,0x1c,0x8e,0x1a,0x87,0xd7,0xde,0x51,0x13,0x3,0x47,0x57,0xfc,0xa6,0x8f, + 0xc6,0xcf,0xf9,0x73,0x6e,0x5b,0x88,0x4f,0x9c,0xcf,0x26,0xf1,0x6b,0x71,0x69,0xbe, + 0xc6,0xc4,0xcf,0x6d,0xc4,0x9e,0xab,0x4,0x1e,0x2f,0xda,0x76,0xed,0x7f,0xdf,0x3a, + 0x87,0xa2,0x4f,0x8f,0x14,0xff,0xb6,0x70,0x1b,0xe7,0x4c,0x1f,0xee,0x6a,0xfc,0x60, + 0xed,0x49,0xdf,0x3b,0xd7,0x15,0xda,0xf1,0x77,0x75,0x86,0xde,0x9f,0xb1,0xf7,0xb2, + 0x17,0xb7,0x20,0x2e,0x86,0x88,0xb7,0xc7,0x88,0x37,0x87,0x88,0x93,0x5e,0xde,0xb2, + 0x2c,0x85,0x24,0x1,0xa8,0xe2,0xb8,0xb7,0xc6,0xab,0x83,0x24,0xb9,0x7c,0x90,0x91, + 0x24,0x24,0x1,0xf8,0x46,0x24,0x64,0x24,0x7f,0x0,0x7f,0xd,0x93,0xd5, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-green.ico + 0x0,0x0,0x91,0x5e, + 0x0, + 0x2,0x37,0x7e,0x78,0x9c,0x2c,0x7a,0x7,0x34,0x5c,0xdd,0xf7,0xf6,0x9d,0x31,0x18, + 0x7d,0x74,0x9,0x62,0x74,0xa2,0x97,0x20,0x82,0x19,0x9d,0xa8,0x9,0x41,0x88,0x2e, + 0xba,0x90,0x10,0x44,0x9b,0xd1,0x82,0xe8,0x25,0x7a,0xf4,0x8,0x89,0x68,0x51,0x42, + 0x30,0x8,0xd1,0xa2,0xf7,0x2e,0x3a,0xd1,0x3b,0x33,0xcc,0x97,0xf7,0xfb,0xff,0xee, + 0x5a,0x77,0xdd,0xfb,0x3c,0x67,0xef,0xb3,0xf7,0x3e,0xf7,0x9c,0xb3,0xf7,0x5d,0xeb, + 0x0,0x0,0x8,0x20,0x1,0xfe,0xbb,0x40,0x0,0x1c,0x60,0xd2,0x1,0x80,0xd4,0x7f, + 0xef,0x30,0xd8,0xff,0x61,0x47,0x8,0x0,0x94,0xff,0xe3,0xe8,0xe8,0xfe,0xf,0x7f, + 0x27,0x2,0x0,0x86,0xc7,0x0,0xc0,0xc4,0xf4,0x7f,0x38,0xf2,0x9f,0xea,0x80,0x9, + 0x0,0xc0,0xe1,0xff,0x87,0x4b,0xfe,0xe9,0x19,0xd9,0x0,0x80,0xa8,0xe8,0xff,0x30, + 0x37,0x0,0xdc,0xbc,0x2,0x0,0x24,0xf2,0xff,0x30,0x9f,0x12,0x0,0x14,0xa7,0x3, + 0x80,0x86,0xc6,0xff,0xf4,0xd,0xff,0xe9,0xcf,0x0,0x0,0x1a,0xfd,0xbf,0x76,0x28, + 0x8,0x30,0x12,0x1,0x1,0x51,0xfa,0xba,0xea,0x14,0xa4,0xb7,0x49,0xff,0xb9,0x42, + 0xa1,0xa9,0xa1,0xf2,0xf8,0xbf,0xd6,0xff,0x6e,0xe8,0x3f,0xfb,0xc0,0xb3,0x57,0x25, + 0xf6,0x0,0xa0,0xbd,0xa8,0xa9,0xa2,0x68,0xe8,0x9b,0xbd,0x1b,0x48,0x82,0x7e,0xf6, + 0xe4,0xfd,0x59,0xe9,0xb6,0xd0,0x87,0x81,0x1c,0xaf,0x89,0x3d,0x5d,0xb0,0x58,0x2, + 0xcc,0x48,0x73,0xa,0x4c,0x64,0x28,0x95,0xa8,0xda,0x66,0xcd,0x82,0x4a,0x43,0xd9, + 0x1b,0x22,0x55,0xa9,0x4f,0x19,0xbd,0xac,0xc,0xbd,0x52,0x54,0x55,0xa8,0xed,0xb3, + 0x5f,0xfe,0xba,0x45,0xfc,0xe8,0x11,0x93,0xa,0xb8,0x1d,0xce,0x3,0x51,0xb5,0x8b, + 0x8,0xe3,0x4e,0xf8,0xf8,0xc0,0x7f,0x64,0x3a,0xd9,0xe2,0xcb,0xd,0x76,0xde,0x67, + 0xf0,0x2b,0xf6,0x45,0xf3,0x4c,0xa3,0xc5,0xeb,0x27,0xcd,0x8d,0x6c,0x86,0xb,0x5f, + 0x8c,0xf7,0xe7,0x7d,0x2c,0x5f,0x7,0x3a,0xfc,0xd8,0xc8,0x61,0x2e,0x8c,0x5c,0x6e, + 0xfc,0x5b,0xae,0x65,0xc3,0x1c,0xdd,0xd9,0x3b,0x4f,0x4f,0x1c,0x51,0xf0,0xf2,0xfa, + 0x74,0x32,0x6d,0x35,0x82,0x45,0xd3,0x5b,0xe6,0xe8,0x81,0xa,0xf5,0x47,0x18,0xf8, + 0xb0,0x92,0x59,0x50,0x3a,0x1d,0x47,0x49,0xf9,0xa8,0xcd,0x18,0x73,0xf5,0xa4,0x81, + 0x1e,0xc,0x3f,0x59,0xf4,0xe,0x9c,0xa2,0x48,0xa5,0x95,0xba,0x4c,0x13,0x7c,0xfa, + 0xb8,0x38,0x47,0x46,0x86,0x2e,0xde,0x40,0x4f,0xfe,0xc9,0xbe,0x32,0x34,0xe0,0xfa, + 0xaf,0x25,0xd5,0xf5,0x9d,0x44,0x6a,0x40,0xea,0x52,0xf,0x71,0x7d,0xf2,0xea,0x75, + 0x67,0x5b,0xbe,0x63,0xfa,0x2a,0x31,0xf9,0xd1,0xf1,0xbe,0x1c,0x9d,0xf,0x9c,0x46, + 0x18,0xcd,0x89,0x51,0x4e,0x49,0x8,0xc7,0xf1,0x28,0xbd,0x24,0xfe,0x6c,0x1,0xfc, + 0x67,0x87,0xe4,0x4d,0x52,0xee,0xa3,0x1a,0x58,0x89,0x33,0x68,0xa9,0x7b,0x1f,0xc6, + 0x4d,0xa7,0x71,0xa3,0xaf,0x5f,0xb,0x6e,0x4d,0x5c,0x64,0x7f,0xc8,0x47,0x7c,0x19, + 0xfc,0x99,0xe,0x88,0xc3,0x51,0x3e,0x52,0x6a,0xe8,0xa6,0x32,0xfc,0x0,0x78,0xac, + 0xfa,0x44,0xd2,0xf4,0x6a,0x6,0xe5,0x7d,0x86,0xfc,0xff,0xae,0xf4,0x5f,0x1c,0x11, + 0x3c,0xe1,0x4,0x58,0x2e,0x59,0xb,0xc2,0x1e,0xc2,0x11,0xfa,0xf4,0xff,0xa7,0x58, + 0x42,0x77,0x44,0x40,0x2f,0xf2,0x3f,0x9a,0x3,0xa1,0x3f,0xfc,0x3f,0x5a,0xf2,0x1f, + 0x2d,0xf0,0x3f,0x9a,0xb,0xa1,0x9f,0xf8,0x3f,0xda,0xf0,0x1f,0xcd,0xfb,0x3f,0x9a, + 0x7,0xa1,0xff,0xe8,0x7f,0xb4,0xd7,0x3f,0xda,0x80,0xaa,0x95,0xb,0x33,0x25,0xe2, + 0x60,0xec,0x4c,0xd4,0x53,0x24,0x90,0x23,0xf9,0xac,0x44,0xe5,0x1f,0x6b,0xd,0xfa, + 0xcf,0xf3,0x5b,0xef,0x1f,0x6,0xe5,0xed,0xfc,0x7f,0xe1,0xde,0x12,0xbb,0x7f,0xf4, + 0xa,0x78,0xca,0xa4,0xce,0xf5,0x69,0xc3,0x8f,0xa5,0x25,0xd8,0x9b,0x94,0x79,0xb0, + 0x87,0x87,0x7,0x1f,0x5b,0xaf,0x30,0xf0,0x6c,0x37,0x88,0x38,0xe2,0x28,0x9f,0xe3, + 0x19,0xc0,0xb,0x61,0x61,0xe9,0xd,0xad,0x36,0x3,0x28,0x29,0x29,0xd7,0x42,0x69, + 0xff,0x3d,0xee,0x91,0xff,0xb3,0xcc,0xe2,0xcc,0xa4,0xb,0xc8,0xc8,0xac,0x6,0xfb, + 0xca,0x65,0x1a,0x46,0xad,0x1b,0xdc,0x97,0x9,0x8b,0x51,0xe1,0xc8,0x3f,0x2f,0xe4, + 0x22,0xbf,0x6b,0x43,0x67,0x25,0x73,0x70,0xb1,0x12,0x9f,0xf6,0x83,0x8c,0x92,0x1d, + 0x6d,0xdc,0x6b,0xde,0x12,0xf0,0xc6,0x62,0x63,0x96,0xf6,0x55,0xbb,0x8a,0xb9,0xb9, + 0xf9,0x38,0xbe,0xbc,0x80,0xb3,0xb7,0x3a,0x6f,0x6,0xaf,0x41,0xb9,0xc5,0xc7,0x5d, + 0x75,0xc,0xfa,0x37,0x4e,0x3f,0xee,0xc1,0xde,0x90,0xa1,0x7b,0x50,0xff,0x7d,0xcf, + 0x5a,0x36,0xca,0x3f,0x68,0x21,0x0,0x50,0x82,0x5b,0x6a,0x59,0x75,0xbe,0xa3,0xcf, + 0x3f,0xfd,0x53,0xd5,0x75,0x67,0x14,0x5b,0xec,0xa2,0x1f,0x5b,0xf2,0xe2,0xf0,0x3d, + 0x2f,0xcb,0x65,0x21,0xc1,0x44,0xd3,0x5a,0x88,0xe6,0xd,0x1f,0xfc,0x88,0x1,0x1d, + 0x8f,0x33,0xfe,0x60,0x50,0x17,0x24,0x63,0x88,0x48,0xc7,0x39,0x64,0xbf,0x54,0xb3, + 0x4b,0x79,0xb8,0x4a,0x88,0x7e,0xfb,0x6f,0xb0,0xa9,0x81,0x4b,0xc5,0x80,0x85,0x78, + 0x52,0xe7,0x76,0xc2,0x7f,0x71,0x11,0x69,0x7,0x8d,0x82,0x45,0x1f,0xf5,0x7,0xb7, + 0x6e,0xef,0x36,0x84,0xfe,0x14,0xe5,0xc8,0x9a,0xa8,0x58,0x47,0xe6,0xfd,0x17,0xd2, + 0x7d,0x20,0xd6,0xdd,0xf9,0x9a,0xaf,0x1,0xa8,0xa5,0x25,0xf8,0x27,0x9,0x2b,0xee, + 0x19,0xc4,0x3e,0xe2,0x40,0x2c,0x9,0x2,0xc4,0x11,0xc0,0xd4,0x6a,0xfd,0xf5,0x4d, + 0x49,0x2b,0x9,0x40,0x4c,0x4c,0xa0,0x18,0xdc,0xc2,0x47,0x6,0xfa,0x2f,0x7e,0xf2, + 0xf4,0x75,0x5,0xd8,0x2a,0x91,0xa,0x89,0x30,0xd1,0xd2,0x12,0x32,0x68,0x51,0xe1, + 0xb3,0x1d,0x55,0xc8,0x7f,0x7d,0xa9,0xdc,0x2a,0xc4,0x3d,0x92,0xc2,0xff,0x27,0xe4, + 0x7c,0xbb,0x41,0x1c,0x57,0x70,0xfb,0xda,0x41,0x6,0xb4,0xa4,0x4f,0x8b,0xac,0xa6, + 0x14,0x3f,0xf3,0x25,0x9b,0x5a,0xad,0xab,0x6d,0xfa,0x0,0x62,0x52,0x4d,0x51,0x5, + 0x76,0xb0,0x13,0xf5,0x27,0xaf,0xac,0xbe,0x24,0x69,0x66,0x7e,0xea,0xd,0x61,0xbb, + 0x38,0xab,0x3f,0xbd,0xdf,0xf5,0x65,0x90,0x29,0x60,0xc0,0x52,0x57,0xd6,0x29,0xdd, + 0xef,0x3e,0xe4,0xd9,0xcb,0x7,0xb5,0x75,0xfd,0xdd,0x7f,0xc7,0xdc,0xcc,0x99,0x23, + 0x5f,0x60,0xa,0x3a,0x58,0x5f,0x89,0x52,0x73,0x41,0xd0,0xf0,0xa4,0x49,0xf0,0x65, + 0xb0,0x35,0x35,0xa0,0x87,0x3a,0xce,0x4a,0xea,0x39,0x6,0x6f,0xe3,0x89,0x59,0xbf, + 0x21,0x24,0x8,0xdb,0xe,0x51,0xb8,0x42,0x3d,0xc7,0x14,0x55,0x38,0x1d,0xf2,0x44, + 0x3b,0x61,0x12,0xf5,0xb7,0xa5,0x66,0x65,0xb6,0x25,0xc0,0xfa,0xd1,0xae,0x2c,0x24, + 0x34,0x8a,0x2a,0x4f,0x4d,0x85,0x27,0x17,0x31,0x1a,0x64,0xf8,0xe8,0xc8,0x1a,0xe9, + 0xe8,0x9f,0x70,0x8f,0x79,0xd8,0xb3,0xad,0x65,0x82,0x8e,0x1c,0x6,0x15,0xd2,0x53, + 0x28,0xad,0xe7,0x26,0xd0,0x10,0x81,0xa,0x58,0xaa,0x26,0x21,0x98,0x87,0x14,0x16, + 0xc9,0xcc,0x22,0x3c,0x5a,0x57,0xa5,0x3,0x83,0x74,0xf,0xd7,0x18,0x51,0xf6,0x9f, + 0x6e,0xd4,0x6e,0x71,0xd3,0x2,0x43,0x57,0xc5,0xa5,0xee,0x5,0xa5,0x5f,0x4,0xdc, + 0x5c,0xd8,0xfa,0x88,0x5,0xa1,0xda,0x20,0xea,0xcf,0x70,0x68,0xf0,0xc9,0xc8,0x98, + 0x74,0xdd,0x25,0x7a,0x3f,0xfc,0xab,0x1e,0x5c,0x86,0x8e,0x70,0xf4,0xbc,0xfe,0x5e, + 0x33,0x2b,0x55,0x9,0xe1,0x2e,0x55,0x8a,0x9d,0x4e,0x39,0x7c,0x99,0x51,0x69,0x7, + 0x7e,0x52,0x57,0x4b,0x1f,0x40,0xf1,0x83,0x92,0xac,0xa2,0xa1,0x38,0xcf,0xf,0xb8, + 0x4c,0xa2,0x28,0x22,0xd2,0xec,0x77,0xcb,0x17,0xad,0x18,0x3c,0xcf,0xa9,0xbd,0xf3, + 0x80,0xa9,0xe9,0x10,0xd4,0x9c,0xfb,0x85,0x8b,0x69,0x92,0x92,0xdc,0xb4,0xf8,0x47, + 0xfa,0xe5,0xf5,0x33,0x18,0x97,0x71,0x73,0x4f,0xe5,0xdf,0x47,0x44,0x74,0x1c,0xfc, + 0xef,0x7e,0xe6,0x93,0xa2,0x1f,0xc3,0x10,0xb4,0x70,0xd8,0x90,0xb7,0x42,0x8,0x28, + 0xc4,0xea,0xcf,0x99,0x9c,0x73,0xd7,0xda,0x9f,0x59,0xaa,0xf0,0xd5,0xf0,0x56,0x92, + 0x90,0x39,0x3e,0x43,0x20,0xa5,0x3a,0xc6,0xa4,0x96,0xc,0xad,0x1f,0x82,0xb6,0xa6, + 0xc5,0xbc,0xe8,0x33,0xba,0x9d,0x2d,0x7e,0xff,0xef,0xfd,0x86,0x67,0x44,0x6,0xa2, + 0xab,0xb4,0xa8,0xee,0xa2,0x53,0x2d,0x9d,0x8b,0x67,0xe7,0x7d,0x5c,0xb0,0xdf,0xf0, + 0x2,0x32,0x16,0x7b,0xb5,0x6,0x17,0xa8,0x91,0xec,0xbb,0x3a,0xe0,0xad,0x52,0x10, + 0x8f,0xef,0x10,0x3,0x74,0x66,0x90,0x1b,0x56,0x1d,0x1c,0xae,0x98,0xc0,0xd,0x53, + 0xc1,0x25,0x25,0x4,0xf5,0xa9,0x15,0xf0,0x8f,0x46,0x4,0xbc,0xd1,0xed,0x2b,0x7a, + 0x1b,0x86,0x64,0x67,0x40,0x36,0x50,0x3b,0x91,0xb5,0xf2,0xa0,0xa4,0x96,0x1d,0x38, + 0xc4,0x68,0xe5,0x47,0xc5,0x16,0x6,0xb9,0x60,0xd5,0x24,0xb4,0xa,0xbc,0xc9,0x5f, + 0xac,0x92,0x31,0xf0,0x65,0x89,0xfc,0xaa,0x7e,0xf4,0xc5,0xc0,0x7c,0xa,0x13,0x62, + 0x2,0xa5,0x23,0xe5,0xe1,0xf,0xa,0x9,0xc1,0xa6,0xe,0x73,0x78,0x4c,0xa0,0x7f, + 0xc2,0x44,0xed,0xb6,0x12,0xa9,0x2e,0x25,0x9c,0x2e,0x44,0xa9,0xc7,0xca,0x3,0xcb, + 0xce,0x45,0x6,0xf5,0xaf,0xfd,0x7,0x12,0x95,0x0,0xa3,0xd6,0x86,0x5c,0x7c,0x80, + 0xe9,0x3,0xeb,0x84,0x5c,0x92,0x78,0x21,0xab,0xbd,0xac,0xfd,0x7e,0x37,0x23,0x3b, + 0x6a,0xe8,0xb4,0x60,0x48,0x9,0x19,0xc8,0x1,0x74,0x21,0x8a,0x63,0x40,0xb2,0x67, + 0xe6,0x26,0x46,0xe3,0x7a,0x76,0x67,0xf9,0xa5,0x9c,0x1e,0xcf,0xdc,0xe8,0xcf,0xd4, + 0xc6,0xdf,0x63,0xc5,0x7b,0x6f,0x5f,0xef,0x3e,0xe,0x91,0xfe,0x8e,0x6c,0xba,0x43, + 0x27,0xc2,0x0,0xe,0x57,0x59,0xa,0xb4,0x33,0x5c,0xad,0xd7,0x74,0x6f,0xbf,0xf9, + 0xfd,0xcf,0x2b,0x8f,0xa1,0xc9,0xcc,0x73,0x42,0x72,0xc5,0x84,0xaf,0x8b,0x95,0x44, + 0x5,0xc2,0x10,0x96,0x76,0xc5,0xb6,0x91,0x9f,0x5c,0x28,0x9e,0xe5,0x8d,0x2f,0x87, + 0x8a,0x27,0x1,0x9,0x15,0xa2,0x56,0x6d,0x6d,0xbb,0x36,0x6c,0x33,0x98,0x97,0x13, + 0xda,0xdb,0x66,0x3f,0x74,0x73,0xcf,0x9b,0x43,0xb1,0x5b,0x99,0x6c,0xd7,0x1a,0x7b, + 0xbc,0x71,0x26,0x9,0xcd,0xc3,0x72,0xb5,0xcd,0xb1,0x70,0x2d,0x78,0xb2,0x6a,0xc2, + 0xee,0x95,0xa4,0x40,0x3e,0xe0,0x2,0xff,0xac,0xd4,0xfa,0x14,0x50,0x20,0x5f,0x14, + 0xcd,0xd3,0xb9,0x49,0xbf,0xed,0xa0,0x67,0xfa,0xe8,0xac,0x51,0x27,0xab,0xf9,0x3, + 0xfa,0x55,0x4f,0x8f,0x9b,0x19,0x3f,0x7f,0x79,0x74,0x27,0x41,0xc1,0x37,0x4d,0xbd, + 0x8d,0x4e,0x53,0xde,0xbe,0xe3,0x26,0xe9,0x97,0x7f,0x53,0x14,0xdf,0x45,0x61,0x33, + 0x36,0xf2,0x9a,0x2f,0x56,0xf9,0x8f,0x2,0x8b,0x5d,0xb0,0xe1,0x80,0xa3,0x28,0x4, + 0x14,0xa6,0xf4,0xf3,0x49,0x6e,0x32,0xf6,0x31,0x74,0xe9,0xe9,0x1,0xcb,0x54,0xc8, + 0x8e,0x1,0x7d,0xa9,0x14,0x73,0x79,0xf0,0x85,0x5c,0x8b,0x2d,0x2f,0x37,0x4f,0xdc, + 0x79,0x64,0x96,0xc6,0xc5,0x59,0x68,0x8e,0x34,0xe7,0x85,0xe9,0x8b,0x41,0x67,0xe3, + 0xfa,0x7b,0x32,0x1a,0x51,0x9a,0xb4,0x27,0x1b,0xa,0x4c,0xed,0x79,0xa9,0x61,0x68, + 0xda,0x7f,0x4e,0xc4,0x3,0x50,0x71,0x2c,0x3b,0x90,0x8e,0x4b,0x3a,0x79,0x87,0xc, + 0x1d,0x2d,0xbe,0xaa,0x41,0xd9,0xfc,0x65,0xd0,0xd4,0x77,0x75,0x3b,0x9a,0x81,0xc, + 0x42,0xb5,0x64,0x34,0xd8,0xb,0x66,0x94,0x7e,0x58,0x18,0xbc,0x5e,0x78,0xa3,0x96, + 0x15,0xe8,0x32,0xd1,0x1b,0x94,0x41,0xd5,0x68,0x8,0xd,0x26,0x13,0xe,0x62,0xb, + 0xc4,0x6d,0x7d,0xda,0xec,0x5a,0xc4,0x7,0x4f,0xaa,0xcf,0xd2,0x4c,0x8d,0xad,0xc9, + 0x53,0x11,0xac,0x2e,0x2e,0x7c,0x90,0x4d,0xd,0xdf,0x89,0x2a,0x8f,0xa5,0x73,0xcf, + 0xd2,0x8d,0xa2,0xc8,0xe2,0x53,0xb0,0x35,0x75,0xfe,0x12,0xb7,0x11,0x26,0x64,0x72, + 0x51,0x29,0x9b,0xda,0x7f,0xb7,0x92,0x30,0x98,0x16,0x58,0x53,0xe5,0x82,0x20,0x79, + 0xbe,0x2d,0xd6,0x1,0x21,0x92,0x18,0xcd,0xa0,0x37,0x3a,0xe8,0x75,0x62,0x4d,0x66, + 0x87,0xc1,0x91,0xd9,0x32,0xab,0x10,0x81,0xe0,0xd6,0x99,0xdc,0xf0,0xe8,0xc6,0xa8, + 0xa,0x37,0xb3,0x7f,0xc9,0x54,0x62,0x76,0x2b,0xf5,0xbd,0x80,0x53,0xcf,0x86,0x82, + 0x3a,0xaf,0xa0,0xc9,0x12,0x9,0xe0,0xe8,0xef,0x18,0xe4,0xfa,0x6,0x9c,0xe4,0xcb, + 0x0,0xb3,0x74,0xfe,0x43,0x9e,0xa9,0x30,0xdc,0x10,0xbc,0xbc,0x2b,0xc1,0xd5,0xd6, + 0x8c,0xed,0x7a,0xcc,0xa0,0xfa,0x6b,0xe3,0x40,0x21,0x2d,0x44,0xd1,0x3c,0x97,0x48, + 0xb,0xb6,0x19,0x78,0x33,0x45,0x7,0xb9,0xc7,0x5,0xc9,0x6,0xe,0xf2,0x6b,0xc0, + 0x70,0xe3,0x56,0xaa,0xa2,0xb4,0xdb,0xa8,0x63,0x86,0xf1,0x2,0x7c,0x57,0x45,0x54, + 0xfc,0xb9,0x94,0xd8,0xe5,0xf7,0xe0,0x22,0xe,0xb,0xb5,0x60,0x2b,0x27,0x5f,0x6, + 0x88,0x29,0x1f,0xc4,0x84,0xce,0x31,0x62,0x3f,0x79,0xd5,0x11,0x3,0x27,0x89,0xb, + 0x40,0xe1,0x2d,0xfc,0xdc,0xec,0xbe,0xd5,0x40,0x6a,0x60,0x48,0x36,0xba,0xc3,0x35, + 0x4f,0xc8,0xbf,0x95,0x6f,0x44,0x2b,0x47,0xf0,0xc7,0x36,0x4b,0xb6,0xd9,0x5f,0xd7, + 0xe5,0xd3,0xd4,0xba,0xf0,0x43,0x5d,0x37,0x2d,0xb7,0x4e,0x7,0x99,0x17,0xf2,0x1, + 0xde,0xf9,0x79,0x61,0x7a,0xbf,0x86,0xc3,0xc8,0x95,0x5a,0x49,0xd0,0x47,0xf9,0x23, + 0x84,0x48,0xc5,0xe4,0xe0,0x90,0x90,0xa0,0x24,0xdc,0x10,0x8e,0x67,0x2b,0x3c,0x8a, + 0x72,0x59,0x2b,0xf7,0x99,0x63,0x40,0xe9,0xa9,0xd0,0x51,0xe8,0x94,0x53,0x91,0x9d, + 0xeb,0x81,0x24,0x3f,0x6a,0xa0,0xbd,0xfd,0x81,0x63,0x22,0x82,0x8a,0x11,0x7c,0x6e, + 0xd3,0x46,0x63,0x6b,0x53,0xe2,0x6f,0x71,0xf,0xa5,0xc0,0xea,0xbd,0x94,0xe7,0x43, + 0xde,0x82,0x80,0x4e,0x35,0xf7,0x71,0x22,0xaa,0xbb,0xb5,0x5d,0xd4,0x9c,0x7c,0x9d, + 0x46,0x42,0xb3,0x1f,0x97,0xbc,0x9,0x84,0x54,0xad,0x19,0xc1,0xb2,0xa2,0xf6,0xb1, + 0xe4,0x46,0x91,0xd,0xf4,0xbb,0xbd,0x9e,0xb1,0x7f,0x4f,0xce,0x79,0x67,0xd2,0x54, + 0x18,0xcf,0x47,0x8d,0x8,0xf3,0xae,0x6c,0xe2,0xef,0x3a,0x7e,0x1,0xae,0x8d,0xdb, + 0x1e,0x2e,0x72,0x71,0x49,0x7f,0x19,0x62,0x27,0xa8,0xa6,0x24,0xb0,0xcf,0xec,0x27, + 0xde,0xd4,0x40,0xb8,0x4,0x85,0xf2,0xcd,0x70,0x39,0x58,0x5a,0x26,0x8e,0x8d,0x5d, + 0x5,0xea,0x5d,0x38,0xec,0x54,0xc1,0x12,0x20,0xf4,0x22,0xc9,0x27,0xd,0x73,0x4, + 0xb7,0xa8,0xf2,0x54,0xac,0x5c,0xdb,0x9a,0xe2,0x56,0x88,0x3e,0xd3,0xbe,0x1a,0xc5, + 0x94,0x27,0x2f,0xd4,0x7d,0xcd,0xba,0xd9,0xff,0x84,0x50,0xc5,0xfb,0xf5,0x1b,0xcb, + 0xb3,0xcd,0x6b,0xb0,0xd5,0xde,0x6b,0xe6,0xe2,0x7d,0xc3,0xf5,0x5c,0x48,0xb8,0x56, + 0xb6,0xce,0x4c,0xaa,0x28,0xac,0xbd,0x37,0x2d,0xa,0x56,0x63,0xcb,0x5e,0x6f,0xcb, + 0xdb,0xd9,0x81,0x2d,0x82,0x9,0x57,0x91,0xac,0x3c,0x36,0x7b,0x99,0xdd,0xa1,0x30, + 0xf0,0x7e,0x52,0x59,0x9f,0xbd,0xe,0xfc,0x17,0x4d,0xa8,0x34,0xa9,0xe6,0x76,0x2b, + 0xbd,0x52,0x9d,0xba,0xe6,0x5e,0x9e,0x9a,0xb0,0xd7,0xb,0xe5,0x72,0x8,0x57,0x44, + 0xa6,0xaa,0xd1,0x71,0x30,0x21,0x72,0x82,0x8b,0x6d,0xf4,0x84,0x97,0x94,0xbc,0x5b, + 0x8c,0x4,0xfb,0x4,0x72,0xc7,0x8e,0x78,0xd8,0xad,0x7f,0xb0,0xab,0x52,0xb5,0xe3, + 0xce,0x46,0x68,0x8d,0xc2,0x32,0xaf,0x81,0x62,0x95,0x64,0x7b,0xd6,0x61,0x30,0x79, + 0x39,0x7a,0x72,0x3c,0xdd,0x72,0x29,0x61,0x83,0x34,0xe0,0xf,0xf3,0x62,0xa,0x96, + 0xa5,0x84,0xe0,0x30,0x7d,0xe,0xfe,0x91,0x47,0x36,0xeb,0x50,0xdb,0xa4,0x86,0x98, + 0x83,0x79,0x51,0xb9,0x98,0xa9,0x55,0xf5,0x87,0xf7,0x48,0xf3,0x4a,0x99,0x63,0xcb, + 0x7d,0x70,0xdb,0xe0,0x2f,0x6a,0x14,0x3d,0x44,0x72,0x9e,0xd0,0xc,0xd6,0x3d,0xa, + 0x7e,0xcb,0xc4,0x1d,0x6,0x8f,0xc4,0x34,0xf6,0x3e,0x38,0xc3,0x20,0x34,0x7e,0x94, + 0xdf,0xfe,0xf3,0xc,0x60,0x7b,0x98,0xc,0x4d,0xd1,0xc1,0x62,0xdd,0xf7,0xaf,0x3d, + 0xee,0x4f,0x6d,0xe0,0x5,0x55,0x6f,0x90,0xb1,0x15,0xe5,0xcf,0x97,0x43,0x4f,0x8a, + 0x22,0xf1,0x59,0x5d,0x69,0xc3,0x97,0x8c,0x98,0x41,0xe6,0x51,0x69,0x12,0xd6,0x63, + 0x62,0x26,0x50,0x9d,0x4c,0x40,0x5b,0x2b,0xc0,0xde,0x9a,0x1a,0xb6,0x97,0xf3,0x87, + 0x17,0xd5,0xf8,0x5c,0x72,0xd8,0xb8,0x3c,0x51,0x9,0x7d,0xaf,0x5c,0xea,0xcf,0xb4, + 0x65,0xc4,0x74,0xf9,0x6f,0x5f,0x47,0xdf,0x6b,0xc2,0xa7,0x46,0xaa,0xb6,0xe,0xbc, + 0xa7,0xb5,0xf5,0x7d,0x5f,0x49,0x58,0xfc,0xad,0xf6,0x15,0x9c,0xe9,0x44,0x8e,0xfb, + 0x62,0x6f,0xe5,0xfe,0xdd,0x57,0x27,0xa1,0xe3,0x87,0x86,0xc1,0xd0,0x95,0x9a,0xba, + 0x87,0x57,0x7d,0x46,0x91,0xfc,0x50,0x71,0x9e,0x5b,0x2f,0x85,0x43,0x1a,0x7f,0xb5, + 0xb5,0xa9,0x28,0x66,0xa0,0xbd,0x15,0x30,0x63,0x37,0x44,0x8f,0x80,0x7,0x25,0x11, + 0xe7,0x70,0xaf,0x84,0x5f,0xe,0x47,0x88,0x22,0xc1,0x50,0x69,0x8b,0x37,0x19,0x44, + 0x84,0x3d,0xdb,0x7,0xa1,0xee,0x1f,0x90,0xe7,0x8b,0xc7,0x2e,0xa6,0x42,0x75,0x9e, + 0x61,0x51,0x37,0x6f,0xa7,0xda,0xd,0x23,0xf4,0x5b,0xf,0xcf,0x5b,0x6c,0xab,0xee, + 0x60,0x1d,0x14,0xf3,0xf6,0x7b,0x94,0x43,0x7b,0xda,0x6a,0x96,0x38,0xc9,0x40,0xdf, + 0x10,0x82,0x50,0x8f,0xdc,0x4f,0x3e,0xae,0x85,0xe1,0xb4,0x66,0x6,0x41,0x72,0xc0, + 0x72,0x28,0xba,0x2e,0x55,0x1a,0x2a,0xc2,0x16,0xc1,0xa6,0xd5,0x74,0xbb,0x43,0xcc, + 0x2c,0x84,0x88,0x55,0xa2,0xc2,0x45,0x7f,0xf7,0xa4,0xfe,0xd3,0x6f,0xd4,0xae,0xac, + 0x55,0xdf,0xc4,0x5b,0x76,0x68,0x48,0x19,0x88,0xf9,0x5f,0x29,0x96,0x1,0x73,0x54, + 0x58,0xed,0x3d,0xfb,0x26,0x81,0xb,0xe1,0xb8,0x66,0x79,0x73,0x9e,0x68,0xe1,0x84, + 0xfb,0xd5,0xc9,0xdb,0x57,0x3f,0x74,0x4,0x97,0x39,0xd8,0xee,0xb6,0x97,0xc5,0xb5, + 0xb6,0xd5,0x7c,0xa5,0xd8,0x9b,0x7a,0x22,0xfe,0xa6,0xeb,0x18,0xeb,0x56,0xf4,0x94, + 0xe0,0x68,0xe1,0x6,0x5e,0xc4,0x5f,0x32,0xb5,0x8b,0xc,0x2,0xae,0x8e,0x3b,0xf5, + 0xcc,0x73,0xae,0x7e,0x8f,0x95,0x2d,0xdf,0xce,0xda,0x69,0x69,0xa1,0xbf,0x5f,0x2f, + 0x6e,0x2f,0xf9,0xae,0xb8,0x46,0xb5,0x15,0xa4,0x2d,0x40,0x1d,0x49,0x8,0x82,0x6d, + 0x32,0xa4,0x77,0x58,0x9e,0xbe,0x73,0xbe,0x18,0x5f,0x96,0x7d,0xa,0xf2,0x10,0x46, + 0x53,0x7d,0xcc,0x22,0x4b,0x70,0x9,0x89,0x8f,0xa2,0xfb,0x63,0x58,0xe1,0x8a,0x37, + 0x4e,0xc4,0xff,0x9,0x6,0x95,0x6e,0x1d,0x6e,0x7d,0x91,0x70,0xd0,0xf7,0x51,0x26, + 0x90,0xff,0xe1,0x8e,0x38,0xdd,0x5b,0x54,0xf7,0x61,0x93,0x41,0x12,0x7b,0xef,0x25, + 0x7c,0x8a,0x9f,0x5b,0xd4,0x28,0x54,0x8f,0x2b,0x2a,0xbe,0x52,0x93,0x7d,0x61,0x48, + 0xa6,0xb3,0xb9,0x9f,0xd6,0xf5,0x54,0x66,0x8e,0x63,0x6,0x58,0x77,0xf5,0x57,0xe2, + 0x39,0xd5,0x38,0x10,0xcd,0x7c,0xa5,0xea,0x2b,0x40,0x1b,0x91,0xa0,0x58,0xf2,0xa, + 0x56,0x43,0x9f,0x7,0xa1,0x33,0x23,0xd8,0x80,0x3f,0xf0,0xb0,0x7f,0x10,0xf8,0xe8, + 0xf5,0xd3,0xa4,0x45,0x78,0xb3,0x53,0x41,0xdf,0xa0,0x72,0xf9,0xa7,0xa2,0x59,0x2d, + 0x3f,0xd4,0x13,0x6f,0xee,0x9a,0x7b,0x68,0xab,0x7c,0x30,0x38,0x12,0x5e,0x4b,0xce, + 0x45,0xaa,0x8,0xb3,0xa3,0xf0,0xa0,0xa1,0x29,0x63,0x34,0x61,0xc,0x64,0xc5,0xfe, + 0xdc,0xad,0x54,0x1e,0xe7,0xdc,0xe5,0xcd,0xd6,0xc1,0xce,0xfe,0x4b,0xef,0x1e,0x71, + 0x67,0xc4,0xce,0x41,0x20,0xc7,0x40,0x47,0x1c,0x31,0x64,0x8b,0x7a,0x62,0xc6,0x88, + 0xf1,0xd3,0x9a,0x59,0xfd,0x48,0x4e,0xa8,0xfc,0x55,0xf6,0xa3,0x8,0xbd,0x8f,0x81, + 0x15,0x2f,0x52,0xcd,0xf6,0x89,0xf8,0xdf,0xcb,0x7c,0x7c,0xce,0xc2,0x2a,0xfb,0x35, + 0xb4,0x18,0xf3,0xfd,0x61,0xbc,0xf9,0xc2,0xcb,0x5,0xff,0xad,0x9,0x4b,0x5c,0x88, + 0x2,0x3e,0x8e,0xfb,0x6,0x99,0xc9,0x1e,0x20,0xfe,0x94,0x20,0xe3,0x8,0x36,0xc5, + 0xda,0xb0,0xc9,0x86,0x51,0x3a,0x15,0x69,0x5e,0xc6,0xa,0xde,0xba,0x88,0xfd,0x28, + 0x3a,0xa4,0xe0,0x15,0x32,0xee,0x53,0x57,0xc4,0x1a,0xcd,0x1d,0xba,0x42,0x70,0x24, + 0x1,0x5,0xc8,0x8a,0x55,0x97,0x42,0x47,0x6e,0x62,0xa9,0xa9,0xc1,0x3,0xe0,0x3, + 0x6b,0x5f,0x7,0x82,0xcc,0xcc,0xdc,0xa8,0xe7,0x49,0x2,0x3a,0xc7,0x64,0x95,0xff, + 0xd2,0x66,0x2,0xea,0xd3,0xd0,0x85,0x80,0xb7,0xf7,0x68,0x70,0x69,0xbf,0x8a,0x44, + 0xd7,0x30,0x9f,0xe2,0xd1,0xcb,0xae,0xd7,0xdd,0xc7,0xb,0xa7,0xd3,0x54,0x90,0x85, + 0xe3,0x61,0x33,0x94,0x62,0xb3,0xcd,0x8f,0xbb,0x2d,0x59,0xde,0x96,0x95,0x9,0xf6, + 0xae,0x71,0xc3,0xe9,0x57,0x44,0x8d,0x3b,0xc1,0x8b,0x43,0x5f,0x8d,0xcd,0x55,0xa5, + 0x17,0x5f,0x91,0x5,0x9e,0x11,0xb0,0x1d,0x5c,0x15,0xbf,0x1d,0x36,0x81,0xa6,0x83, + 0x94,0xe4,0x6d,0x90,0x5b,0x20,0x45,0x80,0x93,0xd2,0xa1,0x7f,0x27,0xaf,0x38,0xbc, + 0xb,0xdb,0x9d,0x1b,0x75,0xd1,0x9,0x53,0x30,0x33,0x13,0x24,0xb7,0xa2,0x5e,0x5a, + 0x80,0x41,0xec,0x3,0x90,0x34,0x19,0xdd,0xd2,0xd9,0xe9,0x24,0xe2,0xde,0x8a,0x29, + 0xc,0x9,0x5e,0x1e,0x80,0x38,0x29,0xfa,0x99,0x41,0xc0,0x7d,0x59,0xf7,0xe2,0xb3, + 0xab,0x7f,0x53,0x7,0xfe,0x60,0x8d,0x2b,0x1e,0xd7,0xee,0xba,0x68,0x64,0xa9,0x8e, + 0x31,0xaf,0x8f,0x53,0x1b,0xf8,0xa0,0xbd,0x42,0xb8,0x95,0x1c,0xf2,0x6f,0x53,0x14, + 0xc9,0xe,0x12,0x9f,0xaf,0x3f,0xd4,0x6c,0xd6,0x29,0x8,0xcc,0xff,0x8a,0x3a,0xf8, + 0x60,0xb6,0xe6,0xf,0xb4,0x5b,0xed,0x4f,0x25,0x7a,0xdd,0xe4,0xf3,0x26,0xc2,0x1e, + 0xbc,0xa,0x42,0x74,0xc7,0x37,0xdc,0x70,0x5a,0xe7,0x6b,0x1f,0x97,0x11,0x7f,0x48, + 0x75,0xfd,0xe,0x69,0xa9,0xb1,0x1e,0x76,0x1f,0xa5,0x3f,0xd0,0x8d,0xd5,0x24,0x83, + 0x37,0xbc,0x90,0xf,0x54,0x81,0x7e,0xc9,0x15,0x7c,0xb6,0x9a,0xb1,0xd6,0xb,0x23, + 0x49,0x3e,0x98,0x6e,0x3d,0x17,0x23,0x4,0x75,0x11,0x6b,0x73,0x64,0x9,0x7,0xd3, + 0x41,0x9a,0x44,0x4,0x41,0x77,0xee,0x89,0xe,0xbe,0xf4,0xa8,0xfc,0x43,0xb,0xbc, + 0xa1,0xba,0x26,0xd9,0x6c,0xc0,0xaa,0x15,0xe8,0x99,0x16,0x59,0xc2,0xf6,0x18,0xe8, + 0xa7,0x17,0xe5,0x65,0x34,0xa8,0x5c,0x37,0xb,0x52,0xeb,0x75,0x12,0x57,0x51,0x1b, + 0xe,0xc2,0x89,0x9f,0xd0,0x3b,0x3c,0x17,0x81,0xc5,0x2b,0x27,0x4f,0xdd,0x8f,0x8f, + 0x67,0x83,0x54,0x3d,0xcf,0x63,0xf2,0x51,0x37,0x1b,0xf,0xb6,0x26,0xf4,0x2c,0x78, + 0xe2,0xb9,0x4d,0x79,0xb7,0x48,0x1e,0x2a,0x28,0xe6,0x25,0xa5,0x20,0x3d,0x72,0x5, + 0xac,0x40,0x3f,0x13,0x1c,0x56,0xb4,0xb6,0x1c,0xb,0xa5,0x8d,0xbf,0x8e,0x74,0x11, + 0xf7,0xda,0x49,0x65,0x85,0xa0,0x57,0x8,0x8a,0xe1,0xa2,0xf3,0xe0,0x51,0xd2,0x84, + 0x4b,0x92,0xd5,0x1a,0x14,0xfb,0xd2,0x76,0x9b,0xd4,0xdd,0xf9,0x4e,0x3e,0x86,0xfb, + 0xc7,0x8e,0xbb,0x49,0xcf,0x80,0x1a,0x4c,0xc0,0xad,0x20,0x44,0xd,0x86,0x7,0xc3, + 0xc1,0xa4,0x8d,0xda,0x91,0x97,0xf7,0xa3,0x9b,0xff,0xf1,0x46,0xa2,0xf6,0xfa,0x94, + 0xc3,0x69,0xf,0x85,0xcf,0x6d,0x11,0x20,0x71,0x4b,0x96,0x63,0xde,0xdb,0x32,0xe5, + 0xa9,0xf,0xe8,0xa7,0x90,0x9e,0x43,0xba,0xc7,0x2d,0x6a,0xb1,0xb2,0xe1,0x4b,0x84, + 0xf1,0xf3,0xa3,0xc3,0x7f,0x28,0x84,0x6e,0x4b,0x6c,0x16,0xc1,0x97,0xf8,0x1a,0x6f, + 0x8b,0x25,0x98,0xad,0x92,0x44,0xa6,0x65,0xd8,0x75,0x18,0xbc,0x65,0x33,0xa9,0x53, + 0x6a,0xc1,0x77,0x8f,0xa2,0xee,0x48,0x7d,0xcd,0xa5,0xc8,0xb8,0xca,0x53,0xe7,0x4a, + 0x49,0xad,0xaf,0x27,0x67,0xa0,0x7b,0x74,0x80,0xff,0x9,0xd1,0x18,0xac,0x78,0xb6, + 0xa1,0x42,0x1f,0xc,0x6e,0x95,0xc4,0x87,0x6e,0x5f,0x4c,0x13,0xca,0xda,0x59,0x60, + 0xee,0x13,0x50,0xc,0xdf,0xdc,0x4,0xf9,0xbd,0xee,0xe5,0xf2,0xcb,0x7f,0x3,0x91, + 0xaf,0x7b,0x2e,0x11,0x1b,0x30,0x6b,0x57,0x7a,0x6a,0x3d,0x40,0x45,0xc8,0x58,0xff, + 0x61,0x9d,0x16,0x8c,0x99,0x3d,0x12,0x3c,0xe5,0x22,0xda,0xfc,0x74,0x7e,0xfd,0xf0, + 0xce,0x31,0x9,0xe8,0xe4,0x11,0x14,0xb4,0x4b,0x54,0xa2,0x70,0x69,0xcf,0x63,0xba, + 0xd5,0x13,0x83,0x7d,0x2,0x7e,0xfc,0x11,0xa4,0x4,0xd7,0x80,0xa5,0x2b,0xb5,0xc6, + 0x91,0x54,0xc2,0x3d,0x18,0x90,0xb2,0xa4,0xdc,0xaf,0xd,0x9,0x15,0x7,0xe0,0x56, + 0xfa,0x62,0x7a,0xe6,0x3d,0xc4,0x33,0x8b,0xbd,0x7,0x12,0x9c,0x7,0xa7,0x21,0x61, + 0x28,0xba,0x62,0xbc,0x55,0x97,0xc9,0x6d,0x9f,0x98,0x7b,0xc7,0x42,0xc4,0x48,0xef, + 0x84,0x9b,0x5,0xa,0xbd,0x21,0x55,0x9,0x86,0x3e,0x5b,0x5f,0xf7,0x20,0x22,0x9f, + 0xa5,0x8c,0x35,0xbd,0x11,0x11,0xa2,0xb3,0x61,0x62,0x22,0xb5,0x2d,0x17,0xaa,0xbb, + 0xec,0x43,0xae,0xc5,0x6b,0x36,0xde,0xb9,0xf4,0xb0,0x30,0xee,0x21,0xc7,0x98,0x67, + 0x48,0x6c,0xae,0x88,0x85,0x86,0x24,0xc7,0xfb,0x5c,0x7d,0x27,0x34,0x83,0xfb,0xb3, + 0xdc,0xdb,0x62,0x4b,0x31,0xca,0xae,0x3a,0xff,0xea,0x18,0x2c,0x25,0x3f,0x84,0x3a, + 0x43,0x27,0xd0,0x42,0x3e,0x32,0x8d,0xe6,0xdb,0x60,0x27,0x96,0xaf,0x81,0xd0,0x89, + 0x1,0xcd,0x8a,0xeb,0x7b,0x12,0x97,0x95,0xec,0x17,0x52,0xf9,0xca,0x4e,0xc2,0x6d, + 0x7b,0x2f,0x55,0x1,0x11,0x12,0xd8,0xa0,0x1d,0x4,0x63,0xe,0x23,0xde,0x8e,0xe9, + 0x60,0x9d,0xc0,0xb1,0x40,0x25,0x11,0xb3,0x97,0xda,0x8c,0xf3,0xa7,0x8b,0x3e,0x9f, + 0x6a,0xc7,0x9b,0x82,0x2,0xb7,0x6f,0xa5,0x30,0x5b,0x4d,0xf2,0x88,0xaa,0x13,0x2, + 0x86,0x64,0x21,0xaf,0xd,0xa2,0x18,0xd0,0x24,0xa3,0x29,0xf5,0xb5,0x3f,0x58,0x99, + 0xc6,0xee,0x93,0xf,0xe0,0xd2,0xf8,0xc2,0x70,0xeb,0xe,0xe4,0x65,0x12,0x95,0x76, + 0x3d,0x49,0x23,0xaf,0x3d,0xd2,0xf3,0x33,0x52,0x5c,0xd6,0x2d,0x61,0x4b,0x12,0x5a, + 0x64,0xad,0xf,0x63,0xc3,0x2f,0xe3,0x63,0x1a,0xe5,0x29,0x28,0xc,0x7d,0xba,0x21, + 0xb7,0x76,0xa9,0x38,0x10,0xb4,0xcc,0x45,0x5d,0x64,0xa6,0x81,0xfa,0x17,0x6b,0x65, + 0xa7,0x55,0x9d,0xfe,0x75,0x90,0x21,0x22,0xd4,0xaf,0x76,0x20,0xe4,0xf9,0x88,0x7a, + 0xdc,0xc7,0x8,0x22,0xff,0x5a,0x66,0xb4,0x45,0x25,0xfd,0x12,0x33,0x85,0x3e,0x7f, + 0xfb,0x8,0x18,0x59,0x86,0xec,0x84,0xdc,0x76,0x78,0xed,0x9b,0x1c,0x17,0x76,0x86, + 0x67,0xcb,0xbf,0x76,0xbf,0xf9,0xb9,0x72,0x19,0x84,0x7a,0x1e,0xaa,0xb3,0x9,0x97, + 0x58,0xcc,0xb8,0x99,0xae,0xb2,0xe9,0x24,0xbd,0x4,0xfb,0x9e,0x5a,0x59,0xc8,0x66, + 0x87,0x83,0xea,0x60,0x60,0x5f,0xd5,0x97,0x89,0x89,0x4d,0xdb,0x20,0xbb,0x6a,0xb0, + 0x95,0xb8,0xcb,0xe2,0x22,0x1c,0x81,0x76,0x6d,0xde,0xa0,0x64,0x19,0x9a,0x59,0x24, + 0xa2,0xcd,0x89,0x8a,0xf9,0xa3,0xb0,0x33,0xd9,0xf5,0xf7,0x54,0xa1,0xce,0x37,0x3e, + 0x90,0x1,0xaa,0x7d,0x53,0x24,0x26,0xe0,0x31,0xe9,0xc9,0xec,0x68,0xac,0x85,0xf2, + 0x58,0x1c,0x77,0x44,0x67,0x70,0x77,0x73,0x82,0xea,0x8,0x81,0xdd,0xf8,0x32,0x25, + 0x72,0x81,0x75,0x79,0x96,0xc7,0x6a,0x10,0x12,0xd0,0xf1,0xfb,0xad,0x26,0xd3,0xf0, + 0xaf,0xd7,0x3a,0xed,0x59,0xa6,0xb9,0x8,0x89,0xfa,0x97,0x5f,0xf8,0xb4,0xd,0xcb, + 0xd0,0x92,0x20,0x2b,0x91,0x3c,0xea,0xa2,0xeb,0xfb,0xd0,0x12,0x4e,0xbc,0x5c,0xec, + 0x13,0xb7,0xfb,0x18,0x94,0xca,0xbf,0x39,0x73,0xad,0x53,0x19,0x45,0xf5,0x2a,0xb, + 0x4b,0x5e,0x47,0x97,0xbe,0xe4,0x9b,0x6b,0x68,0x4,0xb2,0x22,0x25,0x7,0xde,0x80, + 0xbe,0x77,0x65,0x61,0x8f,0xcc,0xde,0x69,0xf,0x9a,0x2d,0xdd,0x87,0x14,0xec,0xb6, + 0xd4,0xfe,0x7d,0xe,0xa7,0xa5,0xf,0x3,0xd9,0x31,0xa6,0xda,0x8d,0x8f,0xd1,0xc0, + 0x19,0x1b,0x58,0x2f,0x43,0x41,0xfd,0xee,0x59,0x38,0x45,0x61,0xa0,0x75,0x3a,0x0, + 0xf4,0xd4,0xf7,0x49,0x3c,0x7b,0x27,0x20,0x3,0x85,0xe2,0x2d,0xcd,0x0,0x67,0xfb, + 0xdc,0xb9,0x27,0x1b,0xbb,0x32,0x9b,0x3a,0x45,0xfc,0x76,0xdf,0x7,0xb5,0x81,0xe5, + 0xf3,0xa6,0xc1,0x36,0xa4,0x1,0xf6,0x67,0x63,0x64,0xa7,0xed,0xc9,0x27,0x4b,0xe1, + 0xbe,0x2f,0x81,0x26,0x40,0x36,0x15,0x5c,0x1d,0xdc,0x41,0x26,0xc,0x4c,0xde,0x45, + 0x5f,0x52,0x91,0x2d,0x25,0x1b,0x9b,0xbf,0xf7,0xc9,0xed,0xa3,0x48,0x90,0x1b,0xed, + 0x6b,0xb,0x2d,0xbd,0xb6,0x1e,0x20,0xce,0xc0,0xa2,0x9b,0xdd,0x85,0xf9,0xe3,0xc6, + 0xc3,0x74,0xd8,0x61,0x84,0x2,0xf0,0x2f,0x64,0x56,0xeb,0x40,0x25,0x5c,0x94,0x71, + 0x37,0x81,0xf0,0xc1,0x98,0xdd,0x6d,0xa2,0xe2,0x5d,0x8e,0xbf,0x22,0x6f,0x7a,0x6d, + 0x9c,0x15,0xec,0xfd,0xd4,0x8e,0xd9,0x22,0x9,0xe9,0x76,0xa1,0xb2,0x94,0x20,0x1a, + 0x3b,0x31,0x24,0x76,0x85,0x50,0x1b,0x3b,0x75,0xd8,0xe6,0xc6,0xff,0xc5,0xce,0xe3, + 0x73,0x1a,0xc5,0x66,0x56,0x43,0x9,0x40,0x86,0xe4,0xf9,0xd,0x4d,0x5b,0x37,0x10, + 0x2a,0xdc,0xf2,0x6f,0x7,0x5f,0xec,0x7c,0xf0,0x81,0xd4,0x6d,0xc0,0x74,0xd2,0x67, + 0x10,0x91,0x17,0x4d,0x6c,0xf7,0xec,0x5e,0x83,0x42,0x52,0x4f,0xc5,0x19,0x17,0x96, + 0x98,0xd0,0xfc,0x10,0x51,0x1d,0x46,0x89,0xb3,0xa4,0x65,0x8c,0xf2,0xc6,0xe0,0x88, + 0xdb,0x74,0xb1,0xbf,0xd4,0xd4,0xb,0xe0,0x13,0xf1,0x8a,0xa9,0x19,0x56,0xc2,0xfb, + 0xe6,0xdf,0x7f,0x58,0xdd,0xce,0xbb,0x4e,0x27,0x55,0x2d,0xf2,0xa5,0xe9,0xca,0x30, + 0xa6,0xb0,0x36,0x5e,0x85,0xc3,0x9e,0xec,0x6b,0xaf,0x92,0x17,0x53,0x3c,0x98,0x86, + 0xe7,0xd5,0xa1,0xb8,0x47,0x5c,0xa,0xca,0x1b,0x20,0xd,0x79,0xfe,0x9a,0xb5,0xc8, + 0x1,0x5d,0x54,0x22,0xd5,0x1f,0xcb,0x49,0x37,0x1a,0x53,0x89,0x17,0x74,0xd7,0xfa, + 0x4a,0x79,0xfb,0x5f,0xef,0x59,0x4,0x93,0xd2,0x1d,0xb4,0xae,0x85,0x86,0x7a,0x61, + 0xe,0xd2,0xca,0x9b,0x70,0xe2,0x57,0xd8,0xf,0xf3,0x92,0x7,0x6a,0x15,0x56,0xa5, + 0x3e,0xfd,0x48,0x1b,0xa4,0x65,0x7c,0x77,0x50,0x20,0x83,0x22,0x8c,0x4b,0x30,0x24, + 0x4e,0xde,0xaf,0x6f,0xf0,0x39,0x6,0x46,0x20,0xb3,0x25,0x1f,0x1d,0x18,0xfc,0x20, + 0x28,0xa7,0x31,0x36,0xcb,0xd1,0xe3,0x97,0x57,0xb3,0x91,0xa2,0x4d,0x9f,0xbd,0x1e, + 0xf6,0xcb,0x7d,0xf2,0x66,0xf7,0x16,0x55,0x9d,0x88,0x3b,0x1c,0x11,0xc0,0x7d,0xa2, + 0x4a,0x67,0x15,0xda,0xaf,0x8d,0x2b,0x11,0xe1,0x4f,0xb4,0x5f,0x97,0xdc,0xf5,0x58, + 0x1a,0x8c,0xbb,0x20,0x28,0x9e,0x20,0x2e,0x10,0x84,0x3c,0xc6,0xbc,0x14,0xf8,0x90, + 0xba,0x48,0xa5,0x9b,0xc5,0x61,0x19,0xa0,0xfb,0xea,0x8b,0x58,0xe1,0x5e,0xc2,0x74, + 0xce,0xfe,0xe2,0x42,0xb1,0x11,0x36,0x6a,0x94,0x90,0xd1,0x52,0xbb,0x1e,0x87,0xdb, + 0xf0,0xea,0x4c,0x54,0x1f,0x76,0x10,0xb9,0xe4,0x13,0xdb,0xa5,0xee,0xdf,0xb0,0x46, + 0xec,0x30,0x46,0xab,0xbf,0x78,0x18,0x7b,0xbd,0x1f,0xe0,0x27,0xf4,0x3a,0x26,0x53, + 0xf7,0x18,0x1e,0xd3,0xe1,0xdf,0xfd,0x92,0x81,0x8,0x8e,0xc8,0x8b,0x20,0x48,0xbe, + 0xc9,0xe3,0x4a,0xc6,0x54,0x71,0x3e,0xbf,0x9c,0xb3,0x98,0xd4,0x48,0x33,0xf7,0x7e, + 0xf3,0x24,0x6,0x22,0x43,0x47,0x99,0x8c,0x23,0x8f,0x23,0x11,0x1d,0xae,0x8a,0xbd, + 0xbb,0xa5,0xb3,0xe9,0xe,0x77,0xa2,0xe,0x25,0x1f,0x9d,0x66,0xd1,0x8a,0xd7,0x91, + 0xa,0x9,0xd1,0x28,0xff,0x53,0xf0,0xa1,0xbb,0x28,0x6b,0x5a,0xf7,0x7c,0xc1,0x93, + 0xca,0xfc,0xe5,0xe9,0xb8,0x17,0x56,0x4b,0x64,0x4,0x35,0xe7,0xc9,0x36,0xce,0x6d, + 0xc0,0x23,0x17,0xe9,0x6e,0xa,0x56,0x26,0x4c,0x46,0x18,0xe5,0x5e,0x11,0x58,0xd0, + 0xb8,0x68,0xc6,0xcf,0x7d,0x79,0x3,0x7a,0xcd,0x2c,0xb5,0xfd,0xa7,0x35,0xfd,0x49, + 0xc0,0x37,0x75,0x13,0x80,0xc4,0xba,0x41,0xbf,0x35,0x84,0x1b,0xef,0xdd,0x93,0xa8, + 0x7a,0x3e,0x9e,0x7f,0x64,0x95,0x79,0x65,0xdf,0x91,0x4b,0x8,0x96,0x6c,0xd9,0x3a, + 0x57,0x7f,0xa,0x83,0x98,0x36,0x10,0x53,0x8,0x0,0x1d,0x62,0x5d,0x23,0xb5,0x84, + 0x70,0xde,0xcf,0x5d,0x8e,0x61,0x43,0x79,0x3c,0x51,0xc2,0x72,0xaf,0xc5,0xe6,0x83, + 0x46,0x75,0x46,0xc0,0x17,0xbf,0x23,0x14,0x54,0xf6,0x4b,0xcd,0x90,0xf2,0xa1,0xcd, + 0x33,0x61,0x54,0xca,0x58,0xc,0x76,0x5b,0x8b,0xfb,0xd2,0xfa,0x4a,0x19,0x5b,0x1f, + 0xeb,0xfc,0xfe,0x3a,0xd1,0xfc,0xf1,0x46,0x4d,0x99,0xf9,0xdf,0xd7,0x6,0xb8,0x47, + 0xd6,0x84,0x17,0xeb,0x84,0x63,0x6f,0x2,0x91,0x98,0x61,0x94,0x89,0x70,0xf,0x48, + 0x24,0x1e,0x10,0x43,0xa7,0x21,0x6e,0x7c,0xbc,0x22,0x3c,0x40,0x2c,0x5,0x4,0x12, + 0x85,0x22,0x7c,0x6c,0x80,0x72,0x60,0xf1,0xd9,0x20,0xc4,0x93,0xe,0xbe,0x63,0xc3, + 0xb6,0x86,0x66,0x0,0x6c,0xcb,0x9b,0x8d,0xc6,0x3f,0x3c,0x2c,0x1e,0x71,0x9c,0x26, + 0x9d,0xca,0x36,0xbd,0x20,0x60,0x40,0xf3,0x42,0x1e,0x9b,0xd2,0x71,0x25,0x69,0x90, + 0xf7,0x7a,0x96,0x37,0x9e,0x3c,0xbe,0x3c,0xfb,0x88,0x90,0x57,0xed,0x5b,0xc,0xb0, + 0xb8,0xc0,0xbe,0xf6,0x5a,0x4f,0x59,0x59,0x15,0x1b,0xf5,0x1a,0x64,0xc,0xa0,0xa8, + 0xf3,0xbd,0xde,0x77,0xc3,0xa4,0x28,0xa3,0x62,0xf4,0x2c,0xae,0x14,0xd9,0x2e,0x5f, + 0xbf,0xd4,0x7d,0xdf,0xf0,0xa4,0xbe,0xed,0x73,0x34,0x42,0x26,0xf,0x1b,0x2b,0x43, + 0xd4,0x12,0x76,0x53,0x1e,0xfb,0xea,0xd6,0xa1,0xde,0x1c,0x1e,0xe1,0xf5,0x9,0x8e, + 0x8f,0xff,0x70,0x16,0x2f,0xa9,0xbd,0x98,0x1b,0xe5,0x7a,0x75,0xad,0xb8,0xef,0xc2, + 0x41,0x5,0xc,0x31,0x0,0x3f,0xcf,0x28,0x79,0xb0,0x9e,0x4,0x26,0xc9,0x67,0x5f, + 0x77,0x4f,0x9c,0x81,0xb9,0xc0,0xfa,0x8d,0x78,0xb2,0x1e,0x3f,0xc5,0xbf,0x4a,0x99, + 0x93,0xd3,0x4a,0x54,0x2f,0xae,0xbe,0x71,0x89,0xd4,0x48,0xd3,0xde,0xea,0xe6,0x86, + 0xfd,0x76,0x59,0x6d,0x7e,0xbf,0x4e,0x9c,0x77,0xbd,0xa1,0xeb,0xf8,0x29,0x99,0x30, + 0x77,0xe3,0xb8,0x11,0x72,0xd5,0xb3,0x4c,0x17,0xfa,0x44,0xe9,0x2e,0x25,0x80,0x71, + 0xff,0x76,0x37,0xc9,0xc9,0x4,0xf0,0xb0,0x9e,0x22,0xef,0x70,0xec,0x72,0x4b,0xb3, + 0xfc,0x13,0x80,0x8f,0x6c,0xaf,0x1,0xeb,0x3e,0xe8,0xcf,0x32,0x21,0x62,0x6f,0xe5, + 0xc1,0xc8,0xaf,0x3a,0x10,0x13,0xe8,0xa8,0x28,0x62,0x9,0x94,0x49,0xbd,0xb2,0x82, + 0x91,0x68,0x21,0xf4,0xaf,0xa7,0xff,0xb2,0xa7,0xa5,0xcc,0x35,0xf9,0x16,0x51,0x36, + 0x87,0x6,0x89,0xc0,0xd2,0xd4,0xb0,0xa7,0xe3,0xe8,0xcf,0xc1,0xe1,0x58,0xe9,0x20, + 0x75,0xda,0xc,0x4d,0xb7,0xa4,0x7,0x8e,0xd1,0x83,0xcf,0x6b,0xd8,0x3e,0xb8,0x95, + 0x25,0x67,0xb2,0x55,0xec,0x7d,0x9a,0x18,0xea,0x28,0x1e,0xf6,0xda,0x20,0xdc,0x4f, + 0x6e,0x27,0x5a,0x5a,0x62,0xcb,0xc2,0xbf,0xac,0x75,0xd4,0xe4,0x39,0xce,0xad,0x45, + 0x6a,0x9b,0x90,0xe,0xdd,0x2c,0xd2,0x87,0xfc,0xed,0x65,0x5b,0xd8,0xab,0x41,0x75, + 0xb4,0xdd,0xbf,0xfe,0xb7,0x8d,0x66,0xf0,0x60,0xdc,0x6e,0x56,0xe4,0x25,0x51,0x74, + 0xb5,0x88,0x25,0x5a,0x40,0xe0,0x3d,0xcf,0x58,0xb2,0x93,0x89,0x44,0xe6,0xe5,0x89, + 0x9d,0x9,0x60,0xb4,0x54,0xe9,0xd0,0x2f,0xeb,0x66,0xf1,0x93,0x2,0x10,0xd3,0x63, + 0x70,0x6b,0xba,0xda,0xf1,0xf4,0x7a,0xb5,0xe8,0x5a,0x70,0x7d,0x2d,0xb9,0x27,0x23, + 0x62,0x9,0x8c,0xfa,0xe6,0xf7,0x27,0x76,0x27,0xbb,0x91,0x79,0xb2,0x29,0x7,0xc2, + 0x31,0x51,0x2f,0x29,0x84,0x6a,0xf2,0x6c,0xcb,0x7,0x65,0xf,0x29,0x8,0xaa,0xf7, + 0xdd,0xd3,0xf1,0xe2,0x80,0x63,0x3a,0xbe,0xa7,0x48,0xcc,0x14,0x5e,0x83,0xdf,0x50, + 0xc9,0xfd,0x37,0xc2,0x52,0x21,0xc5,0x47,0x21,0x73,0x19,0xb8,0x1b,0xf8,0xb2,0xba, + 0x2a,0x96,0x20,0x98,0x1,0x59,0x27,0x77,0x91,0x72,0xa6,0x87,0xd0,0x32,0x5,0x3f, + 0xfc,0x69,0xf3,0x9b,0xd5,0xa9,0x53,0x93,0x1b,0xf2,0xab,0x3e,0x26,0xff,0x89,0xcf, + 0x75,0x70,0xf1,0xb9,0xe4,0xe8,0x85,0x2a,0x6b,0xa,0x8b,0xf6,0xe3,0x57,0x70,0xc5, + 0x95,0xb8,0xc,0xf6,0x7b,0xb2,0x67,0xd3,0x15,0xd2,0xf5,0xa2,0xe7,0x97,0xf2,0x35, + 0x2d,0xae,0xd8,0xf0,0x17,0xb2,0x7e,0x13,0x7f,0xbc,0xe6,0xf9,0xa3,0x6b,0xcf,0xd8, + 0xc,0x3,0xd1,0x67,0x7a,0x13,0x5f,0x14,0xac,0xd6,0x6c,0x46,0x71,0xea,0x8b,0x1d, + 0x64,0x33,0x6c,0x22,0xd3,0xe5,0x34,0xaf,0x8,0x30,0xe6,0x77,0x85,0x80,0x4f,0xd7, + 0x85,0xf1,0x70,0xf0,0xb7,0xd4,0x7a,0xcb,0xcb,0x67,0x66,0xfd,0x7,0xe1,0xab,0x7a, + 0x17,0xbd,0xc6,0x36,0xfe,0x2f,0xbe,0x2b,0xde,0x6d,0x5b,0x1f,0xd0,0xcd,0xa0,0xcd, + 0xa3,0xd,0x8d,0x81,0xe7,0x85,0x3d,0xf3,0x13,0x58,0x27,0xbc,0xf1,0x85,0x52,0x60, + 0x5d,0xe9,0xc9,0x7d,0x33,0x19,0x20,0xe1,0xeb,0x1f,0xf4,0x34,0x2a,0x6f,0x69,0x6e, + 0x74,0xc6,0x17,0xed,0xbb,0x3d,0xd5,0x11,0xa9,0xd9,0x2b,0x38,0xe4,0xf5,0x1a,0xca, + 0x7c,0x90,0x9b,0xf7,0xb2,0xcb,0x7b,0xa8,0x7c,0x63,0x62,0x34,0x8c,0xd6,0x9e,0x98, + 0x14,0x4,0x63,0xcb,0x5,0x7d,0x75,0x27,0x7f,0x8c,0xdd,0xf9,0xb9,0x95,0x49,0xab, + 0x4b,0xce,0x85,0xa1,0x7a,0x46,0x1f,0xd9,0xe5,0x9f,0x7f,0x1d,0xe,0x58,0xa5,0x7d, + 0x3c,0xff,0x5a,0xfb,0x78,0x45,0xba,0x3f,0x93,0xdf,0x13,0x24,0x1a,0x3a,0x9c,0x2f, + 0xd5,0xaa,0x32,0x20,0x9d,0x8b,0x70,0xee,0x70,0x28,0x8a,0xed,0xb1,0xd6,0x95,0x7, + 0x3b,0x37,0x87,0xe0,0xb2,0x75,0xd4,0x3f,0x77,0x17,0x73,0x19,0xbc,0xd,0xc9,0x4c, + 0xc2,0x35,0x9,0xd4,0xb8,0x5,0x6c,0x4b,0x3a,0x5,0xc5,0xc3,0xf6,0xfd,0xd,0xfd, + 0xe,0xe5,0x54,0x3b,0x4,0xba,0xfa,0xf3,0x79,0xc3,0x71,0xbe,0x36,0xe7,0x2e,0x2a, + 0x28,0x14,0xe9,0xd7,0xcb,0x44,0x69,0xde,0x1f,0xd8,0xad,0x5a,0xd0,0xae,0x1f,0xf8, + 0xf9,0x8e,0x8b,0xbc,0xd7,0xea,0xdc,0x4a,0xe9,0xeb,0x13,0xa6,0x77,0xf2,0x55,0xd9, + 0xeb,0x1f,0x7c,0x93,0xe4,0xf6,0x38,0x11,0xe0,0xf8,0xf5,0x6c,0xb7,0xb9,0x41,0x3e, + 0xa8,0xf3,0x15,0xfe,0xc8,0xf6,0xe2,0xe6,0x5b,0x93,0xa,0x7c,0x29,0x77,0x10,0x83, + 0xe,0xd2,0x76,0x7f,0x8e,0x6d,0x61,0xe1,0x78,0xfb,0x2c,0x4,0xfe,0xf9,0x9f,0x1b, + 0x24,0xc0,0x28,0x29,0x90,0x1f,0x60,0x4,0x58,0x99,0x80,0xb5,0xbd,0xee,0x57,0x58, + 0xbc,0x9f,0x7f,0x68,0x6a,0xc0,0x1f,0x4c,0xdd,0x4e,0x2f,0x3,0xf,0x3,0xb0,0xcc, + 0x43,0x73,0xc7,0x1d,0x4e,0xbc,0xb1,0x72,0x31,0x36,0x4a,0xfc,0x88,0xcb,0x9e,0x95, + 0x2d,0x4,0xea,0xd0,0x65,0x66,0xfe,0x87,0xde,0x20,0x3c,0x7b,0x4a,0x2e,0xf5,0x97, + 0x54,0x6c,0x1,0x3f,0xad,0x59,0x69,0x69,0x7e,0xf0,0x2f,0xc4,0xb1,0xa0,0xb9,0x77, + 0x7e,0x1a,0x16,0xb1,0x5f,0x52,0xb8,0x3a,0x31,0x81,0xd3,0xfc,0x61,0x45,0xb0,0xe1, + 0x17,0x1d,0x94,0x99,0x8c,0x92,0xf1,0x1,0xed,0x11,0x76,0xc7,0x3,0x4b,0xb1,0x18, + 0x54,0x4c,0xcb,0xd8,0x6a,0xb7,0xe5,0x97,0x48,0xd9,0x61,0x9,0x76,0x51,0xa2,0xd6, + 0xf7,0xaf,0x63,0x24,0x15,0x1b,0xfe,0x8c,0x98,0x9e,0xf1,0xa1,0x9f,0x35,0x7b,0xf7, + 0x1a,0xde,0xef,0xba,0xa3,0x12,0xaa,0x9f,0xa0,0x20,0xcd,0x70,0x65,0xa8,0xf8,0x3d, + 0xf5,0xf4,0xef,0xf3,0x94,0x5,0x3a,0xaa,0x4a,0xc9,0xa1,0x13,0x4d,0x79,0x15,0x9f, + 0x1c,0xbc,0xc2,0xd5,0x34,0x37,0x5b,0x31,0x59,0xfc,0x1b,0x62,0xf3,0x1a,0x4c,0x1c, + 0x3,0x5b,0x50,0x8c,0x9c,0xd4,0x69,0x67,0xda,0x66,0x5f,0xb4,0x6e,0x4a,0x69,0xc3, + 0x63,0x8f,0x12,0x2f,0x4b,0xb6,0x4b,0x76,0xdf,0xb0,0xc5,0xc1,0x73,0xf1,0x6f,0x8c, + 0xbb,0xf9,0x88,0xeb,0xa5,0xaa,0x46,0xc3,0x85,0xd6,0xb3,0x5d,0x59,0x9f,0xb6,0xb6, + 0xfc,0x54,0x58,0x7a,0xaa,0x83,0x19,0x48,0xc1,0x6a,0xaa,0xac,0xf6,0x9,0x29,0x48, + 0xc7,0x2b,0xb8,0x68,0x66,0x39,0xbd,0x81,0x5b,0xb7,0xf3,0x83,0x98,0x39,0x69,0xf0, + 0x75,0x25,0x1f,0xc4,0xe9,0x7c,0x30,0x93,0x9b,0xf0,0xf7,0xcb,0xbf,0x13,0xc3,0x8a, + 0x55,0x83,0xdf,0x77,0x37,0xb,0xa3,0xe,0x1e,0x5f,0x2c,0xac,0x19,0x6f,0x6,0xc6, + 0xd,0x7d,0x83,0x89,0x7d,0xbb,0x6,0x6,0xb0,0x1b,0x51,0x88,0x98,0xbc,0xd7,0xc0, + 0x6d,0x2a,0xea,0x20,0xbc,0xd9,0xc2,0xa9,0x74,0xf3,0x9,0x87,0xf9,0xeb,0xe,0x5c, + 0x5e,0x45,0x7b,0x1b,0xfb,0x48,0xb7,0x0,0x55,0x5e,0x17,0xb,0x4d,0x76,0x7b,0xed, + 0xa9,0x59,0x33,0x91,0x60,0xbb,0x4b,0xac,0xc0,0x22,0x97,0x24,0xff,0x2d,0xa1,0xbf, + 0x13,0x1f,0x15,0xd4,0x66,0x89,0x2e,0x3d,0x83,0x85,0xa0,0xb0,0xdc,0xc2,0x6b,0x96, + 0x43,0x7,0xe4,0xd4,0xea,0xc8,0xcd,0x51,0xc6,0x12,0x38,0xc1,0x98,0x60,0x69,0x9b, + 0x33,0x2e,0xa1,0x47,0x8b,0xb2,0x96,0xcc,0x33,0x16,0x38,0x7e,0x9e,0x6,0x8e,0xbe, + 0x2d,0xce,0xb3,0xce,0x79,0x8f,0xc9,0x8,0x3d,0xf6,0xe1,0x2d,0xd1,0xb8,0xe6,0x3d, + 0xfb,0xb5,0x94,0xd2,0xd1,0x0,0x2c,0xb,0x73,0x82,0x30,0xc0,0x48,0xff,0xc8,0x8, + 0xe0,0xd9,0x68,0x35,0x8e,0xb8,0x7,0xf,0x7f,0x27,0xe3,0x80,0x98,0x3c,0x1a,0x1c, + 0x19,0x4e,0x64,0xf9,0x23,0xd,0xf6,0x6f,0xd4,0xfb,0xec,0xf6,0xcd,0x72,0x8e,0xd8, + 0x35,0x71,0x83,0xed,0x8b,0xfb,0x81,0x79,0xa8,0xc,0x52,0x64,0x2,0xa2,0x41,0xf9, + 0xd8,0xf5,0x88,0xee,0x6a,0xe4,0x70,0x2b,0xda,0x53,0x56,0x85,0xad,0xc1,0xf9,0x3a, + 0xf7,0x55,0x2f,0xff,0xab,0x68,0x1a,0x1b,0xef,0xd2,0x4a,0x3e,0xf8,0x7e,0xc6,0x7d, + 0x16,0xf2,0xb1,0x42,0xd0,0xc4,0xdd,0x26,0xb4,0x60,0x6d,0xe7,0x2a,0xf1,0x41,0x38, + 0xbf,0x0,0xfa,0xfa,0x58,0x26,0xbe,0xbf,0x4f,0xfa,0xce,0x53,0xb3,0x18,0x9a,0x5, + 0x45,0x8d,0xbb,0x23,0xb6,0x2,0x84,0x91,0x8d,0x71,0x51,0xfb,0x5a,0x17,0x8f,0x18, + 0x82,0xf9,0x23,0x8b,0xb8,0xf3,0xde,0x2,0xb7,0x9a,0xc5,0xa9,0xe0,0xba,0xe7,0x78, + 0xeb,0x86,0xec,0xf6,0x67,0x82,0x3c,0x73,0x7,0x7f,0xb,0x66,0x91,0x3,0x1d,0x3, + 0x2e,0xc2,0x77,0x1b,0x59,0x23,0xe6,0xf8,0xbc,0x12,0xa9,0x18,0x20,0x8f,0x4c,0x69, + 0x81,0xee,0xbb,0xc0,0x48,0x19,0xe0,0xaf,0x1,0x83,0x48,0x73,0xec,0x8b,0xc3,0x34, + 0x56,0xbf,0x1,0x92,0x82,0x8,0x79,0x27,0xa7,0x97,0x9e,0xf7,0x45,0x78,0x1a,0x2f, + 0x6f,0xe5,0xba,0x5b,0x74,0x75,0x6c,0xd8,0xb1,0xbd,0xd5,0x83,0x26,0xf2,0x92,0x27, + 0x99,0x49,0x61,0xc3,0x90,0xa3,0x3b,0x19,0xe2,0x9e,0xd4,0xab,0xe7,0x73,0x99,0x81, + 0xd3,0x2d,0xef,0x24,0x63,0xf0,0x13,0x81,0x2d,0xa,0x6f,0x41,0x29,0x22,0x12,0x84, + 0x24,0x39,0xaf,0x37,0xd2,0x44,0xc8,0x4f,0xef,0x50,0x6,0x1d,0x79,0x3e,0x3d,0xc8, + 0xdb,0xc6,0x3c,0x93,0x40,0xf7,0xc,0x4e,0xaa,0x69,0x42,0xc9,0x3,0x5f,0x8,0x93, + 0x41,0x9e,0xff,0x22,0xd0,0x96,0x4b,0xe,0x0,0x92,0xc7,0x16,0x32,0x2b,0x9,0x43, + 0x2e,0x15,0x76,0xfd,0x18,0x14,0xc4,0x8e,0xf4,0x4e,0xd7,0x7a,0x85,0xd5,0x9e,0xb5, + 0xf3,0xc6,0x18,0xde,0x63,0x77,0xbf,0x83,0x96,0x26,0xf5,0xc0,0xcb,0x9f,0xf,0x85, + 0x1b,0x7f,0xf8,0x30,0xc9,0x19,0x7a,0x72,0x34,0xfc,0xfe,0x39,0xe7,0x79,0x94,0xfb, + 0x2e,0x7d,0xc6,0x54,0x55,0x4b,0xb2,0xa9,0x43,0x7f,0x91,0x9b,0xcb,0xe4,0x73,0xc7, + 0x4e,0x82,0x1,0x10,0x91,0xe1,0xbd,0x8f,0xf0,0x25,0x5,0x18,0x54,0x17,0x16,0x16, + 0xe1,0x9a,0xb9,0x28,0x4c,0x35,0xb0,0xcf,0xce,0x65,0x2,0x3d,0x90,0xb,0x29,0x21, + 0x67,0x5e,0xa7,0x3,0x2a,0xc1,0x67,0x41,0xc7,0x59,0x9a,0x9,0xac,0xc7,0x4,0x99, + 0x4f,0x9a,0xdf,0x8,0x57,0x3f,0x8d,0x20,0x91,0xee,0xbe,0xa2,0x2d,0xae,0xbf,0x7f, + 0x37,0x2f,0x1c,0x6d,0x5d,0x2e,0xe1,0xca,0x6e,0x45,0x6,0xc1,0x36,0xc7,0xed,0x11, + 0x43,0x41,0x59,0xb8,0xe2,0x69,0x77,0x22,0x9e,0x7e,0x26,0xf4,0x9,0xfe,0x9,0x7f, + 0xa5,0x9d,0x83,0xf7,0x39,0xc1,0x1,0x75,0x2e,0xae,0x88,0xd8,0xb5,0x7a,0x83,0x3, + 0x13,0x48,0x49,0x16,0x13,0x25,0x31,0xcb,0x2f,0x1c,0x36,0x96,0xf7,0xfc,0xa9,0x8c, + 0xa2,0xfe,0x6d,0x64,0xf2,0xec,0x78,0x70,0xc8,0x67,0xc2,0x8c,0xd,0x35,0x8a,0x37, + 0xf2,0x89,0x15,0xa6,0x9,0x33,0xe,0xcb,0x55,0x70,0xab,0x58,0x26,0x99,0xdb,0x79, + 0xad,0x10,0xa9,0x7b,0x7e,0xb0,0xdf,0x83,0xbf,0xbf,0xc6,0xe3,0x80,0x78,0x0,0x2, + 0xe1,0x72,0x63,0x6f,0x1d,0x3a,0x6,0x52,0xb8,0x50,0x81,0x23,0x1d,0x31,0x83,0x14, + 0xcb,0xdf,0x4a,0x45,0x2c,0x4b,0xc4,0x4a,0xec,0x61,0x4a,0xa3,0xa1,0x35,0x4e,0x76, + 0x1b,0x2d,0x1e,0x95,0xe2,0xa3,0x7d,0x40,0x7d,0x95,0xed,0x87,0x49,0xfb,0x7a,0x47, + 0xe6,0xf3,0x52,0x32,0x8f,0x64,0x38,0x94,0xe7,0x6e,0xf0,0xaa,0x3e,0x93,0xb8,0x13, + 0x1e,0x6e,0x93,0x35,0x1e,0x62,0x2,0x3f,0xa0,0xb3,0x81,0x93,0x72,0xb7,0x5,0x37, + 0x4d,0x60,0x7c,0xb7,0x99,0x17,0x35,0x6,0x22,0x2c,0x85,0x7f,0xdf,0xf0,0x40,0x76, + 0x62,0xa,0xf2,0x33,0x53,0x7e,0x7d,0xff,0x21,0x72,0xa1,0x96,0xa2,0xa6,0xb4,0xcf, + 0xb5,0x26,0x9b,0x6e,0xf6,0xf6,0x7a,0x41,0x8d,0x52,0xd3,0x75,0x71,0xf1,0xe,0x28, + 0x1,0x8c,0x74,0x9c,0x61,0x7a,0x97,0x9c,0x83,0xba,0x73,0xcf,0xe4,0x16,0xba,0xee, + 0x57,0x45,0x5f,0xde,0xd6,0xe8,0xd5,0x3,0x43,0xa,0xea,0x13,0x56,0x3e,0x47,0x63, + 0xd0,0x5a,0x7f,0xa5,0x2d,0xd4,0x16,0x22,0xe6,0x33,0x96,0xa7,0x2a,0xea,0xbb,0x42, + 0xe0,0x87,0x81,0xa1,0xb2,0x9,0x1,0xec,0xb5,0x94,0xb8,0x10,0x2c,0xe4,0x5c,0xce, + 0xac,0x72,0xe8,0x1d,0xd2,0xfa,0x7,0x29,0x88,0x36,0xe5,0x9d,0xe9,0x4f,0x9e,0xfd, + 0xe8,0x8f,0xcc,0x48,0x8b,0x22,0x53,0x23,0xf2,0x6a,0x8e,0xc3,0x3a,0x0,0x70,0x65, + 0x87,0x15,0x25,0x6,0xf2,0x85,0xa8,0x64,0xee,0xa8,0xc9,0x8a,0x2f,0x8e,0xe6,0x10, + 0xc3,0x8c,0x67,0xf0,0xf9,0xb5,0x2e,0x8e,0xa7,0x1d,0x24,0x27,0xe1,0xf1,0x82,0x23, + 0xbb,0xe9,0xab,0xf5,0x51,0xb9,0xeb,0xb3,0xc4,0xd4,0x28,0x3,0xc6,0xe1,0x18,0xca, + 0x2,0x8a,0x6,0x73,0xb2,0xc0,0x85,0x18,0xca,0x53,0xd8,0x5b,0xa0,0x32,0xc,0x44, + 0x16,0x52,0xf4,0xf9,0x67,0x77,0x89,0x2a,0xbb,0x28,0xdd,0xbf,0xb2,0x9f,0x1c,0xc, + 0xa1,0x9e,0xbf,0xb3,0x6d,0x7b,0x94,0x45,0xa8,0xac,0xad,0x5,0x67,0x6c,0x13,0x30, + 0x7,0x56,0xfb,0xeb,0xde,0xa7,0xe2,0xbf,0x8c,0x86,0xa,0x19,0x28,0xd0,0xf6,0x24, + 0x9b,0xc4,0xeb,0xe9,0xf4,0x3d,0xaf,0xce,0x34,0xd3,0x65,0x95,0x8a,0x77,0x50,0x1a, + 0x3a,0xd,0xd0,0x4b,0x40,0xf4,0x9f,0xd7,0x3b,0x3,0x36,0x94,0x80,0xc5,0x6,0x66, + 0x85,0x35,0x78,0x35,0x9e,0x38,0x61,0xb1,0xde,0x3d,0xf3,0x12,0xd0,0x88,0xbf,0x56, + 0xea,0xa6,0x3a,0x78,0x33,0xb5,0x1c,0xfe,0xb7,0x41,0xe8,0xbb,0xf4,0x5b,0xab,0xc4, + 0xbd,0x5f,0x8d,0xa7,0x8f,0xd3,0x35,0xa5,0x55,0x9e,0x5a,0xf9,0x5a,0x6c,0xd0,0xfc, + 0xab,0xfa,0x76,0x32,0x52,0xa1,0x12,0x5a,0xe1,0xcf,0xbf,0x50,0x1a,0xf6,0xf3,0x99, + 0xcc,0x67,0xa,0xec,0x5f,0x3d,0x7c,0x51,0xda,0x2d,0x93,0x3c,0xf8,0x9b,0x24,0xb2, + 0xa7,0x47,0xd9,0xa0,0x68,0xa8,0xd2,0x16,0x52,0xd7,0x3a,0x54,0xda,0xa9,0x64,0x5, + 0x69,0x76,0xfd,0x63,0x45,0x7c,0xbd,0x34,0x2b,0x71,0x68,0xb,0x9a,0x8,0xcb,0x26, + 0x29,0xf9,0x4c,0x6a,0xfd,0xbc,0xf0,0x66,0x41,0xd9,0x31,0x68,0x1e,0xdc,0xb8,0xf9, + 0x21,0x77,0x64,0x30,0x82,0xd,0x99,0x87,0x12,0xc1,0x88,0xfd,0x8c,0x27,0x76,0xfa, + 0xaa,0xad,0xa2,0xe3,0xac,0x40,0xdc,0x36,0xbc,0x67,0x7e,0xc4,0x7d,0xee,0xb3,0x7b, + 0xb8,0x60,0xfb,0xe5,0x6c,0x74,0x19,0x2c,0x8,0xb,0x81,0xb4,0x5d,0xe9,0x5e,0x5f, + 0x4f,0xdc,0x67,0xd7,0x17,0xfd,0x6d,0x8d,0xc9,0x2b,0xc1,0xdc,0x22,0x97,0xec,0xb, + 0xcd,0xc0,0x3e,0x52,0x5a,0x0,0x3,0xc7,0x4,0x95,0x3a,0x2,0x6c,0x39,0xa0,0x96, + 0xe3,0xe5,0x43,0x64,0x7b,0x56,0x7b,0xab,0xba,0xd,0xb7,0xe8,0x6a,0x8,0xe7,0x44, + 0x2a,0xa2,0xbe,0x10,0x37,0x33,0xaf,0xbf,0xd1,0x7d,0x17,0x63,0x74,0xb9,0x6f,0x78, + 0x38,0x52,0xb4,0xb7,0x42,0x50,0x8f,0x4f,0x60,0xb0,0xf0,0x17,0xba,0xde,0xfb,0xbe, + 0xb2,0xb9,0xf4,0x56,0x38,0xc4,0x33,0x41,0xac,0xb2,0xcb,0xce,0xe1,0x55,0x66,0x65, + 0xfc,0x9f,0xae,0x9a,0x66,0xb3,0x33,0x5e,0xb1,0x37,0x49,0xe7,0x41,0x7f,0xbd,0x45, + 0xdc,0xc1,0x8b,0x5d,0x45,0x24,0x7e,0x96,0xa4,0x90,0xec,0x2f,0x61,0xe1,0x2d,0x9f, + 0x9c,0x6e,0x2d,0x2d,0xf4,0xbe,0xe,0x86,0x25,0x54,0xc,0x8,0xbb,0x95,0xca,0xb0, + 0xeb,0xcb,0xb8,0xb2,0xb7,0xce,0x6a,0x8f,0x7,0x17,0xaa,0x5,0xc1,0xdd,0x41,0x95, + 0xc6,0x3a,0x94,0x23,0x62,0x40,0xf5,0xe7,0xbd,0xbb,0x42,0xc5,0x81,0x2f,0x39,0xb5, + 0x60,0x2,0x44,0x84,0xd,0x84,0x75,0x67,0xe,0xbb,0x14,0xc9,0xe6,0xe5,0x8a,0x7c, + 0x35,0xdf,0x17,0xda,0xc3,0x61,0x66,0xf,0x8a,0x61,0x92,0xc3,0xea,0x39,0xd1,0x2d, + 0x4f,0xd,0xd0,0xcd,0x41,0xfc,0xed,0x65,0x7a,0x3a,0x2f,0x83,0x34,0x28,0xdc,0xce, + 0xa0,0x20,0x40,0xc2,0x8c,0xf8,0xbe,0x8e,0x1,0xdb,0xae,0xd8,0x2d,0x10,0x8f,0x9c, + 0x7b,0xc6,0x41,0xd9,0x9a,0xe2,0xd9,0x5b,0xa2,0x77,0xfb,0xb,0x2,0xf1,0x5a,0xed, + 0x2b,0xd8,0x5b,0x8,0xa3,0xba,0xf0,0xc1,0x37,0x96,0xe0,0x8d,0x65,0xbf,0xba,0xdb, + 0x95,0x83,0xe7,0xeb,0xd8,0x43,0xac,0x10,0xf3,0xeb,0xc5,0xfa,0x52,0x6a,0x82,0x88, + 0x76,0xea,0xd5,0xe3,0xd9,0xe2,0x16,0x21,0xf2,0x82,0x75,0x22,0xf2,0xad,0x34,0xda, + 0x4d,0x30,0x53,0x42,0x87,0x8a,0x11,0x3c,0x6b,0xe5,0xf5,0x4b,0xb6,0x97,0x89,0xef, + 0x37,0x32,0xfe,0xbe,0xd4,0x71,0x6d,0x58,0x80,0x73,0x1c,0x1b,0x75,0x28,0x8c,0x1b, + 0xc4,0xf3,0x1d,0x79,0x8e,0x82,0xf5,0xb,0x69,0x8b,0x45,0x83,0x6b,0xd1,0xa5,0x3d, + 0xe2,0x4c,0x32,0xe9,0xa6,0x91,0x1d,0x2,0x10,0x9a,0x64,0x61,0xa0,0xe8,0xe9,0x63, + 0xc7,0x21,0x4f,0xfb,0x81,0x82,0x2f,0x69,0x82,0xf9,0x6d,0x4,0xc4,0x25,0x77,0x36, + 0x42,0x9f,0xcd,0xd6,0xbf,0x8b,0x98,0xab,0x88,0x14,0x1a,0x58,0x6c,0x6a,0x73,0xd0, + 0x49,0xf,0x9,0xd6,0xf1,0x6d,0x7e,0x5e,0x4d,0xa6,0x94,0x7c,0x15,0xc4,0xf5,0xc7, + 0x67,0x4f,0xd7,0xd,0x4,0xcb,0x39,0x3f,0xfc,0x70,0xab,0x1d,0x99,0xc4,0x96,0xfb, + 0xcd,0xbf,0x35,0xb5,0xeb,0x97,0xae,0x1e,0xa0,0xe3,0xa2,0x45,0xc2,0x7f,0x68,0x53, + 0x8f,0x54,0xd8,0xa7,0xaf,0xdf,0x38,0x57,0x2f,0x7b,0x94,0xfe,0x34,0x90,0x5c,0xea, + 0x7a,0x7a,0xa3,0xbe,0xe7,0xe,0x17,0xac,0x20,0xa4,0x89,0x23,0x72,0xe8,0x46,0xf3, + 0xc9,0x8c,0x4b,0xd8,0xd0,0x8d,0x2c,0x7b,0x37,0x13,0xa9,0xe4,0xf5,0x54,0x5e,0x37, + 0x86,0xe,0x72,0x94,0x7d,0x42,0xef,0xcb,0xe4,0x5a,0xec,0xd9,0x79,0x67,0x61,0xb2, + 0xd8,0x1f,0x66,0x78,0x4b,0x1c,0xca,0x52,0x7,0x9d,0xba,0x5e,0xb2,0xe1,0xae,0x44, + 0x9a,0x54,0xe6,0x91,0xa7,0xd3,0x1,0x26,0x43,0x86,0xcf,0xff,0xc8,0x67,0x33,0xe5, + 0x91,0xe5,0xfa,0xce,0x61,0x65,0xd3,0x37,0x8f,0xa6,0x3b,0xb4,0xa0,0x34,0x33,0x8d, + 0x4f,0x19,0xe5,0x12,0x85,0xdf,0x4a,0x8e,0xca,0x2b,0x2a,0x79,0x53,0xd3,0xfc,0xf0, + 0xff,0xc0,0xdc,0xc4,0xca,0x70,0xdb,0x79,0xc,0xae,0x60,0x9b,0x89,0x13,0x5c,0x50, + 0xe0,0xbc,0xe6,0x18,0xb6,0x84,0x52,0xf3,0xc3,0xaf,0x9a,0x9,0xb5,0x8a,0xf4,0xad, + 0x4d,0xbe,0x30,0x6b,0x6,0xc3,0x45,0xad,0x1b,0x79,0x81,0x1f,0x15,0x81,0x96,0x13, + 0xa,0x4f,0x1e,0xbc,0x63,0x25,0x5a,0xfd,0xbb,0x53,0xc4,0xf6,0x60,0x66,0x50,0x54, + 0x93,0xad,0xd6,0xba,0x35,0xe4,0x71,0xf0,0x25,0x6f,0xd7,0x4f,0xb4,0x46,0x4c,0xb0, + 0xd5,0xd0,0x4f,0xf4,0x81,0x4f,0xb8,0x9a,0x43,0xbb,0xa7,0x68,0x5c,0xad,0xdc,0x4f, + 0x9e,0x46,0xc6,0xb2,0x68,0xcd,0xe8,0x7c,0x87,0x69,0xda,0xd2,0xe3,0x30,0xab,0xb6, + 0xc6,0xd0,0x0,0xed,0x72,0xc5,0x12,0x6d,0x29,0x33,0x99,0x83,0x77,0x9d,0xe8,0xfb, + 0xb8,0x74,0x67,0xcb,0x58,0xbc,0x6d,0x3a,0xec,0xb6,0xc4,0x9e,0x8e,0xb0,0x52,0xee, + 0x20,0x83,0x51,0xeb,0x34,0xfe,0xd2,0xc0,0x6f,0x93,0x93,0x4d,0x97,0x5a,0xeb,0x45, + 0xa7,0x4b,0xb4,0xef,0x5b,0x10,0xbb,0x1d,0xcc,0xc0,0xd1,0xb5,0x60,0x2a,0xa7,0x59, + 0xe9,0xc1,0xa4,0x81,0xcd,0x9c,0x89,0xd3,0xb6,0x96,0x90,0x3b,0x14,0xa4,0xe9,0xeb, + 0x56,0x57,0xc1,0x99,0x29,0x36,0x8a,0xc1,0xa8,0x6,0x28,0x7c,0xfd,0x40,0x83,0xba, + 0x49,0xe,0xc8,0x9d,0xaa,0xe4,0x7f,0xaf,0xd2,0xd9,0xde,0x5a,0x4d,0xb7,0xea,0xc0, + 0xc2,0x8c,0xae,0x95,0xb0,0xce,0x66,0x68,0x91,0xc9,0xd1,0xef,0xfa,0x61,0xdc,0xa2, + 0x24,0x89,0x87,0x16,0xfc,0x5c,0xd4,0x3b,0xd9,0xae,0x38,0xc2,0x16,0x4e,0xf0,0x69, + 0x1f,0x2f,0x52,0x1e,0x55,0xc1,0x0,0x6d,0x81,0x56,0x96,0x9b,0x68,0xd2,0xea,0x87, + 0x54,0xa5,0x97,0x55,0x9c,0x2d,0x65,0xf6,0x6,0xc7,0xdf,0xa4,0xe8,0x5a,0xb7,0x7f, + 0x1c,0x35,0x8b,0x1b,0x48,0x70,0x2f,0x2,0xfc,0xed,0xa1,0xa2,0xb,0x1d,0x5,0x45, + 0xe2,0x96,0xd,0xbc,0x8a,0xac,0x49,0x5f,0x6e,0x4a,0x68,0x16,0xe,0xe3,0xbc,0xbf, + 0xfe,0xd1,0xb1,0xb6,0x62,0xe0,0x5d,0x7b,0xde,0xa2,0x4d,0x16,0x46,0x8,0x71,0x0, + 0x55,0xc3,0x12,0x40,0xea,0x8a,0x36,0x4e,0x84,0x65,0x26,0xeb,0xf3,0x9,0xd7,0x4a, + 0xb5,0x72,0xa6,0x65,0x28,0xb4,0x4d,0x73,0xb3,0x92,0x55,0xe4,0x59,0x56,0x38,0x4c, + 0x66,0x68,0xe5,0x23,0x42,0x60,0x39,0xab,0x28,0x9e,0xa4,0xe0,0xd8,0x87,0xa7,0xca, + 0x96,0xb7,0x93,0x27,0xee,0xfc,0xce,0x6f,0xed,0x92,0x55,0xfa,0xf7,0x4f,0x91,0x7, + 0x81,0xf9,0x89,0xf6,0x75,0x58,0xc,0x50,0x7,0x45,0x7a,0x2b,0xde,0x7c,0x77,0x1c, + 0x65,0x0,0x1f,0x1d,0x9,0xd3,0x33,0x4f,0xdd,0xad,0x7b,0x80,0xa7,0x3b,0xd0,0x51, + 0x23,0x50,0xae,0x5,0x80,0x3a,0x70,0xc2,0x28,0xc6,0x75,0xba,0xba,0x6c,0x66,0xe1, + 0x97,0x7e,0x2a,0xe1,0x17,0x67,0xb2,0xd6,0xb8,0xf3,0x2c,0x12,0x64,0x8c,0xa2,0xb5, + 0xf7,0x2b,0x8b,0x96,0xd2,0xeb,0xc0,0xf1,0x90,0x1e,0x38,0x86,0x43,0xe7,0x55,0x60, + 0xda,0x5e,0x20,0x79,0xd1,0xfa,0x1f,0xa1,0xda,0x78,0x21,0x4e,0x7b,0x77,0x5b,0x8b, + 0xfb,0xee,0xd0,0x24,0xb5,0xdf,0xdb,0x12,0xcf,0x88,0xc4,0x7,0xc5,0x72,0x55,0xc7, + 0x21,0xa2,0x42,0x54,0x6f,0x9e,0x5d,0x6e,0x39,0xf8,0xfc,0xa6,0x33,0x6a,0x45,0xd, + 0x2b,0xb3,0xdd,0x20,0x5a,0xa2,0x74,0xab,0x14,0xd8,0xb5,0x89,0x68,0x53,0x76,0x76, + 0x19,0x2b,0x2,0x43,0x9e,0x5,0xda,0xcc,0x6a,0x89,0x75,0x90,0xa6,0x9c,0x49,0xef, + 0xa7,0x84,0xad,0xbf,0xf8,0xa0,0xd1,0xa1,0x28,0x57,0x25,0x82,0xe9,0x72,0x7b,0xc0, + 0x37,0xf1,0x79,0x24,0x6e,0x58,0xf8,0x5d,0x86,0x76,0x86,0x62,0x95,0x4e,0x2f,0x8a, + 0xd1,0x8,0xb4,0xcf,0xb,0xd7,0x7e,0xa,0xe5,0xf,0x86,0xaf,0x80,0x2b,0xc9,0xc9, + 0xb5,0x90,0x7b,0xcc,0xed,0x53,0xc6,0xf5,0x2f,0x71,0x51,0x89,0xc,0xe0,0xce,0xd6, + 0x67,0x4c,0x61,0xd6,0xce,0x81,0xcc,0x8f,0xcc,0xe9,0x20,0xdd,0x4c,0x10,0x95,0xab, + 0xa,0xc1,0x9b,0xd2,0x1a,0xcc,0xad,0x47,0x88,0xa9,0x1c,0x8e,0x4f,0x35,0x0,0x39, + 0xde,0x32,0xb,0x1b,0x92,0x9d,0xed,0x13,0xdf,0xce,0xc,0x6f,0x99,0x68,0x5a,0x26, + 0xd4,0x19,0x58,0x25,0x56,0x3e,0x68,0xd9,0xaa,0xe9,0x14,0x7f,0x40,0x35,0x73,0x61, + 0x5d,0xf5,0x1e,0xbb,0x1c,0xfe,0x59,0x5e,0x6b,0xfc,0x4c,0xb1,0xb6,0x73,0x64,0x15, + 0x8e,0xaa,0x78,0x45,0xa0,0x16,0x19,0x8,0x65,0xd5,0xf4,0x3a,0x31,0xeb,0x84,0x4, + 0x14,0x52,0xa9,0xad,0xd9,0xbc,0xb1,0xe4,0xb9,0x75,0x35,0x5e,0x1b,0xac,0x70,0x38, + 0xfa,0xc3,0x71,0xa6,0x4f,0x4,0x1b,0x5,0x61,0x63,0xb1,0xc7,0xb,0x2b,0xba,0xd2, + 0x21,0x76,0x4d,0x45,0x6a,0x70,0x7e,0x6b,0x7d,0xd1,0x7f,0x21,0x55,0x6b,0xa5,0x21, + 0x31,0x9a,0xaa,0x8f,0xc5,0xbb,0xce,0xaa,0x6,0xbb,0x5e,0xde,0x51,0xbf,0x1a,0x8e, + 0xd0,0xe9,0xa5,0x7f,0xb4,0x1a,0x71,0xf,0x1d,0x28,0x5c,0xba,0x17,0x4d,0x55,0x99, + 0x95,0xaf,0xc6,0x5b,0x33,0x11,0xf1,0x5a,0xb1,0x97,0xb4,0xcd,0xc1,0x43,0x2c,0x2c, + 0x1c,0xe,0x62,0x5f,0x5a,0x52,0xce,0x27,0xb,0x85,0xa8,0x5e,0x17,0x8a,0xd3,0xc2, + 0xba,0x1d,0x41,0x79,0x17,0x3c,0x83,0x38,0x9,0xce,0x1,0xa4,0xa7,0xb1,0xf1,0xb6, + 0x8a,0x45,0x6a,0xdf,0xed,0x24,0x5b,0xfc,0x33,0xa3,0xf9,0xfc,0x94,0xd2,0xc1,0xa2, + 0xd,0xa1,0xc8,0xfe,0x2e,0x92,0xd2,0x86,0x64,0x9e,0x11,0xf4,0x45,0x95,0x34,0x5f, + 0x3f,0xf9,0xee,0x9b,0xbe,0x3e,0x11,0xea,0xa8,0x95,0x29,0x9e,0x31,0xef,0x81,0x33, + 0xd6,0x93,0xab,0xe,0x12,0x49,0x7,0x75,0x69,0x73,0xaf,0x76,0xe,0x7e,0x5f,0xaf, + 0x34,0xba,0x4b,0x9d,0xcd,0x4c,0x40,0x9,0x7a,0x51,0x6,0xc0,0xf4,0xe7,0xff,0xa, + 0x2a,0x6e,0xa,0xa0,0x70,0xfb,0x27,0xf8,0x17,0x8d,0xc3,0x2e,0xea,0x4e,0x93,0x4c, + 0x90,0xbe,0x5,0x73,0xba,0xbf,0xb,0xf9,0x15,0x89,0x22,0x94,0x8c,0x9b,0x59,0xbe, + 0x1d,0x2f,0xf4,0x9f,0xf,0xd2,0xc0,0x3f,0xbf,0x32,0xbe,0x7a,0x64,0x6f,0x4e,0xf2, + 0xb6,0xa8,0x9a,0xd2,0x46,0x74,0xc5,0x9a,0x2,0x8d,0x1b,0xc5,0xd9,0x23,0x92,0xd9, + 0x66,0x10,0x55,0xe5,0x12,0x6b,0xc,0x70,0x7a,0xa6,0x17,0x80,0x20,0x5,0x97,0x51, + 0xbe,0x8e,0x9,0xc1,0x72,0xc0,0x2d,0xbd,0xf4,0xcf,0x6a,0x50,0xf,0x96,0x5d,0x75, + 0x8a,0x7a,0x41,0xee,0xc6,0xaa,0xef,0x3c,0xc8,0x25,0x6e,0xad,0xd4,0x8b,0xb8,0xe7, + 0x23,0x47,0x67,0x87,0x7c,0x89,0x6c,0xd0,0x1a,0x60,0x9,0x1b,0xfa,0x5b,0x6e,0x2e, + 0x8d,0xe8,0xf7,0x3b,0xe5,0xb5,0xf9,0xd8,0xd2,0x13,0x73,0x56,0x47,0xb3,0x6f,0xba, + 0x18,0xe2,0x4b,0xb1,0x31,0x22,0xef,0xd0,0xa5,0xd7,0xef,0x2e,0xa8,0xf8,0x77,0xe3, + 0x26,0xb3,0x42,0x86,0x7c,0xe7,0x45,0x82,0x96,0xce,0x7d,0x6a,0x86,0x5d,0x38,0xd5, + 0x47,0xb6,0x8b,0x79,0x4c,0xb9,0xeb,0x8e,0xc6,0x43,0xdc,0xbe,0xa9,0xab,0xe1,0x96, + 0x7a,0xb4,0x96,0xee,0xef,0xbf,0xeb,0x5b,0xb,0x1c,0x60,0x34,0x4b,0x39,0x49,0x55, + 0x46,0x2d,0x3f,0xe7,0xa5,0x3,0xc9,0xa,0x8b,0x3d,0xff,0xbc,0x2f,0xe6,0x2a,0x0, + 0xec,0xb2,0xcd,0x8c,0x2a,0x53,0xc,0x5d,0xc0,0x3f,0x3f,0x64,0xd7,0x7d,0xd8,0xd7, + 0x46,0xe6,0xdb,0x7b,0xee,0x7f,0xee,0xdf,0x97,0xb8,0x3f,0xf7,0xf1,0x5e,0x50,0x21, + 0x5c,0x3e,0xd2,0x32,0xe2,0xb3,0xe6,0xf2,0x8c,0x22,0xf9,0xcb,0x2,0x8b,0xe0,0xdb, + 0xaf,0xca,0x8c,0x1b,0x68,0x4f,0x77,0xd4,0x5e,0xc2,0x68,0xcc,0x2,0xf2,0x7e,0xa3, + 0x60,0x4f,0x93,0x3,0xf5,0x9,0x89,0xfb,0xd3,0x81,0xac,0x1b,0x67,0x4b,0xb2,0x25, + 0x61,0x17,0xfb,0x8f,0xbe,0xe5,0x57,0x1b,0x16,0xd0,0x1b,0xec,0x13,0x31,0x22,0x62, + 0x62,0xcf,0xdc,0x14,0x62,0xe4,0xaa,0x52,0xf7,0xb3,0xcd,0xcb,0xf1,0x10,0x24,0x19, + 0x80,0xd0,0x90,0xff,0xcd,0x98,0x62,0x67,0x63,0x44,0xc8,0xa1,0x8c,0xfd,0xf2,0xc4, + 0xc7,0xab,0xc6,0x3c,0xc1,0x32,0x89,0x5c,0x41,0x7e,0x81,0x4c,0x2,0xcb,0x6e,0xbd, + 0xb0,0xc2,0x8b,0x7d,0xb,0x97,0xaf,0x1b,0x94,0x8e,0x4f,0x70,0x2b,0x63,0x91,0x48, + 0x6d,0x94,0x76,0x2b,0x20,0x8,0xc,0x3c,0xba,0xd6,0x60,0x87,0xa0,0x3b,0x39,0x9b, + 0x84,0x20,0xc1,0x3b,0x59,0x23,0x25,0xcd,0xbf,0x64,0x9,0xa4,0x96,0x93,0x9b,0xf9, + 0x7b,0xb5,0x7d,0x1f,0xd8,0xc2,0x26,0x42,0xdc,0x8,0xbb,0xeb,0xb0,0xc4,0x61,0x15, + 0xcd,0xa1,0xe5,0x98,0x6b,0xef,0xc6,0xb3,0xed,0x2f,0xf2,0x93,0x0,0x8,0xa9,0x78, + 0x61,0x87,0xc0,0x1f,0x84,0xf9,0x8b,0x35,0x86,0x27,0x3d,0x68,0xc,0xbc,0x8d,0x8, + 0xde,0xc,0xf8,0x9d,0xec,0xc5,0xba,0x9c,0x59,0xca,0x2c,0x35,0xd4,0x1a,0x4c,0x50, + 0xe3,0x30,0x29,0x3c,0x53,0xeb,0x53,0x21,0xe7,0x3e,0xb7,0x39,0x2c,0xe9,0x37,0x27, + 0xc3,0xf,0xb9,0xe1,0x8,0xfb,0x9b,0x77,0x55,0xfe,0xb1,0xd8,0x8,0xe1,0xea,0xf8, + 0x92,0x9c,0x7a,0x9b,0x5,0xfc,0x1d,0x2e,0xfb,0x9,0x49,0x21,0x4f,0xc4,0x85,0xe8, + 0x9c,0x2d,0xf6,0x67,0x40,0x9f,0x73,0x7f,0xbc,0x49,0x95,0x46,0xa4,0x8b,0xf9,0x4b, + 0x2c,0x96,0xd,0xf0,0x15,0x4e,0x30,0x12,0x91,0xac,0xc3,0x6a,0x10,0xb8,0x80,0x8f, + 0xaf,0x43,0x97,0xcc,0x5e,0x69,0xdd,0x39,0xa8,0x68,0x2c,0x44,0x15,0xbd,0xc3,0x51, + 0x51,0x9e,0xc,0xff,0x5c,0x3e,0x9d,0x49,0xe9,0xf1,0xca,0x1d,0x72,0x14,0x81,0x2e, + 0xe3,0x91,0xb8,0x3c,0x54,0xbd,0x7f,0x7c,0xc0,0x57,0xcb,0x1f,0xa9,0x6a,0xfd,0xd9, + 0xba,0xf3,0xc4,0x67,0x6,0x65,0x81,0x82,0xb1,0xdb,0xe9,0x6a,0xc9,0x84,0x9a,0x93, + 0xde,0xbf,0x8b,0xee,0x2d,0xd7,0x7e,0xfe,0xfa,0xe1,0xc,0xca,0xe1,0xb1,0x30,0xc1, + 0x2a,0x3d,0xaf,0x92,0x46,0x92,0x54,0x90,0xb9,0x4f,0x6f,0xd3,0x37,0xfe,0x6e,0x97, + 0x54,0xb5,0x25,0xe2,0x1e,0xf,0x39,0x8,0x6,0x16,0xa3,0x1f,0x4c,0x68,0x0,0x87, + 0xb8,0x3a,0xb0,0x6d,0xe6,0x17,0x55,0xba,0xe,0xdc,0xa4,0xb1,0xd,0xa7,0x20,0xae, + 0x13,0x7f,0x61,0x6e,0x6e,0x8f,0xef,0x2f,0xaa,0xd7,0xa0,0x2a,0x78,0x61,0x79,0xc3, + 0x62,0x38,0xde,0x3d,0xd0,0x57,0x4b,0x11,0x8b,0xa1,0x8b,0x83,0x21,0x3d,0xda,0xf6, + 0xbf,0xdf,0xdf,0x7f,0x71,0xdc,0x2f,0x8c,0x1f,0xf9,0x6c,0x6c,0x51,0x9c,0x66,0x8c, + 0x51,0x7c,0xd0,0xd5,0xe9,0x94,0xf5,0x5d,0x81,0x3f,0xc7,0xa9,0xb2,0x36,0xdc,0x4f, + 0x7d,0x8c,0x4c,0x51,0xd1,0x6b,0xf9,0x57,0x6c,0xcd,0xaa,0x8,0x2a,0x71,0x71,0x5f, + 0xf5,0xcb,0xa2,0xf6,0xe5,0x45,0x3b,0x5e,0xfd,0x31,0xac,0xe0,0x46,0xf4,0x94,0x56, + 0x90,0x65,0x7b,0xac,0x9b,0xe4,0xe7,0xd5,0x8f,0x74,0x6,0x34,0x6e,0xbd,0xf3,0x94, + 0x40,0xa9,0xbb,0xa3,0xe5,0xb0,0xb6,0xd5,0xb5,0x87,0xf,0xfe,0x7b,0xe4,0x59,0xd9, + 0x9f,0x5d,0xe3,0xb1,0x44,0x7b,0x50,0x2b,0x6e,0xe3,0x3d,0x5a,0xb4,0x6e,0x30,0x73, + 0x61,0xee,0xa1,0xdd,0xc1,0xb5,0x3c,0x6,0xf5,0x81,0xb1,0x27,0x2,0x2f,0x18,0x17, + 0x8c,0xbb,0xb8,0x6c,0xb9,0xab,0x71,0xf5,0xd8,0x80,0xf3,0xeb,0x14,0xa,0x6d,0xcf, + 0xe2,0xcd,0xa4,0x73,0x7b,0xf3,0xe3,0xa4,0xb7,0xf7,0xc8,0x45,0xfd,0x60,0xca,0xb7, + 0x63,0x6,0xf3,0x40,0x7e,0xa1,0xea,0x7,0x2a,0xb,0xe2,0x7f,0xd4,0x47,0xbd,0xfe, + 0x28,0x79,0xd,0xe9,0xb2,0xcb,0x2c,0x3f,0xf0,0x19,0xf9,0xec,0x90,0x93,0x98,0x1b, + 0x8c,0x33,0x79,0x87,0x3b,0x66,0x3b,0x30,0xa2,0x0,0x8b,0xb1,0x93,0xf,0x4d,0x5e, + 0x14,0x4d,0x18,0x72,0xbe,0xb5,0xb2,0x12,0x80,0xd7,0x16,0x5b,0xf7,0x52,0x44,0xee, + 0xce,0xab,0x1f,0x13,0x96,0xe2,0x77,0xb3,0xbf,0x15,0x21,0x1d,0x69,0x2a,0x88,0xe, + 0x2f,0x8d,0xbe,0x13,0xda,0xfe,0x82,0x5,0xe3,0x56,0x9d,0x2,0x37,0x57,0x8f,0x7f, + 0xc5,0x7e,0x54,0xb0,0xbe,0xe7,0xfa,0xe6,0x58,0x67,0xb8,0x9e,0x68,0x46,0xf4,0x7b, + 0xf4,0x55,0x71,0x7d,0xf7,0x29,0x25,0x48,0xd0,0xfd,0x4e,0x18,0xef,0x8b,0x2b,0xee, + 0xfe,0xfc,0x97,0x5e,0xa5,0x17,0x37,0x7e,0x61,0xb5,0xc7,0xc6,0x22,0x4d,0x2a,0xe, + 0x39,0xb3,0xba,0xa8,0x68,0x4,0x89,0xd,0x64,0x7,0x33,0xb8,0x99,0xa7,0xd2,0xcc, + 0x51,0xff,0xb9,0x27,0xd2,0x1a,0x39,0x4b,0x9a,0xc0,0x80,0xbe,0x4d,0xa4,0xcd,0x41, + 0x79,0xd0,0xab,0xf5,0xb8,0x69,0x12,0x81,0xb7,0x59,0xba,0xfe,0xc2,0xfa,0xe8,0x73, + 0x5f,0x9a,0xc8,0x43,0xb1,0xdb,0x89,0x3c,0x80,0xd1,0x3b,0xb6,0x69,0xb9,0x7c,0xfa, + 0x3f,0x60,0x8f,0x5a,0xb6,0x5c,0x18,0x92,0x44,0xd4,0x73,0x93,0x44,0xb4,0x6,0x33, + 0x78,0xb2,0x7f,0x54,0xbd,0x24,0x79,0xc9,0xcc,0xbc,0x99,0x68,0xfe,0xc3,0xe9,0x8c, + 0xfa,0xb8,0xc4,0x73,0x2,0xe0,0x26,0xb6,0xf1,0xea,0xa1,0x6a,0x29,0xc9,0x6a,0xf0, + 0xb8,0xea,0xf1,0x5a,0xfc,0xc5,0x7b,0xea,0x8d,0xfc,0x4e,0x76,0x7a,0xe8,0xd7,0x78, + 0x9d,0x3a,0xbb,0xea,0x9f,0x77,0xfe,0x8b,0x7e,0x4c,0xce,0x99,0x8e,0x7b,0x40,0xde, + 0xb8,0xdc,0xea,0x64,0xaa,0x5f,0x5a,0x8b,0xdd,0x43,0x3f,0x60,0x22,0x66,0x39,0x3f, + 0x5b,0xca,0x65,0x60,0xb4,0x3e,0x3a,0x5e,0xdf,0x99,0xc5,0x82,0x81,0x78,0x77,0xe7, + 0x44,0x9e,0x2a,0x29,0x50,0x18,0xbf,0x65,0xee,0x75,0xcc,0x7b,0xb3,0xf0,0x5,0xcc, + 0x35,0xc0,0x22,0xf6,0x82,0xfc,0xd4,0xcb,0xbf,0xe7,0xfe,0x10,0x4e,0x5c,0x57,0xa4, + 0x7c,0xba,0xd9,0xed,0x41,0x73,0x83,0xd,0x21,0xf7,0xa7,0xd8,0x8f,0x17,0xd6,0xc9, + 0xa5,0x6f,0xac,0x64,0x3f,0xb8,0x27,0x28,0x8c,0x4a,0xcc,0x7b,0xf5,0xf9,0xac,0x61, + 0x13,0xb1,0x34,0x63,0x6f,0xba,0x92,0xc7,0x1e,0x2f,0xaa,0x64,0xa9,0x22,0x6e,0x74, + 0x2,0xce,0x51,0x2e,0xe,0x8c,0x36,0x7c,0x30,0xfe,0x5f,0xb4,0xbc,0x8e,0x59,0x3a, + 0xc4,0xe0,0x4b,0x3a,0x9,0x46,0x90,0xa2,0xaa,0x1d,0xa5,0xf7,0x7e,0xd2,0xb5,0xbb, + 0x2f,0x1e,0xbb,0x95,0xa8,0x87,0x9a,0xf1,0x7f,0xf1,0xf3,0x55,0xa4,0x4d,0xd4,0x97, + 0x92,0x2,0x43,0xe5,0x44,0x27,0xc,0xfa,0x72,0x22,0xbd,0x5a,0x18,0xf3,0x11,0x1e, + 0xe,0x26,0xfe,0x59,0xe7,0x3a,0x41,0x82,0x58,0x9f,0x6a,0x8c,0x39,0xfa,0x9,0x86, + 0x61,0xa9,0x48,0x76,0x7,0x33,0xf1,0xd4,0xd6,0xdb,0xf1,0x39,0xf7,0xdf,0x4b,0xb1, + 0x2a,0x9d,0x94,0xf,0x6,0x21,0x9d,0xd5,0x61,0xa1,0x96,0xe8,0x86,0xe6,0xef,0xbb, + 0x92,0x8b,0xfe,0x4d,0xbf,0x50,0x7f,0xe8,0x32,0x71,0xf9,0xb6,0x9b,0x79,0x30,0xae, + 0xf8,0xdd,0x59,0x75,0x87,0x80,0x9b,0xe3,0xab,0x16,0x13,0x37,0x8d,0xe2,0x73,0xd2, + 0xe4,0xa7,0xa9,0x64,0x11,0xb5,0x5,0x6f,0xc7,0x6a,0xa2,0xd1,0xe7,0x72,0x6e,0xb7, + 0x5c,0xd8,0x94,0x1c,0x5f,0x17,0xcd,0x1,0x19,0xb7,0x98,0x68,0x21,0x3b,0x5b,0xf9, + 0x32,0xb,0x5d,0x4d,0xa5,0x3f,0x57,0x6c,0xf9,0x51,0xb9,0x3d,0x54,0xc9,0xf8,0xce, + 0xae,0x3b,0x85,0xe6,0xc9,0xb7,0xf9,0x82,0x7e,0xaf,0xb2,0xcb,0x8f,0x66,0x78,0x32, + 0x8e,0x76,0x88,0x8,0x16,0x9f,0x7d,0x8b,0x2b,0x4c,0x33,0x2a,0x2f,0x7a,0xed,0x7e, + 0x78,0xce,0x34,0x1a,0xa5,0x28,0xde,0x5,0xe,0xcb,0x59,0x58,0x8f,0x5,0x6b,0xb3, + 0xec,0x3f,0x5,0xf1,0x64,0x88,0x39,0xb7,0x92,0x3c,0x96,0x2b,0x10,0xdd,0x87,0xee, + 0x27,0xc6,0xcb,0xcb,0x56,0xbf,0x40,0xa,0xc1,0xc9,0x2e,0xa3,0x6f,0xa,0x89,0x88, + 0x40,0xf7,0x1,0xa8,0x5b,0x6e,0xf1,0xf5,0x9a,0x9b,0xad,0xd3,0x5f,0x82,0xde,0xbc, + 0x99,0x6a,0xde,0x9a,0xb4,0xde,0x42,0xf0,0xe6,0x1f,0xad,0xd8,0xd3,0xc7,0xc7,0x7a, + 0xa,0x78,0xa6,0x99,0x79,0x54,0xc2,0xb,0xfc,0xc0,0x57,0x42,0x9f,0x93,0xf2,0xd3, + 0xf8,0x61,0xe2,0x7,0x3,0x7,0x92,0xfc,0xf2,0x9a,0x8c,0x81,0xd7,0xfb,0x9b,0xb, + 0x15,0x37,0x2,0x9d,0xeb,0xbf,0xf3,0xdf,0xb4,0x73,0x58,0xb1,0xc0,0x5e,0xb4,0x6b, + 0xd8,0x9e,0xb2,0x23,0xcf,0xe6,0xcb,0x79,0x23,0x5b,0x6a,0x75,0x8b,0xa9,0x43,0xa6, + 0x1e,0xfb,0x56,0x31,0xe7,0x5d,0xcd,0x8b,0xe4,0xbc,0xdc,0x93,0x18,0x1c,0x71,0x89, + 0x66,0xf0,0xcb,0x88,0xbc,0xa8,0x9e,0x28,0x15,0x44,0x1c,0x4e,0x3f,0xd,0xc1,0x7d, + 0xc9,0xf1,0x7b,0x67,0x3a,0x70,0x9c,0x4a,0x87,0x55,0x84,0xe,0x7a,0x59,0x63,0x3f, + 0x7a,0x2d,0xc6,0xef,0x15,0xe7,0x8a,0xc8,0x84,0xdc,0x3c,0x34,0x61,0xa9,0xfe,0x1e, + 0x99,0x8,0xe3,0xe2,0x25,0x28,0xe5,0xe2,0x13,0x82,0x18,0xa2,0x5c,0xbb,0x25,0xdd, + 0xfe,0x10,0x59,0x5d,0x3c,0x6a,0x4,0x7d,0x6a,0x51,0xfe,0xb0,0xd,0x51,0xbc,0xc7, + 0x4e,0x7b,0x99,0xd8,0xc9,0xa4,0xe6,0xfc,0x2a,0x93,0xd0,0xea,0x6d,0x6a,0xd,0x46, + 0x6f,0x2b,0x15,0x68,0x7d,0xe4,0xad,0x7b,0xa6,0x28,0x1e,0x1f,0x90,0xb8,0x71,0xae, + 0x8c,0xe5,0x9c,0xc1,0x2c,0x5b,0x89,0xdc,0xab,0xd3,0x2b,0x50,0x35,0xb6,0x80,0xf7, + 0x5f,0xe6,0x3,0x2a,0x20,0x6b,0x0,0xb6,0xee,0xf3,0xc3,0xb2,0x68,0xd2,0x89,0x56, + 0x8,0x75,0x73,0xd9,0xda,0xa9,0xdd,0x9f,0xf1,0xce,0xfe,0xbd,0xb5,0x1c,0x2d,0x82, + 0x91,0x98,0xe4,0x35,0x11,0x7b,0xb7,0x8,0x23,0x9b,0xce,0x8,0xee,0xeb,0xec,0xe6, + 0xd0,0x46,0x8e,0xd6,0x5f,0x75,0x25,0x68,0xcc,0x79,0x1c,0xab,0x72,0x85,0xfc,0xb5, + 0xc3,0x8c,0xd8,0xc4,0xf1,0xa1,0xb2,0x7f,0x71,0x95,0xfb,0x70,0x9b,0x1d,0xdb,0xf5, + 0x55,0x8e,0xe5,0xb0,0x6d,0xe0,0x75,0x29,0x2d,0x3b,0xb4,0x98,0xec,0xab,0x82,0x6a, + 0x7f,0x63,0xf6,0x44,0xaa,0x98,0xcc,0xdf,0xd0,0x87,0x34,0xe0,0x35,0xf7,0x9b,0x78, + 0xd4,0x39,0x4d,0x51,0x36,0x50,0x72,0xdb,0x8e,0x3,0x11,0x92,0x9c,0xde,0x5,0xaf, + 0x53,0xa5,0x5a,0xb9,0x80,0xb4,0x5a,0x78,0x2a,0xea,0x9b,0x0,0x4d,0xbd,0xe5,0xb7, + 0xcf,0x24,0xba,0x3e,0x70,0x3f,0xaa,0xf3,0x55,0x52,0xd4,0xeb,0xfe,0xd3,0x14,0x54, + 0x54,0x46,0x53,0x6a,0xdd,0xc2,0xe3,0x2c,0x6f,0x27,0xd5,0xc9,0x60,0x57,0xde,0xc2, + 0xc,0xe1,0xf9,0x25,0x6f,0xde,0x77,0x22,0x6,0x7b,0x8b,0x20,0xb0,0x8e,0x6b,0xbe, + 0x2,0x67,0x7a,0x5d,0x48,0x6e,0x91,0x1e,0xc,0x9a,0xa2,0x38,0x41,0x10,0x31,0x63, + 0xaa,0x54,0x2a,0xf7,0x9,0x8e,0xa5,0x1d,0x35,0x4e,0x10,0xbf,0x53,0x22,0x37,0x7b, + 0xc4,0x52,0xd2,0x98,0x82,0x1f,0xd7,0xa9,0x8e,0xe3,0x44,0x70,0x8b,0x68,0xae,0xd3, + 0x15,0xaf,0x5e,0x81,0xe6,0xa8,0xa9,0x53,0xbf,0x99,0xcb,0xe3,0xc1,0xd6,0x99,0xc5, + 0x18,0xa,0x3e,0xe3,0xd6,0xf3,0xec,0x33,0x89,0xe3,0x45,0x2d,0x16,0xcb,0x46,0x87, + 0xa,0xd9,0x4e,0x8a,0xeb,0x27,0x4,0xd5,0x89,0x8,0xed,0xa2,0xa7,0x80,0x2c,0x36, + 0x1e,0x37,0x33,0x52,0x3,0xd4,0x5c,0x56,0x40,0x47,0x22,0x5c,0x31,0x3,0xc2,0xa6, + 0x99,0x4c,0x9,0xc1,0x98,0x88,0x2b,0xff,0x53,0x13,0x44,0xd,0x3e,0xb5,0xbe,0xb3, + 0xd6,0x3d,0x9b,0x2,0xe,0x4a,0x2e,0x14,0xb3,0xd8,0x7f,0x40,0xe9,0x1,0x1f,0xc2, + 0xed,0xc,0x97,0x33,0x6e,0xd6,0xf7,0xa5,0xfd,0x65,0x93,0xda,0xf3,0xb7,0x9a,0x10, + 0x74,0xb7,0x4c,0x98,0xfe,0x74,0x4d,0x21,0x80,0x54,0xfe,0x48,0xcc,0x4b,0xcb,0xbf, + 0x3c,0x3b,0xd4,0x45,0x97,0x1f,0x74,0x9a,0x8c,0x2f,0x96,0xfd,0x73,0x9c,0xb6,0x9c, + 0xe1,0xa7,0x3e,0x39,0x9c,0xf9,0xd5,0xfc,0xa4,0xcf,0x7f,0x5f,0x87,0xc4,0xc,0xa, + 0x38,0xa2,0xa0,0xbc,0x6,0x58,0x62,0xea,0x5,0x22,0xbd,0xdb,0x34,0x22,0x26,0xa0, + 0x5,0xa7,0x1,0xd2,0x12,0xbb,0x55,0xad,0xa0,0x53,0xb,0x1d,0x33,0xd6,0xdb,0x1, + 0x60,0x78,0xcf,0xa,0x9e,0x74,0x4,0x3c,0xd5,0x34,0x5d,0x71,0x79,0x4b,0x5c,0xb3, + 0x24,0xce,0x2f,0xbc,0xd8,0x39,0x5b,0x5e,0xeb,0x6c,0x49,0xfe,0x9b,0x3d,0xf6,0xf3, + 0x34,0x47,0x8f,0x83,0x5d,0x97,0xe1,0x43,0x4a,0x2e,0x70,0x94,0x8d,0xb3,0x4a,0x53, + 0x1e,0x5,0x36,0xc,0xd6,0xa6,0x10,0xf2,0x7c,0x6a,0x59,0x3e,0xce,0x96,0xcd,0xed, + 0xc0,0x41,0x9b,0x25,0xa1,0xf2,0xf4,0x64,0xfa,0x44,0xf9,0x39,0xe1,0x41,0xd1,0x3, + 0x6,0xf0,0xfa,0x32,0xe7,0x55,0xc6,0xef,0x53,0xe8,0xef,0xae,0xea,0xbb,0xb8,0x5f, + 0x14,0x21,0xac,0x53,0x7b,0x1f,0x41,0xb9,0xe3,0xa3,0x5a,0xd7,0x6,0x66,0x7c,0x8f, + 0xda,0x1d,0x32,0x5f,0xae,0x39,0x49,0x3a,0x18,0xfd,0x90,0x26,0x9c,0xc6,0xb5,0xb8, + 0x99,0x18,0x1,0x6f,0xc1,0x3a,0xdd,0x3b,0x3d,0xac,0xf,0x9e,0xb3,0x58,0x2d,0xa5, + 0x17,0x1a,0x4a,0xc4,0xe1,0x7e,0x86,0xe7,0x3b,0xfe,0x5,0xf7,0xb8,0xdb,0x68,0x28, + 0xc1,0x3f,0x11,0x26,0xbc,0xdb,0xfe,0x8,0x46,0x55,0xf5,0x24,0x7,0x4e,0x76,0x3f, + 0x9e,0x75,0x66,0x58,0xc,0x15,0x1f,0x15,0xe1,0xf1,0xbc,0x32,0x66,0xd9,0xc9,0xf, + 0x3c,0x36,0x5,0x77,0xb5,0x67,0xb0,0xe0,0xa,0xbb,0x86,0xd2,0x59,0x18,0xbe,0xb0, + 0xe5,0x9f,0x57,0x75,0xfa,0xef,0x48,0xbc,0x49,0xe7,0x63,0xd2,0xb5,0x95,0xbb,0x5e, + 0x77,0x69,0xa9,0xeb,0xcf,0x95,0x99,0x3c,0x3b,0xef,0x4,0xc,0xa9,0xd,0x32,0x7e, + 0xe,0x6d,0x53,0xbc,0xb6,0x17,0x92,0xe5,0xa8,0x24,0x3e,0x66,0xeb,0xf0,0xa9,0xf2, + 0xc7,0x7a,0x3b,0xbf,0xf1,0x37,0xd3,0xcc,0x75,0xaa,0x64,0xd7,0xcd,0xaa,0x73,0x2f, + 0xcc,0x45,0xfc,0x5d,0x93,0xed,0x4e,0x5a,0xca,0x4e,0xe9,0x4,0x1b,0xd1,0x83,0xc4, + 0x18,0x9d,0xc6,0x3b,0xd5,0xe9,0x8a,0xc8,0x38,0x21,0x10,0x35,0xe1,0xdb,0x39,0xa8, + 0xe1,0x44,0x14,0x93,0xd8,0xef,0x55,0x7,0x3a,0xc1,0x7f,0xf5,0x2b,0x0,0x47,0x8, + 0xa2,0xd7,0x29,0x9c,0x71,0x16,0x97,0x78,0x72,0x98,0x65,0x16,0xde,0xd4,0xe0,0xd7, + 0xaa,0xaf,0x78,0x37,0x15,0x23,0xfc,0xc5,0x49,0xe1,0x13,0xc7,0x3f,0xfd,0x4,0x37, + 0x99,0x2e,0xb8,0x50,0x62,0xea,0xca,0x78,0xb7,0x66,0xeb,0xdb,0xb3,0x2b,0x6b,0x65, + 0xec,0xd3,0x31,0x52,0x3d,0x84,0x70,0x4d,0xa8,0x8c,0x9,0xdb,0xf9,0x2b,0xa6,0x4, + 0x3e,0xce,0x85,0xbf,0x3f,0xec,0xdf,0x11,0x96,0x7c,0xfc,0x2d,0xc3,0x1e,0x19,0x41, + 0x90,0xbc,0xae,0xc2,0xfb,0x10,0xaf,0x36,0x3b,0x3b,0x53,0xe2,0x69,0xe5,0xd6,0x93, + 0xeb,0x74,0xa7,0x76,0x44,0x62,0x56,0xf4,0x91,0x73,0x62,0x40,0xaa,0xf6,0x5f,0x8a, + 0x4c,0x55,0x95,0xd3,0x30,0xf8,0xe9,0xdc,0xc8,0x6d,0x9a,0x45,0x75,0xfc,0xef,0x8c, + 0xb1,0xca,0x20,0x79,0xf9,0xef,0xfe,0x54,0xac,0x58,0xec,0xe2,0x5f,0x97,0xf,0xc8, + 0x12,0x96,0x30,0xe4,0xd,0x7b,0x9b,0x3,0x48,0xe3,0x48,0x4b,0xe7,0x93,0xf3,0x8d, + 0xde,0xb1,0x5e,0xe,0xe8,0x52,0x7e,0xd7,0xbd,0xbf,0xd6,0xd8,0x7d,0xf0,0xab,0x7b, + 0xca,0xc,0x9b,0xc9,0xfd,0xea,0xc,0x1a,0xb1,0x8a,0xf,0xcf,0x82,0xaa,0x49,0x92, + 0xf9,0x70,0x39,0xe7,0x8a,0xe2,0xad,0x63,0x37,0x43,0x1d,0x62,0x8a,0x37,0x1f,0xe3, + 0xe5,0x38,0x7a,0xa8,0xec,0x38,0x51,0x52,0x9b,0x70,0x7b,0x98,0xca,0xec,0x3e,0xab, + 0x44,0xa6,0x94,0xeb,0x11,0xd4,0x68,0xdb,0x61,0xc6,0x60,0x51,0xab,0x7f,0xd6,0x7f, + 0xcd,0xbf,0xfc,0xd9,0xcf,0xe8,0x50,0x47,0x17,0xa4,0x9,0xc8,0xde,0x1a,0xf6,0x3, + 0xf3,0x86,0xd5,0x93,0xef,0x41,0xaf,0x6a,0x50,0x2b,0x2f,0xe0,0x55,0xcb,0x26,0x41, + 0x12,0x99,0x1c,0x44,0x77,0x99,0x5c,0xe2,0xed,0x82,0x8f,0x33,0x4,0x51,0x91,0x63, + 0x41,0xee,0x25,0xa7,0x67,0xb7,0xd7,0xe3,0xfa,0x1c,0xef,0x12,0x14,0xa7,0x4a,0x5a, + 0xb3,0x11,0x4f,0x9b,0xfc,0xc8,0xcc,0x55,0x36,0x50,0xf0,0xeb,0x1b,0x5c,0xbb,0xb9, + 0x38,0x5e,0x2f,0x8a,0x87,0x98,0xc,0xb5,0x60,0x9e,0xf6,0xe5,0x46,0xc7,0xfe,0xaa, + 0x9e,0x3c,0x23,0x8,0xe2,0x94,0xdc,0x9c,0xaa,0xb2,0x8d,0x58,0xcb,0xf0,0x7e,0x44, + 0xf5,0xda,0xc7,0x7d,0x74,0x83,0xb8,0xfc,0x51,0x65,0xa9,0x96,0x31,0xc9,0x88,0x7e, + 0x3b,0x78,0xab,0x55,0x73,0x80,0x56,0xb4,0x55,0x39,0x58,0x17,0x6b,0x4c,0xd4,0xab, + 0xf9,0x9f,0x61,0x3f,0x18,0x20,0x49,0xaa,0xeb,0x27,0x6,0xd0,0x9b,0x1b,0xaf,0xa3, + 0xc8,0xef,0xed,0x9,0x91,0xb4,0x3e,0x9,0xd8,0x79,0xbf,0x4b,0xd9,0x24,0x7f,0xfa, + 0xb3,0xa6,0x7f,0xce,0xd5,0x6a,0xb7,0xd7,0x34,0xd1,0xc0,0xe9,0xe5,0xd7,0xaf,0xfc, + 0xc9,0x9f,0x7f,0xe1,0x93,0x11,0x12,0xda,0x66,0xb5,0xf2,0x8e,0x31,0x44,0xdd,0x1b, + 0x24,0x25,0x16,0x3b,0xca,0xd9,0xc4,0x22,0xb1,0xe,0x12,0x67,0x83,0xcc,0xf,0xde, + 0xde,0xe6,0x91,0xa2,0xe8,0x93,0x60,0x2d,0x2,0xf9,0x1d,0x86,0xa7,0x9d,0x1e,0x46, + 0xa9,0x85,0x73,0x2d,0x4a,0xa4,0x93,0x28,0x5e,0xdd,0x6a,0xf2,0x5a,0x4a,0xef,0x25, + 0x0,0xe6,0x96,0x2c,0xd7,0xf2,0xe7,0x56,0x89,0x47,0x50,0xd,0xf6,0xcd,0x8,0xdb, + 0x5f,0xb9,0x8b,0xe0,0x83,0x57,0x2b,0xa2,0xe0,0x56,0xba,0xc4,0xad,0x1a,0xfb,0x97, + 0x54,0x92,0x37,0x53,0x44,0x1c,0x4f,0x22,0xc7,0x71,0x89,0x1b,0x4a,0xb0,0xaa,0x90, + 0x38,0x45,0x83,0x76,0x1c,0xb1,0xae,0x2c,0xde,0x90,0x95,0xa0,0xf5,0x5a,0xc7,0xda, + 0xae,0xdc,0xd2,0x8a,0x2c,0x38,0xa0,0xf2,0xf4,0x92,0xb1,0xc6,0xea,0xd9,0xf1,0x2f, + 0xd9,0x4c,0xe4,0xa7,0x14,0x5c,0x46,0x66,0x67,0xee,0x7a,0x64,0x72,0x5c,0x1,0xa2, + 0x64,0xa5,0xc9,0x94,0x9a,0x57,0xe0,0x63,0x30,0x2f,0x69,0xfe,0xcc,0xc1,0x5b,0x1d, + 0xb,0x59,0x51,0x1e,0xc8,0xad,0xf1,0xb0,0xaa,0x6c,0x93,0x94,0x3e,0x33,0x55,0xd0, + 0x4f,0xcd,0x20,0xb8,0xaf,0x94,0x6,0x3,0x59,0x6b,0x61,0xea,0x39,0x81,0xab,0xac, + 0x9d,0xf7,0x36,0xcd,0x4f,0x94,0xbd,0x9b,0xe7,0xd6,0x47,0x54,0x61,0x3c,0x61,0xc6, + 0x8f,0x4e,0xa0,0x58,0xdc,0x5,0xff,0x41,0xaf,0xe2,0xe3,0x16,0xb1,0xda,0x70,0x80, + 0xb7,0x71,0x99,0xe7,0x6e,0x19,0x32,0x70,0x2e,0xbb,0xb,0x76,0x5e,0x1e,0xc3,0xed, + 0xfa,0x80,0x27,0x9c,0x38,0x8c,0xc,0xe6,0x3f,0xeb,0x78,0xdd,0x92,0x32,0x38,0x86, + 0x5d,0x36,0xba,0xfd,0x3c,0x5,0xc2,0xfc,0xbb,0xce,0xf4,0xd5,0xdb,0x76,0x78,0x31, + 0x21,0xcc,0x87,0x7,0xd5,0x69,0xfb,0xbd,0x87,0xaa,0x88,0x4,0x90,0xa0,0x42,0x12, + 0xbc,0x59,0x63,0x1,0x3a,0x96,0x59,0xbf,0x26,0xe3,0xd8,0xa2,0xd9,0x84,0x4,0x81, + 0x55,0x10,0x17,0xff,0x13,0x65,0xab,0xe9,0x79,0xaa,0x1e,0x37,0x1e,0x4f,0x9f,0x92, + 0xa5,0x6e,0x54,0x93,0xd8,0x5a,0xbd,0xf4,0xf9,0x84,0x16,0x19,0x9a,0xed,0xf3,0xf3, + 0x5d,0x53,0x21,0x68,0x80,0x0,0xd3,0x1a,0x52,0xca,0xe0,0x72,0x96,0x37,0x57,0xbb, + 0xa7,0x50,0x2e,0xd6,0x74,0xdb,0xc1,0xd9,0xc9,0xb1,0x38,0x58,0x53,0x2c,0x13,0x1d, + 0xf5,0xa4,0x44,0xda,0x6a,0x60,0x4e,0xa2,0xbb,0x4c,0x0,0x62,0xb6,0x4,0x2e,0xe4, + 0xc9,0x66,0xd6,0x6f,0xf8,0xef,0xec,0x7e,0xd9,0x1b,0x80,0xa6,0xb7,0x46,0xfb,0x29, + 0x10,0xb2,0x3c,0x5b,0x97,0xc5,0x1b,0x69,0x20,0xb7,0x3b,0xd6,0xfa,0xc8,0xf9,0xb9, + 0x70,0xbd,0x3c,0x5e,0xee,0xc3,0xfd,0x35,0x99,0x87,0x5c,0x44,0x64,0x47,0x69,0x9e, + 0xc1,0x9c,0x78,0x98,0xdc,0xd0,0x8d,0x89,0xf5,0xa6,0xed,0xae,0x44,0xe0,0x3a,0xc2, + 0x9e,0x48,0x9,0x5a,0xd4,0x76,0xd7,0x72,0xef,0xb5,0x31,0xbd,0xc0,0xc7,0xf4,0xbb, + 0xc3,0xf4,0x65,0x42,0x69,0x18,0x8e,0x80,0x23,0x21,0xf9,0x9f,0x47,0xda,0xb6,0xc5, + 0xba,0x85,0x3a,0xe7,0xf2,0xfb,0x81,0x4c,0x45,0xd7,0xb1,0x29,0x3b,0xbe,0xc8,0xca, + 0xc1,0x72,0xb1,0xcd,0x6e,0xcb,0x6,0x3e,0xc6,0xcb,0x60,0x49,0xd0,0xd0,0x4f,0x6, + 0x24,0x91,0x34,0xf2,0x85,0x10,0x19,0x3c,0x6e,0xfb,0x7b,0xfb,0xef,0x16,0x3d,0x2f, + 0x5c,0x80,0xe0,0x37,0x6e,0xc9,0x3d,0x6b,0x62,0xca,0xde,0x5b,0xaf,0xa9,0x10,0x47, + 0x79,0x38,0x96,0x22,0x90,0xc9,0x28,0x3d,0xb8,0x85,0xc8,0xac,0xe9,0xe6,0xbc,0xce, + 0xb2,0x97,0xbf,0x31,0xc6,0xe7,0x3,0x5e,0xb7,0xc2,0x32,0xe5,0x2a,0xbf,0xbe,0x64, + 0xc6,0x7f,0xe8,0x26,0x78,0x18,0x45,0x4b,0xb4,0xf8,0x3c,0x4c,0x8e,0xc0,0x7c,0x9, + 0xdc,0xb4,0x21,0xbf,0x31,0x3c,0x6f,0x76,0xf3,0x6c,0xc4,0xc1,0xf9,0x9d,0xf4,0x50, + 0x14,0x9b,0x85,0x12,0x2,0x3b,0x33,0x69,0x37,0x1f,0xb2,0x57,0x4e,0x11,0x84,0xcf, + 0x9d,0xe4,0xad,0xe9,0xb,0x66,0xc6,0x56,0xf5,0xdf,0x4,0x10,0x45,0xf4,0xaa,0xdc, + 0xef,0xa1,0xba,0x30,0x8,0x96,0x88,0xcd,0x12,0x60,0x6c,0x9d,0xe5,0x5d,0x34,0x5c, + 0xe2,0x79,0x92,0xc3,0x6c,0x9c,0x33,0xbb,0xa0,0x58,0xa5,0x99,0xcc,0x27,0x25,0xa, + 0x8f,0xf6,0x5a,0x9a,0xea,0x46,0xec,0xd3,0x63,0x46,0xfd,0xae,0xe6,0x53,0x1d,0xd6, + 0xa8,0x58,0x33,0xe3,0x50,0x27,0x48,0xe1,0xa3,0xf4,0x49,0xa0,0x8c,0x1b,0xe4,0xd8, + 0xeb,0x6b,0x2b,0x1f,0x6b,0x2e,0xbd,0xd4,0x7,0x4a,0xc8,0x2d,0x90,0x89,0xb4,0x96, + 0xca,0x5a,0x47,0x54,0x98,0x40,0x34,0xf0,0x6c,0x69,0xaf,0xda,0x60,0x73,0xca,0xcf, + 0x25,0xb8,0xb4,0xd,0xcc,0x2,0xef,0xb9,0x18,0x57,0xe4,0x5f,0xe5,0x36,0x71,0xd5, + 0x6,0x95,0xe6,0x38,0x9d,0xed,0x34,0xd4,0x6c,0x2d,0x6c,0x38,0xc9,0x6d,0x33,0x47, + 0x6,0xe9,0x2c,0x51,0x3,0x27,0x54,0x81,0x4a,0xc,0x4b,0xc5,0x2c,0x90,0xfa,0x9b, + 0xd4,0x2a,0xb4,0x2d,0xe5,0x9a,0x6a,0xc3,0x3f,0xc7,0x20,0xad,0x9f,0x5,0x11,0x9, + 0x86,0x57,0xee,0x23,0xb3,0xd2,0xba,0x6b,0x34,0x4b,0x26,0x25,0xa1,0x7d,0x9e,0xd2, + 0xa5,0x31,0x8d,0xf1,0x3,0x3b,0x79,0xd,0x2,0x2b,0x27,0x27,0xb6,0x7d,0x5b,0xbf, + 0x98,0x31,0x85,0xa8,0x13,0x6d,0x20,0x19,0xaa,0x68,0x16,0x30,0x60,0x7b,0x7d,0x10, + 0x9f,0xcf,0x7d,0xb8,0x1d,0xd4,0xcb,0xfc,0xd2,0x77,0xf1,0xc1,0x60,0xfe,0x3e,0x5b, + 0x60,0xcd,0x9c,0x7a,0x89,0x5e,0xd6,0x75,0xb1,0x51,0xcd,0xdd,0xc5,0x29,0x1,0x7a, + 0x7,0x1d,0xe0,0x31,0x6c,0x59,0x25,0xe8,0x69,0x85,0xb0,0x99,0x56,0xb4,0x3d,0x9b, + 0x8e,0x8e,0x3f,0xf1,0xc3,0x23,0x6d,0xda,0xdb,0x66,0x9b,0x43,0x62,0xc9,0x45,0x67, + 0x1b,0xd,0x14,0x57,0x9a,0x7,0x2c,0xda,0x1,0xa3,0x27,0x83,0xa9,0x27,0xb6,0xdf, + 0x89,0x37,0xe2,0x58,0x93,0x8f,0xef,0xb3,0x3e,0xa4,0xfa,0xbd,0x56,0x1,0x39,0x22, + 0x50,0xc8,0xba,0x8,0xab,0x8,0xe0,0xae,0x3b,0xcf,0x5a,0xd4,0xce,0xec,0x41,0xa2, + 0x85,0x89,0x96,0xa3,0x9,0x13,0xc8,0xa1,0x60,0xbf,0xf,0x2d,0xd3,0x16,0xe4,0x4b, + 0x64,0x9f,0x72,0x15,0xa5,0x17,0x2,0xa5,0xe7,0x79,0xca,0xd0,0x83,0xb8,0x3,0xef, + 0xc6,0x9d,0xea,0xbe,0xad,0xc1,0x88,0x81,0xa4,0xdc,0xd8,0x7,0x2f,0x88,0x76,0xfd, + 0xbc,0x9,0xe4,0xbf,0xe1,0x34,0x4b,0x2f,0xef,0x34,0x9f,0x32,0x3e,0xad,0x17,0x8d, + 0x7d,0x44,0x22,0x6d,0x91,0xab,0x60,0x35,0xac,0xe0,0x49,0x64,0xae,0xa0,0xaa,0xa3, + 0x2a,0x15,0xd7,0x7,0xe4,0xb9,0xed,0x39,0x98,0x34,0x6a,0x93,0xa,0x5d,0x2a,0xb6, + 0x9b,0x35,0xa9,0xc8,0xfd,0x28,0xb3,0xe1,0x9a,0xcb,0xfe,0xc8,0x86,0xf7,0x5f,0xfe, + 0xf5,0xf2,0x3c,0xb8,0x4e,0x6a,0xdb,0xe9,0x3,0xd2,0x92,0xe5,0x5e,0xdc,0xb,0x5f, + 0x37,0x46,0x56,0x54,0xa3,0x34,0x8b,0xcc,0xcd,0x85,0xf7,0xcc,0x65,0xda,0xc0,0x72, + 0xe,0x9,0x3,0xfa,0xa2,0x77,0x31,0xa8,0x43,0x6c,0xcc,0xaf,0x33,0xff,0x31,0x96, + 0xe0,0x81,0xc,0x28,0x72,0x92,0xc3,0x6a,0x97,0x4d,0x94,0x65,0xd3,0x2c,0x2d,0xe1, + 0xf1,0x68,0xc6,0xf3,0x71,0x9b,0x86,0xb8,0xe0,0x6f,0x40,0x2f,0x61,0x42,0x8e,0xb5, + 0x88,0xa6,0xc5,0xc0,0x72,0x61,0xb8,0x6a,0xc5,0x98,0xeb,0x7d,0x21,0x8,0xb9,0x22, + 0x7b,0x74,0x30,0x29,0x7b,0x65,0x8d,0xa7,0xbc,0xb9,0xd7,0x61,0xe7,0x11,0x53,0x19, + 0x90,0xc0,0xb6,0x11,0xb8,0xd5,0xdf,0x73,0x52,0x7b,0x85,0x5d,0x3d,0x3c,0x8c,0x96, + 0xe5,0xbb,0x9f,0x9e,0x82,0xb8,0x7a,0xd9,0x55,0x3b,0xbc,0xc7,0x28,0xfd,0xb8,0xc0, + 0x5d,0xdf,0x59,0xf9,0x7e,0x1,0xba,0xf7,0xc7,0x4,0x43,0xc2,0xed,0xa3,0xb0,0xe9, + 0x31,0xa1,0xdf,0xab,0xa5,0xac,0x6,0x5b,0x61,0x51,0x9e,0x1f,0xb7,0xe2,0x73,0xef, + 0xb5,0x3c,0x2e,0xbd,0x6e,0x58,0x50,0x78,0xde,0x8d,0xe3,0x3c,0x12,0x61,0x78,0x47, + 0xd,0xfe,0x89,0x4b,0xcb,0x8d,0x36,0xe,0x55,0x4c,0x85,0x3c,0x4c,0xf8,0x59,0x90, + 0x81,0x41,0x1b,0x2d,0xcf,0xdd,0x1a,0xdd,0x9c,0x19,0xe0,0xba,0x5e,0xe9,0x9d,0xaf, + 0x79,0xe9,0x2a,0xcd,0x7d,0x76,0xae,0xc5,0x8e,0x76,0x50,0x42,0x75,0x31,0x1e,0x68, + 0x2f,0x50,0x24,0xd5,0x1c,0x5f,0xea,0xca,0x5e,0x4f,0xd1,0x6e,0xb5,0x8,0x94,0x17, + 0x55,0x45,0xeb,0xa6,0x80,0x79,0x75,0x56,0xdd,0x4c,0x44,0xa2,0x43,0xf3,0x18,0xf2, + 0xb2,0x9,0x1d,0xb9,0xdc,0xde,0xb0,0x1a,0xdf,0xe0,0x8b,0xc7,0x7a,0xfb,0xab,0xf9, + 0xa0,0xcb,0xec,0x1e,0x2b,0x1d,0x7d,0x6b,0x20,0x72,0x91,0xef,0x73,0xdf,0x75,0xfc, + 0xd4,0x1a,0x4,0xa8,0x88,0xd7,0x41,0x27,0x26,0xca,0xc1,0xd5,0x5c,0x4c,0xce,0xa0, + 0x90,0x67,0xeb,0x31,0xc8,0x5a,0xc9,0xfa,0xb9,0x77,0xc6,0x2b,0xbf,0xbd,0xe3,0x71, + 0xcb,0xd6,0x15,0x8d,0x27,0x8f,0x9f,0x56,0x33,0xab,0x3e,0xc8,0x8f,0x42,0x8e,0xa1, + 0x7c,0x5f,0x8b,0x37,0x6f,0x44,0xae,0xf0,0xdf,0x5f,0x8a,0xed,0x8b,0xb7,0x9c,0xd2, + 0x75,0x9,0xaa,0x51,0xd2,0xfd,0x3a,0x7f,0x9a,0x5d,0xef,0x41,0x44,0xfb,0x73,0xae, + 0xba,0x81,0x6a,0xc7,0xaf,0x3c,0x99,0x32,0xcb,0x13,0x3a,0xff,0xfa,0x97,0xe5,0x30, + 0x46,0xfb,0xe4,0x71,0x5c,0x6,0xe,0xfb,0x7e,0xe2,0x37,0xc4,0xbc,0x6d,0xca,0xe4, + 0x9b,0x7e,0x85,0x89,0x9d,0x23,0xfe,0x49,0xbb,0xdb,0xe5,0xfc,0x8f,0x5,0xd5,0x2c, + 0xe1,0x6b,0xe6,0x19,0xc9,0x37,0x8d,0xd9,0x6,0x8,0x51,0xe5,0xaf,0x63,0x12,0x4f, + 0xe4,0xce,0x2f,0xaa,0x54,0xd4,0xfb,0x3f,0xfd,0x5d,0xcf,0x51,0x89,0xb7,0x3c,0xcf, + 0xad,0x39,0x3f,0x15,0x92,0xdc,0x8b,0x94,0x1a,0x56,0x8b,0xe1,0x89,0x74,0x98,0x39, + 0xc5,0x11,0x69,0xbe,0xba,0x33,0x42,0xe6,0x57,0x6c,0xf8,0xa9,0xc9,0x7a,0x94,0x5b, + 0x5d,0xb8,0x8,0x2b,0x72,0x95,0xc7,0x85,0xd2,0xbe,0xb6,0xe,0xd8,0xc2,0xc,0x5d, + 0x95,0x90,0x73,0xd5,0x79,0xdf,0x17,0x95,0x27,0x4b,0x38,0x86,0xff,0xa6,0x6,0x6a, + 0x5f,0xc1,0xf6,0x5e,0xce,0x95,0x19,0x2e,0xbc,0x55,0xde,0x4a,0x74,0xfa,0xa,0x52, + 0xfb,0xb7,0x6e,0x8a,0xee,0xc7,0x8f,0x10,0xc2,0x96,0x46,0x96,0xd6,0x9b,0x80,0x2d, + 0x52,0xd7,0xe9,0xcc,0x5e,0x52,0x15,0x55,0x78,0x2,0x7f,0xc6,0xc1,0xe7,0x9d,0x87, + 0x7f,0x5b,0xb3,0x2c,0xa2,0xc7,0xfd,0x60,0x50,0x48,0xd2,0x44,0xbf,0xc5,0x2d,0xfa, + 0x42,0xcc,0xfc,0x59,0xd8,0xd0,0xef,0xd7,0x74,0xee,0xe5,0xc9,0x4a,0xe8,0x65,0x50, + 0x90,0x60,0x5e,0x88,0x2d,0xf4,0x2c,0x36,0x5d,0x3c,0x73,0xe1,0xde,0x1b,0x50,0xe0, + 0x59,0xf7,0x8a,0xd7,0x90,0x3b,0x4,0x8b,0x3,0x65,0x2e,0x3e,0xab,0x7b,0xe6,0x20, + 0x69,0xf3,0xde,0x8a,0xbd,0xac,0x32,0x84,0x7a,0x52,0x2c,0x25,0xd0,0x40,0x80,0x40, + 0x7e,0x4c,0x5f,0xbd,0x22,0xdb,0x17,0x1c,0xb8,0x52,0x9c,0x55,0xea,0x53,0x6,0xbf, + 0xe2,0x61,0x97,0x3c,0xdb,0x29,0xe6,0xd2,0xa8,0x5b,0xf2,0x18,0xff,0x14,0xa6,0xae, + 0x16,0x7e,0x6e,0xee,0x79,0xef,0x6b,0xec,0x7e,0x5e,0x54,0xae,0xa9,0x76,0x16,0x5b, + 0x60,0xd4,0xb2,0xd0,0x69,0xcd,0x71,0x86,0xf0,0xa5,0x76,0x55,0xde,0xc6,0xc3,0xa2, + 0x9a,0xb3,0x8e,0xe,0xa8,0xf3,0x82,0x7c,0x88,0x51,0xc0,0xb9,0x94,0xd3,0xd9,0xb7, + 0xf5,0xb4,0xd5,0x34,0x10,0xfa,0xfb,0xd5,0xb2,0x4d,0xf5,0x5d,0xfd,0x80,0x73,0xb, + 0xf7,0x45,0xe7,0x49,0x63,0x7a,0x93,0x58,0x80,0x6b,0x5c,0xbb,0x8d,0xe8,0xb0,0xbe, + 0xe9,0xac,0x9b,0x73,0x34,0xa4,0xe9,0x85,0x2,0xd2,0x9,0x7d,0xa,0x91,0x70,0xa, + 0x50,0x33,0x59,0x15,0xf1,0xae,0x5d,0xaa,0x49,0x3e,0x2f,0x79,0xde,0x16,0x2,0x41, + 0xdf,0x28,0xd2,0x5c,0x86,0xa1,0x2d,0x22,0x3d,0x5f,0x7d,0x8e,0xf9,0xee,0xfa,0x2c, + 0x90,0xc4,0xc4,0x86,0xdc,0xdf,0xbe,0x58,0x1e,0x1c,0xb7,0x78,0xd9,0xe6,0x56,0xb3, + 0xbd,0x42,0xb6,0x86,0x1d,0xf0,0xcf,0x79,0xaf,0xa9,0xd2,0xa3,0x30,0x28,0x1b,0xc9, + 0x2e,0xf3,0xf6,0xd5,0x9c,0x41,0x97,0x7e,0x53,0x69,0x1c,0x3,0xa2,0xfe,0x43,0xcb, + 0x45,0xe9,0xa0,0xc6,0x72,0xe8,0x49,0xf7,0xb1,0x3b,0x43,0xcb,0xee,0x4d,0x86,0x44, + 0xed,0x96,0x8,0xf6,0x7d,0x1b,0xae,0x3e,0x10,0xd5,0xac,0xed,0x3b,0x49,0x34,0xff, + 0xe9,0x63,0xe8,0xf5,0x49,0x2f,0x3f,0xef,0x28,0x3e,0x1b,0x6f,0xe1,0xb7,0x7e,0x9d, + 0xe6,0x4b,0x4c,0x4c,0xc4,0xd7,0x72,0x45,0x51,0x11,0xdb,0x10,0x71,0xd9,0xf2,0x65, + 0x22,0xce,0x7b,0x86,0xa7,0x9c,0x6d,0x51,0x2a,0xd4,0x1b,0x71,0xcd,0x2b,0xbb,0x41, + 0x2c,0x3d,0xba,0x3d,0xe5,0xbd,0x1d,0xb5,0x61,0xd1,0xb2,0xdd,0xfa,0x8d,0xd9,0x71, + 0xa2,0xac,0xe1,0xe4,0x44,0x1d,0xa1,0x6b,0x3b,0x20,0x1f,0xbf,0xcd,0xcc,0x5c,0x64, + 0xf5,0x27,0x8c,0x8d,0x1f,0xd8,0x5e,0xbe,0xc2,0xa6,0xa6,0x32,0xf4,0x86,0x58,0xdf, + 0xfe,0xd6,0x20,0xc9,0xf4,0x66,0x55,0xfa,0x13,0xb8,0xaf,0x7a,0xa9,0xc9,0x79,0xd8, + 0x53,0x44,0x83,0x6c,0x67,0x86,0x90,0x6c,0xe4,0x6a,0x9,0x82,0xfc,0x2e,0xa3,0x2c, + 0xc4,0x25,0xfb,0x6c,0x95,0xf8,0x1d,0x3d,0xe0,0x24,0x6,0xc8,0x27,0xaa,0x25,0x4c, + 0x64,0xb3,0xa6,0x9b,0x92,0xa,0xbe,0x67,0xb2,0x53,0x52,0x9f,0x38,0xe4,0x34,0xf2, + 0x84,0x5a,0x11,0x3e,0x13,0x2e,0x3,0xca,0x84,0x9b,0x2c,0x49,0x40,0x52,0xee,0x8a, + 0xab,0x28,0xfc,0xc9,0xfb,0x85,0xee,0x50,0x99,0x8b,0x66,0xf3,0x41,0xfd,0xf3,0x7, + 0x71,0x1f,0x7,0x7e,0x35,0xbf,0xd2,0x69,0x3a,0xeb,0x30,0xc9,0x14,0x95,0x79,0x7c, + 0xb1,0xfc,0xda,0xeb,0xf2,0x91,0xfa,0x70,0x53,0x67,0xa9,0xa4,0xa5,0x66,0xd0,0xc7, + 0x4b,0x75,0xd2,0xc5,0x39,0xf2,0x8b,0xcb,0xc8,0x8a,0x1b,0xd8,0x7a,0x92,0x15,0x9a, + 0x7,0xef,0xe7,0x2e,0xf,0xc0,0xac,0x91,0x27,0x85,0xa8,0x31,0xbe,0x6d,0x6a,0x95, + 0x37,0x87,0x3b,0x9e,0xcd,0x52,0x63,0xdf,0xfa,0xfc,0x70,0x1a,0xbc,0xb,0x5c,0x35, + 0x3b,0x31,0xde,0x83,0x8c,0xb9,0xe2,0xe6,0x49,0x74,0x6,0x5e,0x8a,0xe7,0x2f,0xc9, + 0xf4,0x8a,0x16,0x17,0x3c,0x4,0x86,0x53,0x63,0x4f,0x32,0xbe,0xea,0xe9,0xe3,0x6f, + 0x8,0x4e,0x76,0x8,0xf4,0xba,0x9f,0x6,0xc2,0xa0,0x70,0xdc,0xd4,0xfa,0x23,0x49, + 0x35,0x68,0x8f,0x3,0xfe,0x2a,0x54,0x5,0x5f,0x19,0x46,0xd4,0xe9,0xa9,0xad,0xbf, + 0x98,0x21,0x4d,0x73,0x4b,0xcf,0x29,0xc8,0xaa,0x50,0x1c,0x2b,0x5d,0x36,0x39,0x58, + 0xc4,0x48,0xd8,0xa3,0x62,0x31,0x8a,0x77,0x50,0x64,0xcf,0x59,0x39,0x19,0xd5,0x33, + 0xfe,0xc1,0x2f,0xd0,0x4a,0x82,0xf6,0x48,0x8c,0xbe,0x40,0x72,0xa7,0x5f,0xf3,0x80, + 0x51,0x20,0xf,0x82,0x3,0x9,0x27,0x29,0x86,0xdf,0x43,0xf7,0x40,0x5f,0x7b,0x14, + 0x5b,0xb8,0xbf,0x37,0x5c,0xc5,0xbd,0xa2,0xa7,0xf9,0x9a,0x5c,0xc4,0x23,0x3b,0x34, + 0x51,0x1c,0xb1,0x31,0xa5,0x57,0xcf,0xd0,0x38,0xc2,0xfa,0xd4,0x9,0x87,0xdc,0x9d, + 0xbb,0xb1,0x2f,0xa4,0x98,0xce,0xe1,0x8,0xb9,0xbf,0x20,0x32,0x6b,0x44,0x88,0xb0, + 0x4b,0x33,0xc4,0xff,0x3e,0x25,0x3,0x35,0xf8,0x3d,0x72,0xf8,0x24,0x3e,0x6c,0x7b, + 0x62,0x15,0x98,0x9d,0x63,0x59,0x93,0x70,0xa7,0xe1,0xc2,0xc6,0x6f,0x7b,0xee,0x1c, + 0x96,0xb6,0x58,0x7c,0xa3,0x50,0xc1,0xe4,0x10,0xa8,0xfc,0x59,0x17,0x73,0x4b,0x92, + 0xe,0xfb,0xd5,0x39,0x3b,0x8,0x49,0xdd,0x0,0x13,0x3d,0x1c,0x5e,0x90,0x82,0x72, + 0xd9,0x3d,0x69,0x57,0x45,0xe2,0xd9,0xbd,0xea,0x3e,0xb6,0xf8,0x8,0x52,0x72,0x60, + 0xf3,0x5f,0xb4,0x67,0xe6,0x9e,0xeb,0x30,0x22,0x75,0x9,0x19,0xf6,0x1f,0x41,0x57, + 0x77,0x86,0xb,0x37,0x8f,0xd9,0xae,0xd3,0xcf,0xcd,0x65,0x41,0xfa,0x52,0x29,0x21, + 0xb8,0x7c,0x33,0x0,0x8,0xe2,0xf2,0x1b,0x67,0x3a,0xd,0x3d,0xff,0x4a,0x4a,0x67, + 0x5,0x9a,0x5a,0xa,0x97,0x59,0x22,0xaa,0x29,0x3b,0xae,0x9e,0xb2,0x22,0xb4,0xa3, + 0x81,0xe0,0xbe,0xc9,0xe9,0x66,0xf7,0x8d,0xfa,0xea,0x80,0x86,0xcb,0x42,0x2,0xbe, + 0x2b,0x38,0xa6,0xf,0x9e,0x60,0x77,0x4b,0x30,0x5c,0x18,0x16,0xb5,0x2f,0xa3,0x64, + 0xe9,0xdd,0x79,0x6c,0x22,0xe6,0xa9,0x2c,0x45,0xa,0xd6,0xb,0x98,0x9b,0xb3,0xfa, + 0x51,0xcb,0xf5,0xfe,0x63,0x6,0xaa,0xb6,0x90,0xec,0xea,0x83,0xb7,0x32,0xa0,0x68, + 0xff,0x38,0xe6,0xdc,0x87,0x4c,0x1c,0xf,0x49,0x40,0x90,0x8d,0x25,0x52,0x68,0xbf, + 0xfc,0x4b,0xfb,0x1f,0x1e,0xfd,0x2b,0xd3,0xbc,0x7b,0xfa,0xdb,0x22,0x61,0xfb,0x4c, + 0xa6,0xb6,0x11,0xf0,0x9b,0xef,0xfc,0x6,0x8f,0xb9,0x31,0x1e,0xf8,0x5d,0x8b,0x99, + 0x5a,0x91,0x11,0x91,0xfd,0xf,0x63,0x42,0x1a,0xdf,0x72,0xa3,0xe2,0x1d,0xa6,0xed, + 0xbe,0xbb,0x9,0x96,0x74,0xa,0x44,0xe2,0x28,0x7f,0x46,0x3f,0x1c,0xc5,0xc5,0x20, + 0x9d,0xaa,0xd4,0xdf,0x13,0x13,0x2b,0xaa,0x59,0x41,0x7b,0x9e,0x71,0x75,0x98,0xb0, + 0x70,0x71,0xfa,0xde,0xbb,0x73,0xef,0x54,0xca,0xde,0x6e,0xed,0xd2,0x7e,0x96,0xff, + 0x4f,0x7b,0x88,0x35,0x86,0x34,0xe4,0xde,0xb7,0x78,0xf7,0x4,0x8b,0x17,0xe3,0x34, + 0xb3,0xe8,0xaf,0xa7,0xc1,0xda,0x3f,0x83,0xea,0xce,0xd2,0x94,0x90,0xd9,0x7d,0x60, + 0xab,0xad,0xef,0x62,0x27,0x7f,0x3d,0x7,0x8a,0x7f,0x8,0x37,0xa8,0xd0,0x20,0xa2, + 0xee,0x1,0x59,0x59,0xcd,0xf,0xd5,0x4d,0xa,0x7e,0x3c,0x4f,0xe1,0x85,0x49,0xb9, + 0x1f,0xfc,0xfa,0x33,0xee,0x91,0x5d,0x7,0x5,0xb7,0x8e,0xfb,0x13,0x11,0x94,0x81, + 0x19,0xca,0x73,0x1a,0xf6,0x9f,0xb3,0xf2,0x34,0x8,0x99,0xb0,0x60,0xcf,0xd,0x76, + 0x96,0x82,0x9c,0x48,0x3a,0xc2,0x54,0x13,0x5a,0x1f,0xf6,0x68,0xe0,0x1e,0x45,0x27, + 0x65,0x4a,0xe0,0x7f,0x3f,0x9,0x7e,0x3,0xd6,0xa7,0xd1,0x7a,0x1b,0xe5,0x29,0x7a, + 0x83,0x3a,0x4b,0x1f,0xbe,0x45,0x88,0xfe,0x6,0x3c,0xa4,0x62,0x38,0xfa,0x48,0x3, + 0xe4,0x13,0x83,0x6e,0xb1,0x90,0x77,0x50,0x39,0x85,0xf5,0x7e,0x39,0x1f,0x87,0x4a, + 0x6,0xc9,0xd5,0x31,0xe7,0x69,0x45,0x99,0x1d,0xef,0x67,0xe0,0xea,0xcc,0xac,0xc8, + 0x40,0x9e,0x7d,0xb9,0x2b,0xb7,0xd,0x12,0x44,0x4f,0xde,0x21,0x9a,0xe6,0x93,0x1e, + 0x1a,0xd4,0x11,0xa0,0xd0,0x77,0xb0,0xc6,0xd1,0x69,0x36,0x53,0x22,0xec,0xe5,0xd8, + 0x2c,0xb3,0x17,0xf9,0x2d,0xa9,0xa9,0x86,0x3f,0xbf,0x3b,0x78,0x26,0x3b,0x38,0xc1, + 0x61,0x11,0xcb,0xf9,0xdf,0x29,0x6f,0xe7,0x92,0xbd,0x6a,0x57,0xa9,0x7f,0x5,0x7d, + 0xb,0xa9,0x1,0xe5,0x4f,0xfb,0xf,0x49,0xe0,0xa9,0xa0,0x47,0xe7,0xa7,0x3d,0x9d, + 0x9a,0x87,0x49,0x4a,0x50,0xd4,0x67,0x3f,0xd4,0x38,0x87,0xbf,0x3c,0x72,0x8b,0xf2, + 0xcf,0x3e,0xc7,0x6f,0x54,0xfa,0x4d,0x1e,0xb6,0x30,0xf7,0x32,0x6,0x27,0xa7,0x81, + 0x7d,0x0,0xd2,0x37,0x4d,0xc9,0xc4,0x21,0xab,0xc0,0xf0,0xef,0x77,0xd0,0xad,0xe9, + 0x2e,0x15,0xb1,0xdc,0xfd,0x6b,0x6d,0x9d,0x46,0x46,0x63,0x4f,0xc8,0xde,0x66,0x22, + 0xfc,0x2c,0x9d,0x85,0x20,0xe1,0xf0,0x42,0x4d,0x6d,0xb5,0x11,0xa6,0xcf,0x2b,0x4b, + 0x1f,0x2,0xa2,0x6c,0x7d,0xe3,0x5d,0xf2,0xd7,0x5e,0xc6,0xf4,0x7,0x78,0xd3,0x8b, + 0x62,0xe0,0x1a,0x7f,0x67,0xcf,0x9f,0xdb,0x71,0x61,0xee,0x5a,0xf5,0xe,0xa2,0xdd, + 0xff,0x5a,0xc6,0xdd,0x57,0x4b,0x46,0xb4,0xf1,0x48,0x2a,0xcc,0xa2,0x12,0x6c,0x42, + 0x9d,0xbd,0xdb,0x8c,0xb8,0x71,0xc5,0xf5,0x9f,0x7e,0xbb,0x42,0x89,0x4f,0x48,0x66, + 0x6d,0x2c,0x0,0x8e,0x9b,0x7e,0x4e,0x79,0xad,0xc2,0xd2,0xc,0x1b,0xce,0xcc,0xf0, + 0x35,0xb1,0xcc,0xa4,0x42,0x75,0x2d,0x45,0xae,0x88,0x6b,0x57,0x45,0xdb,0x24,0xcb, + 0xbd,0xa2,0xb0,0x6f,0x9a,0x3e,0xe,0x57,0x69,0xc4,0x97,0x10,0xc2,0xbe,0x58,0xc1, + 0x98,0xa3,0x67,0x0,0xce,0x57,0x94,0x3,0x38,0x78,0xa8,0xe8,0x17,0x3c,0xa4,0x4d, + 0x55,0x52,0xfd,0xb7,0xe8,0x47,0x2b,0xd8,0xba,0xf0,0x73,0x5f,0x85,0xc6,0xed,0x95, + 0x5b,0x6f,0xd7,0x8d,0xa8,0xb5,0xf6,0xbe,0x74,0x64,0x33,0xdc,0x89,0x33,0xdc,0xbf, + 0x7c,0x36,0x3a,0x97,0x86,0x85,0x87,0xca,0x10,0x77,0x38,0xe4,0x2e,0xf2,0x60,0x7c, + 0xaa,0x3c,0x1c,0xc6,0x68,0xec,0xa9,0x78,0x89,0x36,0x63,0xa3,0x68,0x1d,0xa7,0x23, + 0x14,0xb8,0x10,0xf,0x4b,0xde,0xb5,0x67,0xce,0x4d,0xcd,0x37,0xab,0xeb,0xb4,0xe7, + 0xd3,0x7c,0x1a,0xf9,0x65,0xf8,0x18,0xd6,0xb3,0xd5,0xdf,0x11,0x18,0xc1,0xed,0x51, + 0x39,0x28,0xc3,0xcb,0x7e,0xf,0xe3,0x76,0xa6,0x15,0x4d,0xa8,0xa8,0xa4,0x72,0x33, + 0xbe,0x48,0x38,0xb3,0x98,0x88,0x69,0x2a,0x31,0x5c,0xcc,0x4d,0xbc,0x47,0xef,0x7b, + 0x92,0x86,0x61,0xf1,0xff,0xff,0x7,0xe,0x7e,0x52,0x91,0x32,0xa0,0x39,0x5a,0x32, + 0xe8,0xec,0x78,0xa6,0x1d,0x8d,0xd1,0xf7,0xb8,0xd2,0x18,0xd,0xb0,0x72,0x49,0x80, + 0x75,0x42,0xba,0x94,0xe,0x8d,0xb4,0x98,0x7c,0x6d,0x3f,0xf1,0xd5,0xb3,0x89,0x8b, + 0xb2,0x70,0xd0,0xa8,0xfc,0xa3,0xe9,0x20,0xbf,0x2,0x9a,0x77,0x41,0x9f,0xe3,0xa7, + 0xc1,0xc8,0x16,0xfc,0xb5,0x43,0x8e,0x66,0x73,0xa1,0x3a,0xd6,0x3d,0x84,0x50,0xda, + 0x34,0x93,0xbf,0xc5,0x21,0x77,0xc3,0xbf,0xf0,0x80,0xc7,0x99,0x9d,0x83,0xa8,0x55, + 0x13,0xc9,0x42,0x9c,0x40,0x95,0x33,0x34,0x99,0xe1,0xb6,0x1a,0xe6,0x34,0xdc,0x7a, + 0xbe,0x58,0xdb,0xe7,0x99,0xbc,0x64,0x7a,0x72,0xfa,0x2e,0xed,0x15,0x68,0x29,0x4, + 0xe,0x67,0x87,0x18,0xd9,0xf4,0xd5,0x79,0xf5,0xbb,0x2b,0x60,0xbe,0xbb,0x37,0xc3, + 0x32,0xe3,0x70,0x94,0x97,0x70,0x11,0x94,0xf5,0x62,0x7d,0xcb,0x7b,0xed,0x12,0x6d, + 0xc,0x75,0x36,0x73,0xeb,0xcf,0xd0,0xbb,0x7c,0xe9,0x73,0x75,0x3a,0xf1,0xe4,0x45, + 0xbd,0x11,0xe,0xc8,0x54,0xa7,0x2e,0xe4,0xdd,0xd,0xf4,0x88,0x1a,0xdb,0x63,0x79, + 0xbd,0xdd,0x4f,0x15,0x4f,0x96,0xda,0xbe,0x3c,0xd5,0xe0,0xf,0x1e,0x9b,0x5e,0x13, + 0x7a,0xaa,0x30,0x25,0x52,0xef,0x93,0xfd,0x9a,0x47,0xfe,0x68,0x4b,0xaf,0xcf,0xa0, + 0xe6,0x4c,0x1a,0x6b,0xb3,0x40,0x95,0x99,0xa6,0xe5,0x91,0x15,0xed,0x99,0x2e,0x6, + 0xf2,0xec,0x11,0x66,0x40,0x4f,0xdb,0x6f,0xff,0x31,0x5d,0xe8,0x6a,0x80,0x4a,0xed, + 0x4d,0x29,0x1e,0x86,0xca,0x97,0x8e,0x2c,0x46,0xfa,0x9f,0x9c,0x3d,0x7e,0x35,0xf9, + 0xe2,0x3d,0xfd,0xe6,0x7,0xf7,0x64,0xcb,0x85,0xa7,0x17,0x37,0xa7,0xed,0xe1,0xe0, + 0x4b,0x1,0xf3,0x63,0x43,0xce,0x96,0xab,0xf1,0x8a,0x91,0xa3,0xb5,0x3e,0xb2,0xc6, + 0xe2,0x31,0x54,0x44,0x52,0x27,0xa0,0x1d,0x43,0x93,0xa,0xd0,0x78,0x27,0xf5,0xd2, + 0xc0,0xef,0x7d,0xd3,0xfe,0x41,0xf0,0xfd,0x4b,0x26,0x7c,0x35,0xf1,0x51,0xec,0xa2, + 0xfb,0x7c,0x71,0xdd,0xcd,0xc7,0xe,0x76,0xc1,0x80,0x1e,0xc1,0xa6,0xa,0xb,0xb9, + 0x63,0xfd,0xfd,0xbe,0x1c,0x22,0x3a,0xc,0xfc,0xe8,0xfd,0x5d,0x5b,0x70,0xc8,0x85, + 0x6f,0x4f,0x66,0x78,0x75,0xc5,0x32,0x4a,0xf1,0xc6,0xd7,0x3f,0xeb,0xe6,0xed,0x9e, + 0xc,0x56,0x90,0xed,0x72,0xd4,0x8a,0xed,0xa7,0xc,0x6e,0x60,0xbe,0x54,0x85,0xc5, + 0xd3,0x59,0xb8,0x4e,0xdb,0x1e,0xdb,0x10,0x32,0x23,0xb9,0x71,0xa4,0xf7,0x21,0x5f, + 0xed,0x2c,0xc,0xa0,0x61,0xd0,0x69,0xaa,0x8f,0xa7,0xe1,0xcc,0x32,0x18,0x94,0xe0, + 0x83,0xb4,0xde,0x84,0xd2,0xa5,0x5,0x8f,0x17,0x69,0x9f,0xc,0xff,0xc,0x2c,0x6e, + 0x95,0xa8,0x26,0x60,0xbd,0xfc,0x49,0xdc,0xcd,0xa6,0xba,0x2a,0xcf,0xc,0x33,0x8, + 0xff,0xf8,0x0,0x9d,0xf1,0xb2,0xda,0x95,0x61,0x18,0x3a,0xe1,0xeb,0x64,0x17,0xf5, + 0xe6,0xfe,0x79,0x15,0xdd,0x74,0xbf,0xa6,0x4a,0x29,0xcd,0x4a,0x72,0x60,0x6a,0xa8, + 0x1e,0x33,0xd1,0xae,0xa7,0xcd,0x50,0x9d,0x5b,0xe9,0xf9,0xc8,0xf9,0xe9,0xde,0x38, + 0x76,0xc2,0xf4,0x49,0xc9,0x18,0xa7,0xda,0xfe,0xcc,0xeb,0xa4,0xb,0x15,0x7e,0x4d, + 0xe2,0x5d,0xaa,0x51,0x7c,0xa2,0x5e,0xe0,0xc3,0x16,0xbd,0x12,0xeb,0xef,0x4d,0x1d, + 0xc5,0x1c,0xd2,0x90,0x60,0x2f,0x5a,0xd7,0x68,0x74,0x94,0x9b,0x29,0x51,0x6,0xa9, + 0x4f,0x65,0xeb,0x14,0x87,0x6,0x66,0xb4,0x64,0x37,0x9e,0x25,0x86,0x80,0xf8,0xf5, + 0x9c,0xf2,0x8b,0x70,0xad,0x84,0x29,0xc1,0x96,0x8a,0xfe,0x5f,0x45,0x6c,0x37,0xc2, + 0x4b,0xe7,0x5f,0x7a,0x31,0xdd,0x97,0xfb,0xf8,0xf1,0x8a,0x4d,0xbf,0xc3,0x57,0x50, + 0xc6,0x47,0xf4,0xc0,0x9b,0xa7,0x0,0x39,0x14,0x64,0x2,0xae,0x88,0x64,0xe3,0xa, + 0xa,0x1a,0xac,0xad,0xef,0x93,0x1,0x78,0xaf,0x35,0xd2,0x3b,0x4e,0x29,0xf5,0xcb, + 0x6a,0x9f,0xbc,0xf8,0x8,0x87,0xad,0xae,0x65,0x86,0x54,0xc2,0x70,0xa9,0xa1,0xe3, + 0x6f,0xab,0x6,0x73,0x8f,0xef,0x15,0xff,0x22,0x36,0x59,0xe1,0xfc,0x49,0xa5,0xf7, + 0x7e,0x6e,0x68,0x2d,0x91,0x2d,0xec,0x89,0x9b,0x5c,0x8d,0x37,0xc5,0x75,0x71,0x20, + 0xd1,0xd7,0x3b,0xc3,0x2a,0x42,0xf3,0xf3,0xa6,0xc7,0xe,0x1c,0x98,0xe6,0x89,0x3b, + 0x88,0x34,0x2e,0x1,0x41,0x70,0xfe,0xeb,0x95,0xbb,0x2b,0x3,0x93,0xe,0xa3,0xe2, + 0x50,0xb0,0x19,0xed,0xb6,0xdf,0xfd,0x1f,0x54,0x4a,0xe1,0xb9,0x69,0xb3,0xca,0xb7, + 0xc5,0x3,0x82,0xe4,0x78,0xd3,0x2e,0xaa,0xf7,0xc3,0xcf,0xb,0x62,0xd5,0x54,0x83, + 0x88,0x23,0x94,0x44,0x8b,0x82,0xad,0x4c,0xc0,0x47,0x36,0x87,0xca,0xd9,0xf1,0xec, + 0x4d,0xe,0x39,0xef,0x95,0xe0,0x37,0xbd,0xf,0x59,0xe9,0xc6,0x78,0x7c,0x61,0x76, + 0x86,0xf3,0x5f,0x84,0x5d,0xff,0x5,0x7a,0x9e,0x7f,0x98,0xac,0xd0,0xdf,0x35,0xe4, + 0x42,0xdb,0xba,0xbd,0xa9,0xfd,0xa4,0xcf,0xba,0xe3,0xfd,0xdb,0xb7,0xeb,0x96,0xdc, + 0x7b,0x3e,0x56,0x7f,0x94,0x64,0xf,0xab,0xfb,0x4a,0xaa,0xaa,0x12,0x7,0xc,0x49, + 0xb4,0x6a,0xdc,0x11,0x89,0x7,0x55,0xcf,0x1f,0xc7,0x72,0x34,0xff,0xae,0x5e,0x51, + 0x61,0xe6,0x5c,0x33,0x52,0x22,0x1,0xd5,0x41,0x46,0xf2,0x8c,0x76,0xc7,0x57,0xdf, + 0xbe,0xc9,0xe1,0x7e,0xdb,0xe6,0xb6,0x29,0xd5,0xc3,0xb7,0x4f,0x41,0xd6,0x49,0x79, + 0x96,0x98,0x7f,0xa9,0x3a,0x3b,0x19,0xcf,0xfa,0x77,0xfd,0x32,0x8d,0x29,0xf4,0x73, + 0x4d,0x80,0xce,0x2f,0xc0,0xb5,0x95,0xe6,0xa2,0xf0,0xc2,0xba,0x80,0x67,0xef,0xae, + 0x62,0xb9,0x43,0xdc,0x3,0x23,0x53,0x70,0x9,0xb1,0x63,0x12,0x1b,0x4f,0xc3,0x46, + 0x7c,0xc5,0xfb,0xc9,0xad,0xbc,0x67,0x73,0x59,0xcb,0x77,0x75,0x7c,0xde,0xff,0xda, + 0xce,0x38,0x74,0x5d,0x76,0x9f,0x74,0x81,0x3d,0x54,0x84,0x71,0x62,0xd6,0x69,0xc3, + 0xe,0x6b,0xe9,0xff,0x5f,0x7b,0x57,0x1,0x57,0xc5,0xf2,0xfd,0xf7,0x12,0xa2,0x88, + 0x80,0xdd,0x82,0x81,0xf5,0xec,0xc4,0xe2,0xa2,0x62,0x8b,0xa2,0xa2,0x62,0x11,0xb6, + 0x58,0xd8,0x22,0x2d,0x65,0xeb,0xf3,0xd9,0xad,0xcf,0x6e,0x9f,0x9d,0x60,0x77,0xe7, + 0x33,0xb1,0x9e,0xfd,0xb3,0x9,0x1,0xcf,0x7f,0xce,0xec,0x9d,0xcb,0xb2,0xde,0xe6, + 0xc2,0x5,0xff,0x2c,0x9f,0xc3,0xee,0xce,0x9d,0x9d,0x38,0xdf,0x33,0xe7,0x9c,0x99, + 0x9d,0x99,0x75,0xfc,0xb9,0xc8,0xe2,0xad,0xef,0x8b,0x20,0xb7,0x3f,0x6d,0x96,0xd8, + 0xbc,0xb0,0xa9,0x3b,0xa9,0x4e,0xdd,0x7a,0x75,0xaf,0x3f,0x2f,0x92,0x8,0x8f,0x3e, + 0x4e,0x71,0xf,0x38,0x7d,0x73,0x5f,0x91,0x9e,0x5d,0x92,0xff,0x34,0xa9,0xd3,0xdb, + 0x6a,0x65,0xdd,0xe8,0xb2,0xc6,0x1b,0x73,0x47,0xf7,0xf0,0xbd,0x10,0x76,0xf7,0x4e, + 0x48,0x9b,0xc0,0x11,0x27,0xdd,0xce,0x5a,0xdd,0xbd,0xf0,0x2e,0x4f,0xf7,0x66,0x2b, + 0x2f,0x5e,0xcd,0xeb,0x18,0x68,0x2d,0xdd,0xf4,0xf8,0xae,0x34,0x6e,0x72,0xb9,0xa8, + 0xd0,0x93,0x2e,0x9d,0xc6,0x56,0x2e,0xb2,0x35,0xa4,0x91,0x47,0x60,0x8f,0x3b,0x2f, + 0x43,0xed,0x6c,0xff,0xb8,0xfa,0xfe,0x5e,0xd3,0x80,0xa1,0x77,0x26,0x9d,0x74,0x19, + 0xb2,0xa4,0x5a,0xb5,0xb0,0x93,0x97,0xde,0x17,0x6a,0x56,0xa8,0xff,0xed,0xf8,0xca, + 0x5f,0xae,0x38,0x4,0x6c,0x1d,0x1e,0x51,0x27,0xb1,0x7b,0xe5,0x2f,0x41,0xf1,0x51, + 0x81,0x9b,0xf,0x3d,0x5d,0x69,0xbd,0xfb,0xc5,0x63,0xbf,0xa3,0xf5,0x37,0xae,0xa8, + 0xbd,0xb7,0x6a,0xfc,0x99,0xff,0x2e,0x34,0xda,0xd7,0x62,0x8e,0xd5,0xb0,0x2d,0xa5, + 0x6d,0x3f,0xd,0x1e,0x14,0xbb,0x7a,0x67,0xe4,0xf6,0xff,0xd,0xfd,0x91,0xd4,0xf7, + 0xc9,0xac,0xd8,0x46,0xb9,0x57,0xed,0x99,0xb2,0xd9,0xd4,0x65,0x6c,0x53,0x3f,0x37, + 0x63,0x9b,0xc3,0xdf,0x6e,0x94,0xab,0x12,0xd2,0x68,0xc5,0x8f,0xb2,0x97,0xdf,0xbc, + 0x59,0x57,0xbd,0xe4,0xae,0xe0,0x62,0x83,0xae,0xae,0x71,0x58,0x97,0x30,0x60,0xd2, + 0xe6,0x17,0xc7,0x5a,0xdd,0x77,0x5f,0x77,0x7d,0x5d,0xd4,0x88,0x2a,0xe5,0x4e,0x18, + 0x95,0x6e,0x6d,0xbf,0xa8,0x58,0xd4,0x90,0x3b,0xed,0xdf,0xf6,0x38,0x36,0xb9,0xef, + 0x87,0xe1,0x2b,0xac,0x5d,0xca,0xe6,0x2f,0xf5,0x79,0xc0,0x19,0xcb,0x26,0x33,0xc2, + 0xdb,0x9a,0x26,0x7c,0xec,0xee,0xe4,0x5c,0xcd,0xa1,0xee,0x4e,0xb0,0xce,0x31,0xdb, + 0x63,0x6c,0xde,0x80,0x56,0x6e,0x46,0x56,0xc5,0x4c,0xeb,0x34,0xa8,0x99,0x6b,0xfa, + 0xb0,0x5a,0x45,0x25,0xfb,0xf2,0xdd,0x73,0x5a,0x58,0xcd,0xe8,0xb0,0xb9,0x77,0xf1, + 0x9c,0x96,0xa5,0x36,0x7,0x44,0x7c,0x2c,0xd6,0xae,0x62,0xeb,0xf,0x57,0x97,0x3c, + 0xd9,0xc8,0x7d,0x7b,0x61,0xe6,0xe0,0x18,0x10,0x10,0xf0,0x22,0xc6,0xa5,0xca,0xb4, + 0x7d,0x5c,0x91,0xfd,0x8f,0x7d,0x9a,0x7f,0x9,0x5f,0xe8,0xbe,0xe6,0xe2,0xac,0xc6, + 0x73,0xff,0x77,0xe4,0xab,0x65,0xc3,0x8e,0x83,0x77,0xe7,0x5e,0x50,0x65,0x75,0xa0, + 0xd3,0xb3,0xdb,0x26,0xfb,0xc2,0x36,0xed,0x6a,0xb0,0x65,0x76,0x9b,0x4b,0x25,0xbd, + 0x87,0x7e,0x7d,0x68,0xfc,0xce,0xed,0x9f,0x2d,0x17,0x83,0xb6,0x3b,0x17,0xfa,0x32, + 0x34,0x20,0xba,0x1c,0xb4,0x72,0xf8,0x9c,0xeb,0x60,0xf5,0xaf,0x45,0x6b,0xbd,0x88, + 0x7e,0x12,0x7f,0xae,0xec,0xb7,0x98,0x9f,0xc9,0x8f,0x8b,0xef,0xdd,0xba,0xc0,0xa1, + 0xcb,0xf7,0xbb,0xee,0x3e,0x65,0x87,0xc5,0xb7,0xf,0x74,0xeb,0xe2,0x93,0xfb,0x5a, + 0xe1,0x9c,0x9c,0xdd,0xd6,0xce,0x7d,0xda,0xde,0xb0,0xf9,0xf9,0xc9,0xec,0xe0,0xc7, + 0x2a,0xc1,0x37,0xca,0x6c,0x2e,0xe4,0x38,0xd8,0x88,0xb,0xb6,0xe6,0x6a,0x7a,0x1c, + 0x79,0x1e,0xf9,0xa5,0xc9,0xd6,0x90,0x84,0x13,0x2b,0xa5,0x7e,0xff,0x55,0xe9,0xe1, + 0x1b,0x59,0xcb,0xfa,0xc0,0x22,0xff,0xba,0xdb,0x9f,0xce,0xee,0x56,0x63,0x97,0x59, + 0xe2,0xa7,0xb8,0x27,0xd6,0xe5,0x83,0xbe,0xdc,0xba,0xf9,0xda,0xad,0xf4,0x9c,0xe0, + 0x92,0x4d,0x9a,0xcc,0xad,0xd1,0x7b,0xaf,0x5d,0x97,0x5,0x25,0xb6,0xc3,0xac,0xaa, + 0x39,0xfb,0xe,0xeb,0x5e,0xf1,0x62,0xf4,0x4e,0xcb,0xfe,0x63,0xdd,0x87,0x7f,0xee, + 0x51,0x2b,0xd4,0xa7,0xe6,0x3,0xab,0xcd,0xa1,0x73,0xca,0x81,0xcd,0xc9,0xf2,0x81, + 0xeb,0xdf,0x3b,0x54,0xe0,0x22,0xcc,0x48,0x33,0x3d,0xbd,0x63,0xc8,0x80,0x98,0xdd, + 0x77,0xdd,0xff,0x18,0x59,0xcd,0x34,0xe4,0x9a,0x67,0xf5,0x9f,0x9f,0xc6,0xf7,0xac, + 0xba,0xe7,0xd3,0x5,0xe3,0xc4,0xc1,0x3f,0x3d,0xa5,0x47,0xbb,0x2f,0xfa,0x5f,0xf2, + 0xb4,0x72,0xeb,0x6d,0x73,0xbe,0x1d,0x55,0x7e,0xf5,0xaa,0xbd,0xfb,0x8b,0xf9,0xd, + 0xf2,0x28,0xd1,0xd3,0x66,0xe5,0xe0,0x6d,0xd5,0xcf,0x5,0x25,0x4c,0x36,0xfd,0xd6, + 0xab,0xff,0xf5,0x4e,0xd3,0x3e,0x1d,0xbc,0xd1,0xef,0xf3,0x9b,0xc2,0x8f,0x93,0x47, + 0xfc,0x30,0xaa,0x34,0xdd,0x71,0xf1,0xe3,0x2f,0x9b,0xdb,0xe4,0x6f,0x3c,0x79,0x4b, + 0x82,0xf9,0xae,0xaa,0x95,0x6b,0x1c,0x68,0x90,0xb8,0x7b,0x6d,0x93,0x50,0x5f,0xe9, + 0xf5,0x40,0x8b,0xeb,0xfe,0x26,0x71,0x33,0xe6,0xfb,0xdb,0x9d,0xaa,0x59,0x3e,0xd0, + 0x21,0x60,0x82,0x4f,0xc5,0x2,0xab,0xcd,0xb9,0x88,0x4a,0x39,0xdd,0xb,0xfc,0x2f, + 0xba,0xf8,0x64,0x97,0x2d,0xb,0xab,0xff,0xdd,0xd5,0xad,0x57,0xc7,0x39,0x2f,0x7c, + 0x66,0xbc,0xec,0x32,0xed,0xc5,0xab,0x5e,0xdb,0x9b,0x75,0x5e,0xf7,0x3e,0xc7,0xfa, + 0xeb,0xde,0xcf,0xfc,0x8e,0x1f,0x5a,0x77,0xe1,0x61,0x50,0x5d,0xc7,0x77,0x52,0x6e, + 0xdb,0xd5,0xa9,0xe,0xd,0xea,0x8c,0xb1,0xf6,0x9f,0xec,0xe8,0x66,0x32,0xe5,0x90, + 0xd5,0xc6,0xa9,0x9d,0xda,0xc,0x1e,0x54,0x36,0x57,0x64,0x45,0xe9,0xf5,0xe9,0xb6, + 0xee,0x97,0x8e,0xe4,0x68,0x66,0xfa,0x61,0x4a,0x6c,0xff,0x64,0x87,0x71,0x49,0xcd, + 0x73,0x17,0xbe,0xd1,0xaa,0x63,0xc3,0xf3,0x87,0xcf,0xe4,0x7d,0xb2,0xda,0xa9,0xe2, + 0x54,0xce,0xd3,0xd1,0xba,0xf7,0x84,0x47,0xe3,0xce,0xe7,0x72,0x76,0xfe,0x76,0x24, + 0x3e,0x6f,0xd4,0x76,0x7f,0xa8,0xbf,0xc2,0xad,0xda,0x79,0xa3,0xc2,0x4f,0x67,0xfe, + 0x97,0xf7,0x5b,0x65,0x13,0xe3,0x51,0x3b,0x6b,0xb4,0xf9,0x1a,0xb6,0xd7,0xe7,0x58, + 0xa7,0xce,0x45,0xcb,0x9a,0xe7,0xac,0x6c,0x14,0x97,0xfb,0xaf,0xb6,0xe6,0x56,0x4d, + 0x93,0xba,0x57,0xd8,0x9f,0xaf,0xe8,0x29,0x69,0x4b,0x6b,0x9b,0x95,0xc7,0x1f,0xde, + 0xed,0xe1,0xb7,0x79,0x66,0xdf,0x8a,0x26,0x4d,0x7d,0x9c,0x9b,0x1b,0x7f,0x8f,0x8b, + 0xbb,0x79,0x38,0xa,0x2,0x7c,0xdb,0xf,0xb4,0x8e,0x29,0x55,0x62,0x59,0xbb,0xf2, + 0x7b,0xe7,0xdb,0x86,0x3c,0x6f,0x59,0xa2,0xe9,0x13,0x9b,0xb0,0xee,0x3,0x8f,0x1e, + 0x9,0x3c,0x61,0xdf,0x70,0xff,0xba,0xf0,0x52,0x5,0x12,0x93,0xcf,0x96,0xaa,0x1a, + 0x7e,0xe1,0x63,0xf5,0x23,0x2e,0x75,0xdf,0x4c,0xf9,0x48,0x5c,0x17,0x57,0xae,0xc6, + 0xa1,0xf0,0xa2,0x8f,0x6b,0x4e,0xd8,0xfe,0xb0,0xb0,0x51,0xc8,0x31,0xf8,0x30,0xf2, + 0xe6,0xd7,0xea,0x47,0x1c,0x77,0x3c,0xf,0xf6,0x29,0xe8,0xde,0xea,0xc7,0xbb,0xfc, + 0x2b,0x46,0x9a,0x96,0xfe,0x34,0xb0,0xd5,0xd2,0x2,0xe6,0xd6,0x96,0xd1,0xf,0x2c, + 0x63,0xaf,0xbd,0xdd,0xdf,0xed,0x66,0x89,0x61,0xa7,0x7,0xbd,0x9f,0xde,0xee,0xa6, + 0x83,0xf1,0xe7,0x90,0x1a,0xc6,0x25,0x6c,0xa5,0xc1,0x9,0xc6,0x97,0x2f,0x5f,0x1e, + 0xfb,0x29,0xa6,0x69,0x55,0x8b,0x78,0x87,0xe4,0x9d,0x96,0x6e,0xb6,0x9e,0xc3,0x3c, + 0xf2,0x36,0xa9,0x58,0xcd,0x67,0x8d,0x7d,0x6c,0x5,0x3b,0xdb,0x52,0x25,0xae,0xbf, + 0x2e,0x7b,0x2c,0xf4,0xa4,0x8f,0x97,0x9b,0x49,0x70,0xc9,0x98,0x1f,0xdf,0x16,0x1e, + 0x5b,0x1b,0x17,0x5,0x1d,0xa1,0x9c,0x34,0xe8,0x78,0x91,0xe2,0xb3,0x73,0x79,0x5, + 0x8f,0x4a,0x5c,0xd4,0x39,0x78,0x4b,0xab,0x19,0x73,0x9c,0x4e,0xec,0xa,0x2b,0x76, + 0xa5,0x51,0xcf,0x39,0x81,0x1b,0xbe,0x7c,0xdc,0xf5,0xbd,0x9a,0xc5,0xca,0xf8,0xa6, + 0x5c,0x82,0x64,0x45,0x7b,0x93,0x65,0x95,0xc2,0x9a,0x86,0x76,0xfa,0x67,0xc6,0xa5, + 0x0,0xe3,0x64,0xef,0xeb,0xf3,0xa5,0x4f,0x6d,0x1a,0xef,0xb6,0xce,0x37,0x2b,0xde, + 0xf2,0xe5,0x89,0x9d,0x39,0x83,0x87,0x85,0x35,0x6e,0x9b,0x70,0xb0,0xd5,0x96,0x6d, + 0xa7,0xce,0x4a,0x57,0x3c,0x8e,0x28,0x13,0xf7,0x31,0x8,0xfc,0xe,0xe,0xb8,0xb1, + 0xf4,0xbf,0x71,0x9b,0xa6,0xda,0xdc,0xb2,0x39,0x53,0xb6,0xb2,0xcb,0x42,0xab,0x65, + 0x43,0x3e,0xba,0x54,0x2a,0x52,0x48,0xe2,0x62,0xbe,0xa8,0xdb,0x69,0x9f,0x7c,0x1e, + 0x4f,0xa4,0x37,0x6b,0xac,0x69,0xd2,0xa7,0xc1,0xb3,0xfe,0xd2,0xb8,0x65,0x63,0x22, + 0xbe,0x7,0x5a,0x55,0xeb,0xd3,0x70,0x6b,0xdc,0xf4,0x86,0x6d,0xab,0x71,0xa3,0xf3, + 0xae,0xb9,0xf6,0x3a,0xc9,0x25,0x77,0x8f,0x2f,0xe3,0x4e,0xf6,0xc9,0x59,0xfb,0x42, + 0x78,0xfd,0xc8,0xa5,0x49,0xfe,0x1d,0x2b,0x98,0x9c,0x38,0x39,0xa7,0xbc,0x71,0x3, + 0xfb,0x79,0xa1,0x49,0xf3,0x7d,0x3e,0x6e,0x3c,0x9e,0x8b,0x8b,0x9c,0xfc,0x34,0x67, + 0x91,0x92,0xae,0xc3,0x2d,0xa2,0x57,0xd7,0xb0,0x30,0x1b,0xd2,0x6e,0xc0,0x12,0xb3, + 0xef,0x4d,0xde,0xbf,0xda,0xd4,0x75,0xff,0x89,0x1e,0x5c,0xdd,0x60,0xef,0xf2,0xe0, + 0xb3,0xba,0xdb,0xb6,0x62,0x15,0xb8,0x32,0xb3,0x2a,0xce,0x9,0x3a,0x10,0xd6,0xae, + 0xaa,0x79,0xc8,0xe6,0xfc,0x5c,0xbb,0x19,0x5,0x9e,0x3e,0x3d,0x72,0xa7,0x74,0x91, + 0x93,0x2d,0xae,0x78,0xef,0xaf,0x51,0xb9,0x60,0xd7,0xa2,0xc6,0x3e,0x4e,0x57,0x6c, + 0xa6,0x77,0xb0,0x5f,0xbd,0xf6,0x83,0x55,0x85,0x9a,0xa3,0x76,0x74,0xee,0xe0,0x77, + 0xc6,0xf5,0x73,0xcf,0xfc,0x75,0xba,0xe,0x92,0xd8,0xbb,0x16,0x8a,0xd8,0x6d,0x19, + 0xb2,0xc5,0xd7,0xda,0x61,0x19,0x37,0xc5,0x3e,0x22,0xb4,0x4e,0xa7,0x3,0x66,0x6f, + 0x7f,0xae,0x1c,0x7f,0x7f,0x88,0xdd,0xd1,0x56,0x76,0x6b,0x2a,0xf7,0xe1,0x22,0x4f, + 0x70,0x5f,0xaa,0xf4,0xda,0x57,0xe5,0x56,0x3d,0x1b,0xbf,0xf7,0xbb,0x5c,0x1e,0x5c, + 0x8c,0x68,0xff,0xe2,0xd5,0xdb,0xe,0x5e,0xab,0xb6,0x6f,0xaf,0x16,0xd7,0x26,0xaf, + 0x53,0x57,0x73,0xae,0x76,0xe,0xcf,0x9f,0xf6,0x5f,0x66,0xe6,0x71,0x4d,0xfc,0xde, + 0xbc,0xe9,0xa2,0xfb,0x55,0x5b,0x2f,0xb2,0xd8,0xef,0x6b,0x39,0xb3,0xcf,0x96,0xb5, + 0x79,0xf2,0x77,0x7d,0x65,0xd4,0xbf,0x6c,0x1b,0x87,0xef,0x77,0x37,0x27,0x4f,0x32, + 0x6b,0xf5,0xb3,0x46,0xa7,0x71,0x46,0xd1,0xab,0x93,0x82,0xeb,0x76,0xda,0xbe,0xf7, + 0x4b,0x89,0x84,0x93,0x2d,0xba,0x1e,0xe2,0x2c,0x5f,0x9a,0xb5,0x2e,0x32,0xbe,0x77, + 0xe9,0x27,0x89,0xd,0xc3,0xcc,0x2a,0x70,0xde,0x26,0x2b,0xdd,0xfc,0x96,0x3e,0xfc, + 0x39,0x38,0x6a,0xc3,0xc1,0xfc,0xad,0xde,0x57,0x3b,0x74,0xb9,0xe7,0x8c,0x25,0xad, + 0xf2,0x5c,0x31,0xdd,0x28,0xa9,0x91,0xe0,0x7c,0xca,0x63,0xd4,0x50,0xf3,0x86,0xf6, + 0x12,0x6b,0x5f,0x93,0x3f,0x57,0x3e,0xd,0xb,0x96,0x6d,0x2e,0x52,0xd8,0x78,0x8a, + 0xfd,0xbd,0x57,0x77,0xef,0xfd,0xeb,0xb6,0x62,0x96,0xbd,0x6b,0xb9,0x65,0xa6,0x31, + 0x31,0x2e,0x27,0x7d,0x8c,0x6c,0x9f,0x9d,0x2b,0xf4,0xa1,0x63,0x95,0xc7,0xf5,0x66, + 0x34,0x19,0xb5,0xd1,0xc9,0x5e,0xe2,0x62,0x9c,0x33,0x9f,0x11,0xf1,0xcf,0x82,0xa7, + 0x4b,0x6e,0xe5,0x3c,0x51,0x24,0x6e,0xc2,0x94,0x52,0x2c,0x6a,0xf4,0xf1,0xd5,0x11, + 0xa4,0x70,0xb6,0xf,0x66,0x1c,0xf4,0x5f,0x7f,0xb3,0x5b,0xe2,0x77,0x4b,0x4b,0xaf, + 0x35,0x95,0xfb,0x71,0xa7,0x3b,0x2c,0xdd,0x16,0xfb,0xae,0x64,0x89,0x13,0xcd,0x6e, + 0xf7,0xc0,0xed,0x4c,0x9e,0xae,0xae,0x5c,0x95,0x8b,0x1c,0x6b,0x61,0x69,0xb9,0xe0, + 0x70,0x6e,0xcb,0xae,0x39,0x7,0x49,0x9c,0xb8,0x97,0x95,0xaf,0x3c,0x75,0x71,0x37, + 0x99,0xe7,0xf5,0xc7,0xc4,0x4a,0xde,0x83,0x24,0xae,0xd,0xac,0xed,0x7b,0x1f,0xf3, + 0xf7,0x3d,0x78,0xf8,0xa9,0xcb,0x3a,0x9f,0x42,0xc1,0xa1,0xcd,0xb,0x96,0xb1,0xf8, + 0x60,0x35,0xaf,0x2b,0x67,0x7f,0xf9,0x65,0x8c,0x8b,0xfb,0xbc,0xcb,0xa6,0x35,0xce, + 0xdb,0xcc,0x4e,0x7c,0x79,0xad,0xd2,0x86,0x65,0xf9,0xee,0x7,0x74,0x8b,0x4a,0x18, + 0xf8,0xf8,0xd5,0x95,0x6,0xdf,0xae,0x79,0xd,0xdf,0x51,0xe8,0x7e,0xe5,0x16,0x7e, + 0x5e,0xfb,0x7b,0xb4,0xef,0xf5,0x47,0xb7,0xad,0xd7,0x12,0xa7,0x3a,0x95,0xf9,0x38, + 0x7e,0x5a,0x53,0xb7,0xfb,0x51,0x1b,0x73,0x7f,0xd,0x7f,0x3d,0xec,0x86,0xff,0xd5, + 0xf3,0xd5,0xea,0xbd,0x91,0xfc,0x15,0xef,0x95,0x14,0x92,0x7b,0x48,0xd9,0xee,0xbd, + 0xbc,0xf6,0x77,0xcf,0x3d,0x7c,0xfe,0x9a,0xa3,0x3b,0x1f,0x58,0xfc,0x5d,0xb5,0x90, + 0x51,0x53,0x23,0xdb,0xf7,0xcb,0x66,0x5b,0xbc,0xab,0x6e,0xb1,0xf8,0xac,0xdd,0x5e, + 0x6e,0xd8,0x97,0xda,0x27,0xca,0x49,0x57,0x8e,0xfc,0xd9,0xe9,0xd2,0xbb,0x27,0xbd, + 0x8f,0x36,0xfc,0xb4,0xa4,0xf9,0xab,0x4b,0xd7,0x13,0x57,0x1e,0xfe,0xd2,0xf6,0x60, + 0xf2,0xff,0xe2,0x8e,0x2d,0xdc,0x95,0xbc,0xf3,0xfe,0x96,0xf0,0x7d,0x6d,0xaf,0xbb, + 0xdf,0x1b,0x1e,0xf1,0x6f,0xa1,0x69,0x7f,0x5b,0xb6,0xa,0x7f,0xb1,0xf3,0xbc,0xd5, + 0xbc,0xf6,0x5c,0x81,0x66,0x81,0xdb,0xab,0x25,0xde,0x7f,0xb7,0xe3,0x5d,0xbf,0xe6, + 0xc9,0x7f,0xbf,0xf8,0x1a,0x79,0x39,0x62,0x75,0xce,0xbf,0xfc,0x1f,0xc8,0xa3,0xdf, + 0xbe,0xe3,0xb3,0xa0,0x62,0x75,0xd3,0x84,0x90,0xb9,0x39,0x83,0xdb,0xbf,0xb0,0xea, + 0x79,0x71,0x9b,0xf5,0x97,0x41,0xcd,0xe7,0xdc,0xf6,0x34,0x9f,0xde,0xde,0xb3,0xf4, + 0xdc,0x8e,0x4b,0x4f,0xef,0x91,0x97,0x6d,0xcb,0xb6,0x8a,0x73,0x6c,0x72,0x6,0x14, + 0x58,0xe5,0xf6,0xc5,0x38,0xfe,0xef,0xfe,0x93,0x6a,0x8e,0x4e,0x1e,0xfc,0x25,0xe4, + 0x51,0x8e,0x28,0xf8,0x71,0x37,0xaa,0x9a,0x87,0xd7,0x3e,0x3e,0x66,0xdb,0x0,0xf7, + 0xfc,0x9f,0xbe,0xb6,0x7b,0x9,0xb,0xe7,0x26,0x39,0x6e,0x2c,0x14,0xed,0x72,0x4e, + 0x5a,0xc0,0x24,0xb9,0x53,0xfb,0xfa,0x31,0x83,0x26,0x3c,0x9a,0xff,0xfd,0x47,0xd4, + 0xcf,0x18,0xb3,0xdd,0xe6,0xd6,0xfe,0x23,0xf6,0xe5,0x6d,0xe9,0xb7,0xf7,0x5a,0xb7, + 0x7b,0x4f,0x16,0x3f,0x6a,0x69,0xd7,0xa4,0x7a,0xd9,0xfc,0xe7,0xb7,0x84,0x24,0xad, + 0xae,0xd7,0xcd,0x22,0xe1,0x5f,0xa3,0x8a,0xff,0xcd,0x3e,0x61,0x64,0xdb,0xbd,0xf8, + 0x43,0x4b,0xeb,0x5b,0x77,0xd6,0xe4,0xef,0xf0,0x69,0x79,0x7e,0x8c,0xbc,0xc0,0xb7, + 0x83,0xdb,0x87,0xf0,0x47,0x3,0xdd,0x86,0x37,0x39,0x30,0x76,0xd3,0xc3,0x6e,0x8d, + 0x12,0x42,0x5c,0x7a,0x7,0x3f,0xb5,0x95,0x96,0xed,0x35,0xef,0xde,0xf1,0xd5,0xb7, + 0xa6,0xe4,0x4b,0x8,0x59,0xd3,0x27,0x78,0xf5,0xdc,0x27,0xb1,0x89,0xce,0x5f,0x2f, + 0xb5,0x2c,0xff,0xd4,0xba,0x9c,0x45,0xad,0xbd,0x7f,0xcd,0xe,0xae,0xb9,0xd7,0xa9, + 0x66,0x72,0xad,0x7,0x17,0xf7,0x6f,0xf3,0xff,0xd1,0x2d,0xf,0x96,0xb3,0xaf,0xcb, + 0xb9,0x91,0x26,0xe7,0x62,0xeb,0xcf,0x2c,0x96,0x30,0x7d,0x84,0x7d,0x95,0x2f,0xaf, + 0x8c,0x93,0xbc,0xda,0xef,0x1e,0x56,0x71,0x41,0x70,0xc2,0xd9,0xba,0xf,0xfe,0x71, + 0xbe,0xb7,0x7a,0x4f,0xd1,0x5b,0x8f,0x5d,0x1e,0xf4,0xbf,0x37,0xbc,0xe0,0x4d,0xf7, + 0x75,0xfb,0xe6,0x6f,0x3a,0xda,0xec,0x81,0xc5,0x8f,0x46,0x16,0xb7,0x7b,0x5a,0x78, + 0xff,0x31,0xed,0x85,0x59,0xc4,0x30,0xc9,0x3c,0xef,0x8d,0xd5,0x1f,0xd8,0x4b,0x73, + 0x4b,0x2,0x6d,0xba,0x4d,0x9e,0x9a,0xd0,0x7c,0xcb,0xad,0x7a,0x27,0x87,0xed,0xe8, + 0xfc,0xe0,0xc2,0xad,0x11,0xe,0x3b,0x43,0x23,0x6,0x26,0x9e,0x8e,0xfd,0x63,0x33, + 0x89,0x59,0x8e,0xbb,0x50,0xf3,0xca,0x48,0xb0,0x8d,0xb8,0x9f,0x3,0x5a,0x4f,0x5c, + 0x7a,0xd5,0xca,0x6e,0x65,0xbd,0x83,0x4d,0x1e,0xcc,0x2c,0xd2,0x76,0xe9,0xc3,0x28, + 0xdb,0x8b,0xfd,0x37,0x7e,0xe8,0xea,0xdd,0xeb,0xbf,0x31,0xff,0x3d,0x18,0x58,0xda, + 0x68,0xc0,0xc6,0xa0,0x9b,0x27,0xff,0xbb,0xf2,0xfd,0xcf,0x5a,0x24,0xf,0xf3,0x42, + 0x9c,0xd7,0xcc,0xaf,0xaf,0x9a,0x6d,0x2f,0xbd,0xa8,0xc6,0xfd,0x9d,0xe1,0x6d,0xed, + 0xf6,0x15,0x1d,0xe8,0x37,0xff,0x7e,0x37,0x97,0xa5,0x5e,0x15,0xa7,0xee,0xfc,0x51, + 0xb0,0xeb,0x17,0x63,0xd3,0x99,0x46,0xf3,0xc6,0x2c,0x8b,0x2a,0x31,0xdc,0xb5,0xdf, + 0x52,0xaf,0x7d,0xf5,0x97,0xd,0x37,0xcd,0x35,0x6f,0x74,0xf9,0xd0,0x9a,0x6b,0xda, + 0x7,0xda,0x8e,0xcc,0x6d,0x6b,0xf1,0x25,0xf2,0x4f,0xff,0x4e,0x9b,0x72,0x95,0x5f, + 0x37,0x62,0xf7,0xdc,0xb9,0x9e,0x6d,0x17,0x3b,0xce,0xab,0xde,0x76,0xb1,0x45,0x8e, + 0xaf,0x36,0xd1,0x26,0x2b,0xbd,0x2f,0x7f,0xba,0x58,0xd8,0xf7,0x91,0xcf,0x81,0x33, + 0x9,0xb5,0xed,0x3c,0xc2,0x96,0xbf,0xe8,0xb7,0xa2,0xfb,0xf9,0xe1,0xdd,0xfa,0xe6, + 0x6b,0x5f,0x29,0xdf,0x94,0x4b,0x5f,0x2f,0x2c,0xb7,0x38,0x23,0x89,0xea,0x69,0x2b, + 0x9d,0x73,0xd3,0x28,0xe7,0xc9,0x57,0x66,0x11,0xb5,0x1c,0x3e,0xce,0xd,0xf4,0x36, + 0xe,0xcf,0x59,0x80,0x8b,0x9a,0x5e,0xe3,0x52,0x50,0xf1,0xbd,0x2d,0x3,0x6d,0xb7, + 0x70,0x39,0xa7,0x27,0xfd,0x3b,0xe7,0xbc,0x49,0x95,0x16,0x73,0x3b,0xde,0xdb,0x18, + 0x81,0x2c,0xb8,0x95,0xcb,0xe9,0xa5,0x53,0xd5,0xb9,0xd2,0x77,0x97,0x73,0xdb,0x5, + 0xd5,0xec,0x97,0xd4,0x34,0x57,0xc3,0xf0,0x32,0xdd,0xe7,0x5e,0x75,0xb9,0x5f,0xbd, + 0xfb,0xd2,0xf9,0xd7,0xdc,0xdd,0xae,0xe,0x2d,0xf3,0x3e,0x50,0x12,0xee,0x36,0x75, + 0xdf,0x9a,0x98,0x7d,0xde,0xe7,0x5f,0xed,0xcf,0x3b,0x58,0x32,0x6f,0x72,0xd2,0xbf, + 0xd1,0xdd,0x1c,0x37,0xcd,0x6d,0x7b,0x29,0xd1,0x62,0x9d,0xc7,0xc9,0x7f,0x7,0xda, + 0xed,0xef,0xbe,0xd9,0x64,0x4d,0xb3,0x1f,0x3,0x2a,0x84,0xe6,0x59,0x97,0x27,0xff, + 0x5e,0x52,0x25,0x67,0xae,0x40,0xf3,0x40,0xcf,0x8d,0xcf,0xb7,0x7b,0xcd,0x94,0x3c, + 0x68,0xd3,0x20,0x61,0xdf,0xf2,0x77,0x91,0xbd,0xde,0xd6,0xfb,0x63,0xdb,0xd1,0xd5, + 0x8d,0x47,0x56,0xb,0xfb,0xbe,0xac,0xbc,0xf9,0xf0,0x93,0xe5,0xca,0x7e,0xbc,0x5b, + 0x39,0x41,0xe2,0x51,0x2a,0xda,0x67,0xc6,0xd7,0x57,0xb5,0xf7,0x95,0xf8,0xaf,0x88, + 0x4f,0xa5,0xb9,0xed,0x4e,0x8c,0xd8,0xbd,0xe4,0xbe,0x71,0xc4,0x8f,0xb8,0x5c,0x7f, + 0x7b,0x9c,0xde,0xe7,0xf5,0xc7,0xd6,0x9e,0xe5,0xa5,0xab,0xaa,0x6,0xf7,0x3d,0x6f, + 0xd3,0x2d,0x24,0xdc,0x7f,0xce,0x70,0x8b,0x7b,0x75,0xbe,0x7a,0x57,0xbd,0xb9,0xa3, + 0xc0,0x87,0x3c,0xa6,0x7,0xcf,0xbc,0x3e,0xf9,0xb6,0xfb,0xae,0xe1,0xb7,0x1a,0x26, + 0x48,0x2a,0x71,0xd3,0x96,0xdf,0x2e,0x7c,0xe7,0xd3,0x65,0x9f,0x72,0xe6,0x3,0x9a, + 0x3b,0x48,0x1f,0x8e,0xde,0xdf,0xe3,0x4a,0x6c,0xe5,0x16,0xe7,0xa,0xdf,0x6c,0xb9, + 0xad,0x65,0x62,0xed,0xd5,0x81,0x7,0x6e,0xf8,0xd5,0x5e,0x3d,0xe7,0x45,0x1e,0x7, + 0xe9,0xeb,0x56,0xb,0x86,0xb4,0x1d,0xe2,0x30,0xbc,0x95,0x1d,0xa6,0x13,0xde,0xa4, + 0xa5,0xc7,0x95,0x61,0x2e,0xe5,0xa5,0x5,0xee,0xae,0x9f,0x59,0xfc,0xa6,0xc3,0x8e, + 0xba,0x5f,0x8c,0x43,0xc6,0x48,0x22,0xa6,0x27,0x79,0x95,0xb9,0xe9,0xd2,0x75,0xd7, + 0xfc,0x88,0x4b,0xab,0xfa,0xde,0x1b,0xde,0x6d,0x92,0x9f,0x97,0x57,0xc5,0x66,0xe, + 0xef,0xeb,0xb5,0xbf,0xfc,0xf1,0xdc,0xca,0x66,0x4b,0xb8,0x8a,0x5,0x13,0x3e,0xbc, + 0xd9,0x6f,0x3b,0xcc,0xed,0xbc,0xed,0xfc,0x5,0xae,0xcf,0x5c,0x7a,0x78,0x7e,0x59, + 0xe9,0x77,0xa5,0xc1,0x95,0xf7,0xfb,0xe7,0xd4,0x2e,0x58,0xe4,0x8f,0x58,0xa2,0xbd, + 0xd6,0x97,0x7c,0xf5,0xe3,0x6d,0xf3,0xdb,0x5,0x8e,0xac,0xf,0x28,0xbd,0x85,0x5b, + 0xdc,0x2f,0x7a,0xd8,0xb3,0xe4,0xff,0x42,0xcc,0x8c,0xae,0x96,0xbc,0x30,0xb7,0x63, + 0xbd,0xf7,0xfb,0x4e,0x8e,0xd8,0x7d,0xe3,0xc1,0x1f,0x7b,0x9c,0x13,0x3f,0x9e,0x1c, + 0x1e,0x7e,0x7d,0xc7,0xea,0x13,0xe5,0xa0,0x70,0xd4,0xb7,0x75,0x7b,0xae,0xe,0x5d, + 0x9c,0xe4,0x78,0x69,0x96,0x64,0x51,0x21,0xc7,0x45,0xd3,0xc7,0x36,0xb4,0xb7,0xa8, + 0x3f,0xf1,0xb3,0xa5,0xfb,0xbe,0x8b,0x77,0x7e,0xee,0xed,0x10,0x68,0x7b,0xd9,0xb4, + 0xc8,0xf6,0x82,0x1d,0x4a,0x96,0x88,0x30,0xbe,0x96,0xd4,0xd4,0xe7,0x45,0x9c,0xf5, + 0x6b,0x23,0xfb,0xd2,0x31,0xd6,0xa6,0x8b,0x72,0x8f,0x8f,0x48,0x5e,0x3a,0xcb,0x28, + 0x21,0x64,0x6b,0xcd,0xe0,0x97,0x17,0x17,0xde,0xdc,0xb4,0x61,0x45,0xc3,0xde,0x1, + 0xa3,0x7c,0x2a,0x16,0x3b,0xe2,0x3a,0xa1,0x5e,0x81,0x2d,0xc9,0x7f,0x37,0xb,0xb4, + 0x1d,0x64,0x6d,0xdd,0x8c,0xe8,0xe1,0x9e,0xd1,0x5b,0x3a,0x36,0x7f,0xde,0xef,0xc9, + 0x90,0x9f,0xef,0x5b,0xe7,0x36,0xaa,0xd6,0xe3,0x9f,0xb5,0xed,0xfb,0x90,0x98,0x96, + 0x9,0xd6,0xc7,0x8a,0x7c,0xb0,0x21,0x3c,0xb0,0xeb,0x51,0xea,0xe1,0x71,0x2f,0x7b, + 0x2f,0xef,0xe4,0xce,0xa5,0x89,0x98,0x2f,0xe3,0x7c,0x36,0x7a,0xcf,0x3b,0x71,0x69, + 0x7f,0x5e,0x22,0xd0,0x57,0x4c,0x7d,0x36,0x56,0x2a,0xf0,0xd6,0xc8,0x89,0x14,0xb3, + 0xe2,0x16,0xe3,0x46,0xf6,0x4e,0x79,0x3b,0x55,0x90,0xc6,0x98,0x10,0x2d,0xcc,0x79, + 0x87,0x24,0x5,0xa3,0xbd,0x28,0xe4,0x1d,0xce,0x5f,0xe4,0xf0,0x9e,0xca,0x5f,0x98, + 0x13,0x51,0xa4,0x9b,0x35,0x6d,0x76,0xfe,0x62,0xdc,0x81,0xb3,0xbf,0xd5,0xd8,0x7b, + 0x7e,0x92,0x63,0x95,0x52,0xb3,0x13,0xbf,0x70,0xf,0xdb,0x3b,0x9a,0x45,0xde,0xb7, + 0xa5,0x1b,0x3b,0x99,0x49,0xbd,0x23,0xf8,0x27,0x2a,0xdd,0x2a,0x90,0x40,0xf7,0x74, + 0x6a,0x7c,0xab,0x44,0x42,0x8,0x58,0x15,0xbf,0x58,0xf0,0x4,0x17,0xe9,0x70,0xba, + 0x3c,0xee,0xcd,0xd6,0xa6,0x45,0x7,0xa7,0xed,0xcd,0x3c,0x27,0x57,0xc4,0xbd,0xd9, + 0x8,0xd9,0xca,0xf6,0x6b,0xc3,0xc3,0xd1,0x84,0x4b,0xc7,0xc3,0x5,0x7e,0x25,0xf2, + 0xdf,0x85,0x3,0x31,0x29,0x7e,0x16,0x7e,0x21,0x8c,0x1b,0x1c,0xfc,0x2b,0x9,0xd3, + 0x98,0x35,0xb,0x60,0xe8,0x50,0x80,0xd6,0xad,0x1,0xf0,0x9a,0x11,0xde,0x63,0x1a, + 0x7,0xf,0x92,0x7f,0x90,0x42,0x78,0x2f,0x4c,0x83,0x3d,0x8f,0x65,0xa8,0x45,0xc2, + 0x18,0xb1,0x34,0x5c,0x4,0x61,0x48,0x98,0x86,0xb2,0xe7,0xcf,0xc0,0x50,0x98,0x74, + 0xf0,0xd7,0xe7,0x85,0xe1,0xea,0x9e,0x67,0x24,0x7e,0x9e,0x91,0xf8,0x79,0x71,0x1a, + 0x8c,0xf0,0xd9,0x87,0xf,0xf9,0xfa,0xa,0x79,0x8f,0xf7,0x18,0x2e,0xc6,0x41,0xc8, + 0x47,0x9e,0x77,0x2e,0x34,0x2f,0x8c,0x2b,0x26,0xc,0x57,0xf4,0xec,0xaf,0xfc,0x77, + 0x49,0xc5,0x7b,0x46,0x8a,0x9e,0x55,0xc6,0x7f,0x26,0x47,0xca,0xe,0x75,0xfc,0x17, + 0x3f,0x2f,0x96,0x41,0x4d,0xf8,0x2f,0x7c,0x56,0x2c,0x83,0x42,0xbe,0x89,0xf9,0x8f, + 0xe1,0x42,0xfe,0xe3,0xb5,0x58,0xfe,0x84,0x69,0x88,0x9,0xc3,0xc5,0xbc,0x67,0xf2, + 0xac,0x88,0xf,0x62,0xc2,0x70,0x75,0xfc,0x27,0x1,0x70,0xdc,0xc,0x20,0xd8,0x98, + 0xfc,0x22,0x49,0x4d,0xc1,0x84,0xa2,0x49,0x78,0x30,0xf9,0x9d,0xb,0x22,0x34,0x86, + 0x90,0x97,0xec,0x37,0x63,0xfe,0x39,0xd4,0x33,0x5,0x8,0xe1,0x99,0xe9,0x99,0x39, + 0x39,0x54,0x21,0xa6,0xef,0x43,0x91,0xde,0x51,0xad,0x7f,0xb4,0xd5,0x43,0xea,0xf4, + 0x91,0x36,0x7a,0x49,0x9d,0x7e,0x52,0xa7,0xa7,0xd8,0xf3,0xe2,0xb6,0xc2,0xd2,0x64, + 0xcf,0x8b,0x75,0x96,0x2a,0xbd,0xc3,0xe2,0xf5,0x5d,0xa0,0x5a,0xff,0x9,0x7f,0x57, + 0xa7,0xc7,0x36,0x93,0xdf,0xe7,0x3e,0x4c,0x79,0x46,0xac,0xcf,0xc4,0xbf,0x6b,0xa2, + 0x17,0xf1,0x19,0x55,0xfa,0x51,0xf8,0xbb,0xaa,0xf4,0xc4,0x6d,0x5d,0xd8,0x66,0xd9, + 0x33,0xc2,0xdf,0x15,0xb5,0x7b,0x45,0x69,0x2a,0xd3,0xbf,0xec,0x39,0x46,0x78,0xaf, + 0xa9,0x1e,0xd6,0x44,0x1f,0x6b,0xa3,0x97,0x35,0xd1,0xcf,0xaa,0xf4,0xb4,0x3a,0xf9, + 0x53,0xa7,0xaf,0x15,0xf1,0x4e,0x95,0xfc,0xe9,0x92,0x9e,0x2a,0xf9,0x53,0x96,0x9e, + 0x26,0x76,0x41,0x91,0xfc,0xe1,0xef,0x62,0xc,0x55,0xd9,0x9,0x75,0xf2,0xa7,0x4a, + 0x5e,0x34,0xb1,0x3b,0x62,0xfb,0x23,0x94,0x41,0x46,0xda,0xda,0x21,0x55,0xf6,0x48, + 0x95,0xfc,0xb1,0x34,0x95,0x11,0xfe,0xae,0xa9,0xfc,0xa1,0x66,0x8b,0x76,0xc,0x82, + 0x60,0x4e,0x4a,0xc2,0x6d,0x14,0x52,0x30,0xa1,0x68,0xf2,0x7b,0x30,0x31,0x56,0xe4, + 0x52,0x46,0x24,0xbe,0xa5,0x30,0x8e,0x94,0xa6,0x83,0xf6,0xaa,0x8,0xa1,0x1a,0x5c, + 0x8a,0xdd,0xf2,0xcc,0xa5,0x89,0xa4,0xa5,0xf7,0xa1,0xd8,0x96,0x49,0x24,0x3,0xc0, + 0xc4,0xa4,0x8f,0x5a,0x9b,0xa6,0xd8,0xae,0xf1,0x7,0xff,0xbc,0x62,0xdb,0x66,0x6e, + 0xfe,0x40,0x23,0x1b,0x27,0x96,0x99,0xd4,0xe5,0x26,0xfe,0x40,0xc5,0x37,0x50,0xaf, + 0xde,0x5b,0x68,0xd5,0xea,0x13,0x34,0x6f,0xfe,0x91,0x9e,0xa5,0xd2,0xf,0x2,0x3d, + 0x6,0xb0,0x7e,0x7d,0x5e,0xb9,0xc,0xa,0x69,0xdd,0x3a,0x73,0xf0,0xf3,0x33,0x56, + 0x69,0x4b,0x31,0xad,0x25,0x4b,0xee,0xa7,0xa2,0x45,0x8b,0x9e,0xc0,0x80,0x1,0x5f, + 0xe4,0x79,0xac,0x5f,0x5f,0x52,0xa9,0x4d,0xc5,0x3c,0x54,0xa5,0x8f,0x69,0x21,0x9, + 0xf5,0x1b,0xb,0x63,0xe9,0xab,0xb2,0xb1,0xaa,0xda,0x15,0x6b,0xab,0xb7,0x60,0x16, + 0xd5,0x4b,0x8c,0xf0,0xf9,0x25,0x4b,0xee,0xc9,0xd3,0xc7,0x67,0x15,0xc5,0xd1,0x26, + 0xfd,0x3,0xd0,0x3a,0x95,0xfe,0x43,0x3e,0x89,0xd3,0x17,0xc7,0xd1,0x36,0x7d,0x46, + 0xca,0xca,0x2f,0x8e,0xa3,0x69,0xfa,0x2c,0xf,0x46,0x42,0x9d,0xb6,0x6a,0xd5,0x10, + 0xb9,0x9c,0xb,0xe3,0x8,0x7d,0x6c,0x45,0x32,0x9a,0xa2,0x7f,0x15,0xeb,0xcb,0x32, + 0x65,0x5e,0xc3,0xca,0x95,0x13,0x14,0xf6,0x99,0x84,0x69,0x3f,0x7f,0x6e,0xa2,0xd0, + 0x6e,0xb3,0x3c,0x78,0xbd,0xa6,0x88,0x52,0xdb,0x6f,0x45,0xf2,0x7f,0xf9,0xb2,0x89, + 0x52,0x3d,0x8a,0xc7,0x9f,0x7f,0xfe,0xf8,0xc5,0x2f,0x10,0xb6,0x2b,0x5d,0x7c,0x4, + 0x45,0x69,0xa3,0xac,0x2c,0x5e,0xfc,0x90,0x12,0x6b,0x63,0xe2,0x3c,0x34,0xd1,0xd9, + 0x8a,0xf0,0x65,0xe9,0x9,0xf9,0x8a,0xf7,0xb,0x16,0xbc,0x4e,0x95,0x87,0xa2,0x74, + 0x94,0x1d,0xc2,0xf4,0x51,0x4f,0x8a,0xdb,0x8e,0x8b,0x40,0x3e,0xd3,0x9e,0xfe,0xa0, + 0x5f,0xda,0xe,0xa6,0x8f,0xbc,0x52,0x97,0xbe,0x32,0x1d,0xad,0xa8,0xfc,0xc2,0xb6, + 0xe3,0x22,0x68,0xbf,0x4c,0x47,0xab,0xf2,0x39,0x54,0xb5,0x2f,0x4c,0x9f,0xe5,0xa1, + 0xa8,0x7d,0x61,0xfa,0xc2,0x34,0x84,0x3e,0x8,0xea,0x4e,0x75,0xfa,0x53,0x98,0x7, + 0xf2,0x8a,0x9d,0x1b,0x35,0x7a,0xad,0xd2,0x27,0xb9,0x70,0x21,0x7,0xd,0xdb,0xb8, + 0x31,0x97,0x56,0x7e,0xb1,0x90,0x84,0x3e,0xca,0xcd,0x9b,0x8a,0xdb,0x98,0xaa,0x36, + 0xa0,0x89,0xff,0x83,0xf1,0x54,0xb5,0x31,0x65,0x69,0xb,0xf3,0x40,0xc2,0xf6,0x26, + 0xbe,0x16,0xc6,0xd3,0xa6,0x7d,0xa5,0xe7,0x81,0xd6,0xee,0x53,0x4e,0x33,0x88,0xe1, + 0x8c,0x89,0x6f,0x25,0x21,0xfe,0x93,0x62,0xc2,0xdf,0x30,0x4e,0xc,0x67,0x46,0xae, + 0xad,0xe8,0xf8,0x0,0x4f,0xcf,0x21,0x58,0x72,0x5c,0x10,0x8f,0xc4,0x21,0xe9,0x7d, + 0x2a,0x61,0x85,0x49,0x53,0x3f,0xcc,0x96,0x90,0x23,0x97,0xe2,0x87,0x5,0x5b,0x2b, + 0x2f,0x4e,0x3a,0x93,0xd2,0x23,0x38,0x38,0x18,0xa2,0xa3,0xa3,0xf5,0x4e,0x98,0x2e, + 0x23,0x55,0x65,0xc0,0xdf,0xd3,0xe3,0xd0,0xa5,0xc,0x2c,0x9e,0xf0,0x19,0x7d,0x5c, + 0xeb,0x52,0x6,0x7d,0x5f,0xb,0xf2,0x57,0x59,0x6,0x61,0x5c,0x7d,0x96,0x41,0xcc, + 0x1b,0x55,0x3c,0xd0,0x54,0xc6,0xb4,0x91,0x5,0x4d,0xe4,0x41,0x98,0x3f,0xfe,0xae, + 0xea,0x2c,0xe2,0xa7,0x4a,0xd2,0x54,0x1e,0x75,0xc9,0x5f,0xdd,0xa1,0x6b,0xfe,0x2c, + 0x9e,0xaa,0xf6,0x2d,0xc4,0x54,0x19,0xa5,0x77,0xfe,0xfa,0xe3,0xff,0xaf,0xbe,0x33, + 0x3e,0xa3,0xc8,0x5f,0x56,0x24,0x4f,0xaa,0x48,0xbd,0xfc,0x69,0xff,0x9e,0x48,0x97, + 0x43,0x51,0xfe,0x69,0x79,0xcf,0xa4,0x69,0xfd,0x85,0x7c,0x50,0x96,0xbf,0x8e,0xef, + 0xa9,0xb4,0x26,0x91,0xec,0xa4,0xca,0x1f,0x7d,0x52,0x45,0xef,0xb9,0x84,0xe1,0xc2, + 0xfc,0xb5,0xad,0x3f,0xcb,0x97,0xb5,0x63,0x45,0xf9,0x33,0x12,0xe7,0xcf,0x48,0x98, + 0xbf,0xae,0x36,0x59,0x2c,0xfb,0xba,0xbe,0x67,0x53,0x75,0xb0,0x3c,0xc5,0x7c,0x57, + 0xd6,0xf6,0xb5,0x7d,0x4f,0xa7,0x8a,0xc7,0xc2,0xfc,0x99,0xe,0xd4,0xa4,0xfe,0x9a, + 0x8e,0x23,0xb,0xfb,0x60,0x62,0x52,0x65,0xc3,0x14,0xe5,0xaf,0xc9,0x7b,0x42,0x55, + 0xf9,0xa9,0xcb,0x5f,0x1d,0xff,0xd5,0xc9,0xbf,0x38,0x7f,0x26,0x7,0x9a,0xe6,0xaf, + 0x8e,0xff,0x9a,0xc8,0xbf,0x30,0x6f,0xa1,0xe,0xd4,0x27,0xff,0x75,0x79,0xcf,0xa9, + 0x8f,0xfc,0x85,0x65,0xd0,0xe6,0x3d,0xa9,0xbe,0xe4,0x4f,0x58,0x6,0x5,0xe3,0xd8, + 0x69,0x92,0x7f,0x45,0x7a,0x57,0x95,0xff,0x87,0x87,0xb2,0xe7,0x35,0x25,0xe1,0xf3, + 0xcc,0xe6,0xe9,0x9a,0xbf,0x2e,0xfa,0x5d,0x9c,0xbf,0x50,0x1f,0x6a,0x9b,0x7f,0x7a, + 0xf5,0xc9,0x54,0xe5,0x2f,0x2c,0x83,0xbe,0xf,0x4d,0xf3,0x67,0x65,0xd0,0x77,0xfd, + 0x85,0xf2,0xa0,0x2e,0x7f,0x56,0x86,0xf4,0xa0,0x54,0x79,0x70,0x5c,0x10,0x39,0x49, + 0x9,0xd9,0x90,0x6b,0xab,0x68,0x8e,0x33,0x8b,0xe1,0x38,0x63,0x42,0x12,0x31,0x91, + 0xdf,0x24,0xc1,0xec,0x43,0x90,0x29,0x64,0x4c,0xc2,0x8c,0xa3,0x65,0x67,0x4e,0x44, + 0xec,0xb7,0x4f,0x2,0x8a,0x27,0x94,0x44,0xe8,0x27,0xc9,0xb,0xc7,0x29,0xf0,0x5d, + 0x91,0x27,0x27,0x18,0xa7,0xb0,0x53,0xc9,0x16,0x9d,0xda,0x65,0x3a,0x91,0x56,0x47, + 0xd7,0xae,0x5d,0x21,0x33,0x90,0xb7,0xb7,0x37,0xa5,0x12,0x25,0x4a,0x68,0x5c,0x7, + 0x5f,0x5f,0x5f,0xb8,0x7e,0xfd,0x7a,0xa6,0x20,0x56,0x7e,0x24,0x4b,0x4b,0x4b,0x8d, + 0xea,0x30,0x6e,0xdc,0x38,0xfa,0x6c,0x4c,0x4c,0xc,0x24,0x26,0x26,0x42,0x52,0x52, + 0x52,0xba,0xe8,0x18,0x55,0x87,0xb2,0x3a,0x98,0x9a,0x9a,0x6a,0x54,0x87,0x69,0xd3, + 0xa6,0xd1,0x67,0xc7,0x8e,0x1d,0x2b,0x97,0x41,0x3c,0x32,0xfa,0x5e,0x51,0x1d,0xca, + 0x95,0x2b,0xa7,0x71,0x1d,0xf0,0xb8,0x70,0xe1,0x82,0x5c,0x17,0xb2,0x7b,0x96,0x4f, + 0x7a,0xdf,0x2b,0xc3,0x81,0xd3,0xb0,0x4d,0xb3,0x3a,0xb0,0x83,0xe5,0x91,0x91,0xf7, + 0xfa,0xaa,0x43,0x66,0xc4,0x41,0x53,0xbd,0x34,0x61,0xc2,0x84,0x4c,0x83,0x83,0xb0, + 0xfc,0x9a,0xe8,0xa5,0xc1,0x83,0x7,0x3,0x62,0x10,0x1f,0x1f,0x4f,0x79,0x62,0x48, + 0x52,0x54,0x7e,0x75,0x75,0xc0,0xf2,0xcf,0x9d,0x3b,0x57,0x5e,0xfe,0xb3,0x67,0x2f, + 0x69,0x4d,0xf8,0x1c,0x3e,0x9f,0x16,0xc2,0x34,0xae,0x5e,0xbd,0xfa,0x4b,0xd9,0x51, + 0xdf,0x5b,0x59,0x59,0x29,0x2d,0xff,0x90,0x21,0x43,0x60,0xf6,0xec,0xd9,0xa9,0xca, + 0x8f,0x78,0xba,0xbb,0xbb,0xcb,0xaf,0xd1,0x56,0xb2,0xeb,0xee,0xdd,0xbb,0xcb,0xaf, + 0x5b,0xb6,0x6c,0x49,0xaf,0x85,0x7a,0x51,0x57,0xc2,0xfc,0x15,0x95,0x7f,0xd8,0xb0, + 0x61,0x2a,0xf9,0xaf,0x49,0xf9,0x55,0x5d,0xb,0xdb,0x21,0x7,0xbf,0x96,0x49,0x11, + 0xe9,0xb3,0xfc,0x3,0x7,0xe,0x26,0x7d,0x3c,0xfd,0x94,0x5f,0x93,0x72,0x2a,0x8b, + 0xa7,0xac,0xfc,0xc3,0x87,0xf,0x57,0xcb,0xff,0xbf,0xfe,0xfa,0x53,0x61,0xfb,0x65, + 0xb2,0xad,0x8e,0x58,0xf9,0xf1,0x2c,0x24,0x65,0xe5,0x57,0x14,0x4f,0x55,0xf9,0xd5, + 0xc9,0xff,0xe2,0xc5,0xb,0x52,0x95,0x5f,0x98,0xb6,0xa2,0xf2,0x62,0xbd,0x2e,0x5e, + 0xbc,0xf6,0x4b,0xf9,0xd5,0x95,0x53,0x55,0xbd,0x32,0xb2,0xfc,0xca,0xf8,0x9f,0x16, + 0xd2,0x55,0x7e,0xd4,0xcd,0x47,0xc3,0xf2,0xa9,0x9b,0x8f,0x26,0xae,0xb3,0x2e,0x84, + 0x65,0xd7,0xb6,0xfd,0xea,0x73,0xbe,0x9b,0x2e,0x76,0x43,0x4c,0xda,0x95,0x5f,0xff, + 0xf3,0xe9,0x18,0xf,0xd3,0x42,0x27,0x4f,0x9e,0x4c,0x55,0xfe,0x11,0x23,0x46,0xfc, + 0x22,0xff,0xe9,0x35,0x5f,0xcf,0xcb,0xcb,0x4b,0x2f,0x24,0xc6,0x41,0xcc,0xff,0xf4, + 0x9a,0xf,0x88,0xfd,0x27,0x24,0x13,0x13,0x13,0xad,0x88,0x3d,0xc3,0xce,0xc2,0x3a, + 0x78,0x7a,0x7a,0x82,0x85,0x85,0x85,0xd2,0xf2,0xeb,0x73,0xbe,0x61,0xad,0x5a,0x75, + 0x8,0xd5,0x82,0x9a,0x35,0x6b,0xd2,0xb3,0xa2,0x6b,0x31,0x55,0xaf,0x5e,0x5d,0x4e, + 0x35,0x6a,0xd4,0xa0,0x67,0x71,0x1d,0xa,0x14,0x28,0xa0,0xb6,0xfc,0x9b,0xc1,0x4e, + 0xed,0x7c,0x46,0x71,0x1c,0x71,0xf9,0xf5,0xe1,0x83,0xfa,0xf8,0xf8,0xfc,0x52,0x87, + 0xe2,0xc5,0x8b,0x6b,0x54,0x7e,0x46,0xca,0xf8,0x2f,0x8e,0x23,0x2e,0xff,0x8f,0x1f, + 0x3f,0x34,0xa2,0xd4,0xb6,0xf0,0x2c,0x9c,0x3b,0x77,0x8e,0x9e,0xa3,0xa2,0xa2,0x68, + 0xf9,0x85,0x75,0x10,0x97,0x5d,0x51,0xf9,0xf5,0x35,0x1f,0x13,0x75,0x85,0x3a,0xc2, + 0xf2,0x9f,0x3e,0x7d,0x9a,0xd8,0xef,0x8b,0xb4,0xfc,0xcc,0x7e,0x9,0xf9,0x2f,0xac, + 0x3,0xa7,0xa4,0x1f,0x99,0x1e,0xf3,0x3d,0xdb,0x8e,0x51,0x4d,0xac,0xfc,0x67,0xce, + 0x9c,0xa1,0x65,0xc5,0xc3,0xdf,0xdf,0x9f,0x12,0xab,0x83,0xb0,0xfc,0x48,0x12,0x89, + 0x44,0xa9,0xed,0xd5,0xe7,0x7c,0x52,0x75,0x65,0x67,0xe5,0xff,0xf9,0xf3,0xa7,0x9c, + 0xd7,0x78,0xa0,0xec,0xa8,0x2a,0xbf,0x32,0xfe,0xe3,0xa1,0xaf,0xf9,0xaa,0x9a,0x94, + 0x9d,0x95,0x9f,0xf5,0xdd,0x91,0x2e,0x5d,0xba,0x24,0xef,0x3,0x2b,0x92,0x1f,0x55, + 0xe5,0xd7,0xd7,0x7c,0x58,0x4d,0xcb,0x2e,0xe4,0xff,0xf9,0xf3,0xe7,0x55,0xea,0x1f, + 0x75,0xe5,0x57,0x34,0xdf,0x56,0x68,0x9b,0x14,0xcd,0xb7,0xd5,0xa6,0x9c,0xea,0xca, + 0x8f,0x32,0xc3,0xca,0xab,0xaa,0xfd,0x6a,0x52,0x7e,0x45,0xf3,0x79,0x85,0xfa,0x33, + 0x3d,0xca,0x2f,0x94,0x7f,0x75,0xed,0x57,0x7d,0xf9,0x7,0x29,0xb4,0x4d,0xe2,0xf9, + 0xc2,0x8a,0xca,0x23,0xd4,0x45,0xda,0xc8,0x3f,0xd3,0x9d,0xba,0xb6,0x5f,0x45,0xfc, + 0xff,0xd5,0x7e,0xfd,0x3a,0x1f,0x59,0x5c,0x76,0xb1,0xf,0xad,0x6d,0xfb,0x65,0x75, + 0xd0,0xb6,0xfd,0xa6,0xd7,0x7c,0x67,0x6d,0xe4,0x47,0xd8,0x6,0xd2,0xd2,0x7e,0xf5, + 0x39,0x9f,0x5a,0x9b,0xf6,0xab,0x88,0xb4,0xd1,0x9f,0xfa,0x9e,0xaf,0xad,0xad,0xfe, + 0x49,0x6b,0xf9,0x85,0x75,0x50,0x35,0x1f,0x1c,0xf3,0x55,0x37,0x1f,0x5c,0x5b,0xfb, + 0x85,0x65,0x65,0x7a,0x53,0x48,0x18,0xae,0x4d,0xf9,0x59,0x1d,0x94,0xcd,0x37,0x17, + 0xe6,0xad,0x4f,0xfb,0x85,0xe5,0x14,0xea,0x4e,0x24,0x33,0x33,0x33,0x9d,0xca,0xcf, + 0xe,0x5f,0xdf,0x29,0x10,0x1b,0x1b,0xb,0x7b,0xf7,0xee,0xa5,0xcf,0xe8,0x43,0xdf, + 0x2b,0x2a,0x3f,0xbe,0x73,0x43,0x5f,0xf9,0xeb,0xd7,0xaf,0xf2,0x36,0xcb,0xf4,0x67, + 0x5a,0xca,0x3f,0x7a,0xf4,0xa0,0x54,0xe5,0x4f,0xf,0x62,0xf2,0x83,0xfe,0xb3,0xb0, + 0xfc,0xcc,0xe,0xa7,0xa5,0xfc,0xe3,0xc6,0x8d,0x97,0x97,0x5f,0x13,0x3f,0x5e,0x57, + 0xfa,0xf6,0xed,0x1b,0x1d,0x63,0xc0,0xf2,0x8b,0x29,0x6d,0xe5,0x1f,0x27,0x2f,0xbf, + 0x98,0xf6,0xed,0x53,0x4e,0x8a,0xe2,0x23,0xed,0xd9,0xb3,0x47,0xf6,0xec,0x3e,0x7a, + 0xbd,0x6b,0xd7,0x2e,0x38,0x7c,0xf8,0x30,0x9c,0x38,0x71,0x2,0xe,0x1d,0x3a,0x4, + 0x47,0x8f,0x1e,0x85,0xe3,0xc7,0x8f,0xc3,0xa9,0x53,0xa7,0xe4,0x7d,0xb0,0xb4,0x94, + 0x1f,0x8f,0xf0,0xf0,0x70,0x5a,0x7,0x43,0x93,0xae,0xe5,0x67,0x75,0x40,0xde,0x18, + 0x92,0x84,0x75,0xd0,0xb6,0xfc,0x78,0xe0,0xfb,0xb0,0x2d,0x5b,0xb6,0x64,0x8a,0x3a, + 0xe8,0x52,0x7e,0x3c,0x22,0x23,0x23,0xd,0x8e,0x43,0xfb,0xf6,0xed,0x75,0x2a,0x3b, + 0x3b,0xfc,0xfc,0xfc,0x20,0x23,0x9,0xed,0x0,0xbe,0xcb,0x45,0x5d,0x12,0x10,0x10, + 0xa0,0xb0,0xec,0xd1,0x84,0xcc,0x88,0xe,0xe,0x26,0x67,0x63,0xfe,0xdd,0x2b,0x6e, + 0x97,0xc2,0xc7,0x95,0x85,0xe3,0x5e,0x2a,0x18,0x8f,0x93,0x2,0xc4,0xe0,0xd9,0x6, + 0xe0,0x13,0x9e,0xad,0x0,0xe2,0x39,0x3e,0x1,0x7a,0x6f,0x9c,0xf6,0x73,0x8c,0xec, + 0x1c,0x2d,0x3b,0x7,0x6b,0x72,0x36,0x4b,0x39,0x47,0xcb,0xce,0x31,0xa2,0x73,0xb4, + 0x28,0x9e,0xa6,0x67,0x71,0x7a,0x9f,0x64,0xe7,0x24,0x35,0xe7,0x9f,0xb2,0x33,0xb0, + 0x73,0xb0,0xec,0x1c,0xcd,0xf3,0x8d,0x26,0x68,0xc3,0xaf,0x27,0x73,0xe4,0xe8,0x7c, + 0x31,0xf9,0x3c,0x2d,0xae,0x19,0xa7,0xec,0x48,0x37,0x5b,0x9c,0x41,0xa4,0xf3,0x91, + 0x1e,0xf3,0x6,0x33,0x8a,0x4,0x73,0x13,0x75,0xe6,0x41,0x56,0xaf,0x7f,0x5a,0x79, + 0x90,0x95,0xeb,0xaf,0xf,0x1e,0x8,0xeb,0x9f,0x95,0xe,0x71,0xfd,0x75,0xe5,0x81, + 0xb0,0xfe,0xa2,0x34,0x68,0x3e,0x99,0x35,0x4c,0x91,0xc,0xa4,0x95,0x7,0x2c,0xf, + 0x61,0x5a,0x99,0x39,0x4c,0xdf,0x3c,0x10,0xca,0x96,0x30,0xcf,0xcc,0x1c,0x96,0x5e, + 0x72,0xc0,0xe,0x4e,0x20,0x7f,0x99,0x35,0x2c,0xbb,0x2d,0x64,0xb7,0x85,0xf4,0x94, + 0x3,0x5d,0x64,0xd2,0x50,0x61,0x8a,0xea,0xaf,0xb,0xf,0x98,0xc,0x18,0xda,0xbf, + 0x49,0xab,0x5f,0xa4,0x2b,0xf,0xd2,0xb3,0xfe,0xe9,0x71,0x68,0x52,0x7f,0x1,0xf, + 0x74,0xaa,0x3f,0x3e,0x2b,0xd4,0x35,0xda,0xde,0x2b,0xf2,0xb1,0xf4,0x45,0xe2,0xb2, + 0x66,0xfa,0xfa,0xe3,0xdf,0xc1,0xff,0xbf,0xf5,0x1f,0x8a,0xfb,0x3d,0xc2,0xff,0xdf, + 0xfa,0xab,0xaa,0x87,0xb2,0xc3,0xd0,0xf5,0xd7,0x97,0x5e,0x56,0x55,0x4f,0x5d,0x78, + 0x93,0x51,0xf5,0x17,0xa7,0x95,0x96,0xfa,0xab,0x29,0x9f,0x42,0x52,0xf5,0x4c,0x56, + 0xab,0xbf,0xb6,0x75,0xd4,0xa4,0xdd,0xfc,0xe,0xf5,0xd7,0x95,0xf4,0x57,0x7f,0x55, + 0xfb,0x88,0xf3,0x24,0xac,0xbf,0xba,0x39,0xef,0x8a,0xf6,0xc0,0xc9,0xbc,0xf5,0x57, + 0xbd,0xef,0x79,0xa,0xa5,0xec,0xf5,0xa3,0x6e,0xce,0xbc,0x78,0x4e,0x4d,0xe6,0xad, + 0x3f,0x5f,0x77,0x55,0xf3,0x54,0x84,0x73,0x16,0x59,0xdd,0x15,0xcd,0x55,0x51,0x44, + 0x42,0x3e,0xa8,0x6a,0xe3,0xba,0x92,0xa2,0x76,0xa6,0x79,0xfd,0x35,0xaf,0xbb,0x90, + 0x7,0x9a,0xd6,0x5d,0xbc,0xf,0x88,0xbe,0x6d,0xaa,0x32,0x3d,0xa3,0x49,0xfd,0x55, + 0xcd,0x4f,0x12,0xcf,0xf3,0x51,0xc5,0x3,0x65,0xf3,0x7e,0x32,0x1b,0xf,0x34,0xa9, + 0x3f,0x6b,0xe3,0xe2,0xfd,0x4d,0x14,0xc5,0x63,0x75,0x52,0x36,0x6f,0x48,0xcc,0x83, + 0xf4,0x6c,0x3,0x8a,0xda,0x83,0xb6,0xf5,0x67,0x75,0x17,0xef,0x2f,0xc4,0xf6,0xf8, + 0x11,0xf3,0x40,0xa8,0xdb,0xc4,0xf1,0x15,0xf1,0x20,0x2d,0x7b,0x71,0xe9,0x42,0x62, + 0x1e,0x68,0x5a,0x7f,0x36,0x47,0x52,0x38,0xd7,0x56,0x11,0xf,0x58,0x7d,0x94,0xc5, + 0xcf,0xc,0xf5,0x17,0xf2,0x40,0x9b,0xfa,0xb3,0xbd,0x7d,0xc5,0xdf,0xf,0x50,0x56, + 0x7f,0x45,0xf1,0x95,0xd5,0x3f,0xbd,0xe5,0x5f,0x54,0x5f,0xb1,0xef,0x61,0xf0,0xfa, + 0x67,0xa4,0xee,0x13,0xca,0x81,0xb6,0xf2,0x2f,0xdc,0xb7,0x5c,0x13,0xf9,0x17,0xc7, + 0xcf,0xc,0xf5,0x17,0xf9,0x5c,0x9c,0x26,0xf5,0x17,0xaf,0xf5,0x41,0x52,0x64,0x7, + 0x84,0xfa,0x4f,0x1c,0x5f,0x95,0xfe,0xd3,0xf5,0xd0,0xa7,0xed,0xd3,0x84,0x7,0xbf, + 0x52,0x4a,0x3c,0x71,0x9d,0x14,0x91,0xd8,0x47,0xd4,0x74,0xe,0xb9,0x22,0x52,0x54, + 0x7f,0x45,0xba,0x2e,0xad,0xf5,0x4f,0xe1,0xc1,0xaf,0x24,0x8c,0xa3,0xc8,0xbf,0x15, + 0x93,0x32,0xff,0x47,0x1f,0xf5,0xc7,0x43,0x91,0x9e,0xd3,0xb6,0xfe,0xca,0x78,0xa0, + 0x8a,0x94,0xad,0xb5,0x52,0x45,0xda,0xce,0x3,0xd7,0xa4,0xfe,0xc2,0xfa,0xa6,0xa5, + 0xfe,0x8c,0x7,0x9a,0xfb,0xff,0x2e,0x5a,0xf1,0x40,0x97,0x79,0xf0,0x9a,0xd4,0x5f, + 0x18,0xa6,0x4f,0xfc,0x15,0xcd,0xf3,0x57,0xe4,0x23,0xab,0x5a,0xb3,0x26,0x9e,0xff, + 0x9f,0x96,0xba,0x2b,0x6b,0xff,0xca,0x74,0xa3,0x3e,0xf4,0x9f,0x26,0xfe,0xbf,0xba, + 0x75,0x6f,0xfa,0xa8,0xb7,0xaa,0xfa,0xeb,0x4b,0xff,0xeb,0xe2,0xff,0xb3,0xb8,0xe9, + 0xb1,0x6,0x21,0xa3,0xf4,0x7f,0x5a,0xfd,0xff,0x8c,0xe4,0x41,0x7a,0xe8,0xff,0xb4, + 0xfa,0xbf,0x9a,0xd6,0x5f,0x9b,0xf5,0x7b,0x19,0xa9,0xff,0x33,0xa2,0xfe,0xe2,0x7d, + 0x68,0x33,0x93,0xfe,0x4f,0xab,0xff,0xcf,0xf7,0x65,0x35,0xab,0x7f,0x7a,0xf8,0x7f, + 0x69,0xd5,0xff,0xba,0xf8,0xff,0x8a,0xc6,0x3f,0x54,0xc9,0xbc,0xa2,0x6f,0xcd,0xe9, + 0xab,0xfe,0x69,0xd5,0xff,0xaa,0xec,0x9a,0x3a,0xff,0x9f,0xed,0x77,0xac,0xcc,0xff, + 0x57,0xe4,0x3,0x67,0x85,0xfa,0x6b,0xea,0xff,0xb3,0xfa,0x2b,0xf3,0xff,0x55,0x8d, + 0x1,0x67,0x96,0xfa,0x33,0x1e,0x68,0x33,0xf6,0xcd,0xea,0x8e,0xcf,0x19,0xd2,0xff, + 0xd7,0x77,0xff,0x57,0x9b,0xfe,0x8f,0x70,0xcd,0xae,0xa1,0xfc,0x7f,0x7d,0xd5,0x9f, + 0xf1,0x40,0xdd,0x3a,0x5f,0xf1,0x9a,0x5f,0xe1,0xf8,0x46,0x46,0xfb,0xff,0x9c,0x86, + 0xe3,0x9d,0xda,0xf4,0xff,0x84,0x7c,0x50,0x47,0x98,0x56,0x4a,0xb9,0x32,0xde,0xff, + 0x17,0xfa,0x7e,0x8a,0xc6,0xf9,0x74,0xad,0xbf,0xf8,0xc0,0xe7,0x94,0xf9,0xdd,0xfa, + 0xa8,0x53,0x5a,0xea,0x2f,0x96,0xf7,0xec,0xfa,0x67,0x6c,0xfd,0x33,0x9a,0x54,0xd5, + 0x5f,0x57,0xff,0x57,0xd7,0xfa,0x2b,0x4a,0x3f,0xbd,0x49,0x5c,0x7f,0x45,0x47,0x46, + 0xd5,0x3f,0xb3,0x53,0x76,0xfd,0xf5,0x53,0x7f,0x21,0xf,0xb2,0xd2,0xa1,0xcf,0xfa, + 0x33,0x1e,0x18,0x1a,0x53,0x6d,0x48,0x11,0xf,0xd2,0x52,0xff,0xdf,0x81,0x7,0x69, + 0xad,0x7f,0x56,0xe7,0x81,0x3e,0xea,0x9f,0x95,0x79,0xa0,0xaf,0xfa,0x33,0x1e,0x64, + 0x35,0x52,0x58,0xf,0xfa,0x3f,0x48,0xf6,0x9b,0x54,0x76,0xb6,0x91,0x9d,0xd9,0x7e, + 0xb6,0x66,0xb2,0xb3,0x31,0xbf,0x7f,0x1,0xfd,0x7e,0x2d,0x3d,0xf8,0xfd,0xb,0x48, + 0x2,0x9f,0x64,0x9,0xc4,0xcb,0x12,0x48,0x92,0x25,0x20,0x3b,0x9b,0xe9,0xeb,0x2c, + 0xcb,0xc7,0x4c,0x96,0xaf,0x99,0xac,0x1c,0x66,0xc1,0xb2,0x33,0xa7,0xdb,0xd9,0x8a, + 0x9d,0x83,0x45,0x67,0x59,0xfa,0x56,0x31,0xa2,0x7b,0x71,0x3c,0x71,0x3a,0x9a,0x9e, + 0x95,0xe5,0x27,0xab,0xa7,0x15,0x68,0x7b,0xe,0x96,0x9d,0xa3,0x65,0xe7,0x18,0xd9, + 0xf9,0x93,0xec,0x1c,0x2f,0x3b,0xf3,0xc,0xb5,0xc1,0x7d,0x22,0x5a,0x13,0x9a,0xc3, + 0xa5,0xec,0x13,0xe1,0xe9,0xca,0xfd,0x72,0x18,0x19,0x19,0x19,0xc4,0xe7,0xcf,0x0, + 0xba,0x4a,0xa8,0xe0,0xaf,0x35,0xd6,0xee,0xc8,0x6a,0x3a,0x51,0x13,0xc2,0x3a,0x39, + 0x3a,0x3a,0x22,0x8f,0x9e,0xa5,0x95,0x47,0xbf,0x2b,0x7f,0x90,0xa4,0x52,0x69,0x9a, + 0xe5,0xe8,0x77,0xe6,0x8f,0x3e,0xe4,0x88,0xf1,0xe7,0xfe,0xfd,0xfb,0xf0,0xf8,0xf1, + 0xe3,0x2c,0x4b,0xff,0xfe,0xfb,0x2f,0xdd,0xff,0xc,0xeb,0x32,0x67,0xce,0x9c,0x54, + 0x3c,0x4a,0x8b,0x1c,0xe1,0xf3,0xb8,0xcf,0x1a,0x7e,0xdf,0x20,0x39,0x39,0x19,0x9e, + 0x3d,0x7b,0x6,0x37,0x6f,0xde,0xa4,0xf4,0xe8,0xd1,0x23,0x78,0xf7,0xee,0x5d,0xaa, + 0xb0,0x57,0xaf,0x5e,0xc1,0x93,0x27,0x4f,0x68,0xdc,0xf7,0xef,0xdf,0xa7,0x8a,0x8b, + 0xe9,0x60,0x38,0xc6,0x11,0x87,0xe3,0xbe,0xce,0x88,0x1,0x86,0xe1,0x19,0xbf,0x45, + 0x83,0xe9,0x7c,0xff,0xfe,0x5d,0x1e,0x17,0xf3,0x61,0x69,0x88,0xd3,0xc6,0x72,0x8, + 0xd3,0x7d,0xfa,0xf4,0x29,0x5c,0xbe,0x7c,0x99,0xfe,0xc6,0xc2,0xc2,0xc2,0xc2,0x60, + 0xc5,0x8a,0x15,0xb0,0x73,0xe7,0xce,0x5f,0x7c,0x18,0x5d,0xe5,0x88,0x3c,0xfb,0x71, + 0xf5,0xea,0xd5,0xb0,0x7c,0xf9,0x72,0xb0,0xb6,0xb6,0x86,0x99,0x33,0x67,0xc8,0xd3, + 0xdc,0xb3,0x67,0x37,0xb8,0xb9,0xf5,0x80,0x4d,0x9b,0x36,0xca,0xc3,0x30,0x5e,0xfb, + 0xf6,0xce,0xf4,0x9b,0x3f,0xdb,0xb6,0x6d,0x85,0x5,0xb,0x16,0x50,0x5a,0xba,0x74, + 0x29,0xb4,0x69,0xd3,0x16,0x26,0x4f,0x9e,0xc,0x47,0x8e,0x1c,0xfe,0x25,0x7c,0xe6, + 0xcc,0x99,0xb0,0x75,0x2b,0x1f,0x7f,0xc3,0x86,0xf5,0xf4,0xbb,0x12,0x5e,0x5e,0x7d, + 0x69,0x1e,0xcb,0x96,0x2d,0xa5,0xe1,0x3b,0x76,0x6c,0xa7,0x71,0x43,0x43,0xc3,0x68, + 0xda,0x2c,0xcf,0x1d,0x3b,0x76,0xd0,0xf0,0x7f,0xfe,0xf9,0x47,0x9e,0x2e,0x96,0xa3, + 0x57,0xaf,0x5e,0xf4,0x79,0x16,0x36,0x65,0xca,0x14,0xa8,0x5c,0xb9,0x32,0xfd,0x6d, + 0xe3,0xc6,0x8d,0xbf,0xf0,0x48,0x17,0x39,0x22,0xcf,0x49,0xf1,0xd9,0x55,0xab,0x56, + 0xd1,0xf2,0x7,0x4,0xf8,0xd3,0xfa,0x21,0xe1,0x7e,0xe9,0xf8,0x6d,0x1d,0xc4,0xf4, + 0xc6,0x8d,0xeb,0x70,0xe5,0xca,0x65,0xba,0xb7,0x22,0xd6,0xed,0xcc,0x99,0xd3,0xb4, + 0x4c,0x77,0xee,0xdc,0x86,0x13,0x27,0x8e,0xd3,0xdf,0xf0,0x5b,0x1f,0xeb,0xd6,0xad, + 0x25,0x18,0x2e,0x27,0xf2,0x71,0xed,0x97,0xf0,0x93,0x27,0x4f,0xd0,0xe7,0x30,0x1c, + 0xf7,0x78,0x9e,0x3a,0x75,0x2a,0xe1,0xf3,0x54,0xb8,0x7a,0xf5,0xa,0xd,0x3b,0x77, + 0xee,0x2c,0xe0,0xfe,0x78,0xff,0xfc,0xb3,0x8b,0xc6,0xc7,0xb4,0xf1,0x79,0xcc,0x1b, + 0xf3,0xc4,0xf2,0xb0,0x74,0x31,0xc,0xe3,0x62,0x7a,0x17,0x2f,0x5e,0xa0,0x61,0xb8, + 0xcf,0x20,0x7e,0xff,0xae,0x4e,0x9d,0x3a,0x54,0x86,0x36,0x6f,0xde,0xac,0x17,0x39, + 0x92,0xf1,0x88,0xca,0x11,0xee,0x7b,0x37,0x63,0xc6,0x74,0x5a,0x56,0x2c,0x1b,0xee, + 0x81,0x88,0x78,0x23,0x76,0x58,0xb6,0xe8,0xe8,0x28,0x1a,0x67,0xf6,0xec,0x59,0x10, + 0x11,0x11,0x41,0xcb,0x83,0xf5,0x46,0xbc,0x91,0x30,0x2e,0xee,0xf9,0x8f,0xbf,0x61, + 0xb9,0x85,0xe1,0x83,0x7,0xf,0xa1,0x38,0xb0,0xf8,0x28,0x37,0x98,0xee,0xc0,0x81, + 0x3,0x53,0xc5,0x45,0x99,0xc0,0xb8,0x1b,0x37,0x6e,0xa0,0xf9,0x1d,0x3d,0x7a,0x84, + 0xee,0xc3,0xf8,0xe7,0x9f,0x7f,0x42,0x50,0x50,0x90,0xfc,0x79,0x4c,0x13,0xe3,0x62, + 0x18,0x62,0x88,0x61,0xeb,0xd6,0xad,0x3,0xac,0x47,0xeb,0xd6,0xad,0x29,0x8f,0xd4, + 0xc8,0x91,0x95,0x3a,0xde,0x8,0x78,0x54,0x9d,0xd0,0x9b,0x45,0x8b,0x16,0xd1,0xbd, + 0x20,0xf1,0xdb,0x7,0xac,0x1c,0x7,0xe,0xec,0xa7,0x7c,0xc0,0x72,0x60,0x79,0x30, + 0xc,0xe5,0xb,0x31,0xc5,0x7d,0xe4,0xb0,0x3c,0x58,0x4f,0xc,0x3f,0x74,0xe8,0x20, + 0x95,0x39,0x6c,0x23,0x28,0x3,0xc2,0xf0,0xce,0x9d,0x3b,0xc3,0xc2,0x85,0xb,0x69, + 0x7a,0x8c,0x17,0x9b,0x36,0x6d,0xa2,0xe1,0x98,0x17,0x8b,0x7b,0xec,0xd8,0x31,0x1a, + 0x86,0xba,0x4,0xf7,0xd9,0x13,0x96,0x1,0xf7,0xc,0x44,0x39,0x47,0xbe,0xe1,0x3e, + 0x95,0x78,0xee,0xdf,0xbf,0x3f,0xe5,0x8f,0x38,0x2f,0xa4,0x65,0xcb,0x96,0xd1,0xf6, + 0x89,0xba,0x49,0xc8,0x23,0x17,0x17,0x17,0x5d,0xda,0x5a,0x9,0xe4,0x11,0xb6,0x1b, + 0xe4,0x51,0x9f,0x3e,0x7d,0x68,0xb9,0x50,0x76,0xef,0xdf,0xff,0x17,0x96,0x2c,0x59, + 0x42,0x65,0xfc,0xf4,0xe9,0x53,0x34,0xc,0xcb,0x84,0x78,0x61,0x7b,0xc2,0x32,0xb0, + 0x36,0x72,0xf0,0xe0,0x41,0x2a,0x1b,0xa8,0x7b,0xe,0x1c,0x38,0x20,0xf,0x47,0x5e, + 0x5c,0xbb,0x76,0x95,0xea,0xb8,0x53,0xa7,0x4e,0xca,0xdb,0x9,0x86,0xa3,0x6c,0xb0, + 0xb8,0x17,0x2e,0x9c,0xa7,0x61,0x98,0x26,0xf2,0x98,0xb5,0x49,0x2c,0x3,0x86,0x63, + 0xbb,0x42,0xd9,0x62,0x6d,0x8f,0xe7,0xcd,0x2e,0xba,0x8f,0xaa,0x30,0xaf,0xc5,0x8b, + 0x17,0xd1,0x6f,0x3c,0x61,0x3b,0xd3,0x97,0xce,0x16,0xcb,0x11,0xca,0x22,0xc3,0x9a, + 0xe9,0x71,0xc4,0xb,0xdb,0x3,0xf2,0x11,0xf7,0x71,0xc4,0x33,0xea,0x6c,0x94,0x2d, + 0xa6,0x83,0x91,0x37,0x28,0x5f,0x1e,0x1e,0x9e,0xf2,0xb8,0x4c,0xaf,0x62,0x5c,0x94, + 0x97,0x5f,0xf5,0x72,0xe8,0x2f,0x3a,0x1c,0x9f,0x47,0x59,0x15,0xc7,0xd,0xe,0xe, + 0xf9,0x45,0x87,0xa3,0xbc,0xac,0x5f,0xbf,0x5e,0x9e,0x6,0xe2,0x86,0x65,0x45,0x3e, + 0x28,0x93,0x23,0x1d,0x75,0x76,0x2a,0x39,0x42,0x9d,0x8d,0x58,0x9,0xf5,0x22,0xda, + 0xd7,0x5b,0xb7,0x6e,0xd2,0x70,0xd4,0x8b,0x58,0x97,0xdb,0xb7,0x6f,0xc3,0xc3,0x87, + 0xf,0x69,0x18,0x12,0xc3,0xfa,0xc1,0x83,0x7,0xf2,0xb8,0x4c,0xbf,0x63,0xd8,0xdd, + 0xbb,0x77,0x68,0x18,0xea,0x35,0x6c,0x3b,0x1b,0x36,0x6c,0x50,0xf8,0x3c,0xfa,0x36, + 0xc2,0xb8,0xf8,0x3c,0xe6,0x89,0xe1,0x62,0x1d,0x8e,0xe1,0xc2,0x34,0x50,0x2e,0x17, + 0x2f,0x5e,0xc,0x76,0x76,0x76,0xd4,0x37,0xd2,0xa3,0xce,0xee,0x88,0xcf,0xa2,0x5f, + 0x81,0xdf,0x41,0x40,0x5f,0xe5,0xe1,0xc3,0x7,0x94,0xd0,0x1f,0xfb,0xf0,0xe1,0x3, + 0xbd,0xe6,0xbf,0x4b,0x77,0x85,0xee,0xb9,0x8b,0x61,0x6f,0xde,0xbc,0xa1,0x6d,0x8, + 0xc3,0x6f,0xde,0xbc,0x41,0xed,0x94,0x30,0x2e,0xfe,0xc6,0xe2,0xbe,0x78,0xf1,0x42, + 0xfe,0x9d,0x85,0xb3,0x67,0xcf,0xd0,0xfa,0x2a,0x7b,0x5e,0x18,0xf7,0xf8,0xf1,0x68, + 0xea,0xb,0x61,0xf8,0xb3,0x67,0x4f,0x69,0xf8,0xe5,0xcb,0x29,0xe1,0x98,0xc6,0x95, + 0x2b,0x57,0x64,0x7b,0x17,0x9f,0x27,0xbc,0xbb,0x41,0x9,0xf9,0xa3,0xa8,0x9d,0x9, + 0xe4,0x28,0x4a,0xb,0xfe,0x50,0xbb,0x8f,0xbe,0x5a,0x7a,0xf5,0x3,0x50,0x97,0xdd, + 0xba,0x75,0x2b,0xdd,0x9,0xbf,0x37,0xc2,0xf2,0x54,0xc6,0x1f,0xa4,0x82,0x5,0xb, + 0x22,0x8f,0xec,0xd3,0xc2,0x1f,0x4c,0x1f,0x6d,0x34,0x6f,0x3b,0xf8,0x30,0x6c,0xdb, + 0xb8,0x7,0xb2,0x36,0x71,0x90,0x30,0xe,0xe2,0x96,0x9e,0x84,0x7b,0x4a,0x23,0x8f, + 0x34,0xe1,0x8f,0xac,0x9d,0x6d,0x4e,0xb,0x7f,0x30,0xd,0xa4,0xf9,0xf3,0xe7,0xcb, + 0xc3,0x48,0x74,0x10,0xf6,0x73,0x35,0x89,0xc3,0xf8,0xc3,0xa5,0xf3,0x38,0x10,0xf2, + 0x28,0xab,0xf3,0x47,0x52,0x8c,0x83,0x3c,0x27,0x25,0x60,0xbd,0x52,0x92,0xcd,0x1f, + 0x5,0xfc,0xc9,0x57,0xc2,0x2,0xc2,0x2f,0xbb,0x83,0xc5,0xd6,0x6c,0xfe,0x68,0xd3, + 0xbe,0x50,0x5f,0xe2,0x58,0x5,0xf3,0x9d,0x14,0xd1,0xc4,0x89,0x13,0x33,0x15,0x7f, + 0xf4,0xad,0x9f,0xb1,0xe,0x39,0x73,0xe6,0xa4,0xdf,0x99,0x13,0xef,0x5d,0x8f,0xf9, + 0x63,0xfd,0x6d,0x6d,0x6d,0x15,0x92,0xbd,0xbd,0x3d,0x8d,0x83,0xfb,0x66,0x8b,0x9f, + 0xed,0xdd,0xbb,0xb7,0x41,0xf8,0x83,0xfe,0x15,0xca,0x5,0x23,0xac,0xb7,0xae,0xf6, + 0x9d,0xf1,0xa7,0x50,0xa1,0x42,0xd0,0xab,0x57,0x6f,0x85,0x54,0xbb,0x76,0x1d,0xa5, + 0xb2,0x91,0x23,0x47,0xe,0x70,0x76,0x76,0x56,0xf8,0x9c,0xa7,0xa7,0x97,0x41,0xf8, + 0x83,0x3c,0x11,0xa7,0x9b,0x56,0xfe,0x20,0x95,0x2a,0x55,0xa,0xca,0x95,0xb3,0x4b, + 0x45,0x95,0x2b,0xff,0x41,0xfb,0x12,0x78,0x16,0xff,0x86,0x54,0xaf,0x5e,0x7d,0xfa, + 0xbb,0xa2,0xdf,0xa,0x15,0x2a,0x9c,0xae,0xfc,0x21,0x7d,0x75,0x29,0xf6,0xd7,0x91, + 0x3f,0xe8,0xc7,0x31,0x9a,0x37,0x6f,0x1e,0x49,0x2b,0x48,0x46,0xc1,0xb4,0x4f,0x2f, + 0xfc,0x5d,0x1b,0x5a,0xb9,0x72,0xa5,0x5a,0xfd,0x8a,0x7c,0xab,0x51,0xa3,0xa6,0x52, + 0x2a,0x52,0xa4,0x88,0x41,0xf4,0xcf,0xb0,0x61,0xfe,0x1d,0x7,0xc,0x98,0x40,0xfc, + 0xab,0x8d,0xa4,0x9d,0xcf,0x86,0x92,0x25,0x57,0x41,0xc9,0x12,0x3b,0x48,0x79,0xff, + 0x86,0x86,0xd,0xe7,0x82,0xb7,0xb7,0x3f,0xed,0x23,0x8a,0xf9,0xb3,0x77,0xef,0x56, + 0x58,0xb8,0x70,0x14,0x44,0x44,0x34,0x86,0xa1,0xc3,0x24,0xe0,0x33,0x4a,0x2,0xa3, + 0x46,0x4b,0x60,0xdc,0x78,0x63,0x98,0x3a,0xad,0xe,0xe9,0xe3,0x46,0x6a,0xc5,0x9f, + 0xb4,0x52,0x7a,0xf0,0xc7,0xdf,0xff,0xcf,0x99,0x55,0xfe,0x98,0xb,0x45,0x8b,0x3c, + 0x3,0x73,0xb3,0xef,0x90,0x2b,0xc7,0x77,0xb0,0x30,0xe7,0xcf,0x48,0xb9,0x73,0x92, + 0xb3,0xd9,0x19,0x68,0xd4,0x28,0x4,0xa6,0x4e,0x9d,0x4e,0xc7,0x6b,0xe,0x1e,0xdc, + 0x4b,0xda,0x5e,0x1f,0xf0,0x9d,0x94,0x3,0x22,0x22,0x71,0xbd,0x9,0x47,0x7e,0x23, + 0x34,0x2d,0x85,0x30,0xdc,0x3f,0x80,0x90,0xbf,0x2d,0xec,0xdb,0xb7,0x39,0xcb,0xf1, + 0x27,0x2c,0xec,0x7c,0xc1,0x89,0x13,0xf7,0xec,0xe8,0xd8,0xe1,0x29,0x54,0xab,0x92, + 0x0,0x7f,0x54,0x8a,0x87,0x3a,0xb5,0x7e,0x40,0xa3,0x86,0x89,0xd0,0x54,0x9a,0x4, + 0x52,0x87,0x24,0xa8,0x5b,0xe7,0x7,0x94,0x28,0x16,0xb,0xb9,0x4c,0xbf,0x43,0xce, + 0x1c,0x4f,0xa0,0x4e,0xed,0xbf,0x88,0xcc,0x6c,0x23,0xbc,0xa9,0x8,0xb,0xe6,0x73, + 0xb0,0x6c,0x29,0x7,0x9b,0x37,0x49,0x48,0xbf,0x5f,0x2,0x7b,0xf6,0x4a,0x60,0xff, + 0x7e,0x9,0xec,0x43,0xda,0xc7,0x87,0xad,0x5c,0xc1,0x41,0x78,0x4,0x7,0x41,0xc1, + 0xd6,0x10,0x1a,0xda,0x3b,0xcb,0xf0,0x27,0x3c,0xfc,0x65,0x75,0x3f,0xbf,0xb7,0x6f, + 0x6,0xd,0x8c,0x83,0x56,0x2d,0x93,0xa1,0x65,0x8b,0x64,0x68,0xdb,0x3a,0x19,0xda, + 0xb7,0x4b,0x6,0x97,0x8e,0xc9,0xd0,0xad,0x6b,0x32,0xb8,0x76,0xe1,0xaf,0xf1,0x77, + 0xfb,0x7a,0x89,0x60,0x5b,0x32,0x16,0xac,0x2d,0x3f,0x41,0x8b,0x16,0x43,0x88,0xed, + 0x26,0xfc,0xd8,0x63,0x4,0xbb,0xff,0x91,0xc0,0xa1,0xc3,0x12,0x38,0x71,0x92,0x83, + 0xcb,0x57,0x38,0xd2,0x6f,0xe6,0xe0,0xea,0x35,0xe,0xce,0x9d,0xe7,0x20,0x2a,0x9a, + 0x23,0xbc,0x94,0xc0,0xda,0xb5,0x1c,0x4c,0x21,0xb2,0x15,0x10,0xc8,0x41,0xbb,0x76, + 0x12,0x70,0x72,0x72,0x92,0xfb,0x4c,0xfa,0xa6,0x41,0x83,0x6,0xe9,0x85,0x3f,0x7e, + 0x7e,0x9f,0xdf,0x78,0x7a,0x24,0x51,0x3e,0x74,0xee,0xc4,0xf3,0xa2,0x4f,0xef,0x24, + 0xe8,0xeb,0x95,0x44,0xf2,0x48,0x84,0x21,0x43,0x12,0x61,0xd8,0xb0,0x44,0x7a,0xdd, + 0xb3,0x47,0x12,0x74,0x70,0x4e,0x86,0x26,0x4d,0x12,0x89,0x9c,0xc5,0x43,0x5e,0xab, + 0x57,0x44,0xdf,0x94,0xa7,0x32,0x72,0xf0,0x10,0x7,0x77,0xef,0x70,0xf0,0xe0,0x3e, + 0x7,0x8f,0x70,0x8e,0xfe,0x83,0x14,0xba,0x77,0xf,0xbf,0x91,0xc4,0x51,0x99,0xda, + 0xb2,0x59,0x2,0xb3,0x67,0x73,0x30,0x71,0x12,0x7,0x33,0x67,0x7a,0xca,0x75,0x92, + 0xae,0xb6,0x50,0x53,0xc2,0xf1,0x74,0x6d,0xf9,0x13,0x1e,0xfe,0x65,0xde,0xb0,0x61, + 0x9,0xd0,0xd5,0x35,0x19,0x3a,0x74,0x48,0x86,0x2e,0x9d,0x7f,0x42,0xff,0x7e,0x89, + 0x30,0x7c,0x78,0x2,0x8c,0x1b,0x17,0x7,0x1,0x1,0xdf,0x21,0x30,0xf0,0x2d,0xf8, + 0xfa,0xc6,0xd2,0xb0,0xc1,0x83,0x13,0xc1,0xbd,0xf,0xcf,0x23,0x47,0xd2,0xee,0x4a, + 0x14,0x8d,0x85,0x6,0xf6,0x7f,0xc2,0x89,0x13,0xa6,0x54,0x5e,0x6e,0xdf,0xc2,0xb5, + 0xb,0x46,0xf0,0xdf,0x4b,0x33,0xf8,0xdf,0x7,0xb,0xf8,0xf8,0x31,0xf,0x39,0xe7, + 0x81,0xa7,0x4f,0x73,0xc0,0xc5,0x4b,0x1c,0x1c,0x3d,0xc6,0xc1,0xee,0xdd,0x46,0xb0, + 0x61,0x3d,0x7,0xd3,0xa7,0x73,0x30,0x6c,0x78,0x3e,0xc2,0xb3,0xbd,0x19,0xc2,0x1f, + 0x65,0x3e,0x8a,0x2a,0xfe,0x4,0x5,0x7d,0x83,0x81,0x3,0x13,0xa9,0xcc,0xb4,0x91, + 0xb5,0xa9,0x3e,0x7d,0xfe,0x23,0xfa,0xe1,0x2b,0x8c,0xd,0x38,0x6,0x8d,0x3b,0x3b, + 0x82,0x5d,0xc3,0x62,0x60,0xef,0xd4,0x2,0xc6,0x8c,0x3f,0xe,0xa3,0x47,0xc7,0x53, + 0x39,0x42,0x59,0x6b,0xd3,0x26,0x19,0xaa,0x12,0x5d,0x95,0xc3,0xe4,0x35,0x4c,0x9d, + 0xe2,0x4,0x67,0xce,0xe0,0x77,0x55,0x39,0xb8,0x7f,0xdf,0x2,0xa6,0xaf,0xb6,0x85, + 0x96,0x43,0xab,0x43,0xad,0x4e,0xa5,0xa0,0xf7,0xa8,0xe2,0x70,0xed,0x46,0x1,0x78, + 0xf5,0x2a,0x17,0xdc,0xbe,0xcd,0x51,0x39,0xdb,0xb9,0x43,0x2,0xcb,0x97,0x71,0x30, + 0x76,0x1c,0x47,0xf8,0xdf,0x9f,0xfa,0xe,0x42,0xdf,0x53,0xdf,0xb4,0x76,0xed,0x5a, + 0x39,0x8f,0xc4,0xef,0x58,0x95,0xf1,0x27,0x34,0xf4,0xbc,0x15,0xca,0x48,0x3f,0x22, + 0x2f,0x28,0xf,0xa8,0x83,0x6b,0xd7,0xfa,0x6,0x2d,0x5b,0x1e,0x83,0x29,0xcb,0x57, + 0x83,0x73,0x60,0x75,0x90,0xf6,0xb7,0x83,0x16,0xc3,0x2b,0x41,0x43,0xf7,0xd2,0x50, + 0xb5,0x4d,0x31,0xf0,0x18,0xb0,0x10,0x26,0x4c,0x88,0x85,0x1,0x3,0x7e,0xd0,0xb6, + 0xd8,0xa4,0x71,0x22,0xb5,0x69,0x56,0x96,0x7b,0x88,0x2d,0xb7,0x24,0xed,0x26,0x3f, + 0x84,0xac,0x6e,0x7,0xce,0x41,0x55,0xa0,0xf9,0xd0,0xa,0xf4,0xd9,0xc6,0x7d,0xcb, + 0x40,0xa3,0x6e,0x36,0x70,0xf0,0x78,0x19,0x78,0xf6,0xd4,0x14,0xae,0x5c,0xe1,0x75, + 0xd1,0x3a,0xa2,0x8b,0x26,0x87,0x72,0xa4,0x3f,0x60,0x9b,0x6e,0x3a,0x48,0x48,0xf8, + 0xcd,0x21,0xe4,0x5,0xea,0xa1,0x19,0x33,0x66,0xa8,0xe5,0xf,0x69,0x5b,0x52,0x1f, + 0x9f,0x4,0xe2,0x93,0x27,0x51,0x9d,0x5c,0x8f,0xd8,0xa7,0xf2,0xe5,0x5e,0x43,0x93, + 0xe6,0x93,0x61,0x4a,0xb4,0x17,0x4c,0xd8,0xee,0x2,0xe1,0xc7,0x7b,0xc3,0xcc,0x8b, + 0x7d,0xe9,0x75,0x97,0xa0,0x3a,0x50,0xbd,0x55,0x69,0xa2,0x6f,0xde,0xc2,0x98,0x31, + 0x71,0x44,0x17,0x11,0x7d,0xdd,0x2a,0x19,0x8a,0x14,0x8a,0x5,0x53,0xa3,0xc7,0xd0, + 0xa9,0xb3,0x2d,0x8c,0x9a,0xd1,0x16,0x26,0x1f,0xec,0xd,0xbe,0xbb,0x3a,0xa7,0x7a, + 0xb6,0xdd,0xf8,0xea,0xd0,0xc8,0xb9,0x1a,0xc4,0xc4,0xe4,0x85,0x7f,0xef,0xa1,0xbe, + 0x96,0xc0,0xd6,0x2d,0x12,0x6a,0xfb,0xfb,0xf4,0x31,0x4e,0x77,0x5b,0x26,0x24,0x7c, + 0x57,0x8c,0x7d,0x25,0x7c,0xbf,0xa0,0x8a,0x3f,0x11,0x11,0x5f,0xa5,0xc3,0x86,0xfd, + 0xa0,0xba,0x7,0xf9,0x53,0xbd,0x6a,0x3c,0xf1,0x6d,0x2e,0x41,0x8b,0x5e,0x3,0x61, + 0xd3,0xdd,0xa9,0x30,0xe3,0x82,0x17,0xad,0xdf,0x9f,0x97,0x7,0xc3,0x9c,0x4b,0x3, + 0x49,0x7d,0x7b,0x41,0xb3,0xc1,0x15,0x61,0x8c,0xef,0x6e,0xa2,0x97,0xf8,0x76,0xd9, + 0xc9,0x25,0x89,0xf0,0x34,0x1e,0x4c,0x8,0x7f,0x5c,0xbb,0x96,0x86,0xc1,0x11,0xed, + 0x60,0xf5,0xad,0xa0,0x5f,0x9e,0xf5,0xdf,0xeb,0xa,0x8d,0x7a,0xdb,0xc1,0xd5,0x9b, + 0x65,0xe1,0xd1,0x23,0x9,0x9c,0x26,0x6d,0x71,0xfb,0x36,0x9,0xf5,0x93,0x90,0x3f, + 0xca,0xfa,0xa1,0xe9,0x41,0xe8,0x77,0x97,0x2b,0x57,0x8e,0xf2,0x88,0xc9,0x91,0x22, + 0xfe,0x10,0x5d,0x22,0x1d,0x3e,0xfc,0x7,0xd5,0x3d,0xc8,0x9f,0x6a,0x54,0x97,0x5c, + 0x81,0xca,0xf5,0xdd,0x21,0xfa,0xd9,0x26,0x98,0x77,0x65,0x38,0xad,0xe3,0xdc,0xcb, + 0x43,0x60,0xfe,0x95,0x11,0xa4,0xae,0x43,0xc0,0xeb,0x4f,0x29,0x4c,0xf0,0x3f,0x48, + 0xdb,0x18,0xea,0xea,0x1e,0x6e,0xc9,0xc4,0x57,0x4a,0xa0,0xfc,0xe9,0xed,0x6e,0x7, + 0x9d,0x3c,0x6a,0xc3,0x3f,0xf,0x16,0xc0,0xa2,0x6b,0xa3,0x53,0x3d,0x3b,0xe7,0xd2, + 0x20,0xe8,0x16,0xd8,0x18,0xae,0x5c,0xb5,0x23,0xba,0xda,0x84,0xea,0x2a,0x94,0x9f, + 0x29,0x53,0xb0,0x7d,0x19,0x53,0x5f,0x5c,0x99,0x6d,0x49,0xf,0x42,0x3e,0xe1,0x18, + 0xa,0x93,0x23,0x65,0xed,0x6b,0xc4,0x88,0x4,0x5a,0xc7,0x8e,0xc4,0x76,0xd5,0x27, + 0x7e,0x4d,0x9e,0xdc,0x6f,0xc1,0x2a,0x6f,0x8,0x44,0x6e,0x1d,0x1,0xc7,0x9e,0x6e, + 0x80,0xad,0xf7,0x66,0xc2,0xf2,0x1b,0x93,0x60,0xed,0xed,0xc9,0xb0,0xf1,0xee,0x14, + 0x8,0xd8,0xd0,0x17,0xc2,0xc2,0x9e,0x82,0x8f,0x4f,0x3c,0xf4,0xef,0x8f,0xfc,0x49, + 0x82,0x2a,0x95,0x79,0xfe,0xf4,0x1b,0x50,0x9,0x5a,0xb4,0x2d,0x6,0xb,0xe,0x6, + 0xc0,0x91,0x98,0xbf,0x53,0x3f,0x7b,0x67,0xa,0x4c,0x5c,0xd8,0xf,0xee,0xde,0xcd, + 0xd,0xff,0xfe,0xcb,0xc1,0xb1,0x28,0x8e,0xea,0x9f,0xf0,0x70,0x8e,0xe8,0x32,0xbb, + 0xc,0xb1,0x5f,0xa8,0xa3,0x19,0x7f,0x70,0xec,0xc4,0xc6,0xc6,0x46,0x2e,0x47,0xdd, + 0xba,0x75,0x7b,0x42,0x58,0x22,0x15,0xdb,0xaf,0x9,0x13,0xbe,0x82,0xa7,0x7,0x2f, + 0x7,0xcd,0x9a,0x26,0x41,0xe9,0x52,0xb1,0xc4,0x37,0x7e,0x4,0x65,0xfe,0x70,0x1, + 0xff,0x25,0x83,0x69,0x3d,0x8f,0xc6,0xac,0x85,0xfd,0x8f,0x97,0xc3,0x92,0xe8,0x10, + 0x18,0x35,0x71,0x1,0xa0,0xcd,0x43,0xdf,0xa8,0x37,0xf1,0x91,0x3a,0xb9,0x24,0x43, + 0xd1,0x42,0x71,0x60,0x9e,0xf3,0xa,0x4c,0xf0,0x2d,0x5,0x3d,0x7b,0xe6,0x84,0xa6, + 0xce,0x95,0x61,0xfa,0xf6,0x31,0xa9,0x9e,0x9d,0xbf,0x3b,0x4,0x16,0x2d,0x6e,0x4b, + 0xfd,0xc6,0xb3,0xc4,0xf,0x42,0xbf,0x7a,0xf5,0x4a,0xbe,0xcf,0xb1,0x60,0xc1,0x78, + 0xda,0x4f,0x49,0x6f,0xfe,0x28,0xf2,0xf,0x6b,0xd4,0xa8,0x41,0xf5,0x91,0xa7,0xa7, + 0xa7,0x87,0x98,0x37,0x78,0xf8,0xfa,0x7e,0x3f,0x83,0x7a,0x4,0xdb,0x8a,0xb3,0x73, + 0x12,0x34,0x6e,0x94,0x4,0xf9,0xac,0xbf,0x83,0xa9,0xf1,0x79,0x28,0x5a,0x74,0x0, + 0x54,0xa8,0x53,0x15,0x9a,0x74,0xa9,0x1,0xe,0xed,0x5b,0x42,0x8d,0x9a,0xbd,0x88, + 0xcf,0x7b,0x98,0xf2,0xb2,0xb,0x69,0x93,0x9d,0x88,0xfd,0x6a,0xde,0x2c,0x89,0xf6, + 0xd3,0x1c,0x9b,0x46,0xc0,0xcc,0x59,0xb9,0x60,0x92,0x1f,0x69,0x2f,0x7d,0x2c,0x41, + 0xda,0xb4,0x38,0xfc,0xd1,0xa0,0x34,0x34,0x76,0xad,0x1,0xed,0x7b,0xd5,0x85,0x9, + 0x13,0x2b,0x91,0xf2,0x71,0x70,0xe4,0x28,0xdf,0xef,0x40,0x7f,0x1b,0xf9,0x13,0x14, + 0x5c,0x90,0x7e,0xf7,0x14,0xc7,0xa,0x74,0xa1,0xab,0x57,0xaf,0x2a,0x1c,0x3b,0x61, + 0x76,0x4a,0x1d,0x7f,0x90,0x4a,0x94,0x28,0x81,0x6d,0x2b,0x48,0x11,0x7f,0xc2,0xc2, + 0x5e,0x77,0x1d,0x3b,0x36,0xe,0x50,0x4f,0xa3,0xcf,0x8c,0x3e,0x5f,0x8d,0x6a,0x9, + 0xb4,0x9f,0x65,0x69,0xf1,0x1a,0xf2,0xe7,0x3b,0x4d,0x68,0x2d,0x14,0x29,0xbc,0x95, + 0xf4,0xe1,0xf,0x43,0xb5,0xaa,0xf,0xa0,0xa9,0x23,0xb1,0x77,0x2d,0x93,0xa8,0xbf, + 0x64,0x57,0x36,0x9e,0xc4,0xfb,0xf,0xd6,0xae,0x2f,0xe,0xdb,0xb7,0x73,0x10,0x49, + 0xf4,0x89,0x9f,0x3f,0x7,0x43,0x87,0x4a,0xa0,0x5f,0x7f,0x9,0xf1,0xff,0x88,0x9f, + 0xec,0xcb,0xf7,0x51,0x57,0x11,0x7e,0x6c,0xdb,0x2a,0xa1,0xb6,0x1d,0xfd,0xed,0xe5, + 0xa4,0xbf,0x36,0x78,0x3c,0x7,0x6d,0x46,0xeb,0x46,0x33,0xd7,0xc,0xa1,0xef,0x2b, + 0x85,0x3c,0xe8,0xd7,0xaf,0x1f,0x54,0xa9,0x52,0x85,0xea,0x13,0x94,0xd,0x1c,0x9b, + 0x54,0xc7,0x1f,0x9c,0x37,0xa4,0x8c,0x3f,0x78,0x84,0x84,0x7c,0xdd,0x34,0x7e,0x7c, + 0x1c,0xf5,0x9b,0xd1,0x87,0x6e,0x4a,0xda,0x99,0x43,0x13,0x9e,0x4f,0x36,0x25,0xe3, + 0x48,0x1f,0x22,0x96,0xd8,0xf0,0x38,0xa8,0x58,0x3e,0x1e,0xea,0xd6,0xfe,0x41,0xf2, + 0x4e,0x22,0xfd,0x26,0x8c,0x93,0x8,0x79,0x2d,0xbf,0x13,0xb9,0x9b,0xa,0xc7,0x49, + 0x9f,0x2b,0xea,0x38,0xbf,0xee,0xf9,0x1f,0xd2,0xf,0x5b,0xbf,0x4e,0x2,0xf3,0xfe, + 0xe2,0xfb,0xf2,0x48,0xa8,0x6b,0xb0,0x7f,0xb6,0x97,0xf0,0xe5,0xf0,0x11,0x8e,0xf6, + 0xd1,0xce,0x9e,0x35,0x1,0xd7,0x34,0xf0,0x27,0x7c,0x95,0x6b,0x2a,0xfe,0xe0,0x9c, + 0x32,0x94,0x27,0x9c,0x83,0xc3,0xc6,0xa8,0x2d,0x2d,0x2d,0xa9,0x3c,0xa5,0x85,0x3f, + 0x61,0x61,0x2f,0xab,0xa3,0xbf,0x8c,0x6d,0xac,0x23,0xe9,0x83,0xa2,0x6c,0x20,0xf, + 0x5a,0xb4,0xe0,0xf9,0x80,0x7a,0xa9,0x69,0x53,0xe2,0x3f,0x12,0xd9,0x6a,0xde,0x1c, + 0xc3,0x78,0x5d,0x65,0x5f,0xff,0x7,0x14,0x2f,0xfa,0x1d,0x16,0x2d,0x72,0x21,0xfd, + 0x2d,0x53,0xea,0xd7,0x60,0x1f,0x2,0xf5,0xb,0xea,0xdf,0x43,0x87,0x39,0x79,0xff, + 0x1d,0xdb,0x14,0xfa,0xcd,0xd8,0x57,0xbd,0x77,0x57,0x2,0xaf,0x5f,0xe5,0x84,0x43, + 0xe7,0xcc,0x75,0xe6,0x8d,0x22,0xfe,0xbc,0x7e,0xfd,0x9a,0x7e,0x93,0xf5,0xc8,0x91, + 0x23,0x74,0x9e,0x2,0x8e,0xff,0xa2,0xfc,0x30,0x19,0xd2,0x9d,0x3f,0x8f,0x5c,0xb1, + 0x7f,0x85,0xf6,0x8,0x7d,0x62,0xe4,0x49,0xab,0x56,0x7c,0x1f,0xb,0xf9,0x85,0x3a, + 0xd8,0xb5,0xcb,0x4f,0x7a,0x76,0x71,0xc1,0x3e,0x3c,0xe1,0x59,0x33,0x5e,0x57,0xd9, + 0x95,0xfd,0xc,0x5d,0xc7,0x96,0x86,0x17,0x6f,0xac,0xe0,0xdd,0xbb,0xdc,0x84,0x4f, + 0x46,0xa4,0xfe,0x1c,0xed,0x47,0x20,0xaf,0xce,0x5f,0xe0,0xcf,0xd7,0xae,0x71,0x34, + 0xfc,0xc5,0xf3,0x1c,0xf0,0xed,0x5b,0x5e,0xb8,0x78,0x27,0x4f,0x9a,0x78,0xa3,0x88, + 0x3f,0x38,0x6f,0x2,0xe5,0x7,0xe7,0xbc,0xe0,0x3d,0xca,0x11,0x8e,0xd5,0xe3,0x98, + 0x7d,0x5a,0xf8,0x43,0xec,0xfc,0x4a,0xb4,0xf3,0x6e,0x6e,0xfc,0x18,0x6,0xf2,0xa5, + 0x7,0xf1,0x8d,0xfb,0xf6,0xe5,0xfb,0xec,0xa8,0xbf,0x7,0xc,0x48,0x4,0xec,0xe3, + 0xbb,0x75,0xe7,0xfb,0xf8,0xed,0xda,0xf1,0x32,0x54,0x9d,0xb4,0x41,0x69,0xaf,0x26, + 0xb4,0xbc,0xd3,0xd6,0xe6,0x80,0x4b,0x77,0xf2,0xd0,0x7e,0x29,0xf6,0x4f,0x9f,0x3f, + 0x33,0xa5,0xbe,0xce,0xcb,0x17,0x66,0xf0,0x9e,0xf0,0xee,0xcb,0x17,0x2b,0xb8,0x78, + 0x3b,0xf,0x84,0xae,0x30,0x4d,0x33,0x6f,0x14,0xf1,0x7,0xe7,0x87,0x7c,0xfe,0xfc, + 0x59,0xce,0x1f,0x9c,0xcf,0xe0,0xe1,0xe1,0x21,0x7f,0x77,0xa2,0xb,0x7f,0xc2,0xc3, + 0x3f,0x97,0x20,0xfa,0x87,0xd6,0x1d,0xeb,0x8d,0x6d,0xb,0x6d,0x93,0xbb,0x7b,0x12, + 0xd1,0xb1,0x9,0x30,0x69,0x52,0x2c,0xed,0xc3,0xe3,0x79,0xe4,0xc8,0x4,0x18,0x48, + 0xf8,0x84,0x7a,0xbc,0x6d,0x1b,0x59,0x7f,0xad,0x66,0x2,0x34,0xe9,0x10,0xfa,0x4b, + 0xd9,0x43,0x57,0xe4,0x10,0x91,0x7e,0x78,0xa2,0x8a,0x3f,0x48,0x38,0x6f,0xe3,0xcb, + 0x97,0x2f,0xd4,0xb6,0x61,0x7b,0xd3,0x64,0x7e,0x82,0x6a,0xfe,0xbc,0xde,0x8c,0xba, + 0x19,0xfb,0xe3,0x54,0xd7,0x34,0x4b,0xa2,0x7d,0x6,0xc,0x9b,0x1c,0xf6,0x18,0xbc, + 0x6,0xcf,0x1,0xc7,0x56,0xee,0xd0,0xb9,0x5b,0x8,0x8c,0x1b,0x77,0x1a,0xfc,0xfc, + 0xbe,0x53,0x99,0x72,0xeb,0x9e,0x62,0xeb,0x1a,0x35,0x3b,0xa2,0xf7,0xba,0xeb,0xca, + 0x1f,0x24,0x9c,0x77,0x88,0x7d,0x74,0xf1,0x3b,0x37,0x6d,0xf9,0x13,0x16,0x76,0xb7, + 0x3a,0xca,0x4e,0xff,0xfe,0x3f,0x68,0xbb,0x92,0x3a,0x24,0x43,0xe3,0xc6,0x49,0x30, + 0x68,0xe0,0xb,0x98,0xb9,0x60,0x23,0x74,0xf4,0xb5,0x7,0x7,0x41,0xff,0xbd,0x56, + 0xbb,0x32,0x30,0x74,0xf8,0x16,0x8,0xc,0x44,0xff,0x30,0x11,0x5a,0x93,0xbe,0x69, + 0xad,0x1a,0x9,0x50,0xb5,0x4a,0xc,0x34,0xed,0x67,0x9d,0x29,0xf8,0x23,0xb4,0xef, + 0xe8,0x1b,0xa7,0xc5,0xbe,0x13,0xbd,0x43,0xf5,0xb2,0x97,0x67,0x22,0xed,0x5f,0x34, + 0x6c,0x90,0x8,0x75,0x88,0xfd,0xe,0x9c,0xbc,0x13,0x22,0x8f,0xf4,0x57,0xd8,0x7f, + 0x6f,0xd4,0xb1,0xe,0xed,0xbf,0x63,0xff,0x2,0x65,0xae,0x81,0x7d,0x22,0x91,0xa1, + 0x78,0x68,0xd9,0xd1,0xd7,0xe0,0xfc,0x41,0xfb,0x8e,0x73,0xa3,0x70,0x5e,0x24,0xda, + 0x76,0x9c,0xa7,0x9d,0x16,0xfb,0x4e,0xfa,0xef,0x41,0xa3,0x46,0xc5,0xd3,0xf1,0x40, + 0xb4,0x4d,0x55,0xfe,0x48,0x20,0xf6,0xe8,0x3d,0xc,0x9,0x8,0x52,0xd2,0x7f,0xef, + 0x4d,0xfb,0xef,0x93,0x2,0xa3,0x49,0xfb,0x8b,0x95,0xfb,0x93,0x55,0xab,0xc4,0x83, + 0x83,0xc3,0x5,0x70,0xf4,0xca,0x67,0x50,0xfe,0xa0,0xbe,0x61,0xf6,0xb,0x79,0x82, + 0xf6,0x1d,0xe7,0xd3,0xea,0x6a,0xdf,0x23,0x23,0xbf,0x5,0x8d,0x18,0xf1,0x3,0xbc, + 0x48,0x5b,0xc1,0xf6,0x65,0x6b,0x93,0x40,0xfa,0xa7,0xf,0xa0,0x56,0x33,0x67,0xda, + 0x7f,0xc7,0x7e,0x37,0xdf,0x7,0xf7,0xa6,0xd7,0x78,0xf6,0xfa,0xcb,0x11,0x7c,0xfc, + 0xd7,0x91,0xfe,0x5d,0x1c,0xe5,0x2b,0xea,0xab,0x1a,0xd5,0x7f,0x40,0x9d,0x3a,0xfb, + 0xc1,0xa1,0x4f,0x51,0xcd,0xeb,0x37,0x92,0x83,0xf6,0x83,0x8d,0xa0,0x9d,0xb7,0x44, + 0x6f,0xfc,0xe1,0xe7,0x45,0xde,0x92,0xdb,0x2f,0x9c,0xaf,0xd9,0xa1,0x43,0x7,0x9d, + 0xed,0x7b,0x44,0xc4,0x37,0xf,0x1c,0xdf,0x40,0x3b,0x8e,0x36,0xbd,0x82,0x5d,0x2, + 0xe4,0x30,0xfe,0xc,0xf9,0xa,0x8e,0x83,0x88,0xad,0x43,0x21,0xa,0xfb,0xef,0xff, + 0xce,0x82,0x95,0x37,0xfc,0x60,0xdd,0xed,0x50,0xd2,0x7f,0x9f,0xa,0x93,0x36,0xf7, + 0x80,0xb0,0x88,0xeb,0x80,0x7d,0x12,0xb4,0xf5,0x2d,0x5b,0x26,0x43,0xed,0x5a,0x3f, + 0x88,0xec,0x45,0x6b,0xce,0x1f,0xc2,0x9b,0x2e,0xbd,0x4c,0x88,0x3f,0x6a,0x44,0xfc, + 0x6,0x23,0xca,0x27,0x7d,0xf0,0x87,0xd9,0xf7,0x8b,0x17,0x2f,0xd2,0x7b,0x9c,0x77, + 0xd8,0xb1,0x63,0x47,0x9d,0xed,0x7b,0x64,0xe4,0x57,0x29,0xda,0x6d,0xf4,0x6d,0xd0, + 0xb6,0x63,0x5b,0xc9,0x6f,0x1d,0x7,0xb9,0x73,0x9d,0x84,0xb2,0x35,0xeb,0xc0,0x82, + 0x43,0x81,0x70,0xf6,0xe5,0x3f,0x94,0x8e,0x3f,0xdb,0x42,0xc7,0x2b,0xbc,0xc6,0x8e, + 0x2,0x7f,0xff,0xcf,0xd4,0xce,0xa3,0xce,0x42,0xf9,0xc1,0xf1,0xb1,0x32,0xa5,0x4f, + 0x43,0x73,0x8f,0xbc,0x6a,0xeb,0x84,0xf2,0xd2,0xb9,0xbb,0x9,0xd1,0xa3,0x46,0xe0, + 0x47,0xfa,0xee,0xd8,0x9f,0x75,0xed,0x63,0xa2,0x37,0xfd,0x8c,0xed,0x4b,0x9f,0xf6, + 0x3d,0x2c,0xec,0xdb,0x9b,0xa1,0x43,0x13,0xe9,0x58,0x29,0xb5,0x47,0x35,0x13,0xa1, + 0x40,0xbe,0x38,0xd2,0x27,0xdd,0xd,0xc5,0xca,0x34,0x5,0x69,0xf7,0x5a,0xe0,0xe2, + 0xd3,0x8,0x9c,0xbd,0x1d,0xa1,0x41,0xbb,0x8e,0xe0,0xd4,0x62,0x23,0xf4,0xee,0x95, + 0x24,0x1b,0x53,0x4b,0xa2,0x63,0x46,0xa5,0x4a,0xc4,0x11,0x3d,0x3d,0x19,0xba,0x93, + 0x7a,0x77,0x71,0x37,0x86,0x8e,0x5e,0x28,0x13,0x12,0xca,0xb,0x46,0xce,0x83,0x24, + 0xe0,0xe2,0x6e,0x4,0xbd,0x7a,0x19,0x13,0x7b,0x69,0x44,0xc7,0x35,0xfe,0x22,0xfd, + 0xb3,0x25,0x8b,0x39,0xf0,0xec,0x67,0xac,0x37,0xfe,0x68,0x3b,0xbe,0xa1,0x8e,0x3f, + 0x44,0x7,0x8d,0x42,0x5f,0x7,0x65,0x8,0xeb,0x8c,0xfd,0x2b,0xd4,0x27,0x28,0x47, + 0xd6,0x79,0xbe,0x40,0xa1,0x2,0x87,0xa1,0x78,0xb1,0x15,0x44,0x3e,0xf6,0x43,0x79, + 0xbb,0x33,0x94,0x27,0x6d,0xdb,0xf2,0x7d,0x32,0x47,0x69,0x32,0x94,0xb1,0x89,0x87, + 0x42,0x5,0x9f,0x91,0x7c,0xca,0x43,0x70,0x8,0x47,0x7c,0x48,0x9,0xad,0x3f,0x8e, + 0x99,0x76,0xeb,0x66,0x42,0x79,0xe6,0xea,0x6a,0x42,0xaf,0x51,0x66,0xc6,0x91,0xfe, + 0xe8,0x8c,0x99,0x1c,0xfc,0xfd,0x37,0x8e,0xd1,0x1b,0x91,0x32,0x4b,0x60,0xf2,0x34, + 0xfd,0xe8,0x9f,0xf4,0xe0,0xf,0x1e,0x93,0x27,0x7f,0x7b,0x82,0x7a,0xc8,0xc3,0x9d, + 0xf7,0xa1,0xb1,0x5f,0x6a,0x5f,0x3f,0x11,0xca,0xd8,0xc6,0x53,0x59,0x2a,0x57,0x26, + 0x9e,0xf8,0xc9,0x3f,0x28,0x3f,0xb0,0xdf,0xda,0xd4,0x31,0x99,0xf6,0xef,0xff,0xa8, + 0x9c,0x0,0x5,0xf2,0xc6,0x11,0x1b,0x31,0x92,0xf6,0x3f,0x37,0xac,0xe7,0xdf,0x21, + 0x63,0xbf,0x3d,0x32,0x12,0xc7,0x76,0x78,0xf2,0xf,0x30,0x85,0xb0,0x50,0xe,0x66, + 0x93,0x7e,0xfc,0xca,0x95,0x1c,0x7d,0xd7,0xbc,0xff,0x80,0x4,0x4e,0x9d,0xe6,0xe0, + 0xe1,0x23,0x53,0x18,0x35,0x23,0x73,0xf3,0x87,0xc8,0x10,0xf1,0x13,0xbf,0xbf,0xc1, + 0x31,0x20,0x2f,0xcf,0x24,0x3a,0x5e,0xef,0xdc,0x9e,0xf0,0xc9,0x89,0xef,0x83,0x36, + 0x6b,0x8a,0xe3,0x60,0xbc,0x2e,0xc6,0x36,0x88,0x32,0xd4,0xb8,0x61,0x22,0x54,0xaa, + 0x10,0xf,0x8e,0xe,0xdb,0x89,0x3e,0xcc,0x43,0xec,0x6,0xdf,0x6f,0x3f,0x74,0x48, + 0x42,0xdf,0x37,0xa3,0x5c,0xe0,0xf8,0xf2,0xb6,0xad,0xfc,0xbb,0x2e,0xc,0x43,0x1e, + 0x1e,0x38,0xc8,0xf3,0xe5,0xfa,0x75,0x9,0x7c,0x20,0xfd,0xb4,0xcb,0x77,0xad,0xf4, + 0x66,0xbf,0xd2,0x8b,0x3f,0x32,0x1e,0x95,0x40,0x5d,0x84,0xf6,0x1e,0xfb,0xf,0xbd, + 0x7b,0x25,0x53,0xfb,0x84,0xbc,0x42,0x99,0xea,0xea,0xfa,0x13,0xba,0x77,0x4b,0xa6, + 0xba,0x87,0x9d,0x7b,0xb8,0x7d,0x81,0xd,0xbb,0x1c,0x49,0xbf,0xdd,0x1c,0x1e,0x3f, + 0xe2,0x28,0x61,0xbf,0xfd,0xcc,0x59,0xfe,0x7d,0x3b,0x8e,0x6f,0x1c,0x3e,0x22,0xa1, + 0xef,0x4c,0x71,0xbc,0x7,0xc7,0x36,0x6e,0xde,0xc4,0x3e,0xbc,0x9,0xc4,0xc6,0xe6, + 0x87,0x97,0x6f,0xf3,0x41,0xf7,0x0,0xfd,0xd9,0xf7,0xf4,0xe4,0xf,0x93,0x23,0x42, + 0x9b,0x7d,0x7d,0xe3,0x0,0xdb,0x1b,0x8e,0x7,0x21,0xa1,0x6e,0xf2,0x1e,0xf2,0x3, + 0x46,0x8f,0x4e,0x80,0x9,0x13,0xe2,0x0,0x7f,0xf,0xc,0xfc,0x4,0xbd,0x7d,0xdc, + 0x69,0x39,0xe7,0x6d,0x31,0x83,0x97,0x6f,0xac,0xe0,0xc3,0xfb,0xdc,0xf0,0xea,0x3f, + 0x33,0x78,0x1a,0x63,0x4,0x31,0x4f,0x24,0x94,0x5f,0xf,0x1e,0xf0,0x7c,0x7b,0xfe, + 0xcc,0x98,0xf2,0x11,0xfb,0xf0,0xaf,0xdf,0xe5,0x85,0x95,0xbb,0x73,0xe9,0xcc,0x17, + 0x45,0xfc,0x39,0x7c,0xf8,0x30,0xf4,0xec,0xd9,0x93,0xe8,0x3a,0x57,0x4a,0xb8,0x86, + 0x89,0x11,0x8e,0xc5,0xeb,0x83,0x3f,0xec,0x88,0x88,0x78,0xe3,0x8a,0x7d,0x88,0xc9, + 0x93,0xbf,0x53,0xa,0xd,0xfd,0x46,0xfa,0x14,0x9f,0x8,0x7d,0x24,0xfd,0xbe,0x17, + 0x44,0x87,0xdc,0x84,0xe9,0xd3,0xe7,0x40,0x8d,0xf6,0xa9,0xcb,0x3b,0x73,0x9d,0x29, + 0x5c,0xb9,0x6b,0x9,0x9,0x9,0x5,0x29,0xa1,0x8c,0xc4,0x7e,0xcf,0x27,0xbf,0x3f, + 0x7c,0x2e,0x37,0x8d,0x93,0x56,0xbe,0x28,0xe2,0xf,0xda,0x75,0xf4,0xd,0xd1,0x6f, + 0xc6,0xf5,0x43,0xb8,0x56,0x88,0xd5,0x3f,0xad,0xe3,0x63,0xca,0xe5,0xe9,0x6b,0xf5, + 0x45,0x8b,0x76,0xc1,0xb5,0x6b,0xef,0x88,0x4e,0x3d,0x4d,0x30,0x3a,0x25,0x97,0x55, + 0xec,0x1f,0x8b,0xf9,0x23,0xa4,0xfe,0x11,0x12,0x18,0xf7,0x97,0x29,0xa5,0xc1,0x53, + 0x75,0xf3,0xff,0x74,0xe1,0xf,0xae,0x3f,0x63,0xeb,0x8,0xd9,0x7b,0xf6,0xf4,0xe2, + 0xf,0x1e,0x38,0xcf,0xb,0xd7,0xc4,0x88,0xdb,0xb2,0x3a,0xfe,0x64,0x4,0x89,0xf9, + 0x83,0x6b,0xac,0x4e,0x9c,0x38,0x41,0xec,0xc0,0x7e,0xfa,0xae,0xb,0x79,0x84,0xef, + 0xfe,0xb2,0xf9,0x93,0x9a,0x3f,0x48,0x38,0x6,0x8d,0x72,0x84,0xe5,0x34,0x14,0x7f, + 0x2a,0x4a,0x33,0x2f,0x7f,0x90,0x70,0x5d,0x2f,0xca,0x91,0x21,0xf8,0x83,0xeb,0x45, + 0xb1,0xef,0x97,0x11,0xf3,0x52,0x94,0x11,0x8e,0x13,0xb2,0xb5,0x6f,0xc8,0x1f,0x2c, + 0x27,0xae,0xe5,0x13,0x12,0x86,0x8f,0x1c,0x39,0x32,0xc3,0xf9,0x93,0x15,0x29,0x9b, + 0x3f,0x19,0xcf,0x9f,0x85,0xb,0x17,0x7e,0xfc,0xfa,0xf5,0xeb,0x2f,0x72,0xab,0x6f, + 0xca,0x88,0x7d,0x4c,0x70,0xec,0x55,0xdf,0xfc,0xc1,0xb5,0x6,0xe8,0x6f,0x31,0xff, + 0x22,0x2b,0xd3,0xf3,0xe7,0xcf,0xe9,0x9a,0x63,0x7d,0xf2,0x7,0x8f,0xc0,0xc0,0x40, + 0xe9,0xf4,0xe9,0xd3,0x3f,0xa,0xd7,0x2c,0x65,0x55,0x42,0x39,0xc2,0x71,0x7c,0x7d, + 0xf2,0x87,0xc9,0x11,0xee,0xab,0xf1,0xbb,0xf0,0x8,0xe7,0x1b,0xe9,0x93,0x3f,0xbf, + 0x9b,0x1c,0xbd,0x7c,0xf9,0x52,0xce,0x23,0x7d,0xf1,0x7,0x8f,0xdf,0x49,0x8e,0x70, + 0x7c,0x1a,0x79,0x24,0xe3,0xcf,0x2f,0x73,0xeb,0x74,0x3d,0x50,0x8e,0x48,0xbf,0xe6, + 0x23,0xfa,0xd0,0x59,0x9d,0x36,0x6d,0xda,0xf4,0x91,0xc8,0x50,0x65,0x15,0xd5,0xa5, + 0x7b,0x89,0x32,0xf1,0x10,0x5c,0x4b,0x5,0xd7,0x36,0x82,0x6b,0x2b,0xc1,0xb5,0x99, + 0xe0,0xda,0x58,0x70,0x2d,0xa1,0xfb,0x93,0xa,0x32,0x88,0x16,0x64,0x10,0x23,0xc8, + 0xe0,0x93,0x20,0x83,0x78,0x41,0x6,0x49,0xa,0xae,0xcd,0xc,0x78,0x1d,0x2f,0xb8, + 0x8e,0x11,0x5c,0x47,0x2b,0xb9,0xe,0x56,0x72,0xcd,0xa5,0xe1,0x9a,0xa5,0x63,0xa5, + 0xe2,0x3a,0x5a,0xcb,0x6b,0x65,0xe9,0x70,0x7a,0xba,0xd6,0xb6,0x9c,0x31,0x82,0xeb, + 0x4f,0x82,0x6b,0xa1,0x3c,0xa4,0x12,0xc4,0xe0,0x74,0xbe,0x8e,0x16,0x5c,0xc7,0x8, + 0xae,0x3f,0x9,0xae,0xe3,0x5,0xd7,0xb2,0x82,0xa2,0x3c,0xe3,0x3e,0xa4,0x34,0x29, + 0x49,0xca,0x3e,0xa4,0x5c,0x4e,0x9,0x27,0x3e,0x70,0x1f,0xd2,0xdf,0x78,0x2f,0xd2, + 0xac,0x42,0x7a,0xb3,0x1f,0xda,0x1e,0xd9,0xf8,0x67,0x1a,0x32,0x88,0xc,0x30,0x3f, + 0xd8,0xd0,0xfe,0xd4,0xff,0x37,0x12,0xbe,0xff,0x30,0xa4,0xc,0x64,0xe3,0x6f,0x58, + 0xfc,0xd,0x2d,0x3,0xd9,0xf8,0x1b,0x1e,0x7f,0x43,0xca,0x40,0x36,0xfe,0x99,0x3, + 0x7f,0x43,0xc9,0x40,0x36,0xfe,0xe9,0x4b,0x6c,0x3e,0xac,0x26,0xf8,0x1b,0x42,0x6, + 0xb2,0xf1,0x37,0x8c,0x1c,0x28,0xda,0x47,0xc1,0x10,0x32,0x20,0xc4,0x1f,0xdf,0x13, + 0xe9,0xba,0xd6,0x34,0x9b,0x54,0x13,0xbe,0x47,0xbc,0x76,0xed,0x1a,0x9d,0x7b,0x80, + 0xbc,0x56,0xb5,0x5f,0x4d,0x46,0xca,0x0,0xcb,0xf,0xe5,0x93,0x7d,0xbf,0x20,0x9b, + 0xd2,0x87,0x2,0x3,0x3,0x61,0xcc,0x98,0x31,0x72,0x5d,0xa0,0x4a,0x7,0x64,0x94, + 0xc,0xb0,0xbc,0xd8,0xbc,0x18,0xdc,0x4b,0x1b,0xcb,0x89,0xf4,0xf7,0xdf,0x6b,0xe8, + 0x5a,0x20,0x71,0xb9,0x70,0x7f,0x6e,0xdc,0x5f,0x1a,0xdf,0x7f,0xe0,0xde,0xe6,0xe2, + 0xdf,0xf1,0x19,0xdc,0x6f,0x8,0xf7,0xd8,0xdb,0xb9,0x73,0x17,0x8d,0xa7,0x2c,0x2e, + 0x4b,0xb,0xe3,0x8e,0x1f,0xcf,0xef,0x5,0x70,0xe9,0xd2,0xc5,0x54,0x7b,0x80,0x33, + 0xc2,0xe7,0x31,0x1e,0x4b,0x57,0xdf,0xf1,0xd4,0xd5,0x87,0x95,0x4f,0x5d,0x5a,0xaa, + 0xea,0x99,0x2f,0x5f,0x3e,0x70,0x75,0xed,0xaa,0x91,0x1d,0xc8,0x8,0x19,0x60,0xf9, + 0x60,0x39,0x98,0xc,0xe0,0xda,0x77,0xcc,0x6f,0xf8,0xf0,0x61,0x69,0xaa,0x2b,0x8b, + 0x33,0x7a,0xf4,0x68,0x1a,0x8e,0x7b,0xc3,0x8b,0xe5,0x9,0xe3,0xe2,0xfe,0xe5,0x2c, + 0x2e,0xfb,0x36,0x8,0xc6,0x15,0xa7,0xcb,0x64,0xa,0x69,0xd2,0x24,0x3f,0x1a,0x57, + 0x9f,0xf1,0x30,0x5f,0x75,0xf5,0xc1,0xb2,0xaa,0x4b,0xb,0xaf,0x55,0xd5,0x13,0x65, + 0x60,0xe1,0xc2,0x5,0x99,0x42,0x6,0x82,0x65,0xfb,0x75,0x2a,0x92,0x81,0x7a,0xf5, + 0xea,0xa9,0xad,0x2b,0xf2,0x45,0xf8,0x1d,0xe,0xc6,0x6b,0x21,0xa6,0xc8,0x53,0xe4, + 0x7,0xfe,0x86,0xd7,0x62,0x62,0xe9,0xe1,0x33,0x4c,0xde,0x14,0xc5,0x43,0x62,0xe9, + 0xb2,0xfd,0xcc,0xf4,0x1d,0x8f,0x95,0x5f,0x5d,0x7d,0xd4,0xa5,0xa5,0xae,0x9e,0xc8, + 0x5b,0xe4,0x5d,0x66,0x97,0x1,0x4d,0xeb,0x8a,0xdf,0x27,0xc0,0xef,0x57,0x30,0x62, + 0x71,0xb0,0x8e,0xc2,0x36,0x85,0xbc,0xc4,0xb8,0x38,0xff,0x92,0x11,0xfe,0x8e,0xf1, + 0x90,0x58,0xbb,0x61,0x6d,0x31,0x2a,0xea,0x98,0x3c,0x1e,0x4b,0x17,0xf3,0x65,0x72, + 0x99,0x5e,0xf1,0x54,0xd5,0x7,0xe3,0xaa,0x4b,0x4b,0x5d,0x3d,0x11,0x7f,0xc4,0x32, + 0xb3,0xcb,0xc0,0xa0,0x41,0x3,0xd5,0xd6,0x95,0xf1,0x4c,0xcc,0x2f,0x94,0xd,0x61, + 0xbb,0xc2,0xba,0xa,0x79,0x2c,0x26,0x86,0x1,0x5e,0xf7,0xef,0x3f,0x40,0x2e,0x2f, + 0x8a,0xe2,0x32,0x7d,0xc2,0xd2,0xd4,0x47,0x3c,0x96,0x2f,0xb3,0x3f,0xca,0xea,0xa3, + 0x49,0x5a,0xf8,0x1b,0x93,0x7d,0x65,0xf5,0xc4,0x72,0x65,0x15,0x3d,0x80,0xbe,0xa0, + 0x3a,0xfe,0x32,0x5d,0x20,0xd4,0x9f,0xac,0x3d,0xb,0x7d,0x6,0xe6,0xf,0xa8,0xb3, + 0xb5,0xdd,0xba,0x75,0x97,0x87,0xa9,0xf3,0x43,0x30,0x4d,0x4d,0xe3,0x69,0x92,0xaf, + 0x22,0x3b,0xc0,0xec,0x97,0xb6,0x79,0x62,0xba,0xaa,0xe2,0xa0,0x3f,0x90,0x15,0x64, + 0x0,0xf3,0x53,0xd4,0x27,0x10,0xfa,0x36,0x9a,0xf8,0x47,0xcc,0xd7,0x32,0x94,0x3f, + 0xc8,0xe4,0x56,0x55,0xbe,0x4c,0x87,0x6b,0x52,0xf,0x4c,0x4f,0x2c,0x27,0x8a,0x7c, + 0x24,0x55,0x69,0x65,0x15,0x19,0xc0,0x3e,0x81,0x3a,0xdf,0x46,0x1b,0x5f,0xcb,0x10, + 0xfe,0xa0,0xa6,0xf9,0x6a,0x9a,0x27,0xb3,0x3,0x42,0x7b,0x81,0xb6,0x9f,0xa5,0xa7, + 0x2c,0x1d,0x71,0x5a,0x88,0x25,0xf2,0x3b,0xb3,0xcb,0x0,0xea,0x0,0x55,0xbe,0xd, + 0xe3,0x9d,0x3a,0x5f,0x8b,0xb5,0x13,0x75,0xfe,0x20,0xc6,0xc3,0x6f,0x34,0xaa,0x4a, + 0x13,0xcf,0x18,0x47,0x9d,0x9f,0x87,0x67,0xd4,0xdb,0xea,0xfc,0xb3,0x95,0x2b,0x57, + 0x68,0x94,0x16,0xe6,0xc9,0xea,0x22,0xf4,0x19,0xf1,0x9a,0xa5,0x27,0x94,0x25,0x55, + 0x3c,0xe9,0xd6,0xad,0x1b,0xf5,0x7,0xb2,0x82,0xc,0x60,0x39,0x95,0xf9,0x36,0x62, + 0x7f,0x40,0x91,0xcf,0xc0,0xc6,0x54,0xd0,0xd6,0x32,0x6c,0x15,0xa5,0x25,0x8c,0xc7, + 0x70,0x53,0xd5,0x96,0x98,0xdf,0xa8,0x2c,0x8e,0x30,0x2d,0x75,0x6d,0x5c,0x9d,0xf, + 0x2a,0x8e,0xa7,0xcc,0x16,0xb0,0x3a,0xa8,0xd2,0x8d,0xcc,0xc6,0x61,0x1c,0xb4,0x5, + 0x59,0x41,0x6,0x38,0xd,0xfc,0x1,0x4d,0xc7,0x88,0x34,0xf1,0x7,0x99,0x3f,0xa0, + 0xce,0xdf,0x42,0x3c,0xf4,0x99,0x96,0xa6,0xf1,0xf4,0x59,0x87,0xac,0x22,0x3,0x9a, + 0xfa,0x3,0xea,0xc6,0x54,0xd8,0xef,0x9a,0xc4,0xd3,0xd4,0xdf,0xd2,0x57,0x5a,0x9a, + 0xfa,0x78,0xcc,0x56,0xe9,0x2b,0x5f,0xee,0x37,0xf1,0x7,0xf0,0x1b,0xd5,0x78,0xaf, + 0x6a,0x4c,0x5,0xe3,0x7c,0xfb,0xf6,0x4d,0xa3,0x78,0xf8,0x3d,0x6c,0x75,0xfe,0x96, + 0x3e,0xd3,0xc2,0x77,0x37,0x9a,0xc6,0xd3,0x67,0xbe,0xb2,0x6f,0x4f,0xa6,0x7a,0x77, + 0xac,0xa,0xff,0x8c,0x94,0x1,0x2c,0xb,0x93,0x81,0xff,0xfd,0xef,0x7f,0xf2,0x7a, + 0x8b,0x9,0xeb,0xc9,0xf8,0x82,0xd7,0xca,0xc6,0x54,0xd8,0x3b,0x32,0x4d,0xe3,0x21, + 0xf,0x95,0xf9,0x5b,0xf8,0x9b,0xbe,0xd3,0xd2,0x26,0x9e,0x3e,0xf3,0xdd,0xbe,0x7d, + 0xbb,0x56,0xf8,0x67,0x80,0xc,0xd0,0x3c,0xb0,0x6c,0x6c,0x7f,0x69,0x2c,0x1f,0x5e, + 0x6b,0xb2,0xce,0x15,0xbf,0xc7,0x2a,0x26,0x5c,0x9b,0xaf,0x4b,0x3c,0xbc,0x57,0x14, + 0x2f,0x3d,0xd3,0xd2,0x34,0x9e,0xbe,0xf2,0x15,0xcf,0x1b,0xd1,0x4,0x7f,0x91,0xc, + 0x44,0xa5,0x17,0xfe,0x48,0x86,0x9e,0x57,0xf3,0xff,0x8d,0x34,0xc5,0x1f,0x9,0xbf, + 0x93,0xc0,0xe9,0x59,0x7,0x64,0x35,0xfc,0x71,0xf,0x5,0x43,0xcf,0xfb,0xd0,0x85, + 0xf4,0x81,0x7f,0x7a,0xe8,0x80,0xac,0x86,0x3f,0x96,0x95,0x33,0xfc,0xda,0x1e,0xad, + 0x48,0x5f,0xf8,0x8b,0xea,0x9e,0xa1,0xf8,0xb3,0xf1,0x1,0xd6,0x5f,0xc8,0xe8,0xdf, + 0xb3,0xf1,0x37,0x2c,0xfe,0x2c,0x5f,0x61,0x7f,0x21,0x23,0x7f,0xcf,0xc6,0x3f,0x1b, + 0x7f,0x45,0xf8,0x1b,0xd7,0xe5,0xc0,0xea,0xb6,0x11,0x14,0x3c,0x65,0x4,0xa6,0x35, + 0xd,0x8f,0x75,0x36,0xfe,0x19,0x8b,0x3f,0x62,0xcf,0xf0,0x47,0x32,0x34,0xd6,0xd9, + 0xf8,0x67,0x2c,0xfe,0x73,0x63,0x6,0x51,0x62,0x72,0x60,0x68,0xac,0xb3,0xf1,0xcf, + 0x58,0xfc,0xcb,0xd9,0x17,0x95,0xe3,0x8f,0xb6,0xc0,0xd0,0x58,0x67,0xe3,0x9f,0x79, + 0xfd,0xbf,0xd9,0xb3,0x67,0xd3,0x7d,0x66,0x75,0x21,0x36,0x76,0xff,0xff,0x15,0xff, + 0xac,0xde,0xff,0xf3,0xf2,0xf2,0xd2,0x9a,0xd7,0x42,0xc2,0x71,0x27,0x5d,0x65,0xe0, + 0x77,0xc0,0x3f,0xb3,0x90,0x18,0x7f,0x1c,0x13,0xd5,0xb4,0xd,0x2b,0xe0,0xa1,0x5a, + 0xc2,0xf4,0xd9,0x73,0x28,0x97,0xba,0xe8,0x8a,0x6c,0xfc,0xd3,0xf,0x7f,0x6d,0xf9, + 0x27,0x18,0x43,0xd7,0x49,0x6,0x34,0x21,0x94,0x81,0xdf,0xd,0x7f,0x55,0x73,0x15, + 0x54,0xe9,0xeb,0xf4,0xc6,0x9f,0xcd,0xaf,0xd0,0x94,0x70,0x1e,0x8e,0xb6,0xf8,0xd7, + 0xab,0x57,0x5f,0xeb,0x7c,0x7e,0x37,0xfc,0xd5,0x95,0xcb,0x50,0xf8,0x23,0x9e,0xe9, + 0x29,0x3,0xe5,0xca,0xd9,0xa5,0x39,0xfd,0x6c,0xfc,0xd3,0xf,0x7f,0x4d,0x49,0x17, + 0x39,0x51,0xd5,0xa6,0xb5,0xa1,0xcc,0x8c,0x7f,0x50,0x50,0x10,0x20,0x31,0xfc,0xa3, + 0xa2,0xa2,0x7e,0x21,0x2c,0x27,0xc6,0x9,0xe,0xe,0x52,0x58,0x26,0xfc,0x4d,0xd1, + 0x73,0xaa,0x88,0xd5,0x5f,0xdb,0xe7,0x74,0xc5,0x3f,0xad,0x32,0xa0,0x8b,0xdd,0xc8, + 0x1a,0xf8,0x7,0x52,0xfc,0xf0,0xbb,0xf4,0x48,0x6b,0xd6,0x6c,0xa0,0xdf,0x1b,0xf2, + 0xf,0x98,0x3,0xc3,0x47,0xfc,0x9,0x23,0x64,0x34,0x6c,0x98,0xf,0x84,0x84,0x84, + 0xc9,0x64,0x20,0xb5,0x2c,0x68,0x8b,0xff,0xd4,0xa9,0x7d,0x7f,0xa1,0x85,0xb,0x3d, + 0x60,0xe9,0x52,0xf,0xd8,0xb2,0x65,0x76,0xba,0xe1,0x6f,0x28,0xca,0xcc,0xf8,0x7, + 0x7,0x87,0x52,0x6c,0x3,0x3,0xe7,0x81,0xbd,0xfd,0x50,0x68,0xd0,0xc0,0x1b,0x8a, + 0x14,0x1d,0xb,0x5,0xa,0x4,0x42,0xd5,0x2a,0x7,0xc0,0xae,0xdc,0x7e,0x72,0x3e, + 0x8,0x56,0x56,0x53,0x20,0x3f,0x9,0x73,0x72,0x1a,0xf,0xbe,0xbe,0xc1,0x44,0x16, + 0x42,0xe5,0x32,0xa0,0xe,0x7f,0xac,0xe7,0xb4,0x69,0xfd,0xc0,0xdf,0xbf,0x6,0xe9, + 0x87,0x1b,0xc1,0xe0,0xc1,0x12,0x98,0xe8,0xcb,0xa5,0xa2,0xb1,0x63,0x39,0x18,0x33, + 0xd6,0x12,0x2,0x83,0xf3,0xc1,0x8c,0x99,0xd5,0x95,0xca,0x41,0x36,0xfe,0xfa,0xc1, + 0x3f,0x3c,0x7c,0x8e,0xb4,0x6f,0xdf,0xe0,0xa8,0x4a,0x95,0xbd,0xa1,0x44,0x89,0x75, + 0x50,0xa8,0xe0,0x79,0x30,0x96,0xdc,0x80,0x2,0xf9,0xfe,0x83,0x2,0x79,0x63,0x21, + 0x8f,0x79,0x2c,0xe4,0x30,0xfe,0xe,0x66,0x26,0x8c,0x62,0xe9,0xf7,0xf,0xf3,0x5a, + 0xdf,0x4,0xb,0x8b,0xb9,0xd0,0xb2,0xe5,0x70,0x22,0x7,0xb3,0x49,0x99,0xf8,0xbd, + 0x45,0x14,0x61,0xb5,0x6d,0xdb,0x6a,0x8,0xf,0x6f,0x46,0xe4,0x8b,0xc7,0x1b,0xbf, + 0xa3,0x19,0x3c,0x99,0x91,0x24,0x15,0xf1,0xbf,0xf1,0xf1,0x7c,0x46,0x49,0x60,0x88, + 0xb7,0x11,0xd1,0xb,0xad,0x61,0xed,0xda,0x39,0xd9,0xf8,0xeb,0x19,0xff,0x71,0xe3, + 0x82,0xa2,0x5c,0x3a,0x45,0x12,0xdc,0xd7,0x42,0xd1,0xc2,0x2f,0x29,0xde,0x88,0x35, + 0x52,0x1e,0x73,0xfe,0x5c,0x20,0x6f,0xca,0x3d,0xb,0x63,0xb2,0x60,0x6a,0xfc,0x2, + 0x2c,0xf3,0xec,0x27,0xbe,0xf1,0x38,0xf0,0xf4,0xf2,0xa5,0x63,0x63,0x8a,0x70,0x9f, + 0x30,0x31,0x5,0xef,0x99,0x33,0x39,0x98,0x3f,0x8f,0x27,0xbc,0x9e,0x35,0x4b,0x35, + 0x5,0x85,0xf0,0x32,0x31,0x86,0xe8,0x5,0x7f,0xff,0x9a,0xd9,0xf8,0xeb,0x9,0xff, + 0x81,0x3,0x43,0xa3,0x3c,0x3c,0xce,0x42,0xc3,0x6,0x4f,0xa0,0x62,0xf9,0x78,0x28, + 0x6d,0x13,0xb,0xa5,0x4b,0xc5,0x42,0x19,0xdb,0x38,0xa8,0x54,0x21,0xe,0x6a,0x54, + 0x4f,0xa0,0xdf,0x43,0x45,0xc2,0x6f,0x9f,0x22,0x61,0x58,0x45,0xf2,0x1b,0x93,0x9, + 0xa6,0xf,0xcc,0x73,0xdd,0x84,0xfc,0xf9,0x3,0x21,0x20,0x20,0xa5,0x8d,0xa2,0xde, + 0x1e,0x37,0x3e,0x1f,0xc5,0x10,0x71,0xc6,0xef,0xa3,0x2e,0x5d,0xcc,0xc1,0xea,0x55, + 0x1c,0x6c,0xdc,0x20,0x81,0xed,0xdb,0x79,0xc2,0xef,0xc5,0x32,0xc2,0xef,0x80,0xee, + 0xd9,0xc3,0x5f,0xe3,0x6f,0xf8,0x6d,0xd5,0x65,0x4b,0x38,0x88,0x88,0x4c,0xd1,0x9, + 0xe1,0xe1,0x35,0x89,0x2e,0xf8,0x33,0x1b,0x7f,0x1d,0xf1,0xf,0xb,0x3b,0x2f,0xd, + 0xb,0xdb,0x4a,0x74,0xf6,0x33,0xfa,0x9d,0x52,0xc4,0x17,0x71,0x65,0x78,0xe3,0xf7, + 0x6e,0x5b,0x3a,0x25,0xd3,0x73,0xb,0x72,0x6e,0xd1,0x3c,0x19,0x9c,0x64,0x44,0xbf, + 0x85,0x2b,0xe5,0x9f,0x41,0x79,0x11,0xea,0x3,0x53,0xa3,0x97,0x90,0x37,0x6f,0x24, + 0xf1,0xdd,0x36,0xc1,0xe1,0xc3,0xb3,0xe8,0x77,0x92,0xd7,0xac,0x4a,0xc1,0x1c,0xb1, + 0xdc,0xbe,0x8d,0xc7,0xf7,0xc8,0x51,0xfe,0x7c,0xe0,0x0,0xff,0x4d,0x5c,0xfc,0xde, + 0x29,0xbb,0x66,0xbf,0xe3,0x3d,0x12,0xca,0x2,0xa6,0xc1,0x64,0xc0,0x3f,0x90,0x83, + 0x61,0xc3,0xc9,0xd9,0xdf,0xd3,0xe0,0x78,0x66,0x35,0xfc,0x11,0xfb,0xf0,0xf0,0xc7, + 0xc4,0x4f,0x7b,0x7,0x9e,0x1e,0x49,0xd0,0xb6,0x4d,0xa,0xa6,0x88,0xb5,0xd4,0x21, + 0x99,0x86,0x21,0xd6,0x78,0xc6,0x6f,0x89,0xbb,0x76,0xf9,0x49,0xbf,0x63,0x8b,0x67, + 0xbc,0xc7,0x70,0x8c,0xc7,0xf4,0x41,0x25,0x81,0x3e,0xc8,0x9d,0xeb,0x25,0xd5,0x3, + 0x3b,0x76,0x98,0x10,0xdc,0x38,0x79,0xbb,0x46,0xdc,0xe5,0x6d,0x5c,0x86,0x33,0x7e, + 0xeb,0xf6,0xc4,0x29,0xe,0xce,0x5f,0xe0,0x9,0xaf,0x19,0x1d,0x3a,0xcc,0xcb,0x4, + 0x93,0x87,0xdd,0xbb,0x8d,0x60,0xd5,0xca,0x14,0x19,0x8,0x9,0x95,0x50,0x3f,0xb1, + 0x65,0xcb,0xcc,0xf9,0x9e,0x3f,0x33,0xe2,0x1f,0x19,0xf9,0x8d,0x60,0xff,0xa,0x86, + 0xc,0x49,0x84,0xfe,0xfd,0x13,0xa1,0x47,0x8f,0x14,0xac,0x11,0x57,0x24,0xc4,0x99, + 0x61,0x8e,0xd4,0xa5,0xf3,0x4f,0xe8,0xe1,0x96,0xcc,0x9f,0x7b,0xf0,0x67,0x26,0xf, + 0x4c,0x76,0x98,0xfe,0xb0,0x2d,0x15,0x4b,0xfd,0x7,0x63,0xc9,0x4d,0xe8,0xe4,0xd2, + 0x91,0x7e,0xdb,0x79,0xef,0x5e,0x1e,0x77,0xa6,0xd3,0x19,0xee,0xc,0xf3,0x3b,0x77, + 0x38,0x78,0xf8,0x80,0xa7,0x47,0xf,0x79,0xc2,0xb0,0x6b,0xd7,0xf8,0xdf,0x8f,0x9f, + 0xe0,0xe8,0x33,0xbb,0x76,0x19,0x51,0x9b,0x81,0xdf,0xd9,0x46,0x5b,0x82,0x3e,0x1, + 0x93,0x1,0x5f,0xdf,0xce,0x5a,0xf3,0xce,0x50,0xf4,0xe8,0xd1,0x23,0x83,0xe0,0x1f, + 0x19,0xf9,0x95,0x62,0xdf,0xaf,0x5f,0x22,0xfd,0xde,0x39,0x62,0x8a,0x38,0x76,0x90, + 0x61,0x8d,0xb8,0x22,0xb9,0x91,0x70,0xfc,0x4e,0x75,0xbf,0x7e,0x49,0x94,0xbc,0xbd, + 0x7f,0x25,0xc,0xc7,0x6f,0x5c,0x33,0x59,0x68,0xdc,0x38,0x49,0x2e,0x7,0xb6,0x25, + 0xbf,0x43,0xb1,0x22,0xb1,0x60,0x95,0xe7,0x3c,0x8c,0x1e,0x5d,0x47,0x26,0x3,0x32, + 0xbb,0x4e,0x64,0x81,0x61,0x8e,0x84,0x58,0x33,0xec,0x95,0xd1,0xcd,0x1b,0x1c,0x9c, + 0x3b,0xc7,0x11,0x7f,0x42,0x2,0xbb,0xff,0x91,0xc0,0x3f,0xff,0xf0,0x7a,0x0,0x7d, + 0x9,0x94,0x1,0xf4,0x7,0xb0,0xf,0x29,0xee,0x1b,0xb0,0xbe,0x66,0x56,0xa2,0xf4, + 0xc4,0x3f,0x3c,0xfc,0x73,0x14,0x7e,0x63,0x9b,0xb5,0x7b,0x86,0x3d,0xb6,0x63,0x94, + 0x5,0xf7,0x3e,0x49,0xf4,0x37,0x6f,0x6f,0x9e,0x46,0x8d,0x8a,0xa7,0x7a,0xc2,0xc7, + 0x27,0x5e,0x40,0x9,0x34,0x6c,0xe8,0x50,0x9e,0xf0,0x19,0xfe,0x5b,0xe7,0x3f,0xa1, + 0x59,0xb3,0x24,0x90,0x4a,0x93,0xa8,0xc,0x14,0x2d,0x8c,0xbe,0x40,0x2c,0x14,0x2b, + 0x3a,0x8f,0xb4,0x5b,0x63,0x2a,0x3,0xfb,0xf6,0x4b,0x68,0x5b,0xc6,0xef,0x9c,0xb, + 0xdb,0xbc,0x3a,0xc2,0xb8,0x17,0x2f,0xf1,0xdf,0x45,0xc7,0xef,0xc4,0xa3,0x1d,0x40, + 0x79,0x42,0x5f,0x42,0x28,0x3,0x9d,0x3b,0x9b,0x64,0x79,0xfc,0xf1,0x1b,0xda,0xe9, + 0x81,0x7f,0x78,0xf8,0x97,0xa0,0xa0,0xa0,0x6f,0x14,0x3b,0x6c,0xfb,0x4c,0x7f,0xb3, + 0xb6,0x8f,0xf8,0x23,0xf6,0xf8,0x3b,0xe2,0x3e,0x78,0x70,0x12,0x4c,0x98,0x10,0xb, + 0xf8,0xc,0x12,0xca,0x4d,0x50,0xd0,0x77,0xd9,0x75,0x2c,0xfd,0x9d,0xc9,0x0,0xea, + 0xa,0x7c,0x5e,0x2e,0x3,0xc4,0x2f,0xa8,0x60,0x17,0x47,0xfd,0xc2,0x5c,0x66,0x37, + 0x48,0x9c,0x6e,0x70,0xea,0xa4,0x4,0x6e,0xdf,0xe2,0xe0,0x3a,0xd1,0xe9,0xb7,0xef, + 0xf0,0x32,0x80,0xd8,0x3e,0x78,0x60,0xa,0x4f,0x63,0x4c,0xe0,0xcd,0xeb,0x5c,0x10, + 0x1f,0x9f,0x1f,0xe2,0xe2,0xf2,0xc9,0x28,0x3f,0x7c,0xfa,0x64,0x5,0xcf,0x9e,0x9a, + 0xc2,0x93,0xc7,0x26,0x70,0xf5,0x2a,0x7,0x47,0xa3,0x78,0x3a,0x78,0x88,0xf7,0x7, + 0xb0,0x6f,0x80,0x3e,0x25,0xda,0x2,0x3f,0xd2,0x37,0x1c,0x32,0x44,0x2,0x33,0x66, + 0x8c,0xcd,0xd2,0xf8,0x6b,0xab,0x3,0xb4,0xc0,0x3f,0xa,0x71,0xc3,0x76,0xcd,0xf4, + 0x3e,0xda,0xf8,0xd6,0xad,0x53,0xf0,0x6f,0xd3,0x3a,0x6,0x26,0x4e,0x8c,0xa5,0xf8, + 0x46,0x46,0x7e,0x21,0xf4,0x15,0x22,0x22,0x9e,0x40,0x6f,0xaf,0xbf,0xc1,0x6b,0xb4, + 0x1f,0xc,0xf5,0x59,0xc,0x7e,0x7e,0xa7,0xe4,0x72,0x30,0x68,0x50,0x12,0x4d,0x8f, + 0xc9,0x0,0xa6,0x83,0xe9,0xa1,0xc,0xa0,0xe,0xc8,0x6f,0x4d,0xfc,0x41,0xd2,0x2f, + 0x2c,0x54,0x70,0x27,0x6c,0xde,0x5c,0x95,0xea,0xfa,0x5b,0x44,0x6,0x10,0x4b,0x94, + 0x85,0xfb,0xff,0x72,0xf0,0xf9,0xb3,0x25,0xa5,0x2b,0xff,0x96,0x83,0x2d,0x87,0x6b, + 0xc2,0xc2,0x8d,0xc5,0x60,0xc6,0xdc,0xc2,0xb0,0x6b,0x6f,0x41,0x82,0x7f,0x1e,0x2a, + 0x13,0x28,0x7,0xf7,0xee,0xf1,0x76,0xe0,0xec,0x39,0x5e,0x6,0xf6,0xec,0xe6,0xfd, + 0x49,0x24,0x94,0x1,0xf4,0x9,0xc7,0x8e,0xe3,0xa0,0x6b,0xd7,0x42,0x94,0x87,0x59, + 0x19,0x7f,0x75,0x7b,0x47,0xeb,0x88,0xbf,0x5c,0x6f,0x23,0xd6,0x88,0x7d,0x9b,0xd6, + 0xbc,0xdf,0x87,0x78,0xf5,0x24,0xf6,0xa0,0x57,0xaf,0x87,0x14,0x5b,0x8a,0xfd,0xb4, + 0x37,0xd0,0x61,0xb0,0x3b,0x38,0xe,0x2b,0x7,0x45,0x2b,0xe7,0x81,0xc2,0x15,0xf2, + 0xd0,0xb3,0x6d,0xbd,0x7c,0x60,0xdf,0xbc,0x13,0x8c,0x1e,0x73,0x9a,0xc6,0x1d,0x39, + 0x32,0x41,0xee,0x4b,0xa,0x65,0x0,0x7d,0x81,0x8a,0xe5,0xe3,0x68,0x7f,0xc0,0xd4, + 0xf8,0x39,0x34,0x77,0xf2,0x85,0x7f,0xef,0x11,0xfd,0x7f,0x9c,0x23,0xfd,0x42,0xe, + 0xae,0x10,0x19,0x78,0xf1,0xdc,0x94,0xd8,0x83,0x22,0x30,0x7a,0x56,0xd,0x70,0xf2, + 0xa9,0x8,0xf5,0x7a,0x96,0x82,0xfa,0xbd,0x6d,0x78,0xea,0x65,0x3,0xb5,0xdb,0x96, + 0x81,0x29,0xb3,0x4b,0x51,0x39,0x48,0x48,0x28,0x40,0xe5,0x5,0x65,0x8,0x9f,0x65, + 0x7d,0x2,0x86,0x3f,0xea,0x0,0xec,0x13,0xf6,0xe8,0x61,0xc,0xec,0x1d,0x16,0xff, + 0x8e,0xca,0xf0,0xfe,0x9e,0x3a,0xc2,0xf9,0x12,0xbb,0x76,0xed,0xd2,0x49,0x6,0x34, + 0xc5,0x3f,0x30,0xf0,0x3b,0x6d,0xab,0x3,0xfa,0xa7,0xe0,0xcf,0xfa,0xf2,0xf5,0xea, + 0xfe,0x20,0x3a,0xfb,0xd,0xb1,0xdd,0x27,0x88,0x5e,0x3f,0x4,0xc1,0xb3,0xf7,0x42, + 0x9f,0x79,0x52,0x68,0x17,0x54,0x19,0xea,0xf6,0x28,0x9,0xd5,0x9c,0x8b,0x11,0x4c, + 0x4a,0x51,0xaa,0xde,0xa1,0x18,0x54,0x68,0x5a,0x8,0x2a,0x49,0x8b,0x43,0x9f,0x7e, + 0x7f,0x51,0x59,0x61,0x7a,0x5,0x7d,0x1,0xf4,0x7,0xd1,0xa6,0x38,0x34,0x49,0x82, + 0x1a,0xd5,0x12,0xe4,0x63,0x3,0xe6,0x39,0xf7,0x13,0x99,0x69,0x8,0x93,0x43,0x73, + 0x40,0x80,0x3f,0xfa,0xf2,0x1c,0x6c,0xd9,0x65,0xb,0x1e,0x93,0xdb,0x40,0x8f,0x5, + 0xb5,0xc0,0x69,0x8c,0x1d,0xd4,0xeb,0x55,0x4a,0x9e,0xf,0x92,0x7d,0x1f,0x1b,0x12, + 0x66,0x3,0x6e,0x9e,0x95,0xe1,0xdd,0xbb,0x3c,0x44,0x4f,0x58,0x51,0x19,0xb8,0x72, + 0x85,0x83,0xd3,0x67,0x38,0xda,0x87,0xdc,0x46,0xf0,0xc7,0x3e,0x1,0xfa,0x1,0x38, + 0xae,0x38,0x60,0xa0,0x11,0x78,0x79,0xd5,0x35,0x38,0xa6,0xba,0xca,0x81,0xb6,0x32, + 0xa0,0x9,0xfe,0xd8,0xdf,0x47,0xfb,0xcd,0xf0,0xc7,0x36,0x2a,0xec,0xb7,0x55,0x27, + 0x38,0xd9,0xdb,0xc7,0x90,0x76,0xbb,0xf,0x46,0x8c,0x5e,0x5,0xb3,0x8f,0x8e,0x85, + 0x46,0xfd,0x4a,0x43,0x97,0xc9,0xb5,0xa0,0xfd,0xf8,0x6a,0xa9,0x69,0x42,0x75,0xd2, + 0x36,0x79,0x6c,0x4a,0x56,0x2d,0x0,0x1,0xc1,0xa7,0xa8,0xc,0xa0,0x1e,0xc0,0xf4, + 0x99,0x6f,0x81,0x3a,0x0,0xc7,0x6,0xf2,0x59,0x7d,0x97,0xe9,0x80,0x17,0x50,0xb5, + 0xea,0x30,0xf0,0x1e,0x9a,0x87,0xb4,0x51,0x23,0x8,0xc,0x69,0x0,0xfe,0x9b,0x3d, + 0x21,0x64,0xd3,0x40,0xe8,0x1c,0xa2,0x20,0x1f,0x42,0xf5,0x7a,0x96,0xa4,0xf9,0xa0, + 0xbc,0xb9,0xc,0x74,0x26,0xf8,0xe7,0x81,0x37,0x6f,0x72,0x51,0xbf,0x1,0xfb,0x86, + 0x38,0x36,0xc0,0x74,0x0,0x8e,0xf,0x22,0xfe,0xd8,0xf,0xe8,0xd9,0xb3,0x92,0xc1, + 0xfb,0xf8,0x69,0x21,0x9c,0x9b,0xca,0xf6,0xa,0x54,0x27,0x3,0x9a,0xe0,0x8f,0xbe, + 0xdf,0xc4,0x89,0x71,0x72,0x7c,0x58,0xdb,0x47,0x7c,0x6a,0x92,0x3e,0x7b,0xe1,0x82, + 0xcf,0x49,0xdf,0xfd,0x4,0xd4,0xa9,0x3b,0x7,0x2,0x37,0xf4,0x87,0xd0,0xdd,0x7d, + 0xc1,0xeb,0x4f,0x29,0x4c,0xd8,0xee,0x42,0x69,0xe6,0xc5,0xbe,0x72,0xc2,0xf0,0x76, + 0x63,0xab,0x51,0x5d,0x8d,0xba,0xa0,0x41,0xeb,0xda,0xc4,0x47,0x78,0x43,0x64,0xe0, + 0x33,0xb5,0x3,0xa8,0x3,0x50,0xbf,0xa0,0xe,0xc0,0xbe,0x0,0xb3,0x1,0x38,0x3e, + 0x6c,0x69,0x39,0x15,0xbc,0x87,0xe5,0x81,0x2e,0x5d,0x8c,0xc0,0x6f,0xad,0x3b,0x2c, + 0xb9,0x3e,0x96,0xa6,0xc7,0xf2,0x12,0xe6,0x83,0xf7,0x18,0x5e,0xd7,0xad,0x24,0xd5, + 0x5,0x95,0x1b,0x97,0x84,0xad,0x7b,0xea,0x53,0x19,0x40,0x1d,0x80,0x7d,0x82,0xb, + 0x17,0x39,0xf9,0x98,0x2,0xe2,0x8f,0xfd,0x0,0xdf,0x49,0x1c,0x49,0xdf,0xd4,0xe0, + 0x18,0xea,0x83,0x70,0xe,0xb4,0x3a,0x19,0xd0,0x4,0xff,0x88,0x88,0xaf,0x41,0xd8, + 0x77,0x43,0xdb,0xcf,0xda,0x3e,0x8e,0xf3,0x21,0xfe,0xd8,0x57,0xaf,0x54,0x31,0x1e, + 0xcc,0x73,0x2d,0x87,0xa,0x15,0xdd,0x61,0xd1,0xb5,0x31,0xb0,0xf4,0xfa,0x78,0x98, + 0x71,0xc1,0x2b,0x15,0x1e,0x62,0x42,0x7c,0x50,0x6,0x6c,0x6a,0xe7,0x85,0xc0,0xc0, + 0x23,0xd4,0x57,0x44,0x3b,0xc0,0x64,0x0,0xf3,0x71,0x72,0x4a,0x6d,0x3,0x18,0xfe, + 0x3,0x6,0xd4,0x7,0xdf,0x2d,0x3d,0x8,0xfe,0xe3,0xd4,0xe6,0x83,0xd4,0x6e,0x5c, + 0x35,0x22,0x6b,0x45,0xc1,0xd5,0xbd,0x3d,0xf1,0x7,0xf3,0x11,0x1d,0x60,0x4e,0xfd, + 0x80,0xab,0xd7,0xf8,0xfe,0xa0,0x70,0x6c,0x18,0xf1,0x77,0x75,0xfd,0x3d,0xf0,0xd7, + 0x44,0x6,0x34,0xc5,0x1f,0x71,0x49,0xa5,0xfb,0x1d,0x52,0xc6,0xef,0xcd,0x73,0x5e, + 0x87,0xdc,0xe6,0xcb,0xa1,0x69,0x3b,0x4f,0xd8,0x7c,0x6f,0x1a,0x2c,0xbe,0x36,0x56, + 0x33,0x5c,0x88,0x1e,0xa8,0xee,0x5c,0x14,0x46,0x5,0x2c,0x96,0xf5,0x17,0x3e,0x13, + 0xfd,0x2b,0x1b,0x57,0xc4,0xfe,0x44,0x1b,0x3e,0xf,0x1c,0x17,0x36,0x15,0xe0,0xdf, + 0xad,0x7b,0x41,0xe8,0x37,0xbd,0x35,0x6c,0xba,0x3b,0x55,0x23,0x19,0xa0,0xb2,0x46, + 0xfc,0x10,0xd7,0xfe,0x6d,0x9,0xf6,0x39,0xe1,0xf5,0x6b,0xde,0x6,0x5c,0x15,0xd8, + 0x0,0xf4,0x1,0xa7,0x4e,0xe5,0x7e,0xab,0xf6,0xaf,0x89,0xc,0x68,0x82,0x3f,0xb1, + 0xfd,0x41,0x62,0xdb,0xdf,0x42,0xa6,0xff,0x8b,0x15,0x46,0xfc,0x6f,0x50,0xfc,0xeb, + 0xb4,0x69,0x4b,0xf1,0x3f,0xf0,0x78,0x5,0x4c,0x3b,0xef,0x91,0xa,0x3,0xa6,0x13, + 0xf0,0xcc,0x30,0x63,0xb8,0x78,0x8e,0x9c,0x4d,0xf1,0xc7,0x3e,0x21,0xc3,0x1f,0xdf, + 0x2b,0xa0,0xd,0xc0,0x3c,0xf8,0x7e,0x20,0x8f,0xff,0xe4,0xb0,0x22,0x14,0xff,0xe1, + 0xb3,0xbb,0xd3,0x7c,0x50,0x6,0xa6,0x5f,0xf0,0x54,0x98,0x17,0x96,0x85,0xfd,0x86, + 0xb2,0xd6,0xb2,0x7b,0x63,0x8a,0x3f,0xf6,0x7,0x85,0xf8,0xb3,0xf6,0x3f,0x79,0x32, + 0xc3,0xdf,0xc4,0xe0,0xbe,0x9c,0x3e,0x48,0xb8,0xcf,0x93,0x32,0x19,0xd0,0xc,0xff, + 0xd8,0x20,0x1c,0xd3,0x61,0xf8,0xb,0xed,0x3f,0xbe,0xeb,0x35,0x31,0x7a,0xe,0x12, + 0x6e,0x7,0x94,0x2f,0xdf,0x15,0x46,0x2e,0xec,0x2,0x67,0x5f,0xfe,0x3,0x1b,0xef, + 0x4e,0x49,0x85,0xb,0xc3,0x1c,0xcf,0x68,0x23,0x58,0x9b,0x45,0xdd,0xec,0x33,0x6a, + 0xb9,0xac,0x1f,0x10,0x27,0xef,0x63,0xa2,0xd,0xc0,0xf1,0x20,0x29,0xf1,0x31,0x8b, + 0x16,0xfa,0x15,0x7f,0x87,0x8e,0xb5,0x29,0xfe,0x98,0x8f,0x10,0x67,0xc4,0x1e,0xaf, + 0xf1,0x8c,0x32,0x28,0x94,0xb5,0x7e,0x3e,0xbd,0x29,0xfe,0xd8,0xf,0x60,0xe3,0x82, + 0x4c,0xff,0xb,0xed,0x3f,0x8e,0x3,0x66,0xa5,0xfe,0x5f,0x5a,0x64,0x40,0x13,0xfc, + 0x23,0x22,0xbe,0x50,0xfb,0x2f,0xc4,0xbf,0xa3,0xac,0x6d,0x56,0x20,0xfe,0x59,0xfe, + 0xbc,0xb1,0x60,0xc4,0x45,0x43,0xde,0xbc,0xc3,0xa1,0xcd,0xd0,0x9a,0x14,0x7f,0xa4, + 0xd,0x77,0x22,0xa8,0x2d,0x40,0xc,0xa6,0x9d,0x77,0xa7,0xe7,0xc5,0x4,0x7b,0xc4, + 0xc,0xdb,0x2d,0xe2,0x32,0x74,0xa9,0x33,0x29,0xc7,0x31,0x39,0xfe,0xa8,0x67,0xb0, + 0xfd,0xbb,0x13,0x3f,0xb3,0x83,0x33,0xef,0x67,0x14,0x2b,0x12,0x97,0xa,0xff,0x9e, + 0xbd,0x4c,0xa1,0x5e,0xb3,0xaa,0x30,0xef,0xf0,0x44,0x9a,0xcf,0xfe,0xc7,0xcb,0x49, + 0x9a,0x91,0x14,0x6f,0x4c,0x9f,0xe5,0x87,0x79,0x60,0x5e,0x54,0x6,0xce,0xf7,0x85, + 0xd9,0x73,0x7a,0xc2,0xb3,0x67,0xa6,0xd4,0xff,0x43,0xfc,0xf1,0x3d,0x2,0xbe,0x23, + 0x16,0xfa,0xff,0xf8,0x4e,0xb8,0xff,0x80,0xa,0xf2,0x31,0x20,0x43,0x8f,0xe5,0x68, + 0x43,0xca,0xd6,0x54,0xa8,0x92,0x1,0x59,0x78,0x94,0x2a,0xfc,0xc3,0xc3,0xbf,0xca, + 0xf1,0x47,0xbb,0x8c,0x63,0x3d,0x88,0xbf,0x3,0xf1,0x1,0x1a,0x10,0xfb,0x9c,0x3b, + 0xe7,0x73,0xb0,0x30,0x7f,0x9,0xa6,0xa6,0xeb,0xa1,0x7c,0x8d,0xda,0x10,0xbe,0xa7, + 0xbf,0x5c,0x6,0x90,0xf6,0x3d,0x5a,0x4a,0x31,0x42,0x79,0x58,0x78,0x75,0x14,0x6d, + 0xb7,0x78,0x8d,0xed,0xd6,0xd5,0xb3,0x13,0xf1,0xff,0xbf,0xca,0x75,0x3f,0x7b,0x87, + 0x80,0x79,0x61,0xfb,0xc7,0x3e,0x26,0xea,0x7f,0xb4,0xff,0x38,0x67,0x10,0xf1,0xf7, + 0x1e,0x66,0x9,0xad,0xdb,0x94,0x81,0x96,0xde,0xd5,0x68,0x5a,0xc2,0xbc,0x30,0x5d, + 0x24,0xc4,0x1d,0xf3,0x65,0x79,0x8d,0xf9,0xcb,0x13,0x36,0x6d,0x6c,0x0,0xf,0xee, + 0xf3,0x63,0x88,0xd8,0xf6,0x4f,0x9c,0xe2,0xfd,0x7f,0x36,0x3f,0x84,0xf5,0xff,0x47, + 0x8d,0x6a,0x91,0x65,0xc7,0xff,0xb4,0xd5,0x3,0xe4,0x3e,0x48,0x15,0xf6,0x2,0x1b, + 0x40,0x71,0x11,0xbe,0xf7,0x43,0x1b,0x80,0xfe,0x19,0xce,0xf5,0xb1,0xc8,0x85,0x76, + 0xe0,0x6,0xd5,0x1,0xe,0x6e,0x35,0x60,0xcd,0xf1,0x19,0xa9,0x70,0x11,0xd2,0xfa, + 0x3b,0xe1,0x14,0x97,0x9,0xf3,0xfa,0xc3,0xd8,0xb1,0xeb,0x52,0xb5,0x7d,0x86,0x3f, + 0xe6,0x83,0xf6,0x1f,0xd3,0x37,0x35,0xe2,0xfb,0x7f,0x36,0xb6,0xe3,0x9,0xfe,0x45, + 0xc1,0x7b,0xa8,0x15,0x74,0xeb,0x56,0x10,0xca,0x55,0xb4,0x93,0xdb,0x1b,0x45,0x84, + 0xf8,0x23,0xad,0xbd,0x1c,0x9,0x83,0xbd,0x87,0xc0,0xd5,0xab,0xd5,0xe9,0x7b,0x3, + 0x1c,0xff,0xc1,0xb6,0xcf,0x7c,0x3f,0x1c,0xff,0x41,0xfc,0xf1,0x1d,0x0,0xce,0x27, + 0xdd,0xb0,0x61,0xcd,0x6f,0x87,0xbf,0x12,0x19,0x50,0xd9,0xee,0x53,0xeb,0x0,0xfe, + 0x9d,0xff,0x0,0x81,0xc,0x74,0x94,0xf5,0xd1,0xf1,0x5d,0x4d,0xb1,0xc2,0xdf,0xe9, + 0x1c,0xcf,0x9c,0x39,0xf6,0x43,0xe1,0x22,0xae,0x50,0xb1,0x76,0x59,0xf0,0x9a,0x2b, + 0x95,0xfb,0x83,0xcc,0x57,0xc3,0x33,0x86,0x8d,0x9a,0xe9,0x1,0x23,0x47,0x4e,0x26, + 0x69,0x5e,0x1,0xf6,0x5e,0x9,0x75,0xbe,0x70,0xae,0x40,0xf3,0xe6,0x49,0xa4,0x7f, + 0x11,0x27,0x1f,0xff,0x69,0xef,0xdc,0x9,0x42,0x42,0x8b,0xc2,0xc4,0x49,0x39,0xe9, + 0x38,0x6d,0xe7,0xce,0x79,0xc1,0xb6,0x6c,0x29,0x68,0x35,0xb4,0x1a,0xd5,0x39,0x8a, + 0xf2,0x9a,0xb1,0x6b,0xc,0x8c,0x18,0x33,0x12,0x56,0xad,0x6a,0x9,0xc7,0x4f,0xf2, + 0xef,0xe,0x4e,0x9d,0x92,0xbd,0xb,0x94,0xcd,0xb,0x42,0xdf,0x1f,0xc7,0xff,0x42, + 0xc3,0x38,0xe8,0xe3,0x6e,0x4c,0x71,0xc7,0xef,0xb8,0xfd,0x6e,0xf8,0x8b,0x65,0x40, + 0x9d,0xde,0x17,0x1e,0x7e,0x7e,0xdf,0xa3,0xbc,0xbd,0x13,0xe4,0xba,0x99,0x8d,0x5, + 0xe0,0xd8,0x3f,0xfa,0x1,0x38,0x4e,0x63,0x61,0x8e,0xef,0x6c,0x5f,0x40,0xe,0xd3, + 0x75,0x50,0xb4,0x98,0x1b,0x54,0xa8,0xd8,0x10,0x8a,0x95,0x2f,0x8,0x52,0xb7,0xea, + 0xd0,0x61,0x54,0x7d,0xf0,0x8,0x6e,0x3,0x1d,0x6,0x36,0x1,0xc7,0x66,0xed,0xa1, + 0x41,0x43,0x37,0xe8,0xd8,0x71,0x2f,0x38,0x3b,0x1f,0xa3,0xf2,0x84,0x36,0xc5,0xb9, + 0x7d,0xb2,0x7c,0x8e,0x10,0xb6,0x7d,0xb9,0xee,0x27,0xed,0xbf,0x50,0xc1,0xb3,0x30, + 0x6e,0x82,0x1d,0xe9,0xa3,0xe7,0xa5,0xe3,0xf4,0xf8,0xae,0x6,0x65,0xa0,0x6b,0xd7, + 0xa,0xe0,0x20,0xad,0x4,0xc5,0x4a,0x17,0x85,0x52,0xd5,0xb,0x90,0x7c,0xea,0x41, + 0x77,0x7f,0x29,0x78,0x4,0xb5,0x1,0x87,0x36,0xd,0xc1,0xd3,0xcb,0x1,0x42,0x43, + 0x9b,0xc0,0xe6,0xcd,0xbc,0xbe,0x3f,0x7d,0x9a,0x4b,0x35,0x27,0x88,0xe1,0x8f,0xf3, + 0x48,0x71,0x6e,0xe8,0x9e,0xbd,0xc1,0xf2,0xb5,0xb,0xe9,0xbd,0x87,0x1f,0xdb,0x1f, + 0x35,0x23,0xf1,0x57,0x20,0x3,0x1a,0xb6,0xff,0x2f,0x41,0x6c,0x9c,0x1e,0xb1,0xc7, + 0x33,0xbe,0xb7,0xe7,0xc7,0xea,0x93,0xe9,0x38,0xd,0xea,0x80,0xfc,0x79,0x51,0xf, + 0xc4,0x11,0x7f,0xf0,0x38,0x98,0x93,0x3e,0x61,0x91,0x22,0x63,0xa1,0x94,0x4d,0xb, + 0x28,0x54,0xa8,0x31,0x14,0x2d,0xda,0x14,0x4a,0x94,0xf4,0x20,0x61,0x13,0x88,0x8e, + 0x18,0xf,0x2d,0x5b,0x46,0xd3,0x77,0x6,0xf4,0x3d,0xb2,0x33,0xaf,0x4f,0x3a,0xc8, + 0xc8,0xc9,0x89,0x97,0x29,0xc4,0xde,0xdc,0xec,0x3b,0x74,0xea,0x3c,0x11,0xa2,0x8e, + 0x73,0xb0,0x69,0x13,0x7,0xe1,0x91,0x44,0x57,0xfb,0xf3,0x73,0xfc,0xf1,0x9d,0x2d, + 0xfa,0xeb,0x5d,0xba,0xe4,0x22,0xb2,0x58,0x2,0x6a,0xd7,0xb1,0x86,0x46,0x8d,0xac, + 0xa1,0x4d,0x9b,0xe2,0x30,0x7c,0x4,0xff,0x4e,0x7,0xdf,0xed,0xe0,0xbb,0xde,0xdd, + 0xff,0xf0,0x73,0xc0,0x90,0x18,0xf6,0xc,0x7f,0x9c,0x5f,0xea,0xe9,0x69,0x4,0x7f, + 0x1f,0x8,0x4a,0xa1,0xfd,0x81,0xe9,0x46,0x9a,0xae,0x8f,0x16,0x61,0x45,0xef,0xd3, + 0x8a,0xbf,0xa6,0x7e,0xbf,0xf8,0x8,0xc,0x7c,0x43,0xe7,0x6f,0x20,0xf6,0xa3,0x47, + 0xf3,0xe3,0x81,0xa8,0xa7,0xf9,0x79,0x1b,0xbc,0xc,0xd8,0x96,0xe2,0x65,0xc0,0x22, + 0xd7,0x77,0xea,0xb7,0xe7,0xb5,0xba,0x9,0x45,0x8b,0xdc,0x86,0xdc,0xe6,0xcb,0xa8, + 0x3c,0x14,0x2b,0xb6,0x53,0x46,0x3b,0xc0,0xae,0xdc,0x25,0xa8,0x5a,0xe5,0x15,0xf5, + 0x23,0x31,0xd,0x24,0x94,0x85,0xe6,0xe4,0x5c,0xbf,0x5e,0x22,0xe4,0xb3,0xe6,0xc7, + 0xfd,0x72,0xe5,0x78,0x1,0xf3,0x16,0x54,0x84,0x63,0x44,0x67,0x6f,0xdf,0x21,0x21, + 0x7e,0x3c,0xf6,0xd5,0x88,0xbf,0x46,0xfa,0x6b,0x38,0x27,0xdc,0xc7,0x87,0x97,0x83, + 0xbe,0x7d,0x8d,0xa8,0xfd,0x1e,0x37,0x8e,0x97,0xd,0xb4,0xe7,0x38,0xa6,0x87,0xba, + 0x7d,0xf1,0x42,0x8e,0xfa,0xf9,0xeb,0xd7,0x49,0x52,0xcd,0x11,0xc6,0x77,0x40,0x88, + 0xff,0xe4,0x50,0xe,0x2,0x88,0xac,0xb4,0x19,0x9d,0x31,0x34,0x67,0x49,0xa0,0xda, + 0xf5,0xd1,0xc,0x23,0x47,0x47,0x47,0x39,0xb1,0x7d,0x2d,0x94,0xad,0x91,0x4e,0x4f, + 0xfc,0x51,0x7,0x90,0xbe,0x20,0x9d,0xc7,0xc3,0xfa,0xe9,0x54,0x7,0x38,0xf3,0xf8, + 0xa1,0xbe,0xa6,0x7d,0x42,0xe2,0xf,0x94,0xb6,0xf9,0x4e,0x75,0x37,0xca,0x1,0xb6, + 0x61,0xb,0xe2,0x1b,0x60,0x3f,0x91,0x11,0x8e,0x1b,0xe2,0x5c,0x3f,0x94,0x19,0xc4, + 0xda,0xc1,0x21,0x89,0xbe,0xf3,0x41,0x12,0x8e,0xfb,0xe3,0xb3,0x9d,0x3b,0xfb,0x53, + 0xdd,0x8d,0xed,0xff,0xd0,0x61,0x8e,0xf8,0xad,0x1c,0x6c,0xdd,0x4a,0x30,0x5d,0x22, + 0x81,0x79,0xf3,0x24,0xb4,0xed,0x4e,0xf2,0xe3,0xa8,0x2c,0x20,0xe6,0xa8,0x1b,0xb0, + 0x2f,0x1f,0x1e,0xc1,0xb7,0xfd,0xbf,0xe6,0x92,0xb8,0x8b,0xf8,0xb9,0xc3,0x5b,0xb7, + 0xf2,0xba,0x1f,0xfb,0xfd,0x98,0x1e,0xe2,0x8f,0xe1,0x18,0xaf,0xfb,0xf8,0x8c,0xc3, + 0x9f,0xe9,0x0,0x65,0xf8,0x1f,0x3d,0x7a,0x94,0x62,0xed,0xe3,0xe3,0x43,0xdf,0xed, + 0xa,0x75,0x37,0xdb,0x73,0x20,0xa3,0xf1,0xe7,0x65,0xe0,0xab,0x5c,0x6,0x58,0x5f, + 0x5d,0x38,0x6f,0xa3,0x79,0x73,0x9c,0xd7,0x9b,0x24,0x9f,0xf3,0x4f,0xe7,0xf6,0x12, + 0x2c,0x51,0x17,0x20,0xa1,0x3f,0x57,0xb9,0x62,0x2,0xc5,0x1d,0x7f,0xc7,0xb9,0x3e, + 0xe8,0xe7,0xe1,0xb3,0x98,0x46,0x93,0x26,0xfc,0xb3,0x68,0x4b,0xe8,0x5c,0xe0,0x9c, + 0x2f,0x61,0xf3,0xd6,0x7c,0xd4,0x77,0x43,0x3a,0x7d,0x96,0xa3,0x7a,0x60,0xef,0x3e, + 0x7e,0x3e,0x18,0xd3,0xe3,0xe8,0xc3,0xaf,0x5a,0x25,0xa1,0xe3,0x78,0xd8,0xde,0x69, + 0x9b,0x5f,0x2c,0x5b,0x23,0x20,0x9b,0x2f,0x8e,0x6d,0x1e,0xe7,0xfe,0xe1,0xbc,0x60, + 0x4c,0x83,0xf9,0x3,0x37,0x6e,0x9a,0xc0,0xf6,0xfd,0x26,0x19,0x86,0xbd,0x3a,0xfc, + 0x71,0x5f,0x6f,0xfc,0xd,0xf7,0xf6,0xc6,0x3e,0x9a,0x78,0x3f,0x10,0x94,0x9,0x4e, + 0x89,0x2d,0x48,0x6f,0xfc,0x65,0x32,0x20,0xf7,0xd9,0xfb,0xcb,0xfa,0xe9,0x14,0x7b, + 0x99,0xe,0x67,0x58,0x32,0x79,0xa0,0x73,0xc2,0xa5,0x49,0xf2,0xf5,0x1f,0xa8,0x27, + 0x10,0x67,0x86,0x37,0x9e,0x9b,0x37,0x4b,0xa6,0x71,0xe5,0xeb,0x2,0x88,0x6e,0x40, + 0xdd,0xd1,0xac,0xe9,0x5c,0xb8,0x7e,0xc3,0x94,0xfa,0xed,0xff,0xde,0xe3,0xe4,0xfd, + 0xb7,0xe8,0x13,0xbc,0x3c,0xe0,0x5c,0x1e,0x94,0x5,0xf4,0xe9,0x10,0x5b,0xa6,0xd3, + 0x11,0x6b,0x6c,0xe7,0x68,0xeb,0xf1,0xbc,0x6f,0x3f,0x3f,0x8f,0x18,0x31,0xc7,0x39, + 0x40,0xf8,0xfe,0x17,0xc7,0x80,0x9e,0x3f,0x33,0xa5,0xf3,0xc5,0x46,0xcc,0xc8,0x38, + 0xec,0xd5,0xe1,0xcf,0x7c,0x43,0xb6,0xb7,0x3b,0xca,0x0,0x9b,0xe3,0xc1,0xc6,0x78, + 0x5c,0x5c,0x5c,0x14,0xea,0x80,0x8c,0xc1,0xff,0x45,0x14,0xea,0x0,0x66,0x3,0xd0, + 0x7,0x40,0x19,0xc0,0x39,0xbc,0x6d,0x64,0xb8,0x33,0xfc,0xc5,0xb2,0xc0,0x48,0x18, + 0xce,0xe3,0x9f,0x44,0x65,0x81,0xae,0x7,0x40,0x3f,0xa2,0xe4,0x77,0xaa,0x2b,0xc6, + 0x8e,0x9d,0x1,0xf,0x1f,0x96,0xa4,0x73,0xbc,0x70,0xdc,0xe,0x9,0xc7,0x70,0x98, + 0x1c,0xa0,0x5c,0x9c,0x3b,0xcf,0xcb,0xc3,0xb1,0xa8,0x14,0xdd,0x80,0xb2,0x40,0xc7, + 0x76,0xc9,0x35,0xca,0xc8,0x91,0xa3,0x7c,0x3c,0x9c,0xfb,0xc3,0x70,0x7f,0xfb,0xc6, + 0x9c,0x62,0x7f,0xe9,0x4e,0x9e,0xc,0xc5,0x5e,0x13,0xfc,0x19,0xf6,0xec,0x8c,0xd8, + 0x23,0x61,0xfb,0xc7,0x33,0xfa,0x2,0x86,0xc3,0xff,0x35,0x9d,0xe7,0xc7,0xc6,0x6b, + 0x10,0x7b,0x66,0xbb,0x51,0x6,0x10,0x5f,0xbc,0x66,0xbe,0x3c,0xfa,0x7,0x6c,0x9e, + 0x30,0xa3,0xe,0x2,0x5f,0xbf,0x99,0x40,0x6f,0x38,0xc8,0x6c,0x7,0xda,0x7f,0x5b, + 0x9b,0xff,0xa0,0x51,0xcf,0x32,0x30,0xee,0x2f,0x13,0x88,0x8f,0xcf,0x4b,0xa8,0x0, + 0x3c,0x7d,0x6a,0x4a,0x89,0xc9,0xc1,0xad,0x9b,0xbc,0x2c,0xa0,0x1c,0xa0,0xc,0x8, + 0x9,0xdb,0x39,0x12,0x62,0x8e,0x71,0x30,0x3e,0x3e,0x87,0xef,0x7f,0x31,0x2d,0x43, + 0x61,0xaf,0x9,0xfe,0xec,0xdb,0xe,0xc2,0xef,0x3b,0xa0,0x1e,0x60,0x32,0x80,0x73, + 0x3c,0xc,0x81,0x7f,0x58,0xd8,0xa3,0x20,0xd6,0xf6,0x71,0x1c,0x80,0xbd,0xab,0x67, + 0xf8,0x23,0xd6,0xf2,0xb5,0x1e,0x6e,0xfc,0x35,0xf6,0xef,0x3d,0x3c,0xf8,0x79,0xde, + 0x48,0x9d,0x3b,0xfd,0x94,0x8f,0x21,0xa,0xe7,0x11,0x53,0x3d,0xd0,0x3c,0x49,0xee, + 0x43,0xe2,0x7a,0x42,0x27,0x37,0x4f,0xca,0x2f,0x94,0x81,0x4b,0x77,0x2c,0xe8,0xfb, + 0xfb,0x8f,0x1f,0x2d,0x29,0x86,0x4c,0x1f,0x30,0x59,0x10,0xcf,0xfb,0x66,0x78,0x33, + 0xe2,0x71,0xc7,0x39,0xc2,0x79,0x29,0xf6,0xab,0xf6,0xe6,0x32,0x8,0xf6,0x9a,0xd8, + 0x7f,0xfc,0x66,0xce,0xb5,0x6b,0xd7,0xe8,0xf7,0x73,0xc4,0x72,0x60,0x48,0xfb,0x8f, + 0xf3,0x80,0xd1,0xf6,0xb3,0xb9,0x40,0x6c,0xbe,0x1e,0x62,0x87,0x38,0xe2,0x3d,0xce, + 0xe3,0x44,0xbf,0x80,0x11,0xda,0x8,0xe1,0xb9,0xbf,0x4c,0x6e,0x3a,0xb9,0xfc,0x4c, + 0xb5,0x86,0x84,0xe9,0x2,0xe6,0x3,0xa0,0xe,0xb0,0x6b,0xd0,0x3d,0x15,0xdf,0x98, + 0x1c,0xf0,0x18,0xe2,0xdc,0x5e,0x22,0xb,0xaf,0xcd,0xe5,0x3a,0x41,0x8c,0x37,0xce, + 0xfd,0xfc,0xf8,0x31,0x8f,0x60,0x5e,0x78,0x5e,0x82,0x7b,0x4e,0x83,0xe1,0xae,0x9, + 0xfe,0x4c,0x7,0x7c,0xf8,0xf0,0x21,0x15,0xf6,0xec,0xfa,0xc9,0x93,0x27,0x6,0xf1, + 0xff,0x9,0xf6,0x52,0x9c,0x7,0x8c,0x73,0xc1,0xb0,0xed,0x33,0xbb,0x2f,0x9c,0x7, + 0x8e,0xb8,0x8a,0xd7,0x81,0xc,0x19,0x92,0x44,0xf5,0x5,0x3b,0xb3,0x70,0x26,0xb, + 0xa8,0xf,0x98,0xc,0xb1,0xf1,0x24,0xa6,0x3,0x5a,0x38,0xbd,0x51,0xca,0x43,0xc4, + 0x71,0xd5,0x9e,0x5c,0x2,0x6c,0x95,0x51,0x5e,0x1a,0x2f,0x33,0xe0,0xae,0x29,0xfe, + 0xe8,0xff,0xe1,0xef,0x88,0x35,0xea,0x3,0x3c,0x23,0xa1,0x5e,0x50,0x35,0x76,0x98, + 0xbe,0xf8,0x7f,0x8e,0xc2,0x77,0x75,0xc2,0x35,0x0,0xc,0x37,0x86,0x3f,0xea,0xf7, + 0xfe,0xfd,0x12,0xe9,0xbb,0x3c,0xb6,0xfe,0x83,0x9f,0xdb,0x93,0x42,0xf8,0xae,0x87, + 0xad,0x3,0x62,0x7a,0x1,0x65,0x80,0xf5,0x7,0x58,0x3f,0x1,0xdb,0x3f,0x8e,0x3, + 0xa2,0xf,0x60,0x68,0xbc,0x32,0x1a,0x7f,0x71,0x5f,0x90,0x11,0xca,0x80,0x21,0xc6, + 0xff,0xf8,0x35,0xbf,0x7c,0xdb,0x47,0xbc,0xd0,0xce,0xb,0x7d,0xfd,0x8e,0x32,0x3f, + 0xf,0x75,0x3f,0xce,0x15,0xe1,0x71,0xff,0xa,0x81,0x81,0x31,0x74,0xd,0x88,0xa7, + 0xe7,0x66,0xba,0xf6,0x63,0xd8,0xb0,0x53,0xb2,0xf9,0x9e,0x38,0xdf,0xe7,0xab,0x7c, + 0xbe,0xf,0x9b,0x5b,0x80,0xfe,0x23,0xc3,0xbf,0x12,0xb1,0xff,0x76,0xe5,0x1e,0x41, + 0xcf,0x11,0x1,0x6,0xc7,0xcb,0x50,0xf8,0x6b,0x4b,0xe9,0x85,0x3f,0xeb,0xf3,0x8d, + 0x1a,0x95,0x20,0x9f,0xa3,0x8d,0x7e,0x3e,0xb6,0x4f,0x1c,0xbf,0x45,0xdc,0xd0,0x1e, + 0x8c,0x1e,0x9d,0x40,0xb1,0x45,0x8c,0xfd,0xc3,0x36,0x41,0x9f,0x51,0x3,0xa0,0x4c, + 0xd5,0x12,0x50,0xa4,0xa2,0x15,0x94,0xad,0x56,0x2,0x6a,0x36,0xa8,0xa,0xad,0xda, + 0xc,0x21,0xf2,0xb0,0x8a,0xca,0x7,0x93,0x1,0x94,0x29,0xf6,0xce,0x57,0xea,0x90, + 0xb2,0xe,0x14,0xd7,0x16,0x34,0x6c,0xbe,0xc2,0xe0,0x78,0x19,0x12,0x7f,0xf4,0xf3, + 0x18,0x19,0x2,0xff,0x94,0xb6,0xcf,0xf7,0xf9,0x10,0xe7,0x8e,0x32,0x9c,0xd8,0xba, + 0x7f,0x9c,0x13,0x88,0xf8,0x45,0x44,0x3c,0x86,0xd0,0xb0,0xdd,0x30,0x60,0xf2,0x40, + 0x68,0x1b,0x58,0x49,0xe9,0xfa,0xf,0x7b,0xa7,0x9a,0xc4,0xe,0xec,0x95,0xcb,0x0, + 0x9b,0xf7,0x8b,0xef,0x1,0xd9,0x18,0x20,0xea,0x7f,0xa4,0x12,0xc5,0xf7,0x19,0x1c, + 0x2f,0x43,0xe0,0x2f,0x7e,0xf7,0xc3,0x48,0x95,0x1c,0xa4,0x7,0xfe,0xe1,0xe1,0x8f, + 0x83,0xf8,0xb6,0x9f,0x7a,0xe,0x18,0x1b,0xef,0xc7,0xf1,0x7b,0xc4,0xbf,0x6f,0xdf, + 0x6b,0x30,0xf7,0xaf,0x8d,0x30,0x77,0x5b,0x98,0x46,0xeb,0x3f,0x2a,0xd5,0xb2,0xa3, + 0xb6,0x81,0xad,0x1,0xea,0x2f,0x5b,0x13,0x2e,0x5c,0xff,0x85,0xef,0x9,0x3a,0x76, + 0x7c,0x2,0xb5,0x5a,0xd5,0x34,0x38,0x66,0x19,0x89,0xff,0xc8,0x91,0x23,0x29,0x3e, + 0x38,0xd6,0x2f,0x9c,0xd7,0xc5,0xc6,0xfe,0xd9,0x1c,0x9e,0x8c,0xc0,0x1f,0xe7,0x7f, + 0x7,0x6,0x7e,0x4b,0xb5,0x3e,0x87,0xe1,0xcf,0xd6,0xff,0x38,0x38,0x3c,0x21,0x58, + 0x1e,0x80,0xc5,0xfb,0xc3,0x60,0xf2,0x6e,0x2f,0x8d,0xd7,0x7f,0x74,0xed,0x35,0x48, + 0xbe,0xfe,0x83,0xf9,0x2,0xe8,0x47,0x60,0x1f,0x0,0xd3,0xb6,0x29,0x19,0x4b,0xf2, + 0x49,0x80,0x7a,0xf5,0x23,0xc,0x8e,0x59,0x46,0xe1,0xcf,0x7c,0x7f,0x5c,0xc3,0xc3, + 0xc6,0x7b,0xd8,0x5e,0xe1,0x78,0x66,0x63,0x7f,0x8a,0xde,0x1,0xa6,0x4f,0xfb,0xe7, + 0xe7,0x66,0x2b,0xc2,0x1f,0xc7,0x6a,0x91,0xea,0xd5,0x3d,0xf,0x41,0xc1,0xb3,0x60, + 0xc1,0x85,0xd1,0x5a,0xad,0xff,0x28,0x57,0xaf,0x88,0x5c,0x7,0xe0,0x1a,0x30,0xd4, + 0x1,0x68,0x3,0x18,0xfe,0xa8,0x3,0xf0,0x1d,0x92,0x73,0xfb,0xf,0xd0,0xde,0xab, + 0x9d,0xc1,0x71,0xcb,0x8,0xfc,0xb1,0xdf,0x8f,0xc4,0xee,0x71,0x4d,0x3f,0xc3,0x5f, + 0xa8,0x7,0x14,0xe9,0x80,0x74,0x6a,0xff,0xf2,0xf7,0xfe,0x42,0xfc,0xf9,0x7d,0x1a, + 0xf0,0x3d,0x6e,0x1c,0xd4,0xa9,0x73,0x9,0x26,0x6,0xe0,0x9c,0xce,0xa9,0x9a,0xaf, + 0xff,0x18,0xc7,0xaf,0xff,0x98,0x14,0xba,0x86,0xfa,0x1,0xe8,0x5f,0x60,0xfb,0x67, + 0x3e,0x40,0xca,0xde,0x40,0xf1,0x60,0x6b,0x73,0x9d,0xe8,0x80,0xdf,0xa7,0x1f,0xa0, + 0xe9,0xf8,0x2f,0x1b,0xff,0x63,0xf8,0xe3,0x3d,0xe2,0x97,0x91,0xe3,0xff,0x91,0x91, + 0xdf,0xa8,0x5f,0x3f,0x60,0x0,0xbf,0x2e,0x3,0xf1,0x69,0xd7,0x36,0x19,0x1a,0xd8, + 0x27,0x42,0x81,0x7c,0x71,0x50,0xbc,0x68,0x1c,0x94,0x29,0xb3,0x1c,0x3a,0xd,0x48, + 0x59,0xff,0x31,0x5d,0x84,0xbf,0x70,0xfd,0xc7,0x52,0x36,0x27,0x7f,0x47,0x27,0xea, + 0x13,0x7a,0x8d,0xf6,0x5,0xcc,0x83,0xad,0x31,0xc4,0xf4,0x9d,0x9a,0xf3,0xe3,0x80, + 0x35,0xab,0xff,0xa0,0x7d,0x80,0xaa,0x55,0x4f,0x80,0xbd,0xfd,0xff,0x2f,0xfc,0x85, + 0x63,0x7e,0x78,0xcd,0x6c,0x81,0xa1,0xf0,0xc7,0x3e,0x1a,0xca,0x0,0x8e,0xf9,0xb9, + 0x74,0x4c,0x86,0x5a,0x35,0x13,0x21,0x4f,0xee,0x38,0x4a,0x16,0xe6,0xcb,0xa1,0x4c, + 0xc5,0x66,0xe0,0xb3,0xd8,0x95,0xce,0xbd,0x65,0xf3,0xfb,0x53,0xf0,0x1f,0x27,0xc3, + 0x7f,0x1c,0x2c,0xb9,0x96,0xb2,0x66,0xb,0xfd,0xc1,0xbe,0x23,0x82,0xe4,0xf8,0xb3, + 0x79,0x85,0x88,0x3f,0xae,0xff,0x43,0x1d,0x83,0xeb,0xb,0x1b,0x36,0x3c,0x9,0x75, + 0xeb,0xcd,0xd5,0x3b,0xe,0xed,0xbc,0x25,0xd0,0xa1,0x9f,0xb1,0x9c,0x32,0x3,0xfe, + 0x4c,0xff,0x33,0xec,0x85,0x63,0xff,0x68,0xb,0x50,0x6,0x32,0x52,0xff,0x23,0x36, + 0x6c,0xaf,0x16,0x86,0x3f,0x6b,0xff,0x96,0x4,0x7b,0x33,0x93,0x38,0x30,0x91,0x1c, + 0x87,0xe2,0x25,0x7a,0x40,0x8b,0xa1,0x7f,0xc8,0xe7,0x5f,0xd3,0xb5,0x17,0x4,0x6b, + 0xc4,0x9c,0x5f,0x93,0x33,0x8e,0xae,0xc5,0x40,0xd9,0x60,0xf2,0x31,0x64,0x95,0x13, + 0x84,0x44,0xfe,0x2d,0xc7,0x9f,0xf5,0x2f,0x70,0xed,0x9f,0x93,0x6c,0xff,0xc0,0x7a, + 0x75,0x88,0xe,0x20,0xf6,0xa5,0x68,0xb1,0x9,0x7a,0xc7,0xde,0xd5,0x35,0x7,0xf4, + 0xea,0x65,0x42,0xfa,0x2e,0xc6,0xf4,0xdc,0xa9,0x57,0xc6,0xcc,0x3,0xd1,0xc4,0xff, + 0x13,0x7e,0xdf,0x5d,0x28,0x3,0xac,0x5f,0x98,0x51,0xfe,0x1f,0xc1,0x26,0x48,0xdc, + 0xfe,0x11,0x7f,0xb4,0xcf,0x5,0xf3,0xc7,0x53,0xfc,0x73,0x9a,0xc6,0x81,0xa5,0xc5, + 0x5f,0x50,0xf2,0x8f,0xc2,0x10,0xb1,0x77,0x40,0xaa,0x79,0xf8,0xb8,0xf6,0xe3,0x0, + 0x5d,0xa3,0x33,0x85,0xfa,0x6,0xc2,0x75,0x5b,0x6d,0x6,0xd7,0x97,0xf9,0x7f,0xbc, + 0x8f,0x81,0xf8,0xd3,0xbd,0x45,0x64,0xf8,0xa3,0xfe,0xc7,0xf6,0xdf,0xa8,0xe1,0x5b, + 0x82,0xff,0xc4,0x74,0xc1,0x7e,0xd4,0x28,0x8e,0xce,0x19,0x44,0xc2,0x7b,0xfc,0xcd, + 0x90,0xf8,0x33,0x1d,0xc0,0xde,0x1,0x9,0xf1,0x67,0xe1,0xd8,0x3f,0xcc,0xa8,0xfe, + 0x1f,0xe2,0x1f,0x1c,0xfc,0xfd,0x17,0xfd,0x8f,0x6d,0x13,0xd7,0xff,0xe4,0x91,0xe9, + 0x80,0x5c,0x39,0xf6,0x43,0x91,0x22,0x5d,0xc0,0xbe,0x6b,0x39,0xf8,0xfb,0xc4,0x4c, + 0xa5,0xeb,0x32,0x10,0x7b,0x94,0x81,0x91,0x8b,0xbb,0xc0,0xf0,0x51,0xb3,0x69,0xff, + 0xcf,0xc7,0xe7,0x7,0xf1,0xfd,0xf8,0xf7,0xc4,0xc,0x7f,0x9c,0x53,0x8a,0xbe,0x5f, + 0x19,0xdb,0x78,0xa8,0x60,0x77,0x47,0x6f,0xf8,0x77,0xe8,0x67,0x44,0xb1,0x47,0xc2, + 0x79,0xa3,0xb8,0xe6,0xf,0x9,0xe7,0x7f,0xe2,0x7d,0x46,0xd8,0x1,0x4d,0xc6,0x7f, + 0x18,0xd6,0x62,0x62,0xbe,0x41,0x6,0xe2,0x2f,0x15,0xda,0x0,0xf4,0x1,0x85,0x7b, + 0x37,0x56,0xae,0xf4,0x83,0xe2,0x8f,0x64,0x6b,0xbb,0x1e,0xa,0x15,0x69,0x6,0xc5, + 0xab,0x5a,0x41,0xdf,0xbf,0x1c,0x95,0xae,0xff,0xe8,0x3f,0xbf,0x39,0x74,0xed,0xdb, + 0x99,0xc8,0xd3,0x59,0x18,0x33,0x3a,0x3e,0x55,0xdf,0x2,0xb1,0x67,0xf3,0x0,0x70, + 0xe,0x50,0xa5,0x8a,0x9,0xa4,0x9f,0x71,0xb,0xea,0xd5,0x73,0x20,0xfa,0xd9,0x58, + 0xe7,0xf6,0x89,0xcf,0x75,0xea,0x6d,0x4c,0x70,0x37,0x49,0x85,0x3d,0xe2,0x1e,0x39, + 0x85,0x27,0xc,0xc3,0xdf,0x32,0x3,0xfe,0x8c,0x10,0x6f,0x46,0xea,0xe2,0xa6,0xd7, + 0xf8,0x3f,0xe2,0xef,0xeb,0x1b,0x27,0xc7,0x9f,0xad,0x1,0x6c,0x2e,0xf3,0xd3,0x11, + 0x27,0xc4,0x3f,0x87,0xf1,0x4b,0x28,0x59,0x72,0x3d,0x94,0x28,0xd9,0x1e,0xa,0x97, + 0x2e,0x5,0x5,0xcb,0x58,0x50,0x7d,0xe0,0x3c,0xaa,0x2e,0x74,0x99,0x64,0xf,0x4d, + 0xdc,0x2b,0x40,0xfd,0xe,0x95,0xc1,0xde,0xd1,0x15,0xa4,0x8e,0x53,0xa1,0x69,0xd3, + 0xe3,0x34,0x2d,0xb6,0xf,0x24,0xd5,0xfb,0xb2,0x34,0x59,0xdb,0xc7,0xb4,0x6d,0x4a, + 0xdc,0x6,0x77,0xf,0x13,0x19,0x76,0x84,0xba,0x9a,0x50,0x2c,0xb1,0x2d,0xab,0x93, + 0x7,0x8c,0x93,0x82,0xbb,0x29,0x9d,0x27,0x8e,0x38,0x23,0xee,0x48,0x38,0x7f,0x18, + 0xd7,0x7f,0xd1,0x35,0xc0,0x41,0xbc,0xd,0xc8,0x4c,0xf8,0x6b,0x43,0xe9,0x88,0xbf, + 0xdc,0x6,0x8,0x75,0x80,0xb8,0xad,0x32,0x3d,0x50,0xa4,0xd0,0x45,0x22,0x7,0x1b, + 0xa0,0x68,0xd1,0xbe,0x90,0xbf,0x40,0xb,0xc8,0x63,0xd5,0x84,0x9e,0xf1,0x1e,0xf5, + 0x78,0xe1,0xc2,0x21,0x50,0xb9,0xf2,0x29,0x82,0xf3,0xdb,0x54,0x6b,0x8a,0x79,0x9f, + 0x2f,0x89,0xda,0x15,0x4c,0xf,0xfb,0x97,0xf9,0xf3,0xbe,0x24,0x78,0xf7,0xa5,0xf3, + 0xba,0x11,0x37,0xd6,0x46,0xe5,0xb2,0x20,0x93,0x7,0xa5,0x24,0x8b,0x83,0xb8,0xe2, + 0x5a,0x1,0x5c,0x3b,0x84,0xed,0x1e,0xd7,0x7b,0xe1,0xba,0x1f,0xb6,0x7f,0x38,0x9e, + 0xf1,0xde,0x23,0x13,0xd8,0xff,0xcc,0x86,0xbf,0x50,0x7,0xa0,0xf,0x80,0x32,0xd0, + 0x53,0xb6,0x7,0x28,0xca,0x0,0xce,0xdb,0xa3,0xef,0x6c,0x2b,0x24,0xc8,0xfd,0x1, + 0x24,0xc4,0xe,0x65,0xa1,0x6c,0xd9,0xe3,0x50,0xa2,0xd8,0x21,0x28,0x5f,0xee,0x32, + 0x94,0xb7,0xbb,0x4c,0xfa,0xf4,0x6f,0x69,0xff,0xe,0x65,0x87,0xc9,0x10,0xce,0x1b, + 0x67,0xef,0x14,0xb0,0xed,0xb3,0xb1,0x85,0x42,0x5,0x2f,0x10,0x5c,0x6a,0xc9,0xf7, + 0xec,0xd,0xd,0xe5,0xbf,0xf1,0x21,0x5c,0xf7,0x81,0xd8,0x22,0x61,0xfb,0xe6,0xcf, + 0xfc,0x35,0xbb,0xc7,0x78,0x18,0x1f,0xbf,0x1,0x80,0xcf,0x23,0xce,0xb8,0xaf,0xb8, + 0x70,0xdf,0x78,0x26,0x3,0xa3,0x23,0xd2,0x17,0xfb,0x2c,0x8c,0x3f,0xd5,0x1,0xac, + 0x2f,0x80,0x3a,0x80,0xcd,0x1,0x62,0xfe,0x3a,0xf6,0xd7,0xd1,0x67,0xc7,0xb9,0xfe, + 0x4c,0xe,0xf0,0x8c,0x38,0x22,0xa6,0xd8,0xae,0x1b,0xc8,0xf6,0x87,0x67,0xf3,0xc2, + 0xf9,0x33,0x8f,0x3b,0xfe,0x86,0xf1,0xf0,0x79,0xec,0x5b,0x16,0x2b,0xf2,0x1f,0x91, + 0xb3,0x46,0xf2,0x7d,0xfe,0x71,0x2d,0x7,0xce,0xed,0x67,0xdf,0x7d,0x40,0x9b,0x8d, + 0x3a,0x9b,0x7d,0xf3,0x5,0xdb,0x35,0xb6,0x6f,0x9f,0x51,0x5,0xa8,0x3f,0x8f,0x98, + 0xe3,0x6f,0xb8,0x36,0x84,0x7d,0x43,0x0,0x71,0xc7,0xb4,0x70,0x8e,0x38,0x62,0x8e, + 0x7b,0x0,0x20,0x5d,0xbf,0xce,0xc1,0xe5,0xcb,0x1c,0xf4,0x9f,0x9c,0x8d,0xbf,0x2a, + 0x1d,0x20,0xb4,0x3,0xcc,0x67,0xeb,0x20,0xf7,0xd9,0x93,0xe4,0xfd,0x2,0xc4,0x91, + 0x8e,0xd,0xda,0xf2,0x78,0xa2,0x5c,0x34,0x90,0x7d,0x7,0x82,0xbd,0x37,0x96,0x4a, + 0x53,0xde,0x23,0x32,0xfc,0x51,0xef,0x33,0x99,0x29,0x5d,0x66,0x39,0xe9,0xfb,0xf0, + 0xeb,0x35,0xf6,0xef,0x4f,0xd9,0xb7,0x95,0xee,0xdd,0xba,0x92,0x93,0xaf,0xf7,0x40, + 0x5c,0x91,0x70,0xbd,0x17,0xf3,0xe5,0xf0,0x1a,0xe5,0x64,0x9e,0xec,0x1b,0x2,0x18, + 0x1f,0x9f,0x63,0x6b,0x41,0x18,0xe1,0x3e,0x60,0x77,0xef,0x72,0xf0,0xe5,0x8b,0x15, + 0x44,0x9d,0x37,0x4d,0x77,0xec,0xb3,0x38,0xfe,0x52,0x66,0x7,0xd8,0x3c,0x3e,0x36, + 0xcf,0x57,0xe8,0xf,0xb4,0x70,0x4a,0xe9,0x1f,0x32,0xcc,0x85,0xeb,0x3f,0x5a,0x38, + 0xf1,0x36,0x83,0xd9,0xe,0x26,0x3,0x88,0x3d,0x2f,0x2f,0x2f,0xa1,0x66,0xcd,0x43, + 0xb0,0x61,0x43,0x1d,0x8a,0xd,0xd2,0x89,0x53,0xfc,0xba,0x6d,0x5c,0xeb,0xc1,0xf6, + 0x70,0xa6,0x7b,0xb8,0xca,0xf6,0xf1,0x45,0x5a,0x23,0x23,0x5c,0xf7,0xc3,0xd6,0xfe, + 0xb0,0xbd,0xe3,0x53,0x7d,0x27,0x82,0xe0,0x1e,0x7d,0x9c,0xdf,0x3,0xee,0xf1,0x23, + 0x1e,0xfb,0x84,0x84,0x82,0x30,0xee,0xaf,0x6c,0xfc,0x35,0x95,0x1,0x9c,0xb,0xc4, + 0xd6,0x3,0xb3,0x35,0xdc,0x6c,0x7e,0x3f,0xe2,0xda,0xb2,0x45,0x6a,0xbc,0xe9,0x37, + 0x41,0x5a,0xf0,0xef,0xe,0xda,0xc8,0xbe,0xb,0x81,0xe7,0xb6,0x32,0xc2,0x38,0x38, + 0xa6,0x88,0xe3,0x3d,0x36,0x25,0x1f,0xc0,0xfc,0xf9,0x8e,0x74,0xcf,0x5e,0xdc,0xab, + 0xed,0xee,0x1d,0x1e,0x27,0xc4,0xeb,0xe4,0x69,0x4e,0xbe,0x76,0x4f,0xf8,0xad,0x17, + 0x61,0x9b,0xc6,0x7b,0xf6,0x3d,0x90,0x3,0x7,0x52,0xda,0x3c,0x3e,0x87,0x84,0xba, + 0x1e,0x65,0xea,0xc5,0xb,0x53,0x8a,0x3b,0xd2,0xe5,0xbb,0x56,0x19,0x82,0x7d,0x56, + 0xc7,0x5f,0x28,0x3,0xe2,0x3e,0x1,0xeb,0x1b,0xa,0xd7,0x7a,0xe0,0x58,0x11,0x92, + 0x30,0x8c,0x11,0x8b,0xcb,0xce,0xad,0x5b,0x25,0x81,0x73,0xfb,0x38,0x98,0x3a,0x75, + 0x23,0xc5,0x4,0xdb,0x25,0xe2,0x2e,0x24,0xc4,0xd,0xf1,0x43,0x59,0xc0,0x36,0x8c, + 0xb8,0xd2,0x6f,0xbd,0x8,0xf0,0x67,0xf7,0x78,0xc6,0x38,0xa7,0xce,0x70,0x70,0xe6, + 0x2c,0x27,0xd7,0xf5,0xc2,0x36,0x9f,0xd1,0xd8,0xff,0xe,0xf8,0x8b,0x65,0x80,0xf9, + 0x84,0x6c,0x8c,0x50,0x28,0xb,0x42,0x99,0x60,0xf7,0xac,0xf,0x81,0x67,0x21,0x61, + 0x3a,0x38,0x1e,0x8c,0x3c,0x42,0x5d,0xcc,0x64,0x0,0xdb,0xa9,0x32,0x39,0x60,0x84, + 0xbe,0x1b,0x93,0xb,0x61,0x38,0xb3,0x1f,0xec,0xb9,0x77,0xef,0xcc,0xe5,0xb8,0x23, + 0xad,0xde,0x6b,0x9e,0xa1,0xd8,0xff,0x2e,0xf8,0xa7,0xc8,0xc0,0xd7,0x28,0xe1,0xf8, + 0x90,0x22,0x62,0x78,0xb,0x9,0xb1,0xc6,0x67,0x18,0x61,0x1a,0x38,0x16,0x2c,0xe6, + 0xd5,0x99,0x6b,0x29,0x78,0x21,0x76,0x48,0x62,0x59,0x50,0x47,0xec,0x39,0x21,0xee, + 0x98,0x6e,0x46,0xd9,0x7b,0x4d,0xf1,0x97,0x4a,0xa5,0xa,0xe7,0xfc,0x29,0x23,0x43, + 0xe3,0x2f,0x94,0x3,0x7e,0x1e,0x17,0x2f,0x7,0x88,0xad,0x98,0x84,0x38,0xb,0x9, + 0x9f,0x43,0xfa,0xfb,0xef,0xab,0x50,0xba,0x74,0x2d,0x85,0xfc,0x42,0x9c,0x84,0x72, + 0xc0,0xf4,0x2,0x23,0x86,0x2f,0xea,0x9,0x24,0x76,0x2f,0xd4,0xf1,0xec,0x19,0xd4, + 0xf5,0x19,0xbd,0xde,0x57,0x53,0xfc,0x31,0x8c,0x7d,0xc3,0x83,0xad,0xf7,0xc6,0x6b, + 0x45,0x7b,0xbb,0x65,0x26,0xfc,0xd9,0x11,0x11,0xf1,0x5f,0x14,0x93,0x3,0x45,0xc4, + 0x7e,0x13,0x62,0x8e,0xc4,0xca,0x8f,0x65,0x52,0xc7,0xbb,0x25,0xdb,0x7f,0x95,0x5, + 0x75,0x84,0xcf,0x20,0x19,0x12,0x73,0x4d,0xf1,0xc7,0x33,0x5b,0xe7,0x2b,0x5c,0xf7, + 0x2f,0x96,0x81,0xcc,0x88,0x3f,0x3b,0x64,0xbe,0x41,0x50,0x68,0xe8,0xe,0x82,0xef, + 0xbf,0x70,0xe2,0x44,0x82,0xc,0xeb,0xd3,0x84,0xee,0x2b,0xb5,0x5f,0x9a,0xe0,0x2f, + 0x26,0x6c,0xcb,0x68,0xc3,0xc5,0x64,0xe8,0x36,0x9e,0x16,0xfc,0xf1,0x7d,0xaf,0x70, + 0xde,0x27,0xce,0xfb,0x12,0xcb,0x40,0x66,0xc6,0x9f,0x1d,0x98,0x17,0xee,0xa3,0x86, + 0xfb,0x69,0x69,0xe2,0xbf,0xe8,0x82,0x7f,0x56,0x24,0x55,0xf8,0x23,0xd6,0x8c,0xd8, + 0xba,0x7f,0x86,0x3b,0x9e,0xd9,0x75,0x36,0xfe,0x59,0x97,0x34,0xc5,0x9f,0xb5,0x7b, + 0xa1,0x2e,0x60,0x3e,0x41,0x36,0xfe,0x59,0x97,0xb4,0xc1,0x9f,0xe9,0x1,0xb6,0x7, + 0x4c,0x36,0xfe,0x59,0x9f,0xb4,0xc5,0x5f,0x6c,0xb,0xd8,0xfe,0x70,0xd9,0xf8,0x67, + 0x4d,0xd2,0x5,0x7f,0xa1,0xf,0x88,0xd7,0xbf,0x2b,0xfe,0xf5,0xba,0x1a,0x1e,0x9f, + 0xcc,0x8a,0xbf,0xd0,0x1f,0xf8,0x1d,0xf1,0x57,0xb6,0xe6,0xf5,0x77,0x23,0xdc,0xdf, + 0x51,0x57,0xfc,0x91,0x7e,0x57,0xfd,0xaf,0xcd,0xb7,0x2b,0xb3,0x32,0x29,0xdb,0xc3, + 0x45,0x9b,0xfd,0xa3,0x71,0xac,0xf8,0x77,0xc3,0x3f,0x9b,0xd2,0x46,0xd9,0xf8,0xff, + 0xff,0xa6,0x6c,0xfc,0xff,0x7f,0x53,0x66,0xc3,0x1f,0xbf,0xa1,0x85,0xdf,0xd2,0xc8, + 0xc6,0x3f,0x1b,0x7f,0xb6,0x87,0x5d,0x56,0x21,0xe1,0xba,0x9b,0xac,0x42,0x99,0x10, + 0x7f,0x29,0xca,0x0,0x96,0x8d,0x7d,0x57,0x25,0xab,0x50,0x7a,0x7f,0xff,0x25,0x3d, + 0xe8,0xd1,0xa3,0x47,0x99,0xa,0x7f,0xa1,0xc,0xcc,0x9e,0x3d,0xdb,0xe0,0xfa,0xf1, + 0x77,0x26,0xb6,0x6e,0x5c,0x13,0x19,0xc8,0x48,0xfc,0xb3,0x65,0x20,0xf3,0xc9,0x40, + 0x46,0xe3,0x9f,0x2d,0x3,0x99,0x4b,0x6,0xc,0x81,0x7f,0xb6,0xc,0x64,0x1e,0x19, + 0x30,0x14,0xfe,0xd9,0x32,0x90,0x39,0x64,0xc0,0x90,0xf8,0x67,0xcb,0x80,0xe1,0x65, + 0xc0,0xd0,0xf8,0x67,0xcb,0x80,0x61,0x65,0x20,0x33,0xe0,0x9f,0x2d,0x3,0x86,0x93, + 0x1,0x19,0xf6,0x52,0x43,0xe3,0x8f,0x87,0x50,0x6,0x70,0xed,0x43,0x36,0xa5,0xf, + 0xed,0xd8,0xb1,0x83,0xe2,0xbf,0x72,0xe5,0x4a,0x83,0xb7,0x7b,0xf1,0xc1,0x64,0x40, + 0x1f,0xef,0xd6,0xb3,0x49,0x2d,0xe9,0xd4,0xee,0xa5,0x0,0xa9,0xe4,0xc6,0x46,0x74, + 0x6f,0x25,0xba,0x37,0x13,0xdd,0x1b,0x8b,0xee,0x25,0xa2,0x7b,0x4e,0x7c,0x1f,0x24, + 0xba,0x97,0x8a,0xee,0x6d,0x44,0xf7,0x56,0xa2,0x7b,0x33,0xd1,0x3d,0x29,0x40,0xb0, + 0xa8,0x0,0xd1,0xa2,0x2,0xc4,0x88,0xa,0xf0,0x49,0x54,0x80,0x78,0x51,0x1,0x92, + 0x44,0x5,0xf8,0x99,0xbe,0x5,0xf8,0xb5,0x40,0xd9,0xf7,0xaa,0xef,0xa3,0x45,0xf7, + 0xc1,0xa2,0x7b,0x2e,0xf5,0x7d,0x92,0xe8,0x3e,0x5e,0x74,0xff,0x49,0x74,0x1f,0xa3, + 0xe6,0x3e,0x3a,0x8d,0xf7,0xc1,0x86,0xbd,0xf,0x12,0x95,0x7,0xb4,0xbd,0x8f,0x51, + 0x73,0x2f,0xe2,0xa7,0xa8,0x7d,0xa9,0xbf,0x17,0x3f,0x2f,0xbe,0x57,0x97,0x7f,0xb4, + 0x9a,0xfb,0xe0,0x2c,0x76,0x1f,0xad,0xe6,0x3e,0x46,0xcd,0xbd,0x3a,0x7e,0x8a,0xf9, + 0x2f,0x6a,0x2f,0x22,0xfd,0xc7,0x89,0xf4,0x1f,0xf7,0xab,0xbe,0xfb,0x24,0xba,0x4f, + 0x12,0xdd,0xab,0xb6,0x10,0xbf,0xc1,0x7d,0xb0,0xe8,0x3e,0x5a,0x74,0x1f,0x23,0xba, + 0xff,0x24,0xba,0x8f,0x17,0xdd,0x27,0x89,0xee,0x7f,0x8a,0xee,0x41,0x7c,0x2f,0x28, + 0x0,0x5a,0x68,0x61,0x1,0x8c,0xe1,0xff,0x0,0x9f,0xe0,0x96,0x7d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/network.ico + 0x0,0x0,0x4,0xea, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xb5,0x59,0xbd,0x6e,0x1b,0x49,0xc,0xa6,0x20,0x23,0x46, + 0x9c,0x42,0x86,0x94,0x22,0x9d,0xdc,0x4,0x48,0x99,0x37,0xb0,0xab,0x7b,0x8e,0xab, + 0x82,0x7b,0x86,0x2b,0xb4,0x3,0xa4,0x49,0x15,0xe4,0x31,0x82,0x14,0xa9,0x93,0xc6, + 0x56,0x95,0x5c,0x77,0xcd,0x3d,0x80,0x9e,0xe0,0xe0,0x32,0xdd,0x84,0xdc,0x1d,0x7a, + 0x39,0x1c,0xce,0xcf,0x4a,0xab,0x1,0x3e,0xac,0xf6,0x87,0x1f,0xc9,0x19,0xe,0xc9, + 0x5d,0x1,0x2c,0xe0,0x2,0xae,0xaf,0x1,0x8f,0x37,0xf0,0xd7,0x5,0xc0,0x1f,0x0, + 0xf0,0xf2,0xe5,0x70,0xfe,0xed,0x19,0xc0,0x57,0xbc,0xf6,0xea,0xd5,0x70,0xfe,0xe1, + 0x39,0xc0,0xbb,0x17,0x0,0x37,0x37,0xc3,0xf9,0x67,0x94,0xfb,0x1f,0x9f,0x7d,0x83, + 0x32,0xf8,0x13,0xaf,0xc,0xd7,0x69,0xdc,0x5d,0x40,0x76,0x6c,0xae,0xd6,0x9e,0x60, + 0xdc,0xf2,0x6,0x52,0x39,0xef,0x3d,0x38,0xe7,0xd7,0xf8,0x7b,0x3d,0xf0,0xf4,0x70, + 0x78,0xcd,0x39,0xfc,0x2d,0x21,0x38,0xba,0xdd,0xce,0x77,0xdd,0x2e,0x92,0xa7,0x6b, + 0x24,0xb7,0xdf,0xef,0x53,0x59,0x7,0xc3,0x35,0x65,0x7,0xc9,0xb0,0xfd,0x24,0x4b, + 0xcf,0x21,0x63,0x22,0xcb,0xf2,0xfd,0x33,0xca,0x8e,0x75,0x22,0xef,0x23,0xe,0xb2, + 0xc7,0x92,0x67,0x9f,0x37,0x57,0x9b,0x1e,0x74,0x8f,0x65,0x5d,0x78,0x9e,0x7f,0x4b, + 0xe,0x92,0xef,0xba,0x2e,0x82,0xeb,0x5c,0x90,0x1f,0xf4,0x47,0x3e,0x1b,0xf6,0xef, + 0xd0,0x6e,0x1a,0x3d,0x2f,0x40,0x98,0xb3,0x51,0xbf,0xe4,0x90,0xbe,0x48,0xfd,0xd6, + 0x90,0x73,0xe8,0x9c,0x31,0x97,0xc1,0x77,0x92,0xd7,0xfe,0x13,0xe8,0x5c,0xae,0xbd, + 0x9c,0x8b,0x60,0x3b,0xb0,0xfc,0xfd,0xfd,0x7d,0x6f,0xf7,0xc3,0xc3,0xc3,0x13,0xe8, + 0x9c,0xae,0xf,0x1c,0x31,0xe4,0xba,0xb3,0xaf,0xdf,0xff,0x86,0x4,0xc4,0xb1,0xb6, + 0x63,0x7a,0x8c,0x9b,0xe0,0x3f,0x3d,0xe7,0xff,0xfb,0xe8,0xfd,0x17,0xe8,0x41,0xf2, + 0x64,0xc7,0xe6,0xc5,0xa6,0x28,0xcf,0xfa,0x79,0xe,0x18,0x53,0xf5,0xe7,0x46,0x4d, + 0x9e,0xf4,0xf7,0x71,0x13,0x8e,0x12,0x14,0x1b,0x84,0x92,0xfc,0xbf,0x97,0xb8,0x32, + 0x4b,0xc4,0xc2,0xfb,0x7f,0x60,0x0,0x2d,0x17,0x30,0x16,0xe1,0x3e,0x3d,0xd7,0xa5, + 0xa0,0x3c,0x83,0xe9,0xa6,0xcf,0x37,0x9c,0x67,0x3e,0x3d,0x2b,0x69,0x6c,0x1a,0xc5, + 0x9c,0x33,0xe1,0xb9,0x90,0x83,0xe2,0x3d,0x24,0xf2,0x87,0x8f,0x9e,0xd,0x6b,0xc9, + 0xb9,0x48,0xf2,0xc6,0x31,0x68,0x73,0xca,0x9c,0x30,0xec,0xf3,0x94,0x8f,0xae,0x8f, + 0x7b,0x34,0xde,0xd7,0xf1,0xfe,0x8e,0xf9,0x86,0xfd,0xa8,0x20,0xec,0x92,0xf9,0x29, + 0x97,0xef,0x5c,0xec,0xfb,0x93,0xdf,0x6c,0xf,0x5f,0x88,0xf3,0x47,0x21,0x7f,0x1a, + 0x79,0x34,0xcf,0x7,0x11,0xa7,0x84,0xb6,0x51,0xf0,0x59,0xeb,0x5b,0xcc,0xaf,0xe9, + 0x9a,0x58,0xeb,0x97,0x22,0x97,0x6f,0x73,0xf6,0xb1,0xd,0x32,0xef,0x4a,0xdf,0x65, + 0xd,0xb1,0xd6,0x44,0xd7,0xb1,0xd1,0x27,0x7b,0xf0,0x7d,0x10,0xfe,0x26,0x5c,0x6a, + 0x6d,0x6b,0x3e,0xcb,0x78,0x8e,0xfd,0x14,0x71,0x25,0x86,0x58,0xeb,0x2c,0xa4,0xff, + 0xb9,0x9c,0x3d,0xc5,0x3e,0x39,0xb7,0x16,0x87,0xe6,0xe3,0xb9,0xb2,0xea,0x81,0xe4, + 0xac,0x71,0x69,0x3e,0x92,0xd1,0xf5,0xe1,0x54,0x3e,0x89,0x53,0xf9,0x6a,0x73,0xd8, + 0xc2,0x27,0x39,0x73,0x31,0x38,0x95,0x8f,0x39,0x2b,0xf6,0x55,0x87,0x3f,0x78,0xff, + 0xde,0xdd,0xe2,0xb3,0xdb,0x80,0x95,0xff,0x11,0xe0,0x10,0xd0,0x63,0xb8,0xe7,0xe0, + 0xb6,0xaf,0x61,0xe,0x6b,0x96,0x5b,0xc5,0xd8,0x23,0xe,0xdb,0xa1,0x6e,0x61,0xb, + 0xd,0x6f,0x61,0xac,0x5b,0x7f,0x3e,0x9f,0xe2,0x55,0xd9,0x5c,0x3,0x73,0x3c,0x1f, + 0xf5,0xd4,0x95,0x7a,0x36,0xca,0x14,0xea,0xda,0xc8,0x37,0xa9,0xbe,0x3d,0xe9,0xa9, + 0xd5,0x39,0x59,0xeb,0x72,0xf5,0x2e,0xce,0xaf,0x71,0x7c,0xd5,0xea,0x5e,0xb,0x77, + 0x52,0x53,0x55,0x9e,0x64,0x3d,0x56,0x9e,0x19,0xf3,0x78,0x9e,0xbb,0x94,0xd7,0x4b, + 0xfc,0x92,0x3b,0x57,0x6b,0x4d,0xee,0x54,0x47,0xb5,0x4e,0xe6,0x74,0xd0,0xb9,0xee, + 0x1b,0xe4,0x3a,0x1c,0x53,0x37,0x2d,0x5d,0xf1,0xbb,0x53,0x5c,0x97,0xb9,0x8e,0x6a, + 0x48,0xfb,0xb3,0x73,0x10,0xb8,0x93,0x77,0x1b,0x83,0x9f,0xe3,0x92,0x8f,0x96,0xfd, + 0xb9,0xf9,0xce,0xcd,0x7f,0x5b,0xdd,0x2e,0xeb,0xa8,0xc5,0x4f,0x7d,0xd,0xc6,0x39, + 0x6a,0xf6,0x47,0xc7,0x61,0x26,0x86,0xd8,0x47,0xe6,0x76,0xd,0x3a,0xac,0xd8,0x6f, + 0x1,0x73,0xea,0x7e,0xc4,0xe0,0x4e,0xf8,0x6b,0x43,0xf7,0x65,0x5a,0x47,0xad,0x4f, + 0xe1,0xb5,0xb4,0xfa,0xa,0x19,0x5f,0xb9,0x3d,0x63,0xf1,0x5a,0xfc,0x24,0xcf,0x3d, + 0x6,0xf7,0x19,0xcc,0xdf,0xcf,0xf,0x44,0xb6,0xce,0xd2,0xc7,0xe8,0xfd,0x37,0x77, + 0x5f,0xc3,0x76,0xeb,0xf9,0x39,0x86,0x3f,0x1f,0xff,0xa3,0xfe,0xb9,0xfb,0x1e,0x3d, + 0x4e,0xe9,0x83,0xac,0x3c,0xa7,0xa1,0xe6,0x72,0xd2,0x68,0xdd,0x6b,0xb5,0x98,0xe4, + 0xe1,0x7f,0xdd,0xfa,0xf7,0x7,0xea,0xad,0x96,0x1,0xb,0xff,0x13,0xf1,0x83,0xe6, + 0x39,0xc9,0x15,0xb,0xbc,0x46,0x58,0x6,0xac,0xc6,0x5e,0x4c,0x60,0x8f,0x38,0x20, + 0x1e,0x17,0x43,0x1f,0x76,0x83,0xb8,0x83,0xb1,0xf,0x73,0xd7,0x53,0xbd,0x9e,0x34, + 0x4a,0xb9,0xee,0xec,0x7a,0x65,0xe,0xca,0xe4,0xfc,0x56,0x3b,0x9a,0xed,0xe7,0xb8, + 0x93,0x47,0xab,0xae,0x55,0xe2,0x3a,0xee,0x35,0x2a,0x3d,0xa5,0xf4,0x97,0xbf,0xe3, + 0x6a,0x68,0xfd,0xa5,0xdc,0x13,0xf2,0x2b,0xf0,0x1e,0xb1,0xf4,0x5b,0xfd,0x43,0xee, + 0x9b,0x88,0x35,0xff,0xf1,0xfc,0xc4,0x36,0xf0,0x7e,0x19,0xd7,0x4f,0xc1,0xc8,0xfb, + 0xad,0x3d,0x5d,0xab,0xd,0xb9,0x75,0xb5,0x9e,0x91,0x35,0xbb,0x55,0xbf,0x65,0xc3, + 0x31,0xfa,0x65,0x7c,0x9f,0xea,0x7f,0xc9,0x86,0x9a,0xfe,0xa9,0x7d,0xf5,0x18,0x5b, + 0x4d,0xfb,0xa1,0xa8,0xdf,0xfa,0xde,0x25,0xf5,0x71,0xdf,0x5d,0xb2,0x8d,0x6d,0x38, + 0x4e,0xff,0xa8,0xdb,0xa9,0xb9,0x90,0xbd,0xa2,0xb5,0x46,0xd1,0x7f,0x14,0x63,0x5e, + 0x2,0xc8,0xec,0x71,0xd,0xed,0xbf,0xf4,0x27,0xa7,0x53,0xea,0xb5,0xf2,0xe2,0x94, + 0xba,0x16,0xfb,0xef,0x13,0x5d,0x4e,0xe9,0xcf,0xd9,0x24,0xfd,0x67,0xce,0x96,0xfa, + 0x9d,0xf3,0xdf,0xe4,0x2e,0xac,0xbd,0xf6,0x9f,0xf5,0xd3,0x79,0xe9,0x28,0xf3,0xcf, + 0xb1,0x39,0x40,0xea,0x96,0x31,0x35,0x4d,0xbf,0xf,0xfa,0xfd,0x64,0x5b,0x74,0xec, + 0x49,0xfd,0xcc,0x5f,0x5b,0x3,0x2b,0xe,0xf4,0xda,0xb7,0xe8,0x8e,0xf7,0xd4,0xb4, + 0x21,0x6d,0x18,0x63,0xaf,0xe1,0x5d,0xd0,0xd8,0xf3,0x53,0xf7,0x80,0xde,0xf,0x3a, + 0xde,0x73,0xfb,0xa1,0x94,0x6f,0x5a,0x73,0x80,0x95,0x13,0x64,0x5d,0xd0,0x39,0x49, + 0xe5,0x5b,0x73,0x9c,0xe2,0x7f,0xb,0x72,0x7a,0x75,0xc,0xb4,0xe4,0x80,0xa7,0x5a, + 0x12,0xfc,0x3f,0xe6,0xbd,0x2a,0xa7,0xbf,0x65,0xc8,0x77,0x89,0xb9,0xf5,0xd3,0xd1, + 0x7a,0xf,0xd6,0xef,0xc3,0xb9,0x3d,0x39,0x87,0x7e,0xe2,0xf0,0x5f,0x5e,0x27,0xd0, + 0xfa,0xe1,0xc,0xf3,0x1f,0xe9,0xef,0xdf,0xa5,0xf3,0xfa,0xcf,0x35,0xff,0xad,0xfe, + 0x9f,0x73,0xfe,0x2d,0x58,0xdf,0x43,0xce,0xe1,0x7f,0x2d,0xd7,0xe9,0xf7,0xe8,0x39, + 0xf4,0x4b,0x1b,0x8e,0x19,0x73,0xe8,0x67,0x1b,0xa6,0xe4,0xa0,0x39,0xbe,0x2b,0x58, + 0x36,0x9c,0x2b,0xcf,0x5a,0x3,0x57,0xb4,0xc3,0x9d,0xb4,0x7d,0xdc,0xc1,0xea,0xe, + 0xe0,0x12,0xb1,0x44,0x2c,0x7e,0x3d,0x22,0xe,0x0,0x12,0x2e,0x16,0x5d,0x4,0x2c, + 0x11,0x97,0x78,0x6f,0x85,0xd8,0x22,0x3a,0x17,0xfe,0x3b,0xca,0x61,0x8f,0x38,0x20, + 0x1e,0x61,0xeb,0x7f,0x3,0x55,0x35,0x55,0xcc, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty_active.ico + 0x0,0x0,0x3,0x63, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0x3b,0x6e,0x1b,0x31,0x10,0x1d,0x19,0x8a,0x1, + 0xc3,0x85,0x55,0x38,0x80,0xbb,0xa8,0x4c,0xe9,0x23,0x28,0x4d,0xea,0x14,0xde,0x3a, + 0xa9,0x82,0x9c,0x42,0xa2,0x54,0xa5,0xcc,0x11,0x54,0xa4,0x30,0x28,0x20,0x69,0x53, + 0x69,0x75,0x9,0x5f,0x23,0x57,0x60,0xb8,0xd4,0x8e,0x97,0x9c,0xe5,0x67,0xc8,0xdd, + 0x58,0x40,0x22,0x1a,0xc4,0xdb,0xe5,0x67,0x3e,0xc2,0x72,0xe6,0xd,0xd,0x30,0x81, + 0x29,0xcc,0x66,0xa0,0x71,0xe,0x5f,0xa6,0x0,0xef,0x1,0xe0,0xf6,0xf6,0xf8,0xfe, + 0xeb,0x12,0xe0,0x87,0x1e,0xbb,0xbb,0x3b,0xbe,0x7f,0xbd,0x2,0xf8,0x7c,0xd,0x30, + 0x9f,0x1f,0xdf,0x1f,0xf5,0xbe,0xdf,0x7a,0xed,0x5b,0xbd,0x47,0x3f,0xea,0x91,0xe3, + 0x78,0xd3,0x16,0x53,0x88,0x35,0xc5,0x40,0xda,0x4d,0x13,0x42,0x98,0xe7,0xe5,0x6a, + 0x65,0x70,0xe5,0x47,0x5,0xc2,0xea,0xad,0xc,0xdc,0xfb,0x7d,0xbb,0x35,0xa8,0x74, + 0xeb,0xa1,0x30,0xa0,0xc0,0xfe,0xeb,0x64,0xc0,0xe1,0x70,0x30,0x58,0x23,0xd6,0xb5, + 0x83,0xb1,0xfd,0x63,0xea,0xdf,0xef,0xeb,0x16,0xf7,0x7d,0x6c,0x65,0x60,0xcb,0xd2, + 0x6f,0xd9,0x81,0x1d,0xf7,0xb9,0xfa,0xa9,0x1d,0x14,0xf,0x8e,0xae,0x6c,0xfd,0xd6, + 0x3a,0x9f,0x7e,0x9c,0xe3,0xa2,0x4f,0x3f,0xca,0xa,0x61,0x4c,0xbf,0x35,0xe6,0x45, + 0x2a,0xc3,0xa7,0xbf,0x93,0xbf,0x6e,0xbf,0x5d,0x57,0x26,0x47,0xff,0x66,0xb3,0x71, + 0xf6,0xe0,0x78,0x8e,0xfe,0xf5,0x7a,0xd3,0x5b,0x1b,0xd2,0x8f,0xcf,0x88,0xeb,0x56, + 0x3f,0xda,0xb1,0x22,0xf3,0xf6,0xde,0xa7,0x77,0x4a,0x49,0xa1,0x54,0x5,0x4,0x9b, + 0x71,0xa9,0xb1,0x8a,0xe0,0x4e,0xa9,0x26,0xce,0xe8,0x70,0x63,0xe2,0xd,0xc6,0x99, + 0x6f,0x97,0x10,0x6b,0x9c,0x38,0x83,0x18,0xea,0x8e,0xdf,0x89,0xb8,0xe3,0x8f,0x3f, + 0x89,0x38,0x54,0xd7,0xfe,0x58,0x62,0xd0,0x17,0xf,0x22,0x71,0x21,0x75,0xa6,0x38, + 0xf2,0xa8,0x7d,0x9c,0x58,0xf3,0xbf,0xd8,0x67,0xc7,0x68,0xda,0x8a,0xec,0xb3,0xec, + 0xa4,0xdd,0x77,0xee,0x59,0xf6,0x79,0x30,0x16,0x7,0xd2,0xb1,0x9c,0x60,0xed,0xc6, + 0x20,0xdb,0x3e,0x6e,0x6c,0xcf,0xb1,0xaf,0x14,0x63,0xf6,0xa5,0x62,0x7f,0x28,0xcf, + 0xc4,0xec,0x3,0x66,0xbc,0xe1,0xc4,0x75,0x5c,0xb3,0x5c,0xd2,0xf8,0xd2,0xc6,0xa1, + 0xe5,0xd2,0x6b,0x67,0xcc,0x3e,0xdc,0x4b,0x73,0x17,0x27,0xee,0x87,0xec,0x43,0x99, + 0x88,0x74,0x7c,0xc,0xfb,0x38,0xbf,0x1f,0xcd,0x37,0x88,0x34,0x1f,0x3d,0xdb,0x1b, + 0xcb,0x53,0x1f,0xde,0x28,0xb9,0xbd,0x51,0xd5,0xe2,0xc6,0x8f,0xcd,0xbc,0xfc,0xa9, + 0xf3,0xd2,0x47,0x6,0xd6,0x26,0x6f,0x69,0xa,0xd,0xf7,0xd0,0xe5,0xad,0x4f,0x57, + 0x10,0x6b,0x59,0xdf,0x13,0x41,0xda,0xed,0xf9,0x9e,0xbf,0xcc,0x7c,0x76,0x94,0x11, + 0xce,0x69,0x66,0x3e,0x97,0xdf,0xd9,0x31,0xdf,0xf4,0x44,0x8c,0x6e,0x1a,0xfd,0x9e, + 0xa2,0xb9,0xb3,0x95,0x1d,0x8c,0xff,0x25,0xfc,0x9c,0x62,0x86,0x7c,0x9f,0xfd,0xa9, + 0xdc,0x70,0xb6,0x7f,0x18,0x67,0x68,0xd7,0x4,0xbf,0x1f,0x56,0x6e,0xb6,0x74,0x4, + 0x72,0x3e,0xc,0xb1,0xbf,0x77,0xe,0xdc,0xf3,0x15,0xcd,0x63,0xd9,0xb9,0x3b,0xa3, + 0x3e,0x2b,0xf5,0x83,0xe6,0xf4,0x31,0xea,0xb7,0x92,0xfa,0x6e,0x2c,0x1c,0x83,0x47, + 0x94,0xf0,0xa,0xfa,0xe,0xcc,0x3c,0xc0,0xa9,0x5f,0xa9,0xfe,0x3e,0xcf,0x70,0xf9, + 0x86,0x93,0x7,0xa,0xed,0x4f,0xf1,0x8f,0x10,0x67,0xe0,0xd8,0x4f,0x65,0xf7,0xf8, + 0x48,0x40,0xe7,0xd9,0xfe,0xe,0x43,0x77,0x7,0x25,0x3c,0x8b,0xfa,0x91,0x5a,0xd7, + 0xb4,0xa7,0xea,0x95,0xe6,0x4b,0x17,0xaa,0x7a,0x98,0x28,0xf9,0x8,0x9a,0x67,0x81, + 0x8b,0xcd,0x78,0x33,0x6f,0xd6,0x49,0x8d,0x55,0x6,0xee,0xc,0xf,0x9b,0xeb,0xbe, + 0x80,0x8e,0x87,0x89,0x19,0xc4,0x5a,0xd6,0xb9,0x63,0x22,0xed,0xbe,0x75,0xc5,0x3c, + 0x2d,0x78,0x1f,0x11,0xe7,0x6f,0x76,0xad,0x19,0x8c,0xa3,0x29,0xae,0x15,0x40,0x95, + 0xe4,0x77,0xa2,0x67,0x43,0xaf,0xde,0x28,0xca,0x41,0x1c,0xee,0xd1,0xe7,0x38,0x8a, + 0x9e,0x8f,0x5c,0xae,0x90,0xc5,0x7d,0x98,0x3c,0xb7,0x84,0x4b,0xb0,0x75,0x27,0x78, + 0x58,0x91,0xff,0x3,0xf4,0x9f,0xfd,0xff,0x7,0xfc,0x3f,0xf1,0xf7,0x3f,0xc6,0xf9, + 0x1f,0xea,0x3f,0xfd,0x5f,0x8c,0x4f,0xef,0xf3,0x9c,0xf0,0xc7,0xbf,0xa1,0x1c,0x1c, + 0x65,0x47,0xeb,0x17,0xdd,0x39,0x3c,0xba,0xc8,0x7f,0xf2,0x3d,0xf8,0xea,0x1b,0xe, + 0x4f,0x1a,0xe4,0x7f,0x4,0x73,0xea,0x88,0xf2,0x5a,0x8b,0x57,0x83,0x71,0x78,0xe2, + 0x29,0xfd,0xff,0xdb,0xf8,0x12,0x75,0xe2,0x29,0xeb,0xc8,0x31,0xfc,0x2f,0xad,0x37, + 0x53,0xf5,0x67,0x89,0xff,0x10,0xe6,0xaf,0x51,0xc,0xd9,0x10,0xf3,0x3f,0x7d,0x2f, + 0x1e,0xaa,0x5b,0x85,0x33,0x8e,0x36,0x8c,0xe1,0x3f,0xad,0x6d,0x52,0x75,0x21,0xda, + 0x30,0x86,0xff,0x21,0xdd,0xb4,0x6e,0xf4,0xc8,0x3e,0xfb,0x7f,0xf6,0xff,0x45,0xfc, + 0x47,0xec,0x6c,0xe3,0xfb,0x1f,0xba,0x67,0x48,0xdd,0x23,0xd0,0xdf,0x81,0x7b,0xff, + 0xe0,0xde,0x43,0x3c,0xbc,0x96,0x72,0x7b,0x51,0x55,0x8b,0x89,0x94,0x2,0x3a,0x4, + 0x70,0xd1,0x9e,0x6f,0xd6,0x37,0xfb,0xa4,0xac,0x74,0x1b,0x80,0xbb,0x3f,0x7c,0xbb, + 0xea,0x7e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-red.ico + 0x0,0x2,0x42,0x9a, + 0x0, + 0x0,0x1,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x34,0x58,0x0, + 0x0,0x96,0x0,0x0,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0, + 0x0,0xca,0x58,0x0,0x0,0x14,0x14,0x0,0x0,0x1,0x0,0x20,0x0,0xb8,0x6,0x0, + 0x0,0x32,0x5d,0x0,0x0,0x18,0x18,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x9,0x0, + 0x0,0xea,0x63,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0, + 0x0,0x72,0x6d,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x25,0x0, + 0x0,0x1a,0x7e,0x0,0x0,0x40,0x40,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x42,0x0, + 0x0,0xc2,0xa3,0x0,0x0,0x48,0x48,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x54,0x0, + 0x0,0xea,0xe5,0x0,0x0,0x80,0x80,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x8,0x1, + 0x0,0x72,0x3a,0x1,0x0,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0, + 0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x6,0x0, + 0x0,0x0,0x5c,0x72,0xa8,0x66,0x0,0x0,0x57,0xfb,0x49,0x44,0x41,0x54,0x78,0x9c, + 0xed,0x7d,0x9,0x9c,0x1c,0x55,0xb9,0xef,0x57,0xdd,0xb3,0x66,0x21,0xeb,0x64,0x4f, + 0x26,0x21,0x6c,0x21,0x1,0x44,0x20,0x8,0x2,0x86,0x7d,0x57,0x2,0xe2,0x45,0xde, + 0x95,0xab,0xf2,0x7c,0x8a,0xe0,0x72,0x65,0xbb,0x57,0x5,0x11,0x17,0x40,0x89,0x17, + 0x65,0xd3,0xab,0xe2,0xbb,0x5e,0x2f,0xfa,0x54,0x94,0x2d,0x21,0x28,0x6b,0x12,0x90, + 0x45,0x45,0x20,0x61,0xcf,0x3a,0x59,0x26,0xfb,0x9e,0xd9,0xbb,0xde,0xf9,0x7f,0xe7, + 0x7c,0x55,0xa7,0xaa,0xab,0x67,0x7a,0x66,0xba,0x67,0xe9,0x39,0xff,0xfc,0x3a,0x55, + 0x5d,0x5d,0x75,0x6a,0x99,0xfa,0x7f,0xdb,0xf9,0xce,0x77,0x3c,0x2a,0x51,0xdc,0x78, + 0xe3,0x8d,0x3e,0x96,0xa9,0x54,0xaa,0xb7,0x2f,0xc5,0xc1,0xa1,0xdb,0xb8,0xe9,0xa6, + 0x9b,0xbc,0x62,0xb4,0x5b,0x94,0x46,0x7b,0x1b,0x37,0xdc,0x70,0x83,0xef,0x79,0x1e, + 0xe1,0xe3,0x90,0x1b,0xee,0xf9,0xf4,0x2f,0x14,0x43,0x8,0x94,0x9c,0x7a,0x4,0xf9, + 0x7b,0xfb,0x1a,0x1c,0x1c,0xa,0x9,0x65,0xcd,0xf2,0x52,0x9,0x80,0x82,0xbf,0xdb, + 0x25,0xa5,0x2,0xe2,0xe4,0x3f,0xf5,0xd4,0x53,0x79,0xe9,0xfb,0x4e,0x26,0x24,0xc1, + 0x59,0x0,0x7d,0x1b,0x27,0x9d,0x74,0x52,0xe4,0xfb,0xcd,0x37,0xdf,0x5c,0x70,0x2b, + 0xa0,0xac,0x90,0x8d,0xf5,0x26,0x1c,0xf9,0x1d,0x4a,0x9,0x49,0xe4,0x37,0x90,0x17, + 0xba,0x20,0x82,0xa0,0x24,0x5c,0x0,0x47,0x7e,0x87,0x52,0x42,0x3b,0xe4,0xb7,0x51, + 0x90,0x97,0xbb,0xdf,0xb,0x0,0x47,0x7e,0x87,0x52,0x42,0x9e,0xe4,0x17,0x74,0xfb, + 0x25,0xef,0xd7,0x2,0xc0,0x91,0xdf,0xa1,0x94,0xd0,0x49,0xf2,0x17,0x4,0xfd,0x56, + 0x0,0x38,0xf2,0x3b,0x94,0x12,0x7a,0x83,0xfc,0x40,0xbf,0x14,0x0,0x8e,0xfc,0xe, + 0xa5,0x84,0xde,0x22,0x3f,0xd0,0xef,0x4,0x80,0x23,0xbf,0x43,0x29,0xa1,0x37,0xc9, + 0xf,0xf4,0x2b,0x1,0xe0,0xc8,0xef,0x50,0x4a,0xe8,0x6d,0xf2,0x3,0xfd,0x46,0x0, + 0x38,0xf2,0x3b,0x94,0x12,0xfa,0x2,0xf9,0x81,0x7e,0x21,0x0,0x1c,0xf9,0x1d,0x4a, + 0x9,0x7d,0x85,0xfc,0x40,0x9f,0x17,0x0,0x8e,0xfc,0xe,0xa5,0x84,0xbe,0x44,0x7e, + 0xa0,0x4f,0xb,0x0,0x47,0x7e,0x87,0x52,0x42,0x5f,0x23,0x3f,0xd0,0x67,0x5,0x80, + 0x23,0xbf,0x43,0x29,0xa1,0x2f,0x92,0x1f,0xe8,0x93,0x2,0xc0,0x91,0xdf,0xa1,0x94, + 0xd0,0x57,0xc9,0xf,0xf4,0xb9,0xd1,0x80,0xb9,0xc8,0x9f,0xc9,0x64,0x7a,0xe5,0x7a, + 0x4a,0x19,0x6e,0x38,0x70,0xf1,0xd1,0x97,0xc9,0xf,0xf4,0x29,0xb,0x20,0x89,0xfc, + 0xd0,0xfa,0x8e,0xfc,0xe,0xfd,0x11,0x7d,0x9d,0xfc,0x40,0x9f,0xb1,0x0,0x6c,0xf2, + 0x7f,0xf3,0x9b,0xdf,0xec,0xcd,0x4b,0x71,0x70,0x28,0x38,0xfa,0x22,0xf9,0x81,0x3e, + 0x61,0x1,0x38,0xf2,0x3b,0x94,0x32,0xfa,0x2a,0xf9,0x81,0x5e,0xb7,0x0,0x84,0xfc, + 0xf0,0x47,0x6f,0xba,0xe9,0xa6,0x5e,0xbe,0x1a,0x7,0x87,0xc2,0xa2,0x2f,0x93,0x1f, + 0xe8,0x75,0x1,0x0,0x24,0x5,0xa3,0x9e,0x79,0xe6,0x99,0x9e,0xbf,0x90,0x1,0x6, + 0x57,0x32,0xdd,0xa1,0xd7,0xdf,0x0,0x17,0x89,0x76,0x70,0xe8,0x3d,0xf4,0x59,0x1, + 0x20,0x75,0xfd,0xdd,0xa7,0x78,0x1f,0x7,0x87,0x3e,0xeb,0x2,0x38,0x38,0x38,0x14, + 0x1f,0xbd,0x6e,0x1,0x38,0x38,0x38,0xf4,0x1e,0x9c,0x0,0x70,0x70,0x18,0xc0,0x70, + 0x2,0xc0,0xc1,0x61,0x0,0xc3,0x9,0x0,0x7,0x87,0x3c,0xe0,0x95,0x68,0x97,0x69, + 0x69,0xde,0x95,0x83,0x43,0x81,0xe1,0x5b,0xe3,0x51,0x4a,0x49,0x18,0xf4,0x89,0x5e, + 0x80,0x62,0x42,0x7a,0x18,0x9e,0x7e,0xfa,0xe9,0xc8,0x77,0x87,0xfe,0x9,0x99,0x29, + 0x77,0xd1,0xa2,0x45,0x79,0xed,0x1f,0x1f,0x90,0x53,0x48,0x20,0x91,0xaa,0xbf,0x27, + 0xac,0x95,0x8e,0x28,0x4b,0x80,0x23,0x7f,0xe9,0xa2,0x98,0xc4,0xce,0x7,0x92,0x45, + 0xd9,0xdf,0xad,0x81,0x92,0xb5,0x0,0x40,0x76,0xc,0x25,0x7e,0xf6,0xd9,0x67,0xdd, + 0x38,0x83,0x12,0x82,0x58,0x0,0x0,0x84,0x40,0xbe,0x96,0xc0,0xe2,0x25,0x4b,0xa, + 0x76,0xd,0x4f,0x3f,0xf5,0x54,0xb0,0xee,0xf7,0xf3,0xa1,0xea,0xfd,0x5b,0x7c,0xb5, + 0x3,0xbb,0x7a,0x90,0x23,0x7f,0xe9,0xa0,0xb7,0xc7,0x2f,0xd8,0xe4,0x2f,0x5,0x94, + 0xac,0x5,0x20,0xb0,0xc9,0x7f,0x77,0xef,0x5d,0x86,0x43,0x9,0x40,0xc8,0x7f,0xf2, + 0x29,0xa7,0x94,0x8c,0x52,0x29,0x79,0x1,0x20,0x70,0xe4,0x77,0xe8,0xe,0x40,0x7e, + 0x10,0x5f,0xd6,0x4b,0x5,0x25,0xeb,0x2,0x38,0x38,0x14,0xa,0x42,0x7e,0xdb,0x2, + 0xb0,0xd1,0x9f,0x3,0x81,0xfd,0xf7,0xca,0x1d,0x1c,0x7a,0x10,0xed,0x69,0xfd,0xfe, + 0x1c,0x8,0x74,0x2,0xc0,0xc1,0xa1,0x3,0x40,0xe3,0xdb,0x5a,0xbf,0x94,0x5c,0x80, + 0x1,0x13,0x3,0x70,0x70,0xe8,0x2c,0x6c,0x93,0x5f,0xd6,0x4b,0x89,0xfc,0x80,0xb3, + 0x0,0x1c,0x1c,0x12,0x10,0x27,0x7f,0xdc,0xef,0x2f,0x15,0x38,0x1,0xe0,0xe0,0x60, + 0x21,0x29,0xd0,0x57,0xca,0x42,0xc0,0x9,0x0,0x7,0x7,0xb,0xb6,0xb9,0xf,0x24, + 0xb9,0x1,0xa5,0x4,0x17,0x3,0x70,0x70,0xa0,0xa8,0x6f,0x5f,0xaa,0x64,0x4f,0x82, + 0x13,0x0,0xe,0xe,0x44,0x39,0xa3,0xfc,0xa5,0x6c,0xfe,0x3,0xbd,0x2e,0x0,0x72, + 0xcd,0xf7,0x8b,0xed,0x5e,0xc2,0x7e,0x6e,0x3c,0x9f,0x43,0x21,0xd1,0x51,0x86,0x5f, + 0xa9,0x46,0xff,0x5,0xbd,0x2e,0x0,0xa8,0x9d,0x29,0xbf,0x93,0x48,0x2f,0x82,0xc1, + 0x9,0x4,0x87,0xce,0x0,0xc9,0x3a,0xc8,0xd8,0x93,0x25,0x10,0x27,0x77,0x5c,0xcb, + 0xc7,0x33,0x0,0x4b,0x11,0xbd,0x22,0x0,0x76,0x7f,0xe7,0x3b,0x3e,0x93,0xd8,0xf3, + 0xe8,0x4d,0xb5,0x3c,0xd4,0x8c,0xd3,0xdf,0x7b,0xeb,0xad,0xbc,0xc4,0xb7,0xd9,0xea, + 0xb3,0x4c,0x9,0x7,0x21,0xf8,0xa1,0x66,0xf9,0xd2,0x7,0x3f,0xa8,0xc9,0x6f,0x7e, + 0xb3,0x5,0x42,0x6f,0xb,0x83,0x2b,0x97,0xaf,0xa0,0x51,0x93,0x26,0xea,0xeb,0xc8, + 0x25,0xd8,0x30,0x4c,0x59,0x2d,0xb6,0xae,0x5d,0x47,0x77,0x4f,0xdf,0xbf,0x7,0xaf, + 0xce,0x21,0x49,0x8,0x0,0x49,0x24,0x1f,0x8,0xe4,0x7,0x7a,0x44,0x0,0xbc,0xf8, + 0xed,0x6f,0x33,0x1b,0x66,0x9a,0x87,0x2e,0x89,0x93,0xd8,0x38,0xc3,0x10,0x82,0xac, + 0x6d,0x82,0x99,0xe6,0xb7,0x37,0x40,0x26,0x23,0x24,0x8e,0x79,0xfe,0x79,0xfe,0x3e, + 0xd3,0xec,0x63,0xb,0x4,0x39,0xbe,0xd8,0x82,0x20,0x17,0xd1,0x47,0xc7,0xbe,0x27, + 0xc2,0x8,0xae,0xd1,0x13,0x27,0xd0,0x37,0x1a,0x1b,0xc3,0xcd,0xe6,0xfe,0x6e,0xae, + 0xac,0x2c,0xf4,0xe5,0x3a,0x10,0x5,0xc4,0x7,0x50,0xc5,0x27,0x97,0xcf,0x9f,0x6b, + 0xbd,0x54,0x51,0x74,0x1,0xb0,0xcb,0xd2,0xf6,0x41,0xc6,0x74,0x2e,0xd2,0x1b,0x12, + 0xc4,0x29,0x74,0xa8,0xbd,0x3f,0xc8,0x6f,0x9,0x86,0xd9,0x46,0x20,0xc0,0x42,0x78, + 0x53,0x2d,0x77,0x9f,0x70,0x42,0x51,0x84,0x80,0x4d,0xfa,0xd1,0x20,0x79,0x2,0xd1, + 0x3b,0x7b,0x4e,0xbb,0x5,0xcf,0x8,0x39,0x8,0x85,0x2d,0xca,0x3a,0x18,0x35,0x79, + 0x92,0xb3,0x12,0xa,0x8,0x21,0xbf,0xed,0xf3,0xe7,0x32,0xf9,0xed,0xef,0xa5,0x8e, + 0xa2,0x9,0x0,0x68,0x7d,0x36,0xed,0xcd,0xc7,0xf6,0xdb,0xab,0xd7,0xac,0xa1,0x86, + 0x29,0x53,0x22,0x4b,0xc0,0xde,0x46,0x14,0xf5,0xf3,0xe3,0x42,0x2,0x98,0x61,0xaa, + 0xfe,0x88,0x80,0xc0,0x9f,0x78,0xf6,0x73,0xcf,0xb1,0x40,0xd8,0xab,0x4,0x41,0x77, + 0x91,0x8b,0xf4,0x79,0x11,0x1d,0xd7,0xa9,0xf6,0xdf,0x5c,0xb7,0x96,0x6a,0x14,0x99, + 0x65,0x29,0xdb,0x13,0xdb,0x51,0xdb,0xf1,0xcb,0x68,0x75,0x4e,0xac,0x63,0xc9,0x2, + 0x61,0xdd,0x7a,0xbe,0xe,0x67,0x1d,0x74,0xf,0x71,0xdf,0x3f,0x29,0xf8,0x37,0x50, + 0x4c,0x7f,0x41,0x51,0xac,0x65,0xf8,0xf8,0x66,0xce,0xef,0x80,0xb0,0x42,0x72,0xca, + 0xa7,0x2e,0x9f,0x45,0x12,0x59,0x8a,0x50,0x88,0xec,0x46,0xc9,0x31,0x0,0x31,0xcd, + 0x21,0x8,0x50,0xe,0xec,0x98,0xaf,0x7e,0xb5,0x53,0xf5,0x0,0x6e,0x6c,0x6a,0xd2, + 0xed,0x58,0x5a,0x3e,0x72,0xd5,0x49,0xe4,0x9e,0x32,0x99,0x36,0xaf,0xa9,0xeb,0xc4, + 0x59,0x34,0xe4,0xb8,0xb8,0x70,0x10,0xd8,0x82,0xcf,0xc5,0xe,0x34,0xae,0xb0,0x46, + 0xdf,0x75,0x54,0x12,0x4c,0x6a,0x7,0x26,0x4d,0xd3,0xdd,0x9d,0xf1,0xfd,0x52,0x10, + 0xa4,0xa3,0xa2,0xa0,0x85,0x2e,0x1a,0x9a,0x50,0x88,0xa4,0x5b,0x1c,0x2e,0xa8,0x5, + 0x0,0xe2,0x63,0xe9,0x9b,0xc9,0x27,0xf1,0x25,0x91,0xf8,0xf2,0xa2,0xdb,0x4b,0x1b, + 0xf1,0x6d,0x6a,0xbd,0xba,0xae,0x2e,0xf2,0x5b,0xc3,0xe4,0xc9,0x54,0x65,0xac,0x85, + 0x5c,0xee,0x84,0x4,0x17,0x5f,0xfe,0xee,0x77,0xe9,0x5,0x25,0x4,0x80,0xf6,0x52, + 0x1f,0xe3,0xbe,0x7d,0x16,0xe9,0x15,0xe2,0x24,0x7,0xf9,0x93,0xb6,0x67,0x21,0x81, + 0xdc,0xf6,0x71,0xd2,0xe,0x4,0x42,0x70,0x9f,0x64,0xfd,0x75,0xf1,0xd2,0xab,0x36, + 0x60,0x15,0x40,0x40,0x39,0x41,0x90,0x3f,0x72,0x95,0x11,0x2b,0x95,0xaa,0x3e,0xdd, + 0x41,0x41,0x4,0x80,0x4d,0x7c,0x86,0x5a,0x56,0xc5,0x89,0x1f,0x27,0x79,0xae,0xed, + 0xa,0xe9,0xfa,0x8d,0xd4,0x36,0x7e,0x5c,0xee,0xfd,0x44,0x20,0x60,0xb9,0x76,0x6d, + 0x54,0x98,0xf0,0x85,0xf8,0x81,0xc5,0x80,0xa3,0xe0,0x2a,0xbc,0xd0,0xc1,0x3d,0x80, + 0x54,0xa3,0x48,0x6b,0x7d,0xcf,0x3a,0x5f,0x5e,0x5a,0x3d,0x97,0x20,0x4b,0xda,0x2f, + 0x8e,0xd8,0xb5,0xc7,0xcf,0x17,0x8,0x4,0xa2,0x48,0xd0,0x11,0x41,0x44,0xb1,0x54, + 0x9c,0x6b,0x90,0x1b,0xbd,0x5d,0x43,0xb0,0xaf,0xa3,0xdb,0x2e,0x40,0x84,0xfc,0x71, + 0x73,0x3f,0xc7,0xc3,0x4f,0x6f,0xa8,0x67,0x82,0x27,0x2d,0x81,0xa4,0xf5,0x40,0x20, + 0xc4,0xd1,0x9e,0x5,0x61,0xc8,0xd2,0x34,0x59,0x93,0x8,0x41,0x42,0x58,0x2,0xd8, + 0x5b,0x8e,0xb0,0xcd,0x7d,0x2f,0x5f,0xd2,0x77,0xa6,0xbc,0xb8,0x5c,0x47,0xfd,0x3a, + 0xa2,0xf1,0x93,0xc2,0xeb,0xcb,0x85,0x1c,0xbf,0xc5,0x2d,0x3,0x5e,0xa5,0x81,0xd9, + 0x7b,0xd0,0x19,0x17,0xa0,0xb7,0x51,0xd2,0x2e,0x40,0x40,0x7e,0x43,0xf4,0x88,0xb9, + 0x1f,0x23,0x49,0x22,0x89,0xd5,0x3e,0x42,0xf4,0xe0,0x38,0xf5,0x82,0xa7,0x37,0x6e, + 0xa,0x8e,0x87,0x35,0x60,0xef,0x17,0x17,0x8,0x62,0x2d,0xe4,0x12,0x2a,0x40,0xa5, + 0xb2,0x16,0x20,0x4,0xe2,0xc9,0x43,0x1,0xf9,0x49,0x97,0x11,0xef,0x14,0xf1,0x85, + 0xd0,0x1b,0xd6,0xe6,0xdc,0x37,0xb5,0x6d,0x7,0x65,0x46,0xc,0xb,0x8f,0xcb,0xb5, + 0xaf,0x0,0xed,0xc5,0x5,0x45,0xcc,0x32,0xb0,0x5,0x81,0x67,0x3e,0x10,0x2,0xce, + 0x1a,0x70,0xe8,0xa,0xba,0x6c,0x1f,0x49,0xa0,0xaf,0x3d,0xf2,0xb,0x69,0x3,0x52, + 0x2a,0xb2,0xf2,0x36,0x75,0x8c,0x10,0x9b,0xad,0x84,0xf8,0x77,0xbb,0x9d,0xd8,0xc7, + 0x16,0x8,0x76,0xbb,0xf6,0xf9,0xf4,0x9d,0xe9,0x36,0xf1,0x69,0x7e,0x74,0x1,0x55, + 0x2a,0x57,0x1,0x31,0x81,0xf,0x7c,0xe7,0x3b,0x4c,0x16,0x7c,0x40,0x1e,0x9c,0xd, + 0x57,0x9b,0x93,0xfc,0xb6,0xb,0x22,0xeb,0x49,0xe4,0x7,0xe1,0xb7,0xef,0xd4,0xcb, + 0x1d,0xbb,0x34,0xf9,0x47,0x8d,0x8,0xd6,0x83,0xdf,0xec,0xa5,0xdd,0x3e,0x20,0xed, + 0x61,0x89,0xf,0x7e,0xdb,0xb8,0x5e,0x3f,0x13,0xcb,0x3a,0xe1,0x6b,0x95,0x67,0x85, + 0x78,0x8b,0x11,0x4,0x80,0x8,0x2,0x7,0x87,0x7c,0xd0,0x25,0x1,0x10,0x44,0xf9, + 0xe3,0xe4,0xb7,0x5e,0xd4,0x8,0x6c,0x4d,0x6f,0x13,0xdc,0x82,0xbf,0x79,0x73,0xb8, + 0xbe,0x69,0x53,0x62,0x1b,0x59,0x1f,0x90,0x5c,0xac,0x5,0x23,0x48,0x2,0x61,0x62, + 0x1d,0x53,0x3d,0xfb,0x18,0x6a,0x7e,0x64,0x3e,0xa5,0xef,0xfd,0x9,0xcd,0xfa,0xcf, + 0x9f,0xd1,0xc2,0xdb,0x6f,0xf,0x7e,0x97,0xe0,0x5b,0xd6,0xb9,0x6c,0xc8,0x35,0xb, + 0x29,0x1,0x8,0x1,0x21,0xb2,0xfa,0x5d,0x88,0x6d,0x7f,0x52,0x5b,0xb7,0x53,0x66, + 0xe4,0xf0,0xe0,0xb9,0x44,0xf6,0x31,0xc7,0xc8,0x27,0xde,0x6,0xaf,0xcb,0xf9,0xb0, + 0xc4,0xf9,0x62,0x82,0xc0,0xbe,0x47,0x16,0x66,0xc6,0x34,0x76,0x42,0xc0,0x21,0x5f, + 0x74,0xda,0x5,0x10,0xb3,0x1f,0x2f,0x63,0x2e,0x93,0x3f,0x30,0xbf,0x41,0x46,0xa3, + 0xf1,0x83,0xfd,0x2c,0x4,0x44,0x37,0xc7,0x7,0x42,0x40,0xd6,0x25,0x12,0x3e,0x66, + 0x4c,0xf6,0x85,0x48,0x5b,0x56,0xc,0x0,0xed,0x61,0x5f,0x3e,0x16,0xa4,0xa8,0xa9, + 0xa1,0x86,0x97,0x5e,0xa6,0xaa,0xfd,0xa7,0xe1,0x0,0x42,0x2f,0x3b,0x88,0xf2,0xe4, + 0x1d,0x77,0xd0,0xd6,0xc3,0xe,0xd3,0xc7,0xcf,0x9c,0x45,0x9b,0xd7,0xae,0xcb,0x6e, + 0x1f,0xd7,0x6c,0xfb,0xee,0xf5,0x66,0x1f,0x90,0x11,0x64,0x5,0xb9,0x95,0x86,0x97, + 0x75,0xb9,0x47,0x68,0x7b,0x0,0xc4,0x67,0x72,0x9b,0xfd,0xd8,0x22,0xb0,0xb6,0xe1, + 0xfa,0x78,0xbb,0xb1,0x4,0xf8,0x38,0x11,0x2,0xea,0xbc,0xfc,0x9b,0x8,0x10,0x89, + 0x23,0xe0,0xdc,0xe3,0x4d,0x77,0xa1,0x22,0x7b,0xc4,0x2d,0x30,0xfb,0x40,0x8,0x64, + 0x54,0x3b,0x10,0x2,0xce,0x1d,0x70,0xe8,0x8,0x9d,0xa,0x20,0xd8,0x9a,0x1f,0xe4, + 0x97,0xec,0x35,0x71,0x3,0x4,0xe9,0x75,0xeb,0xf5,0x4a,0x59,0xb6,0x7c,0xf1,0x37, + 0xd6,0x73,0xf2,0x8e,0x97,0xb6,0x7e,0x13,0x32,0x67,0xda,0xb4,0x6f,0x3b,0x76,0x9c, + 0x22,0x73,0xbd,0x8e,0x72,0xa5,0xd2,0xd1,0xe3,0xdb,0x5a,0xd9,0x5f,0xb7,0xf7,0x41, + 0x7b,0xa9,0x71,0xe3,0xb9,0xed,0xac,0x63,0x4d,0xdb,0x4d,0x2b,0x56,0x51,0xe5,0xfe, + 0x53,0xa9,0x51,0x2d,0x53,0xea,0xc7,0x8a,0xa9,0xb5,0x94,0xbe,0xe6,0x6a,0x4d,0xac, + 0x59,0x87,0xe9,0x6e,0x36,0xdc,0x47,0x5b,0x9b,0x36,0xbb,0x27,0x18,0x5f,0x7b,0xbd, + 0xe5,0x1a,0xa4,0xd3,0x94,0xda,0xbc,0x95,0x32,0x35,0xa3,0x34,0x51,0x5b,0x5b,0xc3, + 0x75,0x1c,0x97,0x8e,0x5e,0x6b,0xbb,0x50,0xfb,0x67,0x46,0x8f,0xa4,0xd4,0x96,0x6d, + 0xd1,0xa5,0xb4,0x25,0xda,0xbe,0xa5,0x85,0x32,0x63,0x46,0xeb,0xf3,0x42,0xe0,0xd8, + 0xbd,0x1d,0xe3,0x26,0x6,0xeb,0x91,0x20,0x21,0x4,0x88,0xf9,0x9b,0x94,0xa2,0x10, + 0x70,0x41,0xc0,0x8,0xba,0x15,0x4,0xcc,0xdb,0x5,0xb0,0x35,0xbf,0xd,0x21,0x3f, + 0x48,0x9f,0x5e,0xbf,0x81,0x3f,0x6d,0x13,0x27,0x44,0xc8,0x90,0xa9,0xdf,0x10,0x59, + 0x82,0xac,0x9c,0xb7,0xe7,0x67,0xa2,0x56,0x1,0x8,0xab,0x4,0x83,0xbf,0x65,0x8b, + 0x5a,0x2f,0xe3,0xf5,0x88,0x70,0x50,0x1f,0x3e,0xd6,0x33,0x6d,0x41,0xfe,0x8c,0x1d, + 0x17,0xb6,0x8d,0x63,0x37,0x6d,0xc,0x8f,0x55,0x68,0x5c,0xbe,0x42,0x91,0x7e,0xa5, + 0xda,0xe6,0x51,0xf3,0xca,0xd5,0x58,0xd0,0x82,0x35,0xab,0xd9,0x3a,0xb8,0xfc,0xca, + 0xcf,0xeb,0xf6,0x97,0x2d,0xd,0xef,0xb,0xd7,0xd,0xf2,0xaf,0x5b,0xa3,0xc9,0x2f, + 0xe7,0x7,0xf9,0x37,0x6d,0xd1,0xe6,0xb9,0x22,0x2b,0x43,0x9,0xb8,0xc0,0x97,0xb7, + 0xef,0x77,0x8d,0x76,0x2b,0x32,0xeb,0xcc,0x7d,0xaf,0x5d,0x1f,0xd9,0x1e,0xb4,0x87, + 0x63,0xe3,0x4b,0x69,0x3,0x9a,0xdf,0x3c,0x6f,0x3e,0x9f,0xb8,0xd,0xc6,0xc2,0xe0, + 0xef,0xb0,0x4a,0x20,0xac,0x4c,0x0,0x33,0x12,0x1b,0xe8,0x68,0x4c,0x82,0x83,0x3, + 0xe5,0x29,0x3d,0xec,0x68,0xbf,0xed,0xef,0x4b,0xe0,0x49,0xba,0xa2,0x92,0x34,0x3f, + 0x88,0x9,0xd2,0xa,0xf9,0xbd,0xb2,0xf2,0xac,0xf6,0x41,0xd2,0xaa,0xe9,0xfb,0x7, + 0xcb,0x76,0x1,0x41,0x0,0x41,0x61,0xac,0x5,0xd1,0xfe,0x68,0xdf,0xb,0xfc,0xeb, + 0x90,0x8c,0x68,0x93,0xdd,0x1,0x8b,0x14,0x29,0xf5,0xbd,0x7c,0xca,0x24,0x9a,0xb7, + 0x6c,0x19,0x9d,0x7c,0xf5,0xd5,0x74,0xcc,0xac,0x59,0xec,0xa,0x4,0x26,0x36,0x96, + 0xa2,0x65,0x40,0x72,0x45,0x7c,0xd6,0xc2,0x39,0x34,0x7d,0x66,0x75,0x1d,0xa5,0x6a, + 0x27,0x53,0xa6,0x6e,0x5d,0xf0,0x6c,0x2,0x8b,0x22,0xe7,0x7d,0xe8,0xdf,0x53,0x13, + 0xc7,0x7,0xc7,0x67,0x41,0xac,0x4,0x73,0xde,0x60,0xdd,0x5c,0x1b,0xb,0x89,0x76, + 0xac,0x1,0xdf,0xf4,0x10,0x94,0x9a,0x15,0xe0,0x2c,0x80,0x8,0xba,0x65,0x1,0x74, + 0x78,0xb0,0xad,0xf9,0x23,0x99,0x7d,0x96,0xe6,0x87,0xc6,0x8f,0x4,0xf9,0xac,0x97, + 0x3f,0x20,0x3e,0x7,0xe8,0x62,0xc4,0x94,0xed,0x81,0x59,0xab,0xdc,0x9,0x10,0x5b, + 0x21,0xa7,0x40,0x10,0x1,0x60,0x7f,0xe7,0xf3,0xa6,0xb3,0x7f,0xb3,0xce,0xe5,0xb1, + 0x3b,0xa0,0x4e,0xa3,0xb4,0x24,0xdf,0xf4,0xe4,0x49,0x2c,0x8,0x7e,0xb4,0x7b,0x27, + 0xbd,0x3d,0xa8,0x9a,0x7e,0x7e,0xf7,0x3d,0xa1,0x10,0xc0,0xf5,0x1b,0xe2,0xf3,0x7d, + 0x24,0x98,0xf6,0x20,0x6d,0x40,0xf0,0x1c,0x84,0xf7,0xd6,0xad,0xd6,0x5d,0x8f,0x13, + 0x6b,0xc9,0xdb,0x50,0x47,0xfe,0xf8,0xc9,0xe1,0x12,0xbf,0xa9,0xed,0xd1,0x46,0x3b, + 0x10,0xa,0xc6,0x35,0xe0,0x58,0x82,0xe9,0x62,0xc,0xba,0x1a,0x1,0x8,0x2f,0x43, + 0xe,0x8,0x1,0xee,0xa5,0xa1,0xd2,0x73,0x3,0x9c,0x0,0x88,0xa0,0xf8,0x2e,0x0, + 0xb4,0x48,0x40,0x7e,0xbb,0xab,0x4e,0x81,0xc9,0xf,0xcd,0x6f,0x93,0x5e,0x99,0xe1, + 0x20,0x3e,0xcc,0x71,0x68,0x7c,0xd6,0xfa,0x31,0xf2,0x83,0xd8,0x9e,0x21,0x96,0x2f, + 0xa6,0xab,0xdc,0x8a,0xb1,0x24,0x64,0xf0,0x86,0x8,0xb,0x7d,0xc5,0x31,0xf2,0xdb, + 0xdf,0x73,0x3c,0xa,0x9c,0x8b,0x5,0xb,0x5c,0x6,0x21,0x86,0x89,0xfe,0x5f,0x7d, + 0xe8,0xa1,0x74,0xc8,0xbe,0x6,0xbd,0xa3,0xe9,0x72,0xe3,0x6e,0x3b,0x90,0xbf,0xbc, + 0x3c,0x6a,0xda,0x1b,0xd,0xf,0xd3,0x9e,0xc9,0x29,0x3d,0xf,0x38,0xf5,0x6,0x1d, + 0x2b,0xf0,0xd6,0xaf,0x66,0x72,0xeb,0x6b,0x4d,0xe9,0x1c,0x83,0xd,0x5a,0x58,0x30, + 0xf9,0xcd,0x12,0x2,0x6,0xfb,0x5,0xc7,0xe1,0x18,0x79,0x7e,0x70,0x1d,0xd4,0xef, + 0x38,0x5f,0x60,0x55,0x0,0xe9,0x74,0x90,0x5f,0x90,0xd8,0x3,0x1,0xe1,0x25,0x2e, + 0x81,0xba,0x3f,0x9c,0x7b,0xab,0x5a,0x5e,0x69,0x3f,0x3f,0x7,0x7,0xb,0xed,0x4a, + 0xf,0xd6,0xfe,0x20,0xbf,0x9d,0xe1,0x27,0x9a,0xdf,0xce,0xde,0x33,0x1a,0xd3,0x86, + 0x98,0xfe,0xfe,0x66,0x74,0xd3,0x45,0x89,0xc,0xe2,0xfb,0x41,0x37,0x96,0x39,0xc0, + 0x58,0xb2,0x9e,0xc,0x8a,0x51,0xda,0xe,0x9b,0xc4,0x2,0x48,0xb4,0x6,0x38,0x86, + 0xa0,0x2c,0x93,0xd6,0x96,0x30,0x30,0xb8,0xb9,0x5e,0xf,0xb,0xb4,0x62,0x0,0x62, + 0x4d,0x44,0xce,0xd,0x2,0xa9,0x73,0xe1,0xf4,0xb,0x57,0xad,0xa4,0x87,0x27,0x4f, + 0xa4,0xfb,0xbe,0xfe,0xd,0xf2,0x26,0x4d,0x88,0x3c,0x14,0xf6,0xdb,0x25,0xe,0x10, + 0xd7,0xf0,0x8a,0xec,0xfe,0x4,0x4b,0xbb,0x6f,0x5c,0x87,0x28,0xa5,0x7a,0x5e,0x8a, + 0xa8,0x9b,0xb7,0x2a,0x35,0x3c,0x2a,0xdc,0x59,0xf9,0xf1,0x9e,0x32,0xe1,0x7d,0x90, + 0x17,0xa6,0xbb,0x2c,0xb1,0x1f,0xa0,0xf6,0xe5,0xb3,0x70,0xac,0xc3,0x8f,0x5a,0x7, + 0x66,0x1c,0x40,0x4a,0x5d,0x5b,0x78,0xef,0x7e,0xd0,0xab,0x10,0xac,0xa3,0xd7,0xc0, + 0xb6,0x6,0x4,0x4a,0x28,0xdc,0x7d,0x7c,0xf7,0x47,0x47,0xf6,0x15,0x38,0xb,0x20, + 0x82,0xe2,0x67,0x2,0x76,0x94,0xda,0x6b,0x6f,0xb7,0x7d,0x7d,0x1d,0x90,0x4b,0x47, + 0x35,0x3e,0xfc,0x52,0x98,0xe1,0xd0,0xc4,0x20,0xa2,0x1f,0xde,0x81,0x6c,0xc3,0xb2, + 0x42,0xed,0xdf,0xbc,0x72,0x15,0x35,0xa9,0x63,0x2b,0xd5,0x7a,0x40,0x7e,0x31,0xf9, + 0xa5,0xb7,0x40,0x11,0x9e,0x7d,0x7f,0x3b,0x0,0xe8,0xb5,0x5,0xd7,0x23,0xc7,0x89, + 0x10,0xf0,0x95,0x60,0x91,0xf3,0x64,0xd4,0x27,0xa5,0xd6,0xcf,0xaa,0x9d,0x4a,0xef, + 0xee,0xd9,0xa5,0x9b,0x5d,0xbb,0x9e,0x85,0x0,0x9f,0xa,0xda,0xb7,0x7e,0x2d,0x9b, + 0xf0,0x7c,0xbe,0x18,0xe1,0x71,0x4e,0xaf,0x7e,0x8d,0xd2,0xea,0xea,0xbe,0x96,0xbd, + 0xce,0x3e,0x77,0xc4,0x5d,0x90,0x80,0x9d,0x79,0x46,0x20,0xff,0xdc,0x6d,0x5b,0xe9, + 0x8f,0xf6,0xef,0xd8,0x1f,0xa6,0xbd,0x5a,0xc7,0xb5,0x9,0xbc,0x32,0xa3,0xf9,0xdb, + 0x5a,0xb5,0x77,0xa4,0xae,0x81,0x2d,0x3,0xc4,0x3c,0x70,0x7d,0x76,0x32,0x91,0x75, + 0xe,0xd9,0xc6,0x14,0xc1,0x73,0x19,0x37,0x91,0x3c,0xd5,0xf6,0x95,0xf3,0xe7,0xd3, + 0xdd,0xe7,0x9e,0x9b,0xfc,0xf7,0x73,0x18,0xb0,0xc8,0x29,0x0,0xe2,0xda,0x3f,0xb, + 0xb6,0x56,0x44,0xdf,0xb3,0xd1,0xf8,0x11,0x58,0xe4,0x6f,0x5c,0xb4,0xc4,0x1c,0xa7, + 0x17,0x7e,0x5d,0x9d,0x36,0xf1,0x51,0x9e,0xc9,0x10,0x12,0x5d,0x73,0xa4,0x3e,0x2d, + 0x8a,0xf8,0xf,0x2b,0xc9,0xf9,0x91,0x8f,0x7e,0x54,0xf7,0x8,0xd8,0xa6,0xbe,0x65, + 0xf2,0xdb,0xbd,0xa,0x76,0xb0,0x91,0x5,0x42,0x42,0x3c,0x20,0xb0,0x4,0x24,0xbf, + 0xc0,0xb8,0x3,0xd8,0xff,0xb,0x43,0xf6,0x23,0xfa,0xea,0xbf,0xd1,0xb5,0xdf,0xbd, + 0x55,0x47,0xed,0x8d,0xab,0xc3,0xb7,0x69,0x88,0xcf,0x56,0x45,0xbd,0x36,0xe3,0x69, + 0xe9,0x6b,0xfa,0xd9,0x8,0xe9,0x2d,0xf2,0x57,0xac,0x5e,0x4d,0xcd,0xb5,0xb5,0x54, + 0x1,0xc1,0x69,0x45,0xe3,0xb1,0xed,0xe1,0x3d,0x7b,0xa9,0x62,0xf7,0x9e,0xc0,0xad, + 0xe2,0xeb,0x37,0xfb,0xe0,0x77,0x81,0x6f,0x2c,0x3,0xf,0x96,0x81,0x12,0x2,0x7c, + 0xde,0x71,0xba,0xbf,0x5f,0x7a,0x15,0x2,0x8b,0xc0,0x72,0xb,0x82,0x7c,0x84,0x1d, + 0x5a,0xa0,0x91,0x12,0x8,0x7c,0x9d,0xa6,0x47,0xc2,0xc1,0xc1,0x46,0xbb,0x16,0x40, + 0xbc,0x8,0x47,0x3c,0x9f,0x1f,0x5d,0x7e,0xfc,0xd2,0x5b,0x16,0x0,0x6b,0x79,0xcb, + 0x44,0x3,0xc9,0x9b,0x56,0xae,0xe,0xb5,0xbb,0x35,0x80,0xdf,0xf3,0x35,0xf9,0x1f, + 0x53,0x26,0x38,0x36,0xbd,0xad,0xb4,0x68,0x9b,0x22,0x6d,0x5a,0x1d,0x9f,0x1e,0x3d, + 0x8a,0x1e,0xfe,0xfd,0xef,0xe9,0x5d,0xb5,0x3c,0x70,0xcb,0x56,0x7a,0x7b,0xd4,0x48, + 0x3a,0x78,0xeb,0x36,0xfa,0xb0,0x12,0xa,0xf,0xa9,0xed,0x1f,0x3e,0xe9,0x44,0xe3, + 0x62,0x6c,0xc,0x4,0x41,0x70,0x4e,0x65,0x19,0xf0,0x36,0xa9,0xfd,0x66,0x9,0x2, + 0x11,0x2,0x81,0x5,0x82,0x4b,0x51,0xeb,0x38,0xff,0x1,0xaa,0xfd,0x97,0xb7,0x6e, + 0xa6,0x63,0x46,0xd5,0x30,0xe9,0x3d,0x7d,0x3,0x9a,0xf0,0xca,0xbc,0x17,0x52,0x6, + 0x5a,0xde,0xdc,0x37,0x8,0xf,0x64,0x24,0x21,0x9,0xbd,0xc,0x8a,0xfc,0x41,0x4d, + 0x4,0x3,0x6c,0x6b,0xa3,0xb0,0xd7,0x24,0xf0,0x7e,0xcc,0xf7,0x72,0xd3,0x4e,0xb, + 0x4,0x81,0x58,0x4b,0xea,0x9c,0x10,0x2,0xbc,0xcc,0xf8,0xfa,0x7a,0x8c,0x79,0xf, + 0x41,0x60,0xb,0x81,0xe8,0x43,0x8,0xbf,0xfb,0x8e,0xfc,0xe,0x39,0x90,0xa8,0xde, + 0x6d,0xed,0x1f,0x4,0xfe,0x62,0x99,0x7e,0xf6,0xb6,0xa4,0x48,0xbf,0x8e,0xbc,0xa7, + 0x82,0x60,0x1b,0xf1,0xee,0x5a,0xe3,0x57,0x9e,0xa4,0xfd,0x51,0x68,0x79,0x10,0x1c, + 0x1a,0xf8,0xcd,0x41,0xd5,0x34,0x43,0x69,0xc7,0xb7,0x86,0xc,0xa6,0x43,0xf6,0xee, + 0xa3,0x37,0x7,0xf,0xa2,0x19,0x6a,0x19,0x1f,0xed,0x97,0x31,0xda,0xf2,0x9a,0xc3, + 0xe,0x67,0x2d,0xef,0x8d,0x19,0x9b,0x75,0xfd,0x59,0xd6,0x40,0x42,0xd7,0x60,0xd0, + 0xfb,0x0,0x18,0xb7,0x3,0x82,0x68,0xb9,0x12,0x34,0xd7,0x7e,0xf1,0xaa,0xf0,0xbc, + 0x31,0x33,0x3e,0x4e,0x76,0xfb,0x1,0xb6,0xa5,0xb2,0xb7,0xe5,0x3,0x11,0xb4,0xe9, + 0x4c,0x38,0x9c,0x19,0x6d,0x4,0x16,0x1,0x4,0x2a,0xb6,0x49,0x4c,0x1,0xb1,0xf, + 0xe4,0xfb,0x8c,0xf,0x93,0x7f,0x22,0xf1,0x1,0x79,0xe,0x75,0xeb,0xc2,0xbf,0xd3, + 0x1b,0x4b,0x79,0x79,0xf7,0x7f,0xfc,0x47,0x27,0xaf,0xae,0xef,0xc1,0xc5,0x0,0x22, + 0x28,0x5e,0xc,0x20,0xa9,0x98,0x47,0x10,0xfc,0xdb,0x18,0xcd,0xd7,0xf,0x8,0x67, + 0x88,0x66,0x13,0x8c,0x23,0xe1,0x86,0xfc,0xb,0x33,0xad,0xf4,0xce,0xb2,0xa5,0xdc, + 0xfd,0xf0,0x66,0xed,0x64,0x2a,0x53,0xdb,0x96,0x6d,0xdf,0x41,0xad,0xdb,0x95,0xf6, + 0x6d,0x6d,0xa3,0xd4,0xd6,0xad,0xf4,0x37,0xf5,0x5b,0x9b,0xb2,0xfc,0x97,0x29,0x2d, + 0x58,0x56,0x55,0x45,0x33,0x47,0x8e,0x50,0xe4,0xd2,0xda,0xf6,0x10,0x25,0x24,0x20, + 0x1c,0xe6,0x2d,0xd5,0x3e,0xf7,0x1,0x8b,0x16,0xd3,0x5c,0x65,0x15,0x30,0xc,0x69, + 0xc5,0x15,0x91,0x25,0x67,0x1f,0x22,0x50,0x68,0x72,0x10,0x2,0x2b,0xc0,0x8,0x28, + 0x90,0x1f,0xf1,0x80,0x73,0x6a,0xa7,0x72,0x7e,0xc0,0xb5,0x72,0xcf,0x26,0xca,0x2e, + 0xa4,0x67,0x42,0x5a,0x99,0x78,0x99,0x18,0xe1,0xbb,0xfa,0x97,0x90,0xe3,0xd0,0x1e, + 0x1b,0x48,0xea,0xfd,0x4e,0xab,0x73,0x88,0x2b,0x21,0x96,0x6,0x7,0x10,0x4d,0x40, + 0xd0,0x43,0x0,0x51,0x59,0x4c,0x58,0x42,0x10,0x70,0xcf,0xc4,0xc4,0xa8,0xb,0x96, + 0x9a,0x3c,0x51,0xc7,0xd,0x94,0xf5,0x52,0xae,0x5c,0xae,0x3b,0x1e,0x78,0xa0,0x8b, + 0x57,0xe8,0x50,0xaa,0xc8,0x12,0x0,0x59,0xbe,0x7f,0x12,0xf9,0xcd,0x88,0x3c,0xdb, + 0x7,0x97,0x2e,0xbf,0x2c,0xcd,0x4f,0xfa,0x5,0xaf,0x38,0xe1,0x78,0x7a,0x44,0x49, + 0xc3,0x47,0x14,0xc1,0xf0,0x3a,0x57,0x34,0x36,0xd0,0xdf,0x56,0xaf,0x9,0xb,0x85, + 0x2a,0xa0,0x78,0xd3,0x22,0xb3,0x4,0x5a,0x11,0x14,0xdb,0xbb,0x97,0x3f,0x65,0xfb, + 0x55,0xd3,0x8e,0xf,0xce,0x50,0xc2,0x43,0xf7,0x6e,0xbf,0x55,0x5d,0x45,0x3f,0xf9, + 0xf0,0x47,0xe8,0x7,0xbf,0xf9,0x8d,0xde,0x59,0xba,0x21,0x63,0xfd,0xf1,0x41,0x6f, + 0x4,0xae,0x15,0xbe,0xb4,0x65,0xd,0xf8,0x26,0xfe,0xc0,0xf7,0x60,0x96,0x8f,0x2c, + 0x5e,0x42,0xf,0xaa,0xcf,0x5,0xdf,0xbc,0x91,0xca,0x10,0xa7,0x30,0xc9,0x34,0xbc, + 0x8f,0xfa,0xde,0x9a,0x42,0x7d,0xc3,0x98,0x9,0x6f,0x96,0x77,0xfe,0xee,0xf7,0xf9, + 0x3e,0xf7,0x2c,0x7c,0xe1,0xe2,0x8f,0x6,0x6d,0xfa,0xea,0x1c,0xad,0x6a,0xd,0x16, + 0x41,0x44,0xf8,0xf0,0xe,0xe1,0xdf,0xc5,0x33,0xa9,0xc1,0xd2,0x95,0x18,0x3c,0xcb, + 0x78,0x8d,0x84,0x2d,0xdb,0xa8,0x65,0xca,0x14,0xfa,0xd2,0x45,0x17,0xd1,0xf,0x9d, + 0x10,0x70,0xb0,0xd0,0x7e,0x2f,0x40,0x42,0x0,0x30,0x5d,0x8f,0x84,0x1f,0x43,0x8, + 0xa3,0xf5,0xb5,0xe6,0x37,0xfd,0xe1,0x71,0xcd,0xaf,0x3e,0xa2,0xf5,0xdf,0x56,0x1a, + 0xbf,0x5c,0x91,0xee,0x6f,0xeb,0xd7,0xd3,0xb1,0x6d,0x19,0xfa,0xa0,0xfa,0x4d,0x51, + 0x92,0x3e,0x41,0x23,0x78,0xff,0x13,0xae,0xfe,0xb7,0xc4,0xcb,0x58,0x3c,0xef,0x56, + 0xa2,0x5d,0x4a,0x68,0x3c,0x56,0x47,0xdb,0xcf,0x1c,0x43,0x3f,0xac,0x99,0x48,0xe3, + 0x32,0xa3,0xe8,0xb3,0xf,0x3f,0x44,0x3f,0xba,0xe6,0x1a,0xfa,0xfe,0xed,0xb7,0xd3, + 0x57,0x2e,0xb9,0x44,0xb,0x26,0x63,0x2e,0xcb,0x35,0xd8,0x1,0x42,0xee,0x92,0x34, + 0xe6,0x63,0x24,0x20,0x68,0x2,0x72,0x19,0x25,0x70,0xce,0x9c,0x3c,0x85,0x2a,0x8f, + 0x9d,0x4d,0xe9,0xd7,0x97,0x5,0xcf,0xa0,0xcd,0xe4,0x28,0x14,0x92,0xf0,0x71,0xd8, + 0x6d,0x89,0x30,0xd0,0x2e,0x85,0x16,0x4,0x76,0x7c,0x80,0x2d,0x3,0x5c,0x13,0xac, + 0x0,0x74,0x2f,0x4a,0xda,0xb0,0xc0,0xfe,0xbb,0x6d,0xd4,0xa3,0x8,0x39,0x26,0x91, + 0x2b,0xa0,0xeb,0x30,0x60,0x91,0x2d,0x0,0xec,0x3e,0xff,0x98,0xef,0x6f,0x6b,0x1f, + 0x1e,0xc9,0x87,0x20,0x9e,0x95,0xda,0x1b,0x44,0xfa,0x1,0x93,0x4,0x3,0xcd,0xff, + 0x8e,0x32,0x55,0x91,0x6d,0x57,0xd5,0xd4,0x48,0x4b,0xea,0x37,0x11,0x22,0x0,0x9f, + 0xa0,0x1a,0x6a,0x51,0xf4,0xf,0x48,0xf,0x56,0xcd,0x3d,0x97,0xe8,0xf,0x8f,0x12, + 0x5d,0x78,0x9e,0x5a,0xce,0xf,0xfa,0xf9,0x4f,0x5c,0xb2,0x98,0xe8,0x8f,0xf3,0x79, + 0x9f,0xc5,0x3f,0xb8,0x95,0xbe,0x3d,0x62,0x17,0x2d,0xb9,0x71,0xe,0xbd,0xaa,0x6c, + 0x5,0x54,0xf9,0x1,0xf9,0x1b,0x27,0x4d,0xa2,0xc1,0xb0,0x50,0x26,0x6a,0x5f,0x38, + 0x48,0x4b,0x46,0xd7,0x98,0xb8,0x2,0x6d,0x6d,0xa1,0xab,0xa2,0xae,0x3b,0x70,0x5, + 0xd4,0x39,0x3c,0x68,0x76,0x65,0x19,0x2c,0x5c,0xbd,0x92,0xa8,0x6e,0xd,0x7d,0x4a, + 0x99,0xcf,0xbf,0x38,0xf6,0x3,0xca,0xd7,0xa7,0x80,0xf1,0x3f,0x2a,0x20,0xe1,0xdb, + 0x83,0x8,0x3,0x5b,0x10,0xa4,0x8d,0x7a,0x17,0x8b,0x80,0x61,0x45,0xfe,0x7d,0x8, + 0x2,0x6c,0xc3,0xdf,0x66,0xdc,0x24,0xf2,0xea,0xd7,0xf2,0x92,0xcc,0xc8,0x43,0x7, + 0x87,0x24,0x44,0x4,0x40,0x56,0x6d,0xbf,0x76,0x20,0x43,0x74,0xe1,0x5f,0x4b,0xd2, + 0x8d,0x87,0xaa,0x3b,0xa6,0x78,0x27,0xdb,0x3,0x4a,0xdb,0xde,0xae,0xc8,0x9f,0x51, + 0xc4,0x1a,0xb1,0x7b,0xf,0x3d,0xb1,0x6d,0x1b,0x7d,0x40,0x6d,0xbe,0x4c,0x91,0xff, + 0xd8,0xab,0xaf,0xd1,0xd,0xcd,0x35,0x7d,0xd3,0x92,0xb7,0x3a,0xf7,0xbc,0x50,0x18, + 0x8,0xac,0xef,0x27,0x9a,0xef,0x8d,0xd7,0x7d,0x8f,0x16,0x9f,0x36,0x95,0xee,0xbd, + 0x77,0x11,0xfd,0xe8,0xf3,0x57,0xf2,0xcb,0x9f,0xa9,0x19,0x4d,0x1e,0x12,0x88,0xd2, + 0xe9,0xa8,0x20,0x30,0x49,0x4a,0x9e,0x71,0x5b,0xbc,0x84,0xd4,0x5e,0xc8,0x9a,0xca, + 0xfd,0x6b,0xe9,0x6c,0x3c,0x94,0xc9,0x13,0x68,0xf9,0x9b,0x6f,0x6,0xbf,0xdd,0xf9, + 0xfb,0x9e,0x21,0x7e,0x1c,0xb6,0x20,0x90,0x0,0x63,0x99,0x25,0x8,0x82,0x98,0x84, + 0x2,0x92,0x8c,0x82,0xee,0xcd,0x7a,0xe3,0x7e,0x99,0x25,0xf6,0x8d,0x8f,0xd8,0x74, + 0x88,0x42,0xaa,0x7,0xc7,0xd1,0xd7,0x83,0x8c,0xdd,0x45,0xee,0xb7,0xc2,0xea,0xfa, + 0xe3,0xa5,0x54,0xec,0x31,0xda,0x5f,0x7f,0x36,0x32,0xf9,0x79,0xc4,0x9d,0xd2,0xfe, + 0x42,0x7e,0x21,0x18,0x4c,0x7f,0x74,0xfb,0xad,0x29,0x2f,0xa3,0x3f,0x2b,0xf2,0xff, + 0x44,0x11,0x1f,0xe6,0xfe,0xb1,0x4b,0x9e,0xd6,0x84,0xbe,0xe0,0xdc,0x90,0xf8,0x94, + 0xb0,0xe4,0xc6,0xcc,0xf2,0x7e,0x93,0x3e,0x73,0xe1,0xb9,0xbc,0xed,0x83,0xf3,0x17, + 0xd2,0x55,0xcf,0xd4,0xd1,0x8c,0x2f,0x9d,0xc7,0x53,0x88,0x1,0xd,0x53,0xa7,0xea, + 0x68,0x79,0x6b,0x6b,0x70,0x38,0xb,0x2,0x63,0xf6,0xcb,0xc8,0x41,0xaf,0x66,0x8c, + 0x66,0x7c,0xa6,0x4d,0x27,0xa,0x79,0xfa,0xa4,0x48,0x3c,0x2a,0x9f,0x56,0x4b,0x8f, + 0x2e,0x79,0x8e,0x2f,0xe1,0x93,0x2f,0xbd,0x58,0x50,0x33,0xbf,0xab,0xb0,0xaf,0xc1, + 0xae,0xbd,0x28,0xd6,0x80,0x6f,0x7a,0x2a,0x7c,0x63,0x11,0xf8,0x46,0xeb,0x8b,0x45, + 0x20,0xf1,0x83,0x1f,0xf6,0x92,0x20,0xeb,0xab,0x0,0xe9,0xe5,0xd3,0xd1,0x3e,0xa5, + 0x8a,0x58,0x6e,0x6b,0x76,0x29,0xef,0xa0,0xdf,0xdf,0x9e,0x18,0x43,0xa,0x74,0x98, + 0xef,0x9c,0xe5,0x67,0xa,0x6f,0xf2,0x4b,0xa7,0xb4,0xf0,0xc2,0xd6,0x66,0x7a,0x73, + 0xec,0x18,0x7a,0xa7,0xaa,0x92,0x9e,0x5f,0xbb,0x8e,0x35,0x3f,0xb4,0xfe,0x9,0x30, + 0xe7,0xf9,0x58,0xa,0x97,0xf2,0x89,0x1b,0x1e,0xf6,0xf6,0x4b,0xe7,0x46,0x85,0xc0, + 0xe3,0x4f,0x51,0xba,0xa1,0x85,0xde,0xfd,0xf6,0x7f,0x53,0x55,0x5b,0x46,0x4f,0x1f, + 0x46,0x46,0x8,0xe0,0x10,0x25,0x4,0x2,0x37,0x0,0xb0,0x92,0x95,0x38,0x78,0x89, + 0x5e,0x9,0xcf,0x1e,0x94,0xa4,0xa3,0xfb,0xf,0x3e,0xf3,0xc,0xe7,0x1a,0xf4,0xb5, + 0x21,0xb5,0x10,0x2,0xf8,0x70,0xac,0x2,0x9f,0x58,0xe,0x2,0x48,0x8f,0xa0,0xa0, + 0x6f,0x52,0x8e,0x79,0x9b,0x11,0xc,0x41,0x4e,0x82,0x43,0x80,0xce,0x92,0xba,0x54, + 0x5,0x41,0xee,0x20,0x60,0x3c,0xf9,0xc7,0x32,0x21,0xd9,0xff,0xe7,0xef,0xa9,0xa8, + 0xdf,0xcf,0x7,0xa4,0xf5,0x30,0x61,0xf5,0x96,0x22,0xe0,0xf7,0xee,0x9e,0x3d,0x1c, + 0xec,0xfb,0xb8,0x9,0xf4,0xe9,0x6,0x28,0x4a,0x78,0x9b,0xf8,0x12,0x39,0x4,0xd9, + 0x41,0xfa,0xdf,0x3f,0x4c,0xf4,0xd1,0xf,0xeb,0xdf,0xf0,0x9d,0xc2,0xdf,0x4e,0x54, + 0x6d,0x9c,0xf8,0x83,0x3f,0xd0,0x7f,0x55,0x2f,0xa5,0x19,0xcd,0x87,0x7,0x13,0x84, + 0xec,0x35,0x42,0x60,0xb0,0x5c,0xb3,0x8c,0xee,0xb3,0x3,0x82,0xa6,0x78,0x48,0x95, + 0xa7,0xb3,0x15,0x71,0x3f,0x95,0xfb,0x4f,0xa3,0xb,0xd4,0x7,0x9,0x48,0x34,0x7a, + 0x94,0xd2,0xb6,0x7d,0xcf,0x6c,0x86,0x16,0xff,0x92,0x74,0x7b,0x42,0xbb,0x4f,0x99, + 0x12,0xb8,0x3,0x20,0x3c,0x8f,0x37,0x90,0x7a,0x5,0x10,0x4,0x76,0x1e,0x83,0x3, + 0x23,0x89,0xc8,0x62,0xea,0x4b,0x30,0x5b,0xa6,0x12,0x8b,0xef,0x8b,0xef,0xa5,0xe4, + 0x16,0x64,0xbd,0xe1,0x52,0x6f,0x5f,0x10,0xb1,0x0,0x6c,0x88,0xf6,0x3f,0x29,0x3a, + 0xc8,0xc4,0xe6,0xf4,0xbb,0xd5,0x55,0xb4,0x63,0xc7,0x4e,0xf6,0xf9,0x39,0xd8,0x37, + 0xf7,0xdc,0x64,0xf2,0xcb,0xe7,0xd7,0x7f,0xd4,0x84,0x7,0x2a,0x2c,0x3f,0x5d,0x34, + 0xff,0x3,0x8f,0x44,0x7f,0x53,0xc7,0x2c,0xa6,0x77,0xe8,0x85,0x7f,0xff,0xad,0x12, + 0x36,0xd1,0xeb,0x1b,0xbc,0x6a,0x55,0x78,0xf,0xc6,0xd,0x88,0xd7,0x26,0x60,0x17, + 0xc6,0x2,0xa,0x87,0x78,0xa3,0x47,0x6b,0xb,0x40,0xef,0x41,0x7d,0x11,0x62,0xca, + 0x23,0x19,0x29,0x12,0x14,0x24,0xa3,0xf5,0x65,0x94,0xa2,0x5a,0x97,0xe8,0xbf,0x33, + 0xff,0x35,0x3a,0x43,0x7e,0xfb,0x37,0x1,0xe6,0x19,0x98,0x33,0x67,0x4e,0xf1,0x2e, + 0xb0,0x87,0x11,0x8,0x80,0x60,0xdc,0x7f,0x2,0x22,0xd5,0x76,0x1,0xe3,0x87,0xa2, + 0xcc,0x16,0x5b,0x0,0xd2,0x5,0x68,0xd2,0x57,0x61,0xfe,0xbf,0x5b,0x33,0x9a,0x2a, + 0x94,0x2b,0x0,0xed,0x8f,0x68,0x7f,0x24,0xa8,0x67,0x13,0x1e,0x4b,0x90,0x1e,0x1f, + 0x68,0xf8,0xe6,0xb6,0x50,0xeb,0x63,0x89,0xef,0x62,0x9,0x5c,0x74,0x7e,0xf8,0xdb, + 0x3,0x8f,0x72,0x53,0x27,0x2a,0xc1,0x72,0x6f,0xcb,0x6c,0x7a,0x33,0xb3,0x3e,0x88, + 0x5,0xe0,0x6a,0xf6,0x99,0x78,0x40,0xa4,0x37,0x60,0xcc,0xd8,0xd0,0x2,0x40,0xac, + 0xc0,0x64,0x11,0x56,0x29,0xbf,0x1f,0x2,0x2,0xb5,0x3,0xff,0xa8,0x88,0xf2,0xfd, + 0xa7,0x9f,0x32,0x42,0xb0,0xef,0x46,0xcf,0x3,0x21,0x60,0xba,0x5d,0xe3,0x82,0x0, + 0xe0,0xe0,0x9f,0xeb,0x1,0xc8,0x89,0xc5,0x4b,0x96,0xf0,0x7,0x90,0xd9,0x83,0x65, + 0xea,0x70,0xbb,0x5b,0x1b,0x42,0x0,0x9f,0x52,0x9c,0x64,0x24,0xaf,0x3b,0xca,0x9e, + 0x94,0x43,0x13,0xd,0x35,0xf6,0xbc,0x49,0x3a,0x2f,0x5d,0x2a,0xee,0x80,0xfc,0x78, + 0xe5,0x90,0xda,0xfb,0xc6,0xf6,0xed,0x4a,0xfb,0x8f,0x89,0x76,0xf5,0xc9,0xfb,0x28, + 0x84,0x37,0x44,0x66,0x21,0x82,0xae,0xbf,0xaa,0x8a,0x70,0x1d,0xcb,0xca,0x72,0xb5, + 0xcf,0xfc,0x50,0x20,0x30,0xf9,0x4d,0x17,0xa1,0xc1,0xb,0xb4,0x82,0x26,0x56,0x24, + 0x54,0x12,0x26,0xa,0x7a,0x3,0x82,0x62,0x1b,0x56,0x8a,0xb0,0x6d,0x1,0xf0,0xa5, + 0x29,0xed,0x8f,0xac,0x42,0x74,0x2b,0x66,0x58,0xb,0xf4,0x4d,0xb,0x40,0x60,0x5b, + 0x2,0x10,0x4,0x48,0x5c,0xb2,0x3f,0x12,0x27,0x70,0xda,0x5f,0x23,0xae,0xfd,0x6d, + 0xc2,0xdb,0x5a,0x5f,0x7e,0xb3,0x97,0x5e,0x8c,0xfc,0xa5,0x62,0x5,0x58,0xa3,0x78, + 0x34,0x33,0xe3,0x93,0x70,0x46,0xb4,0xbf,0x4,0x1,0x6b,0x74,0x10,0x90,0x23,0xff, + 0x3c,0x35,0x97,0xa9,0xed,0x67,0x1e,0x16,0xb4,0x3f,0xf6,0x3d,0xa8,0xb2,0x4c,0x69, + 0xff,0x16,0x73,0xac,0x69,0x3,0x24,0x66,0xe5,0xaa,0x4e,0xfd,0xfb,0x47,0xf4,0xba, + 0x74,0xcb,0xa1,0x7d,0x4,0xf8,0xb8,0xe8,0x5f,0x9b,0x5e,0x5e,0x74,0x9e,0x6e,0x9f, + 0xf7,0xf5,0xb4,0x60,0xf0,0xc2,0x91,0x77,0x8b,0xe6,0xdd,0x4a,0xcd,0xea,0x1c,0x53, + 0x5e,0x59,0x9b,0x97,0xbe,0xe,0xc6,0x2d,0x98,0x1e,0x1,0x64,0x7,0x36,0xae,0x5c, + 0xad,0x73,0x2,0x5e,0x7a,0x99,0x37,0x21,0xbb,0xd0,0xc8,0xff,0x3c,0x5a,0xec,0x5d, + 0x74,0x44,0x6e,0x47,0xfe,0x64,0x40,0xf3,0xc7,0x4d,0xfe,0x24,0x17,0x0,0x90,0x7c, + 0xfe,0x52,0x9c,0x4b,0x30,0x3b,0x6,0x20,0x3d,0x0,0x6,0x11,0xed,0x2f,0xa3,0xdd, + 0x4c,0x39,0x6f,0xf8,0xff,0x1c,0xfd,0x7,0xb9,0xcd,0x38,0x7b,0x40,0x1e,0x9f,0xbf, + 0x73,0xb7,0xe6,0xfd,0xdc,0x73,0xb3,0xb9,0xe4,0x99,0x90,0x9d,0x9d,0x72,0x9c,0xf2, + 0xc2,0x4,0xa0,0xb4,0x2e,0xe1,0xa5,0x9,0x6f,0xf6,0x81,0xb,0x60,0xf5,0x46,0x0, + 0x27,0x29,0xeb,0xa2,0x82,0xca,0xe9,0xb6,0xdf,0xfd,0x25,0xbf,0x1b,0x56,0x16,0x80, + 0xe4,0x3,0x48,0x11,0xd2,0x2a,0x65,0xc9,0x34,0xa3,0x70,0xa8,0x2,0xcc,0x7f,0x58, + 0x0,0x57,0x5c,0x73,0xd,0xc9,0x74,0xdd,0x7d,0x1d,0x20,0x79,0xae,0x8f,0x83,0x86, + 0xad,0xfd,0x61,0xce,0x27,0x99,0xfb,0x40,0x7c,0xdd,0x9e,0x52,0x1c,0xb3,0x9,0xdb, + 0x42,0xa0,0x14,0xac,0x80,0x64,0x17,0x20,0x9e,0x3,0x80,0x9e,0x80,0x71,0xda,0x5f, + 0x96,0xda,0xfb,0x40,0xd3,0xca,0x55,0x7a,0x5c,0xbf,0x35,0x81,0xe5,0x3b,0xa3,0x47, + 0xd1,0xdb,0xd5,0x95,0x44,0x27,0x9c,0x48,0x9f,0xcc,0x8c,0xa1,0x13,0xbf,0x72,0x7d, + 0x76,0xdb,0x62,0x5,0x24,0x96,0xd1,0xd6,0x43,0x5e,0xf5,0xaa,0x21,0x3b,0xac,0x0, + 0xb1,0x18,0x52,0x5e,0x10,0x73,0x80,0xf6,0xc7,0x7,0x4d,0xfd,0xd8,0x3f,0x4e,0x8e, + 0x8e,0x9e,0xce,0x48,0x73,0x11,0x64,0x91,0x91,0x8b,0x6,0x28,0x15,0x8e,0xbd,0xd0, + 0xb,0xf0,0xc5,0xc1,0xfb,0xd1,0x1d,0xca,0x2,0xf8,0xe2,0xbd,0xf7,0xf0,0xb9,0xfa, + 0xbe,0xd,0xe0,0x50,0x8,0xd8,0xda,0x3f,0x89,0xf8,0xb2,0x5e,0x6a,0xc8,0x12,0x0, + 0xec,0x2,0x18,0xd,0x1b,0x99,0x6b,0xcf,0xcc,0xb6,0xc3,0x13,0x6f,0x18,0xb,0xa0, + 0x72,0xda,0x54,0x2e,0xe1,0xc5,0xe3,0xea,0x27,0xeb,0x58,0xc0,0x35,0xb3,0xe,0xa3, + 0x19,0x7b,0x1b,0x14,0xa1,0x7c,0x3a,0xea,0xfd,0x7,0x68,0xc2,0xa3,0xb9,0x7,0x1e, + 0x9,0x4d,0xff,0x5c,0x30,0x85,0x41,0xd9,0xd,0xf0,0xcd,0x77,0x1c,0x3,0x9f,0xff, + 0xa2,0x73,0x23,0x6e,0x6,0x0,0xed,0x2f,0x4,0xbd,0xc2,0x7b,0x21,0x8,0x31,0xd8, + 0xa4,0xb5,0xcb,0x96,0xf3,0xd,0x4b,0xd1,0x92,0x84,0x3e,0x7e,0xc4,0x0,0xca,0xce, + 0x3f,0x87,0x85,0xc1,0x15,0x9f,0xbb,0x42,0xef,0x96,0xfb,0x6a,0x1d,0xfa,0x39,0xe2, + 0x26,0xbf,0xbd,0x14,0xb2,0x83,0xfc,0xa5,0x48,0x7c,0x41,0x90,0x7,0xa0,0x73,0x80, + 0x7d,0xaa,0x46,0x34,0x99,0x4b,0x6c,0x19,0xed,0x9c,0x41,0x24,0x1d,0x85,0x3f,0x2c, + 0xd3,0x8,0x42,0x60,0xcb,0x16,0x6a,0x7c,0x6f,0xb9,0xce,0x43,0x57,0xf,0xc,0x15, + 0x76,0xfd,0x96,0x16,0x7a,0xe8,0x99,0xa7,0xe9,0xcb,0x9f,0xff,0x3c,0x5d,0xbe,0x6d, + 0x2b,0x3d,0x54,0xb9,0x9d,0xb8,0x43,0xd,0x8c,0x6c,0xa,0xb3,0xf3,0xa8,0x59,0x3d, + 0xe8,0xea,0x4,0xed,0x2f,0xa6,0x3e,0x9b,0xfd,0x64,0x9,0xb,0xdf,0x4,0x5,0xa3, + 0xf4,0x7e,0x76,0xde,0x2d,0x3c,0x32,0xaf,0x99,0x5a,0xe9,0x33,0x1f,0x3b,0x9e,0xa3, + 0xd,0x91,0x1,0x3b,0xe8,0x5,0xa8,0x5b,0x4b,0x6d,0x4a,0x38,0x71,0xf1,0xd2,0x8d, + 0x9b,0x28,0xb3,0x61,0xbd,0xfe,0xc3,0x9b,0xf4,0xe5,0x86,0x77,0xdf,0xa3,0xea,0x3, + 0xf,0x60,0x2b,0x80,0x63,0x0,0xa8,0x4d,0x50,0x5d,0x45,0x6f,0xde,0x73,0x37,0xdf, + 0x93,0xb3,0x0,0x4a,0x13,0x12,0xf8,0x8b,0x47,0xfc,0x1,0x5b,0xeb,0x3,0xa5,0x2c, + 0x4,0xc2,0x44,0x20,0xa3,0x11,0x1b,0xa7,0x4e,0xa5,0x2a,0xf4,0xa1,0x9b,0xfa,0xf7, + 0x6d,0x66,0x8c,0x39,0x8f,0xff,0x87,0xdf,0x4,0x17,0x60,0x9c,0x36,0xa7,0xab,0xe, + 0x98,0xce,0x42,0x80,0xc7,0xd3,0x43,0x8,0x28,0x9f,0xfa,0x82,0x8f,0x5e,0x4c,0xb7, + 0xfd,0xfa,0xd7,0x74,0xd5,0xb5,0xd7,0xd2,0xe4,0x2b,0x66,0x13,0xfd,0xb1,0x59,0xb7, + 0x5f,0x59,0xa1,0xfb,0xf3,0xab,0xd5,0xb2,0x3a,0x7b,0x6e,0x80,0x28,0x62,0x69,0x81, + 0xc1,0x18,0xfc,0x70,0xdb,0x93,0x8a,0xfc,0x68,0x5,0x43,0x8e,0xee,0xa3,0x6d,0x34, + 0x77,0xe6,0x78,0x3a,0x19,0xbe,0xbd,0xd5,0x2,0xd0,0x66,0x2c,0x93,0xa0,0x7a,0x51, + 0x2c,0x86,0xa0,0xc9,0xbf,0x92,0xaa,0xa6,0x4e,0xa1,0xc6,0x55,0x7a,0xf8,0xef,0xbd, + 0xa9,0x72,0x5a,0xfa,0xb9,0xff,0x43,0xf7,0x28,0x37,0x20,0x29,0x41,0xd1,0xa1,0x7f, + 0xc3,0x26,0xbf,0x40,0xb4,0xbf,0x4,0xfc,0x6c,0xb,0xa0,0x94,0x11,0x3c,0x81,0x4c, + 0x2c,0xf2,0x29,0x16,0x0,0xcf,0xf8,0x63,0xf5,0xa5,0xb,0xf9,0xcd,0x41,0x5c,0xa1, + 0x7,0xfd,0xe7,0x78,0x98,0x15,0x53,0x27,0xd3,0x3,0xbf,0xff,0x1d,0x7d,0xe1,0xba, + 0xeb,0xe8,0xae,0xd7,0x5e,0xa5,0x8f,0xfd,0x6e,0x99,0x26,0x2f,0xba,0xfa,0x60,0xc2, + 0xa3,0x4b,0xaf,0xb1,0xa5,0xe3,0xab,0x4a,0xea,0xbb,0xf6,0xa2,0xe4,0x7,0x2a,0xd5, + 0x3f,0xa1,0xf2,0x11,0x8d,0x33,0xb3,0x86,0xeb,0xf2,0x61,0x4a,0x90,0xb1,0x15,0x30, + 0x41,0xb,0x32,0x7b,0x82,0x10,0x60,0x9f,0xb2,0x0,0x32,0x6d,0x61,0xfd,0x40,0xc9, + 0x9f,0x7,0x8e,0x4a,0x9a,0x38,0xd4,0xa1,0xdf,0xc3,0x36,0xf5,0xed,0x88,0xbf,0x8, + 0x4,0x90,0xde,0xf6,0xfb,0x4b,0x55,0xfb,0x3,0x89,0xe,0x39,0x27,0xd1,0x80,0x14, + 0xea,0x3,0xd3,0xd9,0xee,0x4b,0xf7,0xeb,0x4d,0xb7,0x20,0x38,0xa4,0x1e,0xd8,0x20, + 0xa5,0x41,0x41,0xa2,0x36,0x65,0xfe,0xc3,0xac,0xbe,0xf0,0x83,0x1f,0xa4,0x3b,0xbf, + 0xf7,0x3d,0xba,0xea,0xf0,0x23,0xe8,0xc6,0x7f,0xba,0x94,0x5a,0xce,0x9a,0xa9,0xec, + 0xec,0x46,0x1d,0x3,0x80,0x9,0x5f,0xd5,0x91,0xf6,0xef,0x18,0xa7,0x5e,0xfd,0xef, + 0x8a,0xfa,0x1e,0x77,0x31,0xfe,0x42,0x69,0xff,0xf2,0x8a,0x32,0xda,0xaa,0x2c,0x8b, + 0x8c,0x75,0x43,0x43,0x56,0xe8,0x1c,0x7f,0x1e,0x19,0xa8,0xac,0x0,0xb6,0x0,0x4, + 0xe5,0x15,0xfa,0x3e,0xd5,0x75,0xe3,0xfa,0xb9,0x54,0x78,0x4b,0x33,0x4f,0x1f,0x5a, + 0x76,0xfe,0xb9,0xb4,0xf4,0xb3,0x9f,0xa1,0xbb,0xef,0xbe,0x8b,0xf7,0x71,0xda,0xbf, + 0x34,0x60,0x67,0xf4,0x25,0xe5,0x3,0x40,0xf3,0xb,0xd1,0xdb,0x23,0xbc,0xdd,0xb, + 0x50,0xe8,0x72,0x5f,0xbd,0x81,0x40,0x0,0xc,0xbf,0xe1,0x6,0x3d,0x26,0x4e,0x3d, + 0x8c,0x41,0x92,0x46,0x2b,0x56,0xc0,0x86,0xd,0x41,0x22,0xd,0x2c,0x0,0x16,0x2, + 0x96,0xe4,0x4,0x89,0x18,0xa8,0xb8,0xa3,0xf6,0xb9,0xe6,0xd2,0x4b,0xf9,0xeb,0xb2, + 0x25,0x2f,0xd3,0xa2,0x1d,0xf,0x6b,0xed,0x7a,0xf6,0x69,0x2c,0x34,0x44,0x7b,0x77, + 0x6,0x72,0xcc,0x53,0x6a,0x89,0xf5,0x17,0xe7,0xcd,0x53,0xe6,0x7f,0x45,0xf0,0xfb, + 0xe5,0xdf,0xb8,0x8a,0x5a,0x94,0x70,0x91,0x9b,0x9,0xdc,0x0,0x33,0xc,0x38,0x6d, + 0x6b,0x72,0x68,0xff,0x96,0xe6,0xe0,0xba,0xe1,0xc2,0xe0,0xb8,0xe6,0xba,0x75,0x54, + 0x35,0xfb,0x18,0xfa,0xcc,0x43,0xf,0xd2,0x3d,0x8a,0xfc,0x47,0x2b,0xab,0xc7,0x91, + 0xbf,0x74,0x61,0xfb,0xfe,0x42,0xe4,0xb8,0xb9,0x1f,0xff,0x3e,0x20,0xf2,0x0,0x0, + 0x19,0x56,0x1b,0x20,0x96,0x67,0x1f,0x71,0x3,0x28,0xd4,0xa4,0x4d,0x2b,0xeb,0x74, + 0xd,0x80,0xfb,0xef,0xa7,0x43,0xe1,0x8f,0x2b,0xb,0xa2,0x75,0xf2,0xc7,0x68,0xe7, + 0xcc,0x26,0xa2,0x7,0x1f,0xa7,0x27,0x7f,0x70,0xb,0x6b,0xef,0x27,0xd,0x91,0x81, + 0x8e,0x4,0x2,0x7e,0xc7,0x31,0x20,0x3f,0xae,0xa2,0xc2,0x4,0xfd,0x0,0xf8,0xfe, + 0xa9,0xf1,0xc3,0xa9,0x3a,0x33,0x9a,0x66,0x1a,0xb3,0x3d,0xa8,0xac,0x8f,0x41,0x49, + 0x66,0x58,0x30,0xc7,0x1,0xd4,0xf7,0xcc,0x7a,0x53,0x6b,0xdf,0xb2,0x0,0xe0,0xc2, + 0x64,0xcc,0x24,0x24,0x6d,0x63,0xc7,0xd0,0x5d,0x57,0x5e,0xe5,0x22,0xff,0x25,0xa, + 0xdb,0xa,0xf8,0x90,0xb1,0x2,0x20,0x4,0xc4,0xe4,0x8f,0x77,0xf9,0xc5,0x83,0x81, + 0x36,0x4a,0x41,0xfb,0x3,0x89,0x2,0xa0,0x23,0x2,0x4,0x6e,0x80,0x81,0x58,0x0, + 0x95,0xd3,0x26,0x33,0xb9,0xae,0x3f,0xe5,0x54,0x76,0x3,0x4e,0x54,0xf,0xf7,0xcd, + 0x67,0xfe,0x4a,0xaf,0x1d,0x75,0x8,0xb5,0x3d,0xff,0x30,0x9d,0xfa,0xa7,0x3f,0x7, + 0x84,0x17,0x41,0x20,0x4b,0x20,0x69,0x89,0xdf,0x17,0x19,0xf2,0xf,0x51,0x86,0x7f, + 0x5,0xff,0x2b,0xa7,0x9f,0xd0,0x46,0x2a,0x53,0x9c,0xff,0xfa,0xe5,0x5f,0xa6,0xfd, + 0xcb,0xb4,0xa5,0x2,0xf2,0x43,0xfb,0xf,0x35,0xe6,0x7f,0x4a,0xf2,0x18,0x72,0x98, + 0xff,0xc8,0xed,0x4e,0x61,0x56,0xde,0xf2,0x72,0xaa,0x56,0xda,0x7f,0x9e,0x12,0x5c, + 0x5f,0x50,0xda,0xff,0x18,0xa7,0xfd,0x4b,0x1a,0x92,0xd3,0xf,0x21,0x80,0x8f,0x6d, + 0xf2,0xc7,0xcd,0x7f,0x7c,0x87,0xe6,0x2f,0x45,0xed,0xf,0x44,0x4,0xc0,0x32,0x33, + 0x33,0x4d,0x30,0x98,0x46,0x34,0xa8,0x9d,0x4f,0x4f,0x96,0x5,0xd0,0x16,0xd,0x1c, + 0xee,0x5b,0xb1,0x4a,0x1d,0xd3,0xcc,0x41,0x34,0xb8,0x1,0x33,0xd4,0xf2,0x84,0x4c, + 0x1b,0xfd,0xf5,0xc9,0x35,0xf4,0xc0,0x59,0x33,0x95,0x7b,0xb1,0x8b,0x4e,0xa5,0xe9, + 0x9a,0x5c,0xf3,0x1e,0x54,0x34,0xf6,0xb8,0xde,0x5f,0xb9,0x3a,0xe3,0xe2,0x79,0xb7, + 0xf1,0x72,0x51,0xb0,0xd4,0xdb,0x61,0xee,0xa3,0x33,0xe,0xe4,0xf,0x91,0xd1,0x66, + 0xfb,0xe9,0x47,0xd3,0x96,0x41,0x15,0xd6,0xd6,0x10,0x81,0xef,0x6f,0x17,0x27,0xc5, + 0x1f,0xde,0x32,0xff,0x7d,0xd2,0xf5,0xf,0xe0,0xf6,0x40,0xfb,0x5f,0xad,0xae,0xd9, + 0xef,0x27,0xd9,0x7f,0xe,0x5d,0x43,0xd2,0x50,0x5e,0x90,0x3b,0x97,0xdf,0x9f,0x44, + 0xfc,0x52,0xd1,0xfe,0x40,0x62,0x3d,0x0,0xab,0xc,0x5e,0x16,0xa0,0xfd,0x59,0x0, + 0x48,0x5,0x5e,0xb,0x83,0xe,0x98,0x1e,0xac,0x23,0x71,0x8,0x94,0xf5,0x27,0x4e, + 0x54,0x42,0x20,0x43,0x4b,0x86,0x1d,0x44,0xbf,0x7d,0xe6,0x37,0x74,0xc1,0xb1,0x15, + 0x74,0xca,0x8b,0x7,0x13,0xf4,0x75,0x8b,0x3a,0xcb,0xa9,0x74,0x10,0xbd,0x48,0xab, + 0x68,0xaf,0x32,0xec,0x7,0xab,0x23,0x90,0xd7,0xf,0xd,0x1f,0x2e,0x9b,0x59,0xe7, + 0x3,0xd0,0xfa,0x9f,0xa5,0x1a,0xfa,0x59,0x7a,0xb,0xb5,0x9e,0x7a,0x34,0x5d,0x35, + 0xe7,0x42,0x16,0x32,0x80,0xf4,0x2d,0x40,0xfb,0xfb,0x15,0x7a,0x7f,0x68,0x7e,0x16, + 0x2,0xe8,0xff,0x57,0xe6,0xbf,0x57,0xa1,0x85,0x8,0xb4,0x3f,0x0,0xcd,0x8f,0xdc, + 0x5,0xd4,0x7,0x6c,0x79,0x74,0x1,0xcf,0x14,0x7c,0xf4,0xb6,0x6d,0x4e,0xfb,0x97, + 0x38,0x40,0xe0,0x78,0x1a,0x6f,0xbe,0x1a,0xbe,0x94,0xc8,0xf,0x44,0x4,0xc0,0x71, + 0x37,0xde,0xe8,0xed,0xf8,0xd6,0xb7,0x98,0xfb,0x83,0xd7,0xac,0xe1,0x58,0x40,0x30, + 0x21,0xa8,0x15,0x4,0x64,0x98,0x80,0x1f,0xb5,0x2a,0xea,0x49,0x61,0x50,0x9e,0x81, + 0xd7,0x88,0x8e,0x16,0x4d,0xc9,0x43,0x50,0xa7,0x5f,0x69,0xe3,0x43,0xd5,0xfa,0xb2, + 0x21,0xb5,0x54,0x77,0xc6,0x24,0x5a,0x7b,0xc0,0x9f,0x69,0xce,0xff,0x34,0x2a,0xf2, + 0x1f,0x42,0x9f,0xa6,0x17,0xe8,0x9f,0x69,0x38,0xfd,0x8a,0x76,0x28,0x72,0x8f,0x65, + 0xd2,0x3,0xf6,0x52,0x13,0x5f,0xa7,0x1f,0xdf,0x37,0x5e,0x69,0xff,0xf7,0xcd,0xa1, + 0xab,0x4e,0x3c,0x3d,0x91,0xfc,0x11,0xa0,0xb,0x50,0xfa,0xff,0x79,0xc7,0x66,0x76, + 0x1,0xc4,0x65,0x69,0x58,0xbe,0x92,0x5,0x5d,0xe5,0xb4,0x5a,0x2e,0x7,0xf6,0xd6, + 0xa0,0x2a,0x25,0x0,0xba,0xfd,0x4c,0x1d,0xfa,0x1,0x84,0xc8,0xf9,0xe6,0xf3,0x97, + 0x1a,0xf1,0x5,0x59,0x16,0x0,0xaa,0xec,0xce,0x54,0xcb,0x26,0x45,0x7e,0xd6,0xef, + 0x86,0xf8,0xc1,0x34,0xe0,0xb9,0xc6,0x44,0xb7,0x86,0xfd,0xfb,0xd0,0xb6,0xa9,0x9, + 0x13,0xd9,0xfc,0xae,0x56,0xdf,0x1b,0xcc,0x90,0xe1,0x99,0x20,0xe2,0xa0,0x34,0xed, + 0x3c,0xf4,0x6c,0x7a,0xfe,0xe6,0x5d,0x34,0xea,0xd5,0xe7,0xe8,0xbe,0x7,0x66,0x2b, + 0x21,0xf0,0x12,0xff,0x7e,0x1f,0x6d,0xcc,0x6a,0x56,0xb2,0xfb,0x7e,0x35,0xac,0x99, + 0xd6,0x9f,0x7c,0xc,0x4d,0xa9,0x9a,0x4e,0x2d,0x8b,0x17,0xd1,0x8c,0x93,0xce,0x8, + 0x7e,0x7,0x98,0xfc,0xc8,0x46,0x2c,0xb7,0xba,0x19,0x71,0xbe,0xb4,0x35,0x51,0x89, + 0x11,0x54,0x81,0x5,0xa0,0xbe,0x57,0x4f,0x9f,0xc6,0x89,0x40,0xb8,0xab,0x9f,0x7e, + 0x64,0x2e,0xfd,0xe4,0xee,0xbb,0x5d,0xf2,0xcf,0x0,0x42,0x47,0x82,0xa0,0x54,0x89, + 0x2f,0xc8,0x12,0x0,0xb6,0x15,0x80,0x60,0x9,0x67,0x6,0x22,0x3d,0x38,0x48,0xd, + 0xe,0x2d,0x1,0x21,0x3a,0xd7,0xdb,0x87,0xe6,0x2f,0x2b,0x63,0x93,0x3a,0x8e,0xea, + 0xb5,0x6b,0x69,0x8f,0xd4,0xd,0x50,0x9f,0x43,0xb8,0x62,0xcd,0x70,0x5a,0x7a,0xd4, + 0x39,0xb4,0xfc,0xd0,0x16,0xfa,0xdc,0xb0,0xa3,0xe9,0xce,0x3b,0x7f,0x4b,0xe5,0xf5, + 0x3b,0xc8,0x37,0x29,0xc3,0xa9,0xca,0x32,0xda,0x3b,0x6e,0x38,0x8d,0xaa,0x9d,0x48, + 0xf5,0x23,0x47,0x50,0xe6,0xe5,0x77,0xe8,0xdb,0xb3,0x75,0x49,0xb0,0x19,0x47,0x1c, + 0xc1,0xcb,0xb8,0xe6,0x8f,0x90,0x1f,0x30,0xd7,0xcc,0xe6,0xbf,0x25,0xb8,0x24,0x77, + 0x1,0xbe,0x3f,0xe6,0x2d,0x44,0x0,0xf0,0xb6,0x27,0x9f,0xa0,0xa1,0x8a,0xfc,0x8e, + 0xf8,0x3,0x13,0xa5,0x4e,0xf4,0x5c,0x48,0x8c,0x1,0x88,0x15,0x0,0xca,0xb0,0x15, + 0x20,0x83,0x83,0x8c,0x15,0x60,0xa7,0x3,0xeb,0x1f,0xda,0xc8,0x1b,0x6f,0x2,0x85, + 0xc8,0xb5,0x57,0xeb,0x2c,0x1c,0xc6,0x8e,0xb,0x72,0xf1,0x87,0xae,0x5a,0x45,0xbb, + 0x4d,0xad,0x3e,0xa1,0xe9,0x2c,0xa5,0xb1,0x97,0x56,0x97,0x93,0xd7,0x3c,0x89,0xbe, + 0xf4,0xd9,0xaf,0xf0,0xb6,0xbb,0x5e,0x7d,0x95,0xbc,0x25,0x8b,0x29,0x73,0xd2,0x49, + 0xf4,0xa5,0xc3,0xe,0xe7,0x84,0x9c,0xaf,0x9c,0xf5,0x4f,0x94,0x9a,0x7d,0x46,0x60, + 0xf2,0xe3,0x9a,0x4c,0xb5,0x0,0x9d,0xf0,0x83,0xd4,0x4e,0x25,0x7c,0xe4,0x5c,0x41, + 0xd4,0xdf,0xee,0xfa,0x2b,0x8b,0xa,0x87,0x94,0x97,0xe6,0x40,0x87,0xef,0x67,0x78, + 0x5c,0x3,0x82,0x96,0x3f,0x56,0x2,0x80,0xc8,0x69,0x7f,0x87,0x81,0x83,0x44,0x1, + 0x60,0x5b,0x1,0xf1,0x4a,0x28,0xd0,0xf2,0x3c,0x18,0xa8,0xbe,0x9e,0xb5,0xbf,0x10, + 0xcc,0x37,0x4b,0x6c,0xb3,0x97,0x24,0xa9,0xb8,0x10,0x2,0xca,0x92,0xd8,0x5d,0x5b, + 0x4b,0x55,0x8a,0xb4,0xbb,0xf7,0xdf,0x9f,0xa0,0x9f,0x8f,0x5e,0xb9,0x92,0xf6,0xa9, + 0x75,0x3e,0x97,0xfa,0xdc,0xf5,0xbe,0xf7,0x11,0xe1,0x63,0x70,0xe7,0x55,0x5f,0x8, + 0xd6,0x25,0x30,0x99,0x21,0x8b,0xfc,0x14,0x26,0xfc,0x48,0xde,0x3f,0xd2,0x7e,0xed, + 0xb9,0xb,0xb3,0xee,0x81,0x30,0x8e,0x61,0x1a,0x35,0x2d,0xd7,0x35,0x0,0xbe,0xf7, + 0xea,0x3f,0xe8,0x9a,0x99,0x87,0xb2,0xc0,0x73,0x3d,0x0,0xe,0x3,0x9,0x79,0x95, + 0x4,0x6b,0xb4,0xbb,0x4,0xc7,0xea,0x60,0x9c,0xd4,0x4,0x88,0x13,0x3e,0xd0,0xb8, + 0xbc,0x73,0x5b,0x40,0x4a,0xc1,0xd0,0x95,0x2b,0xc3,0x9f,0xd1,0xb6,0x22,0x7f,0xbe, + 0x1a,0xb7,0xcd,0x7c,0x40,0xfc,0x21,0x26,0xda,0x2f,0x11,0x7f,0x1,0x84,0x8d,0x58, + 0x0,0xb9,0xb4,0x3f,0xc0,0x49,0x40,0xa4,0x6b,0x0,0x5c,0x37,0x6b,0x16,0x27,0x2f, + 0x39,0xdf,0x7f,0xe0,0xc2,0x9e,0x23,0xc0,0xfe,0x24,0x29,0x8f,0x52,0x42,0xce,0xb2, + 0xe0,0x48,0xd,0x86,0x15,0x80,0xdb,0xb7,0x1f,0x42,0x30,0x30,0xa8,0x2c,0x3c,0x34, + 0xd0,0xf6,0x66,0x5d,0x62,0x3,0x30,0xc1,0x45,0x13,0x8b,0x15,0xc0,0x5d,0x8c,0x6a, + 0x3b,0x5c,0x2,0x8e,0x27,0xa8,0xf5,0xdd,0x66,0xe2,0x8a,0xf6,0x1e,0xf5,0x60,0x89, + 0xf0,0x4b,0xc5,0x5b,0xb,0xd2,0xb6,0xfe,0x12,0xfa,0xfd,0x72,0x2d,0x7e,0x73,0x53, + 0xd0,0x5,0x28,0x40,0x1c,0xa0,0x1,0x55,0x80,0xfc,0x36,0x2e,0xf,0x36,0x64,0xf1, + 0xe2,0x76,0xce,0xee,0x50,0xaa,0xe8,0xa8,0xd6,0xff,0x89,0x27,0xe8,0xaa,0xd7,0x28, + 0x21,0x16,0x2f,0x15,0x56,0xa,0x68,0x7f,0x72,0x50,0xb,0x12,0xc,0xc,0x7a,0x3, + 0x62,0xb3,0xf0,0x2,0x10,0x14,0x1,0xf9,0x1,0x19,0x50,0x64,0x25,0xe4,0xa4,0x4c, + 0xdf,0xbc,0xcc,0x69,0x87,0xf8,0xc2,0x50,0xab,0x84,0x77,0x12,0xd8,0xc4,0x37,0x7e, + 0x3e,0xd2,0x7b,0xed,0x1c,0x7f,0x1e,0xeb,0x6f,0x27,0xfc,0x18,0x8b,0xc0,0x16,0x44, + 0x6c,0x9,0x98,0x2e,0xc0,0xe0,0x7e,0x90,0x9,0xa8,0x84,0xc5,0x83,0xcf,0x2e,0xa2, + 0xb9,0x1f,0xbd,0xb8,0xdb,0x9a,0xff,0x6b,0xd,0xd,0xe6,0x62,0x3b,0xef,0x44,0xb0, + 0x50,0x34,0x33,0x32,0x7f,0xb7,0xaa,0xaa,0x9b,0x57,0xe2,0x90,0xf,0x3a,0x3b,0xc9, + 0x87,0x8,0x82,0x52,0x9a,0x13,0x0,0x68,0x57,0x0,0x64,0x59,0x1,0xb1,0x60,0x20, + 0x13,0xdc,0x8a,0xbc,0x7b,0xa8,0xb7,0x47,0x14,0xb1,0x0,0x2,0x98,0x75,0xd1,0xd4, + 0x7e,0xac,0x1c,0x98,0x3d,0x9d,0x97,0x10,0xdd,0xfe,0x4d,0x48,0xef,0x5b,0x96,0x87, + 0x10,0x5f,0x72,0xfd,0x5,0x11,0x21,0x44,0x5a,0x18,0xf8,0x1b,0xd6,0x47,0x84,0x0, + 0xea,0x0,0x22,0x73,0x11,0xe4,0x17,0xb7,0xa6,0x33,0xf8,0x6a,0x53,0x13,0x97,0x1b, + 0xf3,0x24,0x73,0xb0,0x1b,0xb3,0x8,0xc9,0xf1,0x68,0xeb,0x6b,0xfb,0xf6,0x85,0x2, + 0x41,0x3d,0xf3,0xef,0x56,0x56,0x76,0x70,0xb4,0x43,0x67,0x61,0x93,0x5f,0xca,0x82, + 0x27,0x55,0xff,0x95,0x9a,0x1,0x42,0x7e,0x39,0xb6,0x94,0x84,0x40,0xde,0x16,0x40, + 0x16,0xf0,0xa0,0x8c,0x86,0x8f,0x9b,0xdd,0x36,0xf9,0x80,0x20,0x3a,0x1f,0x5b,0xda, + 0xb0,0x89,0x1d,0xff,0x9e,0x75,0x3c,0x7c,0x7c,0x3e,0xaf,0x97,0x15,0xf5,0xe7,0x4b, + 0xb3,0xe2,0x12,0x81,0x30,0x40,0x7b,0xa6,0xc2,0x10,0xfc,0xff,0x74,0xaa,0x9c,0x2b, + 0xfe,0x3c,0xf4,0xfb,0xdf,0x11,0x6c,0x87,0x7c,0x66,0x1,0x0,0xe9,0xb9,0x5d,0xcc, + 0x32,0x6c,0x6,0x10,0xc9,0x71,0x69,0xf4,0x38,0xa8,0x6d,0x5b,0x57,0xaf,0xa1,0x9a, + 0xfd,0xa7,0xd1,0x66,0x53,0x64,0x34,0x71,0xba,0x33,0x5,0xec,0x3,0xb4,0xa0,0x7, + 0x85,0xc2,0xec,0xcb,0x60,0xaa,0x44,0x25,0xc,0x70,0xe,0x58,0x16,0x4e,0x10,0x14, + 0xe,0xed,0x69,0xfe,0x78,0x79,0x70,0xf9,0xe,0x21,0x21,0x42,0x40,0xc6,0x11,0x94, + 0x4a,0xb7,0x61,0x5e,0x96,0xef,0x2e,0x99,0x35,0x18,0xe3,0xff,0x65,0x2,0x8a,0x60, + 0xa8,0x70,0xbd,0xe,0x10,0x1a,0xd3,0x3b,0x13,0xeb,0xd,0x60,0x88,0xa0,0x20,0xab, + 0x42,0x8f,0x25,0x4,0xe2,0x2,0x21,0x49,0x40,0xc4,0x7f,0xb,0x85,0x40,0x3a,0x72, + 0x3d,0xb6,0xd9,0x6f,0xf7,0x52,0xc4,0x63,0x0,0x70,0x1,0xaa,0xe,0x3c,0x80,0x1e, + 0x7c,0xe6,0x69,0x5a,0x4f,0xed,0xb,0x0,0x9b,0xf8,0x64,0xed,0x9b,0x32,0xe7,0xcc, + 0x49,0xf6,0x8e,0x60,0x24,0x48,0xcd,0x34,0x2d,0x30,0x46,0x4d,0xab,0x55,0x42,0x29, + 0x45,0xad,0x6d,0x6d,0xf1,0x5d,0x9c,0x45,0x60,0xe1,0x8a,0x76,0x66,0xee,0xe9,0x8, + 0xf1,0xea,0xc0,0xb9,0xaa,0x3,0xc5,0x8b,0x84,0xca,0x52,0x46,0x11,0xe6,0x2b,0x0, + 0xa,0x2d,0x28,0x12,0x52,0x96,0xbb,0xe5,0xbd,0xe6,0x75,0x30,0xbb,0x1,0x26,0xf8, + 0x56,0xd,0x7f,0x5d,0xbd,0x8c,0xc8,0xf5,0xf,0xa6,0xe0,0x86,0xff,0x6d,0x65,0xdd, + 0x65,0x9,0x81,0x84,0x58,0x40,0x47,0x16,0x41,0x92,0xd5,0x10,0x1c,0x67,0x6b,0x7c, + 0x5b,0x8,0xc4,0x60,0xb,0x81,0xf8,0x38,0x80,0xb4,0x72,0x5d,0x2a,0xa7,0xd6,0xd2, + 0xf7,0x96,0xbe,0x46,0x43,0xb7,0x6c,0x4d,0x7c,0x10,0x71,0xe2,0xa7,0xa0,0x95,0x8d, + 0x65,0x92,0x93,0xf4,0x72,0x4d,0xa9,0x74,0xfb,0x83,0x2a,0x84,0xe4,0x1d,0x58,0x8, + 0x22,0xc,0x82,0x66,0x50,0xa7,0x50,0xfd,0x1d,0xbe,0x3d,0x80,0x5,0x41,0x57,0x5, + 0x40,0x5c,0xfb,0x8b,0x0,0x88,0x23,0x29,0xd8,0x67,0x93,0x5f,0x90,0xf,0xb9,0x4b, + 0x42,0x0,0xfc,0xe5,0xe6,0x9b,0x7d,0xa4,0xf1,0x42,0x8,0x54,0x1a,0x1,0x10,0x58, + 0x0,0x42,0x50,0xab,0xdf,0x3d,0xae,0x7d,0xe3,0x2e,0x1,0x43,0x88,0x6b,0x2f,0x5, + 0xf1,0xef,0x71,0xe4,0x20,0x7c,0xae,0xf3,0xc7,0xb5,0x3f,0x84,0x80,0xa7,0x8,0x9a, + 0xf6,0x33,0x54,0xf6,0x91,0xf3,0x39,0xfd,0x97,0xf7,0x33,0xbf,0xc7,0x89,0x5f,0xd6, + 0x91,0xa6,0xcf,0x97,0xf4,0xb9,0x20,0xcf,0x80,0xc7,0x52,0x50,0xa4,0x8d,0xc0,0x55, + 0x80,0x6,0xc2,0x8a,0xc4,0x1c,0x6,0xb0,0x20,0xe8,0xae,0x0,0x10,0xbf,0x3f,0x8e, + 0x5c,0x13,0x84,0xe0,0xbb,0x8c,0x16,0xec,0x6c,0x45,0xa0,0x92,0x10,0x0,0x40,0xc4, + 0xd,0x80,0x10,0x88,0x45,0xe2,0xe3,0x2,0x0,0x88,0xb,0x81,0x78,0x70,0x2e,0xb, + 0xed,0x68,0xf3,0x8e,0x10,0x90,0x1d,0xe5,0xbd,0x44,0x63,0x8b,0xf6,0x8f,0x8d,0x3, + 0x48,0x9b,0xc0,0xe5,0x63,0xab,0x56,0xd0,0x7b,0x23,0x47,0xd2,0x60,0x6b,0x4,0xa0, + 0x4d,0xfe,0x38,0xf1,0xb3,0x7c,0x7b,0x9b,0xf8,0xb2,0x71,0xfd,0x1a,0xa2,0xc9,0x53, + 0x89,0xea,0x56,0x75,0x7c,0xd1,0xb2,0x1f,0x96,0x72,0xff,0x82,0x98,0x0,0x14,0x41, + 0x80,0x97,0xb2,0x35,0x63,0x66,0x62,0x1a,0xa0,0x42,0xa0,0x2b,0x2,0x20,0x6e,0xfa, + 0x3,0x49,0x44,0x8f,0x6b,0x7f,0x21,0xbf,0x5d,0x30,0xc4,0xb6,0x4,0x3a,0x22,0x78, + 0x5f,0x17,0x0,0x79,0x67,0x39,0xd8,0xb5,0x2,0x18,0x96,0x4f,0x6f,0x8f,0xb9,0xcf, + 0x45,0x72,0x9e,0x8e,0xdb,0xa4,0xe6,0xa,0x59,0xed,0x25,0xaf,0xc7,0x5c,0x88,0x5c, + 0x48,0x3a,0x5e,0xce,0x9,0xf2,0xdb,0x49,0x49,0xac,0xfd,0x2d,0xf2,0xa3,0xff,0x3f, + 0xd3,0x96,0x21,0xbf,0xb5,0x8d,0x2e,0xf8,0xd0,0x1c,0x1a,0x94,0x40,0xfe,0xb2,0x4, + 0xf2,0x63,0xa7,0xcd,0x48,0x62,0xc2,0xce,0xa6,0x0,0x9,0x13,0xdf,0x7,0xe9,0xeb, + 0xf4,0xb5,0x67,0x91,0xdf,0xb3,0x96,0xf1,0xf,0x99,0xfd,0x3c,0xbd,0xc4,0x7,0xed, + 0x48,0x5b,0x88,0xa9,0x58,0xc2,0x10,0xd7,0xb1,0x79,0xe5,0x2a,0x7e,0x21,0xcb,0x95, + 0xf0,0x2d,0x3,0xf9,0x61,0xd,0xa8,0x17,0xf6,0xeb,0xe6,0xba,0x1d,0xf2,0x87,0x4d, + 0xf6,0x5c,0x53,0x84,0xd9,0xa5,0xc2,0xda,0xab,0xe,0xd4,0x9f,0xd1,0xe9,0x34,0x27, + 0xbc,0xba,0x7b,0x4d,0x4e,0xbf,0x67,0x6,0xfe,0xb0,0xff,0x6e,0xfc,0x7c,0x21,0x9f, + 0x9d,0x13,0xc0,0xf5,0xd7,0x30,0x17,0x1f,0x7c,0xe8,0x58,0xc6,0x60,0x5c,0x60,0x4, + 0xa9,0xc5,0x4a,0x60,0xf0,0xa7,0x7e,0x43,0xe4,0x13,0x17,0xe,0xf1,0xa0,0x9f,0xa7, + 0xb4,0xbb,0x10,0x3f,0xc9,0xbf,0xe3,0x18,0x0,0xe6,0x38,0x50,0x9f,0x16,0x45,0xa8, + 0xcf,0x5d,0x79,0x25,0xdd,0x79,0xcd,0x35,0xf4,0xe7,0xf9,0xf3,0x83,0x7,0x82,0xe0, + 0x1e,0x13,0x6e,0xc5,0xca,0xec,0xe8,0x20,0x48,0x9,0xe2,0xa7,0xca,0x34,0x69,0x2b, + 0xec,0x2c,0x43,0x2f,0x24,0x35,0xc7,0x44,0x52,0x4c,0xe4,0xd4,0xb6,0x1d,0xea,0xb3, + 0x9d,0xf7,0x4d,0xed,0xdc,0xa5,0xbf,0xef,0xdc,0xa3,0x3e,0xbb,0x79,0x9d,0xe7,0x28, + 0xe0,0x79,0xa,0x3c,0x8a,0x8,0x84,0x24,0x41,0xb0,0x6a,0x75,0xf0,0x7c,0x9d,0x10, + 0xe8,0x3c,0xec,0x6e,0xbf,0xa4,0xa8,0xbf,0x3d,0x47,0x80,0x5d,0x1e,0xac,0x54,0x67, + 0x7,0xca,0x5b,0x0,0x60,0x7c,0x0,0x96,0x19,0xf1,0x45,0x3b,0x40,0xc4,0x94,0xb2, + 0x6,0xe5,0xd8,0x84,0xb7,0x85,0x41,0x84,0xc4,0x46,0x60,0x40,0x9b,0x23,0xb7,0x80, + 0xff,0x58,0x66,0x29,0xbf,0xdb,0xed,0x44,0x7c,0x7e,0x23,0x84,0x90,0xfd,0x67,0x43, + 0xb4,0x3f,0xa3,0x35,0xa3,0xe7,0x7,0x54,0xed,0x3d,0xa2,0xfc,0xff,0x63,0xbe,0xfe, + 0x75,0x7a,0xfc,0xfd,0xef,0xa7,0x6,0xcc,0xaa,0x4b,0x9,0xbe,0xbe,0x10,0x10,0x39, + 0x4,0xbe,0x21,0x68,0xda,0x7e,0x74,0xf6,0x36,0x2f,0x38,0x26,0xb5,0x79,0x2b,0x5f, + 0x4f,0x66,0x5c,0x8d,0xfe,0x5e,0xbf,0x49,0xbb,0x4e,0x6a,0xbf,0x4c,0xcd,0x48,0xbd, + 0xae,0xac,0x9,0x8,0x87,0xd4,0x96,0xad,0x5a,0x40,0x6c,0xdb,0xa9,0xdb,0x48,0x97, + 0x45,0x2d,0x3,0x8,0x2,0xe3,0xba,0x40,0x8,0xf0,0x67,0x4d,0x1d,0x5b,0x2a,0x29, + 0xf3,0xbc,0x9d,0x10,0xe8,0x1c,0xe2,0x42,0x40,0x96,0xb9,0xaa,0x3,0x97,0x1a,0xf9, + 0x81,0xbc,0x5,0xc0,0x2e,0x33,0x38,0x28,0x88,0x1,0x50,0x38,0xfc,0xd6,0xee,0x5, + 0x8,0x7c,0x71,0xab,0x8e,0x3f,0x86,0x8,0x33,0x59,0x63,0xc9,0x32,0x71,0xed,0x2f, + 0xda,0x1b,0x26,0x3b,0x46,0xe8,0x41,0x8b,0x7,0x4b,0x4c,0xe9,0xad,0x96,0xf1,0x98, + 0x42,0x62,0x14,0x17,0xee,0x46,0x6c,0x68,0xb0,0x90,0xdf,0x63,0x7f,0x5d,0x69,0x4d, + 0x68,0x52,0x73,0xec,0x42,0x45,0x7c,0xa0,0x79,0x5d,0x1d,0x9b,0xd9,0x41,0xba,0x31, + 0xef,0xeb,0xe9,0x25,0xdc,0x8,0x26,0xe3,0x1a,0xa,0x9,0x9f,0xe,0x89,0xaf,0x8, + 0xcb,0x84,0x67,0x2d,0xbf,0x5b,0x93,0x5d,0xf9,0xe6,0xa9,0x5d,0x7b,0x78,0x7b,0xa6, + 0x66,0x94,0x7e,0x3e,0x23,0x86,0x31,0xf1,0xf1,0x3b,0xaf,0x8b,0x70,0x81,0xa5,0x80, + 0xe3,0xcb,0x52,0xba,0xd,0xac,0x8b,0x20,0x8,0x2c,0xb,0xd2,0x42,0x63,0x63,0x58, + 0x97,0x1,0x82,0x20,0xd,0x81,0xd9,0xf1,0x9f,0xd0,0x21,0x86,0x24,0x9f,0x3f,0x6e, + 0xea,0xc7,0x85,0x41,0xa9,0xb9,0x1,0x5d,0x1a,0xe9,0xb0,0x4f,0x5c,0x0,0xbb,0xea, + 0xae,0x5,0x26,0xe6,0xf8,0x9,0xa1,0x39,0x5e,0x9e,0x8a,0x10,0x17,0x59,0x79,0xda, + 0x5c,0x4f,0x6b,0xb2,0x1a,0xa2,0x23,0x51,0x27,0x1e,0xb1,0xf,0x60,0xfc,0x78,0xfe, + 0x1d,0xda,0xdb,0xca,0x36,0x8c,0x5b,0x4,0xb0,0x1e,0x30,0x85,0x39,0xff,0x71,0x4d, + 0xd,0x40,0xbe,0x6e,0x98,0xff,0xc8,0x6b,0x54,0x5a,0x17,0x7f,0x76,0xcc,0x69,0x78, + 0xce,0x94,0xa9,0x74,0xed,0x49,0x27,0x51,0xdb,0xbe,0x7d,0x94,0x86,0x80,0x2,0xb9, + 0x36,0x6f,0x54,0x3b,0xef,0x9,0xcd,0x78,0x68,0x60,0xdf,0x4a,0xfb,0x11,0x4d,0xf, + 0xed,0xcb,0x26,0xbc,0xd6,0xe2,0xa2,0xf5,0x59,0xbb,0x23,0x30,0x27,0xd9,0x8c,0x20, + 0xfc,0xf6,0x9d,0xe1,0x12,0x80,0x70,0x90,0x75,0x3c,0x33,0x23,0x18,0xd8,0x4d,0x2, + 0xf9,0x2b,0x2b,0x4c,0xdb,0x29,0xe3,0x66,0xa8,0xf3,0xad,0x55,0x42,0x6b,0x9d,0x12, + 0x40,0x13,0xa7,0x58,0x42,0x2a,0xc5,0x42,0xc0,0x98,0x67,0x74,0xe5,0xf2,0x58,0x55, + 0x24,0x87,0x8,0xec,0xac,0x3e,0x81,0x98,0xfe,0xb9,0x66,0x5,0x4a,0x12,0x8,0xa5, + 0x82,0xfc,0x12,0x81,0x94,0xf6,0xcf,0xa8,0x7,0x4,0x4d,0x83,0x69,0xc3,0x10,0x3, + 0x18,0x6c,0x15,0x9,0x69,0x2f,0xf,0x20,0xd2,0x17,0x9f,0x4e,0x7,0x73,0xf2,0x25, + 0x41,0xcc,0x74,0xe9,0xab,0x97,0xf5,0xc0,0x74,0x4f,0x2,0x4a,0x93,0x21,0x8d,0x56, + 0xb9,0x8,0x7c,0xe,0x24,0xcc,0x18,0x4b,0x43,0x8a,0x95,0x70,0xdd,0x3f,0x23,0x58, + 0x50,0x6,0xc,0xa4,0xf2,0xd5,0x35,0x73,0x46,0x9f,0xda,0xf6,0x38,0xb5,0xd1,0x5, + 0x4b,0x9e,0xd5,0xe6,0x7d,0x46,0xfa,0xe7,0xd,0xd9,0x11,0xbb,0xa8,0x5f,0xaf,0x5, + 0x80,0x99,0x5a,0x2c,0xb5,0x65,0x1b,0xba,0x1b,0xb4,0xf8,0x2c,0xcb,0x7d,0x3f,0xfc, + 0x2c,0xd6,0x98,0x0,0xa9,0x68,0x7a,0xd3,0xd3,0x91,0x9a,0x38,0x9e,0x7f,0x4b,0x4d, + 0x49,0x48,0x78,0x52,0x82,0x3,0x16,0x3,0xb,0x8,0x63,0xd6,0x67,0x6a,0x46,0xeb, + 0xdf,0xfc,0x4c,0x76,0x3d,0xc6,0x9,0x7a,0x76,0xe6,0x11,0x13,0x27,0x70,0x17,0xe1, + 0x77,0xaa,0xab,0xdb,0xbd,0xa6,0xfe,0x8e,0x42,0xe4,0x1,0x24,0x25,0x1,0xc5,0xa3, + 0xfd,0x2,0x9b,0xf4,0xa5,0xd6,0xd,0xd8,0xa9,0x54,0x60,0x79,0xec,0x83,0x4d,0x37, + 0x20,0x7,0xa0,0x3c,0x2f,0xec,0x6,0x84,0xbf,0xbb,0x31,0xac,0x13,0x20,0xc1,0x38, + 0x31,0xdf,0x5,0x71,0xa2,0xb3,0x60,0xc0,0x2c,0x7f,0xca,0x62,0xd8,0xf7,0x4c,0xf8, + 0x7,0xdd,0x87,0xf2,0xdc,0x53,0x26,0x7,0xdb,0xb0,0x2e,0x5d,0x7c,0x71,0xe1,0xc0, + 0x16,0x84,0x81,0xdd,0xfd,0x18,0xb6,0x6f,0xfa,0xff,0xd1,0x4d,0xb8,0x4a,0xb,0xaf, + 0x8c,0xe9,0xc6,0x3b,0x4b,0x59,0x1,0x67,0xfc,0xd7,0x7f,0xd3,0x9f,0x3e,0xf9,0x2f, + 0x5a,0x8,0x4,0xf3,0x7,0xfa,0x4c,0x7e,0xf,0xd5,0x8f,0x9b,0x9b,0xc9,0xaf,0xaa, + 0x62,0xf3,0x1e,0x1a,0x39,0x33,0x62,0x38,0xa5,0x76,0xec,0xd2,0x5a,0xde,0x12,0x2, + 0x4c,0x78,0x21,0x7b,0x9d,0x12,0x36,0x93,0xa7,0x45,0xd7,0x37,0xaa,0xeb,0x9a,0x30, + 0x85,0x32,0x2f,0x3c,0x4f,0x34,0x69,0x2a,0x65,0xd6,0x99,0x8c,0x46,0x8,0x96,0x5a, + 0x33,0xcd,0x7a,0xcc,0x52,0xe0,0x7b,0x82,0x85,0x21,0xe7,0x18,0x35,0x22,0x70,0x1, + 0x52,0x5b,0xb7,0x13,0x47,0x65,0x52,0x1e,0x6d,0x5f,0xb6,0x94,0x68,0xd6,0x61,0x74, + 0xe5,0x7f,0xfe,0x8c,0xee,0xfe,0x3f,0xff,0xbb,0x13,0x7f,0xd9,0x81,0x7,0xdb,0xfc, + 0x8f,0x7,0xf9,0xec,0xc9,0x40,0x6d,0x2b,0x20,0x9e,0x8,0x54,0xa,0x68,0x57,0x7a, + 0x40,0xf3,0xb3,0x2e,0x55,0x2f,0xe4,0x20,0xd1,0xfc,0x28,0x12,0x8a,0x7,0x27,0x79, + 0x0,0x6b,0xd7,0x69,0xb2,0xc4,0x52,0x81,0x93,0x4c,0xf9,0x90,0xf0,0x30,0x69,0xb5, + 0x26,0xf3,0x4d,0x54,0x5b,0xcf,0xfc,0x8b,0x6c,0xbb,0xec,0x2b,0xe4,0x29,0xbf,0x32, + 0x3e,0x2f,0xd3,0x53,0x6b,0x83,0x79,0xc,0x6d,0x61,0xc0,0x96,0x80,0xb1,0x2e,0x24, + 0x0,0x68,0x5b,0x20,0x22,0x20,0x58,0x8,0xa0,0x1a,0xb0,0x11,0x2,0x3c,0x37,0x80, + 0xb2,0x10,0xd8,0xa,0x78,0xce,0xc,0x9,0xe,0x6,0x22,0x69,0x61,0x0,0x57,0xc7, + 0x6b,0x6c,0xd2,0x2,0xa3,0x5a,0x99,0xee,0xfb,0x1a,0xf5,0x3e,0x62,0xf1,0x58,0xa4, + 0xf7,0xea,0x74,0xa1,0xd1,0x40,0x8,0x28,0x6b,0xc1,0x83,0x4b,0xe0,0x51,0x58,0xc9, + 0xc4,0xd7,0xd7,0xce,0xab,0x10,0xa,0x3c,0xd,0xba,0xa7,0xdb,0x44,0xa0,0x73,0x5a, + 0x6d,0xf4,0x19,0x88,0x45,0x0,0xb2,0x2b,0xf2,0xb3,0x9b,0x11,0x13,0x2,0x7c,0x1d, + 0x6b,0xd7,0xeb,0x76,0x36,0x6f,0xa0,0xbb,0x6f,0xf8,0x46,0xd2,0x9f,0xb4,0x24,0x50, + 0x88,0x54,0x60,0xfc,0xdd,0x9f,0x55,0xc7,0xb6,0xa7,0xed,0xe3,0xe8,0xca,0xb4,0x60, + 0xfd,0xda,0x2,0x90,0xc7,0x2c,0x67,0x18,0x6c,0x25,0x0,0x9,0xda,0x26,0x4d,0xc, + 0xf2,0xf2,0x6d,0xed,0x6f,0x13,0x12,0x8,0xc8,0x6f,0x82,0x73,0xfe,0x2a,0x1d,0x78, + 0x63,0x6f,0x5a,0x91,0x5a,0x4,0x81,0xac,0x63,0x29,0x48,0xc7,0x96,0x9c,0x96,0xcc, + 0x4,0x2c,0xa7,0xca,0xfd,0x6b,0x23,0x2e,0x83,0x20,0x1e,0x1c,0x94,0x9a,0x0,0xb6, + 0xe5,0xc1,0xf7,0x68,0xba,0x32,0xcf,0x9a,0x34,0x85,0xce,0xf8,0xa5,0xb2,0x2,0x2e, + 0xfb,0x84,0x31,0xb1,0x7d,0x36,0xb7,0xbd,0xe6,0x16,0x45,0x56,0x58,0x0,0x6a,0xbf, + 0xa6,0x3d,0x44,0x9b,0x9a,0x29,0x83,0x91,0x80,0x1b,0xd6,0x6a,0x12,0xc3,0x12,0xb2, + 0xcf,0x3,0xcd,0x3d,0xb6,0x46,0xed,0xb7,0x45,0x93,0x51,0xad,0xb3,0x40,0xd8,0xb8, + 0x99,0xbc,0x31,0xa3,0x3,0xa2,0x7b,0x28,0x66,0x32,0x76,0x22,0x79,0xeb,0xf4,0x7d, + 0xfb,0x13,0x6b,0x55,0x9b,0xfa,0x99,0x64,0xf0,0x8c,0xf0,0x92,0x43,0x30,0x18,0x81, + 0xa0,0x3,0x84,0x65,0x1,0xd9,0x71,0x8d,0xbc,0x6e,0x9,0xe3,0x60,0x2,0x55,0xc4, + 0x2,0xbe,0xf5,0xcd,0x92,0x16,0x2,0xdd,0x81,0x3d,0x31,0x88,0xa0,0xbd,0x29,0xc0, + 0x4b,0x75,0x52,0x10,0x20,0x67,0x10,0x10,0xe9,0xbf,0xfc,0x92,0x19,0xed,0x6f,0x8f, + 0xfd,0xdf,0x3b,0x65,0x4a,0xb0,0xce,0x16,0x80,0xe5,0xff,0x4b,0x50,0xf,0xe4,0x7, + 0xd1,0xf0,0x41,0xe1,0xd,0x10,0x5f,0x34,0xaf,0x87,0xc8,0xb5,0x22,0xb8,0x90,0x1f, + 0x92,0x6,0xdf,0xab,0xe6,0x9c,0x44,0xb,0x57,0xad,0x60,0x6d,0xfc,0x27,0xb5,0xc4, + 0x3a,0x96,0xc8,0xd9,0x7f,0xcc,0x2c,0xe7,0x9b,0x65,0xe5,0x1,0xd3,0x99,0xfc,0x8d, + 0xc6,0xd,0x18,0xb4,0xff,0x54,0xae,0x4c,0xcc,0x44,0xe7,0xa2,0xa5,0xe3,0xb3,0x93, + 0x92,0xda,0xac,0x21,0xc6,0x38,0xaf,0x64,0xdb,0xa1,0xd7,0x41,0xdd,0xc7,0x15,0xbf, + 0xfc,0x15,0x8d,0x5d,0xba,0x54,0xdf,0x2b,0x6b,0x6c,0x5f,0x97,0x37,0xdf,0xb5,0x5b, + 0x11,0x7b,0x87,0x22,0x71,0x3d,0xd1,0x9a,0x55,0x4a,0xcb,0xaf,0xe2,0x38,0x83,0xa7, + 0xee,0xd1,0xdf,0xa4,0x2d,0xb,0x7f,0xdb,0xe,0xf2,0x41,0x52,0x90,0x17,0xc1,0x3b, + 0xee,0xee,0x4b,0xeb,0x75,0xd9,0x8e,0xf8,0x84,0x21,0x32,0x5f,0x3,0x7a,0x14,0xe0, + 0x92,0x80,0xfc,0x4a,0x10,0xc0,0x1a,0xf0,0x95,0x7b,0x20,0x25,0xd5,0x3,0x97,0x80, + 0xaf,0xd1,0x90,0x9c,0xb3,0x1a,0x43,0x41,0xc0,0xbd,0xb,0x58,0xae,0xae,0xd3,0xbf, + 0xd5,0xaf,0x65,0xab,0x3,0x80,0x10,0x70,0x88,0xa2,0xb3,0x13,0x83,0x24,0x45,0xfd, + 0x4b,0x65,0x24,0x20,0x90,0xd3,0x2,0x40,0x1,0x4e,0x36,0xf7,0x1,0x2b,0xe2,0xc, + 0xc,0x5e,0x6b,0x4d,0xb6,0x69,0xb6,0xc5,0xbb,0xe4,0xc4,0x3f,0xe7,0xaa,0x3b,0x14, + 0x9a,0xfa,0x42,0x7a,0xde,0x53,0x2d,0x17,0xac,0x5a,0x11,0x6c,0x27,0xa4,0xe6,0x8e, + 0x1a,0x45,0xad,0xea,0x5,0xaf,0x68,0xd5,0xc1,0xbd,0x8c,0xba,0x8e,0x79,0xaf,0xbf, + 0x46,0xa4,0xb6,0x63,0x99,0x31,0xcb,0x3,0xb6,0x6e,0xa5,0xb7,0x47,0x8c,0xa0,0x3, + 0xb6,0x6f,0xa7,0x8b,0x8e,0xfb,0x80,0x22,0xe2,0xc6,0xa0,0x9b,0x51,0xc8,0x6f,0x23, + 0xa8,0x9,0x40,0xad,0x51,0x2b,0x0,0xb1,0x0,0x53,0xd2,0xfc,0xcc,0x54,0x9a,0xfe, + 0xf5,0x67,0x3f,0xa7,0x7f,0xfb,0xc1,0x3c,0x9d,0x66,0xb,0xdd,0xd,0x21,0x98,0x51, + 0xd6,0xcd,0x6e,0x45,0xe4,0xad,0x5b,0xb4,0xb6,0x47,0xcf,0x43,0x3a,0x1d,0xe4,0xeb, + 0xfb,0x26,0x2d,0x57,0x48,0x5a,0xc6,0x19,0x83,0x1e,0xb5,0xa1,0x22,0x92,0x31,0x57, + 0x5b,0x6b,0x6b,0x59,0x48,0x30,0xe1,0xb9,0x8b,0x4f,0xed,0x32,0x72,0xb8,0xb6,0x32, + 0x94,0x20,0x80,0x10,0x88,0x5c,0xaf,0x9,0xe,0x42,0xfb,0x67,0x56,0xae,0xe,0xdd, + 0x2,0x4c,0xc9,0xe,0x37,0x0,0x96,0x6,0xac,0x3,0x8,0x2,0x5c,0xa3,0x12,0x16, + 0x1c,0x4f,0x98,0x60,0x7a,0x8,0xb0,0x5d,0xed,0xd7,0xde,0xb0,0x84,0xfe,0xd8,0x75, + 0x78,0xa5,0xfa,0x5c,0xd1,0xcd,0x36,0x3a,0x33,0x31,0x48,0x7c,0x7b,0x29,0x91,0x1f, + 0x48,0xb4,0x0,0x76,0x99,0xd1,0x7f,0xd2,0xdd,0x97,0x5,0xf5,0xe2,0xa1,0x20,0x48, + 0xa0,0xfd,0xc9,0xa,0xb4,0x61,0x7a,0x30,0xf3,0x1d,0xe4,0x47,0x57,0x1b,0xce,0x82, + 0x13,0x95,0x1b,0xe2,0x2f,0x34,0xda,0x1d,0x9f,0x15,0xa3,0x47,0xf3,0xe7,0xc1,0xda, + 0x29,0xf4,0xa0,0x7a,0xe9,0xdf,0x19,0x34,0x98,0xde,0xad,0xac,0xa4,0x65,0x83,0x7, + 0xd3,0xb2,0x21,0x43,0xe8,0x8d,0x21,0x83,0xe9,0x8d,0x41,0xd5,0x8a,0x84,0x19,0xfd, + 0xc2,0x93,0x4e,0xd8,0x38,0xff,0xca,0x2b,0xf9,0x3c,0x17,0xa8,0x25,0x4a,0x7a,0x7b, + 0x63,0xc6,0x32,0xf1,0xe3,0x9,0x45,0x7c,0xb9,0x12,0x97,0x90,0xca,0xc5,0x6,0x51, + 0x2b,0x40,0x93,0x77,0x7a,0x63,0x23,0xa5,0x95,0xc6,0xe7,0xf8,0x4,0x34,0x3c,0xdf, + 0x6e,0x9b,0x16,0x6,0x4c,0x74,0x75,0xfe,0x5d,0x7b,0xb4,0x1f,0xf,0xab,0xc0,0x68, + 0xfc,0xa,0x45,0xfa,0x32,0xa4,0xea,0xd6,0xd5,0xb1,0x0,0x6b,0x2d,0x4b,0x73,0x3c, + 0xb1,0x15,0x3d,0xe,0xaa,0x8d,0xb4,0x19,0x46,0x9d,0x96,0xde,0x13,0x8,0x2,0x93, + 0x55,0xc8,0x24,0x5d,0xaf,0x85,0x2d,0x88,0x1f,0x90,0xdd,0x4c,0xbd,0x16,0x89,0x9, + 0x88,0xe9,0x6f,0xd6,0x3,0x1,0x5c,0x67,0x9,0x3c,0x5c,0x27,0xfe,0x46,0x7f,0xff, + 0x47,0xbf,0x24,0x79,0x7b,0xc8,0xc4,0xfa,0xed,0xbb,0xa,0x10,0xb9,0x33,0x64,0xee, + 0xec,0xfe,0xfd,0x5,0x89,0x16,0x0,0x1e,0xf1,0x60,0x99,0x11,0x28,0xa9,0x9b,0x4b, + 0x26,0xa,0xb1,0x8a,0x6f,0xca,0x80,0x1b,0xd1,0xae,0x1c,0x6d,0x57,0xe4,0x7,0xc9, + 0x60,0xf2,0x23,0xbd,0x16,0x5d,0x6f,0x8f,0x91,0xee,0x7a,0x7b,0x77,0x94,0x36,0x5d, + 0x5f,0xa9,0xaa,0xe4,0xae,0xbb,0x65,0xfb,0xd,0xa3,0x6d,0xeb,0xd6,0xd1,0xbe,0x66, + 0x33,0x77,0x1f,0x4a,0x63,0x29,0x8d,0x7e,0x62,0x75,0x15,0xbf,0xd0,0x10,0x4,0x7c, + 0x2e,0xf3,0x2,0x34,0x4d,0x9a,0x14,0xc4,0x4,0xb2,0x2e,0x6f,0xac,0x2e,0x59,0xe, + 0x81,0xc0,0xdf,0x63,0x19,0x83,0x70,0x53,0xe2,0x56,0x0,0xff,0xae,0xfc,0x7c,0x6f, + 0xcb,0x56,0xba,0xf9,0xce,0x3b,0xe9,0x6b,0xd7,0x5d,0xa7,0xb7,0xb7,0x28,0x4b,0x64, + 0xf7,0x5e,0xf2,0x5b,0xda,0x8c,0x8f,0xad,0xdc,0x8b,0x61,0x43,0xc9,0x47,0xe6,0x9e, + 0x39,0xe,0x1a,0xbf,0xd,0xcf,0xc4,0x3c,0x83,0xd1,0xad,0x75,0xf4,0xd1,0x25,0xeb, + 0xa8,0x75,0xe7,0x46,0xda,0xb6,0x6f,0x1f,0x61,0x8a,0x52,0x90,0xbc,0x46,0xed,0x3f, + 0x6c,0xf8,0x68,0x6a,0x1d,0xf1,0x6,0xfd,0xfa,0x28,0x5d,0xf9,0x98,0xc9,0xf,0x4b, + 0xc0,0x4,0x1e,0xa1,0xc5,0xd1,0x45,0x18,0x4,0x22,0x9b,0x4d,0xad,0x5,0xfe,0x6e, + 0x24,0x69,0x42,0xf2,0x53,0x6a,0xf2,0x44,0x6d,0x1,0xe8,0x87,0x14,0xf4,0x64,0x7c, + 0x1e,0x3d,0x35,0xdd,0xa8,0x56,0x54,0xea,0x18,0xe8,0x13,0x83,0x24,0x2a,0x88,0x9d, + 0xdf,0xf9,0xe,0xbf,0x32,0x81,0x10,0x48,0x78,0xe1,0xb8,0x24,0x98,0x11,0xe,0x49, + 0xe3,0xed,0xc5,0xdf,0x97,0xdc,0xfa,0x47,0xdb,0x9a,0x79,0x3e,0x80,0xb7,0xc6,0x8e, + 0xa5,0x37,0x14,0xe9,0xdb,0x50,0x69,0xa5,0xa1,0x89,0x2a,0xf6,0xec,0xa6,0x41,0xea, + 0xe5,0x2e,0x57,0x9a,0xf8,0x58,0xa5,0xf9,0x9f,0x53,0x1a,0xf8,0x38,0x1c,0x83,0x44, + 0x99,0x61,0x13,0xa8,0x79,0xd8,0x10,0x7a,0x6d,0xf4,0x10,0x6e,0x73,0x52,0xfd,0x6, + 0x1a,0xa4,0x4,0x4,0xda,0x3c,0x74,0x5f,0x3,0x7d,0x5e,0x91,0x14,0xb3,0x10,0x7f, + 0x41,0x2d,0x2b,0x95,0x5b,0xc2,0xc5,0x49,0xac,0xa0,0x58,0xae,0x81,0x49,0xf6,0xf5, + 0x36,0xac,0x50,0xbe,0xf7,0xba,0xb5,0x3a,0x85,0x18,0x1b,0x86,0xed,0x47,0x3f,0x50, + 0xe6,0xf4,0x92,0x19,0x33,0xe8,0x95,0x23,0x8f,0xa0,0x66,0x65,0x5,0xec,0x56,0x5a, + 0xba,0x6d,0xcf,0xe,0x9d,0xff,0x8f,0xf6,0xd1,0xfd,0xa7,0x0,0xad,0xdf,0x26,0xa6, + 0xbe,0x3a,0xe7,0x37,0x96,0xbf,0x45,0xf5,0x2f,0xff,0x83,0xfe,0x4e,0xc4,0x13,0x98, + 0xe3,0x73,0xbc,0xfa,0xa0,0x6f,0xe1,0x44,0xd2,0x41,0xcc,0x72,0x1a,0xa6,0xce,0x53, + 0x49,0x55,0x4a,0xf6,0x36,0xd6,0xe,0xa3,0xdb,0x2f,0xb9,0x80,0xe6,0x6e,0x58,0x4b, + 0x7f,0x3c,0x70,0x3a,0xd1,0xd8,0x49,0xdc,0xdd,0x48,0xef,0x3f,0x5c,0x5f,0x28,0xac, + 0x13,0x58,0x3d,0x30,0xf7,0x61,0x69,0xb4,0xb6,0x86,0x7f,0x8f,0x58,0x4d,0x46,0xb6, + 0x0,0x24,0x8f,0xbd,0xbe,0x8e,0x27,0x3e,0xd,0xdc,0x80,0x1b,0xbe,0x51,0x92,0x42, + 0xa0,0x3f,0x94,0xe6,0xea,0x77,0xbd,0x0,0x30,0xff,0x65,0x3e,0x40,0xf4,0xed,0x4b, + 0xfd,0x3f,0x7b,0xc9,0xc8,0xe1,0xfb,0x6b,0xbf,0x7f,0xb5,0x26,0xbf,0xc9,0x53,0xb7, + 0xc9,0xff,0x6a,0x65,0x5,0xbd,0xb0,0x7b,0xf,0x8d,0x39,0xf8,0x60,0xba,0xf0,0xad, + 0x3a,0xda,0xd9,0xb8,0x99,0x3e,0x45,0xc3,0x99,0x2c,0x27,0x5f,0xf9,0xef,0x89,0x17, + 0xf9,0xf4,0xbc,0x5b,0xe8,0xed,0x63,0x6b,0xe8,0xa5,0x63,0x6b,0x69,0xd3,0xe0,0xe9, + 0x54,0xb6,0x65,0xb,0xbd,0xf1,0xd7,0xbf,0xf2,0x6f,0x5f,0x30,0x42,0xe0,0xda,0x7f, + 0xfa,0x27,0x92,0x42,0xa3,0xa8,0xf1,0x7,0xeb,0x24,0x35,0xba,0x26,0x6c,0xc4,0x1a, + 0x6a,0x2c,0x56,0x40,0xd0,0x4b,0x61,0xb9,0x1,0x9e,0xba,0xb6,0x99,0xca,0x4c,0xff, + 0xd9,0xb9,0x67,0xf3,0x60,0xa7,0x2a,0xf5,0xa9,0x50,0x64,0xdb,0xb4,0x43,0xb9,0x5, + 0xc3,0x87,0x7,0xe4,0x87,0xd6,0x6f,0xf1,0x52,0x74,0xe6,0x98,0xd1,0x34,0x6d,0xd5, + 0x8b,0xd4,0xf6,0xf8,0xab,0xb4,0x83,0x46,0x12,0x3a,0x20,0x67,0xa8,0xcf,0x27,0xd4, + 0x3d,0x1,0x27,0x5f,0x9d,0x7c,0x4f,0x4f,0xce,0xbb,0x95,0x76,0x96,0xd,0xa1,0xdf, + 0xff,0xe9,0x45,0xaa,0x53,0xa,0x7f,0xdc,0xf6,0x5d,0x74,0xf4,0xdc,0x29,0x74,0x39, + 0x26,0x42,0x45,0x8c,0x60,0xa4,0x3e,0x9e,0x26,0xd5,0x52,0xa6,0xcc,0x98,0xf7,0xbe, + 0x89,0x49,0xe0,0xf7,0x98,0x50,0x66,0xb,0xc0,0x8,0x1,0x7f,0xdc,0x64,0xa2,0xd7, + 0x5f,0xd5,0x6,0xc3,0x2b,0xaf,0x26,0x9e,0xbf,0xbf,0xa3,0x3f,0x90,0xbf,0xd0,0x28, + 0x46,0x6f,0x44,0x96,0x0,0x58,0xa6,0x5e,0xb2,0x19,0x53,0xa6,0xb0,0xf6,0x6f,0x1b, + 0xaf,0x4d,0xe9,0x88,0x10,0x88,0x69,0x59,0xdd,0x4a,0x38,0xdc,0xd6,0x36,0xfd,0x89, + 0xfd,0x52,0x3f,0x24,0x7f,0x45,0x39,0xfd,0x75,0xd3,0x66,0x3a,0x71,0xe2,0x50,0xfa, + 0xcc,0x5f,0xde,0xe2,0xd9,0x81,0x4f,0xbe,0xfa,0x36,0xdd,0x6,0x14,0xd4,0xdc,0x73, + 0x89,0xfe,0xf0,0x28,0xd1,0x85,0xe7,0xa9,0xe5,0x7c,0xa2,0xc6,0x16,0xa2,0xca,0x72, + 0x3a,0x79,0xc9,0x12,0x3a,0xf9,0x8f,0xf3,0xe9,0x73,0x3e,0x26,0xf1,0xb8,0x8f,0x9e, + 0x99,0x7a,0x20,0x65,0xce,0x3b,0x8f,0x67,0x30,0x7a,0xe2,0xfb,0xdf,0x67,0x21,0x80, + 0x9a,0xbc,0xd5,0xa8,0xd3,0x27,0xf3,0x4,0xd8,0xb5,0x5,0xe2,0xc5,0x47,0x28,0xec, + 0x87,0xaf,0x46,0x37,0xe2,0x1a,0xe3,0x97,0x7b,0x7a,0xba,0x70,0x44,0xfd,0xaf,0xfa, + 0xe5,0xaf,0xe8,0xfb,0x57,0x7c,0x96,0x93,0x9d,0xd2,0x8a,0xe8,0x15,0x8a,0x90,0xcd, + 0xdb,0x74,0x72,0xe,0x34,0x7f,0x33,0x8,0x58,0x59,0x45,0xa7,0x3c,0xff,0x17,0x5a, + 0xf8,0xfa,0xeb,0x84,0x79,0x91,0xe7,0xaa,0xa3,0x5b,0x14,0xf1,0x3,0xd2,0x27,0xdd, + 0x53,0x93,0xbe,0xa7,0x53,0x97,0x28,0xbb,0x40,0xdd,0x13,0xf9,0x8d,0xf4,0xeb,0x5, + 0xbf,0xa5,0x9a,0x91,0x4a,0xd8,0xbc,0xbb,0x92,0x7e,0x7e,0xe0,0x34,0xba,0x3c,0xee, + 0x76,0x65,0x90,0x1e,0xbc,0x85,0x3,0xa0,0xd2,0x39,0x1b,0x4,0x2,0x65,0x17,0xf4, + 0x2,0x48,0xef,0x2,0x7a,0x14,0xd0,0xe5,0x88,0x51,0x87,0xb8,0xfe,0xb9,0x73,0xe9, + 0x89,0x2f,0x7e,0x51,0x5f,0x92,0x65,0x9,0xa4,0xbb,0x58,0x7b,0xc1,0xa1,0xe7,0x51, + 0xac,0xae,0xc8,0x2c,0xdb,0x7e,0x66,0xac,0xc6,0x5e,0x30,0xf,0x80,0x1,0xb,0x5, + 0x19,0x3f,0x8d,0x69,0xc0,0x62,0xa6,0x3f,0x0,0xf2,0xa7,0xd9,0xfc,0xf7,0xe9,0x31, + 0xa5,0xfd,0x45,0xf3,0xbf,0xaa,0x2c,0x8a,0x13,0x9b,0x9b,0xe8,0x33,0xcb,0x5b,0xe9, + 0x84,0xaf,0xfc,0x9b,0x26,0xa,0x8,0x22,0x1f,0x26,0xcc,0x79,0x21,0x71,0x3e,0x7e, + 0x81,0x22,0xce,0xb9,0xe1,0x77,0xb5,0x7e,0xdd,0xe1,0x9f,0xa6,0x87,0x26,0xcc,0x24, + 0x6f,0xc7,0x5b,0xf4,0xc4,0x9e,0x3d,0x74,0xda,0xb5,0xd7,0x6,0xe7,0xdd,0x83,0x49, + 0x46,0xd0,0xc7,0xae,0xb4,0x36,0x97,0xb,0x9f,0x30,0x5e,0x9b,0xd4,0x14,0x4e,0x68, + 0xc2,0xdf,0x65,0xd8,0x32,0x2,0x9d,0x10,0x5a,0x26,0xe7,0x80,0x73,0x2,0x94,0x70, + 0x3b,0x1b,0x69,0xbe,0xca,0x15,0xe1,0xc2,0x9f,0x5c,0x74,0xc3,0xa3,0x51,0xa6,0xa0, + 0x28,0x34,0x7f,0xb3,0xa7,0xc9,0x7f,0xc7,0x3f,0x96,0xd2,0x3,0x8a,0xfc,0x38,0xfa, + 0x32,0x1a,0x41,0x27,0x5c,0x9d,0xc7,0x3d,0x29,0x93,0x3f,0xdc,0x8e,0x7b,0xba,0x88, + 0x3e,0x7e,0xf6,0x65,0xf4,0xbf,0x8e,0x3b,0x9a,0x76,0x3f,0xfd,0x17,0xaa,0x7e,0xe3, + 0xed,0xf0,0x4f,0x3,0x41,0xcb,0xc3,0xac,0x75,0x22,0x10,0x4d,0x9a,0xac,0x7b,0x1, + 0x90,0x14,0x4,0x2b,0xc0,0xa,0x88,0x71,0x97,0xa1,0x24,0x48,0x49,0x8f,0xc2,0x8c, + 0x99,0xfa,0xbe,0x94,0x2b,0x93,0x4a,0x70,0xe3,0x1c,0xfa,0x7,0xda,0x21,0x7f,0xb7, + 0x63,0xbc,0x89,0x41,0x40,0xf1,0xfd,0xa1,0xed,0xb3,0xb4,0x3f,0x0,0x33,0xb3,0xbe, + 0x3e,0x72,0xc,0x7,0xd5,0x9e,0x59,0x14,0x76,0x3b,0x89,0xb9,0xad,0x3e,0xaf,0x56, + 0x94,0x29,0xf2,0x6f,0xa4,0x7b,0xfc,0x11,0xea,0x1d,0x6d,0xa2,0x13,0x96,0x98,0x8c, + 0xbb,0xa0,0x4,0x2e,0x85,0xdf,0x3d,0x6b,0x49,0xd6,0xf7,0x5f,0xfe,0x5a,0xb1,0xec, + 0xe3,0x44,0x17,0x9d,0x4b,0xe5,0x4a,0x93,0xfe,0xe2,0xf2,0x9b,0xe8,0x53,0x3f,0xbb, + 0x89,0xbc,0x3,0x4e,0xa0,0x19,0x43,0x87,0x6,0xcd,0xa0,0xe7,0x62,0x90,0x35,0xfb, + 0x10,0xc0,0x53,0x85,0xd5,0xc5,0xe6,0xd,0x44,0xd3,0x35,0x63,0x68,0x90,0xa7,0x85, + 0x40,0xe0,0x6,0x98,0xeb,0x6e,0x52,0xf7,0x78,0xf0,0xdf,0xfe,0x4e,0x6f,0xcd,0x3e, + 0x86,0x67,0x23,0xc2,0xd6,0xf4,0x4a,0x93,0xe5,0x57,0x5e,0x49,0x3f,0x5c,0xba,0x9a, + 0x16,0xbe,0xf9,0x1a,0xdd,0x62,0x4c,0xfd,0xee,0xde,0x13,0xac,0x83,0x4f,0x7e,0xe9, + 0x44,0xfa,0xc5,0xf,0xef,0xa5,0x27,0x66,0x1f,0x48,0xa7,0xd,0xdf,0x8f,0x68,0x82, + 0xd5,0x4b,0x1,0x72,0x63,0x30,0x90,0x49,0x24,0xa,0x84,0x80,0xf9,0x7b,0xc4,0xe1, + 0x61,0xce,0x43,0xe5,0x6,0xa0,0xfb,0x31,0xf5,0xea,0xeb,0x44,0x1f,0x3a,0x99,0x83, + 0xad,0xf6,0x28,0x4d,0x87,0xbe,0x8f,0x5c,0xe4,0x47,0x16,0x63,0x21,0x52,0x93,0xb3, + 0xde,0x9c,0x40,0xa7,0x28,0x53,0x31,0xf0,0xf7,0x29,0xdb,0x12,0x0,0xa4,0x5b,0x4d, + 0x92,0x7d,0x90,0xcc,0x83,0xf,0xa4,0xa,0xfc,0x7e,0x68,0xff,0x77,0x47,0x8f,0xa6, + 0xb7,0x94,0xa9,0x7a,0x9c,0xd2,0xbc,0x1f,0xfa,0xe2,0x57,0xd8,0x9c,0xd7,0xed,0x53, + 0xb8,0x94,0x4f,0x52,0x81,0x4c,0xd9,0xe,0xa2,0x80,0x30,0x80,0xb2,0x4,0xbc,0xc7, + 0x5e,0xa6,0xb,0x1f,0x7e,0x9b,0xd6,0x2d,0x7e,0x81,0x5d,0x1,0xbe,0x46,0xeb,0xda, + 0xed,0x62,0x25,0x76,0xd1,0x51,0x8,0x3,0xb6,0xc,0x28,0xec,0x1e,0xc,0x32,0x8, + 0xb9,0x5b,0x2e,0xa5,0x2c,0xee,0xc,0xcd,0xda,0xbc,0x99,0xa6,0xff,0xed,0x6f,0xfa, + 0x3e,0xad,0x4b,0x6a,0x4b,0x97,0xd1,0x3d,0xcd,0xf5,0xf4,0xc4,0xeb,0xcf,0x11,0x1c, + 0x24,0x68,0xfc,0x42,0xdd,0x13,0xbd,0xf4,0x2e,0x55,0xed,0x58,0x4f,0x6f,0xde,0xf1, + 0x1b,0x7a,0xaa,0xd9,0x9a,0x65,0x79,0x52,0xad,0x1e,0x1,0x38,0xd6,0x4,0x34,0xb1, + 0x9e,0x89,0xe7,0x69,0x26,0x60,0xf4,0x48,0x16,0x18,0x70,0x3,0xbe,0x7f,0xdf,0xcf, + 0x9d,0x0,0xe8,0x67,0xc8,0x45,0x7e,0x4,0x16,0xd1,0x15,0xae,0x96,0xdd,0x8e,0xec, + 0x46,0x4,0x0,0x2,0x80,0x92,0xe8,0xc2,0xd3,0x7a,0xa1,0xaf,0x1f,0xc4,0x57,0xeb, + 0x2c,0xc,0xec,0x1e,0x1,0xa5,0x39,0x75,0x62,0x4d,0x48,0xa0,0x20,0xaf,0xbf,0xbc, + 0x9c,0xd2,0xa6,0xf1,0x37,0x94,0xbf,0x7b,0x7c,0xc5,0x8,0xfa,0x5f,0xfe,0xf0,0xf0, + 0x44,0x71,0x2d,0x69,0x57,0xdd,0xf1,0xcc,0x81,0xff,0xfd,0x6b,0xbd,0xfc,0xf5,0x1f, + 0xc3,0xfd,0x40,0x18,0x0,0xa4,0x51,0x5a,0xf3,0xc3,0x57,0x7e,0x85,0x2e,0x56,0x96, + 0xfd,0xcb,0xa8,0xb2,0x63,0x9a,0xb4,0x5,0x58,0x1c,0x52,0xba,0x4c,0xac,0x80,0x48, + 0x2d,0x82,0x29,0xc6,0x6c,0x36,0x82,0x83,0x2f,0x31,0x46,0x96,0x36,0xc,0xcd,0xad, + 0x4c,0xd3,0x31,0xa9,0x4a,0x26,0xff,0x3f,0x53,0xe1,0xef,0xe9,0xe3,0x67,0x5e,0x4c, + 0xc7,0x8c,0xf6,0x68,0x57,0xfd,0x5f,0x42,0x92,0x23,0x23,0x11,0xda,0xbf,0xdc,0x32, + 0xd8,0x8c,0x2b,0x10,0x8c,0x5e,0x34,0xdb,0x22,0xd7,0xc3,0x19,0x8d,0x7a,0x3c,0xc3, + 0x63,0xc8,0x6d,0x20,0x2a,0xc9,0xde,0x80,0x52,0x44,0x7b,0xe4,0x2f,0x24,0xb2,0x2c, + 0x80,0x41,0x30,0xff,0xad,0x19,0x80,0x98,0xf8,0x8,0x24,0x59,0x16,0x40,0x60,0xfe, + 0x1b,0x61,0x80,0x59,0x76,0xbd,0x35,0x75,0xb4,0x40,0x19,0xcb,0x1e,0xfa,0xfa,0x5b, + 0x1a,0xb9,0xe1,0x77,0x94,0xf6,0x7f,0x73,0xdb,0xe,0xba,0x64,0xdb,0x9e,0xd0,0x37, + 0x8e,0x6b,0x46,0xbb,0x4c,0x1e,0x8,0x72,0xbf,0x21,0x47,0x99,0x35,0x45,0x96,0x68, + 0xc9,0x7,0x1e,0xc9,0xfa,0xad,0xe5,0x81,0xbf,0xd3,0x3f,0x1e,0x7a,0x2c,0x1c,0x2, + 0xac,0x3e,0xc1,0x6c,0xc3,0x8a,0xcc,0x11,0xed,0x6f,0x59,0x1,0x1,0x4c,0x7a,0xb0, + 0xdf,0x16,0x12,0x5f,0x2e,0x4e,0x4,0x40,0xc0,0x6d,0x75,0xbf,0xf7,0xfc,0xf5,0x4d, + 0xba,0xfa,0xf,0xb,0xe9,0x5f,0x68,0x34,0x9d,0x52,0x8c,0x7b,0x2a,0xab,0xa6,0xb5, + 0xcb,0x56,0xd3,0x4b,0x3f,0xfc,0x79,0x28,0x6c,0x71,0x8d,0xe3,0x26,0xea,0xa5,0xad, + 0xfd,0xe3,0x49,0x31,0x49,0x7e,0x3e,0x7a,0x13,0x8c,0x20,0x80,0x15,0xc0,0x97,0xe7, + 0xac,0x80,0x3e,0x8d,0x7c,0xc9,0x6f,0xbe,0xc7,0x55,0x4f,0xa7,0x10,0x79,0x63,0x30, + 0xe6,0x7f,0x1f,0xf2,0xfc,0xcd,0xb,0xc2,0x16,0xc0,0x86,0xd,0xc9,0xb9,0x0,0xa6, + 0xa,0x4e,0xc3,0x7b,0xcb,0xa9,0x72,0xfa,0x34,0xd6,0xbc,0xe7,0x4f,0xdd,0x3f,0x52, + 0xcd,0x76,0x69,0x55,0x25,0x1d,0xa9,0x5e,0x5a,0x44,0xfb,0x99,0x28,0x2,0x9b,0x1c, + 0x58,0x82,0x20,0xf8,0x40,0x1b,0xb6,0x36,0xea,0xf5,0x4b,0xe7,0xea,0x25,0xbe,0x63, + 0x3b,0xd6,0x2f,0x3a,0x3f,0xfc,0xed,0x81,0x47,0xf9,0xb6,0x41,0xc2,0x6f,0x4d,0xd9, + 0x8f,0xee,0xdb,0xa5,0xad,0x0,0x34,0x87,0x2b,0x10,0x21,0x60,0x4f,0x3e,0xc2,0x4b, + 0xa5,0xfd,0xed,0x22,0xa6,0x91,0x27,0x10,0xab,0x4a,0x8c,0x11,0x88,0x42,0x95,0x7d, + 0x48,0xfc,0x51,0x1a,0xb8,0x6c,0x4f,0x9a,0xe,0x54,0xdf,0x9b,0xd0,0x71,0x59,0xa4, + 0x7b,0xba,0xe8,0xc3,0x97,0xd1,0xd9,0x13,0x27,0x72,0x51,0x90,0xb0,0xfd,0x4,0xd2, + 0x6,0x56,0x80,0xc9,0x18,0x9c,0x6c,0xe5,0x3c,0x20,0x69,0x11,0xdb,0x37,0x6f,0xe5, + 0x38,0x0,0x2,0x81,0xba,0x19,0x23,0xd4,0x9c,0x25,0x50,0x74,0x74,0x45,0x5b,0x77, + 0x92,0xfc,0x36,0xba,0xf4,0x7,0x8d,0xb0,0x1a,0xaf,0xc6,0x20,0x19,0xee,0x4b,0xda, + 0x2,0x60,0xf3,0x93,0xf7,0xc,0x3,0x7f,0xde,0xb8,0x71,0x91,0x46,0xb8,0xd4,0xb6, + 0x19,0xc5,0xf7,0x28,0x67,0xfa,0x79,0xec,0xfb,0x2f,0xdd,0xb1,0x93,0x2e,0x6d,0x1e, + 0x1a,0xed,0x16,0x93,0xf7,0x58,0xc8,0x81,0x97,0x1e,0xa8,0x2a,0xd7,0xdd,0x62,0x43, + 0xf6,0xd3,0xeb,0xe8,0x32,0xc3,0x72,0xf0,0x50,0xbd,0x2e,0xe4,0xc1,0x52,0xba,0xd3, + 0x4c,0x5b,0x6f,0xff,0x69,0x29,0x1d,0xd0,0x18,0xd6,0xc3,0xb,0x6e,0xa,0x3e,0x6f, + 0x6c,0x46,0x22,0x8e,0x1,0x98,0x22,0xa6,0x9c,0xc3,0x50,0xa3,0xef,0xa5,0xdd,0xa2, + 0x23,0xa,0x3b,0xeb,0xea,0xe8,0x5f,0x95,0xe0,0x58,0xb5,0x7e,0x13,0x7d,0x8a,0x6a, + 0xb4,0xf6,0x2f,0xd6,0x3d,0x79,0xe5,0xb4,0x7e,0xf9,0xe,0x5a,0xbe,0xe4,0x37,0xdc, + 0xcc,0x68,0x94,0x4,0xe7,0x1e,0x81,0x4c,0x38,0xa0,0x69,0xa2,0x19,0x90,0x95,0xf1, + 0xc3,0x9c,0x8c,0xd5,0x75,0xe1,0x5,0xfb,0xba,0x7c,0x1b,0x29,0x1,0x81,0x9e,0x8b, + 0xb2,0x7f,0xbc,0xe6,0x7a,0x2,0x7a,0x10,0x3d,0x4c,0x7e,0x41,0xa7,0x85,0x40,0xa4, + 0x17,0x0,0xe4,0xc7,0x48,0xbf,0xc1,0xeb,0xb5,0xb9,0xcf,0x66,0xbf,0xf5,0xd2,0x80, + 0xf8,0x81,0xf9,0x1f,0xc,0x41,0xd5,0x95,0x82,0x40,0xfe,0xf9,0x8a,0xfc,0x69,0xeb, + 0x3a,0xe,0x1f,0x3e,0x96,0x5a,0xf6,0x6c,0x8d,0x5e,0x9a,0xbc,0xf0,0x95,0xe5,0x7a, + 0x1d,0x84,0xa8,0xae,0x30,0x43,0x5f,0xa1,0xfe,0x24,0x7,0xa0,0x59,0xfd,0x56,0xa1, + 0x23,0xe4,0xa2,0x4d,0xa1,0xbd,0xf0,0x1b,0x1a,0xab,0xd6,0xda,0xf1,0xc9,0x79,0xb7, + 0xf0,0xb2,0xba,0x7c,0x7,0x2d,0xf5,0x6b,0x68,0x26,0x66,0x2d,0x22,0x6d,0x5,0x30, + 0xcc,0x14,0xe4,0x36,0xd8,0x2,0x40,0xd,0x3e,0x2b,0x21,0x28,0xe8,0xe,0xe4,0x1, + 0x50,0xa1,0xb6,0xd,0x9e,0xa8,0xba,0xbe,0xfd,0x37,0xee,0xa3,0x9a,0x59,0xd3,0xa9, + 0x69,0xe9,0x6b,0xc5,0xbd,0xa7,0x1f,0xdc,0x42,0x65,0xe3,0xc7,0x50,0xea,0xed,0xd7, + 0x89,0xde,0xff,0x11,0xb6,0xae,0x82,0x39,0x9,0x62,0x81,0xc5,0xd4,0xd6,0x6d,0x7a, + 0x3,0x8a,0x8b,0xca,0x80,0x20,0x73,0xdf,0xdc,0xd9,0xa0,0xfe,0x36,0xad,0xd3,0xa6, + 0x51,0xd9,0xaa,0x55,0x34,0x7f,0xc7,0x2e,0x3a,0xd2,0x1a,0xf5,0xe6,0x4,0x42,0xdf, + 0x41,0x1,0xc8,0xdf,0x25,0x44,0xde,0x0,0x26,0xff,0xda,0xb5,0x61,0xcd,0xff,0x89, + 0xd1,0xc1,0x33,0x20,0xbf,0xd6,0xfe,0x51,0x73,0x34,0x63,0x5a,0x39,0x2f,0x5d,0x41, + 0x52,0x9e,0x72,0xd9,0xa0,0x6a,0x6a,0xa6,0x2d,0x9a,0x23,0x30,0x95,0xe3,0x16,0xac, + 0x98,0xb4,0xf6,0x32,0xe5,0x85,0x9,0x40,0x20,0x3,0x7e,0xc2,0xf7,0x4a,0x53,0xe0, + 0x13,0x79,0x1,0x20,0x55,0x63,0x38,0xac,0xf7,0x54,0xa5,0x89,0x2b,0xd4,0x8e,0xbf, + 0xfc,0xdd,0x83,0x74,0xa8,0x69,0x4b,0xea,0x6e,0x90,0x4c,0xa0,0x91,0x27,0x82,0x20, + 0x66,0x2,0x50,0x4c,0x74,0x6a,0x4d,0x5,0xfd,0x74,0xd0,0xa2,0x1e,0xb9,0xa7,0xe1, + 0x1b,0x9a,0xc9,0x5f,0xaf,0xcb,0x80,0xb5,0x99,0xbf,0x87,0x4c,0xe,0x42,0x66,0x60, + 0x14,0xac,0x0,0x5d,0x18,0x24,0xe1,0x1e,0xe3,0xe4,0x96,0x6b,0x71,0xe8,0x73,0xe8, + 0x2d,0xf2,0x3,0x11,0xb,0x20,0x18,0xfe,0x2b,0xd5,0x7e,0xac,0x7c,0x7f,0x21,0xbf, + 0x5f,0xbf,0x25,0x8b,0x54,0x9e,0x29,0xe0,0x81,0x31,0xfb,0x10,0x0,0x6f,0x2b,0xf3, + 0x1f,0x2f,0xf5,0x3f,0x37,0xc,0x57,0xa6,0xf2,0xe7,0x63,0xa7,0xf4,0xb4,0xe6,0x3, + 0x19,0xaa,0x2b,0x28,0x1b,0xbe,0xd6,0xa0,0xbc,0xea,0x6b,0x8d,0x7,0xd,0xfa,0xc0, + 0x7c,0xeb,0x38,0xfd,0x3b,0xb4,0xbf,0xae,0x99,0x9b,0xa2,0xff,0x1c,0x33,0x83,0x90, + 0xf2,0x93,0x31,0x9f,0x24,0xdd,0x16,0x4,0x4,0x2b,0xac,0xf3,0x9a,0x74,0x60,0x2f, + 0x55,0x9e,0x68,0x3f,0x85,0xa,0xd7,0xa7,0xd6,0xe7,0xdf,0xa1,0x8a,0x73,0xce,0x53, + 0x4,0x3d,0xb1,0xe8,0xf7,0x54,0xae,0xfe,0x6d,0x5a,0x13,0xe6,0x2c,0x40,0xfb,0x7, + 0x2,0x40,0x1e,0xff,0xba,0x35,0x9c,0xd,0x18,0xd4,0xf,0x4,0x4c,0x89,0x32,0x7f, + 0xbc,0x49,0x7,0x1e,0x33,0x3a,0x72,0x25,0x4e,0xeb,0xf7,0x2d,0xf4,0x26,0xf9,0x81, + 0xc8,0xdb,0xd0,0x20,0x1,0x40,0xdb,0x2,0x90,0xd9,0x52,0x8c,0xf9,0xef,0x8d,0x1b, + 0x9d,0xa5,0x5d,0xa4,0x8a,0x4f,0x74,0x4e,0x5b,0x9f,0xce,0xde,0x3a,0x2e,0xfc,0x8a, + 0x68,0x37,0x5e,0x5c,0x21,0x42,0x12,0xa4,0xf2,0xae,0x64,0xff,0x41,0x2b,0xe2,0x18, + 0x10,0x5,0x66,0x33,0xb4,0x66,0x43,0xd8,0x3f,0xe,0x4d,0xd9,0xa6,0x8f,0xa0,0xab, + 0x5f,0x7a,0x4e,0x5f,0xb,0x85,0xfc,0x68,0xb0,0x7a,0x3,0xf8,0x7e,0x12,0xaa,0x17, + 0x47,0x2e,0x99,0xd3,0x81,0x63,0x39,0xf6,0xd6,0xfa,0xd0,0x23,0xa7,0xd3,0x97,0x57, + 0xaf,0x2d,0xfa,0x3d,0x99,0x71,0x7f,0xb4,0xf0,0xa9,0xf0,0x9e,0x46,0xd5,0x4e,0xc9, + 0x6e,0x9b,0x28,0x9a,0x10,0x4,0x58,0xe9,0xc0,0x1e,0xf2,0x0,0x64,0xbf,0xdc,0x57, + 0xe8,0xd0,0x4b,0xe8,0x6d,0xf2,0x3,0xd9,0x99,0x80,0x78,0x61,0x3b,0xb2,0x0,0x52, + 0x19,0x26,0xa,0x7a,0x0,0x84,0x30,0xec,0x3f,0x7,0xc5,0x3d,0x34,0x5,0x7f,0x5e, + 0xb5,0x9c,0x2e,0xe7,0x1f,0xd5,0xa7,0xa9,0xd5,0x3a,0x49,0xe,0x53,0x54,0x2c,0xb, + 0x98,0xc8,0x9c,0xa8,0x2f,0xc4,0xf2,0xf5,0x36,0x98,0xb0,0xd5,0x21,0xd9,0x9e,0x55, + 0xda,0xb2,0xdc,0x50,0xf4,0xc6,0x23,0x8f,0xa1,0xa5,0xea,0xda,0x67,0x72,0x21,0x8f, + 0xa8,0x15,0x60,0xcf,0x5f,0x90,0x6b,0xda,0xf1,0x5c,0x0,0x67,0x37,0xbe,0xf2,0xf, + 0x1e,0xf0,0xb4,0xa7,0xd2,0xa3,0x17,0xff,0xfe,0x36,0x9d,0x71,0x66,0x71,0xef,0x9, + 0x8e,0x14,0x3c,0xf8,0xb,0xcf,0x3f,0x82,0x6e,0x32,0xdb,0x65,0xb6,0x22,0xdd,0xa5, + 0x97,0xa0,0xc5,0xcd,0xe8,0x40,0xae,0x36,0xbc,0x6e,0x83,0x4e,0x7,0xb6,0x2c,0x0, + 0x44,0xff,0xd3,0xea,0x53,0xca,0xe5,0xad,0x4a,0x1,0x3d,0x49,0x7e,0x20,0xd9,0x1e, + 0x6c,0xc7,0x2,0xe0,0x41,0xae,0xe6,0x5,0xac,0x3e,0x60,0x7a,0x70,0x88,0xed,0x3f, + 0xfb,0x46,0xeb,0x5d,0x7c,0xdb,0xa7,0xc3,0x84,0x1c,0x74,0x69,0x71,0xd0,0x8b,0x22, + 0x2f,0x7c,0x32,0x62,0xc6,0xb8,0xe7,0x65,0x6d,0x83,0xa9,0x2c,0xda,0xff,0x17,0xb4, + 0x8d,0x5e,0x3f,0x70,0x30,0xcd,0x32,0x83,0x79,0xec,0xec,0x5b,0x3e,0xdc,0x9a,0xbf, + 0xc0,0xee,0x2,0x8c,0x8c,0x63,0x80,0x9c,0x43,0x75,0x1e,0xbe,0xf7,0xe4,0x60,0xea, + 0x8a,0xad,0xd,0x74,0xe,0x8d,0xee,0x91,0x7b,0xfa,0x15,0x6d,0xa2,0xfd,0x8e,0x18, + 0x15,0x1c,0xd9,0x6a,0x75,0xaf,0x66,0x21,0x47,0x61,0x10,0xdb,0x2,0x48,0xbb,0xbe, + 0xff,0x3e,0x8f,0x9e,0x26,0x3f,0x90,0x25,0x0,0xec,0x7a,0x7f,0x1,0x94,0x10,0x8, + 0x2,0x80,0x5e,0x19,0x79,0x35,0x51,0xbf,0x32,0x83,0xa9,0xb6,0x94,0x5,0x80,0x3c, + 0x80,0xc,0x5e,0x57,0x23,0x34,0xae,0x7b,0x74,0xbe,0x89,0x72,0x3f,0x1a,0x9a,0xbb, + 0x8d,0x2d,0xd9,0xed,0xc7,0x91,0xf4,0xb2,0x5a,0xdb,0x24,0xf2,0x3f,0x98,0xc2,0xca, + 0xc3,0x2b,0x7,0x55,0xf0,0x48,0x46,0x0,0x31,0xff,0xc1,0x2b,0x56,0x4,0x66,0xaf, + 0x2f,0x16,0x8d,0xdd,0xff,0x9f,0x3,0x76,0x22,0x50,0x70,0x6a,0xf3,0xcb,0xd0,0x7f, + 0xbd,0x8c,0x4e,0x20,0xe3,0xd6,0x14,0xf9,0x9e,0x10,0x49,0x58,0x3e,0x3d,0x45,0x23, + 0x94,0xe9,0xf,0xed,0x5f,0x66,0xf7,0x64,0x58,0x2e,0x58,0x50,0x21,0x38,0xde,0xf4, + 0xba,0xec,0x80,0xa6,0x73,0x3,0xfa,0x2e,0x7a,0x83,0xfc,0x40,0x96,0x0,0x8,0x2, + 0x81,0x2,0x63,0x5a,0x86,0x16,0x40,0x26,0x28,0x84,0xc9,0xc0,0xa0,0x13,0x5f,0x6b, + 0xa7,0x72,0xa9,0xe4,0x6b,0xa,0x56,0x4c,0xfa,0x9b,0x72,0x21,0xce,0x3c,0x85,0x8, + 0xd5,0x74,0xe0,0x2f,0xc3,0xdc,0x6d,0xcf,0x5f,0xce,0x13,0xf0,0x93,0x2b,0x15,0x2d, + 0x5b,0xd4,0xbf,0xfb,0x94,0xf6,0x47,0x8b,0xa7,0x4d,0x38,0x8e,0xeb,0x18,0xe2,0x86, + 0x70,0x35,0xbb,0x95,0xff,0x3f,0x74,0x45,0xc2,0x2c,0x39,0xb1,0xf2,0xe5,0x80,0xe7, + 0x99,0x32,0xe1,0x9e,0xae,0x80,0x14,0xa6,0xff,0xf8,0xb2,0x3,0xaf,0xdd,0xff,0xea, + 0x3b,0xb4,0x87,0x76,0x13,0x9d,0x75,0x6a,0xd1,0xef,0x69,0xe6,0xa0,0xc9,0xf4,0xf8, + 0xaf,0x8d,0x6f,0x2f,0x19,0x7f,0xb6,0x10,0x11,0x21,0xc0,0xf5,0x1,0xb6,0x65,0xb5, + 0x17,0xaf,0x31,0xe8,0xc8,0xdf,0x77,0xd1,0x5b,0xe4,0x7,0xb2,0x4,0x40,0x83,0x58, + 0x0,0x39,0xdc,0x0,0x5e,0xc6,0x22,0xcb,0x69,0x44,0xd0,0x5b,0x5a,0xe8,0xf,0xcf, + 0x3c,0x4d,0x1f,0x99,0x73,0x32,0x65,0x14,0x89,0xe,0xde,0xd7,0x40,0x6b,0xab,0xaa, + 0xa8,0xf1,0xb7,0xb7,0xeb,0x1c,0xf6,0xb3,0x4f,0x63,0x3e,0x89,0xa6,0xeb,0xc,0xe4, + 0x98,0xa7,0xd4,0x12,0xeb,0x2f,0xce,0x9b,0xa7,0x48,0x5f,0x11,0x18,0xd0,0xd7,0x9e, + 0xfa,0x1,0xda,0x3a,0xa8,0x82,0x6f,0x46,0x5e,0xf4,0xa1,0xa8,0xbd,0x87,0xfc,0x4, + 0x75,0x2d,0x81,0xe6,0xaf,0x48,0x8a,0xd0,0x47,0x9f,0x2,0xf,0x98,0x49,0xa2,0x8b, + 0x3a,0xd9,0xd3,0xf5,0x9b,0xa9,0xe1,0x57,0x17,0x13,0xfd,0x6e,0x61,0x51,0xef,0x9, + 0x97,0x73,0xe1,0xb7,0xcf,0xa1,0xef,0xdd,0x7e,0x1b,0x65,0xd4,0xdf,0x61,0xfb,0x9a, + 0x3a,0xed,0xff,0x9b,0x59,0x8d,0x79,0x7a,0x30,0x20,0xa8,0x14,0x9c,0x2d,0x18,0xa4, + 0xc4,0xb8,0x43,0xdf,0x46,0x6f,0x92,0x1f,0x88,0xa6,0x2,0xe7,0x2a,0xb8,0x68,0x5c, + 0x0,0x6,0x6a,0xcc,0x59,0x43,0x81,0x11,0x7,0xa8,0x9c,0x5e,0xcb,0x94,0x39,0x6f, + 0xe2,0x64,0xe5,0x77,0x8e,0x26,0xbf,0xb9,0x99,0x8b,0x74,0x34,0x29,0x32,0xfd,0xbf, + 0x9d,0x66,0x56,0xdb,0xc7,0x9f,0xe2,0x4,0x17,0x68,0xba,0x27,0xcd,0x4b,0xf,0x74, + 0x44,0x1e,0xfc,0x8e,0x63,0x40,0x14,0x90,0x3,0x7d,0xfe,0xcd,0xa4,0x7d,0x7a,0xf8, + 0xfe,0xa8,0x14,0xb8,0x30,0x55,0x43,0x7,0x99,0xd9,0x7a,0x21,0xb6,0xf8,0x2e,0x30, + 0x96,0xdf,0x2a,0xac,0x61,0x9b,0xff,0x59,0x25,0xcc,0x70,0xa8,0x14,0xc,0xc1,0x43, + 0xf1,0x74,0x18,0xd3,0x1e,0xc,0x94,0xe6,0xc0,0x82,0x47,0xb7,0xd0,0x6a,0x7a,0xf5, + 0x95,0x5,0xda,0xf4,0x2f,0xd2,0x3d,0x1d,0x55,0x5e,0x43,0xf7,0xfe,0x79,0x3,0xd, + 0x9b,0x3a,0x95,0xcd,0xff,0x91,0x62,0x59,0xb5,0xb6,0x69,0x2b,0x5,0x59,0x80,0xeb, + 0xd6,0xe4,0x3e,0x1,0xdf,0x64,0xf4,0x6f,0x99,0x4a,0xd8,0xe6,0xd0,0xbb,0xe8,0x6d, + 0xf2,0x3,0x11,0x1,0xf0,0x66,0x3b,0xf9,0xe1,0x61,0xfa,0xaf,0xaf,0xd7,0xad,0x5d, + 0xa5,0x4,0x38,0x66,0xfc,0xe1,0xcc,0x3a,0x85,0x4a,0x53,0x3a,0xfc,0xc8,0xc3,0xf, + 0xa6,0x9d,0xe3,0x37,0x11,0xcd,0xfb,0x2d,0x9d,0xfa,0xa7,0x3f,0x7,0xe4,0x10,0xd2, + 0xc8,0x12,0x48,0x5a,0xe2,0xf7,0x45,0x86,0x28,0x43,0x94,0x91,0x5c,0xc1,0xff,0xca, + 0xe9,0x27,0xb4,0x91,0xf7,0x99,0x7b,0xd1,0xe9,0xf4,0xe9,0x93,0x8e,0xe3,0x75,0x78, + 0xe2,0x81,0xd9,0x6f,0x77,0x55,0xc6,0x32,0x1,0xe3,0x75,0x2,0xdb,0x4b,0x0,0xd2, + 0x3b,0xf8,0x4a,0xb0,0xf8,0x2c,0x4,0x9e,0x5e,0xb8,0x97,0xb6,0x7c,0xe2,0x60,0xa2, + 0xe6,0xbd,0x45,0xb9,0x27,0x88,0xa5,0x35,0xe7,0x4e,0xa0,0x9b,0xee,0xf8,0xbe,0xae, + 0xa7,0x48,0x56,0x44,0x2,0xf7,0x21,0xc4,0x97,0xd2,0x60,0x3c,0x2d,0x58,0x42,0x2c, + 0x57,0xa6,0x2f,0x37,0x73,0x4,0xe0,0x5c,0xe7,0xe,0x1f,0xd6,0xfe,0x7d,0x3a,0xf4, + 0x8,0x30,0x96,0xbf,0x2f,0x90,0x1f,0x88,0x74,0x3,0x1e,0x77,0xe3,0x8d,0xde,0xae, + 0xef,0x7c,0xc7,0xf,0xa6,0xaa,0x32,0x8,0x8a,0x81,0x44,0x62,0x1,0x14,0x98,0xa0, + 0xc1,0x3c,0x7d,0x98,0x9c,0x43,0xe1,0xfa,0x53,0x4f,0xa3,0xdb,0xee,0xbf,0x9f,0xee, + 0x52,0x56,0xc0,0x55,0x77,0xdd,0x49,0x37,0xfc,0xcb,0xff,0xa6,0x21,0x17,0x1f,0xc4, + 0xc1,0xb9,0x53,0x69,0x3a,0x3d,0x49,0xcb,0x15,0x79,0x1e,0x54,0xaf,0xbc,0x47,0x8b, + 0xe7,0xdd,0xca,0x5d,0x79,0x8b,0xe7,0xdd,0xc6,0xcb,0x45,0xc1,0x52,0x6f,0x87,0x69, + 0xc,0xa3,0x7c,0x8,0x65,0x9b,0xef,0x47,0x94,0xd,0xa6,0xfd,0xf,0xf9,0xa0,0xd2, + 0xf4,0x5e,0x98,0xfd,0x47,0x5a,0x8,0xf8,0x71,0x73,0x3f,0xc7,0xd4,0x65,0x2c,0xb4, + 0xf8,0x26,0xdb,0x28,0xa5,0x2c,0x15,0x94,0x1f,0x47,0x1d,0x83,0xb7,0x47,0x8d,0xa2, + 0x5,0x9f,0xd3,0x25,0xc1,0x90,0xce,0xcb,0xe9,0xc5,0x93,0x26,0x52,0xe3,0x98,0x51, + 0x74,0xda,0xf0,0x83,0x69,0xdb,0xde,0x25,0x34,0xe2,0x5f,0x2f,0xe6,0x36,0x4e,0xa5, + 0x3,0xd5,0x3d,0xbd,0x1b,0xdc,0x93,0x5c,0xfb,0xa2,0x76,0xee,0x89,0x62,0xf7,0xd4, + 0xaa,0x44,0xc,0x9e,0xe6,0x51,0xc7,0x1e,0x4d,0x4b,0xbf,0xfa,0x1,0xd6,0xfe,0xc0, + 0x56,0x9e,0x57,0x81,0x38,0xd5,0x97,0xa7,0x29,0x17,0xed,0x8f,0x67,0x9f,0x92,0x41, + 0xd0,0x26,0x3,0xd2,0x2a,0xb,0x6,0xf8,0xa9,0xb0,0x8a,0x51,0x5b,0x59,0x99,0xb3, + 0x0,0x7a,0x11,0xcf,0x5a,0x35,0xc,0xe3,0x53,0x92,0xf7,0x66,0xe5,0xe1,0x4e,0x4d, + 0xe,0x2a,0x59,0x66,0x81,0x10,0xb0,0x2a,0xd3,0x42,0x8,0x60,0x96,0x9e,0x5,0xeb, + 0xea,0xe8,0xa2,0x8f,0x6a,0x62,0xc0,0xa,0xf8,0xfc,0x95,0x57,0xd1,0x16,0x45,0xa2, + 0xca,0xfd,0xf,0xa4,0xf1,0x3f,0xbe,0x9d,0x35,0xda,0xa9,0x74,0x8,0x11,0xeb,0x54, + 0x9f,0x4e,0xa2,0x83,0xe8,0x45,0x5a,0x45,0x7b,0x95,0x11,0x8c,0x8,0x78,0xb3,0xd2, + 0xe3,0xd0,0x86,0xe1,0xb2,0x99,0xf5,0x23,0x0,0xd,0xf9,0x59,0x1a,0x43,0x3f,0xa7, + 0x4d,0xf4,0xfe,0x94,0xda,0xf7,0xb4,0xd3,0xa8,0x66,0x48,0x25,0x93,0x1f,0xc6,0x3b, + 0x6b,0x7f,0xa9,0xb7,0x4f,0x94,0xd3,0xf7,0x8f,0x4c,0x16,0xa,0xf7,0xc4,0x32,0xff, + 0x79,0x92,0x4e,0xb5,0x28,0xf,0x26,0x8,0x55,0x8b,0x49,0x93,0x88,0x60,0xd1,0xcc, + 0x3a,0x9c,0xde,0xc2,0xfd,0x8e,0x1e,0x46,0x23,0x53,0x27,0xd3,0x8e,0xd4,0x12,0x1a, + 0xc6,0x2,0xa5,0x49,0xdd,0xd3,0x41,0xe6,0x9e,0x88,0x3e,0xa4,0x4,0x2,0xee,0x69, + 0x8f,0xba,0x76,0x68,0xf8,0x26,0x75,0x2f,0x95,0xea,0x5e,0xc2,0x65,0x33,0xeb,0x7d, + 0x73,0x42,0x45,0xfe,0xc,0xdd,0x4f,0x5b,0x68,0xf6,0x71,0x87,0xd0,0x67,0x7e,0xfc, + 0x53,0x1a,0x76,0xc8,0xa1,0xfc,0x87,0xb1,0x7,0x35,0x31,0xc9,0xeb,0x56,0x11,0x4d, + 0x9e,0x1a,0x64,0xff,0x65,0xcd,0x12,0x2c,0xfe,0xff,0xba,0xd5,0x14,0xcc,0x6e,0x84, + 0xae,0x40,0xc4,0x43,0x30,0xf8,0x49,0xed,0xeb,0xf2,0x0,0x7a,0x16,0x52,0x6e,0x3c, + 0x4e,0x7a,0x41,0x6f,0x97,0x1d,0x4f,0xcc,0x3,0x68,0x88,0x75,0x5,0x72,0x49,0x30, + 0xd4,0x2,0x44,0x84,0xdc,0x1e,0x11,0xd8,0xa6,0x27,0xb3,0xc4,0x94,0x5c,0x58,0xaf, + 0xac,0x9d,0xac,0xc9,0xaf,0x5e,0xb6,0x6b,0x2e,0xbd,0x94,0x6e,0x57,0x56,0xc0,0x93, + 0xdf,0xff,0x3e,0xbf,0xc0,0xc3,0x87,0x57,0xd3,0x86,0xe9,0x7,0x52,0xcb,0xd7,0x91, + 0x45,0x3,0x63,0xdd,0x57,0x44,0x99,0x41,0x9f,0xa6,0x97,0xa8,0x51,0x7d,0xff,0x15, + 0xed,0xe0,0x76,0x2b,0xa8,0x3c,0xb6,0xac,0x8,0xcc,0x7d,0x0,0xfd,0xe3,0xc7,0xc, + 0xaa,0xa1,0xb,0xaf,0xbd,0x9e,0xbe,0x38,0xdd,0x8c,0xf0,0x23,0x4d,0xfe,0xdd,0x26, + 0xf3,0x2f,0x17,0x82,0xa,0xc6,0xd6,0x9c,0x85,0xc1,0x8c,0x45,0xa2,0xfd,0x33,0x2d, + 0xf4,0xe6,0xe4,0xc9,0xf4,0xf8,0xe9,0xa7,0xd3,0xc6,0x8f,0xff,0x33,0xd5,0x8f,0x99, + 0xc0,0x63,0xea,0xdb,0x26,0x4e,0x34,0xf7,0x3d,0x86,0x68,0x84,0x32,0xa5,0xa7,0x8f, + 0xa7,0xe1,0xe7,0x5d,0x4e,0xf7,0xfe,0xf4,0xab,0xb4,0x84,0x94,0x70,0x38,0x5,0x42, + 0x2d,0xad,0xee,0xe9,0x10,0x5a,0xa4,0xac,0x1,0x90,0x7d,0x88,0xe9,0xd2,0xab,0x34, + 0xf7,0x12,0x2e,0xa3,0xe4,0xc7,0xb4,0xa7,0xb3,0x3e,0x78,0x28,0x7d,0xe6,0xeb,0xf3, + 0x98,0xfc,0x62,0xfa,0x73,0xe0,0x4f,0x2c,0x31,0x68,0x7d,0x45,0x7e,0x2c,0xe3,0xe5, + 0xc0,0x82,0x51,0x80,0x52,0xab,0xd1,0xee,0x1,0xc0,0x6c,0x44,0xd8,0xae,0x84,0xd9, + 0x51,0xfb,0x87,0x79,0x1b,0xe,0xc5,0x47,0xae,0xb9,0x6,0x4,0xbd,0x4d,0x7e,0x20, + 0xab,0x73,0x9a,0x5d,0x0,0x5,0x2e,0xd,0x8e,0x97,0xcf,0x2a,0xe,0xca,0xae,0xc0, + 0xc6,0x4d,0x61,0x56,0x20,0x2a,0x2,0x81,0x4c,0x99,0x36,0x3d,0xcf,0x3a,0xa6,0xcc, + 0x32,0x93,0x72,0x60,0xb6,0x1e,0x4,0x2,0x1,0x91,0x7d,0x1c,0x6b,0xdb,0xd3,0x42, + 0xad,0x65,0xd,0x34,0xe4,0x9b,0x28,0x84,0x81,0xb6,0x2b,0x59,0x8,0x94,0x25,0x5d, + 0xc,0x69,0x51,0x1,0x20,0xd8,0xc7,0x25,0x2e,0x4f,0x3f,0x9c,0xce,0x38,0xf6,0x22, + 0x1a,0x3b,0x58,0x93,0xa8,0xca,0xf2,0xf9,0xe3,0xfd,0xfd,0xf6,0xb4,0xe5,0x41,0x35, + 0x60,0xcc,0x12,0xac,0x84,0x15,0x66,0x30,0x92,0x3a,0x86,0x7c,0x38,0xe6,0x2e,0x54, + 0xfb,0x2d,0x2c,0x4f,0xd3,0xb2,0xf,0x1c,0x4b,0x37,0xff,0xe0,0x3f,0xa8,0x65,0x98, + 0x22,0xfa,0x86,0xd,0xe4,0xed,0xdc,0x41,0x3e,0x12,0x6c,0xe,0x9b,0xa1,0xcf,0x5, + 0x4b,0x8,0x64,0x4,0x94,0x75,0xf1,0xb5,0xcf,0x9e,0x4f,0x73,0x16,0x6c,0xa4,0xd3, + 0x2e,0xbe,0x84,0xe8,0x77,0x4f,0xf0,0x3d,0x3d,0xab,0x84,0x0,0x42,0x89,0x15,0x59, + 0xae,0x8b,0xaf,0xeb,0x23,0x98,0xce,0xc6,0x6,0xf5,0xfb,0x43,0xc7,0xe,0xa3,0xbb, + 0xfe,0xdf,0x63,0x34,0x6c,0xfc,0xf8,0x40,0xf3,0x6b,0xf2,0x93,0x95,0xe4,0xe3,0x71, + 0x55,0x20,0x9e,0x9e,0xdc,0x4b,0x85,0x3e,0xbe,0x41,0xa4,0x2a,0x70,0xbd,0x16,0x8, + 0xfe,0x56,0x2d,0x54,0xcb,0xea,0xea,0xe8,0xeb,0x87,0x1f,0x9e,0x15,0xe4,0x75,0xe3, + 0x2,0x8a,0x3,0xcc,0x27,0x98,0x4b,0xe3,0xb,0xa,0x45,0xfe,0xee,0xce,0x13,0x90, + 0x5d,0x13,0xb0,0x9d,0xb,0xe7,0xe2,0x20,0x64,0x8d,0xb,0x40,0x4d,0x40,0x4c,0x9b, + 0x65,0x66,0xe0,0xf1,0x50,0x87,0x5f,0x91,0x8,0x15,0x78,0x61,0x1,0x54,0x29,0xd3, + 0xb3,0xca,0x4c,0x89,0x25,0xf9,0x75,0x6d,0x43,0x94,0xa6,0xad,0x18,0x4a,0x6b,0xaf, + 0xbf,0x90,0x6e,0x49,0x2f,0x25,0x50,0xe0,0x3e,0x3a,0x9c,0x75,0x25,0x3e,0x2d,0xe6, + 0x83,0x75,0x50,0xe7,0x78,0xa5,0x35,0xcf,0x54,0xdf,0x26,0x28,0x2,0x7f,0xf8,0xfa, + 0x1b,0xe9,0xb2,0x39,0x97,0x50,0xed,0xa6,0x75,0x2c,0x54,0xaa,0x94,0x6f,0x1b,0x68, + 0x7d,0x74,0xdf,0x59,0x19,0x7f,0x7c,0xbd,0xe2,0x2,0x60,0xfe,0x3f,0xa5,0xfd,0x83, + 0xbe,0x7f,0x63,0x1,0x34,0xc8,0x14,0xe1,0x10,0x5c,0xea,0xba,0x17,0x28,0xed,0xbf, + 0xf4,0xa8,0xf7,0xd3,0x1f,0xce,0x3d,0x87,0x5a,0x86,0x9b,0x72,0x5f,0x63,0xc6,0x68, + 0x1e,0xa2,0xd8,0xc6,0xd8,0x9,0xfa,0x33,0x61,0x32,0xdf,0x67,0xcd,0x24,0xb5,0xad, + 0xa9,0x99,0xee,0xfa,0xe3,0xb,0x74,0xfa,0x6b,0xf3,0xe9,0x7b,0xdb,0x1e,0xa7,0x67, + 0x94,0xb5,0xf2,0x1c,0xad,0x54,0xa2,0xd,0xd1,0x80,0x32,0x75,0x2f,0x99,0xc8,0xa7, + 0x95,0x89,0xef,0xd3,0x2f,0x95,0xc9,0xff,0x87,0xf7,0xd,0xa1,0xd3,0xe7,0xff,0x94, + 0xfe,0xef,0x13,0x2f,0xd3,0x8,0x45,0xfe,0xb4,0x4c,0x4e,0x12,0x3c,0xf0,0x74,0x6c, + 0x7c,0x82,0xa7,0x4d,0x7f,0xce,0x75,0xe,0xff,0x4e,0x20,0x7f,0x64,0x22,0xd1,0x36, + 0x65,0x55,0xe0,0x18,0x65,0xfe,0x97,0xa9,0xe7,0x8f,0x3d,0x3b,0x7a,0x21,0x1d,0xba, + 0xf,0x10,0xbf,0x27,0xc9,0x5f,0x8,0x64,0xc5,0x0,0x82,0x81,0x34,0x53,0xa7,0x52, + 0xb5,0xf1,0x1d,0xa5,0x26,0xa0,0x2e,0xb,0x16,0x26,0x6,0xd9,0x8,0x22,0xeb,0x98, + 0x93,0x6e,0xbd,0xae,0x22,0x74,0xdb,0x53,0x4f,0xd2,0x95,0xca,0xa,0x18,0xa4,0xda, + 0xd9,0x5d,0x5b,0x1b,0xa4,0xb9,0xa6,0x52,0x1e,0x8d,0x50,0x2e,0xc1,0x17,0xbf,0xfd, + 0x6d,0x7a,0x6f,0x6f,0x33,0xd,0x53,0x24,0xaa,0xfd,0xd1,0x5b,0xb4,0xff,0xf4,0xe9, + 0x34,0xe5,0xed,0xdd,0xd4,0xa2,0xcc,0xd5,0xfa,0x59,0x83,0x69,0xfb,0xc8,0x91,0xd4, + 0x98,0x1a,0x45,0x47,0x1f,0x3f,0x9b,0xce,0x33,0x1a,0x9f,0xab,0xfd,0x4c,0x9b,0x46, + 0x83,0x8c,0xe6,0x1f,0xa2,0x7c,0x73,0x3b,0xe0,0x17,0xf1,0xfb,0x8d,0x5f,0x6f,0x4f, + 0x9,0x6,0x88,0xef,0xef,0x8b,0x0,0x50,0xc2,0xa3,0x55,0x9d,0xb3,0x75,0xf0,0x10, + 0x6a,0x3c,0xec,0x30,0x7a,0xed,0xac,0x73,0x74,0x1b,0x26,0x18,0x9a,0x19,0x35,0x52, + 0xb7,0xb5,0x4e,0x69,0xd6,0xc9,0xb5,0xda,0x17,0x57,0x82,0x60,0xf3,0xca,0x55,0x54, + 0x33,0x6d,0x2a,0x77,0xe0,0x8d,0x38,0xf8,0x50,0xba,0xfe,0x27,0xca,0xaa,0xd9,0xb3, + 0x8b,0xfe,0x67,0xfd,0x8f,0xe9,0xb8,0xf7,0x76,0xd2,0xf3,0xf7,0x2c,0xa1,0x31,0x75, + 0x8d,0x34,0x68,0x2f,0xd1,0x7d,0xde,0x66,0x2a,0x1b,0x52,0x45,0x83,0xa6,0x8d,0xa5, + 0xa6,0x7f,0xbf,0x84,0x7e,0x7a,0xdc,0x15,0x34,0x5c,0x91,0x1e,0x39,0x7c,0xbe,0x21, + 0x7e,0x98,0xef,0x6f,0x22,0xfb,0x7c,0xbe,0xa9,0xfa,0x7c,0xe6,0x9e,0x82,0x49,0x41, + 0x72,0x69,0x6f,0xf1,0xff,0x81,0x6d,0x3b,0x82,0xbf,0x89,0xcc,0x72,0x6b,0x57,0x2, + 0x72,0xa5,0xc1,0xa,0x8b,0x7c,0x84,0x6c,0x5f,0x22,0x3f,0x90,0xf8,0x6,0xec,0x32, + 0x53,0x83,0x71,0x75,0x20,0x7b,0x60,0x10,0x10,0x1b,0x1c,0x14,0x99,0x7e,0x4b,0x92, + 0x87,0x50,0x86,0x7b,0x43,0x3d,0x65,0xc6,0xd4,0x70,0x40,0x6e,0xcf,0xa4,0x49,0x41, + 0xf7,0x9c,0x68,0x6c,0x78,0xc3,0x52,0xc4,0xd3,0xee,0xea,0x5a,0x66,0xbd,0xa0,0x33, + 0xad,0xf1,0xfd,0xc0,0x20,0xab,0xd,0x6e,0x4f,0x7c,0xde,0xd8,0x44,0x1a,0x52,0xf0, + 0x83,0x8f,0x35,0xd7,0x67,0xcf,0x5f,0x8,0xf0,0xec,0x45,0x6b,0x56,0xb3,0x30,0xc2, + 0xbf,0xf9,0x65,0x29,0x7a,0x75,0xf6,0x31,0xf4,0xf8,0xc7,0x3e,0x46,0x2f,0x9f,0x73, + 0x6e,0x38,0x2a,0xb2,0xa5,0x59,0x6b,0xe1,0x72,0x23,0x50,0xc4,0x9d,0x40,0x31,0x4e, + 0x33,0x82,0xb0,0xc6,0x8c,0xd4,0x6b,0x36,0x93,0x8d,0x64,0x67,0xf9,0xe7,0x6,0x17, + 0x4f,0xe5,0xf6,0x32,0xb4,0x19,0x2,0xc9,0xcf,0xe8,0x83,0x11,0x9c,0xc4,0xb9,0x36, + 0xae,0xd7,0x2d,0xa6,0x4d,0xb7,0x5f,0x79,0x65,0x60,0xb7,0xd9,0x9a,0x3f,0xe2,0x2, + 0x6c,0xa8,0x53,0xae,0xce,0x36,0xfe,0x8e,0xc9,0x48,0xcf,0x1a,0x32,0x98,0xae,0xfd, + 0xf4,0xe5,0xfa,0x59,0x39,0x1,0xd0,0x6b,0x28,0x6,0xf9,0xbb,0xeb,0x2,0x24,0x4f, + 0xe,0xa,0x2d,0x2e,0x7d,0xe7,0x26,0xf2,0x1f,0x99,0x15,0x28,0xc1,0x2,0x88,0x43, + 0x66,0x15,0x82,0x59,0x3e,0x14,0x75,0xfa,0x55,0x7b,0xb0,0x2,0x44,0x10,0x60,0x12, + 0xf,0x7e,0xcf,0x29,0x14,0x4,0xb8,0xf2,0xa3,0x56,0xad,0x62,0xd,0x4f,0x64,0xd, + 0xe6,0x51,0x9f,0x6a,0x13,0xe4,0xc3,0xf1,0x49,0xdd,0x7c,0xb6,0xdf,0x1f,0x8f,0xfa, + 0x33,0xf9,0xd9,0x9c,0x2e,0x8b,0xcc,0x5d,0x28,0x53,0x97,0xcd,0xcf,0xb4,0x52,0xcb, + 0x41,0x7,0xd3,0x3b,0xc7,0x1c,0x43,0x7f,0x9d,0x31,0x43,0xdf,0x73,0xb9,0x8c,0xdf, + 0x57,0x9f,0xdd,0xca,0xef,0x1e,0x31,0xd2,0x64,0xdc,0x99,0xe7,0x92,0xd2,0xa4,0xa5, + 0xf5,0x8a,0x78,0x4a,0x0,0x40,0x73,0x8f,0x9a,0x56,0xcb,0x49,0x44,0x2d,0xed,0xd, + 0xdc,0xa1,0x50,0xe0,0xe1,0xfc,0xc8,0xf4,0x3,0xf1,0x47,0x2a,0x6b,0x20,0x18,0x64, + 0x84,0xa0,0xea,0xe6,0x8d,0x66,0x6c,0xb3,0xe9,0xea,0xb,0xe2,0x31,0x61,0xb7,0x1f, + 0x57,0x0,0x12,0xe2,0xa3,0x77,0x46,0xb4,0xbf,0x4c,0xea,0x6a,0x26,0x6,0x4d,0x22, + 0xbf,0x43,0xcf,0xa2,0xaf,0x69,0x7e,0x41,0xce,0x28,0x10,0xaa,0xd0,0x34,0x9a,0xbe, + 0x68,0x68,0xa2,0xa0,0x27,0x0,0xb0,0x67,0xa4,0xb1,0x93,0x6a,0xa4,0x9c,0xb8,0x22, + 0xa3,0x10,0x92,0xb5,0x33,0x72,0xe9,0xd5,0x76,0x98,0xeb,0xfc,0x72,0x62,0x5d,0x11, + 0x1d,0x44,0x46,0x8c,0x0,0x26,0x34,0xb4,0x3b,0x96,0xb6,0x79,0xf,0xd2,0xb7,0x91, + 0x45,0x7e,0x99,0x5a,0x3b,0xc1,0xfc,0xcd,0xf2,0xfb,0xe3,0xd7,0x67,0x5e,0xfe,0xac, + 0x12,0xe6,0xd8,0x67,0xc4,0x8,0x9a,0x7f,0xe4,0xfb,0xe8,0xb7,0x27,0x9f,0x4c,0x3e, + 0xc8,0xbf,0x65,0x33,0x7,0xfe,0x60,0xce,0xd3,0xbe,0x7d,0xca,0xcf,0x18,0xaa,0x77, + 0x5c,0xbf,0x56,0x9f,0x1f,0xa4,0x17,0xa2,0x8d,0x9d,0x18,0x4,0xec,0xb6,0xaa,0x36, + 0xb1,0xbe,0x63,0xf5,0x1a,0x2a,0x57,0xfb,0xe1,0x23,0x22,0x23,0xf2,0x31,0x71,0x7, + 0xec,0xbb,0x15,0xd3,0xa7,0x2b,0x52,0x6f,0x33,0x89,0x53,0x3c,0x73,0xd1,0x9e,0x3d, + 0x4a,0x70,0xb6,0x90,0xa7,0x5c,0xa3,0x54,0x53,0xa3,0xf5,0xcc,0xbd,0x88,0x7c,0xc7, + 0xc8,0xbf,0x88,0xef,0x6f,0x62,0x3,0xbe,0x49,0xfe,0x41,0x19,0xb0,0xb3,0x87,0xe, + 0xc9,0x7a,0x56,0xe,0x3d,0x7,0xaf,0x8f,0x7,0x5a,0x73,0x9a,0xb,0x3b,0xbe,0xf5, + 0x2d,0x1f,0x51,0x62,0xdc,0x40,0x95,0x7a,0x91,0xd8,0x9c,0xb4,0x6b,0x4,0xda,0x33, + 0xd3,0xc6,0xdc,0x0,0x29,0xbb,0x1d,0x1f,0x7f,0xcf,0x41,0x3a,0x23,0xc,0x6c,0xb7, + 0xc0,0xb6,0xe,0x44,0xcb,0x47,0x6,0xf3,0x98,0x8,0x3f,0x8e,0x4f,0x32,0xf7,0xed, + 0xc9,0x3f,0x38,0xea,0x6f,0x5d,0x17,0x9f,0xb7,0x22,0x1c,0x35,0x28,0xfe,0xbf,0x4c, + 0x59,0x8e,0xa4,0x1f,0x5f,0x69,0xdf,0x8f,0xdf,0x71,0x7,0x35,0xf,0xd6,0x53,0x90, + 0xa7,0xcc,0x24,0x9c,0x7e,0x75,0xa5,0xce,0x29,0xc0,0x54,0x61,0x63,0xcd,0x94,0x68, + 0x20,0xff,0x4,0x98,0xfc,0xbe,0xb6,0x14,0x6c,0x77,0xa0,0xab,0x16,0x35,0xac,0x9, + 0xb4,0xd5,0xb8,0x4f,0xb7,0xb3,0x6f,0x2f,0xcf,0x4f,0xe0,0x35,0x35,0xe9,0xe1,0xc9, + 0xad,0x86,0xfc,0xe5,0xd1,0x8c,0xc6,0xf8,0x7c,0x80,0x70,0x13,0x38,0xf8,0xa7,0x4, + 0x80,0x4,0xff,0x9e,0xfa,0xf2,0x97,0xf9,0xf7,0x24,0xed,0xef,0x5c,0x80,0xe2,0x2, + 0xdc,0x31,0x13,0x78,0x14,0xed,0x1c,0x5,0xef,0x5,0x10,0xc,0xbf,0xe1,0x6,0xf, + 0xae,0x40,0x10,0xd8,0x50,0x4b,0x9e,0x27,0x40,0xac,0x80,0xd6,0xb0,0x18,0x46,0xdc, + 0xa,0x10,0xb,0x20,0x3e,0xfe,0x1e,0xe4,0x95,0x24,0x1d,0x9,0xde,0xf1,0xc7,0xb2, + 0xe,0xa0,0xe5,0xb1,0x4d,0xcc,0x7c,0x8e,0x19,0x20,0xc2,0xaf,0x34,0x63,0x9c,0xfc, + 0x11,0x98,0xf3,0xa,0x72,0x92,0x1f,0x89,0x42,0xa2,0xfd,0x4d,0xf0,0xed,0xc7,0xef, + 0x7b,0x1f,0x93,0x9f,0x9f,0x9c,0x99,0x61,0x18,0xd9,0x7f,0xde,0xbe,0x46,0xf2,0x98, + 0x37,0xea,0x19,0xd4,0x1b,0xe1,0x87,0x59,0x7a,0x3c,0xb3,0x9f,0xb1,0x6e,0xb8,0x57, + 0xa1,0x2c,0xf6,0x49,0x77,0xe2,0x3,0x72,0xa2,0x5b,0x6f,0xf0,0x10,0x7d,0x6c,0xd5, + 0x20,0xf2,0x2a,0xab,0xb8,0x9a,0x70,0x66,0xe8,0x50,0xca,0xc,0xaa,0xc0,0x80,0xfe, + 0xec,0x4c,0x3e,0x9b,0xfc,0xbc,0x12,0xa,0x67,0x7b,0x4f,0x67,0xfa,0xf7,0xe,0xfa, + 0x43,0xcf,0x4b,0xbb,0xf6,0x9,0x24,0x18,0x84,0x40,0x83,0x71,0x5,0x64,0xa6,0xa0, + 0x60,0x82,0x50,0x4b,0x8,0x44,0x60,0xb2,0xeb,0x38,0x66,0x20,0x2,0x61,0x9d,0x26, + 0xa4,0x90,0xd4,0x33,0x2f,0x65,0x64,0x69,0xcc,0x7b,0x5e,0x87,0x96,0x56,0xcb,0xa1, + 0x75,0xc6,0xdc,0x36,0xdf,0x65,0x5f,0x3b,0xda,0xcf,0xeb,0x1c,0xa8,0x2b,0xf,0xba, + 0xfb,0x38,0x27,0x21,0x46,0x7e,0x7d,0xc7,0x29,0x1e,0xb6,0x8c,0x32,0xe6,0x8f,0x2b, + 0x7,0xe3,0x5d,0x65,0xfe,0x2f,0xba,0xec,0x32,0xfe,0xc9,0x37,0xc3,0x89,0x99,0xd4, + 0x66,0x16,0x1e,0xf,0xd3,0x81,0x73,0x6f,0x0,0x85,0x3e,0x7a,0xe4,0x21,0x59,0x2, + 0xd7,0xb7,0x3e,0xfc,0x5b,0x7b,0x4f,0xd7,0x1c,0x2b,0x1f,0xec,0x9c,0xd1,0xbe,0xbe, + 0x7,0x61,0x50,0x5e,0xa1,0x7,0x23,0x29,0xc1,0x97,0xda,0xd7,0x1c,0x36,0x88,0xb9, + 0x0,0x94,0xe6,0x97,0xea,0xbf,0x4c,0x7e,0x1c,0xe,0xe1,0x8a,0x61,0xda,0x88,0xfc, + 0x9b,0xbf,0xb,0xb4,0xbf,0x23,0x7f,0xef,0xa2,0xaf,0xfa,0xfe,0x82,0x76,0x53,0x81, + 0x87,0x7d,0xed,0x6b,0xde,0x5f,0x6e,0xbe,0xd9,0x9f,0xd1,0xaa,0x33,0xfe,0x84,0xf8, + 0x76,0x52,0x90,0x4,0x9,0x81,0xc0,0x15,0x90,0x80,0x95,0x31,0xa5,0x25,0x65,0x55, + 0xa6,0xe4,0x82,0x30,0xc8,0x4c,0x98,0xc0,0xc4,0xcd,0x4c,0x9a,0x18,0x2c,0xf3,0x41, + 0xb0,0xaf,0x68,0x7c,0x4,0xfc,0x24,0x60,0x29,0x64,0xb4,0xb2,0xfd,0x82,0x81,0x4a, + 0x5e,0x79,0x20,0xee,0xc4,0x2,0x78,0x6b,0xd4,0x28,0x7a,0xf0,0xac,0x33,0xa9,0x49, + 0x69,0xd9,0x48,0xe4,0x1e,0x24,0x1b,0x3a,0x98,0x52,0xbb,0xf6,0x70,0x9b,0xa9,0xad, + 0x3b,0x28,0x33,0xae,0x46,0xc7,0x0,0x60,0xee,0x4b,0xd7,0x9c,0x24,0x3,0x25,0xcd, + 0xd4,0x23,0xc4,0x4b,0x12,0x2,0x66,0xba,0xae,0xc8,0x75,0xa3,0xb7,0x61,0xdb,0x36, + 0x3d,0x99,0x7,0x82,0x77,0xcd,0x8d,0x3c,0x4f,0x40,0xaa,0xd5,0x54,0x60,0xe2,0x48, + 0x69,0x2b,0x65,0xea,0x37,0x65,0x6b,0x7e,0xc9,0x6c,0x34,0xcf,0x39,0xa5,0x84,0xa6, + 0x23,0xbf,0x43,0x3e,0xc8,0xcb,0x5f,0x40,0xb7,0x20,0x2c,0x81,0x94,0x7a,0xf1,0x38, + 0x37,0xc0,0xae,0x1b,0x68,0x66,0xc,0xf6,0x37,0x6d,0xa,0x7a,0x6,0xc2,0xf2,0xe1, + 0x39,0xd0,0xce,0xb0,0x63,0x5c,0x51,0xdb,0x84,0x9,0x41,0xb7,0x63,0xbc,0xf7,0x21, + 0x80,0xb5,0x9e,0x35,0x57,0x81,0x1,0xd7,0x2c,0x94,0x7d,0x61,0x59,0xac,0x5e,0xc3, + 0x32,0xe0,0x31,0xbf,0x95,0x97,0x77,0x9f,0x7e,0x3a,0xfd,0xf9,0x4b,0x5f,0xd2,0xfb, + 0x88,0xf6,0xb7,0xaf,0xc5,0x3e,0x1f,0x66,0xe4,0x45,0xe5,0x1d,0x90,0x91,0x27,0xe7, + 0x50,0x17,0x3a,0x71,0xb2,0x4e,0xd1,0xd,0x26,0xe9,0xc8,0x44,0x8f,0x8d,0xb7,0x11, + 0xbf,0xf6,0x75,0x6b,0x42,0xa1,0x85,0x67,0x3a,0x74,0x3f,0xe5,0xbf,0x6f,0xa1,0x54, + 0x43,0x63,0xb8,0xd,0x6e,0x58,0x53,0x13,0xf9,0xdb,0xb6,0x6b,0xa2,0x9b,0xfd,0x3, + 0xf2,0x4b,0xb7,0x2c,0xfe,0x53,0xbe,0x7f,0x7a,0xcd,0x1a,0x7a,0x52,0xdd,0x13,0x4f, + 0x20,0x89,0x49,0x52,0x9d,0x9f,0x5f,0x30,0xdc,0x78,0xe3,0x8d,0xb4,0xc8,0x1a,0xd4, + 0x93,0xf,0x8a,0x6d,0x1,0x14,0x2d,0x6,0x60,0x63,0x3f,0x65,0x9,0x60,0xa8,0x70, + 0x6,0xda,0x48,0xc8,0xf,0x8d,0x6e,0xf5,0xc,0x48,0x76,0xa0,0x26,0xa3,0x29,0xa2, + 0x55,0xbf,0xd1,0x2c,0xa3,0x53,0x89,0x43,0x58,0x44,0x92,0x59,0x64,0xdd,0x14,0xbc, + 0x94,0x91,0x87,0x32,0x45,0x39,0xa3,0xcc,0xd2,0x72,0x76,0x5b,0x22,0x6c,0xd2,0xe1, + 0x68,0x37,0x10,0x1f,0x1f,0xae,0x59,0xc8,0xd7,0xaa,0xf6,0x53,0xe4,0x4f,0x9b,0xfe, + 0x7a,0x26,0xff,0x19,0x67,0x44,0xc8,0x9f,0xfd,0x64,0x62,0x8f,0x46,0xb5,0x83,0x41, + 0x38,0xa9,0x2d,0x26,0x11,0xa7,0xcc,0x1a,0x9a,0x8b,0x25,0x3e,0xf6,0x7d,0x24,0xb5, + 0x61,0x13,0x5f,0x80,0xac,0x42,0x5f,0xff,0x96,0x52,0x16,0x4d,0xaa,0xa9,0x99,0x32, + 0x83,0x7,0x19,0xad,0xef,0x73,0x0,0xd0,0xdf,0xb3,0x97,0x52,0x3c,0x47,0x83,0xcf, + 0x89,0x3e,0x41,0x77,0x9f,0x2d,0xf0,0x24,0xe9,0x47,0xdd,0x8b,0xbc,0x74,0x8e,0xfc, + 0x85,0x3,0xc8,0x5f,0x8a,0xe8,0xd4,0x1b,0xc2,0xee,0x80,0x7a,0xa9,0xca,0xb8,0x6c, + 0x16,0x85,0xbd,0x3,0x26,0xf2,0x9e,0xa5,0x89,0x6d,0x4d,0x1f,0xab,0x2a,0x14,0x56, + 0x19,0x4e,0xb0,0x16,0x6c,0xcd,0x99,0xa0,0x45,0x23,0x93,0x93,0x5a,0xbf,0x9,0xe9, + 0x1b,0xde,0x13,0xed,0xa8,0x89,0x6f,0x56,0xc9,0x53,0x2,0x60,0xc1,0xaa,0x15,0x6c, + 0xfa,0x7f,0xf5,0xbf,0xfe,0xcb,0x3c,0x1,0xd3,0xa7,0xde,0x99,0x7,0x61,0x26,0xe6, + 0xd0,0x93,0x72,0x24,0xc4,0x42,0x64,0xc8,0x6e,0x47,0x85,0x3b,0xcc,0xf5,0x73,0x5d, + 0xbf,0xd1,0x23,0x29,0x25,0x24,0x96,0xeb,0x32,0x16,0x40,0x66,0xe3,0x66,0x5e,0xf7, + 0xd6,0xaf,0xc9,0xba,0x6f,0xf6,0xfb,0x51,0xa1,0x49,0x1d,0x5b,0xae,0xb4,0x7f,0xcb, + 0x3,0xf,0x74,0xe6,0x4e,0x1c,0xf2,0x84,0xa4,0xc8,0xf,0x48,0xb,0x40,0x80,0x7a, + 0x1,0xb0,0x4,0x5e,0x47,0x17,0x95,0xfa,0xfe,0xf7,0xda,0x5a,0xd6,0xd0,0xc8,0xfd, + 0xf,0x4f,0x6f,0x11,0xd7,0x9c,0xc2,0x1b,0x33,0x86,0xa4,0x70,0x5,0xb4,0xbf,0xd4, + 0x14,0x84,0x85,0x10,0xb5,0x1c,0xe4,0x90,0x6c,0x53,0x5f,0x7e,0x97,0x63,0x6c,0x8d, + 0xf,0x4,0xe4,0x5f,0xb1,0x5a,0x13,0x5f,0x11,0x8f,0xc9,0xaf,0x8e,0x2f,0x33,0x6d, + 0x2c,0x54,0xe4,0x7f,0x58,0x69,0xd2,0xf7,0xaa,0x2a,0x69,0xb0,0xf2,0xb7,0x3b,0x22, + 0x7f,0x64,0xae,0xbd,0x60,0xa3,0x21,0x3e,0x2c,0x82,0xad,0xdb,0x75,0x76,0x5e,0x30, + 0x36,0xdf,0xc0,0xb6,0xc,0x92,0x20,0xd6,0x84,0x39,0x9e,0x47,0xf7,0x9,0xf9,0x3, + 0x4b,0x48,0x7,0x7,0x85,0xfc,0x24,0xe4,0xb7,0xce,0xc5,0x66,0x3f,0xe2,0x8,0xca, + 0xf4,0xaf,0x50,0x7e,0xbf,0x23,0xbf,0x43,0x67,0xd1,0xb9,0x7a,0x0,0xa4,0x85,0x0, + 0x2c,0x1,0x16,0x2,0xea,0x45,0xdc,0x77,0xcc,0xd1,0x34,0xe8,0xe5,0xbf,0xb2,0x2b, + 0x90,0x82,0x69,0x9f,0xd1,0xc9,0xbd,0xd,0x2b,0x56,0x6,0x65,0xc3,0x79,0x4,0x5e, + 0x99,0xd5,0x87,0xd,0x8d,0x99,0x2a,0xe3,0xda,0x82,0xf6,0xf0,0xe2,0xdc,0xeb,0xc6, + 0x95,0x40,0xfb,0xaa,0x1d,0x6e,0xcf,0x44,0xbe,0xb5,0x9f,0xaf,0xbb,0xe4,0xf6,0x3d, + 0xbb,0x58,0xb7,0xcf,0x24,0xd2,0x91,0xf5,0x32,0xa3,0xa1,0xe1,0xf7,0xbf,0xa1,0x34, + 0xff,0x84,0xc3,0xe,0xa7,0xe3,0xaf,0xbc,0x92,0x2e,0xa9,0xa8,0xa0,0x33,0x8c,0xe6, + 0xce,0xec,0xde,0x43,0xb4,0x63,0x27,0xf,0xf8,0x11,0xd2,0x73,0x82,0x8d,0x21,0x5a, + 0x64,0xb0,0xd,0x34,0xb6,0x22,0x2e,0x84,0x0,0xcf,0xc6,0x83,0xd8,0x88,0xfa,0x1e, + 0x81,0x99,0xb5,0x37,0x20,0x37,0x7e,0x8f,0x5b,0x32,0x96,0xf9,0x2e,0xc7,0x7,0x6d, + 0x92,0x55,0xde,0x1b,0xb1,0xb,0x9b,0xfc,0x6,0x3e,0x4,0x8f,0x29,0xfb,0x7d,0xd3, + 0x88,0x11,0x74,0xd3,0xf,0x7f,0x98,0xc7,0x5f,0xcf,0xc1,0x21,0x8a,0x2e,0xa5,0x29, + 0xb1,0x10,0x50,0xda,0xe9,0x79,0xa5,0x99,0xde,0x68,0x6b,0xa3,0xbf,0x1d,0x7d,0x14, + 0x5b,0x2,0xac,0xe9,0x95,0x46,0xa,0x4d,0xf1,0x15,0xc6,0x1f,0xd7,0x9,0x3d,0x41, + 0x50,0x8e,0xb5,0x98,0x8,0x6,0xdd,0x6f,0xce,0xeb,0xa2,0xd9,0x36,0x6e,0x9,0xe6, + 0x20,0x64,0x41,0x90,0xf2,0xa2,0x5a,0x16,0x5d,0x93,0x76,0x5b,0x10,0xa,0xab,0xc5, + 0x3c,0xd6,0xf1,0xfc,0x54,0x2a,0xad,0xa4,0x9b,0x26,0xff,0xe3,0x86,0xfc,0xd0,0xfc, + 0x20,0xff,0x90,0xa1,0x43,0xa9,0xa2,0xb2,0x92,0x9e,0x41,0xe2,0xcf,0xc2,0x85,0x44, + 0x6f,0x2e,0xd5,0x7d,0xe7,0xe8,0x5a,0x33,0xd7,0xc3,0x4,0xb4,0x7c,0xf9,0x88,0x35, + 0x20,0x42,0x0,0x75,0x1,0x44,0x48,0x98,0xd2,0xdc,0x81,0x75,0x60,0x93,0x5f,0xda, + 0x10,0x97,0x1,0xfb,0xa9,0x63,0xf9,0x78,0xcb,0x95,0x88,0x8,0x12,0x9,0x5c,0xc6, + 0x83,0x7d,0xca,0x7a,0xf2,0x4d,0xef,0x4a,0xea,0xef,0xff,0xa0,0x9b,0x64,0xd4,0xa2, + 0x83,0x43,0x17,0xd0,0xed,0x28,0x11,0xac,0x81,0x1f,0x2f,0x5d,0x4a,0x77,0x1f,0x79, + 0x24,0xd,0xfa,0xdb,0xdf,0x75,0xd4,0x5a,0x99,0xd7,0x4d,0xca,0x2,0x60,0xbf,0x9, + 0x2e,0x81,0xf4,0xb1,0x61,0xa0,0x8b,0xa2,0x65,0xf5,0x1,0xb5,0x61,0x90,0xae,0x93, + 0x8,0x35,0x7e,0x9c,0xf4,0x92,0xc0,0xa3,0xa7,0x27,0xe7,0x7c,0xfb,0xc9,0x93,0xd8, + 0xec,0x5f,0x6a,0xc8,0xff,0xc9,0xff,0xb9,0x9f,0x77,0x8f,0xf,0x88,0x99,0x23,0xa6, + 0xf3,0x68,0x45,0xc4,0xf1,0xc9,0x53,0x70,0x45,0x66,0xde,0x89,0xf,0xbf,0xcd,0x7, + 0x86,0xe8,0x62,0x35,0x24,0xf5,0xe,0xc4,0x33,0xfb,0x50,0xd8,0x83,0xc7,0xf6,0x9b, + 0x20,0x21,0x5f,0xbb,0x29,0x4,0x92,0x52,0xfe,0x3e,0xba,0xfa,0xc4,0xc7,0x74,0x95, + 0x7e,0x8a,0x8b,0x52,0x8d,0x1,0x74,0xda,0x5,0x88,0x3,0xd6,0xc0,0xbf,0x7c,0xec, + 0x63,0x3e,0x2c,0x81,0x7b,0xfe,0xf2,0x1c,0x1d,0xd0,0xd8,0x44,0xff,0xae,0xcc,0xec, + 0xca,0xfd,0xa7,0x51,0xd3,0x72,0x9d,0x23,0x9f,0x61,0x62,0x92,0x4e,0x55,0x55,0xa4, + 0x6d,0xc0,0xbb,0xc,0xf3,0x7d,0x39,0xb4,0x5b,0xc6,0x8,0x86,0x70,0xa6,0xa1,0x24, + 0xe1,0x60,0x6b,0xfc,0xea,0xa9,0xb5,0x6c,0xee,0x23,0xa8,0xc7,0x42,0x0,0x9,0x34, + 0x65,0x69,0x53,0x49,0x27,0xcd,0x6d,0x3e,0xde,0xd6,0xcc,0x53,0x95,0x3d,0x68,0x66, + 0x38,0xf6,0x4f,0x3c,0x29,0xf1,0xfa,0x21,0xc,0x9e,0xb9,0xe8,0x22,0xba,0x55,0x59, + 0x2,0xb,0xb7,0x40,0x3,0x9b,0x6e,0x36,0x5f,0x93,0xd4,0x1f,0x37,0x39,0x20,0x23, + 0x20,0x56,0x82,0x98,0xe8,0xec,0x36,0x20,0x27,0xdf,0x5a,0x26,0x2,0xc2,0x43,0x26, + 0xf0,0xb4,0xd3,0xa8,0xed,0x63,0x62,0x42,0x81,0xb5,0x3f,0x67,0x1b,0x92,0xce,0xef, + 0x37,0x82,0xeb,0xf9,0x4b,0x2e,0xa1,0xe6,0xe6,0x66,0x72,0x70,0xe8,0x2e,0xa,0xd6, + 0x4f,0xf4,0x83,0x6f,0x7d,0xcb,0x7f,0xf5,0xf5,0xd7,0xe9,0xf3,0x87,0x1f,0x4e,0xf7, + 0xde,0x7b,0xf,0x9d,0xb7,0x6e,0x3d,0xcd,0x9d,0x73,0x32,0xb5,0xac,0x5a,0x2d,0x61, + 0x1,0x6a,0xb,0x34,0x76,0x2a,0xec,0x15,0x10,0x12,0xcb,0x5,0x4d,0x9e,0xa2,0xdd, + 0x83,0xd8,0x36,0xbf,0x6e,0x4d,0x74,0xdf,0x80,0x2c,0x9a,0x14,0x71,0xad,0xf,0xd8, + 0xe4,0xff,0xd4,0xe7,0x3e,0xc7,0xeb,0x90,0xe4,0xb9,0xba,0xc7,0x6e,0x7b,0xfc,0x71, + 0x5a,0xb8,0x77,0xaf,0xfe,0x62,0xfc,0xeb,0x60,0xd7,0x8c,0x1e,0xa6,0x1b,0x9f,0x70, + 0xa3,0xd0,0x88,0x98,0xfc,0x98,0x74,0x5,0x55,0x7d,0xe0,0x22,0x18,0x1,0x0,0x61, + 0x25,0x80,0xf0,0x7a,0xf6,0xd9,0x67,0x79,0xdd,0x59,0x0,0xc5,0x45,0xa9,0x5a,0x0, + 0x5,0xed,0x28,0x86,0x10,0x0,0x31,0x5f,0xbb,0xe7,0x6e,0xfe,0xe,0x6b,0x60,0xd6, + 0xd6,0xad,0x74,0xd6,0x94,0xa9,0x8a,0xc0,0x6b,0xc9,0xcf,0x41,0xe0,0xee,0x64,0x4c, + 0x43,0xe3,0x1b,0xaf,0x9a,0x7,0xf6,0x60,0x1d,0xfe,0xfe,0x3b,0xca,0xe4,0xf7,0x3f, + 0x34,0x87,0x8e,0x3a,0xec,0x30,0xfe,0x75,0x4b,0x43,0x3,0xff,0x11,0x4f,0x3b,0xed, + 0x34,0x7d,0xd6,0x1c,0x59,0x72,0x78,0x20,0xb7,0xc6,0x5,0x41,0x2a,0x15,0x78,0x31, + 0x6c,0x19,0xb4,0x19,0xeb,0x0,0x53,0x70,0x63,0x2,0xe,0xb3,0x44,0x16,0x9f,0x9f, + 0x60,0xda,0xc7,0xdb,0xf7,0x63,0xdf,0x49,0xb6,0xd9,0x82,0x9,0x84,0xc7,0xb9,0x4d, + 0x0,0x31,0x57,0x76,0x9f,0x13,0x0,0x3d,0x83,0x52,0x15,0x0,0xdd,0x76,0x1,0x6c, + 0x7c,0xe5,0x86,0x1b,0xf8,0xe4,0x2c,0x8,0x94,0x6,0x7b,0xed,0xae,0x3b,0xe9,0x3d, + 0xa5,0x85,0x97,0xee,0xdd,0x4d,0xb3,0xfc,0x56,0x3a,0x5f,0x99,0xee,0x2d,0xf0,0x85, + 0x53,0xa9,0x88,0x20,0xb0,0x3a,0xb5,0x2,0x64,0x9,0x5,0xf3,0x73,0xca,0xae,0x53, + 0xa0,0x90,0xae,0xd5,0x5a,0x1e,0x5a,0x1f,0xed,0x4,0x5a,0x5f,0x91,0xff,0xaa,0x59, + 0xb3,0x68,0x7e,0x53,0x13,0xb7,0x25,0x7f,0xc0,0x8e,0xd2,0x63,0xf1,0xeb,0xf5,0x67, + 0x9e,0x49,0xd7,0x93,0xb1,0x8,0xac,0xba,0xfa,0x54,0x33,0x4a,0x8f,0xb6,0x2b,0x4b, + 0x31,0xd9,0xbd,0x8d,0xeb,0xf4,0xe3,0x86,0x9f,0xce,0xe3,0x7e,0x53,0x66,0xf0,0x10, + 0x65,0x33,0xdd,0x42,0x64,0xf8,0x0,0xa6,0xf5,0x42,0x99,0x2f,0xf8,0xf6,0x5c,0xee, + 0xcb,0xb,0x2a,0x11,0x61,0x9b,0x10,0x3f,0x9f,0x6b,0x77,0x70,0xe8,0x2c,0xa,0x2a, + 0x0,0x4,0xb6,0x20,0x78,0xed,0xc7,0xf7,0xd2,0xbb,0x8a,0x50,0xef,0x3d,0xfb,0xc, + 0xbd,0xf1,0xfa,0x6b,0x4c,0xf8,0x43,0x36,0x6f,0xe,0xa7,0xf1,0x6a,0x23,0x9e,0x4e, + 0xcc,0x76,0x15,0x7c,0x93,0xb2,0x1b,0x31,0xf3,0x85,0x35,0x1,0xf1,0x75,0xb0,0x6e, + 0x81,0x31,0xf7,0xdf,0x4a,0xd0,0xfa,0x8f,0x40,0xeb,0x1b,0x1,0xd3,0x95,0x2,0x98, + 0x11,0x41,0xa0,0x2c,0x2,0x44,0xdd,0x33,0xa8,0x98,0x8c,0x21,0xcd,0x30,0xcb,0x25, + 0x9,0xc7,0xc0,0xb,0xfe,0xb3,0x37,0x44,0x81,0x28,0x3e,0x77,0x7f,0x9a,0x9f,0x79, + 0xdd,0x90,0xbf,0xc,0xed,0x9b,0xfd,0x2e,0x3b,0xf6,0x58,0xfa,0xe4,0x71,0x7a,0xc2, + 0x13,0x47,0x7c,0x87,0x62,0xa1,0x28,0x2,0x40,0x0,0x41,0x70,0xe3,0x8d,0x37,0xfa, + 0x23,0x2b,0x2b,0xe9,0x15,0xc5,0xee,0xb7,0x8d,0xef,0xff,0xce,0xe2,0x45,0xfc,0xf2, + 0x1f,0xa8,0x5c,0x84,0x77,0x6,0x55,0xd3,0x5b,0x10,0xc,0x24,0xc1,0xc2,0xc,0x1d, + 0xaa,0xac,0x5,0x8,0x5,0x1,0x7a,0x14,0x10,0x54,0x4,0x1e,0x7a,0xe6,0x69,0x2d, + 0x3c,0x90,0xd1,0x57,0x53,0xa3,0xfc,0xe3,0x90,0xf8,0x47,0x2a,0xe2,0xe3,0x37,0x98, + 0xfb,0xd2,0x8d,0x26,0x37,0xd8,0x1d,0x37,0x3,0x82,0xe0,0xeb,0xe5,0xe5,0xd4,0xd2, + 0xd2,0x42,0xa7,0x9a,0xfe,0x76,0x6e,0xf,0xe7,0x90,0xf2,0xdc,0x14,0x5a,0x9,0xc, + 0x31,0xe1,0xe3,0x10,0xc2,0x63,0xc0,0xf,0x84,0x9a,0xda,0xe7,0x9c,0xc1,0x83,0x69, + 0x81,0xfa,0xa9,0xf5,0xc8,0x23,0xf8,0xb8,0xa7,0x2f,0xbc,0x50,0xb7,0xe7,0x88,0xef, + 0x50,0x64,0x14,0x55,0x0,0x8,0xb6,0x29,0x33,0xbc,0xf6,0xa0,0x83,0x78,0x1d,0x3e, + 0xcb,0x8f,0x6e,0xbb,0x8d,0x5e,0x79,0xe5,0x15,0x7a,0x9b,0xaf,0xa0,0x8c,0xde,0x86, + 0x8f,0xbb,0x58,0xfb,0x56,0xf0,0xa1,0x97,0xf,0x9a,0xc4,0x42,0x1,0xc2,0x1,0x38, + 0x68,0x5f,0x3,0xbd,0xbb,0xfc,0x5d,0x3a,0x10,0xcb,0xc9,0x93,0xb4,0xf6,0xcc,0x64, + 0x74,0xcf,0xa2,0x22,0xfe,0xfb,0x15,0xf1,0x21,0x50,0x6c,0xe2,0x3,0x5d,0x4a,0x72, + 0xc8,0x1,0x90,0x1f,0xc0,0x40,0x9b,0xea,0xea,0x6a,0x6a,0x50,0xe7,0x12,0x61,0x20, + 0xe7,0x69,0xad,0xad,0xd,0x82,0x75,0x1c,0xb8,0x33,0x44,0x4f,0x1a,0x6b,0x70,0xac, + 0xda,0xf6,0xa2,0x11,0x10,0xb,0x30,0xcf,0xa0,0xda,0x57,0x88,0xef,0xe0,0xd0,0x53, + 0xe8,0x11,0x1,0x20,0x85,0x3f,0x5,0x5f,0xbc,0xfe,0xfa,0x60,0xfd,0x47,0xb7,0xdc, + 0xc2,0xbf,0xbf,0x6a,0xf5,0x8d,0x7b,0x4a,0x18,0xbc,0xab,0xb4,0xba,0xf8,0xd3,0xef, + 0x2a,0xc2,0xc1,0x32,0xc0,0xb6,0x8c,0xe9,0xce,0x83,0xb6,0xdf,0x6e,0xfc,0x7b,0x2c, + 0x19,0x45,0x20,0x7e,0x12,0x40,0x7e,0xe0,0x49,0x19,0x4c,0xa4,0x70,0x9a,0x12,0x6, + 0x28,0xc0,0x19,0xf4,0x30,0xd4,0xc5,0xd2,0x88,0x8d,0x36,0x6f,0x35,0x93,0xae,0xbc, + 0x68,0xf2,0xfc,0x11,0xe4,0x73,0xc4,0x77,0xe8,0x2d,0xf4,0x88,0x0,0x68,0x8f,0x90, + 0x87,0x1b,0x3f,0xf7,0xc8,0xe3,0x8f,0xf,0x37,0x7e,0xf6,0xb3,0x59,0xfb,0x9,0xb1, + 0x9e,0x7a,0xea,0x29,0x5e,0xa,0xe9,0x83,0x58,0x42,0x7,0xe7,0x29,0x34,0xe4,0x7a, + 0xc4,0x4c,0x7f,0xc2,0x12,0x6,0x1d,0x1d,0xe7,0x4c,0x7b,0x87,0xbe,0x82,0x1e,0x11, + 0x0,0xc5,0x80,0x6d,0x55,0xf4,0x24,0xf1,0x83,0xf3,0x4b,0x1e,0x43,0xcc,0xbc,0xb7, + 0x5,0x43,0x12,0xd9,0x4b,0x8d,0xfc,0xe7,0x9c,0x73,0x4e,0x8f,0x9e,0x6f,0xc1,0x82, + 0x5,0x3d,0x7a,0xbe,0x52,0x47,0xd1,0xb9,0x83,0xe8,0xbb,0xfd,0xc9,0xf5,0x3b,0xc8, + 0xd2,0xde,0x27,0xab,0xbd,0x2e,0x5e,0x47,0x47,0xe7,0xc9,0xf7,0x93,0xab,0x3d,0x81, + 0xac,0x17,0xea,0x7c,0x1d,0x3d,0x97,0xde,0x40,0x4f,0x93,0xbf,0xb7,0xce,0x59,0xca, + 0xe8,0xd,0xe5,0xe9,0x50,0x2,0xe8,0x4d,0x22,0x3a,0x21,0x50,0x38,0x38,0x1,0xe0, + 0xd0,0x69,0x38,0x2,0x96,0xe,0xfa,0x6d,0xc,0xc0,0xa1,0x73,0xe8,0x9,0xd2,0x16, + 0xcb,0x3f,0x4f,0xba,0xf6,0x42,0xdf,0xcf,0x40,0x8d,0x2d,0x38,0xb,0x60,0x0,0xa0, + 0x3f,0x93,0xbf,0xa7,0x30,0x50,0xad,0x1a,0x27,0x0,0x4a,0x1c,0xa5,0x40,0xfe,0x9e, + 0x12,0x2e,0x3,0x51,0x8,0xf4,0x3b,0x1,0x30,0x67,0xce,0x9c,0x5e,0x39,0xd6,0x21, + 0x19,0x3d,0x45,0xce,0xfe,0x6e,0x61,0xf4,0x55,0xf4,0xcb,0x18,0x80,0x23,0x72,0xfe, + 0x98,0x3d,0x7b,0x76,0x51,0xdb,0xef,0x49,0x62,0xe2,0x5c,0xc5,0x1c,0xf6,0x7c,0xf2, + 0x29,0xa7,0xc,0x38,0x41,0xd3,0xef,0x2c,0x0,0x87,0xbe,0x85,0x9e,0xac,0x43,0xe0, + 0x6a,0x1e,0x14,0x1e,0x4e,0x0,0x94,0x38,0x7a,0x82,0x34,0xa5,0x70,0xe,0x4c,0xfc, + 0xf1,0xa1,0x93,0x92,0xcb,0xc6,0x95,0x32,0xfa,0xa5,0xb,0xe0,0xd0,0x39,0x80,0x3c, + 0xcf,0x76,0xb2,0x92,0x4d,0x47,0x78,0xda,0x8c,0xc9,0xe8,0x9,0xe4,0x22,0x3f,0x4c, + 0xf6,0x42,0xa1,0x2b,0xf5,0x22,0x4a,0x1,0xfd,0x52,0x0,0xd8,0x31,0x0,0xfb,0xe5, + 0xc8,0x37,0x36,0xd0,0xdf,0x8f,0xef,0xa,0xa,0xa9,0xdd,0x92,0x84,0x49,0x4f,0x9b, + 0xe7,0xd0,0xd8,0x3,0x95,0xb4,0x85,0x44,0xbf,0x7b,0x82,0xed,0x91,0x24,0x9f,0xfa, + 0x6b,0xfd,0xfd,0x78,0x7,0x47,0xfe,0x42,0xc2,0x3d,0x45,0x87,0x4e,0x3,0xd6,0x44, + 0x6f,0x4d,0x96,0xe9,0xc8,0x5f,0x58,0xf4,0x4b,0x17,0xc0,0xa1,0xf7,0x1,0x12,0x16, + 0x3a,0xae,0x90,0xef,0x79,0x1d,0xa,0x7,0x27,0x0,0x6,0x8,0xae,0x7b,0xfe,0x97, + 0xbc,0xfc,0xde,0xe0,0x4f,0xe9,0xd,0x47,0xb4,0x75,0xbb,0xcd,0x81,0x18,0x35,0x2f, + 0x35,0x38,0x71,0x3a,0x0,0x20,0xe4,0x8f,0xe0,0xd5,0x74,0xf6,0x36,0x87,0x1,0x7, + 0x27,0x0,0x4a,0x1c,0x89,0xe4,0x17,0x38,0x21,0x30,0xe0,0xe1,0x4,0x80,0x83,0xc3, + 0x0,0x86,0x8b,0x1,0x94,0x38,0x2,0x9f,0x5f,0xb0,0xb1,0x22,0xb6,0x47,0x43,0x8f, + 0x5d,0x8b,0x43,0xdf,0x83,0xb3,0x0,0x1c,0x1c,0x6,0x30,0x9c,0x0,0x28,0x75,0xb4, + 0x17,0xed,0x3f,0xc3,0x69,0xff,0x81,0xe,0x27,0x0,0x6,0x2,0x92,0x84,0x80,0x23, + 0xbf,0x3,0xb9,0x18,0xc0,0xc0,0x41,0x20,0x4,0x1c,0xf1,0x1d,0x42,0x38,0xb,0xc0, + 0xc1,0x61,0x0,0xc3,0x9,0x0,0x7,0x87,0x1,0x8c,0x7e,0x27,0x0,0xda,0x1b,0x31, + 0x97,0xcf,0x70,0xda,0xfe,0x7e,0xbc,0x83,0x43,0x21,0xd1,0x2f,0x63,0x0,0xdd,0x1d, + 0x36,0xdb,0xdf,0x8f,0x77,0x70,0x28,0x14,0xfa,0x9d,0x5,0xe0,0xe0,0xe0,0x50,0x38, + 0xf4,0x4b,0xb,0xc0,0x21,0x1b,0x32,0x5b,0xb1,0x83,0x43,0x67,0xe0,0x2c,0x80,0x12, + 0x40,0x6f,0x15,0xe7,0x70,0xe8,0x5d,0x24,0x94,0x61,0xeb,0xf4,0x74,0xd1,0xce,0x2, + 0xe8,0xe7,0x40,0xe0,0x70,0x51,0x2f,0x14,0xe6,0x70,0x28,0xd,0x38,0xb,0xc0,0xc1, + 0xa1,0x1f,0xa2,0x10,0xda,0x1f,0xe8,0x55,0x1,0xe0,0x34,0x97,0x83,0x43,0xef,0xa2, + 0xd7,0x5c,0x0,0x9b,0xfc,0x5e,0xac,0xce,0xdb,0x89,0x27,0x9c,0x50,0xb0,0xf3,0xbc, + 0xf7,0xde,0x7b,0x79,0xef,0x7b,0xc0,0x1,0x7,0xf4,0x68,0x7b,0x3,0xa1,0xad,0x62, + 0xb4,0x57,0xe8,0x36,0xbb,0xd3,0xd6,0xe2,0x25,0x4b,0x82,0x75,0xbf,0x87,0x2,0xb1, + 0x85,0xd2,0xfe,0xdd,0x3a,0x30,0x5f,0xa8,0x8b,0xf5,0xed,0xef,0x92,0xec,0x12,0x27, + 0x3d,0x60,0x13,0xbf,0x10,0x7f,0xe0,0xce,0xb4,0xd1,0x51,0x5b,0x85,0x6e,0x6f,0x20, + 0xb4,0x55,0x8c,0xf6,0xa,0xdd,0x66,0x21,0xda,0x12,0x21,0x90,0x24,0x0,0xa,0x9d, + 0xf3,0x91,0x63,0xfe,0x85,0x2e,0xf3,0xb8,0xa8,0x16,0x40,0x9c,0xfc,0x82,0x42,0x92, + 0x5f,0xf6,0xb7,0xff,0x28,0xf6,0xf1,0xb9,0xda,0xb2,0xf7,0xff,0xf2,0x97,0xbf,0xcc, + 0xcb,0x3b,0xee,0xb8,0x23,0x67,0xfb,0x85,0x6a,0x6f,0x20,0xb4,0x55,0x8c,0xf6,0xa, + 0xdd,0x66,0x21,0xdb,0x42,0x71,0xd4,0x9e,0xa8,0x90,0x5c,0x68,0xf2,0x3,0x45,0x13, + 0x0,0x9d,0x21,0xbf,0x54,0x97,0x7d,0xe7,0x9d,0x77,0x82,0x6d,0x5d,0xfd,0xa3,0xe4, + 0xf3,0x87,0x6d,0xf,0x5d,0x11,0x26,0xf9,0xb6,0x37,0x10,0xda,0x2a,0x46,0x7b,0x85, + 0x6e,0xb3,0x50,0x6d,0xf5,0x64,0x89,0xf2,0x62,0x90,0x1f,0x28,0x8a,0x0,0xc8,0x45, + 0xfe,0xa4,0xb9,0xdc,0x3a,0x43,0xfe,0xf6,0x90,0x74,0x4c,0x3e,0xfe,0xa4,0x8,0x91, + 0x7c,0xda,0xec,0x4e,0x7b,0x3,0xa1,0xad,0x62,0xb4,0x57,0xe8,0x36,0xb,0xd5,0x56, + 0x29,0x90,0x1f,0x28,0xf8,0x5d,0x74,0x97,0xfc,0x0,0xfe,0x28,0xb9,0x3e,0x82,0x8e, + 0x5e,0x9a,0x7c,0x10,0x6f,0x43,0xbe,0xdf,0x7c,0xf3,0xcd,0xfc,0x29,0x64,0x7b,0x3, + 0xa1,0xad,0x62,0xb4,0xd7,0x57,0xef,0xd7,0x6,0xfc,0xfc,0x62,0xf9,0xff,0xc5,0x24, + 0x3f,0x50,0x50,0xb,0xa0,0x2b,0xe4,0xef,0xa,0x92,0xfe,0x28,0xb6,0x1b,0x70,0xff, + 0xfd,0xf7,0xb7,0x7b,0xfc,0xa5,0x97,0x5e,0xda,0xae,0x0,0xc1,0xef,0x76,0x1b,0x85, + 0x68,0x6f,0x20,0xb4,0x55,0xe8,0x67,0x16,0x6f,0xa3,0x2f,0xdd,0xaf,0x20,0x17,0xc9, + 0xfb,0x3,0xf9,0xb,0xda,0x58,0x77,0xc8,0x2f,0x16,0x40,0x77,0xfe,0x28,0x22,0x0, + 0x3a,0x6a,0x43,0xda,0x1,0x92,0xda,0x9a,0x3d,0x7b,0x76,0x64,0x9f,0x42,0xb4,0x37, + 0x10,0xda,0xb2,0xf7,0x29,0x54,0x7b,0x85,0x6e,0xb3,0x50,0x6d,0x2d,0x58,0xb0,0x80, + 0x97,0xfd,0x9d,0xfc,0x40,0x41,0x5c,0x80,0x9e,0x20,0xbf,0xa0,0xbd,0x28,0xb1,0x83, + 0x43,0xb1,0x51,0x4a,0xe4,0x7,0xba,0xed,0x2,0x74,0x95,0xfc,0x71,0xbf,0xdf,0x36, + 0xcf,0xe2,0xc8,0x25,0x1c,0x92,0x84,0x41,0xae,0x76,0xf2,0x11,0x30,0xb6,0x96,0xe8, + 0xce,0x75,0xd9,0xed,0xe5,0xdb,0x56,0x3e,0xd7,0xd6,0x1f,0xda,0x2a,0x46,0x7b,0xdd, + 0x41,0x67,0xde,0x11,0xa0,0xbd,0xbf,0x69,0xa9,0x91,0xbf,0xdb,0xd,0x17,0x8a,0xfc, + 0xf9,0x0,0x7f,0x18,0xdb,0x2c,0xeb,0x8a,0x25,0x60,0xff,0x71,0xed,0xb6,0xe2,0x26, + 0x6c,0x57,0xda,0x4c,0x6a,0xaf,0xab,0x6d,0xa,0xe2,0x6d,0x75,0xa7,0xbd,0xbe,0xda, + 0x56,0xae,0xf6,0x3a,0xdb,0x66,0xd2,0xdf,0xa1,0xab,0xd6,0x62,0x52,0x5b,0xa5,0x48, + 0x7e,0xa0,0xcb,0x16,0x40,0xb1,0xba,0xfa,0xda,0xeb,0xe7,0x17,0x21,0x20,0xdf,0xb, + 0x95,0x60,0x62,0xbf,0x68,0x7d,0xb5,0xcd,0x42,0xb6,0xd7,0x57,0xdb,0xca,0xd5,0x6e, + 0x3e,0x88,0x7,0xd,0x73,0xe5,0x86,0x74,0xe5,0xba,0x4a,0x95,0xfc,0x40,0x97,0x4, + 0x40,0x6f,0xf4,0xf3,0xc7,0x5f,0x88,0xae,0xb6,0x21,0x2f,0x89,0x2c,0xf3,0x79,0x51, + 0xf2,0x69,0x53,0xda,0x8b,0xbb,0x11,0x5d,0x69,0x53,0xae,0x2f,0xc9,0x32,0xe9,0x6a, + 0x7b,0x7d,0xb5,0x2d,0xfb,0x3e,0xf3,0x6d,0xb3,0xab,0x19,0x89,0xf9,0x2,0xd7,0x70, + 0xd0,0x41,0x7,0x45,0x48,0x59,0x8a,0xe4,0x7,0x3a,0x2d,0x0,0xa,0xd5,0xcf,0xdf, + 0x11,0x3a,0xea,0x82,0x29,0x44,0x1b,0x71,0xa1,0xd2,0x17,0xdb,0x2c,0x64,0x7b,0x7d, + 0xb5,0xad,0xa4,0x36,0xb,0xa1,0x24,0xa,0x75,0x5d,0xa5,0x4a,0x7e,0xa0,0x53,0xbd, + 0x0,0xbd,0xd9,0xcf,0xdf,0x1b,0x6d,0xf4,0xc7,0x36,0xb,0xd9,0x5e,0x4f,0xb6,0x95, + 0x24,0x50,0x7a,0x33,0x19,0x4c,0x50,0xca,0xe4,0x7,0xf2,0xb6,0x0,0xa,0x41,0xfe, + 0x42,0x24,0x5f,0xf4,0xd5,0x4,0x93,0x62,0xb7,0xd9,0x97,0x92,0x60,0x8a,0x99,0x40, + 0x94,0x2f,0x8a,0x99,0xc,0x6,0xf3,0x1f,0xc0,0x0,0x9f,0xfe,0x9a,0xe1,0x97,0x2f, + 0xf2,0x3a,0x61,0x4f,0xf5,0xf3,0xe7,0x4a,0xbe,0x28,0x74,0x92,0x8f,0xbd,0x5f,0x5f, + 0x6e,0xb3,0x2f,0x26,0xc1,0x14,0x23,0x81,0xc8,0xde,0xaf,0xb7,0x93,0xc1,0x24,0xe0, + 0x37,0x10,0xc8,0xf,0x74,0x68,0x1,0x14,0xc2,0xe7,0x7,0xba,0xd2,0x3f,0xef,0x92, + 0x7e,0x6,0x6,0x3a,0x23,0x50,0x0,0xbc,0x17,0x85,0x30,0xff,0xe3,0x18,0x68,0xe4, + 0x7,0xda,0x15,0x0,0x85,0x22,0x7f,0x7b,0xc8,0x65,0x2,0x16,0x23,0xc9,0xa7,0xd0, + 0xe8,0xf,0x6d,0x16,0xb2,0xbd,0x62,0x27,0x10,0xf5,0x26,0x6,0x22,0xf9,0xdb,0x3d, + 0x79,0x67,0xc9,0xdf,0x9d,0x3e,0xfe,0xa4,0x4,0x9d,0xce,0xa2,0xa3,0x24,0x9f,0xae, + 0xb4,0xdf,0x5b,0x6d,0xf6,0x85,0xf6,0xa,0x75,0xbf,0x36,0xa,0x7d,0x5d,0x40,0x67, + 0xac,0xc4,0xb8,0xa2,0x90,0xb6,0x6,0x92,0xcf,0x1f,0x47,0xa2,0x5,0x50,0xc,0xf2, + 0xb7,0x7,0xb1,0x2,0x8a,0x95,0x54,0x62,0x9f,0xa7,0x2b,0xd7,0xd5,0x93,0x6d,0xf6, + 0xe5,0xf6,0x8a,0x95,0x40,0xd4,0x99,0xeb,0x8a,0x27,0x83,0x75,0xa5,0xd,0x1b,0x3, + 0x99,0xfc,0x40,0x96,0x0,0xe8,0xe,0xf9,0x81,0xae,0xf6,0xbb,0x16,0xaa,0xf,0x38, + 0x9e,0x94,0x93,0x6f,0xdb,0x1d,0xbd,0xb8,0xc5,0x6e,0xb3,0xaf,0xb5,0xd7,0x95,0xfb, + 0xed,0x8,0x85,0xba,0x4f,0x1b,0x9d,0x6d,0xc3,0x26,0xa3,0xac,0xf,0x54,0xf2,0x3, + 0x91,0x3c,0x80,0x9e,0xe8,0xe7,0xcf,0xa7,0x6f,0xb9,0x90,0x7d,0xc0,0xc5,0x48,0x2e, + 0x29,0x74,0x9b,0xfd,0xa9,0x3d,0xa0,0xab,0x7f,0x9f,0x42,0x5c,0x57,0x77,0xdb,0x88, + 0x2b,0xac,0x81,0x4c,0x7e,0x20,0xb0,0x0,0xba,0x4b,0xfe,0x42,0x15,0x58,0xc8,0x7, + 0xed,0xf5,0x1,0xdb,0x66,0xde,0x40,0xcb,0xf4,0x2b,0x46,0x7b,0x5d,0x41,0x47,0x7d, + 0xf4,0x85,0xba,0xae,0xee,0xb6,0x31,0xd0,0xc9,0xf,0xb0,0x0,0xe8,0xee,0xa8,0xbe, + 0x42,0x75,0xdf,0xf4,0x44,0xa2,0x50,0x7b,0xc8,0xe7,0xc5,0xed,0xed,0x36,0x7b,0xb3, + 0xbd,0xbe,0x22,0xe4,0xbb,0xd3,0xc6,0x40,0x8d,0xf6,0xe7,0x42,0x59,0x4f,0xa5,0xf7, + 0xe6,0x42,0x67,0x92,0x37,0x64,0xff,0xa4,0x97,0x2c,0xd7,0x90,0xd2,0x7c,0xda,0x2e, + 0x95,0x4c,0xbf,0x62,0xb4,0x57,0xe8,0x3e,0xfa,0xde,0xcc,0x6,0x15,0xf2,0x43,0x71, + 0xad,0x5f,0xbf,0x3e,0xeb,0xf7,0x81,0x46,0x7e,0x20,0x71,0x2c,0x40,0x4f,0x91,0xbf, + 0x90,0xc8,0xd5,0x55,0xd5,0xdd,0x4a,0x43,0x76,0x50,0xb1,0xd0,0x6d,0xf6,0xf5,0xf6, + 0xa,0x85,0xae,0x8,0xf9,0x42,0xb7,0x61,0x6b,0x7e,0x47,0xfe,0x10,0x59,0x2,0xa0, + 0x58,0xe4,0x8f,0xf,0xbf,0x5,0x61,0xb,0x95,0xc,0xd2,0xd7,0x92,0x4a,0x1c,0xfa, + 0x16,0x84,0xfc,0xe7,0x9c,0x73,0x8e,0x33,0xfb,0x63,0xe8,0x30,0x15,0x18,0x33,0xf6, + 0x64,0x12,0x1e,0x9a,0x44,0x60,0xbb,0xaa,0x29,0x64,0x4e,0xfb,0xce,0x44,0x72,0xed, + 0x3e,0x60,0x31,0xf1,0x1e,0x7d,0xf4,0xd1,0xc4,0x7d,0xbb,0xda,0x55,0x65,0x23,0xde, + 0x76,0xa1,0xdb,0xec,0xeb,0xed,0x75,0xb6,0xcd,0xf8,0xdf,0x47,0xda,0x2a,0xc4,0x75, + 0x75,0x15,0x36,0xf9,0xaf,0xbb,0xee,0xba,0xac,0xdf,0x7,0x32,0xf9,0x1,0x2f,0x1e, + 0x3,0xb0,0x2d,0x80,0x42,0x4e,0xd2,0xe9,0xe0,0xd0,0xd3,0x90,0xc9,0x3b,0x64,0xda, + 0xae,0xb8,0xf6,0x1f,0xe8,0xe4,0x7,0xb2,0x5c,0x80,0x9e,0x9a,0xe1,0xd4,0xc1,0xa1, + 0x27,0x0,0xcd,0x9f,0x4,0x47,0x7e,0x8d,0x44,0x17,0xc0,0x9,0x1,0x87,0x52,0x80, + 0x3d,0x61,0x67,0xa1,0xdf,0xe9,0x52,0x20,0x3f,0xd0,0x6e,0xc,0x60,0x91,0x7a,0x80, + 0x27,0xf5,0xf1,0xe8,0xbf,0x83,0x83,0xd,0x99,0xaa,0xbb,0x3d,0x74,0x57,0xfb,0x97, + 0xa,0xf9,0x81,0xe,0x83,0x80,0x8b,0x7a,0x60,0xda,0x63,0x7,0x87,0x42,0x41,0x66, + 0x9f,0x86,0xc6,0xc7,0xba,0xd3,0xfc,0xed,0x23,0x2b,0x8,0x38,0x67,0xce,0x9c,0x5e, + 0xba,0x14,0x7,0x87,0xee,0x21,0x1f,0xc2,0x77,0x47,0xfb,0x97,0x1a,0xf9,0x81,0xa2, + 0x4c,0xf,0xee,0xe0,0xd0,0x93,0xb0,0xb5,0x7e,0xb1,0x50,0x8a,0xe4,0x7,0x9c,0x0, + 0x70,0xe8,0xd7,0x28,0x86,0x99,0x1f,0x47,0xa9,0x92,0x1f,0x70,0x2e,0x80,0xc3,0x80, + 0x42,0x67,0x5d,0x80,0x52,0x26,0x3f,0x50,0x90,0xd9,0x81,0x1d,0x1c,0x4a,0x11,0xa5, + 0x4e,0x7e,0xc0,0x9,0x0,0x7,0x87,0x4,0xc,0x4,0xf2,0x3,0x4e,0x0,0x38,0x38, + 0xc4,0x30,0x50,0xc8,0xf,0x38,0x1,0xe0,0xe0,0x60,0x61,0x20,0x91,0x1f,0x70,0x2, + 0xc0,0xc1,0xc1,0x60,0xa0,0x91,0x1f,0x70,0x2,0xc0,0xc1,0x81,0x6,0x26,0xf9,0x1, + 0x27,0x0,0x1c,0x6,0x3c,0x6,0x2a,0xf9,0x1,0xdc,0x64,0x62,0x4d,0x40,0x7,0x87, + 0x1,0x8c,0x1,0x41,0x7e,0xc0,0x9,0x0,0x7,0x87,0x28,0x6,0xc,0xf9,0x1,0x27, + 0x0,0x1c,0x1c,0x42,0xc,0x28,0xf2,0x3,0x4e,0x0,0x38,0x38,0x68,0xc,0x38,0xf2, + 0x3,0xff,0x1f,0x61,0xd9,0x53,0x2b,0x0,0x0,0x52,0xa0,0x14,0x15,0x0,0x0,0x0, + 0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,0x28,0x0,0x0,0x0,0x10,0x0,0x0, + 0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x40,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xc1,0x7,0xff,0xff,0x80,0x3,0xff,0xff,0x0,0x1,0xff, + 0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x80,0x1,0xff, + 0xff,0xc0,0x3,0xff,0xff,0x80,0x7,0xff,0xff,0x0,0x7f,0xff,0xff,0x0,0x73,0xff, + 0xff,0x0,0x61,0xff,0xff,0x0,0x1,0xff,0xff,0x80,0x3,0xff,0xff,0xc1,0x7,0xff, + 0xff,0x28,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x90,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x48,0x48,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xc0,0x40,0x7f, + 0xff,0x80,0x0,0x3f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f, + 0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f,0xff,0x80,0x0,0x1f, + 0xff,0xc0,0x0,0x3f,0xff,0x80,0x0,0x7f,0xff,0x0,0x1f,0xff,0xff,0x0,0x1f,0xff, + 0xff,0x0,0x1f,0x3f,0xff,0x0,0xe,0x1f,0xff,0x0,0x0,0x1f,0xff,0x0,0x0,0x1f, + 0xff,0x80,0x0,0x3f,0xff,0xc0,0x40,0x7f,0xff,0x28,0x0,0x0,0x0,0x18,0x0,0x0, + 0x0,0x30,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x60,0x9,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d, + 0xff,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x28,0x28,0xe9,0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef, + 0xff,0x47,0x47,0xf0,0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x7b,0x7b,0x3,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x3f,0x3f,0xed,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xa0,0xa0,0x69,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xe3,0xe3,0x4,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x67,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0, + 0xff,0xa8,0xa8,0x9,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xf0,0x8,0x7,0xff,0xe0,0x0,0x3,0xff,0xc0,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0xc0,0x0,0x1,0xff,0xe0,0x0,0x3, + 0xff,0xe0,0x0,0x7,0xff,0xc0,0x0,0xf,0xff,0x80,0x3,0xff,0xff,0x80,0x3,0xff, + 0xff,0x80,0x3,0xe3,0xff,0x80,0x1,0xc1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0xc0,0x0,0x3,0xff,0xe0,0x8,0x7,0xff,0xf0,0x1c,0xf,0xff,0xff,0xff,0xff, + 0xff,0x28,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x80,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x48,0x48,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0x50,0x50,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x50, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x7f,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0xf,0xc0,0x0,0x0,0x7,0xe0,0x0,0x0, + 0x3,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0, + 0x1,0xe0,0x0,0x0,0x1,0xc0,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x80,0x0,0x0, + 0x3,0xc0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0xc0,0x0,0x0, + 0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf8,0x0,0x0, + 0x3,0xfc,0x0,0x0,0x3,0xfe,0x0,0x0,0x7,0x28,0x0,0x0,0x0,0x30,0x0,0x0, + 0x0,0x60,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x80,0x25,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x79,0x79,0x79,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x75,0x75,0x75,0xff,0xd1,0xd1,0xd1,0xff,0xe0,0xe0,0xe0,0xff,0xfb,0xfb,0xfb, + 0xff,0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x5,0x5,0x5, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xd1,0xd1,0xd1,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x24,0x24,0x24,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x1c,0x1c,0x1c, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x77,0x77,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x68,0x68,0x68,0xff,0x8a,0x8a,0x8a,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x68,0x68,0x68,0xff,0x92,0x92,0x92,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xca,0xca,0xca,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x75,0x75,0x75,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x55,0x55,0x55,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x57,0x57,0x57,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x46,0x46,0x46, + 0xff,0xc7,0xc7,0xcc,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0xff,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x66,0x66,0x68,0xff,0x8e,0x8e,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x93,0x93,0x91,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc,0xff,0xcb,0xcb,0xd0,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x69,0x69,0x69,0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6d,0x6d,0x6d,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d, + 0xff,0xca,0xca,0xca,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6c,0x6c,0x6c,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x28,0x28,0xe9,0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef, + 0xff,0x47,0x47,0xf0,0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x7b,0x7b,0x3,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xc3,0xc3,0xc3,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6e,0x6e,0x6e,0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x3f,0x3f,0xed,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x5,0x5,0x5, + 0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4,0xff,0x5,0x5,0x5, + 0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x60,0x60,0x60,0xff,0xc,0xc,0xc,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x32,0x32,0x34, + 0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32, + 0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31, + 0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30, + 0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf, + 0xff,0x6a,0x6a,0x6a,0xff,0x14,0x14,0x14,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61, + 0xff,0xcf,0xcf,0xcf,0xff,0x1b,0x1b,0x1b,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4, + 0xff,0x1b,0x1b,0x1b,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xa0,0xa0,0x69,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0xfa,0xfa,0xfa,0xff,0xc5,0xc5,0xc5,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xe3,0xe3,0x4,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfa,0xfa,0xfa,0xff,0xc6,0xc6,0xc6,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0xc8,0xc8,0xc8,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xcc,0xcc,0xcc, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc9,0xc9,0xc9,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x67,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0xc8,0xc8,0xc8,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0xb1,0xb1,0xff,0xff,0xb1,0xb1,0xff, + 0xff,0xb1,0xb1,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0xa5,0xa5,0xa,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xca,0xca,0xca,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0, + 0xff,0xa8,0xa8,0x9,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xc8,0xc8,0xc8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfe,0xfe,0xfe,0xff,0xc8,0xc8,0xc8,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c,0xff,0x7,0x7,0x7,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0x88,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x6e,0x6e,0x6e, + 0xff,0xfb,0xfb,0xfb,0xff,0xc7,0xc7,0xc7,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x72,0x67,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x6e,0x6e,0x6e, + 0xff,0xff,0xff,0xff,0xff,0xc5,0xc5,0xc5,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x76,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0xf4,0xf4,0xf4,0xff,0xc3,0xc3,0xc3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3, + 0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x75,0xff,0xf6,0xf6,0xf6, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5, + 0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5, + 0xff,0xb6,0xb6,0xb6,0xff,0xb4,0xb4,0xb4,0xff,0xb1,0xb1,0xb1,0xff,0xbb,0xbb,0xbb, + 0xff,0xc2,0xc2,0xc2,0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xc1,0xc1,0xc1, + 0xff,0xc4,0xc4,0xc4,0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x85, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0x85,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0x87,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0x4c,0x4c,0x4c, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7c,0x7c,0x7c, + 0xff,0x77,0x77,0x77,0xff,0x75,0x75,0x75,0xff,0x7d,0x7d,0x7d,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xc0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x3,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3f,0xff, + 0xff,0xe0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff, + 0xff,0xf8,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0xe0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x7,0xff, + 0xff,0xff,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x7,0xff, + 0xff,0xff,0xc0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x1f,0xff, + 0xff,0x28,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0xff,0x0,0xff,0x0,0xb9,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x6b,0xff,0x6b,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff, + 0xff,0xb1,0xc7,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff, + 0xff,0xb1,0xc7,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xdc,0xff,0x0,0x0,0xdc, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff,0xff,0xb1,0xc7,0xff, + 0xff,0xb1,0xc7,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96,0xff,0x0,0x0,0x96, + 0xff,0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x7f, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x7, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x1, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xe0,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, + 0xf,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x1f,0x28,0x0,0x0,0x0,0x48,0x0,0x0, + 0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x60,0x54,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xdb,0xdb,0xdb,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xda,0xda,0xd9,0xff,0xc8,0xc8,0xc8, + 0xff,0xc0,0xc0,0xc0,0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xc1,0xc1,0xc0,0xff,0xf9,0xf9,0xf8,0xff,0xfe,0xfe,0xfe, + 0xff,0xe3,0xe3,0xe3,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde, + 0xff,0xec,0xec,0xec,0xff,0xe3,0xe3,0xe3,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xe8,0xe8,0xe8,0xff,0xe0,0xe0,0xe0,0xff,0xfe,0xfe,0xfe,0xff,0xed,0xed,0xed, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xc2,0xc2,0xc2, + 0xff,0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xde,0xde,0xde,0xff,0xc2,0xc2,0xc2,0xff,0xfb,0xfb,0xfb,0xff,0xdb,0xdb,0xdb, + 0xff,0xd4,0xd4,0xd4,0xff,0xdb,0xdb,0xdb,0xff,0xd2,0xd2,0xd2,0xff,0xe0,0xe0,0xe0, + 0xff,0xf6,0xf6,0xf6,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xe3,0xe3,0xe3, + 0xff,0xc2,0xc2,0xc2,0xff,0xfe,0xfe,0xfe,0xff,0xed,0xed,0xed,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xec,0xec,0xec,0xff,0xe8,0xe8,0xe8, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xe2,0xe2,0xe2,0xff,0xce,0xce,0xce, + 0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0x85,0x85,0x85, + 0xff,0x9e,0x9e,0x9d,0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xef,0xa1,0xa1,0xa0,0xff,0x9d,0x9d,0x9c,0xff,0x10,0x10,0x10, + 0xff,0x8d,0x8d,0x8d,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xb4,0xb4,0xb4, + 0xff,0x59,0x59,0x59,0xff,0xa9,0xa9,0xa9,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x9e,0x9e,0x9e,0xff,0x4d,0x4d,0x4d,0xff,0x8a,0x8a,0x8a,0xff,0xad,0xad,0xad, + 0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96,0xff,0x9b,0x9b,0x9b,0xff,0x4a,0x4a,0x4a, + 0xff,0x83,0x83,0x83,0xff,0xbc,0xbc,0xbc,0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96, + 0xff,0x9b,0x9b,0x9b,0xff,0x4a,0x4a,0x4a,0xff,0x8e,0x8e,0x8e,0xff,0xac,0xac,0xac, + 0xff,0x96,0x96,0x96,0xff,0xa7,0xa7,0xa7,0xff,0x6e,0x6e,0x6e,0xff,0x62,0x62,0x62, + 0xff,0xb4,0xb4,0xb4,0xff,0x9c,0x9c,0x9c,0xff,0x96,0x96,0x96,0xff,0xaf,0xaf,0xaf, + 0xff,0x4a,0x4a,0x4a,0xff,0x84,0x84,0x84,0xff,0xad,0xad,0xad,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xb0,0xb0,0xb0,0xff,0x4a,0x4a,0x4a,0xff,0xb3,0xb3,0xb3, + 0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96,0xff,0x9e,0x9e,0x9e,0xff,0x5c,0x5c,0x5c, + 0xff,0xb4,0xb4,0xb4,0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96,0xff,0x89,0x89,0x89, + 0xff,0x2a,0x2a,0x2a,0xff,0x9d,0x9d,0x9d,0xff,0xa8,0xa8,0xa8,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80,0xff,0xa0,0xa0,0xa0,0xff,0xac,0xac,0xab, + 0xff,0x7d,0x7d,0x7d,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xc0,0xc0,0xc0, + 0xff,0x56,0x56,0x56,0xff,0xc2,0xc2,0xc2,0xff,0xd2,0xd2,0xd2,0xff,0xce,0xce,0xce, + 0xff,0xc6,0xc6,0xc6,0xff,0x6e,0x6e,0x6e,0xff,0xc6,0xc6,0xc6,0xff,0x96,0x96,0x96, + 0xff,0xd6,0xd6,0xd6,0xff,0xc2,0xc2,0xc2,0xff,0xce,0xce,0xce,0xff,0x6a,0x6a,0x6a, + 0xff,0xa5,0xa5,0xa5,0xff,0x9e,0x9e,0x9e,0xff,0xd1,0xd1,0xd1,0xff,0xc2,0xc2,0xc2, + 0xff,0xce,0xce,0xce,0xff,0x6a,0x6a,0x6a,0xff,0xa5,0xa5,0xa5,0xff,0xc3,0xc3,0xc3, + 0xff,0xc6,0xc6,0xc6,0xff,0xc2,0xc2,0xc2,0xff,0xca,0xca,0xca,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0xcf,0xcf,0xcf,0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8, + 0xff,0x86,0x86,0x86,0xff,0xb2,0xb2,0xb2,0xff,0xa5,0xa5,0xa5,0xff,0xd6,0xd6,0xd6, + 0xff,0xce,0xce,0xce,0xff,0xd2,0xd2,0xd2,0xff,0x6e,0x6e,0x6e,0xff,0xc0,0xc0,0xc0, + 0xff,0xd1,0xd1,0xd1,0xff,0xc2,0xc2,0xc2,0xff,0xd2,0xd2,0xd2,0xff,0x86,0x86,0x86, + 0xff,0xc6,0xc6,0xc6,0xff,0xcb,0xcb,0xcb,0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8, + 0xff,0x7a,0x7a,0x7a,0xff,0x34,0x34,0x34,0xff,0xb0,0xb0,0xb0,0xff,0xaa,0xaa,0xaa, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80,0xef,0xa1,0xa1,0xa0, + 0xff,0xab,0xab,0xaa,0xff,0x8c,0x8c,0x8c,0xff,0xc8,0xc8,0xc8,0xff,0xce,0xce,0xce, + 0xff,0xb6,0xb6,0xb6,0xff,0xa7,0xa7,0xa7,0xff,0xb3,0xb3,0xb3,0xff,0xd1,0xd1,0xd1, + 0xff,0xc0,0xc0,0xc0,0xff,0xab,0xab,0xab,0xff,0x8f,0x8f,0x8f,0xff,0x86,0x86,0x86, + 0xff,0x7a,0x7a,0x7a,0xff,0xc3,0xc3,0xc3,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad, + 0xff,0xa7,0xa7,0xa7,0xff,0x6b,0x6b,0x6b,0xff,0x86,0x86,0x86,0xff,0xcb,0xcb,0xcb, + 0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xa7,0xa7,0xa7,0xff,0x69,0x69,0x69, + 0xff,0xa1,0xa1,0xa1,0xff,0xc3,0xc3,0xc3,0xff,0xad,0xad,0xad,0xff,0x9c,0x9c,0x9c, + 0xff,0xb3,0xb3,0xb3,0xff,0x67,0x67,0x67,0xff,0xcb,0xcb,0xcb,0xff,0xad,0xad,0xad, + 0xff,0xad,0xad,0xad,0xff,0xb4,0xb4,0xb4,0xff,0x69,0x69,0x69,0xff,0xa8,0xa8,0xa8, + 0xff,0xc0,0xc0,0xc0,0xff,0xbd,0xbd,0xbd,0xff,0xb7,0xb7,0xb7,0xff,0x92,0x92,0x92, + 0xff,0x7f,0x7f,0x7f,0xff,0xc3,0xc3,0xc3,0xff,0xad,0xad,0xad,0xff,0xa7,0xa7,0xa7, + 0xff,0xb4,0xb4,0xb4,0xff,0x80,0x80,0x80,0xff,0xc2,0xc2,0xc2,0xff,0xad,0xad,0xad, + 0xff,0xa5,0xa5,0xa5,0xff,0xa1,0xa1,0xa1,0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0, + 0xff,0xa8,0xa8,0xa8,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x2f,0x80,0x80,0x80, + 0xe9,0x98,0x98,0x98,0xff,0xb1,0xb1,0xb0,0xff,0x31,0x31,0x31,0xff,0xc3,0xc3,0xc3, + 0xff,0xad,0xad,0xad,0xff,0xb8,0xb8,0xb8,0xff,0x7a,0x7a,0x7a,0xff,0x80,0x80,0x80, + 0xff,0xb4,0xb4,0xb4,0xff,0xad,0xad,0xad,0xff,0xbc,0xbc,0xbc,0xff,0x6e,0x6e,0x6e, + 0xff,0x7e,0x7e,0x7e,0xff,0xa1,0xa1,0xa1,0xff,0xb2,0xb2,0xb2,0xff,0xad,0xad,0xad, + 0xff,0xba,0xba,0xba,0xff,0x56,0x56,0x56,0xff,0x84,0x84,0x84,0xff,0xa5,0xa5,0xa5, + 0xff,0xb2,0xb2,0xb2,0xff,0xad,0xad,0xad,0xff,0xba,0xba,0xba,0xff,0x53,0x53,0x53, + 0xff,0x98,0x98,0x98,0xff,0xb8,0xb8,0xb8,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad, + 0xff,0xaa,0xaa,0xaa,0xff,0x53,0x53,0x53,0xff,0xc3,0xc3,0xc3,0xff,0xb2,0xb2,0xb2, + 0xff,0xad,0xad,0xad,0xff,0xbf,0xbf,0xbf,0xff,0x53,0x53,0x53,0xff,0x9f,0x9f,0x9f, + 0xff,0xbd,0xbd,0xbd,0xff,0xad,0xad,0xad,0xff,0xb8,0xb8,0xb8,0xff,0x7a,0x7a,0x7a, + 0xff,0x71,0x71,0x71,0xff,0xac,0xac,0xac,0xff,0xc0,0xc0,0xc0,0xff,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0x65,0x65,0x65,0xff,0xc2,0xc2,0xc2,0xff,0xb2,0xb2,0xb2, + 0xff,0xad,0xad,0xad,0xff,0xba,0xba,0xba,0xff,0x53,0x53,0x53,0xff,0x52,0x52,0x52, + 0xff,0x9c,0x9c,0x9c,0xff,0xaf,0xaf,0xaf,0xff,0x84,0x84,0x84,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x50,0x50,0x50,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x1c,0x80,0x80,0x80,0xe9,0x96,0x96,0x95,0xff,0xb1,0xb1,0xb0,0xff,0x5d,0x5d,0x5d, + 0xff,0xb8,0xb8,0xb8,0xff,0xc2,0xc2,0xc2,0xff,0xda,0xda,0xda,0xff,0x9a,0x9a,0x9a, + 0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xc2,0xc2,0xc2,0xff,0xc2,0xc2,0xc2, + 0xff,0xa6,0xa6,0xa6,0xff,0x9e,0x9e,0x9e,0xff,0xb0,0xb0,0xb0,0xff,0xc2,0xc2,0xc2, + 0xff,0xc8,0xc8,0xc8,0xff,0xba,0xba,0xba,0xff,0x9c,0x9c,0x9c,0xff,0x9c,0x9c,0x9c, + 0xff,0xb8,0xb8,0xb8,0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8,0xff,0xaa,0xaa,0xaa, + 0xff,0xd0,0xd0,0xd0,0xff,0x8d,0x8d,0x8d,0xff,0xc4,0xc4,0xc4,0xff,0xc2,0xc2,0xc2, + 0xff,0xd2,0xd2,0xd2,0xff,0xaa,0xaa,0xaa,0xff,0x92,0x92,0x92,0xff,0xb8,0xb8,0xb8, + 0xff,0xc2,0xc2,0xc2,0xff,0xca,0xca,0xca,0xff,0xaa,0xaa,0xaa,0xff,0xb0,0xb0,0xb0, + 0xff,0xa5,0xa5,0xa5,0xff,0xc6,0xc6,0xc6,0xff,0xc2,0xc2,0xc2,0xff,0xda,0xda,0xda, + 0xff,0xaa,0xaa,0xaa,0xff,0x86,0x86,0x86,0xff,0xa8,0xa8,0xa8,0xff,0xce,0xce,0xce, + 0xff,0xd2,0xd2,0xd2,0xff,0xc2,0xc2,0xc2,0xff,0xb2,0xb2,0xb2,0xff,0xcb,0xcb,0xcb, + 0xff,0xc2,0xc2,0xc2,0xff,0xc8,0xc8,0xc8,0xff,0xaa,0xaa,0xaa,0xff,0x99,0x99,0x99, + 0xff,0x5e,0x5e,0x5e,0xff,0xaa,0xaa,0xaa,0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x2f,0x80,0x80,0x80,0xe9,0x98,0x98,0x98,0xff,0xb1,0xb1,0xb0, + 0xff,0x3f,0x3f,0x3f,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xa1,0xa1,0xa1, + 0xff,0x9e,0x9e,0x9e,0xff,0x65,0x65,0x65,0xff,0xcb,0xcb,0xcb,0xff,0x96,0x96,0x96, + 0xff,0x87,0x87,0x87,0xff,0x96,0x96,0x96,0xff,0x4d,0x4d,0x4d,0xff,0xb4,0xb4,0xb4, + 0xff,0xac,0xac,0xac,0xff,0x96,0x96,0x96,0xff,0x9b,0x9b,0x9b,0xff,0x6e,0x6e,0x6e, + 0xff,0x60,0x60,0x60,0xff,0xcb,0xcb,0xcb,0xff,0x96,0x96,0x96,0xff,0x96,0x96,0x96, + 0xff,0x9e,0x9e,0x9e,0xff,0x4d,0x4d,0x4d,0xff,0xc3,0xc3,0xc3,0xff,0x9c,0x9c,0x9c, + 0xff,0x96,0x96,0x96,0xff,0xaf,0xaf,0xaf,0xff,0x4a,0x4a,0x4a,0xff,0x84,0x84,0x84, + 0xff,0xac,0xac,0xac,0xff,0x96,0x96,0x96,0xff,0xa7,0xa7,0xa7,0xff,0x6e,0x6e,0x6e, + 0xff,0x60,0x60,0x60,0xff,0xbc,0xbc,0xbc,0xff,0x9c,0x9c,0x9c,0xff,0x96,0x96,0x96, + 0xff,0xaf,0xaf,0xaf,0xff,0x4a,0x4a,0x4a,0xff,0x81,0x81,0x81,0xff,0xad,0xad,0xad, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xb0,0xb0,0xb0,0xff,0x53,0x53,0x53, + 0xff,0xa7,0xa7,0xa7,0xff,0xac,0xac,0xac,0xff,0x96,0x96,0x96,0xff,0x9e,0x9e,0x9e, + 0xff,0x65,0x65,0x65,0xff,0x40,0x40,0x40,0xff,0x9c,0x9c,0x9c,0xff,0xaf,0xaf,0xaf, + 0xff,0x84,0x84,0x84,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x1c,0x80,0x80,0x80,0xe9,0x96,0x96,0x95, + 0xff,0xb1,0xb1,0xb0,0xff,0x7d,0x7d,0x7c,0xff,0xce,0xce,0xce,0xff,0xc2,0xc2,0xc2, + 0xff,0xd2,0xd2,0xd2,0xff,0x86,0x86,0x86,0xff,0xe2,0xe2,0xe2,0xff,0xd4,0xd4,0xd4, + 0xff,0xce,0xce,0xce,0xff,0xc8,0xc8,0xc8,0xff,0x6e,0x6e,0x6e,0xff,0xd6,0xd6,0xd6, + 0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce,0xff,0xce,0xce,0xce,0xff,0xaa,0xaa,0xaa, + 0xff,0x86,0x86,0x86,0xff,0xdc,0xdc,0xdc,0xff,0xd4,0xd4,0xd4,0xff,0xce,0xce,0xce, + 0xff,0xc6,0xc6,0xc6,0xff,0x6e,0x6e,0x6e,0xff,0xdc,0xdc,0xdc,0xff,0xd7,0xd7,0xd7, + 0xff,0xce,0xce,0xce,0xff,0xd1,0xd1,0xd1,0xff,0x7a,0x7a,0x7a,0xff,0xa8,0xa8,0xa8, + 0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce,0xff,0xce,0xce,0xce,0xff,0xaa,0xaa,0xaa, + 0xff,0x86,0x86,0x86,0xff,0xda,0xda,0xda,0xff,0xd7,0xd7,0xd7,0xff,0xce,0xce,0xce, + 0xff,0xd1,0xd1,0xd1,0xff,0x6e,0x6e,0x6e,0xff,0xc8,0xc8,0xc8,0xff,0xda,0xda,0xda, + 0xff,0xd6,0xd6,0xd6,0xff,0xce,0xce,0xce,0xff,0xd2,0xd2,0xd2,0xff,0x6e,0x6e,0x6e, + 0xff,0xc8,0xc8,0xc8,0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce,0xff,0xce,0xce,0xce, + 0xff,0x92,0x92,0x92,0xff,0x9a,0x9a,0x9a,0xff,0x25,0x25,0x25,0xff,0xc0,0xc0,0xc0, + 0xff,0xaa,0xaa,0xaa,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x4f,0x80,0x80,0x80, + 0xff,0xd3,0xd3,0xd3,0xff,0xcc,0xcc,0xcb,0xff,0xe0,0xe0,0xe0,0xff,0xdc,0xdc,0xdc, + 0xff,0xdc,0xdc,0xdc,0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee,0xff,0xdc,0xdc,0xdc, + 0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf,0xff,0xc3,0xc3,0xc3,0xff,0xee,0xee,0xee, + 0xff,0xea,0xea,0xea,0xff,0xd0,0xd0,0xd0,0xff,0xca,0xca,0xca,0xff,0xd3,0xd3,0xd3, + 0xff,0xca,0xca,0xca,0xff,0xee,0xee,0xee,0xff,0xdc,0xdc,0xdc,0xff,0xca,0xca,0xca, + 0xff,0xd0,0xd0,0xd0,0xff,0xc3,0xc3,0xc3,0xff,0xee,0xee,0xee,0xff,0xe5,0xe5,0xe5, + 0xff,0xca,0xca,0xca,0xff,0xcc,0xcc,0xcc,0xff,0xc7,0xc7,0xc7,0xff,0xda,0xda,0xda, + 0xff,0xea,0xea,0xea,0xff,0xd0,0xd0,0xd0,0xff,0xca,0xca,0xca,0xff,0xd3,0xd3,0xd3, + 0xff,0xca,0xca,0xca,0xff,0xee,0xee,0xee,0xff,0xe5,0xe5,0xe5,0xff,0xca,0xca,0xca, + 0xff,0xcc,0xcc,0xcc,0xff,0xc1,0xc1,0xc1,0xff,0xe8,0xe8,0xe8,0xff,0xee,0xee,0xee, + 0xff,0xe2,0xe2,0xe2,0xff,0xca,0xca,0xca,0xff,0xcd,0xcd,0xcd,0xff,0xc1,0xc1,0xc1, + 0xff,0xe8,0xe8,0xe8,0xff,0xea,0xea,0xea,0xff,0xcf,0xcf,0xcf,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd2,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x15,0x15,0x15, + 0xff,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x6e,0x6e,0x6e,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x1a,0x0,0xff,0x2,0xbf,0x0,0xff,0x7,0x97,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x14,0x18,0xe,0xff,0x94,0xb5,0x6c,0xff,0x2,0xa9,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x95,0x95,0x95, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x15,0x15,0x15, + 0xff,0x90,0x90,0x8f,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95, + 0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95,0xff,0x96,0x96,0x95, + 0xff,0x78,0x78,0x78,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x8,0x8,0x8,0xff,0x60,0x60,0x60,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x80,0x80,0x80, + 0xff,0x78,0x78,0x78,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x38,0x38,0x38, + 0xff,0x80,0x80,0x80,0xff,0x7c,0x7c,0x7b,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x5c,0x5c,0x5b,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xaa,0xaa,0xaa,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x9c,0x9c,0x9c,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x16,0x16,0x16,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c, + 0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c, + 0xff,0x34,0x34,0x34,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x6,0x6,0x6, + 0xff,0x4d,0x4d,0x4d,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c, + 0xff,0x5c,0x5c,0x5c,0xff,0x5c,0x5c,0x5c,0xff,0x61,0x61,0x61,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x3f,0x80,0x80,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1e,0x1e,0x1e,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x2b,0x2b,0x2b, + 0xff,0x4a,0x4a,0x4a,0xff,0x2b,0x2b,0x2b,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x37,0x37,0x37, + 0xff,0x4a,0x4a,0x4a,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x17,0x17,0x17,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e,0x3f,0x7e,0x7e,0x7e, + 0xff,0xfe,0xfe,0xfe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x94,0x94,0x94,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x1e,0x1e,0x1e,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x18,0x18,0x18,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x6b,0x7b,0x4f,0x64,0x64,0x75, + 0xff,0x6d,0x6d,0xa7,0xff,0x37,0x37,0x8e,0xff,0x1c,0x1b,0x9f,0xff,0x1c,0x1b,0xae, + 0xff,0x1d,0x1d,0xa2,0xff,0x39,0x39,0x92,0xff,0x69,0x69,0x7b,0xff,0x80,0x80,0x81, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb5,0xb5,0xab,0xff,0x96,0x96,0x70,0xff,0x84,0x85,0x3c,0xff,0x6a,0x6b,0x1, + 0xff,0x70,0x71,0x1,0xff,0x70,0x71,0x1,0xff,0x74,0x75,0x3,0xff,0x88,0x89,0x34, + 0xff,0xa0,0xa0,0x87,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7a,0x7a,0x90,0x8d,0x2a,0x2a,0x91,0xff,0x19,0x17,0xe2, + 0xff,0x9,0x6,0xf4,0xff,0x7,0x4,0xf3,0xff,0xb,0x9,0xf3,0xff,0x7,0x4,0xf3, + 0xff,0x8,0x6,0xf3,0xff,0xa,0x7,0xf4,0xff,0x8,0x7,0xc6,0xff,0x3a,0x3a,0x7f, + 0xff,0x88,0x88,0x8a,0xff,0xbe,0xbe,0xbe,0xff,0xb9,0xb9,0xb5,0xff,0x94,0x94,0x5d, + 0xff,0x78,0x79,0x6,0xff,0x85,0x86,0x0,0xff,0x8d,0x8d,0x0,0xff,0x88,0x89,0x0, + 0xff,0x88,0x89,0x0,0xff,0x88,0x89,0x0,0xff,0x88,0x89,0x0,0xff,0x85,0x86,0x0, + 0xff,0x7b,0x7d,0x0,0xff,0x7b,0x7b,0x20,0xff,0xb6,0xb6,0xaa,0xff,0x9f,0x9f,0x9f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xc7, + 0x15,0x77,0x76,0xb3,0xaf,0x4e,0x4d,0xe0,0xff,0x2d,0x2b,0xf7,0xff,0x2b,0x29,0xf7, + 0xff,0x34,0x32,0xf9,0xff,0x3a,0x39,0xfb,0xff,0x40,0x3f,0xfc,0xff,0x3e,0x3d,0xfc, + 0xff,0x35,0x33,0xfa,0xff,0x1b,0x19,0xf5,0xff,0x8,0x4,0xf3,0xff,0x7,0x5,0xde, + 0xff,0x32,0x32,0x92,0xff,0xb5,0xb5,0xad,0xff,0x94,0x94,0x28,0xff,0x95,0x94,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0xaa,0xa9,0x1,0xff,0xb0,0xb1,0x1,0xff,0xb4,0xb4,0x1, + 0xff,0xb6,0xb7,0x1,0xff,0xb6,0xb6,0x1,0xff,0xb6,0xb6,0x1,0xff,0xb0,0xb0,0x1, + 0xff,0x9e,0x9e,0x0,0xff,0x84,0x85,0x0,0xff,0x7e,0x7f,0x10,0xff,0x82,0x83,0x5c, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xe3,0x2f,0x79,0x79,0xe9, + 0xe9,0x66,0x66,0xf7,0xff,0x47,0x46,0xfd,0xff,0x46,0x44,0xfd,0xff,0x49,0x48,0xfd, + 0xff,0x4b,0x4a,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x55,0x54,0xfd,0xff,0x53,0x52,0xfd, + 0xff,0x50,0x4f,0xfd,0xff,0x47,0x46,0xfd,0xff,0x37,0x36,0xfa,0xff,0x1f,0x1c,0xf5, + 0xff,0xf,0xd,0xef,0xff,0x44,0x44,0x68,0xff,0xb4,0xb4,0x0,0xff,0xb4,0xb4,0x2, + 0xff,0xb2,0xb2,0x1,0xff,0xb9,0xba,0x1,0xff,0xc0,0xc2,0x0,0xff,0xcc,0xcc,0x0, + 0xff,0xd1,0xd1,0x0,0xff,0xce,0xce,0x0,0xff,0xc7,0xc8,0x0,0xff,0xbe,0xbf,0x0, + 0xff,0xb4,0xb4,0x1,0xff,0xa4,0xa3,0x0,0xff,0x87,0x88,0x0,0xff,0x7c,0x7e,0x0, + 0xff,0x4b,0x4b,0x1,0xff,0x43,0x43,0x43,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x67,0x67,0x67,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0xf0,0xe9,0x5f,0x5e,0xfc, + 0xff,0x55,0x54,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfd,0xff,0x5c,0x5c,0xfc, + 0xff,0x61,0x61,0xfc,0xff,0x67,0x67,0xfb,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfa, + 0xff,0x67,0x67,0xfb,0xff,0x59,0x58,0xfc,0xff,0x4d,0x4d,0xfd,0xff,0x3c,0x3c,0xfb, + 0xff,0x2e,0x2b,0xf7,0xff,0x10,0xe,0xe6,0xff,0x85,0x86,0x25,0xff,0xb6,0xb6,0x1, + 0xff,0xb9,0xb9,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd9,0xd9,0x0,0xff,0xdb,0xda,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xda,0x0,0xff,0xdb,0xda,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xc7,0xc7,0x0,0xff,0xb6,0xb7,0x0,0xff,0xaa,0xa9,0x1,0xff,0x8e,0x8e,0x0, + 0xff,0x78,0x79,0x0,0xff,0x8c,0x8c,0x60,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb5,0xb5,0xb5,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x94,0x6b,0x6b,0xf9,0xff,0x54,0x53,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x53,0x52,0xfe,0xff,0x63,0x63,0xfb,0xff,0x6c,0x6c,0xf9, + 0xff,0x74,0x74,0xf6,0xff,0x7c,0x7c,0xf4,0xff,0x7e,0x7e,0xe9,0xff,0x78,0x78,0xf6, + 0xff,0x6c,0x6c,0xf9,0xff,0x68,0x68,0xfb,0xff,0x5d,0x5c,0xfc,0xff,0x4d,0x4d,0xfd, + 0xff,0x3f,0x3f,0xfc,0xff,0x1b,0x18,0xf5,0xff,0x38,0x37,0x90,0xff,0xc2,0xc2,0x4, + 0xff,0xd1,0xd1,0x0,0xff,0xd4,0xd3,0x0,0xff,0xdb,0xdb,0x2,0xff,0xe5,0xe4,0x7, + 0xff,0xed,0xec,0xb,0xff,0xee,0xee,0xc,0xff,0xed,0xec,0xc,0xff,0xe0,0xe0,0x6, + 0xff,0xcb,0xcb,0x0,0xff,0xbd,0xbd,0x0,0xff,0xb3,0xb3,0x2,0xff,0xa7,0xa6,0x0, + 0xff,0x8a,0x8a,0x0,0xff,0x6b,0x6b,0x11,0xff,0xb7,0xb7,0xb5,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xf3,0xff,0x65,0x65,0xfb,0xff,0x53,0x52,0xfd, + 0xff,0x48,0x48,0xfd,0xff,0x4b,0x4a,0xfd,0xff,0x5c,0x5c,0xe6,0xff,0x83,0x83,0xf2, + 0xff,0x6a,0x62,0xeb,0xff,0x24,0x18,0xaa,0xff,0xa,0x5,0x83,0xff,0x21,0x20,0x90, + 0xff,0x68,0x69,0xdb,0xff,0x71,0x71,0xf8,0xff,0x66,0x66,0xfb,0xff,0x55,0x54,0xfd, + 0xff,0x49,0x48,0xfd,0xff,0x2d,0x2b,0xf7,0xff,0x5,0x2,0xe7,0xff,0x88,0x88,0x43, + 0xff,0xc6,0xc5,0x0,0xff,0xcc,0xcc,0x0,0xff,0xd7,0xd9,0x10,0xff,0x7e,0x73,0x73, + 0xff,0x23,0x1f,0xc4,0xff,0x11,0x1,0xaf,0xff,0x40,0x3d,0x87,0xff,0xcc,0xcb,0x23, + 0xff,0xe7,0xe6,0x9,0xff,0xd4,0xd4,0x0,0xff,0xb8,0xb9,0x0,0xff,0xaf,0xaf,0x1, + 0xff,0x9d,0x9c,0x0,0xff,0x73,0x74,0x0,0xff,0x7d,0x7d,0x63,0xff,0x93,0x93,0x93, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0xa4,0xa4,0xa3, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x82,0x82,0xc7,0xf,0x73,0x73,0xf7,0xff,0x63,0x62,0xfb,0xff,0x4e,0x4d,0xfd, + 0xff,0x3e,0x3d,0xfc,0xff,0x32,0x31,0xf4,0xff,0x44,0x44,0xbd,0xff,0x7f,0x78,0xeb, + 0xff,0x30,0xe,0xe5,0xff,0x20,0xe,0xc0,0xff,0x26,0x13,0xcd,0xff,0x1a,0x7,0xc1, + 0xff,0xf,0x0,0xa2,0xff,0x53,0x52,0xbf,0xff,0x76,0x76,0xf5,0xff,0x65,0x64,0xfa, + 0xff,0x51,0x50,0xfd,0xff,0x3c,0x3c,0xfb,0xff,0x9,0x6,0xf3,0xff,0xe,0xd,0xb4, + 0xff,0x70,0x71,0xd,0xff,0x8b,0x90,0x17,0xff,0x74,0x67,0xbe,0xff,0x31,0xf,0xe3, + 0xff,0x23,0xe,0xcd,0xff,0x26,0x13,0xcd,0xff,0x1b,0x7,0xc8,0xff,0x1d,0x12,0xa1, + 0xff,0xb1,0xbb,0x30,0xff,0xe1,0xe0,0x5,0xff,0xcd,0xcd,0x0,0xff,0xb4,0xb4,0x1, + 0xff,0xa5,0xa4,0x0,0xff,0x81,0x82,0x0,0xff,0x5b,0x5b,0x1f,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x4c,0x4c,0x4c,0xff,0x80,0x80,0x80,0xff,0xb0,0xb0,0xb0,0xff,0x8c,0x8c,0x8c, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xf1,0x3f,0x6e,0x6e,0xf9,0xff,0x5b,0x5a,0xfc,0xff,0x45,0x44,0xfd, + 0xff,0x35,0x33,0xfa,0xff,0x25,0x24,0xe7,0xff,0x39,0x38,0x9c,0xff,0x82,0x6d,0xf7, + 0xff,0x6a,0x56,0xee,0xff,0x7e,0x69,0xf9,0xff,0x89,0x73,0xff,0xff,0x6a,0x56,0xee, + 0xff,0x39,0x26,0xd5,0xff,0x13,0xb,0x9a,0xff,0x85,0x85,0xec,0xff,0x72,0x72,0xf7, + 0xff,0x59,0x58,0xfd,0xff,0x47,0x46,0xfd,0xff,0x18,0x14,0xf4,0xff,0x4,0x2,0xdd, + 0xff,0x50,0x51,0x1e,0xff,0x65,0x67,0x98,0xff,0x7a,0x65,0xf3,0xff,0x6e,0x59,0xf0, + 0xff,0x7e,0x69,0xf9,0xff,0x89,0x73,0xff,0xff,0x6a,0x56,0xee,0xff,0x30,0x1c,0xd1, + 0xff,0x1d,0x19,0x95,0xff,0xdf,0xde,0x13,0xff,0xd8,0xd8,0x0,0xff,0xbe,0xbf,0x1, + 0xff,0xac,0xab,0x1,0xff,0x88,0x89,0x0,0xff,0x5d,0x5d,0x2,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x10,0x10,0x10,0xff,0xaa,0xaa,0xaa, + 0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x3f,0x6b,0x6b,0xfa,0xff,0x55,0x54,0xfd,0xff,0x46,0x44,0xfd, + 0xff,0x2e,0x2c,0xf8,0xff,0x8,0x7,0xcb,0xff,0x3c,0x36,0xa9,0xff,0xad,0x99,0xff, + 0xff,0x87,0x71,0xff,0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x8c,0x76,0xff, + 0xff,0x7e,0x68,0xf9,0xff,0x25,0x15,0xc0,0xff,0x69,0x6c,0xd4,0xff,0x7c,0x7c,0xf4, + 0xff,0x65,0x65,0xfb,0xff,0x50,0x50,0xfc,0xff,0x25,0x23,0xf6,0xff,0x2,0x0,0xdd, + 0xff,0x53,0x54,0x1f,0xff,0x51,0x42,0xca,0xff,0xa3,0x8e,0xff,0xff,0x88,0x71,0xff, + 0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x8c,0x76,0xff,0xff,0x71,0x5c,0xf2, + 0xff,0x19,0x9,0xb7,0xff,0xc7,0xcc,0x38,0xff,0xdc,0xdb,0x1,0xff,0xc4,0xc5,0x0, + 0xff,0xae,0xad,0x1,0xff,0x88,0x89,0x0,0xff,0x5c,0x5c,0x2,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20, + 0xff,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x18,0x18,0x18,0xff,0x24,0x24,0x24, + 0xff,0xaa,0xaa,0xaa,0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x71,0x71,0xf7,0x3f,0x6c,0x6c,0xf9,0xff,0x53,0x52,0xfd,0xff,0x45,0x44,0xfd, + 0xff,0x2e,0x2c,0xf8,0xff,0x5,0x3,0xcd,0xff,0x1c,0x17,0x97,0xff,0xcb,0xba,0xff, + 0xff,0x92,0x7b,0xff,0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x93,0x7d,0xff, + 0xff,0x8f,0x78,0xff,0xff,0x4c,0x39,0xde,0xff,0x6c,0x70,0xd8,0xff,0x76,0x76,0xf6, + 0xff,0x67,0x67,0xfb,0xff,0x59,0x58,0xfd,0xff,0x2a,0x29,0xf8,0xff,0x3,0x1,0xdd, + 0xff,0x5c,0x5d,0x24,0xff,0x2f,0x2a,0x9f,0xff,0xb9,0xa6,0xff,0xff,0x97,0x81,0xff, + 0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x93,0x7d,0xff,0xff,0x8d,0x76,0xff, + 0xff,0x3c,0x28,0xd1,0xff,0xc8,0xc9,0x3c,0xff,0xe0,0xe0,0x4,0xff,0xc5,0xc5,0x0, + 0xff,0xab,0xab,0x1,0xff,0x87,0x87,0x0,0xff,0x5b,0x5b,0x2,0xff,0x7e,0x7e,0x7e, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x20,0x20,0x20, + 0xff,0x15,0x15,0x15,0xff,0xaa,0xaa,0xaa,0xff,0x87,0x87,0x87,0xff,0x40,0x40,0x40, + 0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xf1,0x3f,0x6d,0x6d,0xf9,0xff,0x58,0x57,0xfd,0xff,0x4f,0x4e,0xfd, + 0xff,0x37,0x35,0xfa,0xff,0xc,0xa,0xe9,0xff,0x8,0x7,0x92,0xff,0x80,0x6f,0xe2, + 0xff,0xc9,0xb7,0xff,0xff,0xb0,0x9d,0xff,0xff,0x9d,0x89,0xff,0xff,0xa6,0x92,0xff, + 0xff,0xab,0x97,0xff,0xff,0x72,0x64,0xe1,0xff,0x83,0x83,0xe5,0xff,0x6f,0x6f,0xf8, + 0xff,0x63,0x63,0xfb,0xff,0x58,0x58,0xfc,0xff,0x2b,0x2a,0xf8,0xff,0x2,0x0,0xdd, + 0xff,0x63,0x65,0x27,0xff,0x33,0x2e,0x5b,0xff,0x94,0x83,0xe9,0xff,0xc5,0xb3,0xff, + 0xff,0xb0,0x9d,0xff,0xff,0x9d,0x89,0xff,0xff,0xa6,0x92,0xff,0xff,0xab,0x97,0xff, + 0xff,0x62,0x5f,0xd5,0xff,0xd6,0xd6,0xf,0xff,0xd9,0xd8,0x0,0xff,0xbd,0xbe,0x0, + 0xff,0xa5,0xa4,0x0,0xff,0x84,0x85,0x0,0xff,0x63,0x64,0x24,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xa4,0xa4,0xa4,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x78,0x78,0x78, + 0xff,0x1f,0x1f,0x1f,0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa,0xff,0x56,0x56,0x56, + 0xdf,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x76,0x76,0xf2,0xff,0x5f,0x5e,0xfb,0xff,0x58,0x57,0xfd, + 0xff,0x41,0x40,0xfc,0xff,0x20,0x1e,0xf5,0xff,0x7,0x5,0xdc,0xff,0x19,0x16,0x73, + 0xff,0x73,0x66,0xcd,0xff,0xc5,0xb3,0xff,0xff,0xc7,0xb5,0xff,0xff,0xbf,0xad,0xff, + 0xff,0x98,0x8e,0xe5,0xff,0x6a,0x6a,0xb0,0xff,0x7f,0x7f,0xf4,0xff,0x61,0x60,0xfc, + 0xff,0x5b,0x5b,0xfc,0xff,0x50,0x4f,0xfd,0xff,0x18,0x15,0xf5,0xff,0x8,0x7,0xce, + 0xff,0x77,0x79,0x1d,0xff,0x58,0x59,0xe,0xff,0x31,0x2b,0x6f,0xff,0x85,0x74,0xe2, + 0xff,0xc5,0xb3,0xff,0xff,0xc7,0xb5,0xff,0xff,0xbf,0xad,0xff,0xff,0x8f,0x82,0xe8, + 0xff,0x91,0x90,0x61,0xff,0xcc,0xcd,0x0,0xff,0xc6,0xc6,0x0,0xff,0xb6,0xb6,0x1, + 0xff,0xa0,0x9f,0x0,0xff,0x7c,0x7c,0x0,0xff,0x95,0x96,0x76,0xff,0xbe,0xbe,0xbe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x30,0x30,0x30,0xff,0x10,0x10,0x10,0xff,0x60,0x60,0x60, + 0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf4,0xc6,0x65,0x65,0xfb,0xff,0x68,0x68,0xfb, + 0xff,0x4d,0x4c,0xfc,0xff,0x3c,0x3b,0xfb,0xff,0x11,0xf,0xf3,0xff,0x4,0x3,0xc9, + 0xff,0x16,0x15,0x69,0xff,0x19,0x15,0x66,0xff,0x33,0x2b,0x79,0xff,0x33,0x2e,0x7b, + 0xff,0x2c,0x30,0x5a,0xff,0x4a,0x4a,0xbb,0xff,0x58,0x57,0xfd,0xff,0x53,0x52,0xfd, + 0xff,0x51,0x50,0xfd,0xff,0x43,0x42,0xfc,0xff,0x9,0x6,0xf3,0xff,0x3f,0x3f,0x85, + 0xff,0x8d,0x8e,0x9,0xff,0x7a,0x7b,0x0,0xff,0x5a,0x5c,0x10,0xff,0x2d,0x2b,0x3d, + 0xff,0x16,0x13,0x6c,0xff,0x2e,0x26,0x87,0xff,0x3a,0x2d,0x7e,0xff,0x73,0x72,0x36, + 0xff,0xaf,0xaf,0x0,0xff,0xbb,0xbc,0x1,0xff,0xb6,0xb6,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xa0,0x9f,0x0,0xff,0x7e,0x7f,0x15,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xcf,0xcf,0xcf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa0,0xa0,0xa0,0xff,0x80,0x80,0x80, + 0xff,0xb0,0xb0,0xb0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xe6,0x55,0x73,0x73,0xf7,0xff,0x6c,0x6c,0xfa, + 0xff,0x5c,0x5c,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x2f,0x2d,0xf8,0xff,0x1b,0x19,0xf4, + 0xff,0xd,0xc,0xe7,0xff,0x12,0x12,0xc4,0xff,0x12,0x11,0xa3,0xff,0x17,0x17,0xab, + 0xff,0x1c,0x1b,0xba,0xff,0x2d,0x2c,0xda,0xff,0x40,0x3f,0xfb,0xff,0x46,0x45,0xfc, + 0xff,0x48,0x47,0xfd,0xff,0x23,0x22,0xf6,0xff,0xd,0xa,0xe5,0xff,0xa4,0xa6,0x1b, + 0xff,0xae,0xae,0x0,0xff,0x86,0x87,0x0,0xff,0x7a,0x7b,0x0,0xff,0x6a,0x6a,0x0, + 0xff,0x63,0x63,0x0,0xff,0x6c,0x6c,0x0,0xff,0x78,0x79,0x0,0xff,0x89,0x89,0x0, + 0xff,0x9f,0x9e,0x0,0xff,0xac,0xac,0x1,0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb6,0x1, + 0xff,0x9c,0x9b,0x0,0xff,0x51,0x52,0x2e,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x69,0x69,0xb4,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x63,0x63,0x63,0xff,0x2c,0x2c,0x2c,0xff,0x40,0x40,0x40, + 0xff,0x30,0x30,0x30,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0xf2,0xa9,0x75,0x75,0xf6, + 0xff,0x63,0x63,0xfb,0xff,0x4e,0x4d,0xfd,0xff,0x40,0x40,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x30,0x2e,0xf8,0xff,0x1e,0x1c,0xf5,0xff,0x10,0xd,0xf4,0xff,0x17,0x14,0xf5, + 0xff,0x27,0x25,0xf6,0xff,0x34,0x33,0xf9,0xff,0x3f,0x3f,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0xf,0xd,0xf3,0xff,0x4c,0x4c,0x89,0xff,0xbf,0xc1,0x0, + 0xff,0xbe,0xc0,0x0,0xff,0xb8,0xb9,0x0,0xff,0xb2,0xb2,0x1,0xff,0xa5,0xa5,0x1, + 0xff,0x93,0x93,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8d,0x8d,0x0,0xff,0xa5,0xa4,0x0, + 0xff,0xb2,0xb2,0x1,0xff,0xb5,0xb5,0x1,0xff,0xba,0xbb,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xc7,0xc6,0x3,0xff,0x17,0x17,0x7b,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xcd,0xcd,0xcd,0xff,0xcf,0xcf,0xcf,0xff,0xab,0xab,0xaa,0xff,0x96,0x96,0x95, + 0xff,0x96,0x96,0x95,0xff,0xe,0xe,0xe,0xff,0xa0,0xa0,0xa0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xe3,0x2f,0x83,0x83,0xf2, + 0xff,0x67,0x67,0xfb,0xff,0x4f,0x4e,0xfd,0xff,0x46,0x45,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x43,0x43,0xfc,0xff,0x43,0x43,0xfc,0xff,0x41,0x41,0xfc,0xff,0x40,0x40,0xfd, + 0xff,0x3e,0x3e,0xfc,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd,0xff,0x41,0x41,0xfc, + 0xff,0x38,0x36,0xfa,0xff,0x1a,0x17,0xf4,0xff,0x98,0x98,0x4e,0xff,0xdb,0xdb,0x4, + 0xff,0xd8,0xd7,0x0,0xff,0xca,0xcb,0x0,0xff,0xc5,0xc6,0x0,0xff,0xbd,0xbe,0x0, + 0xff,0xb9,0xba,0x0,0xff,0xb5,0xb6,0x1,0xff,0xb5,0xb6,0x1,0xff,0xb6,0xb7,0x1, + 0xff,0xb8,0xb9,0x0,0xff,0xc7,0xc7,0x0,0xff,0xd7,0xd6,0x1,0xff,0xe7,0xe6,0x8, + 0xff,0xa2,0xa2,0x3b,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe9,0xe9,0xe9,0xff,0xc4,0xc4,0xc3,0xff,0xbc,0xbc,0xbc,0xff,0xac,0xac,0xab, + 0xff,0x9c,0x9c,0x9c,0xff,0x60,0x60,0x60,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xdc,0x54,0x78,0x78,0xf5, + 0xff,0x63,0x63,0xfb,0xff,0x52,0x51,0xfd,0xff,0x42,0x42,0xfc,0xff,0x46,0x46,0xfc, + 0xff,0x4d,0x4d,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x51,0x50,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x51,0x50,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x46,0x45,0xfc,0xff,0x40,0x40,0xfc, + 0xff,0x3c,0x3b,0xfb,0xff,0x25,0x23,0xf0,0xff,0x1e,0x1e,0x90,0xff,0xdc,0xdc,0x1e, + 0xff,0xea,0xea,0xb,0xff,0xdc,0xdb,0x2,0xff,0xd6,0xd6,0x0,0xff,0xd4,0xd4,0x0, + 0xff,0xca,0xcb,0x0,0xff,0xc8,0xc8,0x0,0xff,0xca,0xcb,0x0,0xff,0xce,0xcf,0x0, + 0xff,0xd7,0xd6,0x0,0xff,0xe2,0xe2,0x6,0xff,0xf3,0xf3,0x10,0xff,0xb9,0xb9,0x31, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe2,0xe2,0xe2,0xff,0xd0,0xd0,0xcf,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xab,0xab,0xaa,0xff,0x5c,0x5c,0x5c,0xff,0x70,0x70,0x70,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf1,0x9f,0x6d,0x6d,0xf9, + 0xff,0x57,0x57,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x4d,0x4c,0xfd,0xff,0x58,0x58,0xfd, + 0xff,0x62,0x61,0xfb,0xff,0x67,0x66,0xfb,0xff,0x65,0x65,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x5f,0x5f,0xfc,0xff,0x57,0x56,0xfd,0xff,0x52,0x51,0xfd,0xff,0x4a,0x4a,0xfd, + 0xff,0x41,0x41,0xfc,0xff,0x2f,0x2d,0xf8,0xff,0xd,0xd,0xa3,0xff,0x0,0x0,0x95, + 0xff,0x5c,0x5c,0x63,0xff,0xb9,0xb9,0x32,0xff,0xed,0xec,0xc,0xff,0xe5,0xe4,0x7, + 0xff,0xe2,0xe1,0x5,0xff,0xe0,0xe0,0x4,0xff,0xe3,0xe3,0x6,0xff,0xeb,0xeb,0xa, + 0xff,0xf1,0xf1,0xe,0xff,0xb8,0xb8,0x31,0xff,0x52,0x52,0x68,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc5,0xc5,0xc5,0xff,0xf2,0xf2,0xf2,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xcc,0xcc,0xcb,0xff,0x5f,0x5f,0x5f,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x1c,0x80,0x80,0xf3,0xff,0x5f,0x5e,0xfc, + 0xff,0x52,0x51,0xfd,0xff,0x46,0x45,0xfc,0xff,0x53,0x52,0xfd,0xff,0x5d,0x5d,0xfc, + 0xff,0x6a,0x6a,0xf9,0xff,0x79,0x79,0xf5,0xff,0x7c,0x7c,0xf5,0xff,0x79,0x79,0xf5, + 0xff,0x6e,0x6e,0xf9,0xff,0x65,0x64,0xfb,0xff,0x5c,0x5b,0xfc,0xff,0x48,0x48,0xfd, + 0xff,0x3e,0x3e,0xfc,0xff,0x32,0x31,0xf9,0xff,0x1e,0x1e,0xc0,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x52,0x52,0x68, + 0xff,0x52,0x52,0x68,0xff,0x52,0x52,0x68,0xff,0x52,0x52,0x68,0xff,0x52,0x52,0x68, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xca,0xca,0xca,0xff,0xf3,0xf3,0xf3,0xff,0xfe,0xfe,0xfe, + 0xff,0xe9,0xe9,0xe9,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xe6,0xaa,0x76,0x76,0xf6,0xff,0x55,0x54,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x41,0x41,0xfc,0xff,0x50,0x4f,0xfc,0xff,0x75,0x75,0xf6, + 0xff,0x7e,0x80,0xe9,0xff,0x54,0x53,0xb7,0xff,0x32,0x33,0x87,0xff,0x47,0x49,0x99, + 0xff,0x72,0x75,0xc5,0xff,0x7a,0x7a,0xf4,0xff,0x67,0x67,0xfb,0xff,0x57,0x57,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x2f,0x2e,0xf8,0xff,0x2d,0x2c,0xd7,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xa8,0xa8,0xa8,0xff,0x90,0x90,0x90, + 0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x83,0x83,0xd5,0x2f,0x80,0x80,0xf3,0xff,0x64,0x63,0xfa,0xff,0x50,0x4f,0xfd, + 0xff,0x3f,0x3e,0xfd,0xff,0x3c,0x3b,0xfc,0xff,0x66,0x66,0xe3,0xff,0x86,0x8a,0xcd, + 0xff,0x32,0x17,0xdf,0xff,0x20,0xe,0xc0,0xff,0x26,0x13,0xcd,0xff,0x19,0x7,0xc1, + 0xff,0x14,0x8,0x9e,0xff,0x62,0x64,0xbc,0xff,0x7e,0x7e,0xf2,0xff,0x61,0x61,0xfb, + 0xff,0x47,0x47,0xfd,0xff,0x31,0x30,0xf8,0xff,0x2c,0x2a,0xdf,0xff,0x4,0x4,0x8b, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x63,0x63,0x63,0xff,0x2c,0x2c,0x2c,0xff,0x40,0x40,0x40, + 0xff,0x24,0x24,0x24,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xf1,0x54,0x78,0x78,0xf6,0xff,0x60,0x60,0xfb,0xff,0x4f,0x4e,0xfd, + 0xff,0x3a,0x39,0xfb,0xff,0x33,0x31,0xf9,0xff,0x79,0x81,0xbc,0xff,0x7e,0x6e,0xf5, + 0xff,0x6a,0x56,0xee,0xff,0x7e,0x69,0xf9,0xff,0x89,0x73,0xff,0xff,0x6a,0x56,0xee, + 0xff,0x39,0x26,0xd5,0xff,0x1d,0x18,0x9d,0xff,0x86,0x86,0xea,0xff,0x6f,0x6f,0xf8, + 0xff,0x55,0x54,0xfd,0xff,0x38,0x37,0xfb,0xff,0x2e,0x2d,0xf6,0xff,0x35,0x35,0x98, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xcd,0xcd,0xcd,0xff,0xcf,0xcf,0xcf,0xff,0xa5,0xa5,0xa5,0xff,0x96,0x96,0x95, + 0xff,0x8a,0x8a,0x8a,0xff,0xe,0xe,0xe,0xff,0xa0,0xa0,0xa0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x7f,0x70,0x70,0xf8,0xff,0x5d,0x5c,0xfc,0xff,0x50,0x4f,0xfd, + 0xff,0x2c,0x2a,0xf8,0xff,0x24,0x22,0xeb,0xff,0x60,0x60,0xba,0xff,0xad,0x99,0xff, + 0xff,0x87,0x71,0xff,0xff,0x88,0x72,0xff,0xff,0x8f,0x79,0xff,0xff,0x8d,0x77,0xff, + 0xff,0x7e,0x68,0xf9,0xff,0x25,0x15,0xc0,0xff,0x70,0x76,0xd6,0xff,0x76,0x75,0xf6, + 0xff,0x5c,0x5c,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x2c,0x2a,0xf7,0xff,0x3d,0x3d,0xc9, + 0xff,0x5,0x5,0x8a,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe9,0xe9,0xe9,0xff,0xcf,0xcf,0xcf,0xff,0xc1,0xc1,0xc0,0xff,0xa0,0xa0,0xa0, + 0xff,0x9c,0x9c,0x9c,0xff,0x55,0x55,0x55,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x7f,0x6d,0x6d,0xfa,0xff,0x61,0x60,0xfb,0xff,0x4f,0x4e,0xfd, + 0xff,0x20,0x1d,0xf7,0xff,0xc,0xa,0xda,0xff,0x23,0x1d,0x8f,0xff,0xcb,0xba,0xff, + 0xff,0x93,0x7e,0xff,0xff,0x88,0x72,0xff,0xff,0x90,0x7a,0xff,0xff,0x94,0x7e,0xff, + 0xff,0x90,0x7a,0xff,0xff,0x4d,0x39,0xe1,0xff,0x65,0x63,0xd4,0xff,0x77,0x77,0xf7, + 0xff,0x5d,0x5d,0xfc,0xff,0x41,0x40,0xfc,0xff,0x2f,0x2e,0xf9,0xff,0x33,0x33,0xb6, + 0xff,0x7,0x7,0x88,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x7,0x7,0x88, + 0xff,0x1c,0x1c,0x64,0xff,0x15,0x15,0x70,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe2,0xe2,0xe2,0xff,0xd4,0xd4,0xd4,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xa6,0xa6,0xa5,0xff,0x4e,0x4e,0x4e,0xff,0x70,0x70,0x70,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x5f,0x6c,0x6c,0xfa,0xff,0x62,0x61,0xfb,0xff,0x4d,0x4c,0xfd, + 0xff,0x26,0x24,0xf9,0xff,0x5,0x2,0xef,0xff,0xb,0xa,0x8d,0xff,0x7f,0x6d,0xe3, + 0xff,0xc9,0xb8,0xff,0xff,0xb1,0x9e,0xff,0xff,0xa0,0x8b,0xff,0xff,0xa7,0x94,0xff, + 0xff,0xad,0x99,0xff,0xff,0x6d,0x5a,0xe8,0xff,0x7f,0x86,0xda,0xff,0x74,0x74,0xf7, + 0xff,0x57,0x56,0xfd,0xff,0x45,0x45,0xfd,0xff,0x32,0x31,0xf9,0xff,0x2b,0x2b,0xbf, + 0xff,0x7,0x7,0x88,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x7,0x7,0x88,0xff,0x45,0x45,0x1f, + 0xff,0x68,0x68,0x1,0xff,0x64,0x64,0x1,0xff,0x1b,0x1b,0x64,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc5,0xc5,0xc5,0xff,0xf2,0xf2,0xf2,0xff,0xcc,0xcc,0xcb,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xff,0x4f,0x4f,0x4f,0xff,0xb4,0xb4,0xb4,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x3f,0x79,0x79,0xf6,0xff,0x64,0x64,0xfb,0xff,0x51,0x50,0xfd, + 0xff,0x40,0x3f,0xfc,0xff,0x11,0xf,0xf6,0xff,0xa,0x9,0xc2,0xff,0x18,0x14,0x74, + 0xff,0x95,0x84,0xe8,0xff,0xd4,0xc2,0xff,0xff,0xd4,0xc2,0xff,0xff,0xcd,0xbb,0xff, + 0xff,0xb2,0x9e,0xff,0xff,0x52,0x50,0xb4,0xff,0x7c,0x7c,0xf1,0xff,0x65,0x65,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x42,0x41,0xfc,0xff,0x25,0x23,0xf7,0xff,0x21,0x20,0xc4, + 0xff,0x12,0x12,0x73,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x15,0x15,0x70,0xff,0x4a,0x4a,0x14,0xff,0x62,0x62,0x2, + 0xff,0x7a,0x7c,0x0,0xff,0x79,0x7a,0x0,0xff,0x43,0x43,0x24,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf,0xff,0xf3,0xf3,0xf3,0xff,0xfe,0xfe,0xfe, + 0xff,0xe9,0xe9,0xe9,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf3,0xe9,0x6a,0x6a,0xfb,0xff,0x59,0x58,0xfd, + 0xff,0x47,0x47,0xfd,0xff,0x32,0x30,0xfa,0xff,0x13,0x11,0xf6,0xff,0x11,0x10,0xb4, + 0xff,0xd,0xb,0x71,0xff,0x33,0x2b,0x8d,0xff,0x4a,0x40,0xa0,0xff,0x3f,0x35,0xa5, + 0xff,0x29,0x29,0x8f,0xff,0x41,0x44,0xa9,0xff,0x5b,0x5a,0xfc,0xff,0x53,0x52,0xfd, + 0xff,0x44,0x44,0xfc,0xff,0x36,0x35,0xfa,0xff,0x1d,0x1b,0xf5,0xff,0x38,0x37,0x81, + 0xff,0x56,0x56,0x3,0xff,0x41,0x41,0x27,0xff,0x2f,0x2f,0x42,0xff,0x1c,0x1c,0x64, + 0xff,0x15,0x15,0x70,0xff,0x15,0x15,0x70,0xff,0x15,0x15,0x70,0xff,0x1f,0x1f,0x5e, + 0xff,0x37,0x38,0x33,0xff,0x5a,0x5a,0x2,0xff,0x63,0x63,0x2,0xff,0x7b,0x7c,0x0, + 0xff,0x92,0x92,0x0,0xff,0x9a,0x99,0x0,0xff,0x59,0x59,0xe,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x71,0x75,0x75,0xf6,0xff,0x65,0x65,0xfb, + 0xff,0x53,0x53,0xfd,0xff,0x42,0x42,0xfc,0xff,0x30,0x2e,0xf9,0xff,0x12,0xf,0xf5, + 0xff,0xe,0xc,0xf0,0xff,0x15,0x14,0xba,0xff,0x1a,0x1a,0x9e,0xff,0x20,0x20,0xb7, + 0xff,0x25,0x25,0xc5,0xff,0x45,0x45,0xfc,0xff,0x49,0x49,0xfc,0xff,0x41,0x40,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x20,0x1f,0xf6,0xff,0x16,0x14,0xe1,0xff,0x7f,0x7f,0x25, + 0xff,0x7f,0x80,0x0,0xff,0x6e,0x6f,0x1,0xff,0x63,0x63,0x1,0xff,0x5c,0x5c,0x2, + 0xff,0x55,0x56,0x4,0xff,0x56,0x56,0x4,0xff,0x53,0x53,0x3,0xff,0x55,0x55,0x4, + 0xff,0x62,0x62,0x2,0xff,0x74,0x74,0x0,0xff,0x8b,0x8c,0x0,0xff,0xa3,0xa2,0x0, + 0xff,0xb4,0xb4,0x2,0xff,0xb0,0xaf,0x1,0xff,0x72,0x71,0x21,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf3,0xdf,0x6c,0x6c,0xfa, + 0xff,0x5e,0x5d,0xfc,0xff,0x51,0x51,0xfd,0xff,0x44,0x44,0xfc,0xff,0x37,0x36,0xfa, + 0xff,0x21,0x1f,0xf7,0xff,0x13,0x10,0xf5,0xff,0x23,0x21,0xf7,0xff,0x32,0x30,0xf9, + 0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x41,0x40,0xfd,0xff,0x3e,0x3d,0xfc, + 0xff,0x2a,0x28,0xf7,0xff,0x12,0x10,0xf5,0xff,0x54,0x54,0x6f,0xff,0xb6,0xb6,0x0, + 0xff,0xa6,0xa6,0x1,0xff,0x9f,0x9e,0x0,0xff,0x94,0x93,0x0,0xff,0x86,0x86,0x0, + 0xff,0x7f,0x7f,0x0,0xff,0x7f,0x7f,0x0,0xff,0x7c,0x7d,0x5,0xff,0x83,0x83,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x9f,0x9e,0x0,0xff,0xb1,0xb1,0x1,0xff,0xb6,0xb7,0x1, + 0xff,0xc3,0xc4,0x0,0xff,0xdc,0xdc,0x5,0xff,0x40,0x40,0x63,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x2f,0x80,0x80,0xf3, + 0xe9,0x6b,0x6b,0xfa,0xff,0x60,0x5f,0xfc,0xff,0x55,0x54,0xfd,0xff,0x4c,0x4b,0xfd, + 0xff,0x44,0x43,0xfc,0xff,0x3c,0x3a,0xfc,0xff,0x41,0x41,0xfd,0xff,0x42,0x41,0xfd, + 0xff,0x45,0x45,0xfd,0xff,0x46,0x46,0xfd,0xff,0x45,0x44,0xfc,0xff,0x3a,0x39,0xfb, + 0xff,0x28,0x26,0xf7,0xff,0x3e,0x3d,0xad,0xff,0xcb,0xca,0xc,0xff,0xd3,0xd3,0x0, + 0xff,0xc5,0xc7,0x0,0xff,0xb9,0xba,0x1,0xff,0xb4,0xb4,0x1,0xff,0xb0,0xaf,0x1, + 0xff,0xab,0xab,0x1,0xff,0xac,0xac,0x0,0xff,0xb0,0xaf,0x1,0xff,0xb4,0xb4,0x1, + 0xff,0xb6,0xb6,0x1,0xff,0xb7,0xb8,0x1,0xff,0xc3,0xc4,0x0,0xff,0xcf,0xd0,0x1, + 0xff,0xec,0xec,0xc,0xff,0xba,0xba,0x34,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x1c,0x83,0x83,0xf2,0xe9,0x6c,0x6c,0xfa,0xff,0x66,0x66,0xfb,0xff,0x5b,0x5a,0xfd, + 0xff,0x58,0x57,0xfd,0xff,0x54,0x53,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x56,0x55,0xfd,0xff,0x5b,0x5a,0xfc,0xff,0x56,0x55,0xfd,0xff,0x5b,0x5a,0xfc, + 0xff,0x58,0x57,0xf2,0xff,0x95,0x94,0x65,0xff,0xea,0xe9,0xa,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xd4,0xd4,0x0,0xff,0xc5,0xc6,0x0,0xff,0xbd,0xbf,0x0, + 0xff,0xb9,0xba,0x0,0xff,0xba,0xbb,0x1,0xff,0xbc,0xbd,0x0,0xff,0xc0,0xc2,0x0, + 0xff,0xc6,0xc7,0x0,0xff,0xd1,0xd1,0x0,0xff,0xe2,0xe2,0x4,0xff,0xf5,0xf5,0x12, + 0xff,0xdc,0xdc,0x21,0xff,0x14,0x14,0x8a,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x2f,0x85,0x85,0xf2,0xaa,0x77,0x77,0xf6,0xff,0x6c,0x6c,0xfa, + 0xff,0x67,0x67,0xfb,0xff,0x67,0x67,0xfb,0xff,0x64,0x64,0xfb,0xff,0x69,0x68,0xfa, + 0xff,0x71,0x71,0xf8,0xff,0x76,0x76,0xf7,0xff,0x78,0x78,0xf6,0xff,0x7d,0x7d,0xf0, + 0xff,0x37,0x37,0xa8,0xff,0x0,0x0,0x94,0xff,0x6a,0x6a,0x5a,0xff,0xde,0xde,0x1b, + 0xff,0xeb,0xeb,0xb,0xff,0xe5,0xe4,0x7,0xff,0xdf,0xde,0x2,0xff,0xde,0xdd,0x1, + 0xff,0xdc,0xdb,0x0,0xff,0xda,0xd9,0x0,0xff,0xdc,0xdb,0x0,0xff,0xe1,0xe0,0x3, + 0xff,0xea,0xe9,0xa,0xff,0xf0,0xf0,0xf,0xff,0xe1,0xe1,0x1d,0xff,0x7a,0x7a,0x52, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xbb,0xbb,0xbb, + 0xff,0x5a,0x5a,0x5a,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x50,0x50,0x50, + 0xff,0x50,0x50,0x50,0xff,0x50,0x50,0x50,0xff,0x78,0x78,0x78,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe8,0x54,0x85,0x85,0xe9, + 0xff,0x81,0x81,0xf3,0xff,0x81,0x81,0xf3,0xff,0x83,0x83,0xf3,0xff,0x86,0x86,0xef, + 0xff,0x86,0x86,0xee,0xff,0x8f,0x8f,0xe3,0xff,0x9e,0x9e,0xd2,0xff,0x8a,0x8a,0x90, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x63,0x62,0x5b,0xff,0xbe,0xbd,0x2e,0xff,0xf8,0xf8,0x14,0xff,0xf8,0xf8,0x14, + 0xff,0xf5,0xf5,0x12,0xff,0xf4,0xf4,0x12,0xff,0xf8,0xf8,0x14,0xff,0xf8,0xf8,0x14, + 0xff,0xa2,0xa2,0x3c,0xff,0x63,0x62,0x5b,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd4,0xd4,0xd4,0xff,0xa0,0xa0,0xa0,0xff,0x9b,0x9b,0x9a,0xff,0x9d,0x9d,0x9c, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x2f,0x98,0x98,0xb0,0xff,0xd0,0xd0,0xeb,0xff,0xb0,0xb0,0xc3, + 0xff,0xba,0xba,0xc2,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x27,0x27,0x7d, + 0xff,0x3e,0x3e,0x74,0xff,0x3e,0x3e,0x74,0xff,0x2d,0x2c,0x7b,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd5,0xd5,0xd4,0xff,0xb9,0xb9,0xb8,0xff,0xa5,0xa5,0xa4,0xff,0xa1,0xa1,0xa0, + 0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd6,0xd6,0xd5,0xff,0xc2,0xc2,0xc1,0xff,0xb7,0xb7,0xb6,0xff,0xa4,0xa4,0xa3, + 0xff,0xa1,0xa1,0xa0,0xff,0x87,0x87,0x87,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x63,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd6,0xd6,0xd5,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xbc,0xbc,0xbb, + 0xff,0xa5,0xa5,0xa4,0xff,0x90,0x90,0x90,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f, + 0xff,0x0,0x0,0x52,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x54,0x54,0xb8,0xff,0xdf,0xdf,0xdf,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xd6,0xd6,0xd5,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1, + 0xff,0xb6,0xb6,0xb5,0xff,0xa4,0xa4,0xa3,0xff,0x60,0x60,0x60,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7, + 0xff,0x4f,0x4f,0x4f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0xa9,0xa9,0xa9,0xff,0xd3,0xd3,0xd3,0xff,0xc0,0xc0,0xc0,0xff,0xcf,0xcf,0xcf, + 0xff,0xea,0xea,0xe9,0xff,0xe0,0xe0,0xdf,0xff,0xe0,0xe0,0xdf,0xff,0xe0,0xe0,0xdf, + 0xff,0xe0,0xe0,0xdf,0xff,0xcf,0xcf,0xcf,0xff,0x6f,0x6f,0x6f,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9e,0x9e,0x9e,0xff,0xe9,0xe9,0xe9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb0,0xb0,0xb0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x96,0x96,0x96,0xef,0xf3,0xf3,0xf3,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xcf,0xcf,0xcf,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x99,0x99,0x99,0xff,0xce,0xce,0xce, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xe4,0xe4,0xe4,0xff,0xd4,0xd4,0xd4,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x8a,0x8a,0x8a, + 0xef,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xde,0xde,0xde,0xff,0xce,0xce,0xce,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d, + 0x3f,0x84,0x84,0x84,0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xde,0xde,0xde,0xff,0xbe,0xbe,0xbe, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x3f,0x8a,0x8a,0x8a,0xef,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xe6,0xe6,0xe6, + 0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x84,0x84,0x84,0xff,0xb9,0xb9,0xb9, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xe9,0xe9,0xe9,0xff,0xbe,0xbe,0xbe,0xff,0x2a,0x2a,0x2a,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x3f,0x86,0x86,0x86, + 0xef,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0xa9,0xa9,0xa9,0xef,0x80,0x80,0x80,0x2a,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3f,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff, + 0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff, + 0xff,0x28,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x0,0x20, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xfe,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0xf0,0x0,0x0,0x0, + 0x61,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0x15,0x15,0x15,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15, + 0xff,0xf,0xf,0xf,0xff,0xe,0xe,0xe,0xfe,0x7,0x7,0x7,0xfd,0x0,0x0,0x0, + 0xe4,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x71,0x71,0xff,0x77,0x77,0x77, + 0xff,0xa2,0xa2,0xa2,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9, + 0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xff,0xa2,0xa2,0xa2, + 0xff,0x77,0x77,0x77,0xfe,0x70,0x70,0x70,0xfe,0x52,0x52,0x52,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0x86,0x86,0x86, + 0xff,0xb6,0xb6,0xb6,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xb6,0xb6,0xb6, + 0xff,0x86,0x86,0x86,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0x86,0x86,0x86, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7, + 0xff,0x86,0x86,0x86,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8, + 0xff,0x87,0x87,0x87,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb8,0xb8,0xb8, + 0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc1,0xc1,0xc1,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbb,0xbb,0xbb, + 0xff,0x93,0x93,0x93,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xd1,0xd1,0xd1,0xff,0xf2,0xf2,0xf2,0xff,0xf4,0xf4,0xf4, + 0xff,0xf4,0xf4,0xf4,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf6,0xf6,0xf6,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf2,0xf2,0xf2, + 0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc5,0xff,0xb8,0xb8,0xb8,0xff,0xbe,0xbe,0xbe, + 0xff,0xab,0xab,0xab,0xff,0x83,0x83,0x83,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xfe,0x87,0x87,0x87, + 0xff,0xb9,0xb9,0xb8,0xfe,0xdb,0xdb,0xdb,0xff,0xfb,0xfb,0xfb,0xff,0xfb,0xfb,0xfb, + 0xff,0xfb,0xfb,0xfb,0xff,0xf7,0xf7,0xf7,0xff,0xf0,0xf0,0xf0,0xff,0xee,0xee,0xee, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xf4,0xf4,0xf4, + 0xff,0xf2,0xf2,0xf2,0xff,0xf9,0xf9,0xf9,0xff,0xf8,0xf8,0xf8,0xff,0xf0,0xf0,0xf0, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xf0,0xf0,0xf0, + 0xff,0xf5,0xf5,0xf5,0xff,0xec,0xec,0xec,0xff,0xfa,0xfa,0xfa,0xff,0xfc,0xfc,0xfc, + 0xff,0xfc,0xfc,0xfc,0xff,0xf8,0xf8,0xf8,0xff,0xf0,0xf0,0xf0,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xef,0xff,0xee,0xee,0xee,0xff,0xf4,0xf4,0xf4,0xff,0xf0,0xf0,0xf0, + 0xff,0xe8,0xe8,0xe8,0xff,0xf2,0xf2,0xf2,0xff,0xfc,0xfc,0xfc,0xff,0xfa,0xfa,0xfa, + 0xff,0xf4,0xf4,0xf4,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef, + 0xff,0xf0,0xf0,0xf0,0xff,0xf5,0xf5,0xf5,0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xf4,0xf4,0xf4,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xf0,0xf0,0xf0,0xff,0xf5,0xf5,0xf5, + 0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xf4,0xf4,0xf4,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef, + 0xff,0xf0,0xf0,0xf0,0xff,0xf5,0xf5,0xf5,0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea, + 0xff,0xfa,0xfa,0xfa,0xff,0xfc,0xfc,0xfc,0xff,0xf8,0xf8,0xf8,0xff,0xf0,0xf0,0xf0, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xf0,0xf0,0xf0, + 0xff,0xf5,0xf5,0xf5,0xff,0xf4,0xf4,0xf4,0xff,0xfa,0xfa,0xfa,0xff,0xf4,0xf4,0xf4, + 0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xf0,0xf0,0xf0, + 0xff,0xf5,0xf5,0xf5,0xff,0xea,0xea,0xea,0xff,0xea,0xea,0xea,0xff,0xf5,0xf5,0xf5, + 0xff,0xf0,0xf0,0xf0,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xed,0xed,0xed, + 0xff,0xf3,0xf3,0xf3,0xff,0x8e,0x8e,0x8e,0xff,0x6f,0x6f,0x6e,0xff,0xb7,0xb7,0xb7, + 0xff,0xb9,0xb9,0xb9,0xff,0x96,0x96,0x96,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xfd,0x86,0x86,0x86, + 0xfe,0xb6,0xb6,0xb5,0xfe,0xc6,0xc6,0xc5,0xfe,0xb4,0xb4,0xb4,0xff,0x83,0x83,0x82, + 0xff,0x7e,0x7e,0x7e,0xff,0xa3,0xa3,0xa3,0xff,0xa8,0xa8,0xa8,0xff,0x8e,0x8e,0x8e, + 0xff,0x8e,0x8e,0x8e,0xff,0x8e,0x8e,0x8e,0xff,0x8e,0x8e,0x8e,0xff,0xb7,0xb7,0xb7, + 0xff,0xa1,0xa1,0xa1,0xff,0xb1,0xb1,0xb1,0xff,0xcf,0xcf,0xcf,0xff,0x97,0x97,0x97, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8e,0x8e,0x8e,0xff,0xa8,0xa8,0xa8, + 0xff,0xaf,0xaf,0xaf,0xff,0x6d,0x6d,0x6d,0xff,0xa7,0xa7,0xa7,0xff,0xbd,0xbd,0xbd, + 0xff,0xc1,0xc1,0xc1,0xff,0xd0,0xd0,0xd0,0xff,0x97,0x97,0x97,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8e,0x8e,0x8e,0xff,0xb5,0xb5,0xb5,0xff,0x9e,0x9e,0x9e, + 0xff,0x5f,0x5f,0x5f,0xff,0x85,0x85,0x85,0xff,0xba,0xba,0xba,0xff,0xcc,0xcc,0xcc, + 0xff,0xb6,0xb6,0xb6,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x97,0x97,0x97,0xff,0xc5,0xc5,0xc5,0xff,0x6d,0x6d,0x6d,0xff,0x67,0x67,0x67, + 0xff,0xa9,0xa9,0xa9,0xff,0xcd,0xcd,0xcd,0xff,0xb5,0xb5,0xb5,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x97,0x97,0x97,0xff,0xc5,0xc5,0xc5, + 0xff,0x6d,0x6d,0x6d,0xff,0x67,0x67,0x67,0xff,0xa9,0xa9,0xa9,0xff,0xcd,0xcd,0xcd, + 0xff,0xb5,0xb5,0xb5,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x97,0x97,0x97,0xff,0xc5,0xc5,0xc5,0xff,0x6d,0x6d,0x6d,0xff,0x67,0x67,0x67, + 0xff,0xa9,0xa9,0xa9,0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0,0xff,0x97,0x97,0x97, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8e,0x8e,0x8e,0xff,0xa8,0xa8,0xa8, + 0xff,0xaf,0xaf,0xaf,0xff,0x87,0x87,0x87,0xff,0xbf,0xbf,0xbf,0xff,0xb5,0xb5,0xb5, + 0xff,0x8e,0x8e,0x8e,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x97,0x97,0x97, + 0xff,0xc6,0xc6,0xc6,0xff,0x6d,0x6d,0x6d,0xff,0x6d,0x6d,0x6d,0xff,0xc6,0xc6,0xc6, + 0xff,0x97,0x97,0x97,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8d,0x8d,0x8d, + 0xff,0xb4,0xb4,0xb4,0xff,0x8d,0x8d,0x8d,0xff,0x29,0x29,0x29,0xff,0x5e,0x5e,0x5e, + 0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xf1,0x80,0x80,0x80, + 0xfd,0x95,0x95,0x95,0xfe,0xb9,0xb9,0xb8,0xfe,0xad,0xad,0xac,0xfe,0x44,0x44,0x43, + 0xff,0x7,0x7,0x7,0xff,0x6d,0x6d,0x6d,0xff,0xab,0xab,0xab,0xff,0x80,0x80,0x80, + 0xff,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0xff,0x89,0x89,0x89,0xff,0xbd,0xbd,0xbd, + 0xff,0x62,0x62,0x62,0xff,0x5e,0x5e,0x5e,0xff,0xbb,0xbb,0xbb,0xff,0x8e,0x8e,0x8e, + 0xff,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0xaa,0xaa,0xaa, + 0xff,0x8c,0x8c,0x8c,0xff,0x4b,0x4b,0x4b,0xff,0x53,0x53,0x53,0xff,0x7b,0x7b,0x7b, + 0xff,0x86,0x86,0x86,0xff,0xb8,0xb8,0xb8,0xff,0xa0,0xa0,0xa0,0xff,0x8b,0x8b,0x8b, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab,0xff,0x7d,0x7d,0x7d, + 0xff,0x4c,0x4c,0x4c,0xff,0x57,0x57,0x57,0xff,0x98,0x98,0x98,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a, + 0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa,0xff,0x56,0x56,0x56,0xff,0x4c,0x4c,0x4c, + 0xff,0x7b,0x7b,0x7b,0xff,0xad,0xad,0xad,0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa, + 0xff,0x56,0x56,0x56,0xff,0x4c,0x4c,0x4c,0xff,0x7b,0x7b,0x7b,0xff,0xad,0xad,0xad, + 0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a, + 0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa,0xff,0x56,0x56,0x56,0xff,0x4c,0x4c,0x4c, + 0xff,0x7b,0x7b,0x7b,0xff,0x9a,0x9a,0x9a,0xff,0xc1,0xc1,0xc1,0xff,0x8e,0x8e,0x8e, + 0xff,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0xaa,0xaa,0xaa, + 0xff,0x8c,0x8c,0x8c,0xff,0x4c,0x4c,0x4c,0xff,0x77,0x77,0x77,0xff,0xb6,0xb6,0xb6, + 0xff,0x8d,0x8d,0x8d,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92, + 0xff,0xab,0xab,0xab,0xff,0x56,0x56,0x56,0xff,0x54,0x54,0x54,0xff,0xa8,0xa8,0xa8, + 0xff,0xa0,0xa0,0xa0,0xff,0x8a,0x8a,0x8a,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a, + 0xff,0xab,0xab,0xab,0xff,0x7c,0x7c,0x7c,0xff,0x44,0x44,0x44,0xff,0x2a,0x2a,0x2a, + 0xff,0x82,0x82,0x82,0xff,0xbb,0xbb,0xbb,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x61,0x80,0x80,0x80, + 0xe4,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb9,0xb9,0xb8,0xfe,0xae,0xae,0xad, + 0xfe,0x44,0x44,0x43,0xff,0x47,0x47,0x47,0xff,0xb1,0xb1,0xb1,0xff,0x8c,0x8c,0x8c, + 0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa, + 0xff,0x56,0x56,0x56,0xff,0x4e,0x4e,0x4e,0xff,0x97,0x97,0x97,0xff,0xbe,0xbe,0xbe, + 0xff,0xac,0xac,0xac,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc, + 0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x60,0x60,0x60,0xff,0xba,0xba,0xba, + 0xff,0x96,0x96,0x96,0xff,0xa9,0xa9,0xa9,0xff,0xd2,0xd2,0xd2,0xff,0xcc,0xcc,0xcc, + 0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xce,0xce,0xce,0xff,0xa9,0xa9,0xa9, + 0xff,0x5a,0x5a,0x5a,0xff,0x77,0x77,0x77,0xff,0xa8,0xa8,0xa8,0xff,0x8a,0x8a,0x8a, + 0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55, + 0xff,0xa5,0xa5,0xa5,0xff,0x96,0x96,0x96,0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce, + 0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xa5,0xa5,0xa5,0xff,0x96,0x96,0x96, + 0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55, + 0xff,0xa5,0xa5,0xa5,0xff,0x8f,0x8f,0x8f,0xff,0xaf,0xaf,0xaf,0xff,0xbe,0xbe,0xbe, + 0xff,0xac,0xac,0xac,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc, + 0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x62,0x62,0x62,0xff,0xc9,0xc9,0xc9, + 0xff,0xce,0xce,0xce,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb, + 0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xad,0xad,0xad, + 0xff,0xd3,0xd3,0xd3,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca, + 0xff,0xce,0xce,0xce,0xff,0xa8,0xa8,0xa8,0xff,0x58,0x58,0x58,0xff,0x67,0x67,0x67, + 0xff,0x4f,0x4f,0x4f,0xff,0x80,0x80,0x80,0xff,0xbb,0xbb,0xbb,0xff,0xb7,0xb7,0xb7, + 0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x6,0x80,0x80,0x80, + 0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7, + 0xfe,0xac,0xac,0xab,0xfe,0x58,0x58,0x57,0xff,0xb8,0xb8,0xb8,0xff,0xcd,0xcd,0xcd, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xac,0xac,0xac,0xff,0xd3,0xd3,0xd3, + 0xff,0xd0,0xd0,0xd0,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74,0xff,0x8a,0x8a,0x8a,0xff,0xc5,0xc5,0xc5, + 0xff,0x91,0x91,0x91,0xff,0x8b,0x8b,0x8b,0xff,0xb8,0xb8,0xb8,0xff,0xca,0xca,0xca, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3, + 0xff,0x93,0x93,0x93,0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9c,0xff,0x88,0x88,0x88, + 0xff,0x9c,0x9c,0x9c,0xff,0xc9,0xc9,0xc9,0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xaf,0xaf,0xaf,0xff,0x8b,0x8b,0x8b,0xff,0xa0,0xa0,0xa0,0xff,0xc8,0xc8,0xc8, + 0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca, + 0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74,0xff,0xaf,0xaf,0xaf,0xff,0x8b,0x8b,0x8b, + 0xff,0xa0,0xa0,0xa0,0xff,0xc8,0xc8,0xc8,0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xb0,0xb0,0xb0,0xff,0x8c,0x8c,0x8c,0xff,0x99,0x99,0x99,0xff,0xce,0xce,0xce, + 0xff,0xd0,0xd0,0xd0,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74,0xff,0x8c,0x8c,0x8c,0xff,0xc1,0xc1,0xc1, + 0xff,0xc7,0xc7,0xc7,0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x75,0x75,0x75,0xff,0xb4,0xb4,0xb4, + 0xff,0xc2,0xc2,0xc2,0xff,0xcf,0xcf,0xcf,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3,0xff,0x92,0x92,0x92,0xff,0x8d,0x8d,0x8d, + 0xff,0x51,0x51,0x51,0xff,0x26,0x26,0x26,0xff,0x82,0x82,0x82,0xff,0xba,0xba,0xba, + 0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80, + 0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95, + 0xfe,0xb8,0xb8,0xb7,0xfe,0xb0,0xb0,0xaf,0xfe,0x8b,0x8b,0x8a,0xff,0xba,0xba,0xba, + 0xff,0xc1,0xc1,0xc1,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xca,0xca,0xca, + 0xff,0xc3,0xc3,0xc3,0xff,0x75,0x75,0x75,0xff,0xb0,0xb0,0xb0,0xff,0xa7,0xa7,0xa7, + 0xff,0xca,0xca,0xca,0xff,0xc5,0xc5,0xc5,0xff,0xc6,0xc6,0xc6,0xff,0xc9,0xc9,0xc9, + 0xff,0xd5,0xd5,0xd5,0xff,0xb4,0xb4,0xb4,0xff,0xa8,0xa8,0xa8,0xff,0x91,0x91,0x91, + 0xff,0xaa,0xaa,0xaa,0xff,0x8d,0x8d,0x8d,0xff,0x7b,0x7b,0x7b,0xff,0x9e,0x9e,0x9e, + 0xff,0xc8,0xc8,0xc8,0xff,0xd2,0xd2,0xd2,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd, + 0xff,0xc6,0xc6,0xc6,0xff,0xb0,0xb0,0xb0,0xff,0x91,0x91,0x91,0xff,0xb2,0xb2,0xb2, + 0xff,0x72,0x72,0x72,0xff,0x8a,0x8a,0x8a,0xff,0xb7,0xb7,0xb7,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe, + 0xff,0x99,0x99,0x99,0xff,0xa9,0xa9,0xa9,0xff,0x8f,0x8f,0x8f,0xff,0x82,0x82,0x82, + 0xff,0xb7,0xb7,0xb7,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcd,0xcd,0xcd, + 0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x99,0x99,0x99,0xff,0xa9,0xa9,0xa9, + 0xff,0x8f,0x8f,0x8f,0xff,0x82,0x82,0x82,0xff,0xb8,0xb8,0xb8,0xff,0xd2,0xd2,0xd2, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xbd,0xbd,0xbd, + 0xff,0xa4,0xa4,0xa4,0xff,0xb2,0xb2,0xb2,0xff,0x73,0x73,0x73,0xff,0x97,0x97,0x97, + 0xff,0xbe,0xbe,0xbe,0xff,0xc8,0xc8,0xc8,0xff,0xc6,0xc6,0xc6,0xff,0xc8,0xc8,0xc8, + 0xff,0xd6,0xd6,0xd6,0xff,0xb4,0xb4,0xb4,0xff,0xb2,0xb2,0xb2,0xff,0x94,0x94,0x94, + 0xff,0x83,0x83,0x83,0xff,0xb7,0xb7,0xb7,0xff,0xcf,0xcf,0xcf,0xff,0xd0,0xd0,0xd0, + 0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x9d,0x9d,0x9d, + 0xff,0xb6,0xb6,0xb6,0xff,0xa0,0xa0,0xa0,0xff,0xbf,0xbf,0xbf,0xff,0xcd,0xcd,0xcd, + 0xff,0xd0,0xd0,0xd0,0xff,0xcd,0xcd,0xcd,0xff,0xc5,0xc5,0xc5,0xff,0xae,0xae,0xae, + 0xff,0x78,0x78,0x78,0xff,0x92,0x92,0x92,0xff,0x51,0x51,0x51,0xff,0x80,0x80,0x80, + 0xff,0xbb,0xbb,0xba,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81, + 0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7,0xfe,0xb0,0xb0,0xaf,0xfe,0x62,0x62,0x61, + 0xff,0x8f,0x8f,0x8f,0xff,0xbf,0xbf,0xbe,0xff,0xcf,0xcf,0xcf,0xff,0xce,0xce,0xce, + 0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x98,0x98,0x98,0xff,0xa9,0xa9,0xa9, + 0xff,0x9f,0x9f,0x9f,0xff,0xa6,0xa6,0xa6,0xff,0xd1,0xd1,0xd1,0xff,0xc2,0xc2,0xc2, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0x9a,0x9a,0x9a,0xff,0x8a,0x8a,0x8a, + 0xff,0xbc,0xbc,0xbc,0xff,0x61,0x61,0x61,0xff,0x53,0x53,0x53,0xff,0x72,0x72,0x72, + 0xff,0x91,0x91,0x91,0xff,0xc6,0xc6,0xc6,0xff,0x92,0x92,0x92,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x84,0x84,0x84,0xff,0xa8,0xa8,0xa8,0xff,0x96,0x96,0x96, + 0xff,0x4f,0x4f,0x4f,0xff,0x5f,0x5f,0x5f,0xff,0x81,0x81,0x81,0xff,0xb0,0xb0,0xb0, + 0xff,0xb1,0xb1,0xb1,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89, + 0xff,0x89,0x89,0x89,0xff,0xbb,0xbb,0xbb,0xff,0x61,0x61,0x61,0xff,0x53,0x53,0x53, + 0xff,0x75,0x75,0x75,0xff,0xb0,0xb0,0xb0,0xff,0xb1,0xb1,0xb1,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0xbb,0xbb,0xbb, + 0xff,0x61,0x61,0x61,0xff,0x53,0x53,0x53,0xff,0x7e,0x7e,0x7e,0xff,0xc6,0xc6,0xc6, + 0xff,0x92,0x92,0x92,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88, + 0xff,0xa9,0xa9,0xa9,0xff,0x96,0x96,0x96,0xff,0x50,0x50,0x50,0xff,0x5f,0x5f,0x5f, + 0xff,0xa9,0xa9,0xa9,0xff,0xc2,0xc2,0xc2,0xff,0xac,0xac,0xac,0xff,0xad,0xad,0xad, + 0xff,0xac,0xac,0xac,0xff,0xb0,0xb0,0xb0,0xff,0xc4,0xc4,0xc4,0xff,0x62,0x62,0x62, + 0xff,0x53,0x53,0x53,0xff,0x75,0x75,0x75,0xff,0xac,0xac,0xac,0xff,0xb3,0xb3,0xb3, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88,0xff,0x8a,0x8a,0x8a, + 0xff,0xb8,0xb8,0xb8,0xff,0x5c,0x5c,0x5c,0xff,0x59,0x59,0x59,0xff,0x99,0x99,0x99, + 0xff,0xb1,0xb1,0xb1,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x85,0x85,0x85, + 0xff,0x88,0x88,0x88,0xff,0xbb,0xbb,0xbb,0xff,0x59,0x59,0x59,0xff,0x2f,0x2f,0x2e, + 0xff,0x81,0x81,0x81,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80, + 0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb8,0xfe,0xad,0xad,0xac, + 0xfe,0x4f,0x4f,0x4f,0xff,0x27,0x27,0x27,0xff,0x95,0x95,0x95,0xff,0xa7,0xa7,0xa7, + 0xff,0x93,0x93,0x93,0xff,0x92,0x92,0x92,0xff,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab, + 0xff,0x7d,0x7d,0x7d,0xff,0x53,0x53,0x53,0xff,0x7e,0x7e,0x7e,0xff,0xb6,0xb6,0xb6, + 0xff,0x8d,0x8d,0x8d,0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89,0xff,0x92,0x92,0x92, + 0xff,0xaa,0xaa,0xaa,0xff,0x55,0x55,0x55,0xff,0x4b,0x4b,0x4b,0xff,0x7b,0x7b,0x7b, + 0xff,0x97,0x97,0x97,0xff,0xb8,0xb8,0xb8,0xff,0xa0,0xa0,0xa0,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89,0xff,0xaa,0xaa,0xaa,0xff,0x7c,0x7c,0x7c, + 0xff,0x4b,0x4b,0x4b,0xff,0x56,0x56,0x56,0xff,0x98,0x98,0x98,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa,0xff,0x55,0x55,0x55,0xff,0x4b,0x4b,0x4b, + 0xff,0x7b,0x7b,0x7b,0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9,0xff,0x8e,0x8e,0x8e, + 0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xaa,0xaa,0xaa, + 0xff,0x55,0x55,0x55,0xff,0x4b,0x4b,0x4b,0xff,0x7f,0x7f,0x7f,0xff,0xc9,0xc9,0xc9, + 0xff,0x9f,0x9f,0x9f,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x89,0x89,0x89, + 0xff,0xaa,0xaa,0xaa,0xff,0x7c,0x7c,0x7c,0xff,0x4b,0x4b,0x4b,0xff,0x56,0x56,0x56, + 0xff,0xb3,0xb3,0xb3,0xff,0xbc,0xbc,0xbc,0xff,0x8d,0x8d,0x8d,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xa9,0xa9,0xa9,0xff,0x55,0x55,0x55, + 0xff,0x4b,0x4b,0x4b,0xff,0x7b,0x7b,0x7b,0xff,0x9f,0x9f,0x9f,0xff,0xc6,0xc6,0xc6, + 0xff,0xb0,0xb0,0xb0,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xb1,0xb1,0xb1, + 0xff,0xb0,0xb0,0xb0,0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e,0xff,0x97,0x97,0x97, + 0xff,0xbe,0xbe,0xbe,0xff,0x8d,0x8d,0x8d,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x91,0x91,0x91,0xff,0xa9,0xa9,0xa9,0xff,0x53,0x53,0x53,0xff,0x44,0x44,0x44, + 0xff,0x34,0x34,0x34,0xff,0x82,0x82,0x82,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7, + 0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80, + 0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7, + 0xfe,0xae,0xae,0xad,0xfe,0x44,0x44,0x43,0xff,0x68,0x68,0x68,0xff,0xd0,0xd0,0xd0, + 0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xce,0xce,0xce, + 0xff,0xa9,0xa9,0xa9,0xff,0x5a,0x5a,0x5a,0xff,0x77,0x77,0x77,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb, + 0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xa4,0xa4,0xa4, + 0xff,0x8e,0x8e,0x8e,0xff,0xa8,0xa8,0xa8,0xff,0xd1,0xd1,0xd1,0xff,0xcc,0xcc,0xcc, + 0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xce,0xce,0xce,0xff,0xa9,0xa9,0xa9, + 0xff,0x59,0x59,0x59,0xff,0x76,0x76,0x76,0xff,0xa7,0xa7,0xa7,0xff,0x8a,0x8a,0x8a, + 0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce,0xff,0xca,0xca,0xca,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55, + 0xff,0xa5,0xa5,0xa5,0xff,0x95,0x95,0x95,0xff,0xc9,0xc9,0xc9,0xff,0xce,0xce,0xce, + 0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0x7b,0x7b,0x7b,0xff,0x55,0x55,0x55,0xff,0xa4,0xa4,0xa4,0xff,0xb5,0xb5,0xb5, + 0xff,0xd1,0xd1,0xd1,0xff,0xcc,0xcc,0xcc,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca, + 0xff,0xce,0xce,0xce,0xff,0xa9,0xa9,0xa9,0xff,0x59,0x59,0x59,0xff,0x76,0x76,0x76, + 0xff,0xb0,0xb0,0xb0,0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xcc,0xcc,0xcc,0xff,0xc7,0xc7,0xc7,0xff,0x7b,0x7b,0x7b, + 0xff,0x55,0x55,0x55,0xff,0xa5,0xa5,0xa5,0xff,0x92,0x92,0x92,0xff,0xb9,0xb9,0xb9, + 0xff,0xd5,0xd5,0xd5,0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xcd,0xcd,0xcd,0xff,0xa6,0xa6,0xa6,0xff,0x61,0x61,0x61,0xff,0xbf,0xbf,0xbf, + 0xff,0xd5,0xd5,0xd5,0xff,0xce,0xce,0xce,0xff,0xcb,0xcb,0xcb,0xff,0xcb,0xcb,0xcb, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0x7a,0x7a,0x7a,0xff,0x54,0x54,0x54, + 0xff,0x8c,0x8c,0x8c,0xff,0x2b,0x2b,0x2b,0xff,0x7f,0x7f,0x7f,0xff,0xba,0xba,0xba, + 0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80, + 0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95, + 0xfe,0xb8,0xb8,0xb7,0xfe,0xad,0xad,0xac,0xfe,0x59,0x59,0x58,0xff,0x91,0x91,0x90, + 0xff,0xc3,0xc3,0xc3,0xff,0xbc,0xbc,0xbc,0xff,0xbc,0xbc,0xbc,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xff,0x93,0x93,0x93,0xff,0x95,0x95,0x95,0xff,0xba,0xba,0xba, + 0xff,0xcb,0xcb,0xcb,0xff,0xc2,0xc2,0xc2,0xff,0xbc,0xbc,0xbc,0xff,0xbd,0xbd,0xbd, + 0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74,0xff,0xaf,0xaf,0xaf, + 0xff,0x8a,0x8a,0x8a,0xff,0xa8,0xa8,0xa8,0xff,0xb3,0xb3,0xb3,0xff,0xca,0xca,0xca, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3, + 0xff,0x93,0x93,0x93,0xff,0x94,0x94,0x94,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0x98,0x98,0x98,0xff,0xc9,0xc9,0xc9,0xff,0xc3,0xc3,0xc3,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xc5,0xc5,0xc5,0xff,0x91,0x91,0x91,0xff,0x9a,0x9a,0x9a,0xff,0xc9,0xc9,0xc9, + 0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc,0xff,0xca,0xca,0xca, + 0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74,0xff,0xbd,0xbd,0xbd,0xff,0x87,0x87,0x87, + 0xff,0xb9,0xb9,0xb9,0xff,0xca,0xca,0xca,0xff,0xbe,0xbe,0xbe,0xff,0xbc,0xbc,0xbc, + 0xff,0xbf,0xbf,0xbf,0xff,0xd3,0xd3,0xd3,0xff,0x92,0x92,0x92,0xff,0x99,0x99,0x99, + 0xff,0xa2,0xa2,0xa2,0xff,0x9a,0x9a,0x9a,0xff,0xc9,0xc9,0xc9,0xff,0xc3,0xc3,0xc3, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3, + 0xff,0x74,0x74,0x74,0xff,0xc5,0xc5,0xc5,0xff,0x90,0x90,0x90,0xff,0x86,0x86,0x86, + 0xff,0xab,0xab,0xab,0xff,0xc4,0xc4,0xc4,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xa0,0xa0,0xa0,0xff,0xae,0xae,0xae, + 0xff,0xcd,0xcd,0xcd,0xff,0xcf,0xcf,0xcf,0xff,0xc4,0xc4,0xc4,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xca,0xca,0xca,0xff,0xc3,0xc3,0xc3,0xff,0x74,0x74,0x74, + 0xff,0xa7,0xa7,0xa7,0xff,0x63,0x63,0x63,0xff,0x4e,0x4e,0x4e,0xff,0x7f,0x7f,0x7f, + 0xff,0xbb,0xbb,0xbb,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81, + 0xfb,0x95,0x95,0x95,0xfe,0xb7,0xb7,0xb7,0xfe,0xad,0xad,0xac,0xfe,0x50,0x50,0x4f, + 0xff,0x50,0x50,0x50,0xff,0xb6,0xb6,0xb6,0xff,0xcf,0xcf,0xcf,0xff,0xcc,0xcc,0xcc, + 0xff,0xce,0xce,0xce,0xff,0xc7,0xc7,0xc7,0xff,0xb0,0xb0,0xb0,0xff,0xae,0xae,0xae, + 0xff,0x9f,0x9f,0x9f,0xff,0xa5,0xa5,0xa5,0xff,0xc7,0xc7,0xc7,0xff,0xd2,0xd2,0xd2, + 0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe,0xff,0x98,0x98,0x98, + 0xff,0x9b,0x9b,0x9b,0xff,0xa8,0xa8,0xa8,0xff,0x65,0x65,0x65,0xff,0x8f,0x8f,0x8f, + 0xff,0xc7,0xc7,0xc7,0xff,0xd2,0xd2,0xd2,0xff,0xcd,0xcd,0xcd,0xff,0xce,0xce,0xce, + 0xff,0xc6,0xc6,0xc6,0xff,0xb0,0xb0,0xb0,0xff,0xa0,0xa0,0xa0,0xff,0xa8,0xa8,0xa8, + 0xff,0x61,0x61,0x61,0xff,0x7d,0x7d,0x7d,0xff,0xbb,0xbb,0xbb,0xff,0xd0,0xd0,0xd0, + 0xff,0xcb,0xcb,0xcb,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xc3,0xc3,0xc3, + 0xff,0xcd,0xcd,0xcd,0xff,0x79,0x79,0x79,0xff,0x66,0x66,0x66,0xff,0x8d,0x8d,0x8d, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcb,0xcb,0xcb,0xff,0xcd,0xcd,0xcd, + 0xff,0xcc,0xcc,0xcc,0xff,0xc6,0xc6,0xc6,0xff,0xab,0xab,0xab,0xff,0x60,0x60,0x60, + 0xff,0x76,0x76,0x76,0xff,0xb0,0xb0,0xb0,0xff,0xd0,0xd0,0xd0,0xff,0xcb,0xcb,0xcb, + 0xff,0xcc,0xcc,0xcc,0xff,0xce,0xce,0xce,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0x79,0x79,0x79,0xff,0x66,0x66,0x66,0xff,0x88,0x88,0x88,0xff,0xbc,0xbc,0xbc, + 0xff,0xd0,0xd0,0xd0,0xff,0xcb,0xcb,0xcb,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc, + 0xff,0xc3,0xc3,0xc3,0xff,0xcd,0xcd,0xcd,0xff,0x79,0x79,0x79,0xff,0x65,0x65,0x65, + 0xff,0x7d,0x7d,0x7d,0xff,0x9e,0x9e,0x9e,0xff,0xce,0xce,0xce,0xff,0xb1,0xb1,0xb1, + 0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xa7,0xa7,0xa7,0xff,0xa4,0xa4,0xa4, + 0xff,0xaa,0xaa,0xaa,0xff,0x82,0x82,0x82,0xff,0xc1,0xc1,0xc1,0xff,0xcf,0xcf,0xcf, + 0xff,0xd0,0xd0,0xd0,0xff,0xcd,0xcd,0xcd,0xff,0xcc,0xcc,0xcc,0xff,0xbe,0xbe,0xbe, + 0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb4,0xb4,0xff,0x6f,0x6f,0x6f,0xff,0x2e,0x2e,0x2e, + 0xff,0x80,0x80,0x80,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80, + 0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7,0xfe,0xad,0xad,0xac, + 0xfe,0x46,0x46,0x46,0xff,0x25,0x25,0x25,0xff,0x95,0x95,0x95,0xff,0xa7,0xa7,0xa7, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x8e,0x8e,0x8e,0xff,0xab,0xab,0xab, + 0xff,0x7d,0x7d,0x7d,0xff,0x54,0x54,0x54,0xff,0x69,0x69,0x69,0xff,0xc2,0xc2,0xc2, + 0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88,0xff,0x81,0x81,0x81, + 0xff,0xaa,0xaa,0xaa,0xff,0x8b,0x8b,0x8b,0xff,0x4b,0x4b,0x4b,0xff,0x56,0x56,0x56, + 0xff,0x92,0x92,0x92,0xff,0xc4,0xc4,0xc4,0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a, + 0xff,0x8a,0x8a,0x8a,0xff,0x84,0x84,0x84,0xff,0xaa,0xaa,0xaa,0xff,0x8b,0x8b,0x8b, + 0xff,0x4c,0x4c,0x4c,0xff,0x55,0x55,0x55,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5, + 0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x91,0x91,0x91, + 0xff,0xb9,0xb9,0xb9,0xff,0x59,0x59,0x59,0xff,0x4c,0x4c,0x4c,0xff,0x76,0x76,0x76, + 0xff,0xc7,0xc7,0xc7,0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x89,0x89,0x89,0xff,0xae,0xae,0xae,0xff,0x8b,0x8b,0x8b,0xff,0x4c,0x4c,0x4c, + 0xff,0x55,0x55,0x55,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x8b,0x8b,0x8b, + 0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a,0xff,0x92,0x92,0x92,0xff,0xb8,0xb8,0xb8, + 0xff,0x59,0x59,0x59,0xff,0x4c,0x4c,0x4c,0xff,0x6d,0x6d,0x6d,0xff,0xad,0xad,0xad, + 0xff,0xb4,0xb4,0xb4,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x8a,0x8a,0x8a, + 0xff,0x91,0x91,0x91,0xff,0xb9,0xb9,0xb9,0xff,0x59,0x59,0x59,0xff,0x4c,0x4c,0x4c, + 0xff,0x6d,0x6d,0x6d,0xff,0x8e,0x8e,0x8e,0xff,0xc1,0xc1,0xc1,0xff,0x8d,0x8d,0x8d, + 0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0xaa,0xaa,0xaa, + 0xff,0x8b,0x8b,0x8b,0xff,0x4e,0x4e,0x4e,0xff,0x60,0x60,0x60,0xff,0xaf,0xaf,0xaf, + 0xff,0xb5,0xb5,0xb5,0xff,0x8b,0x8b,0x8b,0xff,0x8a,0x8a,0x8a,0xff,0x88,0x88,0x88, + 0xff,0x8a,0x8a,0x8a,0xff,0xb6,0xb6,0xb6,0xff,0x58,0x58,0x58,0xff,0x44,0x44,0x44, + 0xff,0x34,0x34,0x34,0xff,0x82,0x82,0x82,0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7, + 0xff,0x95,0x95,0x95,0xff,0x81,0x81,0x81,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80, + 0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfb,0x95,0x95,0x95,0xfe,0xb8,0xb8,0xb7, + 0xfe,0xae,0xae,0xad,0xfe,0x44,0x44,0x43,0xff,0x68,0x68,0x68,0xff,0xd0,0xd0,0xd0, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcb,0xcb,0xcb,0xff,0xce,0xce,0xce, + 0xff,0xa9,0xa9,0xa9,0xff,0x5a,0x5a,0x5a,0xff,0x77,0x77,0x77,0xff,0xcf,0xcf,0xcf, + 0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac, + 0xff,0xbc,0xbc,0xbc,0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x61,0x61,0x61, + 0xff,0xaf,0xaf,0xaf,0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad, + 0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc,0xff,0x83,0x83,0x83, + 0xff,0x4e,0x4e,0x4e,0xff,0x60,0x60,0x60,0xff,0xbb,0xbb,0xbb,0xff,0xcc,0xcc,0xcc, + 0xff,0xb1,0xb1,0xb1,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xb1,0xb1,0xb1, + 0xff,0xb0,0xb0,0xb0,0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e,0xff,0x91,0x91,0x91, + 0xff,0xca,0xca,0xca,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad, + 0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc,0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e, + 0xff,0x60,0x60,0x60,0xff,0xba,0xba,0xba,0xff,0xcc,0xcc,0xcc,0xff,0xb1,0xb1,0xb1, + 0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xb1,0xb1,0xb1,0xff,0xb0,0xb0,0xb0, + 0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e,0xff,0x90,0x90,0x90,0xff,0xae,0xae,0xae, + 0xff,0xc8,0xc8,0xc8,0xff,0xb1,0xb1,0xb1,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac, + 0xff,0xb1,0xb1,0xb1,0xff,0xb0,0xb0,0xb0,0xff,0x5c,0x5c,0x5c,0xff,0x4e,0x4e,0x4e, + 0xff,0x90,0x90,0x90,0xff,0xa4,0xa4,0xa4,0xff,0xb6,0xb6,0xb6,0xff,0xbf,0xbf,0xbf, + 0xff,0xad,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc, + 0xff,0x83,0x83,0x83,0xff,0x4e,0x4e,0x4e,0xff,0x61,0x61,0x61,0xff,0xbb,0xbb,0xbb, + 0xff,0xcc,0xcc,0xcc,0xff,0xb1,0xb1,0xb1,0xff,0xad,0xad,0xad,0xff,0xac,0xac,0xac, + 0xff,0xb1,0xb1,0xb1,0xff,0xb0,0xb0,0xb0,0xff,0x5b,0x5b,0x5b,0xff,0x4c,0x4c,0x4c, + 0xff,0x77,0x77,0x77,0xff,0x2b,0x2b,0x2b,0xff,0x80,0x80,0x80,0xff,0xbb,0xbb,0xbb, + 0xff,0xb7,0xb7,0xb7,0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80, + 0x5,0x80,0x80,0x80,0x56,0x80,0x80,0x80,0xe2,0x81,0x81,0x81,0xfc,0x96,0x96,0x96, + 0xfe,0xbb,0xbb,0xba,0xfe,0xad,0xad,0xac,0xff,0x5c,0x5c,0x5b,0xff,0xa9,0xa9,0xa9, + 0xff,0xd1,0xd1,0xd1,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xff,0x93,0x93,0x93,0xff,0x9b,0x9b,0x9b,0xff,0xe7,0xe7,0xe7, + 0xff,0xdb,0xdb,0xdb,0xff,0xd1,0xd1,0xd1,0xff,0xc8,0xc8,0xc8,0xff,0xc6,0xc6,0xc6, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0x75,0x75,0x75,0xff,0x8c,0x8c,0x8c, + 0xff,0xe3,0xe3,0xe3,0xff,0xea,0xea,0xea,0xff,0xdc,0xdc,0xdc,0xff,0xd1,0xd1,0xd1, + 0xff,0xc8,0xc8,0xc8,0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0x74,0x74,0x74,0xff,0x8c,0x8c,0x8c,0xff,0xe2,0xe2,0xe2,0xff,0xe2,0xe2,0xe2, + 0xff,0xd7,0xd7,0xd7,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xce,0xce,0xce,0xff,0xa7,0xa7,0xa7,0xff,0x61,0x61,0x61,0xff,0xc7,0xc7,0xc7, + 0xff,0xe8,0xe8,0xe8,0xff,0xdb,0xdb,0xdb,0xff,0xd1,0xd1,0xd1,0xff,0xc8,0xc8,0xc8, + 0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74, + 0xff,0x8c,0x8c,0x8c,0xff,0xe2,0xe2,0xe2,0xff,0xe2,0xe2,0xe2,0xff,0xd7,0xd7,0xd7, + 0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xce,0xce,0xce, + 0xff,0xa7,0xa7,0xa7,0xff,0x61,0x61,0x61,0xff,0xc7,0xc7,0xc7,0xff,0xea,0xea,0xea, + 0xff,0xe3,0xe3,0xe3,0xff,0xd7,0xd7,0xd7,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xce,0xce,0xce,0xff,0xa7,0xa7,0xa7,0xff,0x62,0x62,0x62, + 0xff,0xc7,0xc7,0xc7,0xff,0xeb,0xeb,0xeb,0xff,0xea,0xea,0xea,0xff,0xdc,0xdc,0xdc, + 0xff,0xd1,0xd1,0xd1,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0x74,0x74,0x74,0xff,0x8c,0x8c,0x8c,0xff,0xe2,0xe2,0xe2, + 0xff,0xe2,0xe2,0xe2,0xff,0xd7,0xd7,0xd7,0xff,0xcb,0xcb,0xcb,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xce,0xce,0xce,0xff,0xa7,0xa7,0xa7,0xff,0x60,0x60,0x60, + 0xff,0xb9,0xb9,0xb9,0xff,0x59,0x59,0x59,0xff,0x2f,0x2f,0x2f,0xff,0xac,0xac,0xac, + 0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54,0xfe,0xd,0xd,0xd, + 0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x1,0x80,0x80,0x80,0x5,0x80,0x80,0x80,0x59,0x80,0x80,0x80,0xef,0x88,0x88,0x88, + 0xfd,0xbd,0xbd,0xbd,0xfe,0xc0,0xc0,0xbf,0xff,0xb9,0xb9,0xb8,0xff,0xd7,0xd7,0xd7, + 0xff,0xec,0xec,0xec,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xda,0xda,0xda, + 0xff,0xdc,0xdc,0xdc,0xff,0xd4,0xd4,0xd4,0xff,0xdd,0xdd,0xdd,0xff,0xf9,0xf9,0xf9, + 0xff,0xf1,0xf1,0xf1,0xff,0xdf,0xdf,0xdf,0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7, + 0xff,0xc9,0xc9,0xc9,0xff,0xd6,0xd6,0xd6,0xff,0xb5,0xb5,0xb5,0xff,0xba,0xba,0xba, + 0xff,0xf7,0xf7,0xf7,0xff,0xfb,0xfb,0xfb,0xff,0xf1,0xf1,0xf1,0xff,0xdf,0xdf,0xdf, + 0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7,0xff,0xc9,0xc9,0xc9,0xff,0xd6,0xd6,0xd6, + 0xff,0xb5,0xb5,0xb5,0xff,0xba,0xba,0xba,0xff,0xf7,0xf7,0xf7,0xff,0xf8,0xf8,0xf8, + 0xff,0xe9,0xe9,0xe9,0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7, + 0xff,0xcf,0xcf,0xcf,0xff,0xd0,0xd0,0xd0,0xff,0xa2,0xa2,0xa2,0xff,0xe2,0xe2,0xe2, + 0xff,0xfa,0xfa,0xfa,0xff,0xf1,0xf1,0xf1,0xff,0xe0,0xe0,0xe0,0xff,0xc9,0xc9,0xc9, + 0xff,0xc7,0xc7,0xc7,0xff,0xc9,0xc9,0xc9,0xff,0xd6,0xd6,0xd6,0xff,0xb5,0xb5,0xb5, + 0xff,0xba,0xba,0xba,0xff,0xf7,0xf7,0xf7,0xff,0xf8,0xf8,0xf8,0xff,0xe9,0xe9,0xe9, + 0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7,0xff,0xc7,0xc7,0xc7,0xff,0xd0,0xd0,0xd0, + 0xff,0xd1,0xd1,0xd1,0xff,0xa2,0xa2,0xa2,0xff,0xe3,0xe3,0xe3,0xff,0xfb,0xfb,0xfb, + 0xff,0xf8,0xf8,0xf8,0xff,0xe9,0xe9,0xe9,0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xd0,0xd0,0xd0,0xff,0xd1,0xd1,0xd1,0xff,0xa2,0xa2,0xa2, + 0xff,0xe3,0xe3,0xe3,0xff,0xfb,0xfb,0xfb,0xff,0xfb,0xfb,0xfb,0xff,0xf1,0xf1,0xf1, + 0xff,0xe0,0xe0,0xe0,0xff,0xc9,0xc9,0xc9,0xff,0xc7,0xc7,0xc7,0xff,0xc9,0xc9,0xc9, + 0xff,0xd6,0xd6,0xd6,0xff,0xb5,0xb5,0xb5,0xff,0xba,0xba,0xba,0xff,0xf7,0xf7,0xf7, + 0xff,0xf8,0xf8,0xf8,0xff,0xe9,0xe9,0xe9,0xff,0xd2,0xd2,0xd2,0xff,0xc7,0xc7,0xc7, + 0xff,0xc7,0xc7,0xc7,0xff,0xd0,0xd0,0xd0,0xff,0xd1,0xd1,0xd1,0xff,0xa2,0xa2,0xa2, + 0xff,0xe1,0xe1,0xe1,0xff,0xeb,0xeb,0xeb,0xff,0xa9,0xa9,0xa9,0xff,0xb6,0xb6,0xb5, + 0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c,0xfe,0x54,0x54,0x54, + 0xfe,0xd,0xd,0xd,0xfb,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x4b,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x2,0x80,0x80,0x80,0x1e,0x80,0x80,0x80,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xe5,0xe5,0xe5,0xfe,0xd3,0xd3,0xd3,0xff,0xc0,0xc0,0xc0,0xff,0xc4,0xc4,0xc3, + 0xff,0xd2,0xd2,0xd2,0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda, + 0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda,0xff,0xdc,0xdc,0xdc,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xda,0xda,0xda,0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3, + 0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xda,0xda,0xda, + 0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde, + 0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd,0xff,0xda,0xda,0xda, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xda,0xda,0xda,0xff,0xce,0xce,0xce, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd, + 0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd,0xff,0xda,0xda,0xda,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd, + 0xff,0xda,0xda,0xda,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xda,0xda,0xda,0xff,0xce,0xce,0xce,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd, + 0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcd,0xcd,0xcd, + 0xff,0xda,0xda,0xda,0xff,0xda,0xda,0xda,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xfe,0x7c,0x7c,0x7c, + 0xfe,0x52,0x52,0x52,0xfd,0x8,0x8,0x8,0xfb,0x0,0x0,0x0,0xaf,0x0,0x0,0x0, + 0x10,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x1d,0x80,0x80,0x80,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf2,0xf2,0xf2,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc4,0xc4,0xc4,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc4,0xc4,0xc4, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xfe,0x77,0x77,0x77,0xfe,0x27,0x27,0x27,0xfc,0x0,0x0,0x0,0xed,0x0,0x0,0x0, + 0x4e,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x80,0x80,0x80,0x1d,0x80,0x80,0x80,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf4,0xf4,0xf4,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xba,0xba,0xba,0xff,0xaa,0xaa,0xaa,0xff,0xd5,0xd5,0xd5, + 0xff,0xd8,0xd8,0xd8,0xff,0xd8,0xd8,0xd8,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0xdb,0xdb,0xdb,0xff,0xec,0xec,0xec, + 0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x7e,0x7e,0x7e,0xfe,0x58,0x58,0x58,0xfd,0x7,0x7,0x7,0xfc,0x0,0x0,0x0, + 0xaf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf4,0xf4,0xf4,0xff,0xc6,0xc6,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x7b,0x7b,0x7b,0xff,0x28,0x28,0x28, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d, + 0xff,0x1d,0x1d,0x1d,0xff,0x1d,0x1d,0x1d,0xff,0x36,0x36,0x36,0xff,0xdc,0xdc,0xdc, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xfe,0x70,0x70,0x70,0xfd,0xe,0xe,0xe,0xfc,0x0,0x0,0x0, + 0xdf,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0x10,0x10,0x10, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x2,0x1,0xff,0x1,0x3,0x1, + 0xff,0x1,0x2,0x1,0xff,0x1,0x2,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2,0xff,0x1e,0x1e,0x1e,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfd,0xe,0xe,0xe,0xfd,0x0,0x0,0x0, + 0xe0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x4,0x0,0xff,0x1,0x15,0x0, + 0xff,0x1,0x13,0x0,0xff,0x0,0x3,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x1,0x0,0xff,0x0,0x3,0x0,0xff,0x1,0x45,0x0,0xff,0x3,0xaa,0x0, + 0xff,0x6,0x9c,0x0,0xff,0x2,0x3e,0x0,0xff,0x0,0x3,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x1,0x1,0x0,0xff,0x1,0x15,0x1,0xff,0x11,0xab,0xb,0xff,0x12,0xc9,0xb, + 0xff,0x9,0xbb,0x1,0xff,0x6,0x9c,0x0,0xff,0x0,0x12,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x1,0x1,0x0,0xff,0xd,0x14,0x9,0xff,0x75,0xa5,0x55,0xff,0x7c,0xc3,0x5a, + 0xff,0x13,0xc8,0xb,0xff,0x3,0xaa,0x0,0xff,0x0,0x14,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x17,0x17,0x17,0xff,0x10,0x10,0x10,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x1,0x1,0x0,0xff,0x2,0x3,0x1,0xff,0x34,0x42,0x26,0xff,0x75,0xa5,0x55, + 0xff,0x12,0xac,0xa,0xff,0x1,0x46,0x0,0xff,0x0,0x3,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xb,0xb,0xb,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x13,0x13,0x13, + 0xff,0x3,0x3,0x3,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa9,0xa9,0xa9, + 0xff,0x18,0x18,0x18,0xff,0x11,0x11,0x11,0xff,0x71,0x71,0x71,0xff,0x86,0x86,0x86, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x3,0x4,0x2,0xff,0xf,0x15,0xb, + 0xff,0x3,0x16,0x2,0xff,0x1,0x4,0x0,0xff,0x0,0x1,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1, + 0xff,0x15,0x15,0x15,0xff,0x72,0x72,0x72,0xff,0x88,0x88,0x88,0xff,0x88,0x88,0x88, + 0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x88,0xff,0x88,0x88,0x88,0xff,0x85,0x85,0x85, + 0xff,0x45,0x45,0x45,0xff,0x4,0x4,0x4,0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xb3,0xb3,0xb3, + 0xff,0x46,0x46,0x46,0xff,0x24,0x24,0x24,0xff,0x7a,0x7a,0x7a,0xff,0x96,0x96,0x96, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x3,0x3,0x3,0xff,0x14,0x14,0x14, + 0xff,0x15,0x17,0x15,0xff,0x15,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15, + 0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x16,0xff,0x15,0x15,0x15, + 0xff,0x5c,0x5c,0x5b,0xff,0x87,0x87,0x87,0xff,0x7b,0x7b,0x7b,0xff,0x71,0x71,0x71, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x77,0x77,0x77,0xff,0x7e,0x7e,0x7e, + 0xff,0x8e,0x8e,0x8e,0xff,0x48,0x48,0x48,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x16, + 0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15,0xff,0x16,0x16,0x15, + 0xff,0x15,0x15,0x15,0xff,0x15,0x15,0x15,0xff,0x13,0x13,0x13,0xff,0x3,0x3,0x3, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb3,0xb3,0xb3,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xb4,0xb4,0xb4,0xff,0xab,0xab,0xab,0xff,0xb6,0xb6,0xb6,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x2,0x2,0x2,0xff,0x2d,0x2d,0x2d,0xff,0x80,0x81,0x80, + 0xff,0x88,0x89,0x88,0xff,0x89,0x89,0x89,0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89, + 0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x90,0x90,0x8f,0xff,0x81,0x81,0x81,0xff,0x6c,0x6c,0x6c,0xff,0x1a,0x1a,0x1a, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0x2d,0x2d,0x2d,0xff,0x72,0x72,0x72, + 0xff,0x7f,0x7f,0x7f,0xff,0x89,0x89,0x88,0xff,0x89,0x89,0x89,0xff,0x89,0x89,0x89, + 0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89,0xff,0x8a,0x8a,0x89, + 0xff,0x89,0x89,0x89,0xff,0x88,0x88,0x88,0xff,0x85,0x85,0x85,0xff,0x42,0x42,0x42, + 0xff,0x3,0x3,0x3,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xba,0xba,0xba,0xff,0xb7,0xb7,0xb7,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xbb,0xbb,0xbb, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0xc,0xc,0xc,0xff,0x64,0x64,0x64,0xff,0x77,0x77,0x77, + 0xff,0x77,0x77,0x77,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x72,0x72,0x72,0xff,0x2c,0x2c,0x2c,0xff,0x2,0x2,0x2, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2,0xff,0x2f,0x2f,0x2f, + 0xff,0x73,0x73,0x73,0xff,0x77,0x77,0x77,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x79,0x79,0x79,0xff,0x7d,0x7d,0x7d, + 0xff,0x11,0x11,0x11,0xff,0x2,0x2,0x2,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0x1,0x81,0x81,0x81,0x1d,0x80,0x80,0x80,0xe1,0x8e,0x8e,0x8e, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc7,0xc7,0xc7,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbb,0xbb,0xbb, + 0xff,0x97,0x97,0x97,0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87, + 0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87,0xff,0x87,0x87,0x87,0xff,0x97,0x97,0x97, + 0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x7,0x7,0x7,0xff,0x42,0x42,0x42,0xff,0x4e,0x4e,0x4e, + 0xff,0x4e,0x4e,0x4e,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4a,0x4a,0x4a,0xff,0x1b,0x1b,0x1b,0xff,0x1,0x1,0x1, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x8,0x8,0x8,0xff,0x32,0x32,0x32, + 0xff,0x4d,0x4d,0x4d,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4e,0x4e,0x4e,0xff,0x45,0x45,0x45, + 0xff,0x9,0x9,0x9,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x80,0x80,0x80,0x1d,0x7f,0x7f,0x7f,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf5,0xf5,0xf5,0xff,0xc6,0xc6,0xc6,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8, + 0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x19,0x19,0x19,0xff,0x3d,0x3d,0x3d, + 0xff,0x40,0x40,0x40,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x45,0x45,0x45,0xff,0x48,0x48,0x48,0xff,0x41,0x41,0x41,0xff,0x19,0x19,0x19, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x25,0x25,0x25,0xff,0x47,0x47,0x47, + 0xff,0x48,0x48,0x48,0xff,0x42,0x42,0x42,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41,0xff,0x41,0x41,0x41, + 0xff,0x41,0x41,0x41,0xff,0x40,0x40,0x40,0xff,0x3d,0x3d,0x3d,0xff,0x19,0x19,0x19, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x80,0x80,0x80,0x1d,0x7f,0x7f,0x7f,0xe1,0x8d,0x8d,0x8d, + 0xfd,0xee,0xee,0xee,0xfe,0xf4,0xf4,0xf4,0xff,0xc6,0xc6,0xc6,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbd,0xbd,0xbe,0xff,0xbd,0xbd,0xbe,0xff,0xb6,0xb7,0xb7, + 0xff,0x86,0x86,0x86,0xff,0x7f,0x7f,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x87,0x87,0x87, + 0xff,0xb8,0xb8,0xb8,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x7,0x7,0x7, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x19,0x19,0x19,0xff,0x41,0x41,0x41,0xff,0x48,0x48,0x48,0xff,0x44,0x44,0x44, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x44,0x44,0x44,0xff,0x48,0x48,0x48, + 0xff,0x3e,0x3e,0x3e,0xff,0xe,0xe,0xe,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x7,0x7,0x7,0xff,0x1,0x1,0x1, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0x82, + 0x0,0x7e,0x7e,0x7e,0x1,0x7f,0x7f,0x80,0x1d,0x7e,0x7e,0x7e,0xe1,0x8c,0x8c,0x8c, + 0xfd,0xed,0xed,0xed,0xfe,0xf3,0xf3,0xf4,0xff,0xc4,0xc4,0xc5,0xff,0xbe,0xbe,0xbf, + 0xff,0xbe,0xbe,0xbf,0xff,0xbd,0xbd,0xbe,0xff,0xbd,0xbd,0xbe,0xff,0xb7,0xb7,0xb8, + 0xff,0x85,0x85,0x86,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x86,0x86,0x86, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x1,0x1,0x1,0xff,0x18,0x18,0x18,0xff,0x3d,0x3d,0x3d,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x3d,0x3d,0x3d, + 0xff,0x18,0x18,0x18,0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0x8e,0x0,0x69,0x69,0x82,0x0,0x7e,0x7e,0x8c, + 0x0,0x75,0x75,0x81,0x2,0x7b,0x7b,0x7e,0x1e,0x7d,0x7d,0x7e,0xe1,0x8b,0x8b,0x8c, + 0xfd,0xe5,0xe5,0xe7,0xfe,0xdf,0xdf,0xe2,0xff,0xa1,0xa1,0xa8,0xff,0x86,0x86,0x92, + 0xff,0x78,0x78,0x90,0xff,0x6c,0x6c,0x91,0xff,0x6c,0x6c,0x91,0xff,0x6b,0x6b,0x8f, + 0xff,0x66,0x66,0x75,0xff,0x73,0x73,0x7d,0xff,0x7c,0x7c,0x7f,0xff,0x7e,0x7e,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x80,0xff,0x85,0x85,0x85, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd, + 0xff,0xbe,0xbe,0xbd,0xff,0xb8,0xb8,0xb2,0xff,0xad,0xad,0xa0,0xff,0x8e,0x8e,0x69, + 0xff,0x8b,0x8b,0x61,0xff,0x8c,0x8c,0x61,0xff,0x8b,0x8b,0x60,0xff,0x8c,0x8c,0x60, + 0xff,0x95,0x95,0x60,0xff,0x99,0x9a,0x62,0xff,0xa7,0xa8,0x84,0xff,0xb9,0xb9,0xb2, + 0xff,0xbe,0xbe,0xbc,0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd, + 0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0x78,0x78,0x78,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x7,0x7,0x7,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8, + 0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x8,0x8,0x8,0xff,0x7,0x7,0x7, + 0xff,0x1,0x1,0x1,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x61,0x61,0x79,0x0,0x4e,0x4e,0x74,0x0,0x6a,0x6a,0x80,0x0,0x64,0x64,0x84, + 0x1,0x53,0x53,0x90,0x2,0x73,0x72,0x83,0x29,0x74,0x74,0x7d,0xe4,0x6c,0x6c,0x7a, + 0xfd,0x75,0x75,0x97,0xfe,0x47,0x47,0x81,0xff,0x3b,0x3c,0x7d,0xff,0x23,0x23,0x80, + 0xff,0x1a,0x1a,0x8c,0xff,0x24,0x23,0xaf,0xff,0x21,0x21,0xb1,0xff,0x22,0x22,0xb1, + 0xff,0x18,0x18,0x94,0xff,0x22,0x22,0x8a,0xff,0x42,0x43,0x7e,0xff,0x6b,0x6b,0x7f, + 0xff,0x7c,0x7c,0x81,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x85,0x85,0x85, + 0xff,0xb7,0xb7,0xb7,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbd,0xff,0xba,0xba,0xb5,0xff,0xaf,0xaf,0xa0, + 0xff,0x91,0x91,0x69,0xff,0x81,0x81,0x3b,0xff,0x6c,0x6c,0x15,0xff,0x6a,0x6a,0x5, + 0xff,0x73,0x74,0x1,0xff,0x74,0x75,0x1,0xff,0x74,0x75,0x1,0xff,0x74,0x75,0x1, + 0xff,0x73,0x73,0x3,0xff,0x75,0x76,0x9,0xff,0x7f,0x80,0x17,0xff,0x8c,0x8d,0x3e, + 0xff,0xa3,0xa3,0x84,0xff,0xba,0xba,0xb5,0xff,0xbe,0xbe,0xbc,0xff,0xbd,0xbd,0xbc, + 0xff,0xbd,0xbd,0xbd,0xff,0xb6,0xb6,0xb6,0xff,0x77,0x77,0x77,0xff,0xf,0xf,0xf, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0x9d, + 0x0,0x7f,0x7f,0x90,0x0,0x81,0x81,0xa0,0x0,0x70,0x71,0xa1,0x2,0x7a,0x7a,0x96, + 0x10,0x6d,0x6e,0x88,0x4e,0x4d,0x4e,0x7b,0xb2,0x2e,0x2e,0x7b,0xf9,0x24,0x24,0xa4, + 0xfe,0x19,0x18,0xc2,0xfe,0x7,0x6,0xca,0xff,0x11,0x10,0xda,0xff,0x14,0x12,0xe8, + 0xff,0xc,0xa,0xea,0xff,0xc,0x9,0xf3,0xff,0xb,0x9,0xf4,0xff,0xb,0x9,0xf2, + 0xff,0x7,0x5,0xec,0xff,0xf,0xd,0xe6,0xff,0x11,0x10,0xc9,0xff,0x1a,0x19,0x97, + 0xff,0x43,0x44,0x78,0xff,0x6f,0x6f,0x85,0xff,0x7e,0x7e,0x82,0xff,0x83,0x83,0x84, + 0xff,0xb7,0xb7,0xb7,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbd, + 0xff,0xb9,0xb9,0xb5,0xff,0xa7,0xa7,0x8e,0xff,0x8a,0x8a,0x48,0xff,0x77,0x78,0x17, + 0xff,0x75,0x76,0x4,0xff,0x7b,0x7c,0x1,0xff,0x7f,0x81,0x1,0xff,0x7e,0x80,0x1, + 0xff,0x7f,0x81,0x1,0xff,0x7f,0x81,0x1,0xff,0x80,0x82,0x1,0xff,0x7f,0x81,0x1, + 0xff,0x7c,0x7e,0x1,0xff,0x7d,0x7f,0x1,0xff,0x79,0x7a,0x4,0xff,0x73,0x74,0x3, + 0xff,0x72,0x73,0x11,0xff,0x8a,0x8a,0x49,0xff,0xa1,0xa1,0x83,0xff,0xb7,0xb7,0xb2, + 0xff,0xbc,0xbc,0xbc,0xff,0xb5,0xb5,0xb5,0xff,0x77,0x77,0x77,0xff,0xe,0xe,0xe, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xc9,0x0,0x81,0x81,0xc8, + 0x0,0x7e,0x7e,0xc1,0x1,0x78,0x78,0xb5,0x2,0x6a,0x6a,0x87,0x1b,0x6d,0x6d,0x88, + 0xa4,0x49,0x4a,0x8c,0xed,0x22,0x22,0xa6,0xfc,0x1a,0x19,0xd8,0xfe,0x15,0x14,0xef, + 0xfe,0xc,0x9,0xf3,0xfe,0xa,0x7,0xf3,0xff,0xc,0xa,0xf2,0xff,0xb,0x8,0xf2, + 0xff,0x13,0x10,0xf2,0xff,0xc,0xa,0xf3,0xff,0xf,0xd,0xf3,0xff,0xd,0xb,0xf2, + 0xff,0xa,0x8,0xf2,0xff,0x7,0x4,0xf1,0xff,0x9,0x6,0xf1,0xff,0x7,0x5,0xde, + 0xff,0xe,0xd,0xb2,0xff,0x29,0x29,0x82,0xff,0x5d,0x5d,0x7a,0xff,0x95,0x95,0x99, + 0xff,0xb9,0xb9,0xba,0xff,0xbd,0xbd,0xbc,0xff,0xbd,0xbd,0xba,0xff,0xa8,0xa8,0x93, + 0xff,0x8a,0x8b,0x48,0xff,0x7c,0x7d,0x12,0xff,0x7e,0x80,0x3,0xff,0x82,0x83,0x1, + 0xff,0x8c,0x8c,0x1,0xff,0x91,0x91,0x0,0xff,0x93,0x93,0x0,0xff,0x8f,0x8f,0x0, + 0xff,0x8f,0x8f,0x0,0xff,0x90,0x90,0x0,0xff,0x8f,0x90,0x0,0xff,0x90,0x90,0x0, + 0xff,0x90,0x90,0x0,0xff,0x8f,0x8f,0x0,0xff,0x8d,0x8d,0x0,0xff,0x8c,0x8c,0x0, + 0xff,0x82,0x83,0x1,0xff,0x7a,0x7b,0x2,0xff,0x76,0x77,0xc,0xff,0x87,0x87,0x43, + 0xff,0xb5,0xb5,0xa9,0xff,0xb5,0xb5,0xb4,0xff,0x77,0x77,0x77,0xff,0xf,0xf,0xe, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0xd9,0x0,0x80,0x80,0xcd,0x0,0x80,0x80,0xd0, + 0x1,0x7c,0x7c,0xac,0x5,0x7f,0x7f,0xa9,0x26,0x6c,0x6c,0x9b,0xa7,0x59,0x59,0xbc, + 0xf8,0x39,0x38,0xd7,0xfb,0x29,0x27,0xf1,0xfd,0x21,0x1e,0xf3,0xfe,0x1f,0x1d,0xf3, + 0xfe,0x21,0x1e,0xf4,0xfe,0x28,0x26,0xf6,0xff,0x2d,0x2b,0xf7,0xff,0x33,0x31,0xf9, + 0xff,0x37,0x35,0xfa,0xff,0x38,0x37,0xfa,0xff,0x39,0x37,0xfa,0xff,0x2d,0x2c,0xf7, + 0xff,0x25,0x22,0xf6,0xff,0x15,0x13,0xf3,0xff,0x9,0x7,0xf2,0xff,0x7,0x4,0xf1, + 0xff,0x7,0x5,0xec,0xff,0xb,0xa,0xca,0xff,0x1a,0x1a,0x8a,0xff,0x74,0x74,0x94, + 0xff,0xb9,0xb9,0xbc,0xff,0xbb,0xbb,0xb9,0xff,0xa5,0xa5,0x80,0xff,0x82,0x82,0x22, + 0xff,0x8a,0x8a,0x3,0xff,0x8e,0x8e,0x1,0xff,0x93,0x92,0x1,0xff,0x99,0x97,0x0, + 0xff,0xa1,0xa0,0x0,0xff,0xa7,0xa6,0x0,0xff,0xac,0xab,0x0,0xff,0xac,0xac,0x0, + 0xff,0xb0,0xb0,0x1,0xff,0xb2,0xb1,0x0,0xff,0xb1,0xb1,0x1,0xff,0xb3,0xb3,0x0, + 0xff,0xb2,0xb2,0x1,0xff,0xb1,0xb1,0x0,0xff,0xad,0xad,0x0,0xff,0xa6,0xa5,0x0, + 0xff,0x98,0x96,0x0,0xff,0x88,0x89,0x1,0xff,0x80,0x81,0x2,0xff,0x79,0x7a,0x4, + 0xff,0x86,0x87,0x38,0xff,0x99,0x99,0x7e,0xff,0x76,0x76,0x74,0xff,0xf,0xf,0xe, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd9,0xd9,0xd9, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x81,0x81,0xf1,0x0,0x7f,0x7f,0xcd,0x0,0x81,0x81,0xdf,0x1,0x7f,0x7f,0xd2, + 0x5,0x80,0x80,0xc2,0x56,0x81,0x81,0xb9,0xd7,0x72,0x72,0xda,0xf8,0x55,0x54,0xf7, + 0xfd,0x3a,0x39,0xf9,0xfe,0x2f,0x2e,0xf7,0xfe,0x31,0x2f,0xf8,0xfe,0x35,0x34,0xf9, + 0xff,0x3b,0x3a,0xfb,0xff,0x41,0x3f,0xfc,0xff,0x41,0x40,0xfc,0xff,0x42,0x41,0xfc, + 0xff,0x44,0x43,0xfc,0xff,0x45,0x44,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3f,0x3e,0xfb, + 0xff,0x3b,0x3a,0xfa,0xff,0x32,0x31,0xf9,0xff,0x21,0x1f,0xf5,0xff,0xf,0xd,0xf3, + 0xff,0x8,0x6,0xf1,0xff,0x8,0x5,0xf1,0xff,0x7,0x5,0xd8,0xff,0x22,0x22,0x97, + 0xff,0x87,0x87,0x9f,0xff,0xb2,0xb2,0x7c,0xff,0x99,0x99,0x14,0xff,0x9d,0x9c,0x2, + 0xff,0x9e,0x9d,0x1,0xff,0xa2,0xa0,0x0,0xff,0xa5,0xa4,0x0,0xff,0xaa,0xaa,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xb7,0xb8,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb7,0xb8,0x0, + 0xff,0xb7,0xb7,0x0,0xff,0xb9,0xba,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb6,0xb7,0x0, + 0xff,0xb5,0xb6,0x0,0xff,0xb8,0xb8,0x0,0xff,0xb6,0xb6,0x0,0xff,0xb4,0xb4,0x0, + 0xff,0xaf,0xae,0x0,0xff,0x9c,0x9b,0x0,0xff,0x88,0x88,0x0,0xff,0x7f,0x80,0x1, + 0xff,0x79,0x7b,0x1,0xff,0x72,0x73,0x10,0xff,0x6c,0x6c,0x46,0xff,0x12,0x12,0xc, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1,0x1,0x1,0xff,0x1d,0x1d,0x1d,0xff,0xd8,0xd8,0xd8, + 0xff,0xc4,0xc4,0xc4,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0, + 0x0,0x78,0x78,0xf5,0x0,0x82,0x82,0xe7,0x1,0x80,0x80,0xd9,0x5,0x7f,0x7f,0xd3, + 0x56,0x7f,0x7f,0xdf,0xe2,0x78,0x78,0xe9,0xfb,0x61,0x60,0xf8,0xfd,0x4a,0x49,0xfc, + 0xfe,0x3e,0x3d,0xfb,0xfe,0x3f,0x3e,0xfc,0xfe,0x43,0x41,0xfc,0xff,0x42,0x40,0xfc, + 0xff,0x46,0x44,0xfc,0xff,0x46,0x45,0xfc,0xff,0x48,0x47,0xfd,0xff,0x4d,0x4c,0xfc, + 0xff,0x52,0x51,0xfd,0xff,0x51,0x50,0xfd,0xff,0x51,0x50,0xfd,0xff,0x4d,0x4c,0xfc, + 0xff,0x49,0x48,0xfc,0xff,0x41,0x40,0xfc,0xff,0x3b,0x3a,0xfa,0xff,0x2f,0x2d,0xf8, + 0xff,0x24,0x21,0xf5,0xff,0x14,0x10,0xf2,0xff,0xa,0x7,0xf1,0xff,0xd,0xb,0xd6, + 0xff,0x2a,0x2a,0x86,0xff,0x9b,0x9b,0x1e,0xff,0xb1,0xb1,0x2,0xff,0xb2,0xb1,0x1, + 0xff,0xb1,0xb1,0x0,0xff,0xae,0xae,0x1,0xff,0xb1,0xb1,0x1,0xff,0xb3,0xb3,0x1, + 0xff,0xb6,0xb6,0x0,0xff,0xb8,0xb8,0x0,0xff,0xbc,0xbe,0x0,0xff,0xc0,0xc2,0x0, + 0xff,0xc5,0xc6,0x0,0xff,0xc7,0xc8,0x0,0xff,0xc3,0xc4,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xbb,0xbc,0x0,0xff,0xbb,0xbc,0x0,0xff,0xb7,0xb7,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xaf,0xae,0x0,0xff,0x9e,0x9d,0x0,0xff,0x88,0x89,0x0, + 0xff,0x7f,0x81,0x1,0xff,0x7d,0x7f,0x1,0xff,0x72,0x73,0x6,0xff,0x42,0x42,0x2, + 0xff,0x10,0x10,0x7,0xff,0xe,0xe,0xe,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0x10,0x10,0x10,0xff,0x2a,0x2a,0x2a,0xff,0xda,0xda,0xda, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x0,0x83,0x83,0xf2, + 0x0,0x81,0x81,0xf0,0x0,0x80,0x80,0xda,0x5,0x81,0x81,0xe6,0x56,0x7c,0x7c,0xe9, + 0xe2,0x6c,0x6c,0xf8,0xfb,0x64,0x64,0xfa,0xfd,0x57,0x57,0xfc,0xfe,0x49,0x48,0xfc, + 0xfe,0x46,0x44,0xfc,0xfe,0x4c,0x4b,0xfd,0xff,0x4c,0x4b,0xfd,0xff,0x50,0x4f,0xfc, + 0xff,0x4f,0x4e,0xfd,0xff,0x52,0x51,0xfd,0xff,0x53,0x52,0xfd,0xff,0x54,0x54,0xfc, + 0xff,0x58,0x57,0xfc,0xff,0x56,0x55,0xfd,0xff,0x58,0x58,0xfc,0xff,0x54,0x53,0xfc, + 0xff,0x52,0x51,0xfc,0xff,0x50,0x4f,0xfc,0xff,0x48,0x47,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x36,0x35,0xf9,0xff,0x2d,0x2b,0xf7,0xff,0x1f,0x1c,0xf3,0xff,0x15,0x12,0xf1, + 0xff,0xd,0xc,0xc9,0xff,0x53,0x53,0x56,0xff,0xa6,0xa6,0x9,0xff,0xb3,0xb3,0x1, + 0xff,0xb3,0xb3,0x1,0xff,0xb4,0xb4,0x0,0xff,0xb4,0xb4,0x1,0xff,0xb7,0xb7,0x0, + 0xff,0xbd,0xbe,0x0,0xff,0xc5,0xc7,0x0,0xff,0xca,0xcb,0x0,0xff,0xd3,0xd3,0x0, + 0xff,0xd9,0xd8,0x0,0xff,0xd9,0xd8,0x0,0xff,0xd7,0xd7,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xd3,0xd3,0x0,0xff,0xce,0xce,0x0,0xff,0xc7,0xc8,0x0,0xff,0xbf,0xc0,0x0, + 0xff,0xb7,0xb7,0x0,0xff,0xb1,0xb1,0x0,0xff,0xa8,0xa7,0x0,0xff,0x9c,0x9c,0x0, + 0xff,0x8c,0x8c,0x0,0xff,0x80,0x82,0x0,0xff,0x7e,0x80,0x1,0xff,0x6e,0x6f,0x1, + 0xff,0x69,0x69,0x3d,0xff,0x78,0x78,0x76,0xff,0x77,0x77,0x77,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78, + 0xff,0x78,0x78,0x78,0xff,0x78,0x78,0x78,0xff,0x81,0x81,0x81,0xff,0xce,0xce,0xce, + 0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x0,0x83,0x83,0xf0, + 0x0,0x7f,0x7f,0xf2,0x1,0x82,0x82,0xea,0x4b,0x7e,0x7e,0xeb,0xe2,0x68,0x68,0xf9, + 0xfb,0x5f,0x5e,0xfb,0xfe,0x59,0x58,0xfc,0xfe,0x53,0x52,0xfd,0xfe,0x4f,0x4e,0xfc, + 0xff,0x51,0x50,0xfd,0xff,0x53,0x52,0xfd,0xff,0x53,0x53,0xfc,0xff,0x57,0x57,0xfc, + 0xff,0x59,0x59,0xfc,0xff,0x62,0x61,0xfc,0xff,0x62,0x61,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x67,0x67,0xfb,0xff,0x67,0x67,0xfb,0xff,0x68,0x68,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x60,0x60,0xfb,0xff,0x59,0x59,0xfc,0xff,0x53,0x52,0xfc,0xff,0x4e,0x4d,0xfc, + 0xff,0x3f,0x3f,0xfc,0xff,0x3b,0x3a,0xfb,0xff,0x33,0x32,0xf9,0xff,0x22,0x1f,0xf3, + 0xff,0x17,0x15,0xee,0xff,0x16,0x14,0xbc,0xff,0x6c,0x6c,0x3b,0xff,0xb0,0xb0,0x3, + 0xff,0xb4,0xb4,0x2,0xff,0xb6,0xb6,0x1,0xff,0xb6,0xb6,0x0,0xff,0xc6,0xc6,0x0, + 0xff,0xd2,0xd2,0x0,0xff,0xd5,0xd5,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xd9,0xd9,0x0,0xff,0xd9,0xd8,0x0,0xff,0xd7,0xd7,0x0,0xff,0xd1,0xd0,0x0, + 0xff,0xc6,0xc6,0x0,0xff,0xbd,0xbd,0x0,0xff,0xb2,0xb2,0x0,0xff,0xae,0xad,0x0, + 0xff,0xa1,0xa0,0x0,0xff,0x92,0x91,0x0,0xff,0x81,0x82,0x0,0xff,0x77,0x78,0x1, + 0xff,0x6f,0x6f,0x13,0xff,0x93,0x93,0x76,0xff,0xb4,0xb4,0xb2,0xff,0xb5,0xb5,0xb5, + 0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb6, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x8a,0x8a,0x8a,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf0,0x0,0x82,0x82,0xf1, + 0x1,0x81,0x81,0xf0,0x1b,0x82,0x82,0xf0,0xb2,0x75,0x75,0xf6,0xfb,0x62,0x61,0xfb, + 0xfd,0x58,0x58,0xfc,0xfe,0x53,0x52,0xfc,0xfe,0x50,0x4f,0xfd,0xff,0x53,0x52,0xfd, + 0xff,0x56,0x56,0xfc,0xff,0x5b,0x5a,0xfb,0xff,0x61,0x61,0xfb,0xff,0x67,0x67,0xfb, + 0xff,0x69,0x69,0xfa,0xff,0x6c,0x6c,0xf8,0xff,0x6a,0x6a,0xf9,0xff,0x6f,0x6f,0xf7, + 0xff,0x6e,0x6e,0xf7,0xff,0x6e,0x6e,0xf7,0xff,0x6c,0x6c,0xf8,0xff,0x69,0x69,0xfa, + 0xff,0x69,0x69,0xfa,0xff,0x66,0x66,0xfb,0xff,0x5d,0x5c,0xfb,0xff,0x57,0x57,0xfc, + 0xff,0x51,0x50,0xfc,0xff,0x43,0x43,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x34,0x32,0xf9, + 0xff,0x1c,0x19,0xf2,0xff,0x8,0x6,0xe8,0xff,0x2b,0x2b,0x8c,0xff,0x9f,0x9f,0x13, + 0xff,0xb3,0xb3,0x2,0xff,0xb8,0xb9,0x1,0xff,0xc0,0xc1,0x0,0xff,0xd0,0xd0,0x0, + 0xff,0xd6,0xd5,0x0,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xd9,0xd8,0x0, + 0xff,0xd9,0xd9,0x0,0xff,0xdb,0xdb,0x3,0xff,0xdb,0xdb,0x3,0xff,0xdb,0xdb,0x2, + 0xff,0xdb,0xdb,0x2,0xff,0xda,0xda,0x1,0xff,0xd9,0xd8,0x0,0xff,0xd5,0xd4,0x0, + 0xff,0xca,0xca,0x0,0xff,0xbe,0xbf,0x0,0xff,0xb6,0xb7,0x0,0xff,0xb3,0xb3,0x0, + 0xff,0xb2,0xb1,0x0,0xff,0xa5,0xa4,0x0,0xff,0x91,0x91,0x0,0xff,0x80,0x82,0x0, + 0xff,0x74,0x75,0x1,0xff,0x65,0x65,0x1e,0xff,0xae,0xae,0xa4,0xff,0xbd,0xbd,0xbc, + 0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa0,0xa0,0x9f,0xff,0x81,0x81,0x81, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0,0x0,0x76,0x76,0xf6, + 0x1,0x82,0x82,0xf0,0x74,0x7b,0x7b,0xf3,0xf8,0x69,0x69,0xf9,0xfc,0x5d,0x5c,0xfc, + 0xfe,0x54,0x53,0xfc,0xfe,0x51,0x50,0xfc,0xff,0x4d,0x4d,0xfc,0xff,0x53,0x52,0xfc, + 0xff,0x58,0x58,0xfc,0xff,0x62,0x61,0xfb,0xff,0x69,0x69,0xfa,0xff,0x6d,0x6d,0xf8, + 0xff,0x6c,0x6c,0xf9,0xff,0x75,0x75,0xf5,0xff,0x7a,0x7a,0xf3,0xff,0x7c,0x7c,0xf2, + 0xff,0x79,0x79,0xef,0xff,0x7c,0x7c,0xf1,0xff,0x79,0x79,0xf4,0xff,0x72,0x72,0xf5, + 0xff,0x69,0x69,0xf9,0xff,0x69,0x69,0xfa,0xff,0x67,0x66,0xfb,0xff,0x5b,0x5a,0xfc, + 0xff,0x57,0x57,0xfc,0xff,0x51,0x50,0xfc,0xff,0x41,0x41,0xfc,0xff,0x3c,0x3b,0xfb, + 0xff,0x28,0x26,0xf5,0xff,0xe,0xc,0xf1,0xff,0x11,0xf,0xc9,0xff,0x67,0x67,0x56, + 0xff,0xba,0xb9,0x9,0xff,0xd0,0xcf,0x1,0xff,0xcf,0xcf,0x0,0xff,0xd5,0xd4,0x0, + 0xff,0xd4,0xd3,0x0,0xff,0xd7,0xd6,0x0,0xff,0xda,0xd9,0x4,0xff,0xe1,0xe0,0x7, + 0xff,0xe6,0xe6,0xb,0xff,0xef,0xef,0xf,0xff,0xf0,0xf0,0x10,0xff,0xf0,0xf0,0x10, + 0xff,0xf0,0xf0,0x10,0xff,0xeb,0xeb,0xe,0xff,0xe1,0xe1,0x7,0xff,0xdb,0xdb,0x4, + 0xff,0xcd,0xcd,0x0,0xff,0xbf,0xc1,0x0,0xff,0xbc,0xbd,0x0,0xff,0xb7,0xb8,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xab,0xab,0x0,0xff,0xa1,0x9f,0x0,0xff,0x8c,0x8c,0x0, + 0xff,0x7b,0x7d,0x1,0xff,0x68,0x68,0x8,0xff,0x8c,0x8c,0x6e,0xff,0xbc,0xbc,0xbb, + 0xff,0xbd,0xbd,0xbc,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xb6,0xb6,0xb5,0xff,0x89,0x89,0x89, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf1,0x0,0x80,0x80,0xf1, + 0xf,0x83,0x83,0xf1,0xaf,0x74,0x74,0xf6,0xfc,0x68,0x68,0xfa,0xfd,0x59,0x58,0xfc, + 0xfe,0x52,0x51,0xfc,0xff,0x4d,0x4c,0xfc,0xff,0x4a,0x49,0xfc,0xff,0x52,0x51,0xfc, + 0xff,0x58,0x57,0xfc,0xff,0x55,0x55,0xe9,0xff,0x70,0x70,0xf1,0xff,0x78,0x78,0xf4, + 0xff,0x81,0x80,0xf2,0xff,0x7d,0x7c,0xeb,0xff,0x72,0x6c,0xe6,0xff,0x50,0x4f,0xc8, + 0xff,0x4d,0x46,0xc2,0xff,0x55,0x55,0xbf,0xff,0x69,0x66,0xd3,0xff,0x75,0x74,0xec, + 0xff,0x76,0x76,0xf4,0xff,0x69,0x69,0xf8,0xff,0x69,0x69,0xfa,0xff,0x66,0x66,0xfb, + 0xff,0x59,0x59,0xfc,0xff,0x51,0x50,0xfc,0xff,0x47,0x47,0xfc,0xff,0x40,0x40,0xfc, + 0xff,0x33,0x32,0xf8,0xff,0x15,0x13,0xf2,0xff,0x7,0x5,0xea,0xff,0x23,0x22,0xa9, + 0xff,0x9c,0x9b,0x33,0xff,0xd7,0xd6,0x2,0xff,0xd0,0xd0,0x0,0xff,0xcf,0xce,0x0, + 0xff,0xd4,0xd4,0x0,0xff,0xd9,0xd8,0x2,0xff,0xea,0xea,0xd,0xff,0xe1,0xe1,0x15, + 0xff,0xb8,0xc4,0x3f,0xff,0x94,0x9e,0x66,0xff,0x85,0x7f,0x61,0xff,0x81,0x7f,0x49, + 0xff,0x9d,0xa4,0x41,0xff,0xd4,0xd6,0x1c,0xff,0xed,0xed,0x12,0xff,0xeb,0xeb,0xd, + 0xff,0xda,0xda,0x3,0xff,0xd1,0xd1,0x0,0xff,0xc7,0xc8,0x0,0xff,0xbd,0xbd,0x0, + 0xff,0xb4,0xb4,0x0,0xff,0xaf,0xaf,0x0,0xff,0xa9,0xa8,0x0,0xff,0x9d,0x9c,0x0, + 0xff,0x85,0x86,0x0,0xff,0x72,0x72,0x1,0xff,0x67,0x68,0x2a,0xff,0xad,0xad,0xa7, + 0xff,0xb6,0xb6,0xb5,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xbb,0xbb,0xbb, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xa9,0xa9,0xa9, + 0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0xf3,0x0,0x82,0x82,0xf0, + 0x1d,0x80,0x80,0xf2,0xe0,0x6c,0x6c,0xf9,0xfc,0x66,0x66,0xfa,0xfe,0x59,0x59,0xfc, + 0xfe,0x4f,0x4e,0xfd,0xff,0x48,0x47,0xfc,0xff,0x42,0x42,0xfc,0xff,0x45,0x44,0xfc, + 0xff,0x53,0x53,0xf7,0xff,0x56,0x56,0xdc,0xff,0x76,0x76,0xeb,0xff,0x83,0x82,0xf0, + 0xff,0x78,0x73,0xf3,0xff,0x45,0x2c,0xe2,0xff,0x26,0xd,0xc5,0xff,0x8,0x4,0x7d, + 0xff,0x7,0x2,0x7c,0xff,0x9,0x6,0x7d,0xff,0xf,0xb,0x89,0xff,0x2b,0x2a,0xa4, + 0xff,0x5e,0x60,0xd2,0xff,0x76,0x75,0xf1,0xff,0x6e,0x6e,0xf7,0xff,0x69,0x69,0xfa, + 0xff,0x61,0x60,0xfb,0xff,0x56,0x55,0xfc,0xff,0x52,0x51,0xfc,0xff,0x47,0x46,0xfc, + 0xff,0x3b,0x39,0xfa,0xff,0x24,0x22,0xf4,0xff,0xa,0x7,0xf2,0xff,0xa,0x8,0xd9, + 0xff,0x4d,0x4d,0x74,0xff,0xc3,0xc2,0xe,0xff,0xbb,0xbb,0x1,0xff,0xb6,0xb6,0x0, + 0xff,0xca,0xcb,0x0,0xff,0xd9,0xd8,0x7,0xff,0xaf,0xb1,0x32,0xff,0x6c,0x61,0x8b, + 0xff,0x34,0x1d,0xc8,0xff,0x1b,0xc,0xc2,0xff,0x17,0x3,0xc1,0xff,0x16,0x3,0xba, + 0xff,0x1d,0xe,0xb3,0xff,0x33,0x2a,0x8b,0xff,0x7e,0x7a,0x53,0xff,0xd9,0xda,0x1a, + 0xff,0xee,0xee,0x10,0xff,0xdb,0xda,0x2,0xff,0xd8,0xd8,0x0,0xff,0xcb,0xcb,0x0, + 0xff,0xb7,0xb8,0x0,0xff,0xb4,0xb4,0x0,0xff,0xac,0xab,0x0,0xff,0xa1,0x9f,0x0, + 0xff,0x8c,0x8c,0x0,0xff,0x79,0x7a,0x1,0xff,0x61,0x61,0x10,0xff,0x7d,0x7d,0x70, + 0xff,0x84,0x84,0x83,0xff,0x84,0x84,0x84,0xff,0x85,0x85,0x85,0xff,0x85,0x85,0x85, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x92,0x92,0x92, + 0xff,0xab,0xab,0xab,0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc, + 0xff,0xa9,0xa9,0xa9,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x72,0xf7,0x1,0x82,0x82,0xf2, + 0x1d,0x7a,0x7a,0xf4,0xe0,0x6a,0x6a,0xfa,0xfd,0x64,0x64,0xfb,0xfe,0x57,0x56,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3e,0x3d,0xfc,0xff,0x35,0x35,0xf6, + 0xff,0x3e,0x3e,0xe7,0xff,0x44,0x44,0xc4,0xff,0x67,0x66,0xc4,0xff,0x76,0x6f,0xed, + 0xff,0x4a,0x2a,0xf7,0xff,0x2c,0x3,0xe9,0xff,0x18,0x1,0xba,0xff,0x10,0x1,0xab, + 0xff,0x13,0x1,0xbb,0xff,0x13,0x1,0xba,0xff,0x10,0x1,0xac,0xff,0xd,0x2,0x99, + 0xff,0x18,0x11,0x99,0xff,0x4c,0x48,0xbe,0xff,0x7a,0x79,0xeb,0xff,0x74,0x74,0xf5, + 0xff,0x68,0x68,0xfa,0xff,0x5d,0x5d,0xfb,0xff,0x53,0x52,0xfc,0xff,0x4d,0x4c,0xfc, + 0xff,0x3d,0x3d,0xfb,0xff,0x2e,0x2c,0xf7,0xff,0xe,0xb,0xf2,0xff,0x6,0x4,0xee, + 0xff,0x11,0x10,0xb2,0xff,0x6f,0x6f,0x3d,0xff,0x85,0x85,0x7,0xff,0x81,0x80,0x2, + 0xff,0xac,0xab,0x6,0xff,0xa7,0xaa,0x4f,0xff,0x5b,0x4d,0xc2,0xff,0x3a,0x11,0xed, + 0xff,0x26,0x4,0xde,0xff,0x17,0x2,0xc5,0xff,0x17,0x2,0xc4,0xff,0x17,0x2,0xc4, + 0xff,0x17,0x2,0xc4,0xff,0x18,0x2,0xc4,0xff,0x1a,0xa,0xb6,0xff,0x57,0x59,0x62, + 0xff,0xd1,0xd6,0x1f,0xff,0xe9,0xe9,0xe,0xff,0xd8,0xd8,0x1,0xff,0xcf,0xcf,0x0, + 0xff,0xc3,0xc4,0x0,0xff,0xb7,0xb7,0x0,0xff,0xaf,0xaf,0x0,0xff,0xa4,0xa3,0x0, + 0xff,0x92,0x91,0x0,0xff,0x7f,0x80,0x0,0xff,0x65,0x66,0x3,0xff,0x62,0x62,0x3b, + 0xff,0x70,0x70,0x6e,0xff,0x70,0x70,0x70,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x75,0x75,0x75,0xff,0x87,0x87,0x87,0xff,0xa8,0xa8,0xa8,0xff,0xbb,0xbb,0xbb, + 0xff,0xbc,0xbc,0xbc,0xff,0xa8,0xa8,0xa8,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x67,0xfa,0x1,0x82,0x82,0xdc, + 0x4e,0x74,0x74,0xf4,0xef,0x69,0x69,0xfa,0xfd,0x62,0x62,0xfb,0xfe,0x52,0x51,0xfc, + 0xff,0x48,0x47,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x39,0x37,0xf9,0xff,0x2e,0x2d,0xf7, + 0xff,0x35,0x35,0xdb,0xff,0x46,0x46,0xb5,0xff,0x63,0x62,0xc6,0xff,0x74,0x61,0xf3, + 0xff,0x36,0x1b,0xdb,0xff,0x36,0x1c,0xdb,0xff,0x32,0x1e,0xd3,0xff,0x35,0x23,0xd2, + 0xff,0x35,0x23,0xd2,0xff,0x34,0x21,0xd1,0xff,0x2b,0x18,0xce,0xff,0x16,0x2,0xc0, + 0xff,0x14,0x1,0xb8,0xff,0x13,0xe,0x87,0xff,0x64,0x64,0xd0,0xff,0x7f,0x7f,0xf0, + 0xff,0x70,0x70,0xf7,0xff,0x69,0x69,0xfa,0xff,0x5c,0x5b,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x46,0x45,0xfc,0xff,0x3b,0x39,0xfa,0xff,0x16,0x13,0xf3,0xff,0x5,0x3,0xf1, + 0xff,0x6,0x4,0xdb,0xff,0x31,0x32,0x6d,0xff,0x64,0x65,0x11,0xff,0x5c,0x5d,0x9, + 0xff,0x75,0x7f,0x50,0xff,0x7a,0x6f,0xda,0xff,0x65,0x4c,0xe7,0xff,0x32,0x16,0xda, + 0xff,0x33,0x1e,0xd5,0xff,0x34,0x21,0xd2,0xff,0x36,0x23,0xd3,0xff,0x35,0x22,0xd3, + 0xff,0x31,0x1e,0xd0,0xff,0x1d,0xa,0xc6,0xff,0x17,0x2,0xc2,0xff,0x14,0xa,0x96, + 0xff,0x4d,0x60,0x64,0xff,0xd6,0xdb,0x1d,0xff,0xe6,0xe6,0x9,0xff,0xd8,0xd8,0x1, + 0xff,0xcf,0xcf,0x0,0xff,0xbc,0xbd,0x0,0xff,0xb4,0xb3,0x0,0xff,0xab,0xab,0x0, + 0xff,0x98,0x96,0x0,0xff,0x80,0x81,0x0,0xff,0x69,0x69,0x0,0xff,0x51,0x51,0x1e, + 0xff,0x18,0x18,0x14,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0x10,0x10,0x10,0xff,0x1e,0x1e,0x1e,0xff,0x58,0x58,0x57, + 0xff,0x84,0x84,0x83,0xff,0xb1,0xb1,0xb1,0xff,0xa8,0xa8,0xa8,0xff,0x86,0x86,0x86, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0xfa,0x1,0x82,0x82,0xed, + 0x7f,0x74,0x74,0xf5,0xfc,0x68,0x68,0xfa,0xfd,0x5c,0x5b,0xfc,0xfe,0x4d,0x4c,0xfc, + 0xff,0x44,0x43,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x2e,0x2c,0xf7,0xff,0x21,0x20,0xe9, + 0xff,0x2b,0x2b,0xc1,0xff,0x34,0x33,0x97,0xff,0x71,0x68,0xdb,0xff,0x78,0x64,0xef, + 0xff,0x50,0x3d,0xde,0xff,0x65,0x50,0xeb,0xff,0x6f,0x5a,0xf0,0xff,0x80,0x6b,0xfa, + 0xff,0x80,0x6b,0xf9,0xff,0x7b,0x66,0xf7,0xff,0x56,0x42,0xe2,0xff,0x35,0x23,0xd1, + 0xff,0x1f,0xc,0xc6,0xff,0x11,0x4,0xa6,0xff,0x2d,0x2d,0x9c,0xff,0x7c,0x7c,0xe5, + 0xff,0x80,0x80,0xf1,0xff,0x6c,0x6c,0xf9,0xff,0x5f,0x5e,0xfb,0xff,0x57,0x56,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x3d,0x3c,0xfb,0xff,0x25,0x23,0xf6,0xff,0x7,0x5,0xf1, + 0xff,0x6,0x3,0xea,0xff,0x19,0x1a,0x87,0xff,0x5e,0x5f,0x16,0xff,0x54,0x58,0x18, + 0xff,0x68,0x70,0xb5,0xff,0x87,0x72,0xf5,0xff,0x5c,0x49,0xe2,0xff,0x57,0x43,0xe3, + 0xff,0x6a,0x55,0xee,0xff,0x7b,0x66,0xf7,0xff,0x80,0x6b,0xfa,0xff,0x80,0x6b,0xfa, + 0xff,0x69,0x55,0xed,0xff,0x48,0x35,0xdb,0xff,0x24,0x12,0xc9,0xff,0x1b,0x9,0xbc, + 0xff,0x18,0x13,0x8d,0xff,0x96,0x9a,0x54,0xff,0xea,0xea,0xd,0xff,0xda,0xda,0x2, + 0xff,0xd4,0xd4,0x0,0xff,0xc6,0xc7,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb1,0xb0,0x0, + 0xff,0x9b,0x99,0x0,0xff,0x82,0x83,0x0,0xff,0x74,0x74,0x0,0xff,0x4d,0x4d,0x6, + 0xff,0xa,0xa,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2, + 0xff,0xc,0xc,0xc,0xff,0x42,0x42,0x42,0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7, + 0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0xfb,0x1,0x80,0x80,0xf2, + 0x7f,0x70,0x70,0xf7,0xfc,0x67,0x67,0xfb,0xfd,0x55,0x54,0xfc,0xfe,0x4a,0x49,0xfd, + 0xff,0x44,0x42,0xfc,0xff,0x3d,0x3c,0xfb,0xff,0x22,0x1f,0xf4,0xff,0x1f,0x1d,0xe8, + 0xff,0x12,0x11,0xa2,0xff,0x2c,0x30,0x86,0xff,0x8a,0x7b,0xef,0xff,0x94,0x7e,0xfc, + 0xff,0x82,0x6b,0xfb,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x82,0x6c,0xfa,0xff,0x7f,0x69,0xf9, + 0xff,0x5c,0x48,0xe6,0xff,0x19,0x8,0xbf,0xff,0x14,0x10,0x91,0xff,0x69,0x6d,0xca, + 0xff,0x83,0x83,0xf0,0xff,0x75,0x75,0xf5,0xff,0x68,0x68,0xfa,0xff,0x5d,0x5d,0xfb, + 0xff,0x51,0x50,0xfc,0xff,0x45,0x44,0xfc,0xff,0x2e,0x2b,0xf7,0xff,0xd,0xa,0xf2, + 0xff,0x5,0x2,0xea,0xff,0x19,0x19,0x87,0xff,0x5e,0x5f,0x16,0xff,0x58,0x57,0x43, + 0xff,0x6f,0x57,0xe5,0xff,0x9a,0x86,0xfc,0xff,0x85,0x6f,0xfb,0xff,0x86,0x70,0xfd, + 0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe, + 0xff,0x86,0x70,0xfd,0xff,0x80,0x6b,0xf9,0xff,0x76,0x61,0xf4,0xff,0x35,0x22,0xd1, + 0xff,0x12,0x5,0xa8,0xff,0x4f,0x57,0x7e,0xff,0xe2,0xe6,0x1d,0xff,0xe4,0xe4,0x8, + 0xff,0xd9,0xd8,0x0,0xff,0xcc,0xcc,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb1,0xb1,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0x87,0x87,0x0,0xff,0x74,0x75,0x0,0xff,0x4d,0x4d,0x3, + 0xff,0xa,0xa,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1, + 0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x1,0x1,0x1,0xff,0x2,0x2,0x2, + 0xff,0x2,0x2,0x2,0xff,0x5,0x5,0x5,0xff,0x40,0x40,0x40,0xff,0xa9,0xa9,0xa9, + 0xff,0xa7,0xa7,0xa7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfb,0x1,0x7d,0x7d,0xf3, + 0x80,0x6c,0x6c,0xf9,0xfd,0x63,0x63,0xfb,0xfd,0x53,0x52,0xfc,0xff,0x49,0x47,0xfd, + 0xff,0x42,0x40,0xfc,0xff,0x37,0x35,0xf9,0xff,0x21,0x1e,0xf4,0xff,0xc,0xb,0xd4, + 0xff,0xc,0xc,0x9a,0xff,0x34,0x34,0x9d,0xff,0x98,0x87,0xf6,0xff,0x9e,0x89,0xfc, + 0xff,0x8a,0x73,0xfd,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x8b,0x75,0xfe,0xff,0x89,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x89,0x73,0xfd, + 0xff,0x7b,0x65,0xf6,0xff,0x3a,0x27,0xd3,0xff,0x15,0xa,0xb0,0xff,0x59,0x5b,0xcd, + 0xff,0x84,0x84,0xef,0xff,0x80,0x80,0xf2,0xff,0x6b,0x6b,0xf9,0xff,0x63,0x62,0xfb, + 0xff,0x57,0x57,0xfc,0xff,0x48,0x47,0xfc,0xff,0x35,0x34,0xf9,0xff,0x15,0x11,0xf2, + 0xff,0x4,0x2,0xeb,0xff,0x19,0x19,0x88,0xff,0x60,0x61,0x18,0xff,0x43,0x42,0x53, + 0xff,0x5c,0x49,0xd2,0xff,0xa7,0x93,0xfc,0xff,0x94,0x7f,0xfd,0xff,0x87,0x70,0xfe, + 0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x89,0x73,0xfe,0xff,0x8b,0x75,0xfe, + 0xff,0x87,0x71,0xfe,0xff,0x8a,0x74,0xfd,0xff,0x86,0x70,0xfc,0xff,0x60,0x4c,0xe7, + 0xff,0x1e,0xd,0xc0,0xff,0x40,0x42,0x9d,0xff,0xd9,0xdb,0x1f,0xff,0xe6,0xe6,0xa, + 0xff,0xda,0xd9,0x0,0xff,0xcd,0xce,0x0,0xff,0xba,0xbb,0x0,0xff,0xb1,0xb1,0x0, + 0xff,0xa0,0x9f,0x0,0xff,0x87,0x87,0x0,0xff,0x74,0x74,0x0,0xff,0x4e,0x4e,0x5, + 0xff,0x17,0x17,0xd,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf,0xff,0xf,0xf,0xf, + 0xff,0xf,0xf,0xf,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe,0xff,0xe,0xe,0xe, + 0xff,0xe,0xe,0xe,0xff,0x9,0x9,0x9,0xff,0x5,0x5,0x5,0xff,0x40,0x40,0x40, + 0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70,0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0, + 0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfb,0x1,0x74,0x74,0xf6, + 0x80,0x6a,0x6a,0xfa,0xfd,0x62,0x62,0xfb,0xfd,0x53,0x52,0xfc,0xff,0x4a,0x48,0xfd, + 0xff,0x44,0x42,0xfc,0xff,0x3a,0x39,0xfa,0xff,0x1d,0x1b,0xf4,0xff,0xa,0x9,0xd4, + 0xff,0xb,0xb,0x9b,0xff,0x28,0x1d,0x9e,0xff,0x97,0x83,0xf4,0xff,0xb9,0xa7,0xfd, + 0xff,0x90,0x79,0xfe,0xff,0x89,0x73,0xfe,0xff,0x89,0x73,0xfe,0xff,0x88,0x72,0xff, + 0xff,0x93,0x7d,0xfe,0xff,0x8a,0x74,0xfe,0xff,0x96,0x80,0xfe,0xff,0x98,0x82,0xfe, + 0xff,0x87,0x70,0xfd,0xff,0x65,0x51,0xeb,0xff,0x1f,0x10,0xc4,0xff,0x51,0x4f,0xd2, + 0xff,0x85,0x85,0xf1,0xff,0x7b,0x7b,0xf4,0xff,0x69,0x69,0xfa,0xff,0x65,0x64,0xfb, + 0xff,0x5d,0x5d,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x3d,0x3c,0xfa,0xff,0x16,0x13,0xf2, + 0xff,0x5,0x2,0xea,0xff,0x19,0x19,0x88,0xff,0x6d,0x6f,0x1e,0xff,0x43,0x41,0x57, + 0xff,0x5e,0x54,0xbe,0xff,0xb8,0xa6,0xfb,0xff,0xa7,0x93,0xfd,0xff,0x8a,0x72,0xfe, + 0xff,0x89,0x72,0xff,0xff,0x88,0x72,0xfe,0xff,0x8b,0x75,0xfe,0xff,0x93,0x7d,0xfe, + 0xff,0x8a,0x73,0xfe,0xff,0x9e,0x89,0xfe,0xff,0x8c,0x75,0xfd,0xff,0x81,0x6b,0xf9, + 0xff,0x3c,0x29,0xd3,0xff,0x40,0x30,0xa4,0xff,0xd5,0xd2,0x1b,0xff,0xeb,0xeb,0xe, + 0xff,0xdc,0xdb,0x1,0xff,0xce,0xce,0x0,0xff,0xba,0xbb,0x0,0xff,0xb1,0xb1,0x0, + 0xff,0x9d,0x9b,0x0,0xff,0x83,0x84,0x0,0xff,0x73,0x74,0x0,0xff,0x59,0x59,0xf, + 0xff,0x6d,0x6d,0x64,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x52,0x52,0x52,0xff,0xf,0xf,0xf,0xff,0x6,0x6,0x6, + 0xff,0x40,0x40,0x40,0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7,0xff,0x85,0x85,0x85, + 0xff,0x7f,0x7f,0x7f,0xfe,0x71,0x71,0x71,0xfd,0xf,0xf,0xf,0xfc,0x0,0x0,0x0, + 0xe0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfb,0x1,0x74,0x74,0xf5, + 0x7f,0x6e,0x6e,0xf8,0xfc,0x62,0x62,0xfb,0xfd,0x54,0x53,0xfc,0xfe,0x4d,0x4c,0xfc, + 0xff,0x43,0x42,0xfc,0xff,0x3c,0x3b,0xfb,0xff,0x20,0x1d,0xf4,0xff,0x8,0x6,0xde, + 0xff,0x5,0x4,0xac,0xff,0x17,0x15,0x7e,0xff,0x68,0x59,0xd6,0xff,0xc4,0xb2,0xfd, + 0xff,0xaa,0x95,0xfe,0xff,0x91,0x7b,0xfe,0xff,0x88,0x72,0xff,0xff,0x8b,0x75,0xff, + 0xff,0x92,0x7c,0xff,0xff,0x8a,0x74,0xff,0xff,0x96,0x80,0xfe,0xff,0x95,0x7f,0xfe, + 0xff,0x8c,0x76,0xfd,0xff,0x7b,0x66,0xf7,0xff,0x39,0x2b,0xcd,0xff,0x5d,0x60,0xc6, + 0xff,0x85,0x85,0xf0,0xff,0x75,0x75,0xf6,0xff,0x68,0x68,0xfa,0xff,0x69,0x68,0xfa, + 0xff,0x5d,0x5d,0xfb,0xff,0x50,0x4f,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x1a,0x18,0xf3, + 0xff,0x6,0x3,0xeb,0xff,0x19,0x19,0x87,0xff,0x6f,0x71,0x1e,0xff,0x46,0x45,0x4e, + 0xff,0x33,0x2e,0xa5,0xff,0xae,0x9d,0xf5,0xff,0xb4,0xa1,0xfd,0xff,0xa2,0x8d,0xfe, + 0xff,0x8a,0x73,0xfe,0xff,0x88,0x72,0xff,0xff,0x93,0x7e,0xff,0xff,0x8a,0x73,0xff, + 0xff,0x93,0x7e,0xfe,0xff,0x92,0x7b,0xfe,0xff,0x95,0x7f,0xfd,0xff,0x86,0x6f,0xfc, + 0xff,0x61,0x4c,0xe4,0xff,0x59,0x53,0xb2,0xff,0xda,0xdb,0x21,0xff,0xe9,0xe9,0xd, + 0xff,0xdb,0xda,0x0,0xff,0xd1,0xd1,0x0,0xff,0xb8,0xb9,0x0,0xff,0xb0,0xaf,0x0, + 0xff,0x9a,0x99,0x0,0xff,0x82,0x83,0x0,0xff,0x73,0x74,0x1,0xff,0x5b,0x5b,0x14, + 0xff,0x7f,0x7f,0x76,0xff,0x84,0x84,0x84,0xff,0x85,0x85,0x85,0xff,0x85,0x85,0x85, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86,0xff,0x86,0x86,0x86, + 0xff,0x85,0x85,0x85,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54,0xff,0xf,0xf,0xf, + 0xff,0x6,0x6,0x6,0xff,0x40,0x40,0x40,0xff,0xa9,0xa9,0xa9,0xff,0xa7,0xa7,0xa7, + 0xfe,0x85,0x85,0x85,0xfe,0x71,0x71,0x71,0xfd,0xf,0xf,0xf,0xfb,0x0,0x0,0x0, + 0xdf,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfa,0x1,0x7d,0x7d,0xf2, + 0x7f,0x70,0x70,0xf7,0xfc,0x62,0x62,0xfb,0xfd,0x55,0x54,0xfc,0xfe,0x50,0x4f,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x3d,0x3b,0xfb,0xff,0x27,0x24,0xf5,0xff,0x10,0xe,0xea, + 0xff,0x4,0x3,0xc0,0xff,0xe,0xc,0x82,0xff,0x3b,0x2f,0xb4,0xff,0xbd,0xac,0xf9, + 0xff,0xc8,0xb7,0xfd,0xff,0xae,0x9b,0xfe,0xff,0x9c,0x87,0xfe,0xff,0x96,0x80,0xfe, + 0xff,0x92,0x7d,0xff,0xff,0x96,0x80,0xff,0xff,0x98,0x83,0xfe,0xff,0xa6,0x91,0xfe, + 0xff,0xa3,0x8f,0xfd,0xff,0x8a,0x74,0xfb,0xff,0x55,0x49,0xd9,0xff,0x74,0x73,0xd2, + 0xff,0x85,0x85,0xf1,0xff,0x74,0x74,0xf6,0xff,0x66,0x66,0xfb,0xff,0x65,0x64,0xfa, + 0xff,0x5e,0x5d,0xfb,0xff,0x4e,0x4d,0xfc,0xff,0x40,0x40,0xfb,0xff,0x1a,0x18,0xf4, + 0xff,0x5,0x3,0xea,0xff,0x19,0x19,0x87,0xff,0x71,0x72,0x1f,0xff,0x55,0x53,0x2f, + 0xff,0x26,0x17,0x8d,0xff,0x85,0x74,0xe3,0xff,0xcc,0xbb,0xfd,0xff,0xbc,0xa9,0xfd, + 0xff,0xa7,0x93,0xfe,0xff,0x93,0x7d,0xfe,0xff,0x96,0x80,0xff,0xff,0x96,0x81,0xff, + 0xff,0x92,0x7c,0xff,0xff,0xa3,0x8e,0xfe,0xff,0xa6,0x92,0xfd,0xff,0x99,0x84,0xfd, + 0xff,0x76,0x65,0xec,0xff,0x7d,0x84,0x88,0xff,0xda,0xdb,0x11,0xff,0xda,0xd9,0x2, + 0xff,0xd9,0xd8,0x0,0xff,0xc8,0xc9,0x0,0xff,0xb9,0xba,0x0,0xff,0xac,0xab,0x0, + 0xff,0x99,0x97,0x0,0xff,0x81,0x83,0x0,0xff,0x6e,0x6f,0x2,0xff,0x6a,0x6b,0x30, + 0xff,0xad,0xad,0xa9,0xff,0xb6,0xb6,0xb5,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8, + 0xff,0xb8,0xb8,0xb8,0xff,0xb8,0xb8,0xb8,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb4,0xb4,0xb4,0xff,0x95,0x95,0x95,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54, + 0xff,0xf,0xf,0xf,0xff,0x6,0x6,0x6,0xff,0x40,0x40,0x40,0xff,0xa8,0xa8,0xa8, + 0xfe,0xa6,0xa6,0xa6,0xfe,0x77,0x77,0x77,0xfc,0xf,0xf,0xf,0xf8,0x0,0x0,0x0, + 0xa4,0x2,0x2,0x2,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0xfa,0x1,0x7f,0x7f,0xf2, + 0x74,0x71,0x71,0xf7,0xf9,0x63,0x63,0xfb,0xfd,0x59,0x58,0xfc,0xfe,0x56,0x55,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x32,0x31,0xf9,0xff,0x11,0xf,0xe9, + 0xff,0xa,0x8,0xdc,0xff,0x7,0x7,0xa1,0xff,0x1a,0x13,0x84,0xff,0x7d,0x6b,0xe0, + 0xff,0xcc,0xbb,0xfc,0xff,0xcc,0xbb,0xfd,0xff,0xcc,0xbb,0xfe,0xff,0xbc,0xa9,0xfe, + 0xff,0xb4,0xa1,0xfe,0xff,0xac,0x99,0xfe,0xff,0xa7,0x93,0xfe,0xff,0xba,0xa8,0xfd, + 0xff,0xae,0x9b,0xfd,0xff,0x91,0x80,0xf3,0xff,0x54,0x4f,0xb8,0xff,0x80,0x7f,0xe3, + 0xff,0x7b,0x7b,0xf3,0xff,0x68,0x68,0xfa,0xff,0x60,0x5f,0xfb,0xff,0x62,0x62,0xfb, + 0xff,0x60,0x5f,0xfb,0xff,0x51,0x50,0xfc,0xff,0x3d,0x3c,0xfa,0xff,0x14,0x12,0xf2, + 0xff,0x4,0x2,0xea,0xff,0x19,0x1a,0x86,0xff,0x74,0x76,0x21,0xff,0x66,0x67,0x17, + 0xff,0x33,0x32,0x5f,0xff,0x3d,0x31,0xb3,0xff,0xb4,0xa3,0xf7,0xff,0xcf,0xbe,0xfd, + 0xff,0xcc,0xba,0xfe,0xff,0xc7,0xb5,0xfe,0xff,0xb3,0xa0,0xfe,0xff,0xb0,0x9d,0xfe, + 0xff,0xa8,0x94,0xfe,0xff,0xb5,0xa2,0xfe,0xff,0xb6,0xa4,0xfd,0xff,0xa8,0x95,0xfb, + 0xff,0x69,0x63,0xd4,0xff,0x99,0xa2,0x53,0xff,0xd8,0xd7,0x1,0xff,0xd3,0xd3,0x0, + 0xff,0xd3,0xd3,0x0,0xff,0xc1,0xc2,0x0,0xff,0xb5,0xb5,0x0,0xff,0xa7,0xa6,0x0, + 0xff,0x98,0x96,0x0,0xff,0x81,0x83,0x0,0xff,0x67,0x68,0x3,0xff,0x78,0x78,0x4d, + 0xff,0xb8,0xb8,0xb6,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb4,0xb4,0xb4,0xff,0x86,0x86,0x86,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c, + 0xff,0x54,0x54,0x54,0xff,0xf,0xf,0xf,0xff,0x6,0x6,0x6,0xff,0x40,0x40,0x40, + 0xfe,0xa8,0xa8,0xa8,0xfd,0xa1,0xa1,0xa1,0xef,0x23,0x23,0x23,0x82,0x8,0x8,0x8, + 0x1b,0x17,0x17,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x6a,0xf9,0x1,0x82,0x82,0xf1, + 0x28,0x75,0x75,0xf5,0xe3,0x63,0x63,0xfb,0xfd,0x5c,0x5c,0xfc,0xfe,0x58,0x57,0xfc, + 0xff,0x52,0x51,0xfc,0xff,0x44,0x42,0xfc,0xff,0x39,0x37,0xfa,0xff,0x20,0x1e,0xf5, + 0xff,0xd,0xa,0xee,0xff,0x4,0x3,0xcf,0xff,0xe,0xd,0x7e,0xff,0x31,0x28,0x94, + 0xff,0x93,0x83,0xe5,0xff,0xc7,0xb6,0xfb,0xff,0xcf,0xbe,0xfd,0xff,0xd1,0xc0,0xfd, + 0xff,0xd0,0xbf,0xfd,0xff,0xcc,0xbb,0xfd,0xff,0xca,0xb9,0xfd,0xff,0xb5,0xa4,0xfc, + 0xff,0xb1,0xa2,0xfa,0xff,0x71,0x6c,0xc2,0xff,0x6e,0x6d,0xb7,0xff,0x85,0x84,0xee, + 0xff,0x74,0x74,0xf6,0xff,0x67,0x67,0xfa,0xff,0x5d,0x5d,0xfc,0xff,0x60,0x60,0xfb, + 0xff,0x5c,0x5b,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x32,0x31,0xf8,0xff,0xa,0x8,0xf2, + 0xff,0x6,0x4,0xe8,0xff,0x29,0x29,0x77,0xff,0x78,0x7a,0x1e,0xff,0x68,0x69,0xf, + 0xff,0x4b,0x4c,0x2c,0xff,0x22,0x1e,0x6e,0xff,0x5f,0x51,0xc7,0xff,0xba,0xa9,0xf4, + 0xff,0xcc,0xbb,0xfc,0xff,0xd1,0xc0,0xfd,0xff,0xd1,0xc0,0xfd,0xff,0xcd,0xbc,0xfd, + 0xff,0xcd,0xbb,0xfd,0xff,0xbf,0xae,0xfc,0xff,0xb8,0xa7,0xfc,0xff,0x98,0x89,0xee, + 0xff,0x6e,0x6b,0xa2,0xff,0xc1,0xc3,0x36,0xff,0xd2,0xd2,0x1,0xff,0xca,0xcb,0x0, + 0xff,0xc7,0xc8,0x0,0xff,0xbb,0xbc,0x0,0xff,0xb3,0xb3,0x0,0xff,0xa6,0xa5,0x0, + 0xff,0x97,0x96,0x0,0xff,0x7f,0x80,0x1,0xff,0x6a,0x6a,0x10,0xff,0xa0,0xa0,0x8f, + 0xff,0xbe,0xbe,0xbd,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54,0xff,0xf,0xf,0xf,0xff,0x4,0x4,0x4, + 0xfd,0x40,0x40,0x40,0xfd,0xa1,0xa1,0xa1,0xb0,0x9d,0x9d,0x9d,0x10,0x3b,0x3b,0x3b, + 0x2,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x78,0xf4,0x0,0x80,0x80,0xe2, + 0x1d,0x7d,0x7d,0xeb,0xe0,0x67,0x67,0xfa,0xfc,0x61,0x60,0xfb,0xfe,0x5e,0x5d,0xfb, + 0xfe,0x59,0x59,0xfc,0xff,0x4b,0x4a,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x29,0x28,0xf6, + 0xff,0x18,0x16,0xf3,0xff,0xa,0x7,0xef,0xff,0x9,0x8,0xb3,0xff,0x12,0x11,0x6a, + 0xff,0x20,0x1c,0x7b,0xff,0x5a,0x4a,0xce,0xff,0x96,0x84,0xee,0xff,0xb0,0x9e,0xf9, + 0xff,0xba,0xa8,0xfd,0xff,0xaf,0x9b,0xfd,0xff,0xaf,0x9d,0xf8,0xff,0x9b,0x8e,0xea, + 0xff,0x6b,0x6d,0xb0,0xff,0x65,0x6b,0x94,0xff,0x6c,0x6c,0xcb,0xff,0x78,0x78,0xf2, + 0xff,0x68,0x68,0xf9,0xff,0x5d,0x5c,0xfb,0xff,0x55,0x54,0xfc,0xff,0x57,0x56,0xfc, + 0xff,0x50,0x4f,0xfc,0xff,0x42,0x42,0xfc,0xff,0x21,0x1f,0xf5,0xff,0x7,0x4,0xf1, + 0xff,0x9,0x7,0xd7,0xff,0x4b,0x4c,0x55,0xff,0x7e,0x80,0x18,0xff,0x74,0x75,0x9, + 0xff,0x5b,0x5a,0x4,0xff,0x45,0x43,0x2c,0xff,0x1b,0x19,0x66,0xff,0x38,0x2c,0xb0, + 0xff,0x79,0x68,0xdf,0xff,0xa3,0x91,0xf4,0xff,0xb9,0xa6,0xfb,0xff,0xb8,0xa5,0xfd, + 0xff,0xae,0x9a,0xfb,0xff,0xaa,0x99,0xf4,0xff,0x82,0x76,0xdf,0xff,0x6a,0x64,0xb7, + 0xff,0x9a,0x99,0x53,0xff,0xc1,0xc3,0x3,0xff,0xc9,0xca,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xb6,0xb7,0x0,0xff,0xb2,0xb2,0x0,0xff,0xa3,0xa1,0x0, + 0xff,0x93,0x92,0x0,0xff,0x7c,0x7d,0x1,0xff,0x71,0x72,0x23,0xff,0xba,0xba,0xb0, + 0xff,0xc1,0xc1,0xc2,0xff,0xc3,0xc3,0xc4,0xff,0xc4,0xc4,0xc5,0xff,0xc4,0xc4,0xc5, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6,0xff,0xc5,0xc5,0xc6, + 0xff,0xc5,0xc5,0xc6,0xff,0xc1,0xc1,0xc1,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb7,0xb7,0xb7,0xff,0x86,0x86,0x86,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x54,0x54,0x54,0xff,0xd,0xd,0xd, + 0xfd,0x3,0x3,0x3,0xfd,0xd,0xd,0xd,0xb0,0x1,0x1,0x1,0x10,0xd,0xd,0xc, + 0x1,0x20,0x20,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf4,0x0,0x7f,0x7f,0xe9, + 0xf,0x7a,0x7a,0xf1,0xaf,0x6a,0x6a,0xf8,0xfc,0x64,0x64,0xfb,0xfd,0x63,0x63,0xfb, + 0xfe,0x64,0x64,0xfb,0xff,0x54,0x53,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3c,0x3b,0xfb, + 0xff,0x25,0x23,0xf5,0xff,0xe,0xb,0xf2,0xff,0x5,0x3,0xde,0xff,0x9,0x8,0xa6, + 0xff,0x16,0x16,0x68,0xff,0x1d,0x19,0x5d,0xff,0x19,0x13,0x70,0xff,0x35,0x2b,0x93, + 0xff,0x4a,0x3f,0xa1,0xff,0x4e,0x41,0xac,0xff,0x47,0x3d,0x99,0xff,0x37,0x3b,0x74, + 0xff,0x35,0x38,0x62,0xff,0x4d,0x4e,0xa9,0xff,0x52,0x52,0xc8,0xff,0x5b,0x5b,0xf4, + 0xff,0x58,0x57,0xfc,0xff,0x4f,0x4f,0xfc,0xff,0x52,0x51,0xfc,0xff,0x52,0x51,0xfc, + 0xff,0x4b,0x4b,0xfc,0xff,0x3a,0x3a,0xfb,0xff,0x16,0x13,0xf3,0xff,0x6,0x3,0xf0, + 0xff,0x1e,0x1d,0xb7,0xff,0x6f,0x70,0x31,0xff,0x86,0x87,0xf,0xff,0x7b,0x7d,0x1, + 0xff,0x71,0x72,0x1,0xff,0x5b,0x5b,0x7,0xff,0x48,0x4b,0x2b,0xff,0x28,0x26,0x52, + 0xff,0x16,0x13,0x65,0xff,0x1f,0x16,0x84,0xff,0x44,0x39,0xa0,0xff,0x49,0x3d,0xac, + 0xff,0x4b,0x39,0xb0,0xff,0x40,0x32,0x8e,0xff,0x59,0x55,0x64,0xff,0x7d,0x7c,0x44, + 0xff,0xa8,0xa8,0x11,0xff,0xbe,0xc0,0x0,0xff,0xc0,0xc1,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb6,0xb7,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb2,0xb2,0x1,0xff,0xa2,0xa0,0x0, + 0xff,0x90,0x90,0x1,0xff,0x74,0x75,0x4,0xff,0xaf,0xaf,0x7e,0xff,0xf2,0xf2,0xf1, + 0xff,0xf3,0xf3,0xf3,0xff,0xf4,0xf4,0xf5,0xff,0xf4,0xf4,0xf5,0xff,0xf4,0xf4,0xf5, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6, + 0xff,0xf5,0xf5,0xf6,0xff,0xf5,0xf5,0xf6,0xff,0xf4,0xf4,0xf5,0xff,0xf4,0xf4,0xf5, + 0xff,0xf2,0xf2,0xf2,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbc,0xbc,0xbc,0xff,0xac,0xac,0xac, + 0xff,0xaa,0xaa,0xaa,0xff,0xac,0xac,0xac,0xff,0xbc,0xbc,0xbc,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7c,0x7c,0x7c,0xff,0x52,0x52,0x52, + 0xfe,0x8,0x8,0x8,0xfd,0x1,0x1,0x1,0xe1,0x1,0x1,0x1,0x1d,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf1,0x0,0x73,0x73,0xf6, + 0x1,0x80,0x80,0xf1,0x74,0x76,0x76,0xf5,0xf8,0x6a,0x6a,0xfa,0xfc,0x6a,0x6a,0xfa, + 0xfe,0x68,0x68,0xfa,0xfe,0x59,0x59,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x3c,0x3c,0xfb, + 0xff,0x2e,0x2c,0xf7,0xff,0x1b,0x19,0xf3,0xff,0x11,0xe,0xf2,0xff,0xa,0x8,0xe9, + 0xff,0x8,0x6,0xbf,0xff,0xe,0xd,0x9a,0xff,0x14,0x14,0x74,0xff,0x17,0x17,0x55, + 0xff,0x13,0x13,0x4a,0xff,0x18,0x17,0x51,0xff,0x1d,0x1d,0x62,0xff,0x19,0x19,0x72, + 0xff,0x1e,0x1f,0x81,0xff,0x3c,0x3c,0xb8,0xff,0x3c,0x3c,0xc4,0xff,0x4d,0x4c,0xf2, + 0xff,0x4d,0x4c,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4e,0x4d,0xfc,0xff,0x4c,0x4b,0xfc, + 0xff,0x41,0x40,0xfb,0xff,0x26,0x24,0xf5,0xff,0x9,0x6,0xf1,0xff,0xc,0x9,0xe9, + 0xff,0x52,0x52,0x7a,0xff,0xac,0xae,0xd,0xff,0xa3,0xa4,0x2,0xff,0x85,0x87,0x0, + 0xff,0x7a,0x7b,0x0,0xff,0x72,0x73,0x0,0xff,0x65,0x65,0x1,0xff,0x55,0x54,0xa, + 0xff,0x47,0x4a,0x12,0xff,0x34,0x34,0x2a,0xff,0x2c,0x2c,0x26,0xff,0x34,0x33,0x27, + 0xff,0x44,0x41,0x2c,0xff,0x66,0x64,0x11,0xff,0x7a,0x7b,0x6,0xff,0x8e,0x8e,0x2, + 0xff,0xaa,0xa9,0x1,0xff,0xb3,0xb3,0x0,0xff,0xb2,0xb2,0x1,0xff,0xb3,0xb2,0x1, + 0xff,0xb4,0xb4,0x1,0xff,0xb4,0xb4,0x0,0xff,0xb2,0xb2,0x1,0xff,0xa2,0xa1,0x0, + 0xff,0x8b,0x8b,0x1,0xff,0x68,0x68,0x15,0xff,0x74,0x74,0xa5,0xff,0x7e,0x7e,0xc6, + 0xff,0x7e,0x7e,0xc7,0xff,0x7e,0x7e,0xc8,0xff,0x7e,0x7e,0xc8,0xff,0x7e,0x7e,0xc8, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc9, + 0xff,0x7e,0x7e,0xc9,0xff,0x7e,0x7e,0xc8,0xff,0x7f,0x7f,0xc9,0xff,0x89,0x89,0xcb, + 0xff,0xe2,0xe2,0xeb,0xff,0xf2,0xf2,0xf3,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbc,0xbc,0xbc,0xff,0xa3,0xa3,0xa3,0xff,0x60,0x60,0x60,0xff,0x20,0x20,0x20, + 0xff,0x18,0x18,0x18,0xff,0x20,0x20,0x20,0xff,0x60,0x60,0x60,0xff,0xa2,0xa2,0xa2, + 0xff,0xbb,0xbb,0xbb,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0x70,0x70,0x70, + 0xfd,0xe,0xe,0xe,0xfd,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf2,0x0,0x79,0x79,0xf2, + 0x1,0x80,0x80,0xe5,0x25,0x7c,0x7c,0xeb,0xd7,0x70,0x70,0xf7,0xfb,0x69,0x69,0xf9, + 0xfd,0x6d,0x6d,0xf8,0xfe,0x66,0x66,0xfa,0xfe,0x54,0x53,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x3b,0x3b,0xfb,0xff,0x2e,0x2d,0xf7,0xff,0x21,0x1e,0xf4,0xff,0x13,0x11,0xf2, + 0xff,0xf,0xc,0xef,0xff,0x13,0x12,0xe9,0xff,0x10,0xf,0xd0,0xff,0x15,0x14,0xc7, + 0xff,0x10,0xf,0xa5,0xff,0xe,0xe,0xa1,0xff,0x18,0x17,0xac,0xff,0x19,0x19,0xb2, + 0xff,0x1d,0x1c,0xb8,0xff,0x26,0x25,0xce,0xff,0x2f,0x2e,0xe2,0xff,0x3d,0x3d,0xfa, + 0xff,0x41,0x41,0xfc,0xff,0x43,0x43,0xfc,0xff,0x4d,0x4c,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x34,0x33,0xf9,0xff,0x13,0x10,0xf2,0xff,0x6,0x3,0xf1,0xff,0x18,0x17,0xce, + 0xff,0x8a,0x8b,0x36,0xff,0xbb,0xbc,0x1,0xff,0xad,0xad,0x1,0xff,0x91,0x91,0x0, + 0xff,0x81,0x82,0x0,0xff,0x7c,0x7d,0x0,0xff,0x76,0x77,0x0,0xff,0x6e,0x6f,0x1, + 0xff,0x67,0x67,0x1,0xff,0x62,0x62,0x2,0xff,0x64,0x64,0x2,0xff,0x70,0x70,0x1, + 0xff,0x73,0x74,0x1,0xff,0x7c,0x7d,0x1,0xff,0x84,0x85,0x1,0xff,0x91,0x91,0x0, + 0xff,0x9a,0x99,0x0,0xff,0xa9,0xa8,0x0,0xff,0xa9,0xa9,0x0,0xff,0xb3,0xb3,0x1, + 0xff,0xb6,0xb6,0x0,0xff,0xb4,0xb5,0x0,0xff,0xb4,0xb4,0x1,0xff,0xa1,0xa0,0x0, + 0xff,0x84,0x84,0x1,0xff,0x65,0x66,0x18,0xff,0xd,0xd,0x84,0xff,0x1,0x1,0x93, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x2,0x2,0x95,0xff,0x5,0x5,0x90, + 0xff,0x89,0x89,0xb7,0xff,0xf4,0xf4,0xf5,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0x8a,0x8a,0x8a,0xff,0x1e,0x1e,0x1e,0xff,0x13,0x13,0x13,0xff,0x3e,0x3e,0x3e, + 0xff,0x40,0x40,0x40,0xff,0x44,0x44,0x43,0xff,0x2e,0x2e,0x2e,0xff,0x1e,0x1e,0x1e, + 0xff,0x7e,0x7e,0x7e,0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0x70,0x70,0x70, + 0xfe,0xe,0xe,0xe,0xfd,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0xf1,0x0,0x83,0x83,0xf0, + 0x0,0x7f,0x7f,0xd8,0x4,0x81,0x81,0xec,0x7b,0x7f,0x7f,0xf2,0xed,0x71,0x71,0xf6, + 0xfc,0x6b,0x6b,0xf9,0xfe,0x68,0x68,0xfa,0xfe,0x59,0x58,0xfc,0xff,0x4c,0x4c,0xfc, + 0xff,0x41,0x40,0xfb,0xff,0x3c,0x3c,0xfb,0xff,0x3a,0x39,0xfa,0xff,0x29,0x27,0xf6, + 0xff,0x1e,0x1c,0xf3,0xff,0x14,0x12,0xf2,0xff,0xf,0xc,0xf2,0xff,0xd,0xb,0xf2, + 0xff,0xa,0x8,0xec,0xff,0xe,0xc,0xeb,0xff,0x13,0x10,0xee,0xff,0x15,0x12,0xf0, + 0xff,0x20,0x1e,0xf0,0xff,0x25,0x23,0xf5,0xff,0x2f,0x2d,0xf7,0xff,0x38,0x37,0xfa, + 0xff,0x3d,0x3d,0xfc,0xff,0x44,0x44,0xfc,0xff,0x47,0x46,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x24,0x22,0xf5,0xff,0x9,0x7,0xf1,0xff,0x9,0x6,0xec,0xff,0x54,0x54,0x7b, + 0xff,0xb6,0xb8,0x8,0xff,0xbd,0xbe,0x1,0xff,0xb8,0xb9,0x0,0xff,0xaf,0xae,0x0, + 0xff,0xa6,0xa6,0x0,0xff,0x9a,0x9a,0x0,0xff,0x93,0x93,0x0,0xff,0x8b,0x8b,0x0, + 0xff,0x7d,0x7d,0x0,0xff,0x78,0x79,0x0,0xff,0x7a,0x7b,0x0,0xff,0x7b,0x7d,0x0, + 0xff,0x7e,0x80,0x0,0xff,0x84,0x85,0x0,0xff,0x8e,0x8e,0x0,0xff,0x92,0x92,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0xa7,0xa6,0x0,0xff,0xad,0xad,0x0,0xff,0xb6,0xb6,0x0, + 0xff,0xb7,0xb7,0x0,0xff,0xbb,0xbd,0x0,0xff,0xb6,0xb7,0x1,0xff,0xa7,0xa6,0x1, + 0xff,0x86,0x86,0x9,0xff,0x2d,0x2d,0x60,0xff,0x4,0x4,0x91,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95,0xff,0x2,0x2,0x95,0xff,0x2,0x2,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf4,0xf4,0xf5,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xc7,0xc7,0xc7, + 0xff,0xa9,0xa9,0xa9,0xff,0x46,0x46,0x46,0xff,0x72,0x72,0x72,0xff,0xa0,0xa0,0x9f, + 0xff,0x84,0x84,0x84,0xff,0x81,0x81,0x81,0xff,0x66,0x66,0x66,0xff,0x26,0x26,0x26, + 0xff,0x1e,0x1e,0x1e,0xff,0xa2,0xa2,0xa2,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf2,0x0,0x81,0x81,0xf1, + 0x0,0x82,0x82,0xf1,0x1,0x80,0x80,0xf1,0x10,0x82,0x82,0xf1,0x82,0x80,0x80,0xf1, + 0xf9,0x71,0x71,0xf6,0xfd,0x6a,0x6a,0xfa,0xfe,0x61,0x60,0xfb,0xff,0x52,0x51,0xfc, + 0xff,0x45,0x44,0xfb,0xff,0x40,0x40,0xfc,0xff,0x41,0x40,0xfc,0xff,0x3c,0x3c,0xfb, + 0xff,0x37,0x36,0xf9,0xff,0x34,0x33,0xf8,0xff,0x2c,0x2a,0xf7,0xff,0x27,0x24,0xf5, + 0xff,0x1a,0x18,0xf4,0xff,0x1a,0x18,0xf4,0xff,0x20,0x1e,0xf5,0xff,0x27,0x25,0xf6, + 0xff,0x2f,0x2e,0xf7,0xff,0x35,0x34,0xf8,0xff,0x3b,0x3b,0xfb,0xff,0x40,0x40,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x45,0x45,0xfc,0xff,0x40,0x40,0xfc,0xff,0x35,0x34,0xf9, + 0xff,0x1a,0x18,0xf3,0xff,0x8,0x5,0xf1,0xff,0x19,0x17,0xcf,0xff,0x96,0x97,0x2b, + 0xff,0xbe,0xc0,0x1,0xff,0xc2,0xc3,0x0,0xff,0xc3,0xc4,0x0,0xff,0xbd,0xbd,0x0, + 0xff,0xb7,0xb8,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb2,0xb2,0x0,0xff,0xaf,0xaf,0x0, + 0xff,0xa5,0xa4,0x0,0xff,0x9d,0x9e,0x0,0xff,0x97,0x96,0x0,0xff,0x94,0x94,0x0, + 0xff,0x95,0x95,0x0,0xff,0x9a,0x99,0x0,0xff,0xa5,0xa4,0x0,0xff,0xac,0xab,0x0, + 0xff,0xb2,0xb2,0x0,0xff,0xb6,0xb6,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc4,0xc5,0x1,0xff,0xcf,0xce,0x6, + 0xff,0x89,0x89,0x31,0xff,0x9,0x9,0x8a,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x94, + 0xff,0x7e,0x7e,0xc8,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xdd,0xdd,0xdd, + 0xff,0xef,0xef,0xef,0xff,0xbc,0xbc,0xbb,0xff,0xb3,0xb3,0xb2,0xff,0xa2,0xa2,0xa2, + 0xff,0x97,0x97,0x96,0xff,0xa0,0xa0,0x9f,0xff,0x9a,0x9a,0x9a,0xff,0x65,0x65,0x65, + 0xff,0x12,0x12,0x12,0xff,0x60,0x60,0x60,0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0, + 0x0,0x81,0x81,0xe5,0x0,0x83,0x83,0xed,0x2,0x81,0x81,0xf1,0x26,0x83,0x83,0xf1, + 0xd9,0x7c,0x7c,0xf3,0xfd,0x6a,0x6a,0xf9,0xfe,0x62,0x61,0xfb,0xff,0x52,0x51,0xfd, + 0xff,0x45,0x45,0xfc,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x44,0x44,0xfc,0xff,0x42,0x42,0xfc,0xff,0x42,0x41,0xfc,0xff,0x41,0x40,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x3f,0x3e,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x40,0x3f,0xfc, + 0xff,0x3e,0x3e,0xfc,0xff,0x43,0x43,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x41,0x41,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x35,0x34,0xf9, + 0xff,0x20,0x1d,0xf2,0xff,0xf,0xd,0xee,0xff,0x4b,0x4b,0x91,0xff,0xc2,0xc2,0x10, + 0xff,0xcb,0xcc,0x2,0xff,0xd4,0xd4,0x0,0xff,0xd4,0xd4,0x0,0xff,0xcb,0xcc,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xbe,0xbf,0x0,0xff,0xbc,0xbd,0x0,0xff,0xb6,0xb7,0x0, + 0xff,0xb8,0xb8,0x0,0xff,0xb3,0xb3,0x0,0xff,0xb2,0xb2,0x1,0xff,0xb3,0xb3,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xb4,0xb4,0x1,0xff,0xb4,0xb4,0x0,0xff,0xb5,0xb5,0x0, + 0xff,0xb5,0xb5,0x0,0xff,0xb7,0xb8,0x0,0xff,0xbe,0xbf,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xcf,0xcf,0x0,0xff,0xd6,0xd6,0x0,0xff,0xdf,0xdf,0x7,0xff,0xe1,0xe1,0x17, + 0xff,0x47,0x47,0x68,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xef,0xef,0xef, + 0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xad, + 0xff,0x9a,0x9a,0x99,0xff,0xaa,0xaa,0xa9,0xff,0x92,0x92,0x92,0xff,0x85,0x85,0x85, + 0xff,0x45,0x45,0x45,0xff,0x20,0x20,0x20,0xff,0xac,0xac,0xac,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf1, + 0x0,0x82,0x82,0xf1,0x0,0x84,0x84,0xf1,0x1,0x80,0x80,0xd4,0x13,0x83,0x83,0xe6, + 0xbb,0x7f,0x7f,0xf3,0xfd,0x69,0x69,0xf9,0xfd,0x64,0x64,0xfb,0xff,0x54,0x53,0xfd, + 0xff,0x4e,0x4e,0xfc,0xff,0x40,0x40,0xfc,0xff,0x45,0x45,0xfc,0xff,0x41,0x40,0xfc, + 0xff,0x43,0x43,0xfb,0xff,0x41,0x40,0xfc,0xff,0x42,0x42,0xfb,0xff,0x46,0x45,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x43,0x42,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x44,0x44,0xfc,0xff,0x42,0x41,0xfc,0xff,0x45,0x45,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3d,0x3d,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x30,0x2f,0xf7, + 0xff,0x22,0x20,0xf2,0xff,0x22,0x20,0xef,0xff,0x66,0x66,0x8b,0xff,0xcb,0xcb,0x23, + 0xff,0xe8,0xe7,0xd,0xff,0xdb,0xda,0x3,0xff,0xd8,0xd8,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xd3,0xd3,0x0,0xff,0xce,0xce,0x0,0xff,0xca,0xcb,0x0,0xff,0xc4,0xc5,0x0, + 0xff,0xbe,0xc0,0x0,0xff,0xbc,0xbd,0x0,0xff,0xba,0xbb,0x0,0xff,0xb6,0xb6,0x0, + 0xff,0xb4,0xb5,0x0,0xff,0xb6,0xb6,0x0,0xff,0xb5,0xb5,0x0,0xff,0xba,0xbb,0x0, + 0xff,0xbd,0xbe,0x0,0xff,0xc7,0xc8,0x0,0xff,0xce,0xce,0x0,0xff,0xd7,0xd7,0x0, + 0xff,0xe1,0xe0,0x6,0xff,0xe6,0xe6,0xb,0xff,0xec,0xec,0x12,0xff,0x9f,0x9f,0x3e, + 0xff,0xf,0xf,0x8b,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xef,0xef,0xef, + 0xff,0xca,0xca,0xca,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xb4,0xb4,0xb3,0xff,0xad,0xad,0xad,0xff,0xa1,0xa1,0xa0,0xff,0xa1,0xa1,0xa0, + 0xff,0x49,0x49,0x49,0xff,0x18,0x18,0x18,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x82,0x82,0xd3,0x0,0x83,0x83,0xf1,0x1,0x81,0x81,0xd8,0x29,0x83,0x83,0xe8, + 0xe4,0x76,0x76,0xf6,0xfd,0x67,0x67,0xfa,0xfe,0x5e,0x5e,0xfb,0xff,0x54,0x53,0xfd, + 0xff,0x48,0x48,0xfc,0xff,0x44,0x44,0xfc,0xff,0x40,0x40,0xfc,0xff,0x44,0x44,0xfc, + 0xff,0x48,0x48,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4c,0x4c,0xfd, + 0xff,0x4d,0x4c,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x51,0x50,0xfd,0xff,0x51,0x50,0xfd, + 0xff,0x4d,0x4c,0xfc,0xff,0x4d,0x4c,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x40,0x40,0xfc,0xff,0x40,0x40,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x37,0x36,0xf9, + 0xff,0x27,0x25,0xf4,0xff,0x20,0x1e,0xe1,0xff,0x18,0x17,0x9d,0xff,0x52,0x52,0x68, + 0xff,0xdc,0xdc,0x1e,0xff,0xef,0xef,0x11,0xff,0xe0,0xe0,0x7,0xff,0xdd,0xdd,0x4, + 0xff,0xd9,0xd9,0x1,0xff,0xd8,0xd8,0x0,0xff,0xd3,0xd3,0x0,0xff,0xd1,0xd2,0x0, + 0xff,0xcb,0xcc,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc0,0xc1,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xc4,0xc5,0x0,0xff,0xc7,0xc8,0x0,0xff,0xcd,0xcd,0x0, + 0xff,0xd1,0xd1,0x0,0xff,0xd8,0xd7,0x0,0xff,0xdc,0xdb,0x3,0xff,0xe6,0xe5,0xa, + 0xff,0xf0,0xf0,0x11,0xff,0xef,0xef,0x14,0xff,0xa2,0xa2,0x3c,0xff,0x1a,0x1a,0x86, + 0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xf2,0xf2,0xf2, + 0xff,0xdb,0xdb,0xdb,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb6,0xb6,0xb5,0xff,0xad,0xad,0xac,0xff,0xa0,0xa0,0xa0, + 0xff,0x53,0x53,0x52,0xff,0x20,0x20,0x20,0xff,0xac,0xac,0xac,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf0, + 0x0,0x82,0x82,0xe2,0x0,0x80,0x80,0xf2,0x1,0x82,0x82,0xe3,0x74,0x81,0x81,0xf0, + 0xf9,0x6b,0x6b,0xf9,0xfd,0x64,0x64,0xfb,0xfe,0x5c,0x5b,0xfc,0xff,0x54,0x53,0xfd, + 0xff,0x47,0x47,0xfc,0xff,0x46,0x46,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x54,0x53,0xfc, + 0xff,0x55,0x55,0xfc,0xff,0x58,0x57,0xfc,0xff,0x58,0x57,0xfc,0xff,0x5c,0x5c,0xfc, + 0xff,0x5c,0x5b,0xfc,0xff,0x58,0x57,0xfc,0xff,0x59,0x58,0xfc,0xff,0x55,0x54,0xfd, + 0xff,0x57,0x56,0xfc,0xff,0x53,0x52,0xfd,0xff,0x53,0x52,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x4b,0x4a,0xfc,0xff,0x46,0x46,0xfc,0xff,0x40,0x3f,0xfb,0xff,0x3d,0x3c,0xfb, + 0xff,0x29,0x27,0xf5,0xff,0x26,0x24,0xec,0xff,0x19,0x19,0xac,0xff,0x5,0x5,0x91, + 0xff,0x49,0x49,0x6c,0xff,0xaa,0xaa,0x38,0xff,0xe4,0xe4,0x18,0xff,0xeb,0xeb,0xe, + 0xff,0xe4,0xe4,0xa,0xff,0xdb,0xdb,0x3,0xff,0xd8,0xd8,0x2,0xff,0xd7,0xd7,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd6,0xd5,0x0, + 0xff,0xd6,0xd5,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd8,0xd7,0x1,0xff,0xda,0xd9,0x1, + 0xff,0xdb,0xda,0x3,0xff,0xe5,0xe5,0xa,0xff,0xef,0xef,0x10,0xff,0xf0,0xf0,0x13, + 0xff,0xd0,0xd0,0x23,0xff,0x7a,0x7a,0x52,0xff,0x1a,0x1a,0x86,0xff,0x1,0x1,0x93, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xdd,0xdd,0xdd, + 0xff,0xec,0xec,0xec,0xff,0xcf,0xcf,0xcf,0xff,0xc2,0xc2,0xc1,0xff,0xc1,0xc1,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbe,0xff,0xb9,0xb9,0xb9,0xff,0x7b,0x7b,0x7a, + 0xff,0x17,0x17,0x17,0xff,0x60,0x60,0x60,0xff,0xbb,0xbb,0xbb,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x0,0x84,0x84,0xf1,0x1,0x81,0x81,0xf0,0x10,0x83,0x83,0xf1,0xaf,0x7b,0x7b,0xf3, + 0xfc,0x68,0x68,0xfa,0xfd,0x5d,0x5c,0xfc,0xfe,0x54,0x53,0xfc,0xff,0x4e,0x4e,0xfc, + 0xff,0x48,0x48,0xfc,0xff,0x51,0x50,0xfc,0xff,0x53,0x53,0xfc,0xff,0x58,0x57,0xfc, + 0xff,0x60,0x5f,0xfb,0xff,0x63,0x62,0xfb,0xff,0x64,0x64,0xfb,0xff,0x68,0x68,0xfa, + 0xff,0x65,0x65,0xfb,0xff,0x67,0x66,0xfb,0xff,0x64,0x63,0xfb,0xff,0x61,0x61,0xfb, + 0xff,0x5d,0x5c,0xfb,0xff,0x54,0x54,0xfc,0xff,0x56,0x56,0xfc,0xff,0x52,0x51,0xfc, + 0xff,0x4e,0x4d,0xfc,0xff,0x4b,0x4a,0xfc,0xff,0x43,0x43,0xfc,0xff,0x40,0x3f,0xfb, + 0xff,0x34,0x32,0xf8,0xff,0x26,0x24,0xee,0xff,0xe,0xe,0xaf,0xff,0x2,0x2,0x95, + 0xff,0x2,0x2,0x93,0xff,0xf,0xf,0x8b,0xff,0x4c,0x4c,0x6b,0xff,0xa9,0xa9,0x38, + 0xff,0xda,0xda,0x1e,0xff,0xed,0xed,0x12,0xff,0xeb,0xea,0xd,0xff,0xe3,0xe3,0x9, + 0xff,0xdf,0xdf,0x6,0xff,0xdb,0xda,0x3,0xff,0xd9,0xd9,0x2,0xff,0xd9,0xd9,0x2, + 0xff,0xda,0xda,0x3,0xff,0xe4,0xe3,0x9,0xff,0xe9,0xe9,0xc,0xff,0xeb,0xeb,0xd, + 0xff,0xf0,0xf0,0x10,0xff,0xef,0xef,0x13,0xff,0xd0,0xd0,0x23,0xff,0x7a,0x7a,0x52, + 0xff,0x24,0x24,0x80,0xff,0x5,0x5,0x91,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc8,0xc8,0xc8, + 0xff,0xf3,0xf3,0xf3,0xff,0xe9,0xe9,0xe9,0xff,0xc4,0xc4,0xc3,0xff,0xc1,0xc1,0xc0, + 0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc4,0xff,0xbe,0xbe,0xbe, + 0xff,0x3e,0x3e,0x3e,0xff,0xa3,0xa3,0xa3,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xd8,0x0,0x83,0x83,0xf0, + 0x0,0x83,0x83,0xe6,0x1,0x82,0x82,0xef,0x4e,0x83,0x83,0xf1,0xee,0x74,0x74,0xf6, + 0xfc,0x61,0x60,0xfb,0xfe,0x53,0x52,0xfc,0xfe,0x54,0x53,0xfc,0xff,0x4d,0x4c,0xfc, + 0xff,0x49,0x49,0xfc,0xff,0x52,0x51,0xfc,0xff,0x59,0x58,0xfc,0xff,0x5e,0x5d,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x68,0x68,0xfa,0xff,0x69,0x69,0xfa,0xff,0x6a,0x6a,0xf9, + 0xff,0x6a,0x6a,0xf8,0xff,0x6a,0x6a,0xf9,0xff,0x69,0x69,0xf9,0xff,0x67,0x67,0xfa, + 0xff,0x67,0x67,0xfb,0xff,0x62,0x61,0xfb,0xff,0x5f,0x5f,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x50,0x4f,0xfc,0xff,0x49,0x48,0xfc,0xff,0x47,0x47,0xfc,0xff,0x3e,0x3e,0xfc, + 0xff,0x3c,0x3b,0xfb,0xff,0x28,0x26,0xf2,0xff,0x32,0x32,0xdb,0xff,0x9,0x9,0x9e, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x93,0xff,0xf,0xf,0x8c, + 0xff,0x27,0x27,0x7e,0xff,0x70,0x70,0x57,0xff,0x84,0x84,0x4c,0xff,0xcd,0xcd,0x25, + 0xff,0xd6,0xd6,0x1e,0xff,0xd5,0xd5,0x1d,0xff,0xd5,0xd5,0x1d,0xff,0xd5,0xd5,0x1d, + 0xff,0xd6,0xd6,0x1d,0xff,0xd8,0xd8,0x1f,0xff,0xd8,0xd8,0x1f,0xff,0xcd,0xcd,0x25, + 0xff,0x84,0x84,0x4c,0xff,0x70,0x70,0x57,0xff,0x24,0x24,0x80,0xff,0x5,0x5,0x91, + 0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1, + 0xff,0xd4,0xd4,0xd4,0xff,0xf0,0xf0,0xf0,0xff,0xe1,0xe1,0xe0,0xff,0xde,0xde,0xde, + 0xff,0xdf,0xdf,0xde,0xff,0xde,0xde,0xde,0xff,0xe9,0xe9,0xe9,0xff,0xef,0xef,0xef, + 0xff,0xbd,0xbd,0xbd,0xff,0xbc,0xbc,0xbc,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf2,0x0,0x83,0x83,0xeb, + 0x1,0x81,0x81,0xee,0x10,0x83,0x83,0xf0,0xaf,0x80,0x80,0xf3,0xfc,0x6b,0x6b,0xf9, + 0xfd,0x59,0x58,0xfc,0xfe,0x52,0x51,0xfc,0xff,0x4d,0x4d,0xfc,0xff,0x46,0x45,0xfc, + 0xff,0x48,0x48,0xfc,0xff,0x53,0x52,0xfc,0xff,0x57,0x56,0xfc,0xff,0x61,0x61,0xfb, + 0xff,0x69,0x69,0xf9,0xff,0x73,0x73,0xf6,0xff,0x7a,0x7a,0xf4,0xff,0x81,0x81,0xf1, + 0xff,0x81,0x81,0xf1,0xff,0x81,0x81,0xf1,0xff,0x80,0x80,0xf2,0xff,0x76,0x76,0xf4, + 0xff,0x6f,0x6f,0xf7,0xff,0x69,0x68,0xfa,0xff,0x65,0x65,0xfa,0xff,0x63,0x63,0xfb, + 0xff,0x55,0x54,0xfc,0xff,0x48,0x47,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x3f,0x3e,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x2b,0x29,0xf5,0xff,0x33,0x33,0xe7,0xff,0xe,0xe,0xa1, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x93,0xff,0x4,0x4,0x92,0xff,0x19,0x19,0x87, + 0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85, + 0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x19,0x19,0x87, + 0xff,0x4,0x4,0x92,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc1,0xc1,0xc1,0xff,0xc8,0xc8,0xc8,0xff,0xdd,0xdd,0xdd,0xff,0xf1,0xf1,0xf1, + 0xff,0xf4,0xf4,0xf4,0xff,0xf1,0xf1,0xf1,0xff,0xde,0xde,0xdd,0xff,0xc8,0xc8,0xc8, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xd8,0x0,0x84,0x84,0xe2, + 0x1,0x82,0x82,0xdc,0x4e,0x84,0x84,0xef,0xed,0x77,0x77,0xf5,0xfc,0x66,0x66,0xfa, + 0xfe,0x52,0x51,0xfc,0xfe,0x49,0x48,0xfd,0xff,0x43,0x43,0xfc,0xff,0x44,0x44,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x4f,0x4e,0xfc,0xff,0x5a,0x59,0xfb,0xff,0x70,0x70,0xf6, + 0xff,0x7b,0x7b,0xf3,0xff,0x82,0x81,0xee,0xff,0x7c,0x7d,0xdf,0xff,0x76,0x77,0xcf, + 0xff,0x5d,0x5d,0xaf,0xff,0x68,0x69,0xba,0xff,0x6b,0x6d,0xc2,0xff,0x7f,0x7f,0xdf, + 0xff,0x83,0x83,0xee,0xff,0x7a,0x7a,0xf2,0xff,0x6a,0x6a,0xf9,0xff,0x65,0x65,0xfa, + 0xff,0x60,0x60,0xfb,0xff,0x52,0x51,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x3f,0x3e,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x28,0x25,0xf5,0xff,0x2d,0x2c,0xe4,0xff,0x26,0x26,0xb8, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc4,0xc4,0xc4, + 0xff,0xc5,0xc5,0xc5,0xff,0xc4,0xc4,0xc4,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xed,0x0,0x81,0x81,0xd4, + 0xf,0x82,0x82,0xe5,0xaf,0x82,0x82,0xf2,0xfc,0x71,0x71,0xf7,0xfd,0x5d,0x5d,0xfb, + 0xfe,0x51,0x50,0xfc,0xff,0x44,0x44,0xfd,0xff,0x42,0x41,0xfc,0xff,0x3e,0x3e,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x52,0x51,0xfc,0xff,0x6f,0x6f,0xf7,0xff,0x82,0x82,0xef, + 0xff,0x7f,0x80,0xe6,0xff,0x6a,0x68,0xdc,0xff,0x45,0x41,0xb6,0xff,0x18,0x1b,0x79, + 0xff,0xc,0x9,0x73,0xff,0x13,0x13,0x75,0xff,0x20,0x23,0x71,0xff,0x3f,0x42,0x86, + 0xff,0x60,0x62,0xaa,0xff,0x7e,0x7f,0xe6,0xff,0x7a,0x7a,0xf2,0xff,0x68,0x68,0xfa, + 0xff,0x68,0x67,0xfa,0xff,0x5c,0x5c,0xfc,0xff,0x4a,0x4a,0xfc,0xff,0x3f,0x3e,0xfc, + 0xff,0x37,0x36,0xfa,0xff,0x24,0x22,0xf4,0xff,0x2f,0x2d,0xf2,0xff,0x24,0x24,0xc1, + 0xff,0x5,0x5,0x98,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbb,0xbb,0xbb,0xff,0xa4,0xa4,0xa4,0xff,0x6a,0x6a,0x6a, + 0xff,0x62,0x62,0x62,0xff,0x69,0x69,0x69,0xff,0xa4,0xa4,0xa4,0xff,0xbb,0xbb,0xbb, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf2,0x1,0x81,0x81,0xd5, + 0x4e,0x82,0x82,0xed,0xed,0x77,0x77,0xf5,0xfc,0x68,0x68,0xfa,0xfe,0x55,0x54,0xfc, + 0xfe,0x4e,0x4d,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x3f,0x3e,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x47,0x46,0xfc,0xff,0x61,0x61,0xf7,0xff,0x7f,0x7f,0xdc,0xff,0x7b,0x7e,0xcc, + 0xff,0x50,0x45,0xe1,0xff,0x30,0x10,0xe1,0xff,0x18,0x2,0xb8,0xff,0x10,0x1,0xab, + 0xff,0x13,0x1,0xbb,0xff,0x13,0x1,0xba,0xff,0x10,0x1,0xab,0xff,0x11,0x7,0x95, + 0xff,0x22,0x20,0x85,0xff,0x63,0x67,0xb5,0xff,0x82,0x83,0xeb,0xff,0x7a,0x7a,0xf2, + 0xff,0x6b,0x6b,0xf9,0xff,0x5f,0x5e,0xfb,0xff,0x53,0x53,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x37,0x35,0xfa,0xff,0x28,0x26,0xf5,0xff,0x26,0x24,0xf4,0xff,0x24,0x24,0xc4, + 0xff,0x5,0x5,0x92,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xac,0xac,0xac,0xff,0x60,0x60,0x60,0xff,0x1f,0x1f,0x1f,0xff,0x11,0x11,0x11, + 0xff,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x1f,0x1f,0x1f,0xff,0x60,0x60,0x60, + 0xff,0xaa,0xaa,0xaa,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf2,0x1,0x83,0x83,0xe1, + 0x7f,0x83,0x83,0xef,0xfc,0x71,0x71,0xf7,0xfd,0x62,0x62,0xfb,0xfe,0x54,0x53,0xfc, + 0xff,0x4d,0x4c,0xfd,0xff,0x40,0x3e,0xfc,0xff,0x3f,0x3d,0xfc,0xff,0x38,0x37,0xfa, + 0xff,0x43,0x42,0xf1,0xff,0x66,0x66,0xd2,0xff,0x84,0x8b,0xbb,0xff,0x76,0x73,0xda, + 0xff,0x36,0x1f,0xda,0xff,0x36,0x1c,0xdb,0xff,0x32,0x1f,0xd2,0xff,0x36,0x23,0xd2, + 0xff,0x35,0x23,0xd2,0xff,0x34,0x21,0xd1,0xff,0x2b,0x18,0xcd,0xff,0x16,0x2,0xc0, + 0xff,0x14,0x2,0xb8,0xff,0x21,0x21,0x82,0xff,0x73,0x73,0xd3,0xff,0x84,0x84,0xf0, + 0xff,0x75,0x75,0xf4,0xff,0x63,0x62,0xfb,0xff,0x59,0x58,0xfc,0xff,0x47,0x46,0xfc, + 0xff,0x3b,0x3a,0xfb,0xff,0x29,0x27,0xf5,0xff,0x25,0x23,0xf4,0xff,0x3e,0x3d,0xd4, + 0xff,0x15,0x15,0x8c,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xc1,0xc1,0xc1, + 0xff,0x80,0x80,0x80,0xff,0x14,0x14,0x14,0xff,0x39,0x39,0x39,0xff,0x7a,0x7a,0x7a, + 0xff,0x73,0x73,0x73,0xff,0x6c,0x6c,0x6c,0xff,0x31,0x31,0x31,0xff,0xd,0xd,0xd, + 0xff,0x44,0x44,0x44,0xff,0xb2,0xb2,0xb2,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf1,0x4,0x83,0x83,0xf1, + 0x8a,0x7c,0x7c,0xf4,0xfc,0x6a,0x6a,0xfa,0xfd,0x5f,0x5e,0xfb,0xfe,0x53,0x52,0xfc, + 0xff,0x4c,0x4b,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x37,0x36,0xf9,0xff,0x31,0x30,0xf8, + 0xff,0x41,0x41,0xe0,0xff,0x7a,0x7e,0xb9,0xff,0x8b,0x94,0xd5,0xff,0x77,0x66,0xef, + 0xff,0x51,0x3e,0xde,0xff,0x65,0x51,0xeb,0xff,0x6f,0x5a,0xf0,0xff,0x80,0x6b,0xfa, + 0xff,0x80,0x6b,0xf9,0xff,0x7b,0x66,0xf7,0xff,0x56,0x42,0xe2,0xff,0x35,0x23,0xd0, + 0xff,0x1f,0xd,0xc7,0xff,0x12,0x5,0xa6,0xff,0x42,0x45,0xa2,0xff,0x82,0x82,0xe5, + 0xff,0x80,0x80,0xf1,0xff,0x69,0x69,0xf9,0xff,0x62,0x61,0xfb,0xff,0x4d,0x4c,0xfc, + 0xff,0x3d,0x3d,0xfc,0xff,0x33,0x31,0xf8,0xff,0x22,0x20,0xf4,0xff,0x39,0x38,0xea, + 0xff,0x33,0x34,0x99,0xff,0x5,0x5,0x8e,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xd2,0xd2,0xd2, + 0xff,0xdc,0xdc,0xdc,0xff,0x95,0x95,0x94,0xff,0xa5,0xa5,0xa4,0xff,0x9b,0x9b,0x9b, + 0xff,0x8e,0x8e,0x8e,0xff,0x97,0x97,0x96,0xff,0x84,0x84,0x84,0xff,0x40,0x40,0x40, + 0xff,0xf,0xf,0xf,0xff,0x84,0x84,0x84,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf0,0x1d,0x84,0x84,0xf1, + 0xd6,0x7a,0x7a,0xf4,0xfd,0x69,0x69,0xfa,0xfd,0x5f,0x5e,0xfb,0xff,0x53,0x53,0xfc, + 0xff,0x4c,0x4b,0xfd,0xff,0x40,0x3e,0xfc,0xff,0x2f,0x2d,0xf7,0xff,0x2c,0x2b,0xf4, + 0xff,0x3e,0x3e,0xcd,0xff,0x7b,0x7f,0xa5,0xff,0x92,0x87,0xed,0xff,0x94,0x7f,0xfc, + 0xff,0x82,0x6c,0xfa,0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x87,0x71,0xfe,0xff,0x87,0x71,0xfe,0xff,0x82,0x6c,0xfa,0xff,0x7f,0x69,0xf9, + 0xff,0x5c,0x48,0xe6,0xff,0x19,0x8,0xc0,0xff,0x1a,0x16,0x92,0xff,0x74,0x75,0xd7, + 0xff,0x83,0x83,0xf1,0xff,0x6f,0x6f,0xf7,0xff,0x62,0x62,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x3f,0x3e,0xfc,0xff,0x38,0x37,0xfa,0xff,0x2a,0x28,0xf6,0xff,0x2f,0x2d,0xf5, + 0xff,0x3e,0x3d,0xd8,0xff,0x26,0x26,0x9b,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc2,0xc2,0xc2,0xff,0xe9,0xe9,0xe9, + 0xff,0xe9,0xe9,0xe9,0xff,0xc2,0xc2,0xc1,0xff,0xb9,0xb9,0xb8,0xff,0xa1,0xa1,0xa1, + 0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9b,0xff,0x84,0x84,0x84,0xff,0x73,0x73,0x73, + 0xff,0x27,0x27,0x27,0xff,0x3c,0x3c,0x3c,0xff,0xb4,0xb4,0xb4,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf1,0x20,0x83,0x83,0xf2, + 0xe1,0x71,0x71,0xf7,0xfd,0x67,0x67,0xfa,0xfd,0x5d,0x5c,0xfc,0xff,0x53,0x52,0xfd, + 0xff,0x4d,0x4c,0xfd,0xff,0x39,0x38,0xfa,0xff,0x1e,0x1b,0xf4,0xff,0x21,0x1f,0xf1, + 0xff,0x38,0x37,0xc8,0xff,0x60,0x68,0xb1,0xff,0x9b,0x8c,0xf6,0xff,0x9e,0x89,0xfd, + 0xff,0x8b,0x74,0xfd,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x88,0x72,0xfe, + 0xff,0x8b,0x75,0xfe,0xff,0x89,0x72,0xfe,0xff,0x88,0x72,0xfe,0xff,0x8a,0x73,0xfd, + 0xff,0x7b,0x65,0xf6,0xff,0x3a,0x27,0xd4,0xff,0x17,0xe,0xb0,0xff,0x5f,0x69,0xc9, + 0xff,0x85,0x84,0xef,0xff,0x74,0x75,0xf5,0xff,0x62,0x62,0xfb,0xff,0x57,0x56,0xfc, + 0xff,0x3f,0x3f,0xfc,0xff,0x3d,0x3c,0xfb,0xff,0x2f,0x2d,0xf7,0xff,0x2a,0x29,0xf6, + 0xff,0x28,0x28,0xd0,0xff,0x2f,0x30,0x8b,0xff,0x2,0x2,0x90,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xf5,0xf5,0xf5, + 0xff,0xde,0xde,0xdd,0xff,0xc0,0xc0,0xbf,0xff,0xc0,0xc0,0xbf,0xff,0xbc,0xbc,0xbb, + 0xff,0x9d,0x9d,0x9c,0xff,0xa1,0xa1,0xa0,0xff,0xac,0xac,0xab,0xff,0x84,0x84,0x83, + 0xff,0x40,0x40,0x40,0xff,0x18,0x18,0x18,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf2,0x20,0x83,0x83,0xf3, + 0xe1,0x70,0x70,0xf8,0xfd,0x65,0x65,0xfb,0xfd,0x5e,0x5d,0xfb,0xff,0x57,0x56,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x36,0x35,0xfa,0xff,0x16,0x14,0xf4,0xff,0x19,0x17,0xef, + 0xff,0x26,0x26,0xa6,0xff,0x3f,0x39,0xa0,0xff,0x97,0x85,0xf5,0xff,0xba,0xa8,0xfd, + 0xff,0x92,0x7c,0xfd,0xff,0x89,0x73,0xfe,0xff,0x89,0x73,0xfe,0xff,0x88,0x72,0xff, + 0xff,0x93,0x7d,0xfe,0xff,0x8b,0x75,0xfe,0xff,0x96,0x80,0xfe,0xff,0x98,0x83,0xfe, + 0xff,0x88,0x72,0xfd,0xff,0x65,0x51,0xec,0xff,0x20,0xd,0xc7,0xff,0x51,0x48,0xc3, + 0xff,0x85,0x85,0xed,0xff,0x75,0x75,0xf6,0xff,0x66,0x66,0xfb,0xff,0x59,0x58,0xfc, + 0xff,0x43,0x43,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x31,0x2f,0xf8,0xff,0x30,0x2e,0xf5, + 0xff,0x32,0x31,0xc1,0xff,0x2d,0x2d,0x83,0xff,0x2,0x3,0x8f,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xf5,0xf5,0xf5, + 0xff,0xde,0xde,0xde,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xbf, + 0xff,0xba,0xba,0xb9,0xff,0xb3,0xb3,0xb2,0xff,0xa2,0xa2,0xa1,0xff,0x85,0x85,0x85, + 0xff,0x41,0x41,0x41,0xff,0x18,0x18,0x18,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf2,0x20,0x83,0x83,0xf3, + 0xe1,0x70,0x70,0xf8,0xfd,0x68,0x68,0xfa,0xfd,0x63,0x62,0xfb,0xff,0x56,0x55,0xfc, + 0xff,0x4c,0x4b,0xfd,0xff,0x32,0x30,0xfa,0xff,0xf,0xd,0xf4,0xff,0xb,0x8,0xec, + 0xff,0x10,0xf,0x9f,0xff,0x17,0x16,0x78,0xff,0x67,0x57,0xd9,0xff,0xc4,0xb3,0xfc, + 0xff,0xab,0x98,0xfd,0xff,0x92,0x7d,0xfe,0xff,0x89,0x73,0xff,0xff,0x8b,0x75,0xff, + 0xff,0x93,0x7e,0xff,0xff,0x8b,0x75,0xff,0xff,0x97,0x81,0xfe,0xff,0x97,0x82,0xfe, + 0xff,0x8d,0x77,0xfd,0xff,0x7b,0x66,0xf7,0xff,0x38,0x27,0xd2,0xff,0x54,0x57,0xc4, + 0xff,0x85,0x85,0xed,0xff,0x76,0x76,0xf6,0xff,0x67,0x67,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x44,0x44,0xfc,0xff,0x41,0x41,0xfc,0xff,0x36,0x35,0xfa,0xff,0x2c,0x2a,0xf2, + 0xff,0x38,0x37,0xcb,0xff,0x2a,0x2b,0x90,0xff,0x2,0x2,0x8f,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x1,0x1,0x91,0xff,0x18,0x18,0x69,0xff,0x29,0x29,0x4c, + 0xff,0x29,0x29,0x4c,0xff,0x26,0x26,0x52,0xff,0x8,0x8,0x85,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc3,0xc3,0xc3,0xff,0xe9,0xe9,0xe9, + 0xff,0xea,0xea,0xea,0xff,0xc6,0xc6,0xc6,0xff,0xc1,0xc1,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xa6,0xa6,0xa5,0xff,0x8c,0x8c,0x8b, + 0xff,0x2b,0x2b,0x2b,0xff,0x3c,0x3c,0x3c,0xff,0xb4,0xb4,0xb4,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xf3,0x1d,0x81,0x81,0xf3, + 0xd6,0x6d,0x6d,0xf9,0xfd,0x69,0x69,0xfa,0xfd,0x63,0x62,0xfb,0xff,0x55,0x54,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x34,0x32,0xfa,0xff,0x11,0xe,0xf4,0xff,0x6,0x3,0xf0, + 0xff,0x7,0x5,0xc1,0xff,0x12,0x12,0x79,0xff,0x3b,0x2d,0xb7,0xff,0xbd,0xac,0xf9, + 0xff,0xc9,0xb7,0xfd,0xff,0xb0,0x9c,0xfe,0xff,0x9e,0x89,0xfe,0xff,0x98,0x82,0xfe, + 0xff,0x94,0x7e,0xff,0xff,0x97,0x82,0xff,0xff,0x9a,0x85,0xfe,0xff,0xa7,0x94,0xfe, + 0xff,0xa4,0x90,0xfd,0xff,0x8a,0x75,0xfc,0xff,0x51,0x3e,0xdf,0xff,0x6b,0x74,0xcb, + 0xff,0x85,0x85,0xee,0xff,0x74,0x74,0xf6,0xff,0x63,0x63,0xfb,0xff,0x53,0x52,0xfc, + 0xff,0x46,0x46,0xfc,0xff,0x43,0x42,0xfc,0xff,0x3a,0x38,0xfa,0xff,0x32,0x31,0xf4, + 0xff,0x34,0x33,0xcc,0xff,0x19,0x19,0x82,0xff,0x3,0x3,0x8f,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93, + 0xff,0x1,0x1,0x91,0xff,0x1c,0x1c,0x63,0xff,0x4a,0x4a,0x13,0xff,0x5a,0x5a,0x4, + 0xff,0x60,0x60,0x3,0xff,0x59,0x59,0x6,0xff,0x36,0x36,0x36,0xff,0x4,0x4,0x8b, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xd2,0xd2,0xd2, + 0xff,0xf8,0xf8,0xf8,0xff,0xdf,0xdf,0xdf,0xff,0xc4,0xc4,0xc3,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0x75,0x75,0x74, + 0xff,0x12,0x12,0x12,0xff,0x85,0x85,0x85,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xf4,0x4,0x82,0x82,0xf3, + 0x8a,0x71,0x71,0xf7,0xfc,0x68,0x68,0xfa,0xfd,0x63,0x63,0xfb,0xfe,0x56,0x55,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x3b,0x3a,0xfb,0xff,0x1a,0x17,0xf6,0xff,0x7,0x4,0xf4, + 0xff,0x6,0x3,0xe9,0xff,0xd,0xc,0x94,0xff,0x14,0xf,0x79,0xff,0x7b,0x6b,0xe2, + 0xff,0xcc,0xbb,0xfb,0xff,0xcc,0xbb,0xfd,0xff,0xcc,0xbb,0xfe,0xff,0xbe,0xab,0xfe, + 0xff,0xb6,0xa3,0xfe,0xff,0xaf,0x9b,0xfe,0xff,0xa9,0x96,0xfe,0xff,0xba,0xa8,0xfe, + 0xff,0xb0,0x9d,0xfd,0xff,0x90,0x7c,0xf6,0xff,0x44,0x3c,0xc1,0xff,0x7b,0x7d,0xd6, + 0xff,0x82,0x82,0xf2,0xff,0x6f,0x6f,0xf8,0xff,0x61,0x60,0xfb,0xff,0x4f,0x4e,0xfc, + 0xff,0x46,0x46,0xfc,0xff,0x42,0x42,0xfc,0xff,0x30,0x2f,0xf8,0xff,0x29,0x27,0xf4, + 0xff,0x2f,0x2e,0xd7,0xff,0x18,0x18,0x84,0xff,0x3,0x3,0x8e,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x1,0x1,0x91, + 0xff,0x1c,0x1c,0x63,0xff,0x4b,0x4b,0x13,0xff,0x5a,0x5a,0x5,0xff,0x6c,0x6c,0x1, + 0xff,0x72,0x72,0x1,0xff,0x6e,0x6f,0x2,0xff,0x57,0x57,0xc,0xff,0x19,0x19,0x67, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc3,0xc3,0xc3, + 0xff,0xe7,0xe7,0xe7,0xff,0xf8,0xf8,0xf8,0xff,0xe7,0xe7,0xe6,0xff,0xc9,0xc9,0xc9, + 0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xe6,0xe6,0xe6,0xff,0xdf,0xdf,0xdf, + 0xff,0x82,0x82,0x82,0xff,0xb4,0xb4,0xb4,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x76,0xf6,0x1,0x84,0x84,0xf2, + 0x7f,0x7c,0x7c,0xf4,0xfc,0x69,0x69,0xfa,0xfd,0x63,0x63,0xfb,0xfe,0x57,0x56,0xfc, + 0xff,0x4d,0x4c,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x30,0x2f,0xfa,0xff,0x11,0xf,0xf4, + 0xff,0x5,0x3,0xef,0xff,0x9,0x8,0xb9,0xff,0x10,0x10,0x6d,0xff,0x2e,0x24,0x98, + 0xff,0x93,0x83,0xe6,0xff,0xc7,0xb6,0xfb,0xff,0xcf,0xbe,0xfd,0xff,0xd1,0xc0,0xfd, + 0xff,0xd0,0xbf,0xfd,0xff,0xcd,0xbb,0xfd,0xff,0xca,0xb9,0xfd,0xff,0xb7,0xa5,0xfc, + 0xff,0xb3,0xa0,0xfc,0xff,0x63,0x57,0xd4,0xff,0x59,0x5d,0xb1,0xff,0x81,0x82,0xe7, + 0xff,0x71,0x71,0xf7,0xff,0x66,0x66,0xfa,0xff,0x5c,0x5b,0xfc,0xff,0x4d,0x4c,0xfc, + 0xff,0x45,0x45,0xfc,0xff,0x3e,0x3e,0xfc,0xff,0x2a,0x28,0xf7,0xff,0x23,0x21,0xf2, + 0xff,0x24,0x23,0xd3,0xff,0x1a,0x1a,0x7e,0xff,0x7,0x7,0x87,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x92,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x92,0xff,0x8,0x8,0x84,0xff,0x29,0x2a,0x4b, + 0xff,0x4a,0x4a,0x13,0xff,0x55,0x55,0x5,0xff,0x68,0x69,0x1,0xff,0x77,0x78,0x0, + 0xff,0x78,0x79,0x0,0xff,0x78,0x7a,0x0,0xff,0x66,0x66,0x2,0xff,0x2e,0x2e,0x46, + 0xff,0x1,0x1,0x91,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc6,0xc6,0xc6,0xff,0xe7,0xe7,0xe7,0xff,0xf5,0xf5,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf6,0xf6,0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf2,0xf2,0xf2,0xff,0xdd,0xdd,0xdd, + 0xff,0xc4,0xc4,0xc4,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf4,0x1,0x83,0x83,0xf3, + 0x4e,0x82,0x82,0xf3,0xee,0x6d,0x6d,0xf9,0xfc,0x68,0x68,0xfa,0xfe,0x5e,0x5d,0xfc, + 0xfe,0x51,0x51,0xfc,0xff,0x48,0x48,0xfc,0xff,0x3d,0x3c,0xfc,0xff,0x26,0x24,0xf8, + 0xff,0x9,0x6,0xf4,0xff,0x9,0x7,0xeb,0xff,0x18,0x17,0xa7,0xff,0x11,0x10,0x68, + 0xff,0x1a,0x14,0x83,0xff,0x57,0x46,0xd3,0xff,0x96,0x84,0xee,0xff,0xb0,0x9e,0xf9, + 0xff,0xba,0xa8,0xfd,0xff,0xaf,0x9c,0xfd,0xff,0xaf,0x9d,0xf9,0xff,0x97,0x84,0xf3, + 0xff,0x5e,0x53,0xd8,0xff,0x49,0x4f,0x96,0xff,0x62,0x64,0xbe,0xff,0x6f,0x6f,0xf5, + 0xff,0x64,0x64,0xfa,0xff,0x5d,0x5d,0xfb,0xff,0x54,0x53,0xfc,0xff,0x4a,0x49,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3b,0x3a,0xfb,0xff,0x24,0x22,0xf5,0xff,0x25,0x22,0xf2, + 0xff,0x1e,0x1d,0xce,0xff,0x35,0x35,0x4a,0xff,0x39,0x3a,0x30,0xff,0x19,0x19,0x67, + 0xff,0x9,0x9,0x82,0xff,0x5,0x5,0x8b,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93, + 0xff,0x5,0x5,0x8a,0xff,0x19,0x1a,0x66,0xff,0x3a,0x3b,0x2d,0xff,0x51,0x52,0x6, + 0xff,0x54,0x54,0x6,0xff,0x66,0x66,0x1,0xff,0x76,0x77,0x0,0xff,0x7e,0x7f,0x0, + 0xff,0x85,0x86,0x0,0xff,0x85,0x86,0x0,0xff,0x6b,0x6b,0x1,0xff,0x48,0x48,0x1b, + 0xff,0x8,0x8,0x85,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc3,0xc3,0xc3,0xff,0xc9,0xc9,0xc9,0xff,0xdb,0xdb,0xdb, + 0xff,0xde,0xde,0xde,0xff,0xdb,0xdb,0xdb,0xff,0xc8,0xc8,0xc8,0xff,0xc0,0xc0,0xc0, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf2,0x0,0x83,0x83,0xf2, + 0x1a,0x84,0x84,0xf2,0xd5,0x76,0x76,0xf6,0xfc,0x69,0x69,0xfa,0xfd,0x60,0x60,0xfb, + 0xfe,0x57,0x57,0xfc,0xff,0x4c,0x4c,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3a,0x39,0xfb, + 0xff,0x20,0x1e,0xf6,0xff,0xb,0x8,0xf3,0xff,0xb,0x9,0xde,0xff,0x17,0x16,0xa5, + 0xff,0x11,0x12,0x69,0xff,0xc,0xa,0x69,0xff,0x14,0xe,0x72,0xff,0x31,0x27,0x95, + 0xff,0x48,0x3d,0xa4,0xff,0x45,0x3a,0xae,0xff,0x33,0x2a,0xa4,0xff,0x25,0x22,0x99, + 0xff,0x2a,0x31,0x7f,0xff,0x3c,0x40,0x8a,0xff,0x46,0x46,0xc8,0xff,0x56,0x55,0xf6, + 0xff,0x54,0x53,0xfc,0xff,0x52,0x51,0xfc,0xff,0x4a,0x49,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x3d,0x3c,0xfb,0xff,0x2a,0x28,0xf7,0xff,0x1f,0x1d,0xf4,0xff,0x1e,0x1c,0xf0, + 0xff,0x29,0x28,0xb5,0xff,0x56,0x56,0x1c,0xff,0x53,0x53,0x6,0xff,0x4f,0x4f,0xb, + 0xff,0x49,0x4a,0x13,0xff,0x39,0x3a,0x2f,0xff,0x29,0x2a,0x4b,0xff,0x19,0x1a,0x66, + 0xff,0x9,0xa,0x83,0xff,0x9,0x9,0x83,0xff,0x9,0x9,0x84,0xff,0x9,0x9,0x84, + 0xff,0x9,0x9,0x83,0xff,0x9,0x9,0x83,0xff,0xd,0xd,0x7c,0xff,0x26,0x26,0x51, + 0xff,0x39,0x3a,0x2f,0xff,0x4e,0x4e,0xb,0xff,0x55,0x56,0x4,0xff,0x60,0x60,0x3, + 0xff,0x67,0x68,0x1,0xff,0x77,0x78,0x0,0xff,0x7d,0x7e,0x0,0xff,0x8d,0x8d,0x0, + 0xff,0x9b,0x9a,0x0,0xff,0x9a,0x98,0x0,0xff,0x7e,0x7d,0x1,0xff,0x4d,0x4d,0x1a, + 0xff,0x8,0x8,0x85,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x80,0x80,0xf3, + 0x4,0x84,0x84,0xf2,0x7f,0x7c,0x7c,0xf4,0xf8,0x6c,0x6c,0xf9,0xfd,0x67,0x67,0xfa, + 0xfe,0x5e,0x5e,0xfb,0xfe,0x53,0x53,0xfc,0xff,0x49,0x49,0xfc,0xff,0x41,0x41,0xfc, + 0xff,0x39,0x38,0xfb,0xff,0x20,0x1e,0xf6,0xff,0xb,0x9,0xf4,0xff,0x9,0x7,0xec, + 0xff,0x14,0x13,0xc7,0xff,0x19,0x19,0xa4,0xff,0x11,0x11,0x73,0xff,0xc,0xd,0x5d, + 0xff,0xd,0xd,0x5b,0xff,0xc,0xc,0x62,0xff,0x11,0x11,0x73,0xff,0x18,0x1a,0x7d, + 0xff,0x1b,0x1c,0x8c,0xff,0x2c,0x2c,0xbf,0xff,0x3e,0x3e,0xe6,0xff,0x52,0x51,0xfc, + 0xff,0x4f,0x4e,0xfc,0xff,0x4b,0x4b,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3f,0x3e,0xfb, + 0xff,0x36,0x34,0xfa,0xff,0x1f,0x1d,0xf5,0xff,0x16,0x14,0xf3,0xff,0x18,0x16,0xdf, + 0xff,0x4e,0x4f,0x6a,0xff,0x76,0x77,0x4,0xff,0x67,0x68,0x3,0xff,0x64,0x64,0x2, + 0xff,0x57,0x58,0x5,0xff,0x55,0x56,0x4,0xff,0x54,0x55,0x3,0xff,0x4e,0x4e,0xb, + 0xff,0x49,0x4a,0x13,0xff,0x49,0x4a,0x13,0xff,0x49,0x4b,0x13,0xff,0x49,0x4b,0x14, + 0xff,0x49,0x4b,0x13,0xff,0x49,0x4a,0x13,0xff,0x4a,0x4b,0x11,0xff,0x52,0x52,0x5, + 0xff,0x53,0x54,0x4,0xff,0x5c,0x5c,0x3,0xff,0x6b,0x6b,0x1,0xff,0x73,0x73,0x0, + 0xff,0x7a,0x7a,0x0,0xff,0x84,0x85,0x0,0xff,0x95,0x94,0x0,0xff,0xa9,0xa9,0x0, + 0xff,0xb1,0xb0,0x0,0xff,0xaa,0xa9,0x1,0xff,0x91,0x90,0x1,0xff,0x4c,0x4c,0x2e, + 0xff,0x6,0x6,0x8b,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf2,0x0,0x84,0x84,0xf2, + 0x1,0x83,0x83,0xf3,0x25,0x84,0x84,0xf2,0xd8,0x76,0x76,0xf6,0xfc,0x66,0x66,0xfa, + 0xfe,0x65,0x65,0xfb,0xfe,0x59,0x59,0xfc,0xff,0x51,0x51,0xfc,0xff,0x47,0x47,0xfc, + 0xff,0x3e,0x3e,0xfc,0xff,0x39,0x37,0xfa,0xff,0x26,0x24,0xf6,0xff,0x11,0xf,0xf4, + 0xff,0xa,0x7,0xf4,0xff,0xb,0x8,0xf0,0xff,0xe,0xc,0xdc,0xff,0x17,0x16,0xc6, + 0xff,0x20,0x1f,0xbc,0xff,0x1e,0x1d,0xbc,0xff,0x25,0x24,0xca,0xff,0x29,0x28,0xcf, + 0xff,0x32,0x31,0xe1,0xff,0x3f,0x3f,0xf6,0xff,0x43,0x43,0xfb,0xff,0x47,0x46,0xfc, + 0xff,0x43,0x43,0xfc,0xff,0x3f,0x3f,0xfc,0xff,0x3f,0x3e,0xfb,0xff,0x3c,0x3b,0xfb, + 0xff,0x27,0x25,0xf7,0xff,0x15,0x13,0xf4,0xff,0x1b,0x19,0xf2,0xff,0x28,0x27,0xb6, + 0xff,0x80,0x80,0x35,0xff,0x8b,0x8c,0x1,0xff,0x80,0x82,0x0,0xff,0x7f,0x80,0x0, + 0xff,0x75,0x76,0x0,0xff,0x6f,0x6f,0x1,0xff,0x67,0x67,0x2,0xff,0x60,0x60,0x2, + 0xff,0x5c,0x5c,0x3,0xff,0x59,0x59,0x4,0xff,0x55,0x55,0x4,0xff,0x59,0x59,0x4, + 0xff,0x55,0x55,0x7,0xff,0x55,0x55,0x4,0xff,0x55,0x55,0x4,0xff,0x5b,0x5b,0x3, + 0xff,0x66,0x66,0x1,0xff,0x70,0x70,0x0,0xff,0x78,0x7a,0x0,0xff,0x83,0x83,0x0, + 0xff,0x93,0x93,0x0,0xff,0xa1,0xa0,0x0,0xff,0xb0,0xb0,0x0,0xff,0xb4,0xb4,0x0, + 0xff,0xb4,0xb4,0x1,0xff,0xb3,0xb3,0x2,0xff,0xab,0xaa,0x2,0xff,0x52,0x52,0x43, + 0xff,0x2,0x2,0x91,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x84,0x84,0xf2, + 0x0,0x81,0x81,0xf3,0x5,0x83,0x83,0xf2,0x7f,0x7e,0x7e,0xf4,0xf8,0x70,0x70,0xf8, + 0xfc,0x68,0x68,0xfa,0xfe,0x5f,0x5f,0xfb,0xfe,0x55,0x54,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x47,0x47,0xfc,0xff,0x41,0x41,0xfc,0xff,0x39,0x37,0xfa,0xff,0x2c,0x2a,0xf8, + 0xff,0x1a,0x18,0xf4,0xff,0xf,0xd,0xf4,0xff,0x8,0x6,0xf3,0xff,0x11,0xe,0xf4, + 0xff,0x1d,0x1b,0xf4,0xff,0x28,0x27,0xf3,0xff,0x35,0x33,0xf9,0xff,0x3a,0x39,0xf9, + 0xff,0x3f,0x3e,0xfb,0xff,0x41,0x41,0xfb,0xff,0x3f,0x3f,0xfc,0xff,0x42,0x41,0xfc, + 0xff,0x3f,0x3f,0xfc,0xff,0x3e,0x3d,0xfc,0xff,0x38,0x37,0xfa,0xff,0x2a,0x29,0xf7, + 0xff,0x18,0x16,0xf4,0xff,0x12,0xf,0xf3,0xff,0x1e,0x1c,0xd7,0xff,0x5d,0x5c,0x4c, + 0xff,0xa8,0xa8,0x4,0xff,0xa8,0xa7,0x1,0xff,0x96,0x96,0x0,0xff,0x95,0x95,0x0, + 0xff,0x93,0x92,0x0,0xff,0x8b,0x8c,0x0,0xff,0x84,0x85,0x0,0xff,0x7d,0x7d,0x0, + 0xff,0x75,0x77,0x0,0xff,0x73,0x74,0x0,0xff,0x73,0x74,0x0,0xff,0x72,0x73,0x3, + 0xff,0x6f,0x70,0xc,0xff,0x71,0x72,0x0,0xff,0x6f,0x70,0x0,0xff,0x77,0x77,0x0, + 0xff,0x7b,0x7c,0x0,0xff,0x89,0x89,0x0,0xff,0x8e,0x8e,0x0,0xff,0x9f,0x9e,0x0, + 0xff,0xab,0xab,0x0,0xff,0xb4,0xb4,0x0,0xff,0xb6,0xb6,0x0,0xff,0xba,0xbb,0x0, + 0xff,0xbd,0xbd,0x0,0xff,0xcd,0xcc,0x2,0xff,0xbc,0xbc,0xa,0xff,0x36,0x37,0x66, + 0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x0,0x84,0x84,0xf2, + 0x0,0x85,0x85,0xf2,0x1,0x83,0x83,0xf2,0x25,0x84,0x84,0xf2,0xd7,0x7c,0x7c,0xf4, + 0xfb,0x6a,0x6a,0xf9,0xfd,0x67,0x67,0xfa,0xfe,0x5d,0x5d,0xfb,0xfe,0x55,0x54,0xfc, + 0xff,0x4e,0x4e,0xfc,0xff,0x48,0x48,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x3d,0x3c,0xfb, + 0xff,0x35,0x34,0xfa,0xff,0x27,0x25,0xf7,0xff,0x1b,0x19,0xf5,0xff,0x1e,0x1c,0xf4, + 0xff,0x21,0x1f,0xf5,0xff,0x2f,0x2d,0xf8,0xff,0x37,0x35,0xfa,0xff,0x3d,0x3c,0xfb, + 0xff,0x3f,0x3e,0xfb,0xff,0x3f,0x3e,0xfc,0xff,0x3f,0x3f,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x33,0x31,0xf9,0xff,0x21,0x1f,0xf5, + 0xff,0x13,0x10,0xf3,0xff,0x1d,0x1b,0xe9,0xff,0x39,0x39,0x94,0xff,0xa7,0xa7,0x12, + 0xff,0xbd,0xbe,0x2,0xff,0xb5,0xb6,0x1,0xff,0xb1,0xb1,0x0,0xff,0xad,0xad,0x0, + 0xff,0xaa,0xaa,0x0,0xff,0xa0,0x9f,0x0,0xff,0x99,0x97,0x0,0xff,0x94,0x93,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x8a,0x8a,0x0,0xff,0x85,0x86,0x0,0xff,0x87,0x87,0x0, + 0xff,0x87,0x87,0x0,0xff,0x87,0x88,0x0,0xff,0x90,0x90,0x0,0xff,0x95,0x94,0x0, + 0xff,0x9e,0x9d,0x0,0xff,0xa2,0xa1,0x0,0xff,0xac,0xab,0x0,0xff,0xb2,0xb2,0x0, + 0xff,0xb6,0xb6,0x0,0xff,0xb8,0xb8,0x1,0xff,0xba,0xbb,0x0,0xff,0xc8,0xc9,0x0, + 0xff,0xd5,0xd5,0x2,0xff,0xea,0xe9,0xd,0xff,0x9e,0x9e,0x33,0xff,0xd,0xd,0x8b, + 0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x0,0x84,0x84,0xf3,0x0,0x83,0x83,0xf2,0x5,0x84,0x84,0xf3,0x56,0x83,0x83,0xf2, + 0xe2,0x77,0x77,0xf6,0xfb,0x6a,0x6a,0xfa,0xfe,0x67,0x67,0xfb,0xfe,0x5a,0x59,0xfc, + 0xfe,0x57,0x56,0xfc,0xff,0x53,0x52,0xfc,0xff,0x49,0x48,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3c,0x3c,0xfb,0xff,0x37,0x36,0xfa,0xff,0x36,0x34,0xfa, + 0xff,0x3c,0x3b,0xfb,0xff,0x3e,0x3d,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x41,0x41,0xfc,0xff,0x3f,0x3f,0xfc,0xff,0x43,0x43,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x40,0x3f,0xfc,0xff,0x3d,0x3b,0xfc,0xff,0x27,0x25,0xf6,0xff,0x23,0x21,0xf5, + 0xff,0x1f,0x1d,0xe9,0xff,0x3d,0x3d,0xb2,0xff,0x93,0x93,0x37,0xff,0xce,0xce,0x2, + 0xff,0xcf,0xd0,0x0,0xff,0xc2,0xc4,0x0,0xff,0xbd,0xbf,0x0,0xff,0xb9,0xba,0x0, + 0xff,0xb3,0xb3,0x0,0xff,0xb1,0xb1,0x0,0xff,0xad,0xac,0x0,0xff,0xaa,0xaa,0x0, + 0xff,0xa3,0xa1,0x0,0xff,0xa0,0x9f,0x0,0xff,0xa0,0x9f,0x0,0xff,0xa1,0xa0,0x0, + 0xff,0xa4,0xa3,0x0,0xff,0xa7,0xa6,0x0,0xff,0xac,0xab,0x0,0xff,0xb0,0xb0,0x1, + 0xff,0xb2,0xb2,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb5,0xb5,0x0,0xff,0xb8,0xb9,0x0, + 0xff,0xb9,0xba,0x0,0xff,0xc0,0xc1,0x0,0xff,0xca,0xcc,0x0,0xff,0xdc,0xdc,0x2, + 0xff,0xeb,0xeb,0xe,0xff,0xe6,0xe6,0x1b,0xff,0x4c,0x4c,0x6b,0xff,0x1,0x1,0x93, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x0,0x86,0x86,0xf2,0x0,0x84,0x84,0xf2,0x0,0x84,0x84,0xf2,0x5,0x83,0x83,0xf2, + 0x56,0x83,0x83,0xf2,0xe2,0x72,0x72,0xf7,0xfb,0x6a,0x6a,0xfa,0xfe,0x67,0x67,0xfa, + 0xfe,0x60,0x5f,0xfb,0xfe,0x58,0x57,0xfc,0xff,0x53,0x53,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x45,0x44,0xfc,0xff,0x41,0x40,0xfc,0xff,0x40,0x3f,0xfc, + 0xff,0x43,0x42,0xfc,0xff,0x41,0x41,0xfc,0xff,0x45,0x44,0xfc,0xff,0x49,0x48,0xfc, + 0xff,0x4a,0x49,0xfc,0xff,0x4c,0x4b,0xfc,0xff,0x4a,0x49,0xfc,0xff,0x49,0x49,0xfc, + 0xff,0x47,0x46,0xfc,0xff,0x42,0x42,0xfc,0xff,0x38,0x37,0xf9,0xff,0x29,0x27,0xf5, + 0xff,0x2e,0x2c,0xd1,0xff,0x8c,0x8c,0x4d,0xff,0xcb,0xca,0x4,0xff,0xda,0xd9,0x1, + 0xff,0xd7,0xd6,0x0,0xff,0xd6,0xd6,0x0,0xff,0xca,0xcb,0x0,0xff,0xc3,0xc4,0x0, + 0xff,0xbd,0xbe,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb3,0xb4,0x0, + 0xff,0xb4,0xb4,0x0,0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb6,0x0, + 0xff,0xb4,0xb4,0x0,0xff,0xb8,0xb8,0x0,0xff,0xb7,0xb7,0x0,0xff,0xb7,0xb7,0x0, + 0xff,0xb6,0xb6,0x0,0xff,0xb7,0xb8,0x0,0xff,0xbc,0xbd,0x0,0xff,0xc1,0xc2,0x0, + 0xff,0xcd,0xce,0x0,0xff,0xd5,0xd5,0x1,0xff,0xe3,0xe2,0x7,0xff,0xf0,0xf0,0x12, + 0xff,0xf0,0xf0,0x16,0xff,0xa0,0xa0,0x40,0xff,0xf,0xf,0x8b,0xff,0x1,0x1,0x93, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x0,0x83,0x83,0xf3,0x0,0x84,0x84,0xf2,0x1,0x83,0x83,0xf2, + 0x5,0x83,0x83,0xf2,0x56,0x83,0x83,0xf2,0xe2,0x7b,0x7b,0xf4,0xfb,0x6c,0x6c,0xf9, + 0xfd,0x69,0x69,0xfa,0xfe,0x61,0x61,0xfb,0xfe,0x5d,0x5d,0xfb,0xfe,0x58,0x57,0xfc, + 0xff,0x55,0x54,0xfc,0xff,0x53,0x52,0xfd,0xff,0x50,0x50,0xfd,0xff,0x4f,0x4e,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfc, + 0xff,0x54,0x53,0xfd,0xff,0x56,0x55,0xfd,0xff,0x58,0x57,0xfc,0xff,0x54,0x53,0xfd, + 0xff,0x57,0x56,0xfc,0xff,0x55,0x54,0xfc,0xff,0x4a,0x49,0xf9,0xff,0x4b,0x4a,0xef, + 0xff,0x74,0x74,0xa0,0xff,0xd7,0xd7,0x24,0xff,0xea,0xe9,0xf,0xff,0xde,0xdd,0x3, + 0xff,0xdb,0xda,0x0,0xff,0xdb,0xda,0x0,0xff,0xda,0xda,0x0,0xff,0xd5,0xd5,0x0, + 0xff,0xce,0xcf,0x0,0xff,0xc6,0xc7,0x0,0xff,0xbe,0xbf,0x0,0xff,0xb9,0xbb,0x0, + 0xff,0xb9,0xbb,0x0,0xff,0xb7,0xb8,0x0,0xff,0xb8,0xb9,0x0,0xff,0xb8,0xb9,0x1, + 0xff,0xba,0xbb,0x0,0xff,0xb9,0xba,0x0,0xff,0xbb,0xbc,0x0,0xff,0xbe,0xc0,0x0, + 0xff,0xc1,0xc2,0x0,0xff,0xc5,0xc6,0x0,0xff,0xcb,0xcc,0x0,0xff,0xd5,0xd4,0x0, + 0xff,0xdf,0xde,0x2,0xff,0xec,0xec,0xd,0xff,0xf2,0xf2,0x14,0xff,0xf0,0xf0,0x16, + 0xff,0xa3,0xa3,0x3f,0xff,0x1a,0x1a,0x86,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x83,0x83,0xf3,0x0,0x84,0x84,0xf2, + 0x1,0x83,0x83,0xf2,0x5,0x83,0x83,0xf2,0x56,0x84,0x84,0xf2,0xe2,0x7c,0x7c,0xf4, + 0xfb,0x71,0x71,0xf7,0xfc,0x69,0x69,0xfa,0xfe,0x68,0x68,0xfa,0xfe,0x65,0x65,0xfb, + 0xfe,0x60,0x60,0xfb,0xfe,0x5d,0x5d,0xfb,0xff,0x5b,0x5a,0xfc,0xff,0x5c,0x5c,0xfc, + 0xff,0x58,0x57,0xfc,0xff,0x57,0x57,0xfc,0xff,0x5a,0x59,0xfc,0xff,0x5e,0x5e,0xfb, + 0xff,0x62,0x62,0xfb,0xff,0x65,0x65,0xfb,0xff,0x64,0x63,0xfb,0xff,0x63,0x62,0xfb, + 0xff,0x64,0x64,0xfa,0xff,0x67,0x67,0xf9,0xff,0x6b,0x6b,0xf4,0xff,0x68,0x68,0xd3, + 0xff,0x22,0x22,0x94,0xff,0x56,0x56,0x68,0xff,0xd1,0xd1,0x26,0xff,0xe9,0xe9,0x11, + 0xff,0xe2,0xe1,0x7,0xff,0xdd,0xdc,0x2,0xff,0xdb,0xda,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd9,0xd9,0x0,0xff,0xd5,0xd5,0x0,0xff,0xd0,0xd0,0x0,0xff,0xce,0xce,0x0, + 0xff,0xce,0xce,0x0,0xff,0xcc,0xcc,0x0,0xff,0xcc,0xcc,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xce,0xce,0x0,0xff,0xce,0xce,0x0,0xff,0xcf,0xd0,0x0,0xff,0xd2,0xd3,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xda,0xda,0x0,0xff,0xde,0xdd,0x3,0xff,0xe8,0xe8,0xa, + 0xff,0xf1,0xf1,0x12,0xff,0xf4,0xf3,0x15,0xff,0xdb,0xdb,0x21,0xff,0x7b,0x7b,0x53, + 0xff,0x1a,0x1a,0x86,0xff,0x1,0x1,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbd,0xbd,0xbd,0xff,0xad,0xad,0xad,0xff,0xab,0xab,0xab, + 0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa, + 0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa, + 0xff,0xaa,0xaa,0xaa,0xff,0xac,0xac,0xac,0xff,0xbd,0xbd,0xbd,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x0,0x83,0x83,0xf2, + 0x0,0x84,0x84,0xf2,0x1,0x83,0x83,0xf2,0x5,0x83,0x83,0xf2,0x4b,0x84,0x84,0xf2, + 0xaf,0x81,0x81,0xf2,0xed,0x77,0x77,0xf6,0xfc,0x6d,0x6d,0xf8,0xfd,0x6a,0x6a,0xf9, + 0xfe,0x69,0x69,0xfa,0xfe,0x68,0x68,0xfa,0xfe,0x68,0x68,0xfb,0xfe,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x67,0x67,0xfb,0xff,0x69,0x68,0xfa,0xff,0x6c,0x6c,0xf9, + 0xff,0x6d,0x6d,0xf9,0xff,0x72,0x72,0xf7,0xff,0x77,0x77,0xf6,0xff,0x78,0x78,0xf5, + 0xff,0x78,0x78,0xf5,0xff,0x81,0x81,0xf0,0xff,0x6f,0x6f,0xd5,0xff,0x18,0x18,0xa0, + 0xff,0x2,0x2,0x95,0xff,0x5,0x5,0x91,0xff,0x24,0x24,0x80,0xff,0x9c,0x9b,0x3d, + 0xff,0xe4,0xe4,0x1a,0xff,0xf0,0xf0,0x12,0xff,0xe8,0xe8,0xb,0xff,0xe6,0xe6,0xa, + 0xff,0xdf,0xde,0x3,0xff,0xdd,0xdc,0x1,0xff,0xdd,0xdc,0x1,0xff,0xdd,0xdc,0x1, + 0xff,0xdb,0xda,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xda,0xda,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdd,0xdc,0x1,0xff,0xdf,0xde,0x3, + 0xff,0xe7,0xe6,0xa,0xff,0xe8,0xe8,0xb,0xff,0xf1,0xf1,0x12,0xff,0xf4,0xf4,0x14, + 0xff,0xe5,0xe4,0x1a,0xff,0xa6,0xa6,0x38,0xff,0x49,0x49,0x6e,0xff,0x5,0x5,0x91, + 0xff,0x2,0x2,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbe,0xbe,0xbe,0xff,0xb9,0xb9,0xb9,0xff,0x67,0x67,0x67,0xff,0x28,0x28,0x28, + 0xff,0x25,0x25,0x25,0xff,0x28,0x28,0x28,0xff,0x28,0x28,0x28,0xff,0x25,0x25,0x25, + 0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25,0xff,0x25,0x25,0x25, + 0xff,0x24,0x24,0x24,0xff,0x2b,0x2b,0x2b,0xff,0xab,0xab,0xab,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x0,0x84,0x84,0xf2,0x0,0x84,0x84,0xf2,0x1,0x84,0x84,0xf2,0x2,0x82,0x82,0xf3, + 0x10,0x83,0x83,0xed,0x59,0x84,0x84,0xeb,0xd7,0x81,0x81,0xf3,0xf8,0x78,0x78,0xf5, + 0xfc,0x73,0x73,0xf7,0xfd,0x72,0x72,0xf7,0xfd,0x70,0x70,0xf7,0xfe,0x71,0x71,0xf8, + 0xfe,0x74,0x74,0xf7,0xfe,0x78,0x78,0xf5,0xff,0x79,0x78,0xf5,0xff,0x81,0x81,0xf2, + 0xff,0x83,0x83,0xf2,0xff,0x84,0x84,0xf0,0xff,0x85,0x85,0xef,0xff,0x86,0x86,0xe8, + 0xff,0x8c,0x8c,0xe1,0xff,0x93,0x93,0xc6,0xff,0x31,0x31,0x5a,0xff,0x2,0x2,0x87, + 0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x93,0xff,0x2,0x2,0x93,0xff,0xe,0xe,0x8b, + 0xff,0x4c,0x4c,0x6c,0xff,0xa6,0xa6,0x38,0xff,0xdb,0xdb,0x20,0xff,0xf0,0xf0,0x15, + 0xff,0xf2,0xf2,0x12,0xff,0xee,0xee,0xf,0xff,0xed,0xed,0xe,0xff,0xeb,0xeb,0xd, + 0xff,0xe8,0xe7,0xa,0xff,0xe6,0xe6,0xa,0xff,0xe2,0xe1,0x7,0xff,0xe3,0xe3,0x7, + 0xff,0xe8,0xe7,0xa,0xff,0xe8,0xe8,0xb,0xff,0xed,0xec,0xe,0xff,0xf1,0xf1,0x12, + 0xff,0xf3,0xf3,0x13,0xff,0xf0,0xf0,0x15,0xff,0xd8,0xd8,0x1e,0xff,0xa8,0xa8,0x39, + 0xff,0x48,0x48,0x69,0xff,0xe,0xe,0x8b,0xff,0x2,0x2,0x93,0xff,0x1,0x1,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xde,0xde,0xde,0xff,0x97,0x97,0x97, + 0xff,0x7a,0x7a,0x7a,0xff,0x92,0x92,0x92,0xff,0x92,0x92,0x92,0xff,0x77,0x77,0x76, + 0xff,0x82,0x82,0x82,0xff,0x78,0x78,0x78,0xff,0x71,0x71,0x71,0xff,0x71,0x71,0x71, + 0xff,0x66,0x66,0x66,0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x0,0x85,0x85,0xf2,0x0,0x84,0x84,0xf2,0x1,0x85,0x85,0xf2, + 0x1,0x82,0x82,0xd9,0x5,0x83,0x83,0xe6,0x25,0x84,0x84,0xe6,0xa4,0x84,0x84,0xe9, + 0xdf,0x84,0x84,0xf2,0xee,0x84,0x84,0xf1,0xfd,0x83,0x83,0xf0,0xfe,0x84,0x84,0xf2, + 0xfe,0x85,0x85,0xf2,0xfe,0x86,0x86,0xef,0xff,0x85,0x85,0xe7,0xff,0x86,0x86,0xef, + 0xff,0x8b,0x8b,0xe6,0xff,0x8d,0x8d,0xe2,0xff,0x9f,0x9f,0xd2,0xff,0xa3,0xa3,0xcc, + 0xff,0xb4,0xb4,0xc0,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x28,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x93,0xff,0xe,0xe,0x8b,0xff,0x26,0x26,0x7e,0xff,0x6d,0x6d,0x56, + 0xff,0xa6,0xa6,0x38,0xff,0xd9,0xd9,0x22,0xff,0xda,0xda,0x22,0xff,0xe6,0xe6,0x1a, + 0xff,0xf5,0xf5,0x14,0xff,0xf5,0xf5,0x14,0xff,0xf4,0xf4,0x13,0xff,0xf4,0xf4,0x13, + 0xff,0xf5,0xf5,0x14,0xff,0xe6,0xe6,0x1a,0xff,0xd9,0xd9,0x22,0xff,0xcf,0xcf,0x28, + 0xff,0x81,0x81,0x4b,0xff,0x6b,0x6b,0x55,0xff,0x25,0x25,0x7d,0xff,0xf,0xf,0x8c, + 0xff,0x1,0x1,0x93,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xed,0xed,0xed,0xff,0xc2,0xc2,0xc1, + 0xff,0xa6,0xa6,0xa5,0xff,0xaa,0xaa,0xa9,0xff,0x9f,0x9f,0x9e,0xff,0x9d,0x9d,0x9c, + 0xff,0xa1,0xa1,0xa1,0xff,0x90,0x90,0x90,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x71,0x71,0x71,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3,0x0,0x85,0x85,0xf2,0x0,0x84,0x84,0xf2, + 0x0,0x84,0x84,0xee,0x1,0x84,0x84,0xf2,0x1,0x83,0x83,0xce,0x10,0x83,0x83,0xdf, + 0x1d,0x84,0x84,0xf2,0x4e,0x84,0x84,0xe4,0x8d,0x82,0x82,0xb5,0xef,0xa1,0xa1,0xd8, + 0xfe,0xbc,0xbc,0xf3,0xfe,0xa4,0xa4,0xd3,0xff,0xa1,0xa1,0xc8,0xff,0xa4,0xa4,0xd4, + 0xff,0xb5,0xb5,0xc4,0xff,0xb8,0xb8,0xc2,0xff,0xbd,0xbd,0xbf,0xff,0xbd,0xbd,0xbe, + 0xff,0xbc,0xbc,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0xe,0xe,0x8c,0xff,0x1c,0x1c,0x85,0xff,0x1c,0x1c,0x85,0xff,0x48,0x47,0x69, + 0xff,0x7a,0x7a,0x53,0xff,0x7b,0x7b,0x54,0xff,0x7b,0x7b,0x53,0xff,0x7b,0x7b,0x54, + 0xff,0x7a,0x7a,0x53,0xff,0x48,0x47,0x69,0xff,0x1c,0x1c,0x85,0xff,0x1a,0x1a,0x87, + 0xff,0x4,0x4,0x92,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xc5,0xc5,0xc5,0xff,0xee,0xee,0xee,0xff,0xc6,0xc6,0xc5, + 0xff,0xbd,0xbd,0xbc,0xff,0xa2,0xa2,0xa2,0xff,0x8e,0x8e,0x8e,0xff,0xa2,0xa2,0xa1, + 0xff,0xaf,0xaf,0xae,0xff,0x9b,0x9b,0x9b,0xff,0x8c,0x8c,0x8c,0xff,0x7f,0x7f,0x7f, + 0xff,0x71,0x71,0x71,0xff,0x24,0x24,0x24,0xff,0xa9,0xa9,0xa9,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x0,0x84,0x84,0xce,0x0,0x84,0x84,0xe5,0x0,0x85,0x85,0xf2,0x1,0x85,0x85,0xf2, + 0x1,0x81,0x81,0xc8,0x2,0x85,0x85,0x8b,0x1e,0x7e,0x7e,0x7f,0xe1,0xbd,0xbd,0xbe, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc4,0xc4,0xc5,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbe, + 0xff,0xbc,0xbc,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x15,0x15,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc7,0xc7,0xc6, + 0xff,0xc1,0xc1,0xc0,0xff,0xbb,0xbb,0xba,0xff,0xaf,0xaf,0xae,0xff,0xaa,0xaa,0xa9, + 0xff,0x97,0x97,0x96,0xff,0x88,0x88,0x88,0xff,0x92,0x92,0x92,0xff,0x8c,0x8c,0x8c, + 0xff,0x72,0x72,0x72,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x0,0x86,0x86,0xf4,0x0,0x84,0x84,0xc9,0x0,0x85,0x85,0xde, + 0x0,0x82,0x82,0xbb,0x2,0x85,0x85,0x8b,0x1e,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbe, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc4,0xc4,0xc5,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbf, + 0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc7,0xc7,0xc6, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbe,0xbe,0xbd,0xff,0xa9,0xa9,0xa9, + 0xff,0xa2,0xa2,0xa1,0xff,0x92,0x92,0x91,0xff,0xa1,0xa1,0xa1,0xff,0x9e,0x9e,0x9e, + 0xff,0x72,0x72,0x72,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x85,0x85,0x85,0x1d,0x7e,0x7e,0x7e,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc4,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe, + 0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbf,0xbf,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa7,0xa7,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x84, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95, + 0xff,0x0,0x0,0x95,0xff,0x0,0x0,0x95,0xff,0x1,0x1,0x95,0xff,0x1,0x1,0x95, + 0xff,0x7e,0x7e,0xc9,0xff,0xf5,0xf5,0xf6,0xff,0xc5,0xc5,0xc6,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc7,0xc7,0xc6, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbe,0xbe,0xbd, + 0xff,0xb1,0xb1,0xb0,0xff,0x9b,0x9b,0x9b,0xff,0xa6,0xa6,0xa5,0xff,0x99,0x99,0x99, + 0xff,0x75,0x75,0x74,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa8,0xa8,0xa9,0xff,0x16,0x16,0x26,0xff,0x1,0x1,0x83, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x7e,0x7e,0xc8,0xff,0xf5,0xf5,0xf5,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc8,0xc8,0xc7, + 0xff,0xc2,0xc2,0xc1,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0, + 0xff,0xc0,0xc0,0xbf,0xff,0xae,0xae,0xad,0xff,0xaa,0xaa,0xa9,0xff,0x95,0x95,0x95, + 0xff,0x81,0x81,0x81,0xff,0x25,0x25,0x25,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa8,0xa8,0xa9,0xff,0x16,0x16,0x27,0xff,0x1,0x1,0x83, + 0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x93,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94, + 0xff,0x0,0x0,0x94,0xff,0x0,0x0,0x94,0xff,0x1,0x1,0x94,0xff,0x1,0x1,0x94, + 0xff,0x7e,0x7e,0xc9,0xff,0xf4,0xf4,0xf5,0xff,0xc4,0xc4,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xc8,0xc8,0xc7, + 0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xaa,0xaa,0xa9,0xff,0x98,0x98,0x97, + 0xff,0x9f,0x9f,0x9e,0xff,0x2a,0x2a,0x2a,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xa9,0xa9,0xaa,0xff,0x1c,0x1c,0x25,0xff,0x2,0x2,0x5f, + 0xff,0x0,0x0,0x83,0xff,0x0,0x0,0x83,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84, + 0xff,0x0,0x0,0x84,0xff,0x0,0x0,0x84,0xff,0x1,0x1,0x84,0xff,0x2,0x2,0x84, + 0xff,0x7e,0x7e,0xc0,0xff,0xf4,0xf4,0xf5,0xff,0xc4,0xc4,0xc5,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc5,0xc5,0xc5,0xff,0xee,0xee,0xee,0xff,0xc8,0xc8,0xc7, + 0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1,0xff,0xc2,0xc2,0xc1, + 0xff,0xc1,0xc1,0xc0,0xff,0xc1,0xc1,0xc0,0xff,0xbb,0xbb,0xba,0xff,0xa5,0xa5,0xa5, + 0xff,0x8f,0x8f,0x8e,0xff,0x29,0x29,0x29,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbd,0xbd,0xbd,0xff,0xb5,0xb5,0xb5,0xff,0x5e,0x5e,0x5e,0xff,0x15,0x15,0x1e, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20, + 0xff,0xf,0xf,0x20,0xff,0xf,0xf,0x20,0xff,0x10,0x10,0x21,0xff,0x1c,0x1c,0x2d, + 0xff,0xaf,0xaf,0xb8,0xff,0xf2,0xf2,0xf2,0xff,0xc4,0xc4,0xc4,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xef,0xef,0xef,0xff,0xcd,0xcd,0xcc, + 0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7, + 0xff,0xc8,0xc8,0xc7,0xff,0xc8,0xc8,0xc7,0xff,0xc7,0xc7,0xc6,0xff,0xc0,0xc0,0xbf, + 0xff,0x91,0x91,0x90,0xff,0x28,0x28,0x28,0xff,0xaa,0xaa,0xaa,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xa7,0xa7,0xa7,0xff,0x7b,0x7b,0x7c, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79, + 0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x78,0x78,0x79,0xff,0x86,0x86,0x87, + 0xff,0xe3,0xe3,0xe4,0xff,0xd3,0xd3,0xd3,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xee,0xee,0xee,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xee,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef, + 0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xef,0xef,0xef,0xff,0xed,0xed,0xed, + 0xff,0xde,0xde,0xde,0xff,0x67,0x67,0x67,0xff,0xad,0xad,0xad,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x86,0x86,0x86,0x1d,0x7f,0x7f,0x7f,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbd,0xbd,0xbd,0xff,0xb7,0xb7,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb6,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb6,0xb6,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7, + 0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb7,0xb7,0xb7,0xff,0xb9,0xb9,0xb9, + 0xff,0xc3,0xc3,0xc4,0xff,0xc1,0xc1,0xc1,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x85,0x85,0x85,0x1d,0x7e,0x7e,0x7e,0xe1,0xbd,0xbd,0xbd, + 0xfd,0xf4,0xf4,0xf4,0xfe,0xc4,0xc4,0xc4,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x1,0x85,0x85,0x85,0x1c,0x7e,0x7e,0x7e,0xe0,0xbd,0xbd,0xbd, + 0xfd,0xf5,0xf5,0xf5,0xfd,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x0,0x85,0x85,0x85,0x1c,0x7e,0x7e,0x7e,0xdf,0xbd,0xbd,0xbd, + 0xfc,0xf4,0xf4,0xf4,0xfd,0xc4,0xc4,0xc4,0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb8,0xb8,0xb8,0xff,0x87,0x87,0x87,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x84,0x84,0x84,0x19,0x7e,0x7e,0x7e,0xd4,0xb8,0xb8,0xb8, + 0xfb,0xf6,0xf6,0xf6,0xfd,0xdf,0xdf,0xdf,0xfe,0xdd,0xdd,0xdd,0xfe,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xdd,0xdd,0xdd, + 0xff,0xdd,0xdd,0xdd,0xff,0xd4,0xd4,0xd4,0xff,0x90,0x90,0x90,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x85,0x85,0x85,0x4,0x7e,0x7e,0x7e,0x56,0x8c,0x8c,0x8c, + 0xe2,0xd0,0xd0,0xd0,0xfb,0xf1,0xf1,0xf1,0xfe,0xf4,0xf4,0xf4,0xfe,0xf5,0xf5,0xf5, + 0xfe,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf5,0xf5,0xf5,0xff,0xf7,0xf7,0xf7,0xff,0xd2,0xd2,0xd2,0xff,0x8c,0x8c,0x8c, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x7e,0x7e,0x0,0x7f,0x7f,0x7f,0x0,0x81,0x81,0x81,0x5,0x7e,0x7e,0x7e, + 0x56,0x85,0x85,0x85,0xe2,0x9b,0x9b,0x9b,0xfb,0xbe,0xbe,0xbe,0xfe,0xc3,0xc3,0xc3, + 0xfe,0xc4,0xc4,0xc4,0xfe,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5,0xff,0xc5,0xc5,0xc5, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xd4,0xd4,0xd4,0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1, + 0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x86,0x86,0x86,0x0,0x7d,0x7d,0x7d,0x1,0x85,0x85,0x85, + 0x5,0x7f,0x7f,0x7f,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8, + 0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe,0xfe,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3, + 0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x83,0x83,0x83,0x0,0x7d,0x7d,0x7d, + 0x1,0x81,0x81,0x81,0x5,0x7e,0x7e,0x7e,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93, + 0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe,0xfe,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3, + 0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x70,0x70,0x70, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e, + 0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe, + 0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1, + 0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c, + 0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x71,0x71,0x71, + 0xfe,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe1,0x1,0x1,0x1,0x1d,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d, + 0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd, + 0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3,0xff,0xd1,0xd1,0xd1, + 0xff,0x8c,0x8c,0x8c,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x71,0x71,0x71, + 0xfd,0xf,0xf,0xf,0xfd,0x0,0x0,0x0,0xe0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d, + 0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8, + 0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1,0xff,0xd3,0xd3,0xd3,0xff,0xf3,0xf3,0xf3, + 0xff,0xd1,0xd1,0xd1,0xff,0x8c,0x8c,0x8c,0xfe,0x7f,0x7f,0x7f,0xfe,0x71,0x71,0x71, + 0xfd,0xf,0xf,0xf,0xfc,0x0,0x0,0x0,0xdf,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d, + 0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e,0xe2,0x93,0x93,0x93, + 0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe,0xfe,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xd3,0xd3,0xd3, + 0xff,0xf2,0xf2,0xf2,0xff,0xd1,0xd1,0xd1,0xfe,0x8b,0x8b,0x8b,0xfe,0x72,0x72,0x72, + 0xfd,0xf,0xf,0xf,0xfb,0x0,0x0,0x0,0xd4,0x1,0x1,0x1,0x19,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d,0x56,0x7e,0x7e,0x7e, + 0xe3,0x93,0x93,0x93,0xfb,0xb8,0xb8,0xb8,0xfe,0xbd,0xbd,0xbd,0xfe,0xbe,0xbe,0xbe, + 0xfe,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xd3,0xd3,0xd3,0xfe,0xf3,0xf3,0xf3,0xfe,0xd0,0xd0,0xd0,0xfe,0x7f,0x7f,0x7f, + 0xf8,0x11,0x11,0x11,0xd8,0x2,0x2,0x2,0x56,0x6,0x6,0x6,0x4,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x7d, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d,0x5,0x7d,0x7d,0x7d, + 0x56,0x7e,0x7e,0x7e,0xe4,0x91,0x91,0x91,0xfd,0x9e,0x9e,0x9e,0xfe,0x9e,0x9e,0x9e, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa1,0xa1,0xa1,0xff,0xb1,0xb1,0xb1,0xfe,0xce,0xce,0xce,0xfd,0xa1,0xa1,0xa1, + 0xd9,0x45,0x45,0x45,0x31,0x23,0x23,0x23,0x5,0xc,0xc,0xc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x0,0x7d,0x7d,0x7d,0x1,0x7d,0x7d,0x7d, + 0x6,0x7d,0x7d,0x7d,0x61,0x7e,0x7e,0x7e,0xf0,0x7f,0x7f,0x7f,0xfd,0x7e,0x7e,0x7e, + 0xfe,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0xfd,0x86,0x86,0x86,0xf0,0x84,0x84,0x84, + 0x61,0x5d,0x5d,0x5d,0x6,0x2b,0x2b,0x2b,0x1,0x3,0x3,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x80,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xc0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xe0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xf0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfc,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xfe,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty.ico + 0x0,0x0,0x3,0xbd, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x5a,0xbd,0x6e,0x1b,0x31,0xc,0x66,0x1,0x23,0x40, + 0xd0,0x25,0x43,0x86,0x8c,0x1e,0x3b,0xf6,0x11,0x32,0xf5,0xd,0x4,0x8f,0xee,0x54, + 0xf4,0x25,0xa,0x7b,0xec,0xd8,0x47,0xc8,0xd0,0xa1,0xd5,0x1,0xb9,0xb5,0x53,0xed, + 0x97,0xf0,0x4b,0xdc,0xd0,0xcd,0x8b,0x1,0x5b,0xa5,0x7c,0x51,0x7d,0x66,0x44,0x91, + 0x94,0xaf,0x29,0x4a,0x20,0x60,0xee,0x87,0xe4,0x47,0x1d,0xf5,0x91,0x77,0x9,0xc0, + 0x2b,0x98,0xc0,0xcd,0xd,0xa0,0x9e,0xc2,0xc7,0x9,0xc0,0x3b,0x0,0xb8,0xbd,0xed, + 0x8f,0x7f,0x5c,0x1,0x3c,0xe2,0xb9,0xbb,0xbb,0xfe,0xf8,0xf3,0x35,0xc0,0x87,0xd7, + 0x0,0xd3,0x69,0x7f,0xfc,0xd,0xed,0x7e,0xe1,0xbd,0x6f,0xd0,0x6,0x7f,0xc5,0x33, + 0xfd,0xf9,0x28,0xf7,0x13,0xb0,0x48,0x60,0x34,0x2b,0xcb,0xe5,0xf2,0x78,0xcf,0x7a, + 0xbd,0x3e,0xea,0x80,0x12,0xf5,0xd7,0x87,0x7,0xd1,0x7,0xb5,0x4d,0x3a,0xd9,0xa6, + 0xe3,0x74,0x9f,0xc6,0x36,0xc5,0xa7,0xb6,0xe9,0xd8,0x12,0x3f,0x63,0x1b,0xa8,0x2d, + 0xbd,0x87,0x3b,0x3f,0xf4,0x41,0xef,0xa1,0x3a,0xc5,0xa1,0xb6,0xc3,0x1c,0xa,0xb6, + 0x30,0xf4,0x91,0xcb,0x81,0xc3,0xc,0xe4,0x59,0x15,0x72,0x28,0xad,0xef,0xd9,0x79, + 0xfa,0x3c,0x72,0xf9,0x73,0xeb,0x9e,0x6c,0x33,0x3e,0x44,0x5b,0x5a,0xf,0x49,0xf, + 0x85,0xe6,0xc5,0x61,0x1e,0xd8,0xb2,0x3e,0x52,0x7c,0x6a,0x9b,0xab,0x1d,0x2a,0x74, + 0x3d,0x72,0x6b,0xc6,0xd9,0x72,0x3e,0x72,0x7b,0x26,0xc9,0x7e,0x1e,0x42,0xd7,0x86, + 0xb0,0x99,0x85,0xe0,0x1b,0xd4,0xe,0xb5,0xf,0xc1,0xa1,0x6e,0xa2,0xde,0x9c,0x8e, + 0xd3,0xf5,0xe,0xf5,0x16,0xef,0xdf,0xad,0x42,0x88,0x3c,0x83,0x74,0x73,0xe4,0x9b, + 0xc4,0x33,0x5f,0xae,0x24,0x84,0x59,0x31,0xf3,0xd,0x15,0x89,0x7,0x2c,0x3e,0x25, + 0x5f,0xb4,0xc6,0x4a,0xbe,0xb9,0x3a,0x50,0x70,0x1c,0xcb,0x53,0x9c,0x4f,0x8e,0xf3, + 0x4a,0xbc,0xc9,0xed,0x2d,0x6e,0x4f,0x94,0x78,0x94,0xdb,0x6b,0x12,0xcf,0xe5,0xea, + 0x9b,0xcb,0x2d,0xb3,0x3e,0x6a,0x9e,0xe5,0x72,0xca,0x88,0xc8,0xbb,0x85,0x6b,0x59, + 0x9f,0xff,0x1a,0x9f,0x54,0xab,0xa5,0x1e,0xc4,0xf5,0x89,0x4c,0xce,0xaa,0xe7,0x9d, + 0x3b,0xc7,0xf1,0x37,0xad,0x53,0x4d,0x4d,0x4b,0x3c,0x6e,0x59,0x1b,0xa9,0x27,0x59, + 0xea,0x20,0xd9,0x5a,0x7d,0xe5,0xf6,0x1a,0xf5,0xa9,0xdd,0xcf,0x39,0x5c,0x92,0xef, + 0x31,0x7c,0x71,0x78,0x4b,0xfd,0x29,0x49,0x88,0xfd,0x26,0xf6,0x1d,0xb7,0x8,0x9d, + 0x5f,0x61,0x1f,0x5a,0x60,0x5f,0x8a,0x7a,0x8e,0xba,0xd,0x6e,0x8b,0x7a,0x37,0xd0, + 0xc7,0xf3,0xfd,0xf5,0x74,0x7f,0x87,0x7d,0x6c,0x8f,0xfd,0xeb,0xd0,0xf6,0x7d,0xb, + 0x47,0x68,0x78,0xb,0xa7,0xbe,0xf5,0xfe,0xda,0x9a,0xc9,0x39,0x44,0x46,0x57,0xb, + 0x37,0xbf,0x64,0xe6,0x69,0x73,0x2c,0xae,0xbe,0xb8,0xfe,0x61,0x89,0x21,0xf9,0xe6, + 0xf6,0xb7,0x26,0x86,0xb4,0x3f,0x38,0xdf,0x9a,0x7a,0x95,0x7c,0x4b,0xef,0x13,0x9a, + 0x7d,0x2f,0xc5,0x90,0x7c,0xe7,0x62,0x70,0xb9,0x72,0x3e,0xb5,0x58,0x72,0xf8,0x39, + 0x7e,0x5,0x86,0xff,0x6b,0xf0,0x6b,0x9f,0x99,0x26,0x86,0xa2,0xf,0x15,0x6b,0x4e, + 0x11,0x43,0xd3,0x53,0x38,0x51,0xe3,0xb7,0xf4,0x98,0x97,0xc6,0x6f,0x99,0x1b,0xc, + 0x31,0xce,0xf6,0x5c,0xcd,0x1c,0x61,0xad,0x51,0xcb,0x5c,0xa1,0xe5,0x1b,0x5,0x16, + 0xb5,0x6f,0xed,0x8c,0xa0,0xc1,0x5f,0xeb,0x3b,0xc7,0xd,0x34,0x86,0x34,0xbf,0xd5, + 0xf8,0x96,0x62,0x8c,0xe1,0x9b,0xc6,0xd0,0xce,0x53,0x16,0xdf,0x52,0xc,0xeb,0xfe, + 0xae,0x89,0xa5,0x99,0xb7,0x92,0x4,0x7c,0xff,0x3f,0xe0,0xfc,0xb4,0xc7,0x39,0x6a, + 0x87,0x73,0xd6,0xd6,0xcd,0x70,0x8e,0x6a,0x70,0x9e,0x72,0x38,0x5f,0x3d,0xe9,0x9f, + 0x3e,0xb8,0x5,0xea,0xc3,0x40,0x7f,0x1a,0x5c,0x3f,0xea,0x68,0x17,0xed,0xa3,0x9f, + 0xe8,0x6f,0x11,0x42,0xd3,0xcf,0x61,0x53,0xfc,0xb9,0x87,0xd3,0x1c,0xb6,0xbc,0xb9, + 0x34,0xe3,0x1e,0xba,0xa0,0x47,0x17,0x89,0x3,0x2c,0xdf,0x43,0x6b,0x63,0x73,0xb5, + 0x49,0x63,0x5b,0xbe,0x5f,0x48,0xa2,0xe5,0x8c,0x31,0xe6,0xbf,0xb1,0x62,0x17,0x38, + 0x5f,0x8d,0x41,0x1b,0x9b,0x72,0x2e,0x17,0xdb,0xb2,0xe7,0xad,0x7c,0x2d,0xad,0xbd, + 0x85,0x77,0xb4,0x7c,0x78,0x69,0xaf,0xcc,0x61,0xb0,0x72,0x32,0xcd,0x9f,0xae,0xbd, + 0xa5,0x5f,0x50,0x9b,0xda,0x75,0xd0,0xc6,0x7e,0xd2,0x67,0x38,0xb8,0xbc,0x38,0xc, + 0x1c,0xf7,0x6b,0xb1,0xe,0xe3,0x4b,0xbc,0xa6,0x78,0x77,0xac,0xc5,0xa0,0xe6,0x37, + 0xc5,0xb7,0xde,0x6a,0xc,0xda,0x1a,0xbb,0x74,0xee,0xcf,0x3d,0x3,0x2d,0x5e,0x43, + 0x6f,0x1f,0x3d,0xff,0x5c,0xcd,0x94,0xc4,0xb0,0x7,0xff,0x8b,0xfc,0xad,0x3d,0x64, + 0xcc,0xfc,0xad,0x3d,0xa4,0x66,0x6e,0xd6,0xc6,0x96,0xd6,0xa1,0x62,0xae,0x66,0x31, + 0x70,0xeb,0xa2,0xe5,0x1e,0xcb,0xb7,0x52,0x2e,0x4f,0xe,0xb7,0xb6,0xdf,0x29,0x30, + 0x3c,0x5b,0x3b,0x6d,0x6c,0x6b,0x7f,0xd4,0xfc,0xbd,0xd1,0x9a,0x77,0x2d,0x86,0x97, + 0x8c,0x5d,0xc0,0xf0,0x4c,0x38,0xc,0xdc,0x6c,0x5d,0x8b,0xa1,0x24,0x14,0xc3,0x58, + 0xb1,0x73,0x35,0x27,0x61,0x90,0x62,0x8f,0xf1,0x6d,0x41,0x8b,0x41,0xfb,0x5e,0x3d, + 0x46,0x6c,0x9,0x43,0xd,0xbf,0x5d,0x2a,0xda,0xfc,0x81,0xf0,0xe2,0xdf,0x10,0x6e, + 0xf6,0x34,0xf4,0xe8,0x3f,0x12,0xb6,0xf3,0xfe,0x1f,0x10,0x9c,0x5b,0x1c,0xbc,0x5f, + 0xed,0x9d,0x9b,0xef,0xbc,0x6f,0xb7,0xce,0xcd,0x3a,0xef,0x9b,0xd,0x6a,0xef,0xfd, + 0x77,0xd4,0xe,0x75,0xe3,0x66,0x1b,0xe7,0xdb,0xce,0xbb,0xf9,0x16,0xf5,0xee,0xa4, + 0x67,0xa8,0x9b,0xce,0xa7,0xfb,0xa2,0x4e,0xf6,0x5d,0xef,0x2f,0xfa,0x8d,0xfe,0x63, + 0x9c,0xfe,0x1f,0x1e,0x76,0x6d,0xf8,0xd,0x7d,0xf0,0x6a,0x94, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-gray.ico + 0x0,0x0,0x90,0x73, + 0x0, + 0x2,0x37,0xa,0x78,0x9c,0x2c,0x7a,0x5,0x54,0x54,0xef,0xf3,0xfe,0xdd,0xa5,0x96, + 0x10,0x96,0x6,0xa9,0xa5,0x41,0x29,0x9,0x69,0x76,0x69,0xa4,0x51,0xa4,0x53,0x90, + 0xee,0xee,0x4e,0x41,0x5a,0x10,0x10,0xe9,0x52,0xba,0xbb,0x44,0x42,0x41,0xba,0x53, + 0x41,0xba,0x7b,0x61,0x17,0xfe,0x7e,0xff,0x9f,0xdf,0x3d,0xe7,0x9e,0x73,0x9f,0xfb, + 0xce,0xbc,0x33,0xf3,0xcc,0x7b,0xe7,0x7d,0xe7,0x9c,0xb,0x0,0x20,0x0,0x17,0xf8, + 0xdf,0x5,0x2,0x60,0x40,0x91,0x2a,0x0,0xa4,0xff,0x7b,0x86,0x42,0xff,0xc3,0x36, + 0x98,0x0,0x20,0xa6,0x6,0x0,0x64,0x64,0xff,0xe1,0x16,0x6c,0x0,0x28,0xd0,0x2, + 0x0,0x2a,0xaa,0xff,0x70,0xcc,0x3f,0x55,0x3,0x3d,0x0,0x80,0xc1,0xfe,0xc3,0x65, + 0xff,0xf4,0xfe,0x98,0x3,0x0,0x1f,0xdf,0xff,0x61,0x56,0x0,0x78,0xe7,0x6,0x0, + 0x8,0xc4,0x7f,0x98,0x43,0x6,0x0,0xf8,0x3f,0x2,0x80,0x92,0xd2,0xff,0xe9,0x6b, + 0xff,0xd3,0x5f,0x4,0x80,0x90,0x90,0xff,0x1b,0x87,0x80,0x80,0x3f,0x3c,0x20,0x20, + 0x56,0x53,0x5d,0xf1,0x11,0xde,0x63,0xbc,0x7f,0xae,0x3c,0x7a,0xa1,0x24,0xf7,0xf2, + 0x7f,0xa3,0xff,0xbb,0x21,0xff,0xec,0x3,0x46,0x6e,0x65,0x56,0x0,0xa0,0x6a,0xff, + 0x42,0x4e,0x5a,0xdb,0xe7,0xd3,0x61,0x20,0xee,0x27,0xa3,0xd7,0x99,0xc7,0xba,0x33, + 0x39,0x26,0x75,0xc7,0xfe,0xec,0xa0,0xbe,0x14,0x28,0x24,0xf,0x64,0xf9,0xe8,0x2e, + 0x81,0xef,0xdb,0xc9,0xc7,0x68,0xa2,0x9c,0x6d,0x8,0xa6,0x25,0xad,0xf4,0x60,0xe9, + 0x9,0xe6,0xd6,0x36,0x7f,0xc2,0x8f,0x9d,0x13,0xa8,0xf5,0x4c,0xe6,0xa9,0x68,0x82, + 0xc6,0x60,0x32,0x37,0x8c,0x3,0xa,0x79,0x37,0x44,0x52,0xf7,0x23,0xab,0xb8,0xde, + 0xeb,0xaa,0xb2,0x7d,0x6a,0xf7,0x8b,0xf7,0xfd,0xf6,0xe7,0xe3,0x69,0x6f,0x8d,0x95, + 0x2f,0x55,0x7b,0x6d,0x33,0xaf,0x8d,0x3d,0xef,0x91,0xaf,0x8f,0x2a,0xdb,0x3f,0xf9, + 0x3b,0x5f,0xa2,0x83,0x97,0x90,0xbf,0xbc,0x49,0xb4,0xb,0x5b,0xae,0x57,0xfd,0xa7, + 0xf4,0xd8,0x48,0x62,0x95,0xd7,0xde,0x45,0x2b,0xbe,0x50,0x2a,0x9d,0xf2,0x78,0x40, + 0x5f,0x67,0xfc,0x95,0xaf,0x7a,0xe1,0xe5,0x73,0xe6,0x3f,0xcd,0x74,0xd4,0x7e,0xdc, + 0x35,0x6f,0xba,0x93,0x65,0x1,0x49,0x65,0x38,0x1,0xf7,0x58,0xf0,0x61,0x64,0x31, + 0x68,0x1e,0xb,0xa2,0xff,0x9a,0xde,0x17,0x9b,0x24,0x1a,0x42,0x4,0x7,0x16,0xf4, + 0x8a,0x19,0x87,0x89,0xb8,0x8c,0x5a,0x6a,0x64,0xbc,0xff,0xfc,0xd6,0x12,0xfb,0x25, + 0xba,0x4d,0xdb,0x7e,0xff,0x9d,0x37,0x68,0x2,0x2f,0x54,0x44,0x4b,0x0,0xdc,0xc3, + 0xfa,0xe0,0xbb,0x9d,0xa3,0x5b,0x6e,0x78,0x7a,0xc2,0x41,0x9d,0x82,0xa,0x81,0xc1, + 0xbb,0xb7,0x6b,0xf5,0xc0,0xc3,0x22,0x8f,0xcb,0x5,0x25,0x90,0x92,0x76,0xb8,0xbe, + 0x43,0xbc,0xc9,0x9,0x8b,0x7a,0x5c,0xd8,0x9d,0xc0,0xc9,0xe6,0x75,0x19,0x2b,0x99, + 0x52,0x90,0xc2,0xb0,0x8c,0x99,0x26,0x3e,0xa0,0x11,0x94,0x68,0x20,0x93,0xbc,0x99, + 0x88,0x15,0xae,0x3,0xfc,0xcf,0x1b,0x92,0x27,0xd2,0x41,0x66,0x9a,0x78,0xff,0xbd, + 0x2f,0x1e,0x22,0x22,0x10,0x3,0xad,0xf,0x1f,0x6b,0xa9,0x94,0xb1,0x20,0x43,0xa5, + 0x59,0x81,0xff,0x3f,0xdb,0x7,0x36,0x38,0x9f,0xd,0x66,0x8,0x7b,0xb7,0x22,0x77, + 0xfe,0xe3,0x7f,0x22,0x78,0xff,0x27,0x42,0x71,0x86,0xf1,0x9a,0xf7,0x3f,0x91,0x19, + 0xb9,0xa0,0xbc,0x2f,0x58,0xff,0x89,0x2c,0xe,0x11,0x69,0x57,0xfe,0x67,0x57,0x9b, + 0x19,0x19,0xfa,0x85,0xc,0xf8,0x8c,0xa2,0x6f,0x8c,0xb0,0x63,0x85,0x6b,0x7a,0x82, + 0x7b,0x52,0xd7,0xa,0xd3,0x35,0x47,0x37,0x71,0xbe,0x28,0xff,0x67,0xff,0x4b,0xe, + 0xa,0x31,0x33,0x8d,0x91,0xb4,0xa9,0x88,0x45,0x46,0xf4,0xcf,0x7,0xa1,0x14,0x86, + 0x32,0x3c,0xfc,0xff,0x2f,0xa6,0x55,0xb9,0x89,0xf3,0x84,0xe7,0xff,0x1b,0xa0,0x9e, + 0x51,0xd,0xca,0xb3,0x33,0x2,0x28,0x55,0xd2,0xb9,0xca,0x2f,0xb8,0x7d,0x7c,0xa6, + 0x25,0x9e,0x38,0x81,0x7c,0x7c,0x7c,0xb4,0x9,0xc9,0x29,0x81,0x2e,0x8f,0xe6,0x68, + 0xc5,0xbf,0x9a,0xe4,0x3c,0x21,0x94,0x60,0x7a,0xfa,0xf,0xd2,0xdf,0xb9,0x1,0x22, + 0xa2,0xc4,0x1f,0xbd,0xf8,0x0,0x51,0xa2,0x58,0x14,0x25,0x40,0x4f,0xef,0x49,0xf0, + 0xcf,0x51,0x9,0x3c,0x84,0xac,0xac,0x6c,0xb1,0x73,0x3e,0xd7,0x3f,0xda,0xbf,0x15, + 0x2,0x17,0x57,0x57,0x8b,0x97,0x6,0x24,0xd8,0xaf,0x27,0xf0,0xf9,0xa0,0x3e,0x47, + 0xad,0xdb,0x4f,0x2,0xf1,0xe9,0x9f,0x1,0xa9,0x96,0xe0,0x48,0xb6,0x77,0xad,0x18, + 0x6e,0x7f,0xe4,0xf8,0x33,0x69,0x2f,0x8e,0x5f,0x1b,0xeb,0x1,0xe1,0xe8,0xc4,0xcd, + 0xe4,0xf7,0x6e,0x24,0xed,0xd0,0x10,0x54,0x8f,0x59,0x33,0xb6,0xdd,0x2a,0xd8,0xec, + 0x6c,0xcd,0x7b,0x2d,0x90,0xbc,0x93,0x28,0xd1,0xa7,0x87,0x2,0x0,0x18,0x35,0xcb, + 0x58,0x6b,0x3c,0x76,0x27,0xe7,0x8f,0x7e,0x67,0x5a,0x7f,0xae,0xdd,0x9f,0x14,0xa2, + 0x8a,0x2f,0xc3,0xff,0x17,0x48,0xb7,0x57,0x4f,0x56,0xf3,0xcb,0xa4,0xcd,0x6a,0xac, + 0xe9,0xe,0x2c,0xd8,0xb0,0xa9,0x6d,0xfd,0x84,0x85,0x4b,0xf8,0x70,0xf0,0xef,0x48, + 0xca,0x49,0xf4,0xf5,0x9a,0xe9,0xef,0xf6,0x58,0x1c,0x21,0x5e,0x80,0xea,0x1f,0x49, + 0xc5,0xc0,0x26,0xce,0xa9,0x6f,0xa7,0x8e,0x26,0x25,0x4f,0x48,0xb4,0x22,0xa7,0xd9, + 0x99,0xa,0x3e,0xe2,0xd,0x1f,0xe,0xf8,0x5f,0x16,0x4f,0x38,0x0,0x64,0xc3,0xbd, + 0x19,0x21,0xa6,0x1f,0x68,0xfd,0xf7,0x4,0x4e,0xde,0x69,0xf1,0x6c,0x35,0x2b,0x65, + 0x9e,0xd3,0x9b,0x7f,0xc1,0x7d,0x97,0xc9,0x42,0x75,0x98,0xa8,0x6c,0xe2,0x74,0x60, + 0xad,0xff,0x26,0x6,0x65,0xa0,0xaa,0xd6,0x4c,0x9f,0xfe,0x2f,0x44,0x59,0xd8,0x93, + 0x71,0xdd,0x9f,0x32,0x3d,0xff,0x78,0x20,0x2,0xd9,0x1e,0x61,0x68,0x39,0x21,0xb8, + 0x7b,0x7,0xff,0x11,0xc1,0x71,0xb0,0x34,0xf7,0x64,0xa1,0x70,0x1d,0x2b,0x24,0x1a, + 0x47,0xeb,0x17,0x47,0x30,0x77,0xf6,0x43,0xc8,0x3f,0x9a,0x3c,0xdf,0x77,0xf1,0xa3, + 0xec,0x84,0x6e,0xc7,0xfe,0x29,0x17,0xf2,0x84,0x58,0xd2,0x59,0x1e,0x9c,0x92,0xb8, + 0xc,0x1f,0xda,0xf9,0xa,0x63,0xd4,0x50,0x68,0x11,0x83,0x6a,0x1e,0xbe,0x9a,0x36, + 0x4e,0x85,0x56,0xaa,0x97,0xda,0x26,0x70,0xe2,0x7,0x9d,0xd8,0x9b,0xd6,0xf,0x6, + 0x8c,0x1f,0x58,0x9c,0x3c,0xeb,0xbe,0x1b,0x8f,0xc6,0xde,0xe1,0x89,0x1b,0x4c,0x39, + 0xe,0xcc,0x65,0x53,0xcd,0xd5,0x19,0xaf,0xa5,0x3b,0xa4,0xd9,0xfd,0x4,0x47,0xea, + 0xf9,0x3a,0xf,0x31,0x47,0x70,0x30,0x2,0x72,0xc9,0x1d,0xf4,0xff,0x56,0x4f,0xc, + 0xe0,0xf3,0xf7,0xa9,0xe9,0x84,0xea,0x67,0x52,0xad,0x7,0xb8,0x5d,0x76,0xbb,0x6, + 0x5e,0x18,0xd1,0xfd,0xed,0x1c,0x63,0xbe,0x16,0x6e,0x68,0x52,0xdc,0xe,0xe9,0x3b, + 0x1b,0x8c,0xed,0xea,0xa0,0xdb,0xdd,0x8a,0x43,0x77,0x9e,0xb6,0xb2,0x8,0xf1,0xf3, + 0x21,0x2c,0x36,0xa9,0x93,0x83,0xfa,0xb1,0xad,0xb,0xa4,0x7b,0xe5,0xdc,0x93,0x1f, + 0x3c,0x40,0x51,0xd3,0x31,0xaf,0x11,0x23,0x23,0x56,0x38,0x19,0x44,0x8f,0x5e,0x64, + 0x23,0xfe,0x25,0x2f,0x25,0xee,0x8b,0xdb,0x37,0x31,0x26,0x5c,0x30,0x32,0x33,0xba, + 0x75,0x83,0x55,0xe5,0x18,0x22,0xd5,0xa0,0xdd,0xf3,0x6d,0x7e,0xe4,0xdf,0x6b,0x3, + 0xc5,0x5,0x4c,0xa0,0x21,0x88,0xe7,0x70,0x75,0x79,0x55,0x7d,0x65,0xaa,0x34,0x3a, + 0x3d,0x64,0x59,0x7,0xd2,0x12,0xe8,0x4b,0x47,0x1,0x71,0x85,0x84,0x89,0x28,0xf1, + 0xe,0x1b,0x95,0xf9,0x9b,0x55,0xdb,0x56,0x60,0x4a,0xcd,0x19,0xe2,0x14,0xf7,0x5e, + 0xa2,0xb,0xc3,0x82,0x2f,0xdf,0xdc,0xa,0xfc,0xe0,0x67,0xd7,0x4d,0x9b,0xb5,0x4e, + 0xb9,0xa6,0x8c,0xc4,0xc3,0xc2,0xf5,0xa2,0xa3,0x8,0xf8,0x8d,0x2f,0x3f,0x83,0x11, + 0xc3,0x3f,0x5a,0xb8,0x9e,0x42,0xf3,0xf3,0x8d,0x56,0x85,0xcb,0x89,0x8e,0x74,0xcb, + 0x80,0x85,0x29,0x6b,0xef,0xcd,0x31,0xfd,0xeb,0x9e,0xc2,0xb4,0x53,0xf4,0xb2,0x89, + 0xe9,0x25,0xdb,0x46,0x95,0x22,0xb5,0xd6,0xca,0x17,0x16,0xc2,0xc1,0x27,0xc0,0xf, + 0x69,0x94,0x11,0xc7,0x80,0x41,0x8,0xac,0x65,0x7f,0x98,0xfd,0x4e,0xa2,0x2a,0x9, + 0x66,0x12,0xac,0x64,0x42,0xd0,0x1,0xdb,0xa1,0xf9,0x8e,0x17,0xe2,0x96,0x4e,0x4c, + 0x73,0x0,0x86,0x51,0x50,0xc2,0x9c,0xfe,0x8,0x3b,0xac,0x28,0x74,0xa6,0xb2,0x6d, + 0x49,0x46,0x2d,0x8d,0x79,0xd2,0x71,0x52,0x9d,0x61,0x3d,0xa6,0x1e,0xbf,0xd5,0xb2, + 0xa,0x6a,0xc5,0x5d,0x9b,0xbb,0x74,0xc3,0xc5,0xa4,0x96,0xbb,0xa8,0x92,0x76,0xd2, + 0x6e,0x8b,0x32,0x6b,0x2c,0xb4,0xc4,0xcf,0x83,0x6f,0x5a,0x87,0x29,0x72,0x87,0x96, + 0x5d,0x76,0x61,0xca,0x48,0xd5,0xf0,0xc5,0xd4,0x61,0x16,0x8c,0xa0,0xeb,0x92,0x82, + 0xf6,0xd9,0xa,0x5e,0xbc,0xba,0xb,0xf4,0x33,0x4d,0x97,0x96,0xc4,0xd,0x7d,0xc3, + 0x15,0xa2,0x5c,0x58,0xc2,0xd,0x64,0xa0,0x90,0x31,0xb9,0x71,0xfd,0xaa,0x17,0x46, + 0x4b,0x3e,0x92,0x19,0x88,0x21,0x76,0xd5,0x9b,0x8f,0x46,0x55,0x61,0x2a,0xf7,0x5, + 0x31,0x63,0x11,0x3,0xfc,0x38,0x29,0xed,0x57,0x9a,0x76,0x23,0x65,0x27,0xa2,0xc8, + 0x9e,0x43,0x79,0x8,0x5e,0x57,0xb3,0x51,0x58,0x8f,0x21,0x6,0x3d,0x5a,0xba,0xbb, + 0x58,0x91,0x71,0x73,0xac,0xf8,0xf7,0x86,0x9c,0x76,0xfb,0x51,0xd3,0xd1,0x5a,0xa7, + 0xf2,0x7b,0x5d,0xa3,0x92,0x48,0xa0,0x22,0xe4,0xe7,0x71,0xdb,0xd3,0xaf,0x39,0x22, + 0x43,0x63,0x11,0x83,0x24,0x49,0xfb,0x67,0xed,0x46,0x5b,0xf2,0xf4,0xa1,0x49,0x63, + 0x4c,0x65,0x9e,0x8c,0xeb,0xdc,0x21,0x50,0xec,0x55,0x30,0x87,0xc2,0xb9,0xc0,0x2d, + 0x53,0xb0,0xdf,0x9d,0x97,0x72,0x3c,0x43,0x6e,0xe3,0x6a,0xae,0xd7,0x8a,0xe3,0x28, + 0x3,0xa,0xf0,0x84,0x77,0x7d,0x1c,0xc7,0x15,0xd4,0x8,0xfc,0xac,0xc9,0x40,0x1, + 0xfe,0x2e,0xb7,0x2e,0x6b,0x29,0xb8,0xe9,0xfd,0x82,0xf7,0xf7,0x91,0x7b,0xe2,0x30, + 0x2b,0xed,0x41,0xeb,0x59,0x5b,0x8,0x14,0x13,0x79,0x44,0x33,0x8b,0xa8,0xc4,0x7, + 0x25,0xfa,0x68,0x36,0x5c,0x24,0x6d,0x8e,0xc9,0xa3,0x64,0x84,0xa4,0x62,0x4c,0x20, + 0x78,0xe4,0xd8,0x5c,0x22,0x2d,0xc6,0x15,0xb2,0x77,0xc2,0xa3,0x59,0x2f,0xa2,0x67, + 0xab,0xea,0x7,0x3,0xdb,0xcf,0x81,0xc0,0xdf,0xc,0xf7,0xd2,0xd5,0xa5,0x9,0xb9, + 0x19,0xdd,0x13,0xe0,0xc6,0xce,0x38,0xe,0x15,0x58,0x86,0x7c,0xd2,0x31,0x8a,0xeb, + 0x69,0x3e,0xc4,0x3e,0x4f,0x27,0x32,0xa4,0x19,0x90,0xa1,0x6a,0x71,0x42,0x64,0xa0, + 0x70,0xa7,0xc6,0x3e,0x7b,0x15,0x1c,0x3c,0xca,0x6e,0xc6,0x7c,0x4a,0x4c,0x3c,0xef, + 0x31,0xf8,0x5c,0xf9,0xeb,0x39,0xc9,0x70,0xcc,0xcb,0x1f,0xbb,0x88,0x6d,0x56,0x36, + 0xd5,0xe9,0x41,0x2c,0xd3,0x94,0x5f,0x8c,0x9d,0x69,0x9a,0x73,0xa9,0x83,0x79,0x9d, + 0x9b,0xfd,0x2f,0x6e,0xfd,0xab,0xdc,0xfd,0xd3,0x0,0x2a,0x26,0x4c,0x50,0x44,0x5f, + 0x92,0x38,0xbc,0x72,0xae,0x11,0xda,0x53,0xbf,0x2e,0x5a,0x83,0xb9,0xc0,0x4e,0xf3, + 0xd2,0x91,0xb8,0x2a,0x74,0x31,0x77,0xb9,0x36,0xee,0xe5,0xc6,0x0,0x66,0xbf,0x5a, + 0xb1,0xcc,0xbe,0xd6,0x58,0x36,0x69,0x0,0x4f,0xf3,0x76,0x83,0xfd,0xd2,0xde,0x61, + 0xf1,0xf4,0x4d,0xad,0x57,0x30,0x44,0x86,0x6a,0x3a,0x15,0x7a,0x2,0x86,0x45,0x84, + 0x12,0x3,0x5a,0x56,0x70,0x4c,0x20,0xd5,0x34,0x75,0x15,0x5a,0xe6,0xfd,0x63,0x33, + 0xe9,0x4a,0xc3,0x71,0xe9,0xb,0xee,0xbb,0x62,0x15,0x93,0x8c,0x75,0xd1,0xdf,0x10, + 0x1c,0x6e,0x39,0x55,0x43,0x1b,0x61,0x9b,0x2f,0x8c,0x22,0xea,0xd,0xbe,0x3b,0xe8, + 0xc6,0xdb,0xae,0xcd,0x70,0x1e,0x1d,0x99,0xf5,0x6f,0x73,0x68,0xd0,0xa,0xea,0xc7, + 0xcf,0x8b,0x31,0xa2,0xfb,0xdc,0x75,0x7a,0x63,0x15,0x33,0x77,0xff,0x13,0x9,0x82, + 0xa4,0xe0,0xbb,0x5f,0x23,0x4d,0x12,0x96,0x1a,0x8d,0xce,0x5,0x9b,0x17,0xe5,0x69, + 0x8b,0x2d,0x99,0x29,0x53,0x25,0x96,0xe9,0x56,0xfe,0xb9,0x2e,0x58,0xf8,0xce,0xcf, + 0x97,0xce,0xf4,0xb1,0xaa,0x60,0x27,0xe0,0xbc,0xba,0x32,0x5c,0x50,0xd2,0xcf,0x3, + 0x6f,0xee,0x10,0x8e,0x51,0xde,0xe1,0xea,0xb1,0xd8,0x71,0x14,0xcc,0x76,0x8a,0xb8, + 0xfe,0x80,0x9f,0xf7,0xe3,0xba,0x2,0xac,0xe6,0xca,0xfa,0xf7,0x1b,0x1e,0x12,0xbb, + 0x25,0x72,0xa0,0x27,0x29,0xd3,0xf1,0xa2,0xe7,0xcb,0xeb,0x86,0x93,0xa9,0xdc,0x92, + 0xa9,0xad,0x51,0xfc,0x7f,0x1f,0x91,0xa4,0x20,0x3c,0x5d,0x2,0x78,0x21,0x89,0x1f, + 0x53,0xdd,0xe8,0x42,0xa8,0x96,0xbb,0x58,0x93,0x9c,0xe2,0x38,0x25,0xd8,0x1b,0xbe, + 0xcf,0xce,0x4f,0x21,0xff,0x6b,0x1b,0x72,0x65,0xdf,0x6b,0xf6,0x6b,0x2c,0x8c,0x19, + 0x72,0x20,0x76,0x9c,0x1e,0x96,0x97,0x10,0xf1,0xaf,0xaa,0x30,0xa6,0xe9,0x2,0x17, + 0xe4,0x27,0x18,0xbb,0x8d,0x3,0x6b,0x75,0x33,0xd,0x54,0x41,0x48,0xee,0xd3,0xd3, + 0x15,0x56,0x36,0x67,0x4a,0x25,0x9a,0x3f,0x7f,0xc9,0x20,0x9,0x51,0xd6,0xd2,0x66, + 0x91,0x32,0x11,0xf2,0xa1,0x5e,0x37,0x62,0xb6,0x9,0x57,0x4f,0x53,0xcc,0x7e,0x86, + 0xe3,0x5c,0x4d,0x1c,0x47,0x37,0xd9,0xa9,0xf4,0xe0,0x81,0x96,0xc3,0x19,0xbb,0x82, + 0x12,0x20,0x8e,0x44,0x93,0x6,0x61,0xdb,0xb0,0x80,0x37,0xe7,0x51,0xeb,0x59,0xaf, + 0x16,0x39,0x6a,0x8b,0x73,0x26,0x53,0x4b,0xad,0xd3,0xed,0x18,0x9a,0xc4,0x89,0x72, + 0x4d,0x39,0xa8,0x7e,0xa7,0xd6,0xb,0x33,0x46,0xff,0xe3,0x37,0xcf,0xad,0xcc,0xb, + 0xa4,0xa9,0x9d,0xa5,0xad,0x3d,0xae,0x91,0xca,0x90,0x65,0x9a,0x62,0x92,0xb9,0x3, + 0xeb,0xba,0x1a,0xfe,0x30,0x30,0x67,0xb0,0xc6,0x8,0x8f,0xc9,0x91,0x57,0x1e,0x18, + 0x40,0xa4,0x9e,0x5,0x51,0x50,0xf4,0x2a,0x44,0xa3,0xb0,0x5a,0xa0,0x2d,0x14,0xf8, + 0xe9,0x98,0xa4,0xdf,0x8c,0xce,0x7f,0xb5,0xba,0xef,0xce,0x87,0xe7,0xf4,0x3e,0xbf, + 0xb9,0x87,0xad,0xff,0x5a,0x1,0x21,0x9f,0xf9,0xc8,0x19,0x8,0x28,0x7c,0xb3,0x4f, + 0xa5,0xdf,0x9c,0x96,0xe1,0x6e,0x51,0x84,0x1a,0xf2,0x92,0xd7,0x66,0xde,0xe4,0x7, + 0xd6,0xc8,0x6c,0xbe,0x6c,0xfc,0x9a,0x48,0xbe,0xbd,0xb0,0xa6,0xd1,0x58,0x1d,0x5b, + 0x55,0x65,0x5d,0x89,0xd7,0xb3,0x1c,0xb7,0xf4,0xd5,0xac,0x12,0xbc,0xdc,0x8d,0xab, + 0xe3,0xd6,0xcc,0x96,0xae,0xe4,0x7a,0x75,0x12,0x23,0xb3,0xea,0xd4,0x13,0x20,0xeb, + 0xeb,0x58,0x94,0x2b,0xd4,0xd,0x7b,0x27,0x34,0xbc,0x30,0x27,0xcc,0xf2,0xc1,0xe0, + 0x61,0x3c,0x8e,0x37,0x72,0xd1,0x82,0x31,0xf,0xf7,0x8b,0x54,0xca,0x45,0x60,0x2b, + 0x8e,0x18,0x3d,0xa2,0x7c,0x68,0x3e,0x4c,0x22,0x71,0x3,0x7b,0x8b,0xed,0xa2,0xc0, + 0x7a,0x5,0x5b,0xac,0xcd,0x82,0x1d,0x3d,0x26,0x2e,0xf5,0xe2,0xe1,0x26,0xf2,0x81, + 0xee,0x66,0xa7,0x40,0x2f,0xe2,0xeb,0xae,0x90,0x28,0x27,0x8c,0xd3,0xde,0xb5,0x72, + 0xa6,0x76,0xb9,0xed,0x19,0x33,0x99,0x4e,0x25,0x4c,0x66,0x3c,0x21,0x72,0x39,0xc1, + 0x38,0x4d,0x73,0x6d,0x4a,0xb9,0x85,0x65,0x20,0xe1,0x17,0xd7,0x8c,0xd7,0xcb,0x7d, + 0x11,0x9d,0x5c,0x22,0xe9,0xc8,0x79,0xbc,0xa,0xc,0xa,0xc8,0x61,0x76,0xc5,0x5b, + 0xd8,0xef,0x2b,0x26,0x3d,0xfb,0x9e,0xb,0xa3,0xf9,0xe5,0xa8,0x2e,0x92,0x24,0x89, + 0x3d,0xa,0xdf,0x51,0x1c,0xa,0xc0,0x37,0x35,0xa0,0x68,0x57,0x83,0x8c,0x3a,0xc9, + 0x82,0xe4,0xea,0x23,0x44,0x62,0x88,0xb0,0xa0,0x3d,0x2b,0xb7,0xd9,0x3c,0x36,0x46, + 0x32,0x1,0xc7,0x56,0xb6,0x5f,0xc3,0x3a,0xec,0x8d,0x7e,0x44,0xc6,0x69,0x28,0x6d, + 0x15,0xc2,0xe5,0x6b,0x6c,0x4d,0x4f,0x7e,0xf,0xf9,0xcd,0x41,0x46,0x57,0xc1,0x9c, + 0xa8,0x26,0xce,0x9f,0x67,0xad,0xd2,0xca,0x2a,0x1e,0xcf,0x37,0x32,0x6b,0x6c,0x88, + 0xe4,0x28,0xba,0x65,0xab,0xa8,0x7a,0x1a,0xdb,0xbd,0x27,0xc6,0x14,0xc4,0x27,0x2, + 0x16,0x30,0x7a,0xc7,0x6,0x88,0x83,0x49,0x31,0xd3,0x8e,0xc2,0x9e,0x42,0x2e,0xcc, + 0x89,0x8d,0xe3,0x1f,0x2b,0x43,0x59,0xe6,0x2a,0x66,0xbf,0x5a,0xc7,0xbe,0x53,0x9, + 0xa7,0x5e,0xc5,0x82,0xe4,0x4b,0xc4,0x22,0xb0,0x28,0xcf,0xf8,0x78,0x79,0x70,0xee, + 0xfa,0xee,0xf8,0x37,0x13,0xa7,0x6f,0xb6,0x8c,0xd8,0xa4,0x94,0x34,0xa2,0x6e,0x12, + 0xa5,0x9a,0x23,0xaa,0xba,0x8e,0x88,0xc2,0xa4,0x2,0x5f,0xec,0xc8,0x89,0xf4,0x40, + 0x6a,0xbe,0x13,0xe3,0x61,0x2b,0x40,0x40,0x4d,0x2c,0x7,0x87,0xb8,0x70,0x64,0x82, + 0x39,0x73,0xcc,0x11,0x32,0x8c,0x2,0x5c,0xe1,0x5a,0x89,0x3b,0x76,0x2f,0x36,0xe2, + 0x65,0x31,0x20,0xfb,0x6d,0x89,0x61,0xa8,0xf6,0x49,0xd6,0x73,0x87,0x3c,0x59,0x47, + 0x47,0x3f,0xce,0x50,0xc7,0xc4,0xc3,0x25,0xd,0xb5,0x3d,0xe6,0xe0,0xe5,0x88,0x79, + 0xe7,0x60,0x6,0x66,0xcd,0x6,0x98,0xa6,0xc,0xd0,0xc7,0x26,0xc9,0xd9,0x62,0xda, + 0x24,0x53,0x4,0x1b,0xca,0xb4,0xec,0x6f,0x85,0x6c,0xd1,0x12,0x11,0xc5,0x16,0xf0, + 0x83,0x56,0x2,0x82,0x2a,0xd1,0x58,0x5a,0x80,0x70,0x59,0xf4,0x31,0xcc,0x23,0x6d, + 0xc0,0xfa,0xc,0x6e,0xcb,0x15,0xde,0xac,0x5b,0x95,0x67,0x22,0x5f,0x87,0xdd,0x71, + 0x42,0x3a,0x30,0xc9,0xc,0x47,0x6a,0xf8,0x29,0x72,0x5b,0x3f,0x25,0x45,0x3b,0x36, + 0x46,0x94,0x13,0xe6,0x87,0x1c,0xea,0xe6,0xf8,0xa7,0x1f,0xde,0xfd,0x5b,0xc0,0xd5, + 0xc3,0xc6,0xe1,0xbb,0xab,0x15,0xeb,0xcc,0xf8,0x20,0x5f,0x38,0x17,0xc4,0x25,0x47, + 0xd7,0xcb,0x63,0x3c,0xcc,0x95,0x94,0x3f,0x48,0x2,0xf8,0x13,0x1e,0x52,0x95,0x4e, + 0x19,0x31,0x97,0xf8,0x2d,0xb1,0x58,0x4a,0x76,0xfa,0xb9,0x6e,0x98,0x82,0x63,0xea, + 0xf6,0xa3,0x67,0x87,0x17,0xd,0x6f,0x47,0x82,0xf7,0xc5,0xcc,0x86,0x67,0xa3,0xa0, + 0x98,0x5a,0xb3,0x21,0xf8,0xff,0x4e,0x61,0x46,0x31,0x82,0xc,0xb7,0x3f,0xae,0xdc, + 0x5,0x50,0x5,0x4c,0x68,0x5a,0x5f,0xa2,0xe4,0x55,0x1b,0x54,0x49,0x7d,0x98,0x9d, + 0xe4,0xf8,0x19,0x4c,0xa4,0xc6,0xca,0xe6,0x29,0x9d,0x77,0x8d,0x80,0xfd,0x6e,0x98, + 0xf3,0x81,0x7a,0x4e,0x7,0xe9,0xd,0x9a,0xa7,0xae,0x2,0x14,0x78,0xe8,0x2,0x7d, + 0x89,0xf7,0xc4,0x4b,0x3c,0x89,0x21,0xe4,0xe,0x19,0xa7,0xb1,0x9a,0xbe,0xc0,0x2e, + 0xf4,0x55,0x6c,0x90,0xd5,0x7f,0x67,0x55,0x99,0xd6,0x30,0x13,0xfa,0xbe,0x80,0xd3, + 0x9e,0xd8,0x5,0x98,0x7a,0x81,0xf9,0x46,0x1a,0x90,0x6b,0xc3,0x4a,0xb9,0xf9,0xaa, + 0xbb,0xf7,0x5d,0xb4,0xba,0xcb,0x60,0x51,0x4d,0x7,0xd4,0x81,0xf,0x95,0x41,0xe, + 0x80,0x2f,0x84,0x7a,0x14,0x99,0x64,0x45,0xdc,0x75,0xab,0x1e,0xec,0x87,0x1e,0xa6, + 0x7f,0x7f,0x33,0x98,0xb2,0x38,0xce,0xca,0x9c,0xda,0x39,0x1c,0x50,0x30,0xe8,0xb4, + 0xe6,0xf5,0x3c,0x5e,0x54,0x33,0x5e,0x59,0xf1,0xf0,0xd9,0xfe,0xb5,0x3e,0x70,0xf5, + 0xfc,0xa5,0x8a,0xbb,0x80,0x90,0xb0,0xd0,0xc4,0x27,0x2d,0xe6,0x5d,0x1b,0x4f,0xfa, + 0x9e,0xbe,0xdf,0xa0,0x19,0x6c,0xbe,0xf6,0xd,0xf9,0x9c,0xe9,0xc2,0xde,0x15,0x9b, + 0x1,0xf2,0xdf,0xc5,0xea,0xb4,0x32,0xd8,0xf9,0xc3,0xd2,0x35,0x3a,0x21,0xc4,0x9a, + 0xe,0x8f,0x8c,0xa2,0xe,0x7a,0xfe,0xd5,0x14,0xca,0xad,0x74,0x21,0x24,0xd6,0x6e, + 0x71,0x6c,0xd5,0xf5,0xa0,0x91,0xc6,0x70,0x53,0x6,0xe1,0xfd,0x97,0x3,0x65,0x3d, + 0x7b,0xa0,0x57,0x6,0x3,0x13,0x2a,0x6d,0x47,0xa7,0xa4,0x1d,0x6,0xfb,0xf1,0x78, + 0x9d,0x85,0x45,0x8f,0xb7,0x86,0x47,0x7d,0x8d,0xe2,0xc1,0x8c,0x2b,0xb1,0xf7,0x7d, + 0x85,0xae,0x48,0xee,0x95,0xf7,0x30,0x6f,0xa0,0x4b,0xc2,0x95,0xa2,0x5d,0x10,0x96, + 0x4d,0xa0,0xd,0x6a,0x90,0x6c,0x97,0xa8,0xfc,0x67,0x95,0x12,0x9b,0x4d,0xa3,0x1b, + 0x63,0x1b,0xf9,0x2e,0x75,0x2a,0xbb,0x46,0x9,0xb7,0x61,0xd3,0xe,0x6b,0x12,0x85, + 0x74,0x6d,0xfe,0xb7,0xa8,0xc9,0xb4,0xf2,0xd4,0xdd,0x21,0xcf,0xc3,0x69,0xcb,0x8b, + 0xe3,0x6f,0xba,0x26,0xf2,0x6b,0xb7,0xa7,0x89,0xbb,0x55,0xee,0x94,0x51,0x18,0xb6, + 0x32,0x37,0x9b,0x75,0xd8,0x6e,0x7f,0x19,0x6b,0xc4,0xdd,0xe,0xd1,0xd7,0x9a,0x1b, + 0x67,0x1f,0xf2,0x3,0x77,0x87,0x4c,0xb9,0xc2,0x5,0x94,0xa9,0xe,0x6f,0x5e,0xf6, + 0x6b,0xee,0xca,0x89,0x89,0x49,0xe5,0x5d,0x4b,0x3,0x22,0xff,0x26,0x83,0x28,0xdc, + 0x9,0xcf,0xc4,0x40,0x4f,0x28,0x10,0x10,0xc,0xf1,0xc7,0x9a,0x76,0x41,0x6c,0xe9, + 0x2c,0xba,0xe9,0x5b,0xba,0x66,0x95,0xf,0xfe,0xf2,0xf7,0xcd,0x69,0x3,0xa6,0xb3, + 0xb5,0x39,0x51,0x8f,0x18,0xd4,0x2d,0x6,0xe2,0x27,0x58,0x72,0x9f,0x59,0x44,0x49, + 0x1d,0xbd,0x7b,0x5a,0x15,0xd3,0xb1,0xb5,0x91,0x8,0xaf,0xca,0xe8,0x94,0xe4,0x5c, + 0x94,0xd8,0x16,0xb1,0xd3,0x96,0x42,0xa6,0x4d,0x14,0xda,0x4e,0x58,0x24,0x4e,0x36, + 0x1f,0x75,0xa4,0x76,0x21,0x7b,0x30,0x2e,0xb6,0xe7,0x4c,0x19,0x96,0xb3,0x77,0x15, + 0x2c,0x18,0x61,0x18,0x11,0x4d,0x83,0x21,0x75,0x18,0x61,0xc0,0xd1,0xdf,0x94,0x4c, + 0x81,0x32,0xdf,0x5e,0x1c,0xd9,0xff,0x6d,0x7a,0x2f,0x21,0xb9,0xd5,0xdc,0x14,0xd8, + 0x35,0x10,0x17,0x47,0x8,0x98,0x9a,0x61,0x3c,0x1d,0xa4,0x55,0x26,0xfe,0x8c,0xd2, + 0xe3,0x20,0x8c,0xe3,0x29,0x6c,0xf7,0x37,0x68,0x93,0xc,0x8,0x7c,0x74,0xfa,0x77, + 0xa7,0x43,0xf5,0xf0,0x91,0xfc,0xad,0x28,0xc2,0x6b,0x2b,0x1a,0x7c,0xf6,0xb4,0x1e, + 0xfd,0x3e,0xa,0xdb,0xcf,0x62,0xc5,0x2f,0x4b,0xc4,0x95,0x69,0xf4,0x93,0x68,0xea, + 0xcb,0x72,0xed,0x98,0xb,0xc7,0xbd,0xbf,0xab,0x79,0x26,0xda,0x26,0x6e,0xdd,0xe8, + 0xca,0xe6,0xd5,0x2f,0xdd,0x18,0x50,0x6c,0x6e,0x6e,0x6e,0xc1,0xcd,0x32,0x6a,0x8f, + 0x9b,0x91,0xfa,0x8b,0x9b,0xa0,0x24,0x6,0xb,0x74,0x74,0x9f,0x4c,0x26,0x89,0x1e, + 0xd1,0x73,0x6e,0xfd,0x16,0xcc,0xfc,0x6,0x73,0xcf,0xb5,0x49,0x72,0x8,0xa1,0x9a, + 0xd,0x3e,0xac,0xf2,0xe8,0xb4,0x50,0x59,0xf,0xfd,0x33,0xec,0x15,0x46,0xfd,0x32, + 0x15,0x93,0x2b,0x89,0x14,0xc3,0x8d,0xd8,0x4b,0xa8,0x4b,0x0,0x82,0x44,0xbf,0xd, + 0xd3,0x0,0x7a,0xd2,0x56,0x87,0xd9,0x32,0x87,0xa0,0xdf,0xf8,0xfd,0x9b,0x89,0x5, + 0x78,0x57,0xfe,0xdb,0x79,0xf0,0x28,0x4e,0x2e,0xb7,0x42,0xa9,0x9b,0x69,0x19,0x83, + 0xad,0xae,0x9b,0xeb,0x43,0xc9,0xdc,0x92,0xc0,0x66,0xf7,0x41,0xdd,0xcf,0xb,0x46, + 0xc7,0x4,0xdb,0x9f,0x6b,0xee,0x8e,0xd6,0xa1,0xb5,0x3e,0xa7,0x6f,0xec,0x6c,0x54, + 0x27,0xd7,0xb8,0x3,0x93,0xbb,0x3c,0xf7,0x99,0x3a,0xb9,0x85,0xcc,0x3b,0xe8,0xf2, + 0xc8,0x48,0x30,0xd9,0x5e,0xe0,0x62,0x12,0xb5,0x82,0x9,0xc7,0x1f,0xf9,0x72,0x6, + 0xa5,0x51,0x4f,0xed,0xae,0xcc,0x7c,0x3d,0xbc,0x12,0x78,0x62,0xf9,0x5c,0x45,0xba, + 0xe7,0x14,0xc4,0x9,0x29,0x32,0x84,0x55,0x2,0x39,0xb9,0x8,0x93,0x3b,0xca,0x70, + 0xa3,0xd7,0x85,0x5f,0x57,0xbe,0x73,0x90,0x7,0x6e,0x4d,0xb4,0xb1,0xb6,0x2,0x36, + 0xc1,0x68,0xe2,0x20,0x78,0x43,0x37,0x6b,0x37,0x23,0x95,0x6a,0x70,0x85,0xe4,0xf3, + 0x0,0xaa,0xce,0x26,0x5b,0xd2,0x1c,0xbf,0xbd,0xf2,0xc5,0xe5,0x6e,0xe4,0x56,0xb6, + 0x50,0xbe,0x71,0xca,0xf6,0xb7,0x36,0xcf,0x50,0xe7,0x5f,0xdb,0x1,0xa8,0xd,0x86, + 0x52,0x6d,0xe7,0xac,0x28,0x13,0xff,0x46,0xee,0x87,0x15,0x2c,0x5d,0xb0,0x4e,0x38, + 0x95,0x74,0x29,0x16,0x48,0x71,0x42,0x2d,0x31,0xd4,0x84,0x49,0x3,0x11,0x68,0x99, + 0x42,0x4c,0x44,0x1d,0xe4,0x30,0xfc,0x12,0x8d,0x2e,0xac,0x46,0x79,0xf5,0x34,0x4, + 0x49,0x6d,0xb6,0xe1,0x2c,0x31,0x9b,0x37,0x74,0xb4,0x5b,0xd6,0xe4,0x95,0x61,0x3d, + 0xc0,0xd5,0x43,0x2e,0x50,0xbb,0xfb,0x1f,0xd,0xe4,0x8b,0x80,0xa4,0xad,0x60,0x6d, + 0x3a,0x78,0x33,0x22,0xfa,0xd7,0x7e,0x6,0xf3,0x38,0xf4,0xf0,0x78,0x37,0x5f,0x28, + 0x75,0x60,0xea,0xe7,0x8f,0x8b,0x60,0x35,0x5b,0x73,0x9b,0x20,0x9b,0xc0,0x8f,0xe7, + 0x68,0x50,0x5,0x36,0x27,0xe6,0x73,0xce,0xd0,0xb0,0x5,0x93,0xcf,0x3e,0xa8,0x17, + 0x8b,0x85,0x55,0xe4,0x24,0xe0,0x16,0x45,0x56,0xcc,0xa,0x1a,0xb3,0x23,0x4e,0x41, + 0xfe,0x89,0x17,0x1a,0x56,0x12,0x6f,0x48,0x92,0xbe,0x3c,0x82,0x82,0xb5,0xc2,0x10, + 0x78,0x20,0x61,0xb6,0x9e,0x7f,0x87,0x32,0x60,0x81,0x23,0x7d,0xba,0xf1,0x9,0xe4, + 0x96,0x0,0xac,0x40,0x7e,0xde,0xf0,0x21,0x20,0xf,0x9d,0x43,0x0,0xa7,0xe,0x75, + 0xd6,0x66,0x9,0xc8,0xaf,0x4f,0x55,0x48,0xa4,0x37,0x4e,0x6b,0xc2,0x41,0x78,0x25, + 0x5,0xa1,0x6f,0x2f,0x9f,0x2b,0xc5,0x1c,0xbb,0x31,0x2c,0x87,0x92,0x3f,0xd5,0x19, + 0x4f,0x6c,0x6a,0x9a,0xe2,0x9e,0x4a,0xac,0xd9,0xf6,0xca,0xda,0x30,0x7c,0x6b,0xc0, + 0xa3,0x70,0x2d,0xa,0x92,0xd6,0x3,0xab,0x15,0x6c,0x83,0x17,0x1f,0xec,0x2e,0xa5, + 0xb,0x88,0x33,0x51,0x11,0x76,0x18,0xd,0x37,0xce,0x6c,0x56,0xf7,0xf4,0x9f,0x5c, + 0x63,0x8a,0xc9,0xc0,0x21,0x46,0xd7,0x43,0xb0,0x77,0x43,0xe,0x7b,0xe7,0x7,0xd2, + 0x12,0x1f,0x3e,0xfa,0x73,0x75,0xcd,0xa5,0x18,0x26,0xbd,0x5,0xb5,0xf4,0x76,0x77, + 0xfd,0x70,0x75,0x7f,0xa9,0x41,0x96,0xfe,0x88,0x46,0x59,0xdc,0xfb,0xb8,0xd6,0xf2, + 0x50,0x5,0x12,0x32,0xf,0x93,0x80,0xa1,0x3d,0x66,0x51,0xb4,0x10,0x8f,0x6b,0xf4, + 0x9f,0xda,0xd2,0xb2,0x29,0x54,0x2f,0x55,0x65,0x9,0x1d,0x9a,0x60,0xe0,0x91,0x8b, + 0x3d,0xe9,0x90,0x9,0x8,0x98,0x9,0x33,0x5b,0xd1,0x2e,0xc4,0x82,0x31,0xaa,0xf9, + 0xea,0xb6,0xb7,0x87,0x4a,0xaf,0x1e,0x8f,0x3e,0x0,0xdf,0x93,0x4c,0x8f,0x2c,0xcc, + 0x3e,0x87,0x46,0xe2,0x53,0xa6,0x1f,0x63,0xe3,0x50,0xe9,0x0,0x17,0x42,0x67,0xbc, + 0x78,0x27,0x99,0x8d,0x58,0xeb,0x45,0x3,0x7d,0x28,0x45,0x85,0x15,0xff,0x3d,0x1c, + 0xba,0x6a,0x48,0xa4,0x4d,0x30,0x19,0x32,0x73,0x1e,0x26,0x29,0x5,0x25,0x8b,0x99, + 0xae,0x9f,0x1d,0x24,0x59,0x5b,0x20,0x41,0xd0,0x74,0x24,0x46,0x82,0x30,0x7f,0xee, + 0x96,0xe6,0xaa,0x3f,0x68,0x24,0x67,0xad,0x0,0xcb,0x58,0x86,0xa0,0xfc,0x55,0x20, + 0x95,0xa9,0x82,0x1b,0xe8,0xc7,0x53,0x55,0xcd,0xb3,0x9d,0x8d,0x37,0x1b,0x4f,0x9e, + 0xbc,0x87,0xeb,0x2e,0x3e,0x64,0x8f,0xc1,0x75,0x77,0x8e,0x75,0x9f,0xb5,0x44,0x24, + 0xf0,0x9f,0x77,0xee,0xe6,0x32,0xa8,0x64,0xf0,0xcc,0x30,0x84,0x58,0x13,0x6d,0x95, + 0x7f,0xd3,0xa7,0x32,0xc3,0x65,0xc,0xd1,0xe0,0x56,0xe7,0x7f,0xa9,0x49,0x8f,0xa8, + 0x2,0xe7,0xfa,0xf5,0x7f,0x36,0x28,0x11,0x76,0xc2,0x4b,0x66,0x40,0x34,0xad,0x2e, + 0xf9,0x5f,0x4f,0x68,0xd5,0x5b,0x2f,0xc5,0x74,0x63,0x92,0x9a,0xd8,0x79,0x56,0x9c, + 0x27,0xc6,0x7b,0x1a,0x9f,0xfd,0x74,0xb0,0xe,0xed,0xd9,0xcc,0x90,0xf5,0x3f,0xd, + 0xec,0x9f,0xdf,0x21,0x59,0x5a,0xa6,0x81,0xd5,0x63,0xb6,0xb2,0x23,0xae,0xcc,0x76, + 0xfc,0x35,0xfb,0xf0,0xf4,0x23,0x7d,0x4c,0x58,0xa8,0x5e,0x8b,0x1b,0x79,0xc3,0x28, + 0x7f,0x77,0x5e,0x11,0xad,0xdb,0x5,0xcf,0x5e,0xb8,0xed,0xb9,0x78,0xe7,0x4a,0x28, + 0x80,0x75,0x10,0xcb,0x2f,0xa4,0x3e,0x20,0xd2,0x95,0xdc,0xd9,0xc7,0x63,0x98,0xa4, + 0x70,0x40,0x8e,0x9b,0xb9,0x2,0x57,0x23,0x29,0xe7,0x77,0x8a,0xef,0xa9,0x2b,0x1b, + 0xbb,0x23,0x4,0x4f,0xb,0x47,0x2,0x9b,0xc8,0x44,0xf0,0xa1,0x6b,0xb,0x4f,0x0, + 0x23,0x61,0xc0,0x17,0xd4,0x32,0xb0,0x6a,0x1c,0x89,0x6c,0xf3,0x5a,0x6,0x27,0x32, + 0x2a,0x95,0xa6,0xed,0x76,0x9b,0xe0,0xf0,0x6b,0x49,0x53,0x1,0x48,0x8b,0x5f,0x67, + 0xdc,0x34,0xb7,0x4c,0xcd,0xec,0xc1,0x82,0x79,0x48,0xe3,0x54,0xf8,0xf,0x2c,0xe0, + 0x73,0xe0,0x95,0x7e,0x67,0xc7,0xf5,0xaa,0x3f,0xce,0x9,0x21,0xe,0x36,0xfa,0x1d, + 0xc8,0x5,0xa,0xbd,0xef,0x7e,0x7f,0x9f,0x9d,0x1c,0xe8,0x37,0x43,0x3b,0x67,0x8b, + 0x7d,0x4e,0x46,0xa,0xc4,0x4f,0x1e,0x75,0xfc,0xea,0x45,0x64,0x32,0x11,0x50,0x2, + 0x3a,0xdf,0xaa,0x33,0xee,0xdb,0xf2,0xae,0xcc,0x41,0x2e,0x52,0x21,0xb3,0xf7,0x7b, + 0x18,0x94,0x21,0xf6,0xe4,0x3d,0x28,0xc5,0x37,0x13,0x95,0xde,0xab,0xfa,0x27,0x92, + 0xba,0x8f,0x61,0xbe,0x55,0x89,0x8a,0x40,0x39,0xda,0xfc,0x97,0x62,0xe6,0x5d,0x48, + 0x3b,0x4f,0x29,0xd9,0xa0,0x43,0xdf,0x4b,0xc8,0xb4,0xc,0x17,0xac,0xfa,0x15,0xb3, + 0x3b,0xa0,0x7,0x1d,0x7a,0x21,0xee,0xd1,0x4b,0x28,0xf0,0x31,0x2a,0xd4,0xbc,0x7d, + 0xe8,0x56,0x25,0xd7,0x37,0x9d,0x2d,0x48,0xdb,0xcf,0x39,0x6d,0x2b,0xc3,0xa5,0xb9, + 0x30,0x87,0x23,0xe,0xb4,0x98,0x3b,0x15,0x31,0x26,0xc2,0x2c,0x46,0x35,0x1c,0xa9, + 0xe2,0xcf,0x8e,0xb3,0x10,0x92,0x9f,0x1c,0x87,0x5d,0x3,0x78,0xf4,0xc5,0xbb,0xd9, + 0x4a,0x89,0x3a,0x60,0x6,0x1a,0xea,0x3,0xc1,0xf7,0x2b,0xd1,0xcc,0x4b,0xe7,0x65, + 0x6a,0x4a,0x87,0xc,0xf2,0x1,0x26,0xd5,0x42,0x9b,0x9e,0xa0,0x82,0x92,0xcb,0x14, + 0x52,0x67,0x18,0x36,0xec,0xeb,0xd,0x40,0x55,0x12,0x47,0xec,0x6f,0x7b,0xa9,0x61, + 0x77,0x5f,0x6,0x9,0xe2,0x69,0x71,0x2,0x4a,0x71,0xec,0xbb,0x57,0x26,0xee,0xe3, + 0x33,0x4c,0x83,0x44,0xeb,0xb8,0x9b,0xdf,0xb8,0xea,0x4c,0x90,0x80,0x24,0x68,0x4a, + 0xa0,0xdf,0xc8,0x9d,0x5a,0x8b,0x83,0x91,0x78,0xf4,0xe1,0x38,0x55,0xc3,0xbc,0x19, + 0xaa,0x5e,0x49,0xdd,0x14,0xb1,0x63,0x35,0xd2,0x8,0xb5,0xa7,0xf2,0x55,0xff,0x96, + 0x6f,0x9f,0xbc,0xd4,0x4b,0x5b,0x79,0xfa,0x62,0xa1,0xd4,0x82,0x9d,0x68,0x62,0x70, + 0xf4,0xaa,0x3f,0x9c,0x43,0x33,0x14,0x4c,0x2f,0x62,0x8c,0x76,0x49,0x94,0xb8,0xa6, + 0xd,0xdc,0x6b,0x92,0xbf,0x88,0x35,0x16,0x2f,0x97,0x1d,0x41,0x31,0x5b,0x80,0xf2, + 0x17,0x3,0x88,0x63,0x48,0x28,0xb4,0x96,0xe8,0xfd,0xf,0x6a,0x7b,0x3e,0xe9,0x3a, + 0x6,0xbb,0xfc,0xab,0xd4,0x16,0x17,0x48,0xdf,0xc7,0xcf,0x1d,0x4b,0x56,0x6d,0x5f, + 0x1d,0x1a,0x61,0x95,0x57,0x1a,0x86,0x3d,0x1f,0xa1,0x8a,0x3a,0xf2,0x5e,0x2b,0xdc, + 0x2a,0x4c,0x98,0x36,0xe,0xa1,0xc5,0xd0,0x5b,0x99,0x54,0xfd,0xca,0x70,0xaf,0xee, + 0x4a,0xfe,0x4a,0x12,0x9b,0x5c,0xe4,0x64,0x5b,0x1,0x5,0x2a,0xbf,0xc,0x35,0xa0, + 0x0,0x67,0x9a,0x0,0xc9,0x2f,0xe6,0xfa,0x2,0x77,0xc4,0x4a,0xa5,0xc6,0x3f,0x4a, + 0x4c,0xf2,0xac,0x4c,0x48,0xe3,0x92,0xfa,0x3a,0x89,0x9d,0x41,0xb8,0x31,0x49,0x1c, + 0xa7,0x46,0x1d,0xe0,0x2f,0x6e,0x4f,0x3c,0xe7,0x26,0xe6,0x1e,0x36,0xe0,0x3b,0x57, + 0xed,0x47,0x5,0xd6,0x1a,0xb6,0xd,0xae,0xc0,0xcd,0xee,0xce,0xd5,0x37,0xfe,0x84, + 0xa3,0x34,0x45,0x86,0xc0,0x69,0xbc,0xf0,0x46,0xfb,0xb9,0xc9,0x65,0x5f,0x77,0x5b, + 0xc2,0x8,0xe2,0x64,0x34,0x0,0xeb,0xee,0xa,0xa6,0x27,0x5d,0x27,0xa0,0xb4,0x3a, + 0x13,0x1e,0xfd,0xa8,0x1e,0x3d,0x8b,0x73,0x9a,0x18,0xfd,0x38,0xcb,0xe6,0xfb,0x68, + 0xb0,0xf2,0xda,0x6b,0x99,0x9e,0xc2,0x2b,0xd8,0xf0,0x98,0xd9,0xe1,0x18,0x8,0x6e, + 0xb,0x9a,0xe6,0xe7,0x22,0x2d,0xb6,0xad,0x64,0x54,0xb5,0x5e,0xc8,0xf8,0xc,0x5d, + 0x51,0x17,0x6b,0x8d,0x8a,0xf3,0x62,0x4a,0x75,0xb2,0xa2,0x41,0x1f,0xb0,0xc3,0xf3, + 0x97,0xe0,0xe7,0xd4,0x7e,0x36,0xc8,0xec,0x8b,0x3,0x15,0x69,0xb3,0x4,0x35,0x1f, + 0xe8,0xda,0x21,0xf9,0xe,0x11,0x22,0x28,0xd0,0xf9,0xf,0x91,0xcf,0xed,0x4d,0xec, + 0x42,0xb2,0xbf,0x0,0x4f,0x9e,0xf9,0x6,0xdb,0x12,0xdd,0x47,0x97,0x77,0xce,0x5e, + 0x9c,0xf8,0xb0,0x48,0x78,0x50,0x7f,0x4,0xab,0x33,0x83,0xab,0xe5,0xf0,0xb5,0xc1, + 0xe8,0xd0,0x6d,0xf6,0x1c,0x6e,0x51,0x39,0x2f,0xf3,0x3d,0x4a,0x2a,0xf4,0x62,0xf2, + 0xb8,0xfa,0xf5,0x21,0x91,0xdc,0x97,0x3f,0xea,0x2,0x65,0x51,0xa5,0xc8,0x94,0xc0, + 0x5d,0xdb,0x4,0xae,0xfd,0xd0,0x3d,0x5c,0x3b,0xad,0xc7,0xda,0x29,0x3b,0x59,0xf5, + 0x63,0x5,0xd1,0x5d,0xa7,0x8f,0xda,0xd0,0x11,0xa4,0xbb,0xaf,0x9a,0x57,0x65,0xa, + 0x15,0x12,0x27,0xe1,0xfc,0xd9,0x27,0xae,0x36,0xf,0x5f,0xab,0xda,0x7e,0xe0,0x91, + 0xda,0x3c,0xfc,0xfe,0x16,0x3d,0x45,0x7b,0x39,0xd1,0x6c,0x99,0x40,0x5d,0xd2,0xb4, + 0xbf,0xa4,0x3d,0xd8,0x8b,0x7,0x79,0x8f,0x6f,0x3,0x21,0x60,0x58,0x16,0x3e,0x62, + 0x48,0x57,0xb9,0x75,0x49,0xea,0xe,0xa1,0x2,0x1a,0x1e,0xbe,0x99,0xdc,0xcd,0x91, + 0x59,0x2a,0x98,0x6a,0x4b,0x1,0x82,0x70,0x52,0x49,0x86,0xdf,0xc7,0xdd,0xf,0x41, + 0xed,0x26,0xaf,0x7c,0x1,0xe6,0xe3,0xae,0xa5,0xe9,0x1c,0x65,0xeb,0x49,0x9b,0x5, + 0xbc,0xf9,0x94,0xcc,0x1b,0xc,0xa,0x4,0xc,0x93,0x7f,0x11,0x83,0x65,0x52,0xe9, + 0x72,0xcf,0xe2,0xa8,0xe3,0x37,0x36,0xfa,0xf2,0xba,0xba,0x53,0xdd,0xde,0xdb,0x71, + 0xd2,0xc0,0x7b,0x6f,0xba,0x87,0xcc,0xfa,0xd0,0x98,0xe0,0x86,0x96,0xeb,0xb4,0x57, + 0xd3,0x8c,0x53,0xa9,0xaa,0xed,0x8f,0x9b,0x9d,0xd6,0xa4,0xa1,0xf6,0x34,0x5e,0xfa, + 0xc1,0x92,0xa3,0xc7,0xde,0x9f,0x6b,0xfa,0xa6,0xeb,0x47,0x94,0xd8,0xdc,0x97,0xd, + 0xce,0x93,0x53,0x31,0x6b,0x67,0x43,0x63,0x8d,0xbb,0xf,0xea,0xef,0xed,0x1f,0xfc, + 0xa2,0x2f,0xd0,0xb,0x7,0xde,0xa3,0x81,0xd7,0xed,0x2c,0xc1,0x95,0xb0,0x6e,0xac, + 0x1e,0x97,0xce,0xf0,0xd8,0xdf,0xcb,0xc0,0x6c,0x51,0xf4,0xac,0x13,0xc4,0xe,0x40, + 0xed,0x28,0x86,0xc2,0xab,0x4,0x2f,0x22,0xf1,0x7f,0xe5,0x87,0xe7,0xe0,0x94,0x77, + 0x76,0x1a,0xa7,0x52,0x2e,0x66,0xc7,0x12,0x5c,0xb0,0x42,0x37,0x45,0x6f,0xa3,0x22, + 0x69,0x40,0x87,0x70,0xbf,0x11,0x9b,0x36,0xb7,0x65,0x9f,0xac,0x9f,0xe7,0x24,0xf3, + 0xec,0x2a,0x2f,0xc3,0xd4,0x24,0xfb,0x41,0x2e,0xab,0x14,0xaf,0x58,0x5e,0xe9,0x1, + 0x2e,0xe6,0x2d,0x92,0x17,0x5e,0xa8,0x43,0xc7,0x66,0x45,0xa,0xd4,0x5,0x15,0x2a, + 0x49,0xa7,0x67,0xc1,0x3a,0xb7,0x32,0x3,0xa,0x76,0x38,0x6b,0x37,0xe,0x72,0xe2, + 0xd3,0x2c,0xa0,0x68,0x80,0x8f,0xf3,0xfa,0x4b,0x1c,0xb2,0x7c,0xac,0xc1,0x1a,0x17, + 0xfc,0xaa,0x96,0xba,0x5f,0xbf,0x9d,0x53,0xbd,0x12,0x22,0x40,0xce,0xb9,0x16,0xe8, + 0x2e,0x4a,0xe7,0x7e,0xf1,0xcc,0x6f,0x7a,0x95,0xbb,0x79,0xf9,0x4d,0xec,0x48,0x51, + 0xfa,0x66,0x82,0xc1,0x1b,0x78,0x1,0x1a,0x61,0x61,0x51,0xf8,0x88,0xa9,0xeb,0x5f, + 0xf9,0x98,0x5e,0x5e,0x56,0xcd,0xed,0xdc,0x7a,0x2c,0xd6,0x59,0xfe,0xe2,0x18,0xe7, + 0xbd,0xb4,0xc9,0xf3,0x87,0x54,0xab,0xc9,0x14,0xa3,0x2d,0x78,0xf3,0x7,0x4d,0x5e, + 0x50,0xc3,0xc3,0x1a,0x47,0xef,0x65,0xf9,0xb1,0xc4,0x66,0x63,0xf0,0xfb,0xf0,0x4a, + 0x45,0x8,0x28,0xa0,0x68,0xf8,0x38,0xeb,0xe1,0x86,0x70,0xd4,0x34,0x6e,0x91,0x1, + 0x82,0x1b,0xf2,0x5a,0x81,0x74,0xb1,0x57,0xb0,0x82,0xfa,0xad,0x94,0x24,0x2e,0x7e, + 0xf,0x2e,0x93,0x67,0x67,0xf7,0xaf,0xac,0x39,0x17,0xc,0x33,0xac,0x4f,0xf9,0x8b, + 0xf3,0x6b,0x13,0xd2,0x16,0xff,0xb2,0x8c,0x85,0xf0,0x55,0xe2,0xc5,0x4,0xdf,0x43, + 0x95,0x36,0x87,0x9b,0x23,0x5a,0x89,0x28,0xc1,0x9b,0x19,0x36,0x2f,0x8b,0x72,0xcb, + 0x8f,0x5c,0xef,0x87,0x46,0xa8,0x42,0x34,0x85,0x61,0x77,0xf7,0x7d,0xa8,0x39,0x10, + 0xc2,0xfc,0x7e,0x9f,0x2f,0x7a,0x1,0xe7,0xf0,0xc1,0xd6,0x73,0xec,0x5f,0x8a,0x9f, + 0x17,0x44,0x9d,0x85,0x2d,0xb7,0xa2,0xee,0x39,0xfe,0xcc,0xbd,0xbb,0xc2,0x61,0xe2, + 0xe,0x9,0x28,0x17,0xa3,0x3e,0xcc,0xd,0x4c,0x6b,0xc2,0x8c,0x8f,0x92,0x6f,0x66, + 0x9c,0x7c,0x37,0xa5,0x0,0xa1,0xd,0x9e,0x76,0x30,0xb8,0x1a,0xa0,0xf1,0x5b,0xab, + 0xd0,0xaf,0xf7,0xc0,0x7c,0x5c,0x22,0x3c,0xe9,0xbf,0x50,0x61,0x3d,0xcc,0x95,0xe1, + 0x26,0xde,0x20,0x15,0xf2,0x6,0x56,0x6f,0x35,0x5a,0x84,0xc3,0xd3,0x6d,0x84,0x4f, + 0x1d,0x62,0xd1,0x3a,0x7e,0x6f,0xcb,0xcc,0x75,0x31,0xf2,0x7d,0x12,0x35,0xd8,0x59, + 0x4e,0xd4,0x0,0x97,0xc2,0xdd,0x7c,0x4e,0xc5,0xe8,0x7d,0x73,0xfa,0xfd,0xe2,0xf8, + 0x55,0xd7,0x71,0x63,0x30,0x1d,0xec,0x5d,0x4f,0xc5,0xdf,0x15,0xd,0xc6,0x6d,0x42, + 0xab,0x88,0xe9,0x3d,0xdb,0xeb,0xe5,0xd4,0xf9,0xbb,0xbf,0xbc,0xf6,0xac,0xf3,0x6d, + 0xe6,0xb2,0x49,0xa4,0x3d,0xb1,0xd2,0x4c,0x90,0xb2,0xfc,0xd2,0x55,0x65,0xcc,0x50, + 0xf8,0x91,0xcc,0x37,0x31,0x43,0xac,0x92,0x84,0x7,0x5a,0x81,0x2,0xe7,0x2a,0x3, + 0xd3,0xca,0x98,0x6e,0x37,0x94,0x88,0xdf,0x66,0x65,0x73,0x99,0x74,0xe,0x86,0x34, + 0x10,0x3b,0xc2,0x8c,0x4e,0x90,0x38,0x1b,0x52,0x62,0x4,0xfe,0x58,0x30,0xd4,0xf8, + 0x5f,0x3b,0xfd,0x7d,0x49,0xab,0x66,0x2a,0xfa,0x80,0x52,0x3a,0x8b,0xee,0x79,0x1d, + 0x2a,0x62,0x6,0x39,0xac,0xc6,0x4,0xda,0xb9,0x56,0x8e,0x2b,0x67,0x1e,0x77,0xeb, + 0xe3,0x92,0x6e,0x82,0x25,0xae,0xbd,0x2d,0x62,0x12,0x60,0x89,0x62,0x0,0x69,0xeb, + 0x78,0xc0,0xbd,0x1,0xb3,0x14,0xb3,0xbd,0x8,0xdf,0xc0,0x34,0x73,0xde,0x6c,0xa5, + 0xd2,0xf0,0x82,0x87,0xe5,0x3b,0x7,0x3b,0xfe,0xbf,0x3f,0xd6,0x55,0xde,0xde,0xbe, + 0xca,0x77,0x4c,0x4d,0x2d,0xb5,0x39,0x6f,0x97,0xf,0x3c,0xe6,0xdf,0xfd,0xee,0x4e, + 0x46,0xbc,0xcd,0x91,0x8a,0xde,0x49,0xd5,0xc8,0x7f,0x58,0xee,0x7a,0x3f,0x5b,0x8e, + 0xae,0xeb,0xfb,0x61,0x90,0xd1,0x93,0x36,0xc,0x5b,0xee,0xa,0x14,0xa7,0x73,0x1f, + 0x79,0xe6,0xb1,0xa9,0xfd,0x76,0xb6,0xbb,0x21,0x6d,0xcb,0xc8,0x25,0x74,0x95,0x9e, + 0x9,0xe,0x4e,0x74,0x9b,0x67,0x8b,0xe1,0xc5,0xb,0x53,0x7e,0x30,0x3d,0x8e,0x3a, + 0x86,0x3f,0x55,0xfa,0x97,0xa7,0xa3,0x3d,0xa2,0x29,0xac,0x9f,0x19,0xd7,0x97,0xd9, + 0xbe,0xd3,0xd0,0x5b,0x12,0xcc,0x46,0xe5,0x0,0x85,0x74,0x20,0x49,0x7,0x80,0x90, + 0xd7,0x81,0x1,0x73,0x5c,0xbe,0x89,0xcb,0x16,0xbf,0x57,0x5e,0x4f,0xe9,0x92,0x77, + 0xa6,0xa,0x8c,0x42,0xc3,0x95,0x21,0x35,0xdd,0xcf,0x4c,0x89,0x9d,0xef,0x8b,0x38, + 0x1b,0xec,0xfe,0x58,0xde,0xa2,0xef,0xd1,0x82,0x9e,0x3f,0x58,0xfc,0xf6,0x28,0xc7, + 0x76,0xa8,0xa4,0x75,0x75,0x75,0x5d,0xd4,0x55,0xe2,0x8,0xcf,0xde,0xd3,0x89,0x47, + 0x45,0x11,0xd1,0x28,0x4c,0xcd,0x55,0xe4,0xcb,0x97,0x54,0xf5,0x7c,0x4a,0x55,0x9f, + 0x54,0xd1,0x3d,0x2f,0xcd,0x79,0xb6,0xa4,0x1a,0xb4,0x5c,0xaa,0xca,0xb8,0xb5,0x1c, + 0xe9,0xf1,0xa4,0x72,0x38,0x11,0x58,0x27,0x52,0xf7,0xb,0xbb,0x3f,0xa5,0xfc,0x8c, + 0xba,0x7c,0x67,0xc0,0xee,0xc7,0x23,0x37,0x0,0xb4,0xd4,0x25,0x28,0x91,0x4e,0xe3, + 0xf3,0x54,0xfe,0xbd,0x2,0xef,0x2c,0xd8,0xb3,0xab,0xcd,0x5a,0x1c,0x48,0xb,0x42, + 0xb0,0xe,0xdd,0x2d,0xa,0x34,0x48,0x23,0x68,0x4a,0x54,0x3,0x62,0xb0,0x39,0xe9, + 0xcd,0x6c,0x69,0xc5,0x3,0x44,0x56,0x44,0x7c,0x9f,0xa0,0x97,0xd4,0x84,0x27,0x12, + 0xe1,0xa7,0xb8,0x6d,0x17,0xcb,0xee,0xbb,0x75,0x3,0xd8,0x62,0xd7,0x17,0x53,0x17, + 0x4d,0x1b,0x69,0x27,0xc8,0x49,0xdf,0xed,0xa9,0x2,0xf9,0x66,0xdb,0xd4,0xdc,0xa9, + 0x40,0xd9,0xcd,0xe8,0x75,0xad,0x20,0xb8,0xa9,0x8a,0x15,0x6f,0x9b,0x71,0xf0,0x55, + 0x2f,0x29,0x93,0x33,0x42,0x9f,0x32,0xb8,0x3,0x69,0x81,0xf5,0x60,0x43,0x4f,0xdf, + 0x18,0x36,0xf4,0xe,0x51,0x45,0xe,0x5,0xb7,0x8d,0xb2,0xa9,0x8e,0xcb,0xf4,0x90, + 0x18,0x33,0x3a,0xa6,0xcf,0xb3,0x65,0xf4,0x97,0xb7,0x4c,0x95,0xd8,0x31,0xba,0x0, + 0x14,0x91,0x4c,0x87,0xa0,0xbf,0xf,0xb2,0x3d,0x9f,0xea,0x9c,0xe8,0x3c,0xbf,0x78, + 0xe,0xac,0xfd,0xca,0xad,0x56,0x8d,0x40,0x5e,0xdd,0x35,0x3b,0xb7,0xaf,0x54,0xb9, + 0x47,0x7c,0x8e,0x8c,0x19,0xb9,0xc2,0x10,0x39,0xce,0xc5,0xb9,0xe7,0x2b,0xc0,0xa6, + 0x17,0xa2,0x2b,0x47,0xdd,0x5f,0x87,0x9d,0x77,0xd7,0xa2,0xd4,0xda,0xce,0x6f,0x5a, + 0xb5,0xe0,0x91,0xd1,0x8a,0x6a,0x85,0x79,0x12,0x21,0x3c,0xb,0xac,0x22,0xb1,0xf6, + 0xfb,0x1a,0x90,0xc7,0x2e,0x10,0x67,0xa1,0xaa,0xfb,0x94,0xba,0x22,0x4b,0x2,0x1, + 0x4f,0xe0,0xd2,0xa9,0x81,0x7b,0x68,0x8d,0x72,0x3e,0xc,0x38,0x15,0x5d,0xcc,0xf5, + 0x6a,0xc3,0x61,0x74,0xb8,0x9d,0xbc,0xbf,0xcd,0x5c,0x7,0x6b,0x6a,0x62,0xac,0xb, + 0xc,0x32,0x54,0xfb,0x3,0x12,0x7b,0x94,0x6e,0x9,0x0,0xd2,0x55,0x25,0x74,0xe6, + 0xb1,0xdb,0x2c,0xa6,0x9c,0x1d,0x5f,0x5,0x50,0x29,0x1e,0x89,0xdd,0xf8,0x42,0x88, + 0x89,0x7c,0xce,0xce,0xbf,0xfe,0x57,0x2d,0xe8,0x10,0xec,0xa2,0x45,0x6c,0x81,0x65, + 0xe6,0x42,0x18,0xe0,0xa9,0x87,0x61,0x50,0x56,0x66,0x41,0xe8,0xc2,0xfd,0x20,0x21, + 0x2c,0x96,0x86,0x11,0xc1,0x54,0x63,0x7d,0x3c,0xdc,0xc0,0x7d,0x1c,0x77,0xc,0x52, + 0xd9,0x44,0xb2,0x3f,0x8e,0x8e,0xf8,0x25,0x4d,0x9b,0x47,0xe3,0xe,0x2e,0xf2,0xe7, + 0x7c,0xe6,0x9a,0x72,0xf6,0x0,0x4f,0xda,0xde,0xa3,0x6f,0x7c,0xd7,0x65,0x87,0xce, + 0xf5,0xdd,0xca,0xf4,0x8b,0x25,0x79,0xe3,0x54,0x5e,0x63,0x80,0xe8,0x4d,0xd,0x77, + 0xe3,0x1b,0xbf,0xc2,0x16,0xf9,0x66,0x7,0x92,0x7c,0x9e,0x3b,0x4c,0x14,0xb2,0x3e, + 0x80,0x67,0xf6,0x20,0x31,0x1c,0x78,0x7e,0xab,0x82,0x98,0x35,0x2f,0x88,0xf0,0x26, + 0x9b,0x8c,0xba,0xd0,0xb3,0x3,0xbd,0xf9,0x65,0xf1,0x27,0x9a,0x24,0x28,0x5e,0x1e, + 0x86,0x95,0xdc,0x84,0xa9,0x4a,0x9,0x2b,0x34,0xdc,0x6,0xb1,0xec,0x26,0x6f,0x9b, + 0x8e,0xcb,0x7e,0x54,0xf9,0xfe,0xae,0xf4,0xf3,0x93,0xd6,0x47,0x9b,0xaa,0x9f,0x5c, + 0x4e,0xbf,0xb3,0x36,0x6f,0x4c,0x8,0xbf,0xcb,0xd9,0xc,0xc7,0x92,0xe6,0x1e,0xc5, + 0x5,0x36,0xc9,0x1,0x7d,0x9d,0x90,0x25,0x56,0x48,0x18,0x3e,0xe9,0xb,0x1c,0x70, + 0xac,0xc,0x45,0x48,0xe4,0x46,0x69,0x29,0x1d,0x37,0x4f,0xe9,0xf9,0x9b,0x82,0x9f, + 0x81,0x1,0x1d,0x12,0x89,0xb1,0x63,0xc3,0x52,0xf1,0x49,0xd0,0x2,0x4,0x55,0x51, + 0xb3,0x13,0x2e,0x6e,0xe8,0x16,0xb3,0xd5,0xde,0x88,0x7c,0x92,0x69,0xbb,0x50,0x89, + 0xb6,0x5e,0xbe,0xde,0xfd,0xc5,0x54,0xbe,0x7f,0x3c,0x6,0x87,0x29,0x1b,0x16,0xee, + 0xe7,0xcb,0x88,0x38,0x9e,0x77,0x97,0x8f,0xe9,0xcd,0xcf,0xdc,0xf5,0x4f,0xca,0xf6, + 0xba,0x8d,0x4,0x42,0x86,0xc7,0xb6,0x67,0x53,0xa0,0x1c,0x7e,0x7e,0x2e,0xf8,0x14, + 0x90,0x81,0x78,0x9c,0x8f,0x3e,0x29,0x1,0x40,0xea,0xb4,0xb1,0x72,0xb,0x58,0x3a, + 0x68,0x4c,0x2c,0x37,0x52,0x23,0xac,0x4f,0x36,0x50,0xd4,0x57,0xa9,0x9f,0x55,0xa6, + 0x6f,0x28,0xd,0x20,0x1a,0x0,0x61,0x76,0x2,0x89,0xa8,0x4d,0xf6,0x8b,0x1e,0x51, + 0x6b,0xca,0x8b,0x21,0x58,0x67,0x90,0xc7,0x85,0x5f,0x4c,0xc3,0xee,0xfa,0xa4,0xf4, + 0xec,0x9f,0x84,0x4b,0x1a,0x9b,0xbe,0x8a,0xcc,0xe9,0x5a,0x2f,0xe3,0x4,0x1d,0xf0, + 0x3a,0xd5,0x7a,0x4d,0x79,0x9,0x19,0x96,0x11,0x6,0xb8,0x17,0x3f,0xec,0x26,0x49, + 0xe3,0xbc,0xfd,0x6f,0x2f,0x52,0x3c,0x2,0x13,0x1f,0xa4,0xae,0xf9,0xf5,0x83,0xd3, + 0x37,0x29,0x2c,0xa0,0x22,0x24,0xd0,0x14,0xa9,0xfc,0xd8,0x72,0xf0,0x26,0x44,0x47, + 0xa0,0x2a,0x37,0xce,0xe1,0xb9,0x59,0xcf,0xa3,0xba,0x7b,0x3e,0x4d,0xc5,0xb,0x3c, + 0x3d,0x46,0xd8,0x88,0x67,0xd4,0x53,0x4c,0xa3,0xd0,0xf5,0xa0,0xe6,0x9,0x34,0x84, + 0x71,0x3d,0xc5,0x34,0xb,0xcd,0xcf,0xc7,0x69,0x1,0x2c,0x3e,0x8,0x17,0xf7,0x4c, + 0xd2,0x9c,0xb5,0x33,0x84,0xb0,0x74,0x99,0x90,0x98,0xf2,0xb7,0x94,0xa8,0x5c,0x75, + 0xd,0x1d,0xd3,0x7f,0x3,0x5b,0x2c,0x8f,0x3c,0x57,0x7e,0xc2,0x38,0xb3,0xaf,0x47, + 0x61,0x2,0x4d,0xc3,0x19,0xdf,0x74,0xf2,0xcc,0x2b,0xb3,0x93,0x3e,0x9b,0x37,0x90, + 0x95,0xa6,0x40,0x94,0x45,0xe5,0xba,0x62,0x78,0x7c,0x96,0x7c,0x17,0xc9,0x21,0x9d, + 0x37,0xec,0xc8,0x5,0x62,0xcb,0xb5,0x8f,0xc2,0x98,0xd4,0x1d,0x7b,0x8b,0xdb,0x72, + 0xb7,0x39,0x79,0x64,0x31,0xf9,0x6d,0x8d,0x92,0x2,0x2,0x2d,0x46,0xbf,0x1d,0x8b, + 0x18,0x1,0x63,0x36,0x5,0xfb,0xb1,0x4c,0x7c,0x9d,0x18,0xcb,0x91,0xf,0xb8,0x3c, + 0x8,0x30,0x51,0x4f,0xd9,0x30,0xf9,0xe4,0xff,0x2e,0x2,0x26,0xda,0xdc,0x68,0x61, + 0x6c,0xf5,0x86,0xa8,0x9,0xea,0x47,0xa7,0xb,0x9,0x3,0x6a,0xe3,0x36,0x3a,0x61, + 0x1c,0x8f,0x5b,0x1b,0x82,0xc9,0x6a,0x8b,0x59,0x7b,0xc0,0xa1,0xd1,0x50,0x8c,0x46, + 0xfe,0x67,0x4a,0xd2,0xe7,0xa6,0x1d,0xa8,0x62,0xde,0xe2,0xed,0x3e,0x5e,0xdd,0x7e, + 0x67,0x85,0x1e,0x75,0xb2,0x47,0x8d,0x98,0xe4,0xe8,0x23,0x9e,0x53,0x23,0x69,0x28, + 0x6d,0x1a,0x5e,0xaa,0xbc,0x9d,0xe4,0x75,0x7b,0x9c,0xd4,0xd0,0x5f,0x93,0xb5,0x43, + 0xd0,0x38,0x46,0x68,0x5a,0x89,0x5a,0xd1,0xab,0x69,0x9f,0xcb,0xf,0xfa,0xbb,0xdd, + 0x3c,0xa7,0x34,0x6e,0x36,0xb7,0x15,0x77,0x87,0xce,0x8d,0x85,0x65,0x6b,0x3d,0x3d, + 0x6d,0x78,0xd0,0x3e,0x3d,0x62,0x66,0x3e,0x15,0x72,0xcc,0x40,0x72,0xeb,0x4a,0x1d, + 0xa5,0x3f,0xe4,0x1b,0x89,0xf5,0x80,0x59,0xf7,0x9a,0x7c,0x15,0xae,0xcc,0x49,0x8e, + 0x22,0x3e,0x85,0x21,0x31,0x87,0x13,0xa3,0xeb,0x5a,0xe0,0x75,0x6b,0xb6,0xf2,0x2d, + 0x6,0x45,0x40,0x9d,0x17,0x6,0x47,0x8c,0xf6,0xfe,0x3b,0x69,0x75,0x96,0x55,0x72, + 0x20,0xe4,0x29,0x66,0x41,0x45,0x18,0x54,0x19,0x96,0xcc,0xda,0xae,0xa4,0xb8,0x65, + 0xdf,0xb6,0x1,0xe8,0xc5,0xc1,0x5b,0xaf,0x2,0x17,0x1f,0x8a,0xf3,0x2f,0x88,0xa, + 0xf0,0x35,0x53,0xd6,0x58,0x83,0xd2,0x9d,0x19,0xe4,0x51,0xa3,0x87,0x72,0x53,0x56, + 0x50,0xc7,0x83,0xa5,0xc6,0x9a,0x41,0xb5,0x6c,0x73,0x7a,0x19,0x8,0xa0,0x48,0x55, + 0x3,0x53,0xca,0x16,0x8b,0x8f,0x7f,0x19,0x81,0x90,0xc4,0x5,0xbc,0xdf,0x40,0x61, + 0xef,0x76,0x9c,0x74,0x19,0x52,0x4d,0x29,0x8,0x92,0xd3,0x11,0xa6,0x98,0xd5,0x5e, + 0x20,0x4d,0xbe,0x25,0x1d,0xd1,0xfb,0x6a,0x35,0x22,0xaf,0x81,0xe5,0x6d,0x26,0xdf, + 0xc7,0xe7,0xa7,0x99,0xe6,0xad,0xaa,0x3a,0xad,0x9b,0xd3,0xe6,0xad,0x92,0x94,0x5, + 0xbf,0xb6,0xed,0xc3,0x50,0xfa,0x5d,0xdd,0xaf,0x30,0xa0,0x16,0xc0,0x49,0xeb,0xed, + 0xb2,0x3b,0xf3,0x70,0x6e,0x3c,0x2c,0xd8,0x26,0x7,0x77,0x4c,0x25,0x89,0x7e,0xff, + 0x7b,0x12,0xc3,0xfa,0x46,0x4d,0x3f,0xce,0xb6,0xbb,0xa1,0x8b,0x73,0x84,0x59,0x6f, + 0xa3,0xf8,0x6c,0xe5,0x5c,0xc4,0xf7,0x4e,0xd6,0x47,0xae,0xa7,0x1d,0x4f,0x47,0x3, + 0xfd,0xc9,0x8,0x5f,0x5c,0x19,0xbd,0x8a,0x18,0x7e,0x69,0x8e,0xfc,0x82,0xf1,0xc8, + 0x8a,0xac,0xd2,0xe9,0xef,0x48,0x7b,0x7e,0x8a,0x61,0xc9,0x58,0xee,0x30,0xbb,0x3b, + 0xf8,0x82,0x25,0xf7,0x63,0x12,0x86,0x54,0x43,0xea,0xb3,0x1d,0x3c,0x82,0x6c,0x83, + 0xa,0x4c,0x85,0xe9,0x41,0x72,0x42,0xa7,0x71,0xa2,0x99,0xc0,0x8f,0x37,0xb1,0x10, + 0x7b,0x99,0x41,0x20,0x5,0xd7,0x18,0x1f,0x10,0xa0,0x41,0x9f,0x45,0x90,0xda,0xdc, + 0xd9,0x96,0x4e,0xb4,0x8c,0x5,0xfe,0x92,0x62,0x8,0xf3,0xcf,0x72,0xd1,0x62,0x83, + 0xb3,0x33,0xfd,0xc6,0x98,0x14,0xcb,0x8c,0x49,0x9f,0xe,0x20,0x8,0x2b,0x14,0xf7, + 0xde,0x4f,0x34,0x59,0xeb,0x14,0xbe,0x49,0x28,0xd6,0x1f,0x53,0x76,0x7a,0x13,0xa, + 0x65,0x85,0xcc,0x5a,0x6f,0x29,0xda,0x9c,0xc8,0xe4,0xd9,0xc,0x39,0x75,0x97,0x95, + 0x75,0x13,0x60,0xff,0x38,0x33,0x6b,0x14,0x13,0xd7,0xec,0x5,0x3,0x1b,0x18,0x35, + 0x5c,0xd,0x69,0x1e,0x3b,0x2d,0x96,0xfc,0x29,0x27,0x2f,0xa9,0x22,0x94,0x1c,0x30, + 0xa3,0x3e,0xbb,0xf4,0xeb,0x9f,0x5,0x9,0xff,0x70,0x5e,0x79,0xe4,0x1e,0x5f,0x75, + 0xb6,0x9f,0xf6,0xf0,0x8b,0x8c,0x57,0x6d,0xc9,0x3f,0xe0,0x20,0xff,0x78,0x3c,0xac, + 0xfd,0xb8,0xc4,0xf4,0x93,0x1b,0x9e,0xa7,0x93,0x3,0x3b,0xa,0x59,0x1f,0x33,0x86, + 0x69,0x59,0x27,0x20,0xca,0xba,0xec,0x38,0x3e,0xb9,0xe4,0xbd,0x77,0xf7,0x42,0x8d, + 0x96,0x21,0x60,0xad,0x49,0x72,0x28,0xbb,0xe7,0xf8,0x59,0x50,0x85,0xf1,0x1c,0x18, + 0x34,0xf8,0xd8,0xdc,0xbc,0x9a,0x93,0x1b,0xc3,0x28,0x1b,0x23,0x49,0x19,0xb2,0x33, + 0x16,0xe5,0x65,0x5f,0xee,0xc3,0xa8,0x29,0x61,0xc4,0xd8,0xf3,0xd3,0x68,0x26,0xd4, + 0xfe,0x3d,0xa,0xd1,0xb,0x36,0xcb,0xa5,0xa6,0xb5,0xb4,0x0,0x36,0xb5,0x57,0x84, + 0xc,0x46,0x6e,0xff,0xf4,0x35,0xf7,0xc7,0x4b,0x6b,0x39,0x85,0x7e,0x45,0xeb,0xfb, + 0x7f,0xb3,0x9c,0x73,0x87,0x3e,0xe1,0x76,0xca,0x70,0x61,0x9c,0x9e,0x7c,0xcf,0x29, + 0x87,0xac,0xb9,0xd5,0x5b,0xce,0x16,0xc0,0x14,0x69,0xe1,0x95,0xfd,0x78,0x99,0xc9, + 0xf8,0x4b,0x23,0xab,0x6a,0x94,0x87,0x15,0x30,0xb3,0x5a,0x82,0x95,0xa,0x5e,0x4e, + 0xd0,0xa7,0x12,0x9b,0xf5,0x9d,0xa7,0xe0,0x8e,0x19,0xd0,0x5b,0x32,0xf0,0x47,0xa4, + 0xf8,0x5f,0xed,0x1e,0x66,0x9d,0xdc,0x4,0xe,0xc4,0x4f,0x3a,0x9a,0xc3,0xab,0xed, + 0xd7,0xf5,0x3e,0x8d,0xe9,0x60,0xcc,0x22,0x17,0x3,0x24,0xef,0xbb,0x84,0x4,0xe8, + 0xc4,0x31,0xa5,0xc3,0x9f,0xc6,0x4b,0xe0,0xc9,0xa4,0x8d,0x1d,0x67,0xdd,0x56,0xf1, + 0x95,0x9,0x9,0xe7,0x99,0x3a,0xab,0x17,0xe1,0xc3,0xf2,0x62,0x63,0x2b,0x10,0xcf, + 0x7,0x69,0x52,0x18,0xff,0x30,0x3d,0xe5,0xe5,0x9b,0x4b,0x4d,0x9f,0xf7,0xeb,0x92, + 0x96,0xdb,0xca,0x89,0x9,0xdc,0x52,0xc7,0x28,0xd8,0x41,0x4f,0x82,0xf9,0x3a,0x49, + 0x5f,0x7e,0xec,0x31,0xe8,0x19,0xb7,0xa4,0x23,0x10,0x14,0x2,0x42,0xf3,0xf0,0xf9, + 0xf2,0x8d,0x1,0x49,0xff,0xa4,0xc9,0xbc,0x8c,0xd1,0x4f,0xf2,0xb9,0xfa,0x2d,0x49, + 0x7e,0x44,0xf4,0x45,0xa,0xb4,0x44,0x6e,0x8e,0x6b,0x25,0xf4,0x67,0x21,0x8c,0x4d, + 0x62,0x41,0x3f,0x7,0x92,0x84,0x18,0xb1,0x30,0xb2,0x4f,0xbc,0x86,0x2d,0x75,0x23, + 0xd8,0x82,0x5a,0x11,0x37,0xc6,0xfe,0xfc,0x2a,0x40,0xc4,0xb6,0x27,0xca,0x4a,0x86, + 0xca,0xe6,0xcc,0x2,0xde,0x8e,0xe3,0xe0,0xeb,0xb0,0x8,0x85,0xe4,0x71,0x4e,0x9, + 0xc8,0x28,0x7,0xce,0x73,0xf7,0x9c,0xf3,0x20,0x57,0xaf,0xf1,0x6f,0x69,0x66,0x9f, + 0x5a,0xea,0x30,0x84,0xab,0x3d,0x18,0xd5,0x83,0xe5,0x71,0x23,0xc,0xa4,0xa5,0x89, + 0xe5,0x6c,0x1e,0x1a,0x38,0xf,0x23,0x6d,0xbf,0x39,0xc8,0x24,0xed,0xe0,0xa5,0x5, + 0x39,0x68,0x6f,0x9a,0xe2,0x83,0x3,0x55,0x8f,0x2c,0xf1,0x9e,0x4f,0xb5,0x56,0x7f, + 0x9e,0xab,0xdc,0xa5,0xc7,0x7a,0x15,0x45,0x0,0x8e,0xe6,0x6,0x7b,0xc1,0x5b,0xf4, + 0x70,0xb9,0xa0,0x14,0x5c,0x1c,0x18,0x25,0x58,0x0,0x9b,0xa0,0x90,0xbe,0x8f,0x46, + 0x31,0xe1,0x94,0x10,0xaf,0x14,0x25,0x8a,0x56,0xd5,0x3,0xed,0xb0,0x27,0x0,0xb2, + 0xed,0x33,0x74,0xe8,0x25,0x3d,0x7c,0x63,0x23,0x20,0x9,0x65,0xe1,0x27,0x17,0x3b, + 0xbb,0x7a,0xee,0x40,0xa0,0xa3,0x67,0xe3,0xd2,0xd5,0xdf,0xc0,0xe9,0x67,0x5a,0xe7, + 0x68,0x70,0xf5,0x62,0x2f,0x88,0x51,0xae,0x21,0x64,0x7,0x97,0x8d,0x6b,0x42,0x26, + 0xf2,0xf7,0x88,0x53,0x11,0x56,0x58,0xdf,0x7c,0x79,0x28,0xf0,0xc9,0x7b,0x98,0xd5, + 0xf7,0x38,0x56,0x4b,0xa3,0x13,0x8,0x59,0x22,0x5d,0x67,0x43,0xb7,0x4c,0x4,0x45, + 0xb1,0x4,0x56,0x7a,0x62,0x50,0x7c,0xc0,0x1b,0xa9,0xa6,0xf5,0xc6,0x60,0x7a,0x86, + 0x1d,0xd6,0xeb,0x85,0xd1,0xb7,0xf6,0xfa,0xb1,0x31,0x1b,0xc6,0x8b,0xf3,0x9c,0xdf, + 0x24,0x92,0x90,0x59,0xd6,0x86,0xef,0xe3,0x8d,0x9b,0xdf,0x47,0x5c,0x95,0x6b,0xcc, + 0x56,0xa5,0x57,0x4b,0xb6,0x61,0x82,0x9d,0xc4,0x55,0x2e,0x4a,0x71,0xb1,0x4a,0x2b, + 0x9b,0xc,0x84,0xd8,0x5e,0x99,0x20,0xc4,0x22,0x4a,0x3,0x3b,0x3c,0xce,0x65,0x2c, + 0xe3,0xc9,0xd3,0xf5,0xc9,0x60,0x34,0x48,0x12,0x39,0x91,0xcd,0xdf,0xaf,0x9c,0x4d, + 0x8d,0xdd,0xfc,0xc5,0x5a,0xa4,0x22,0x82,0xe0,0xd,0x9e,0xda,0x68,0xda,0x7c,0xbb, + 0x86,0xed,0xb6,0x82,0xf2,0x7b,0xfa,0x62,0xb5,0xc0,0xca,0xbf,0x91,0xd0,0xf1,0x88, + 0x66,0xab,0x3b,0xb1,0x2,0x5b,0x81,0x6f,0xfb,0x86,0x33,0xf7,0x9c,0x8e,0x69,0xb7, + 0x87,0xce,0x17,0xd7,0xd3,0x3,0xa3,0x4d,0x3f,0xc7,0xf0,0x30,0x6,0x5f,0x8e,0xdf, + 0x89,0x3c,0x7,0xec,0xad,0xf,0x6c,0x9e,0x6,0xd4,0x4a,0xbe,0x6d,0x3a,0x36,0x6a, + 0x4c,0xb1,0x39,0x3a,0x6d,0xd8,0x64,0x16,0x9e,0x10,0x85,0xdf,0xcc,0xf5,0xdd,0x97, + 0x79,0xe2,0xd9,0xde,0xb7,0x4b,0x4b,0x89,0x52,0x97,0x35,0x80,0x2d,0xaf,0x4d,0x2b, + 0x61,0xd5,0x17,0xe3,0x59,0xc,0x4f,0xf7,0x22,0x9d,0x3e,0x64,0xe5,0x36,0xe6,0x83, + 0xad,0xd6,0x66,0xd6,0xde,0x67,0x66,0x3d,0x45,0x62,0xf,0x41,0xe9,0x23,0x70,0xf9, + 0xf1,0xa6,0x6,0x2,0xfe,0x8a,0xc7,0xb6,0x31,0x4a,0xfe,0xcd,0xe0,0xfc,0x9d,0xf3, + 0x69,0xc2,0x4a,0xa8,0x83,0xc,0xbb,0x4e,0x84,0x53,0xe3,0x9c,0x95,0x1b,0x4a,0x1, + 0x35,0x80,0x94,0xc1,0xa5,0xf0,0x41,0x74,0x2e,0xda,0xbc,0x61,0x4d,0xe0,0xf4,0xc7, + 0x8e,0x7d,0x81,0x27,0x56,0x7e,0xd,0x72,0x63,0xe6,0xca,0x1e,0xde,0x4f,0x43,0xf3, + 0x17,0x9d,0x5f,0xcb,0xac,0x9b,0xe9,0x26,0xdd,0x3b,0xc4,0xf0,0xbe,0xc8,0xd5,0x94, + 0xdb,0x5e,0x53,0xb5,0x18,0xe4,0x51,0x8e,0xa7,0x21,0x95,0xf8,0xf8,0xc9,0x3e,0xd2, + 0x5a,0xdb,0xa,0xd4,0x3b,0x17,0x19,0xf9,0x4c,0x40,0xa0,0xb2,0xd,0xdb,0x10,0x13, + 0xd6,0xce,0x14,0xfc,0xb2,0x71,0x17,0xf,0x14,0xe8,0xd7,0x1e,0xfb,0xc8,0x61,0x49, + 0x6e,0x5b,0x2,0xfd,0x33,0xc6,0x74,0x12,0x69,0xbc,0x3f,0x2,0x6,0xe6,0xf1,0x10, + 0x1a,0x63,0xf8,0xbc,0x1d,0x49,0xba,0x4b,0xed,0x3b,0x63,0xd,0x66,0xe1,0x8b,0x60, + 0x97,0xd,0x34,0x3f,0x28,0x66,0xe2,0xeb,0x88,0xfa,0xaf,0x9f,0x19,0x8b,0x70,0x6d, + 0xee,0x8f,0x98,0xc8,0x47,0xb6,0x93,0x56,0x6c,0x26,0x8e,0x36,0xe1,0xd3,0xcb,0x9d, + 0x6f,0x67,0x6b,0x2d,0x59,0x96,0xdf,0x32,0x71,0x6c,0x3f,0x92,0x9e,0x8c,0xd0,0xa, + 0xec,0x7b,0xb,0xf3,0x8d,0xf,0xa0,0x78,0x45,0x8a,0x30,0xa0,0xf7,0x6b,0x9f,0x0, + 0x67,0xfc,0xfa,0x58,0x5e,0x11,0x12,0x5c,0xc8,0xee,0x7c,0xcb,0x90,0x1f,0xaa,0x1e, + 0x2b,0x2b,0x39,0x34,0x58,0xec,0xe1,0x9d,0x78,0x7b,0xa0,0xbb,0x29,0x56,0x94,0xbe, + 0x92,0x86,0xa8,0xe8,0xb1,0x9,0xf6,0x2d,0x16,0x14,0xbc,0x8e,0x70,0x95,0xa3,0xed, + 0x7f,0xb5,0x7f,0xeb,0x7d,0x30,0x2f,0x8d,0xeb,0x80,0x33,0xce,0xf3,0x2e,0x53,0x35, + 0x4b,0x21,0x76,0x74,0x20,0x58,0x57,0x7,0x54,0x5d,0x2a,0xf2,0x7d,0x81,0x16,0x3f, + 0x34,0x6f,0x3,0x5c,0x43,0x10,0xc1,0x9a,0x37,0x17,0xc9,0x97,0xee,0x49,0x93,0x61, + 0xe4,0x21,0x2d,0x2d,0x93,0x47,0xcf,0xc8,0x8e,0x6d,0xbe,0x99,0xd,0xee,0xd0,0x61, + 0xc7,0x2,0xb9,0x61,0x83,0x92,0xef,0xbf,0xc6,0x5,0x3f,0x3e,0xe4,0x65,0xde,0xcb, + 0x71,0xa4,0x76,0xb3,0xc3,0x47,0xdc,0x3c,0xcc,0x2e,0xeb,0x6e,0x6e,0xde,0xde,0x71, + 0x74,0x80,0xfe,0x18,0x8e,0x7e,0x95,0x1a,0xdf,0x54,0xd,0xe2,0xc3,0x5c,0xcb,0x1e, + 0x13,0x55,0xb1,0xde,0x96,0xa6,0x81,0x17,0xa7,0xfb,0x19,0x7,0x6a,0x36,0x5a,0xd7, + 0xea,0x4b,0x99,0xa7,0x7f,0xcc,0xa2,0xdd,0x3c,0x7e,0xee,0x84,0x88,0x33,0x88,0x1e, + 0x9f,0x90,0x1b,0xc,0xcc,0xfe,0x88,0x28,0xbb,0x96,0xd6,0xe6,0x99,0x9d,0x7b,0x9b, + 0xf2,0xbb,0x6b,0x51,0x78,0x92,0x1b,0x7e,0xc3,0xa8,0xa6,0x5f,0xcb,0x64,0x4,0x90, + 0x4b,0x89,0x8c,0xdc,0xaf,0xbc,0x9b,0xe7,0x8,0x5a,0xec,0x32,0xb1,0x45,0x5e,0xe, + 0x64,0xe8,0x6e,0x73,0xbe,0xd9,0x97,0x25,0xa7,0x9e,0x8a,0x2a,0x62,0xb9,0xbb,0xaa, + 0xfd,0xb5,0xe4,0x4a,0xab,0x78,0xeb,0x4a,0x94,0xfd,0xfe,0xe9,0x9b,0x21,0x22,0x7b, + 0x60,0xdf,0xe8,0xa5,0x24,0x19,0x83,0x99,0xf0,0xb7,0xb,0x75,0xbd,0x4a,0xa2,0xfd, + 0xb0,0x78,0xf2,0xb0,0x40,0x97,0x67,0x69,0x91,0x0,0x2,0xe2,0x13,0xa1,0x75,0xd0, + 0xf,0xd3,0xd2,0x7a,0x30,0xa0,0xc2,0xe8,0x19,0xb2,0x5,0xe5,0xdd,0xb0,0x25,0xa2, + 0x52,0x89,0xad,0xf3,0x1a,0x3b,0x25,0xdd,0x61,0x63,0xc3,0xdb,0x1e,0xc3,0xb5,0xc1, + 0x55,0x5f,0x8f,0x34,0x7,0xa6,0xad,0x27,0xcf,0x49,0xfa,0xb7,0xe,0x8b,0x66,0xd7, + 0xa8,0xe1,0x9,0x84,0x5f,0x33,0x2,0x63,0x26,0x46,0xc6,0x3f,0x13,0x55,0xe8,0xa9, + 0x17,0x35,0x59,0x64,0xf2,0xff,0x5c,0x58,0xf2,0x1e,0x37,0xdc,0x18,0x98,0x3c,0xa0, + 0x13,0xdf,0x5d,0x9c,0x52,0x9f,0x9,0x1b,0x5c,0x4d,0x61,0xec,0x8e,0xa8,0xc4,0xcd, + 0x8b,0x40,0xc,0xe1,0x1,0xa0,0xd1,0x46,0x1e,0xad,0x88,0xfb,0x69,0x78,0x70,0xe2, + 0xfd,0x9c,0x70,0x17,0x7d,0x83,0x45,0x83,0x3d,0x38,0xec,0xed,0x9a,0x93,0xf2,0xc1, + 0xb2,0xf9,0xd8,0x4,0x3,0x21,0xe5,0x7c,0x1c,0x66,0x3f,0xfd,0x9b,0x1f,0x9f,0x8b, + 0x11,0xda,0x1b,0x55,0x17,0x79,0x23,0x6d,0xc4,0x4,0xb6,0x16,0x74,0x2c,0x66,0x3, + 0xdf,0x1e,0x3,0xc8,0xd2,0x88,0xd1,0x20,0x36,0x78,0x43,0xb0,0xdd,0x4a,0x54,0xbc, + 0x61,0x88,0xb6,0x59,0xb,0xa8,0x46,0x30,0x49,0x2f,0xf2,0xb9,0xf9,0xa3,0xb2,0xd, + 0x4f,0x9,0xf3,0xba,0x5d,0xc6,0x1e,0xaf,0x6,0x53,0x8b,0x18,0xb,0x2e,0x29,0x48, + 0x87,0xcb,0xef,0xbe,0xf1,0x26,0x23,0x83,0xd5,0x95,0xff,0xfd,0xf1,0xc0,0xc4,0xd, + 0xdc,0xdc,0xc3,0x4,0xbc,0xaf,0xdf,0x4a,0x77,0xfa,0xb4,0x9d,0x1d,0x95,0xa8,0xde, + 0x56,0x3d,0x6a,0xf8,0xd7,0x59,0x6,0xe1,0x20,0x27,0x66,0xb0,0xbd,0xc2,0xd7,0x1f, + 0x45,0xdd,0x68,0x3c,0x3e,0x4c,0x18,0x6b,0x7f,0x37,0x7e,0x23,0x51,0x60,0x72,0xa2, + 0x68,0xa5,0x5a,0xba,0x46,0x44,0xa7,0x7c,0x2c,0x28,0x3c,0x65,0xd7,0x38,0x9d,0x6b, + 0xae,0xd7,0x84,0x6d,0xd9,0x8f,0xaf,0x11,0x7a,0xec,0xf7,0xf7,0xb0,0x79,0x77,0xdf, + 0xa8,0x32,0xdd,0x34,0xf8,0x4a,0x57,0x7a,0x2e,0xf7,0xb6,0x5,0x57,0x3e,0xe4,0xbd, + 0x8a,0x6a,0x16,0xad,0x1f,0xc1,0x1c,0x1e,0xe2,0x4e,0xd1,0xd3,0x73,0x2,0x6a,0x13, + 0x0,0x9d,0x29,0x82,0x96,0x36,0xfe,0x85,0x62,0x4a,0x5c,0x5e,0x7,0xe2,0x8,0xee, + 0x4f,0xb5,0x7b,0x19,0xbe,0x5f,0x2b,0x52,0x22,0xfa,0x23,0x9c,0x67,0x97,0x22,0xd6, + 0x4c,0x69,0xfc,0xa9,0x4c,0xd7,0xac,0x8d,0x96,0x46,0xed,0x48,0x8e,0xb9,0x5d,0x8b, + 0x36,0xa2,0x9f,0x44,0x3c,0x1e,0x49,0xc4,0x64,0x58,0x77,0x9d,0xb5,0x9e,0x17,0x8f, + 0x5b,0xb3,0xeb,0x3c,0x5b,0x9,0x38,0x79,0x5b,0x21,0x74,0xc6,0x66,0x6e,0x6e,0xeb, + 0x76,0xba,0xd7,0x60,0xd8,0x63,0xa4,0x5a,0x4f,0x10,0x9b,0x6f,0x86,0x8c,0xe,0x4e, + 0xc3,0xb1,0x92,0x29,0x0,0x13,0xa5,0xa5,0x51,0xca,0xf,0x96,0x4c,0x5f,0xc1,0xc9, + 0xe3,0xf7,0x56,0xb3,0x74,0x34,0x8e,0xba,0x9b,0x73,0x2c,0xe1,0x1a,0x89,0xc7,0x3f, + 0x46,0x82,0x5e,0x66,0x5e,0xfb,0xbc,0x5d,0xd3,0x29,0x1a,0x3c,0x7b,0x3f,0x4b,0xb1, + 0x32,0xf0,0x25,0xb9,0xd0,0x66,0x7b,0x6b,0xd4,0xe3,0x64,0x9c,0x11,0x1d,0x58,0x46, + 0x2,0xee,0xd1,0xe7,0xee,0x25,0x9,0x43,0xac,0x65,0x4f,0x94,0xad,0xbc,0xf9,0xc, + 0xa2,0x1c,0x8e,0x95,0xae,0x4,0xb3,0x75,0x64,0x3f,0x83,0xd8,0xf7,0x36,0x82,0x3d, + 0x96,0x24,0xa3,0x3f,0x54,0x77,0x86,0x1f,0xf9,0xef,0x30,0xb6,0xdd,0x9,0xe4,0xe2, + 0x1a,0x61,0x60,0x2,0xe4,0xbf,0xa7,0x24,0xf,0xa4,0x38,0xae,0xdf,0xf4,0xf3,0x29, + 0x1f,0xcf,0x53,0x4f,0xde,0x70,0xca,0x6d,0xcf,0x58,0xbb,0xe9,0xb2,0xbf,0x5f,0xaa, + 0xcf,0xf0,0x13,0x13,0xbb,0x90,0xc0,0xb9,0xbb,0x3e,0x2e,0xfd,0xf5,0x4b,0x3d,0xd0, + 0xc8,0xde,0xfe,0xe9,0x7b,0x2a,0xa9,0x4f,0x51,0x55,0xfa,0xb2,0xe2,0xd6,0xbf,0x8a, + 0xd4,0x6,0xe9,0x69,0x92,0x18,0xb2,0x16,0xf5,0x18,0xc7,0xff,0xec,0x30,0x35,0x88, + 0x62,0xba,0x48,0x3b,0xa8,0x87,0xee,0xfa,0xc5,0x43,0x96,0x59,0x4b,0x35,0x1e,0x71, + 0x85,0xac,0x2b,0xd6,0x2d,0xe5,0x6,0xdf,0x23,0xc3,0xea,0x85,0xf7,0x89,0x2f,0xa5, + 0x9e,0x29,0x59,0x62,0xba,0x56,0x53,0x23,0xad,0x23,0x11,0xfd,0xf8,0xec,0xa5,0xcb, + 0x29,0x58,0xc2,0x96,0x35,0x1a,0x38,0xe7,0x1c,0x35,0xd8,0x9f,0x45,0x2,0x94,0x4a, + 0x17,0xaa,0x32,0x5,0x93,0x67,0x39,0x5e,0x16,0x92,0xfc,0x8a,0xcb,0x59,0x69,0x28, + 0x6d,0x8f,0xf3,0x1b,0x85,0x34,0xf,0xbf,0x2a,0x19,0xbf,0x3b,0xee,0xd6,0x78,0x35, + 0x4d,0x42,0x1a,0x4e,0xa0,0xc5,0x2b,0x15,0xcc,0xf7,0x62,0x48,0xf0,0x6d,0x1f,0xd1, + 0x2b,0x30,0x58,0x37,0xc7,0xbd,0x26,0x95,0x82,0x33,0xe5,0xd,0xc5,0x9f,0xa5,0x19, + 0x92,0x73,0xa8,0x9b,0x6e,0x91,0x21,0x6d,0x7f,0x64,0xc7,0x9a,0xd3,0xdb,0xda,0x22, + 0x61,0x27,0x2,0x55,0xd7,0x4b,0x49,0x49,0x3b,0x16,0xf4,0xfb,0xc9,0x16,0x5e,0x7a, + 0x6f,0xda,0xce,0xa0,0xb3,0x0,0xb1,0xa2,0x88,0xc5,0x7b,0xb9,0x14,0xbf,0xab,0xe3, + 0xd1,0xf8,0x7b,0xd9,0xeb,0x5c,0x70,0x43,0x57,0x95,0x76,0x45,0x13,0x43,0xad,0xbf, + 0xf0,0x7b,0xb8,0x4b,0x48,0x93,0xe3,0x82,0x8c,0xe1,0x34,0x4e,0x91,0x78,0x45,0x0, + 0x72,0x38,0x95,0x7d,0xbf,0x95,0xa0,0x54,0x3d,0xe7,0x4b,0x6e,0x78,0xaa,0xfa,0xc9, + 0x4,0xe9,0xe7,0xcf,0x2e,0x60,0xba,0x99,0x79,0x4,0x3c,0x3b,0x90,0x6c,0xa2,0xc8, + 0x36,0xf4,0x21,0x78,0x52,0xc2,0xbd,0xb0,0x44,0x17,0x98,0xb,0x2f,0x6,0x31,0x86, + 0xf8,0x43,0xff,0x2e,0x1c,0x8,0x34,0x5a,0xd7,0x61,0x90,0x1a,0x86,0x89,0x52,0x7b, + 0x72,0x99,0x2d,0x53,0x29,0xaf,0x9d,0x7f,0xcf,0x22,0x3,0x87,0xe7,0xb,0xce,0xe5, + 0xed,0x63,0x85,0x20,0xc7,0x4,0x40,0xa1,0x9a,0x15,0xbb,0x7f,0xf9,0x5b,0x1c,0x1a, + 0x8e,0x19,0x6e,0xd0,0xfb,0xe0,0xb3,0x6f,0xc1,0x3a,0x4b,0x2c,0xc8,0xc,0x61,0xe1, + 0x89,0x38,0x1c,0xc2,0x49,0xaa,0xe2,0xde,0xec,0xf,0x56,0xe,0x2f,0xfb,0x7b,0xe3, + 0x7b,0x7d,0xa4,0x9f,0x91,0xfb,0x90,0xf1,0xa9,0xf9,0x84,0x33,0xd,0xaf,0x2e,0x28, + 0xbe,0x12,0xc6,0x4b,0x3a,0x58,0x90,0xfd,0x6a,0xfa,0xe8,0x8b,0xcf,0xb2,0x53,0x44, + 0x8f,0xf1,0x9c,0x29,0x3,0x2d,0xc1,0xb9,0xa1,0x31,0xce,0x75,0x16,0x2d,0x9c,0x71, + 0x2a,0x6,0x4a,0xe0,0x80,0x65,0xb9,0x25,0x38,0xd2,0x2,0x8a,0xd,0xbc,0xb3,0xad, + 0x62,0xba,0x82,0x1b,0x7b,0xe1,0xb2,0xa6,0x5d,0x39,0xea,0xe4,0x32,0xda,0x3d,0x3c, + 0x6f,0xc1,0x62,0x56,0x34,0x38,0x93,0xdd,0x97,0x65,0x37,0xfd,0x12,0xb1,0x50,0xe5, + 0xb9,0x6f,0x5b,0xcf,0x84,0x54,0x97,0xb7,0xb1,0x41,0x27,0xef,0xb5,0x50,0xf,0x4, + 0xfe,0xb8,0x54,0xfd,0x78,0x46,0x2b,0x53,0xa9,0x95,0xd3,0x5c,0x5d,0x1e,0x5b,0xa5, + 0x75,0xd4,0xff,0x7a,0xae,0x61,0x62,0xf0,0x94,0x5d,0x3a,0x3e,0x4,0x7d,0x6d,0x2b, + 0xc0,0x31,0x63,0x33,0xe2,0x2f,0xeb,0xe7,0x81,0xd1,0x26,0xa3,0x6f,0x8,0x28,0x40, + 0x8a,0x88,0x71,0xf4,0x5a,0x8d,0xc4,0x7d,0xde,0x3b,0x77,0x50,0xfb,0xa2,0x7b,0x13, + 0x7a,0x11,0xf7,0x2d,0xc4,0xd2,0xf7,0x29,0xc9,0xac,0x80,0x4e,0x79,0x86,0x83,0xba, + 0x61,0xf6,0xec,0xbd,0xd1,0xd5,0x53,0x16,0x4c,0x4d,0xb0,0xaa,0x97,0x24,0xe8,0x4d, + 0x8b,0xe3,0xd0,0x85,0x33,0x51,0xdd,0x3a,0x17,0x32,0x3b,0x6a,0x9c,0x54,0xdc,0x7b, + 0x82,0x4c,0x9e,0xb0,0x3,0x35,0x1e,0x23,0xbc,0xea,0x53,0xe8,0x58,0xa2,0x66,0xec, + 0x1d,0xde,0xc6,0xc3,0xeb,0x6b,0xb5,0xbe,0xe4,0xd4,0xae,0x16,0x8c,0x3,0xad,0xa4, + 0x93,0xb4,0x12,0x2c,0xe6,0xe9,0x36,0x1a,0x33,0xbb,0xf8,0xea,0x1c,0xf4,0xa,0x1f, + 0x44,0xb5,0x50,0xc9,0x41,0xff,0xc3,0xb6,0xde,0xed,0x53,0x97,0x61,0x40,0x4,0x3f, + 0xfa,0xa4,0x4d,0x64,0x27,0xea,0x51,0xfe,0xb6,0x74,0xdd,0x98,0xe3,0xbf,0x32,0x1a, + 0x78,0x9e,0xae,0xb1,0x33,0x8f,0x21,0x76,0x6b,0xa0,0x90,0x58,0x54,0x95,0x23,0xed, + 0x46,0x28,0x8,0xff,0x73,0x51,0x7f,0x75,0x58,0x48,0xf8,0xd6,0xb7,0x42,0x8b,0x4d, + 0x52,0x9,0xee,0xfa,0x47,0xee,0xb1,0xa4,0x9f,0x47,0xcc,0x45,0xeb,0x67,0xdb,0x89, + 0x2,0xf9,0x5b,0xff,0x44,0x12,0x3e,0xbe,0xa9,0xeb,0xf2,0xbf,0x5f,0xfe,0xfe,0xdc, + 0xcd,0x4d,0x93,0x3f,0x71,0x15,0x6e,0x87,0x6e,0xc3,0xbe,0xfb,0x2c,0xeb,0xd1,0x34, + 0xd6,0x86,0x22,0xa4,0xe4,0xb6,0x98,0x60,0x65,0x31,0x23,0xbd,0x39,0xed,0x97,0x68, + 0x22,0xe4,0x37,0x78,0x51,0xe9,0x71,0xb,0xb3,0x8f,0xd3,0x20,0x89,0x92,0x42,0xab, + 0xf,0xfd,0xeb,0x68,0xb7,0x24,0x86,0xa1,0xdb,0xfd,0x31,0xcf,0xdb,0x34,0x47,0x24, + 0x37,0x6,0x37,0x99,0x8,0x55,0x89,0xaa,0xdb,0xdc,0xc5,0x5c,0x29,0xd3,0xbc,0xf5, + 0xc8,0x3,0xfb,0x87,0x2b,0xeb,0xd1,0x87,0xf9,0x23,0x49,0xc1,0x37,0x7,0x7a,0x8f, + 0x9f,0xbd,0xc1,0x34,0x76,0xfd,0x4e,0x9e,0xc5,0x1,0xc3,0xe,0x6,0x5a,0x23,0xde, + 0xc2,0xba,0x37,0xc2,0x9d,0x32,0x37,0xb6,0xe9,0x35,0xb2,0xe7,0xaa,0xa,0x4d,0x39, + 0x1f,0x6e,0x51,0xed,0x47,0x75,0x73,0xdf,0x1d,0x64,0xc5,0x3a,0x75,0x33,0x7f,0xb4, + 0x19,0x89,0x54,0x90,0x4f,0x15,0xf,0x90,0x66,0xed,0x1c,0x4b,0x38,0x50,0xbb,0x33, + 0xc8,0xd8,0x64,0x7e,0xc2,0x58,0xa1,0x9,0x19,0xe9,0x89,0x60,0x32,0xd3,0xa5,0x64, + 0x3d,0x95,0x24,0x26,0xa0,0xa3,0x4f,0x1d,0xba,0xb9,0xb3,0x39,0x8d,0xe9,0xf4,0xb7, + 0xed,0xb8,0xe5,0xd2,0x2d,0x8a,0x74,0x86,0x3b,0x2e,0x36,0x4,0x49,0x92,0x5a,0x49, + 0xe,0x8,0x8c,0xbe,0xea,0xf,0xbe,0xbc,0x9c,0xdb,0xbd,0xd4,0x6d,0x95,0xd2,0xef, + 0x6b,0x3,0xc4,0x6,0xc1,0x11,0x9f,0xc5,0x24,0x77,0xb0,0x34,0xad,0x3a,0x9b,0xc0, + 0x98,0x99,0x9e,0xd5,0x20,0x76,0x25,0xd7,0xc4,0xbe,0x4f,0x1b,0xe1,0x8a,0x3a,0x55, + 0x23,0x66,0xaa,0x37,0xa7,0x90,0xa4,0x68,0x14,0xeb,0x83,0x16,0xf3,0x77,0xb8,0xf7, + 0x83,0xf4,0x52,0xfb,0xa2,0xa9,0x21,0xc0,0x27,0x90,0x83,0x4,0x79,0x92,0xfc,0x1a, + 0x50,0x33,0xb8,0x73,0x4f,0xa7,0x5b,0xfb,0x7d,0x56,0xa2,0xe0,0xa7,0x9a,0xd9,0x72, + 0xae,0x2e,0x91,0xcc,0xa6,0x96,0x25,0xd7,0xbc,0xea,0x67,0x1f,0x3,0x8b,0x4,0x5e, + 0x45,0x60,0x88,0xe0,0x44,0xb4,0x6f,0x65,0xd9,0xef,0x64,0x74,0xdf,0xd1,0x49,0x7e, + 0x45,0x39,0xc5,0x86,0x13,0x4b,0x52,0xde,0xae,0x6a,0xb5,0x42,0xc0,0xd2,0x76,0xb7, + 0xb8,0xa4,0xe1,0x60,0xc6,0xa8,0x9b,0x5e,0x5e,0x92,0x83,0x63,0xad,0x31,0x9f,0x91, + 0xaf,0xd5,0xbb,0x97,0xd,0xbe,0x9,0x3,0x9e,0xd2,0xe9,0x6b,0x64,0x7f,0xdb,0x54, + 0xb5,0xe7,0x2,0xaf,0x73,0xbc,0x6d,0x56,0x3b,0x7c,0x17,0x97,0x79,0x2f,0x33,0x7, + 0xde,0xd3,0x28,0x52,0x9a,0x6,0x3c,0xab,0xd4,0x6b,0x4d,0xb9,0xef,0xa,0x94,0x75, + 0xe9,0xb5,0xfd,0xa3,0xef,0x12,0x9c,0xfd,0x7c,0xde,0x73,0xe5,0xc1,0xd9,0x4f,0xa1, + 0x20,0xcf,0x5f,0x2d,0x8d,0x26,0xe4,0x48,0x71,0x17,0x9b,0x65,0xe4,0x23,0xe1,0xbd, + 0x8f,0xb6,0xb0,0x5b,0x32,0x83,0x7e,0xbc,0x2b,0x4c,0x5,0x18,0x9a,0x1b,0xbe,0xbd, + 0x4b,0x73,0xc4,0x5,0x68,0xdf,0x6e,0x5b,0x32,0xb0,0x9c,0xef,0x10,0x61,0x5,0xc1, + 0x1b,0xe0,0x5,0xe8,0x6e,0x89,0xf1,0x17,0xcc,0xa,0xef,0xb,0x54,0x78,0x5a,0xe5, + 0xb2,0xcf,0xd1,0x20,0xc1,0x62,0x16,0x55,0x45,0x45,0x9c,0xc3,0x57,0x6c,0x37,0x7f, + 0x8a,0x55,0x98,0xd9,0x5,0x3e,0x30,0x93,0xbf,0x3d,0xd5,0x32,0x1e,0x9a,0x96,0xa0, + 0xf4,0x26,0x5a,0x24,0x90,0x21,0x35,0x53,0xf9,0x1a,0xec,0xde,0xec,0x39,0xae,0xa5, + 0xcc,0xdc,0xae,0xc4,0xa9,0x62,0x56,0x65,0xf7,0x70,0xd8,0xbc,0x36,0x2b,0x2d,0x61, + 0x83,0x6a,0xf9,0x8c,0x2b,0x2d,0xdb,0x2,0x81,0xa3,0xae,0x19,0x26,0xaa,0x9,0x2f, + 0x2d,0x9,0x23,0x60,0x1f,0xbf,0x60,0xfe,0x64,0x11,0xd8,0x73,0xfb,0x71,0xf1,0xa9, + 0x9f,0xa8,0x97,0x5,0x37,0x74,0x6b,0xd,0x75,0x7f,0x2d,0xb1,0x8b,0x43,0xfd,0xcf, + 0xb7,0x50,0xf9,0x78,0xb,0xcd,0x9f,0x29,0xcc,0xed,0x8c,0xa0,0x1a,0xd,0x75,0x88, + 0xdd,0x93,0x7,0xbb,0x3f,0xd9,0x4e,0xdd,0x9a,0x89,0x40,0x4c,0x9d,0x10,0x14,0xcf, + 0xb,0x41,0xb8,0x7d,0xc9,0xfc,0xf6,0x43,0x18,0xe5,0xb1,0xb0,0xac,0xa1,0xcd,0x74, + 0x4,0xae,0x58,0x9d,0x29,0xc1,0x47,0xaa,0xfd,0x7e,0xa3,0x30,0x18,0xc1,0x31,0x86, + 0x39,0x4f,0xfb,0x1,0xff,0x63,0x49,0x2b,0x2,0xc9,0x5a,0x77,0x6b,0xab,0x12,0x53, + 0x29,0x91,0x30,0x98,0xdb,0x95,0x19,0xfa,0xa4,0x8e,0x2,0x64,0xef,0x94,0x1c,0x92, + 0xe6,0x35,0x94,0xf2,0xb2,0xaa,0xe7,0x20,0x47,0xdc,0xa6,0xa5,0xe,0x31,0xae,0xf2, + 0x8c,0x59,0xf7,0xb3,0x1c,0xee,0x58,0x84,0xd1,0xa5,0x96,0xb2,0x5e,0x57,0xc3,0x45, + 0xf1,0x88,0x40,0xcd,0x55,0x46,0x2d,0x68,0x3,0x2f,0xe2,0xf3,0x54,0xa0,0xd5,0xbd, + 0x7f,0xf9,0x61,0x1c,0x71,0x7f,0x51,0x1f,0x7e,0x9b,0x8f,0x36,0x5,0x72,0x88,0x81, + 0xbd,0x8e,0xb,0xc8,0x46,0x2b,0x9a,0x3b,0x72,0x72,0x3,0xf6,0xf7,0x34,0x61,0xb4, + 0x32,0x4d,0xb9,0xfc,0x68,0xca,0x52,0xc2,0xfd,0x9e,0xb5,0x54,0xc9,0x95,0xa6,0xea, + 0x7,0x64,0x20,0x8e,0x83,0x59,0x5,0xef,0x39,0x15,0x8b,0x99,0xdb,0xd0,0xcb,0x51, + 0x55,0x5a,0x42,0xcc,0x1f,0x81,0x87,0x87,0x87,0x17,0xa6,0x63,0x12,0x16,0xa6,0xe, + 0x46,0xd7,0xeb,0x15,0xfa,0xbd,0x62,0x51,0x7e,0xca,0x87,0xbc,0x15,0x0,0x7e,0x2a, + 0xfd,0x27,0xf5,0xb7,0x31,0xc7,0x7d,0x4e,0xaf,0xc6,0xc4,0x3d,0xd6,0x4c,0xe8,0x62, + 0x22,0xc6,0x4c,0x13,0xac,0xed,0xec,0xec,0xa,0x72,0x94,0xf3,0xf2,0xb7,0xbf,0xe1, + 0x19,0x42,0x0,0x9b,0x60,0x8,0x7b,0x39,0xba,0x10,0x72,0x1c,0x86,0xf3,0xa8,0x9c, + 0xa8,0x22,0x64,0x9d,0xcf,0x19,0x4b,0x5b,0x0,0x8f,0xb5,0xbb,0xdc,0xd4,0x2c,0xaa, + 0xf2,0x8a,0x88,0x11,0x4,0xbc,0xa7,0xfc,0x71,0x1e,0x8d,0x55,0xf3,0x56,0xc5,0x83, + 0x27,0x44,0x9d,0xc4,0x2e,0xef,0xe8,0x7a,0xb5,0xb4,0x84,0xd9,0x6a,0x57,0xbc,0xe5, + 0xcd,0x2c,0x71,0xbe,0x5d,0x53,0x35,0x81,0x63,0xb1,0x96,0xc5,0xa0,0x5d,0xfd,0xf3, + 0x77,0x1c,0x2f,0x99,0xff,0x60,0x38,0x42,0xa6,0xb0,0xf7,0x21,0xe9,0xe6,0xb1,0xc7, + 0xf3,0x9,0x9e,0xd,0xbd,0x77,0x1f,0x45,0x60,0xbf,0xb5,0xea,0xad,0xa7,0x9a,0xbd, + 0x8f,0xd9,0x4,0xc2,0x4c,0xd7,0xf0,0xf1,0x41,0xa2,0xc8,0x98,0x40,0x36,0xad,0x7e, + 0x41,0x32,0x5,0xd7,0x6d,0x2a,0x28,0xa6,0x78,0x4b,0x20,0xce,0xa8,0xa6,0x41,0x43, + 0xb1,0x6b,0xc,0xe1,0x9b,0xf4,0xf3,0x4c,0x9e,0x96,0x75,0x70,0xe,0xdc,0x5,0x6d, + 0xd8,0x4d,0xf4,0xb0,0xca,0x43,0xfb,0x14,0x30,0xe,0x25,0x11,0x23,0xac,0xb1,0xc8, + 0x48,0xc0,0xa0,0x95,0xda,0x95,0x9b,0x8a,0x67,0x7f,0x40,0xe4,0xc3,0x17,0xdb,0x94, + 0xce,0x54,0x2e,0x54,0x20,0x17,0xb6,0xa0,0x79,0x2b,0xf9,0x75,0xde,0x67,0xae,0x6f, + 0x76,0x68,0x8d,0xed,0x96,0xe2,0xff,0xf8,0xcb,0x58,0xdf,0xb2,0x7a,0xa8,0x3f,0x9c, + 0xdf,0x11,0x8d,0xdf,0x9c,0x6e,0x30,0xdf,0xf5,0x65,0xd2,0xa2,0x26,0xb,0xc5,0xf1, + 0xf6,0x77,0x1e,0x6f,0x7a,0x72,0x9d,0xd2,0xed,0xab,0xd2,0xb3,0xbd,0x53,0xc5,0xfd, + 0x7e,0xed,0xe8,0xcf,0x6f,0xfc,0xe6,0x8c,0x7c,0x7b,0xf1,0x3e,0x9f,0x2a,0x84,0xf3, + 0xcd,0x17,0x77,0x2a,0x36,0x4c,0xe3,0x1c,0xdf,0xb8,0x4,0x8e,0x83,0xd7,0xe9,0x3, + 0x35,0xe8,0x3b,0xdb,0xe3,0xd5,0xce,0xac,0x86,0xbf,0x1,0x6c,0xb4,0xf5,0x8a,0x92, + 0x63,0x1,0x53,0xcc,0x79,0x2a,0x61,0xee,0x3d,0x89,0xb9,0x4b,0x64,0xa0,0x64,0x5c, + 0xe9,0xa6,0x9b,0x98,0x50,0x2f,0xf3,0xb4,0x10,0xc4,0xd8,0xf7,0x24,0xe1,0xd5,0x8b, + 0x4d,0x6,0x4,0x1,0x1f,0x92,0x5a,0x1e,0x3f,0x54,0x93,0x1e,0x18,0x22,0xc2,0xcf, + 0xf3,0x2c,0xdc,0xed,0x16,0xbe,0x87,0x63,0xf4,0x37,0x6f,0x75,0xcf,0xa4,0xe1,0xa2, + 0xfb,0xc2,0x50,0x2e,0xa0,0x94,0x3f,0x52,0x3,0x65,0x1b,0x2b,0xcb,0x8e,0x41,0xbf, + 0x5d,0x9,0x67,0x6b,0xd3,0x2,0x27,0x9c,0x82,0x45,0xed,0x95,0x9e,0x17,0xb2,0xb6, + 0x2,0x8e,0x4f,0x9e,0x1e,0xec,0x1f,0x11,0xba,0x51,0x25,0x71,0x14,0x76,0x2d,0x7d, + 0xdd,0x7a,0x87,0xf5,0xb1,0x7c,0x44,0x84,0x31,0xa6,0x1d,0x63,0xca,0x2d,0x8f,0x34, + 0x32,0x78,0x42,0xc1,0xf3,0xbd,0x96,0x72,0x9e,0xab,0x9d,0xb3,0x68,0x2e,0xee,0xb3, + 0x28,0xcf,0x43,0x2b,0x1f,0x3e,0xf9,0x91,0x17,0x66,0xb0,0xb8,0x98,0x45,0x90,0xf4, + 0x56,0x6b,0xa3,0x50,0x51,0x50,0x22,0xbd,0xa7,0xb3,0xec,0x6c,0x75,0x29,0xfb,0xd5, + 0x41,0x71,0x6a,0x4e,0xc6,0x20,0x7e,0xe4,0x1e,0x22,0x78,0x88,0x61,0x70,0x8d,0xc7, + 0x12,0x64,0x73,0x16,0xe,0x18,0x9d,0x7,0x2b,0xfb,0x9c,0x10,0xc,0x31,0xd8,0x4, + 0x5b,0x57,0x74,0x22,0xfd,0x7c,0x2d,0x52,0x67,0xef,0x7b,0x9e,0xbc,0xbd,0x17,0x40, + 0xc6,0xed,0x3e,0x4e,0x95,0xfb,0x7d,0xdc,0x41,0x98,0x2,0x7a,0x59,0x86,0x20,0xb5, + 0x78,0x70,0xe,0xba,0xab,0x63,0xeb,0x5e,0x75,0x76,0xae,0x10,0x9,0xb5,0x9,0xff, + 0xa8,0xa5,0xe9,0xa8,0x41,0x2b,0xa0,0x70,0xb7,0x8d,0x68,0xfd,0x67,0xfe,0x7d,0xf8, + 0x1d,0x51,0xc4,0xd5,0xe9,0x26,0x6c,0xf6,0xb1,0xa6,0x4e,0x8,0x17,0xc1,0x9f,0x55, + 0x67,0xe9,0x25,0x89,0x27,0x9,0xca,0xc9,0xc,0x10,0x5c,0xc0,0xf0,0x50,0x91,0xd, + 0xe4,0x3a,0x99,0xc8,0x18,0xfc,0x78,0xc6,0x69,0xc5,0x3e,0x1b,0x4c,0xbf,0x73,0x85, + 0x1,0x45,0x61,0x24,0x51,0x67,0xfc,0xd4,0x9e,0xa5,0x1c,0x4b,0x8e,0xdc,0x72,0xc2, + 0x59,0xd0,0x6b,0xff,0x81,0x1e,0x4f,0x53,0x2a,0xc7,0xda,0xa2,0x83,0xf3,0xb6,0xb3, + 0xf7,0x84,0x5e,0xa2,0xdf,0x72,0x7,0xf3,0x3c,0xcf,0xda,0xf1,0xff,0xa3,0xe8,0x21, + 0x49,0x48,0xf3,0xdc,0x1,0xf1,0x19,0xd7,0x15,0x4c,0xc0,0x52,0x37,0x97,0x90,0x55, + 0x68,0xe6,0xde,0x5e,0x49,0x62,0x69,0x1e,0x81,0x35,0x19,0x3a,0x55,0xc2,0x13,0x12, + 0x31,0x86,0x51,0xc6,0xa3,0x9d,0x82,0x42,0xec,0x54,0x1e,0x84,0xe9,0x90,0x62,0xb1, + 0x87,0x53,0x85,0xc4,0x56,0xd1,0x9c,0xc3,0x43,0x1f,0x5f,0x27,0x60,0xae,0x3f,0x91, + 0x3a,0x42,0xa8,0x2d,0x5c,0x6e,0x67,0xb5,0x22,0x7b,0x16,0x3f,0x8,0x31,0x94,0x4e, + 0x9e,0x91,0x2d,0x13,0xcc,0xa6,0xf5,0xa8,0xf0,0x76,0xa6,0xb5,0x32,0xd4,0x1f,0x90, + 0x75,0x82,0x6e,0x7d,0x99,0xbe,0x50,0x46,0x27,0x6d,0xfe,0x52,0x39,0x75,0x78,0x13, + 0xd8,0x17,0x81,0x2b,0x18,0x70,0x73,0x2,0xf2,0x65,0x73,0xf0,0xbf,0x5e,0xf1,0x3e, + 0xbc,0x72,0x15,0x28,0xe0,0x26,0xcc,0x26,0xa7,0xf2,0x8b,0x82,0xd1,0x89,0x98,0x9f, + 0x1,0xc0,0x1a,0x52,0x37,0xb0,0x4c,0x10,0x19,0x7a,0xf0,0xbb,0xa7,0x6e,0x35,0x97, + 0xea,0x94,0xb2,0x9,0x8,0x5b,0x16,0xb9,0x0,0xf8,0xe4,0x3d,0xc4,0x2a,0xb9,0x8e, + 0xa4,0xa5,0xe5,0x50,0x11,0xa4,0xea,0xe3,0xfb,0xdf,0xe3,0x37,0x12,0x98,0x74,0xa6, + 0x9f,0xdb,0x28,0xdf,0x77,0x99,0xf5,0x82,0x69,0x30,0x7a,0x2e,0xff,0xce,0x6c,0xa2, + 0xb0,0xb4,0xea,0x89,0xaf,0x23,0x1d,0x9d,0xb9,0xf0,0xc3,0xf2,0xbe,0xa0,0xdf,0xd3, + 0x8,0x84,0x36,0xb9,0x49,0x91,0x4a,0xd,0xd2,0xfb,0x73,0x9d,0x36,0x14,0x4b,0x18, + 0x26,0xd3,0x3d,0xda,0x9,0xc3,0xc1,0xcb,0x5f,0x3c,0x19,0x18,0x95,0x16,0xe3,0xc3, + 0xc6,0x8c,0xb5,0xeb,0xfb,0xa8,0x5e,0x61,0x24,0xfa,0x97,0xfe,0xd4,0xc,0x36,0x4c, + 0x24,0xa7,0x8b,0xc9,0xcf,0x9b,0x4a,0x87,0xc2,0x78,0x39,0xc,0xe4,0x3d,0xa3,0xcd, + 0x4a,0x94,0x60,0xe2,0xa8,0x57,0x33,0x7f,0xc8,0x6c,0x1c,0xf5,0xdd,0xce,0xb5,0x6e, + 0xfe,0x8b,0x97,0x74,0x49,0x49,0x8b,0xfa,0x96,0x58,0xe7,0x75,0x68,0xb0,0xe2,0xf8, + 0x5c,0x38,0x39,0xe6,0x80,0x2c,0x12,0xb,0x60,0x34,0xdb,0x7e,0x26,0xc8,0x13,0x42, + 0x3b,0x8,0x9d,0x7e,0xa2,0xfa,0xa,0x5c,0x8f,0xcd,0x5a,0x18,0xbc,0xe3,0xf8,0xe3, + 0x41,0xb1,0x7a,0x0,0x21,0x41,0x8a,0x39,0x8a,0x7b,0xae,0xd1,0x70,0xe7,0x77,0x8e, + 0x4b,0xd3,0xcc,0x7,0x21,0xc2,0x1f,0xd0,0x34,0xeb,0xd2,0x75,0x3e,0xd2,0x95,0xc4, + 0xce,0x42,0x21,0x66,0xd,0x97,0xa8,0xc9,0x97,0x65,0x90,0xce,0x84,0xc0,0x9b,0xb3, + 0x4,0xdc,0x8d,0x6f,0xed,0xe4,0xb6,0x66,0x20,0x18,0x11,0x4c,0x2d,0x13,0x75,0x51, + 0xcc,0x8b,0x7d,0x5e,0xf3,0x97,0xdf,0xfb,0xe,0x9f,0x4d,0xb9,0xf0,0xe4,0xef,0x69, + 0x58,0x35,0x9,0x67,0xef,0xb7,0x34,0xcd,0xf5,0xc,0xb8,0x60,0xb8,0x16,0xc3,0x90, + 0xf5,0x93,0x5c,0xef,0xab,0x85,0xd9,0x4a,0xce,0x6b,0x1,0x46,0xc6,0xb2,0xb7,0x28, + 0x97,0xc7,0x71,0xa1,0xaf,0xf7,0x1e,0xe7,0x2f,0x4,0xf7,0xff,0x34,0x7b,0x8a,0x29, + 0xbe,0xe,0x2e,0x24,0x59,0x7d,0x54,0x66,0xa2,0x1d,0x86,0x42,0xac,0x4a,0x0,0x8f, + 0x2c,0x1e,0x59,0x72,0x1,0xf2,0xa7,0x9,0x87,0x67,0x80,0xa7,0x12,0x22,0x84,0x91, + 0xb6,0xf8,0xb9,0x6b,0x44,0xf2,0x8f,0x41,0x5,0x46,0x2,0x68,0x11,0x55,0x70,0x2b, + 0xaf,0xcb,0x26,0xc3,0xa1,0xcc,0x9d,0x5,0x7a,0xd2,0x22,0x1,0x37,0xf3,0x81,0x8a, + 0x1a,0xc2,0x98,0x84,0x55,0x1a,0xe0,0xeb,0xd2,0x5e,0xa2,0xc7,0xc9,0xaa,0x1a,0x5b, + 0xb5,0xc3,0x80,0xaa,0x54,0xa3,0xf1,0x34,0x73,0x82,0x7d,0xc6,0x5d,0x48,0xb5,0xcf, + 0xe8,0x24,0x3f,0x88,0x27,0xe1,0x63,0x62,0x15,0xa7,0x26,0x3e,0x70,0xb7,0x27,0xf0, + 0x3b,0xd3,0xe5,0x7d,0x22,0x1f,0x4,0xdb,0x1f,0x3d,0x7c,0x83,0xf,0x53,0x84,0x69, + 0xf2,0xd2,0xe1,0xc3,0x62,0xf7,0x5a,0x7e,0x8c,0xdc,0xf3,0x5e,0xc2,0x74,0x79,0x8d, + 0x94,0x3a,0x95,0x37,0xe8,0xfd,0x6b,0x52,0xd9,0xca,0x1d,0xbb,0xfd,0x2f,0xbd,0x6f, + 0xbf,0x63,0xdb,0x2,0xb3,0x1e,0xdf,0x43,0xc6,0x7a,0x49,0x72,0xbf,0xc7,0x51,0x46, + 0x2b,0x79,0x2f,0xda,0x96,0x4e,0x7c,0x22,0x66,0x96,0x29,0xbe,0x8e,0xce,0x5c,0xf4, + 0x1f,0xbf,0x4f,0x9e,0x8,0xc6,0x3d,0xa5,0xd9,0xdf,0xf1,0x21,0x6c,0x93,0x98,0xc9, + 0x2e,0xc0,0x62,0x10,0x9b,0xf1,0xda,0xf8,0xb0,0x9f,0x99,0x44,0x11,0x30,0xdb,0x57, + 0xbf,0x9b,0xec,0x1c,0x20,0x3b,0xc7,0x3d,0xbf,0xd0,0xf5,0xec,0xe0,0xe1,0x1c,0x15, + 0xf1,0x6b,0xdc,0xb1,0x35,0xe1,0xb,0x82,0x7e,0x26,0x51,0x39,0x85,0x1,0x52,0xa, + 0xde,0xde,0x13,0x16,0xe6,0x41,0xd4,0xa8,0xe7,0xe7,0xf7,0x8c,0x96,0x48,0x8,0xff, + 0xea,0xe8,0x70,0xc4,0x66,0x4d,0x4b,0xfc,0x24,0x12,0xa0,0x47,0xb9,0x6b,0xa3,0xbd, + 0xed,0xe9,0xb0,0x52,0xc2,0x80,0xf9,0xb6,0xf6,0xa4,0x40,0x76,0xea,0x54,0x85,0xe8, + 0x42,0x9e,0xde,0x37,0xa1,0xcb,0xdc,0xdc,0x4d,0xf6,0x15,0xd3,0xd7,0xaa,0xf6,0xfa, + 0x54,0x75,0xf3,0x51,0x75,0x5,0x48,0x9e,0x48,0xc,0x94,0x64,0x12,0x35,0xf6,0xc4, + 0x3c,0x3d,0x4f,0xb5,0x17,0xca,0x94,0xf3,0x33,0x8f,0x1b,0xd7,0xd6,0x2e,0x3b,0xd7, + 0x2a,0x50,0x3,0xa7,0xf3,0x76,0xef,0xeb,0xdb,0x40,0xb6,0x16,0x6a,0xe7,0x4a,0x23, + 0x59,0xb,0xcd,0x35,0xc4,0x21,0xcd,0x4f,0x49,0x40,0x4,0xfb,0x3a,0x82,0xab,0x67, + 0x34,0x10,0xba,0x8c,0x34,0x64,0x63,0x6a,0xf2,0xd5,0xa6,0xf8,0xc0,0x6,0x87,0x92, + 0x0,0x5f,0xcf,0x3b,0x60,0x99,0x17,0x6b,0x1e,0x35,0x3c,0x84,0x7f,0x49,0xd6,0x3f, + 0x96,0x85,0xff,0x74,0x17,0xce,0x8e,0x6f,0x93,0x3f,0xdf,0x9e,0x3a,0x92,0x6c,0xdf, + 0x1d,0x15,0x5e,0x2b,0x32,0x74,0x6a,0xfd,0xde,0x75,0xa1,0xa,0xbc,0x88,0x28,0x63, + 0xbd,0x72,0x37,0x85,0xa3,0x2c,0x8,0x5b,0x5c,0x7f,0xa1,0x71,0xa4,0x4e,0x40,0xb7, + 0x47,0xfa,0xd6,0xbb,0x9e,0x1e,0x57,0xfa,0xf5,0xa6,0xf7,0x21,0x9,0xb1,0x47,0xb3, + 0xb8,0x23,0xd9,0x80,0x65,0x5e,0x7f,0xec,0x7d,0xed,0xaa,0xd1,0x5c,0xbe,0x22,0x88, + 0x5e,0xcc,0xa3,0x8c,0x6b,0xc,0x73,0x8d,0x61,0x26,0xf2,0xf3,0xcd,0x6c,0xf3,0xc1, + 0x3c,0xf6,0x1d,0x8b,0xf,0x21,0x5b,0x97,0x20,0xfa,0x9c,0x15,0xd,0xb9,0x5e,0x3f, + 0xd3,0x62,0xbe,0xb,0x50,0x4f,0x3c,0xc3,0xb0,0x40,0x7e,0xd,0x45,0x21,0x86,0xd8, + 0xa4,0xe,0x3f,0xfb,0x93,0xdc,0x69,0x42,0xa7,0x39,0x45,0x32,0xeb,0x85,0x7b,0xb4, + 0x87,0x6b,0xcf,0x2f,0xe8,0x88,0xfb,0x1,0x29,0xff,0x55,0xe4,0xc5,0x25,0x3,0x3a, + 0xe6,0x5e,0x47,0x1f,0x14,0x7c,0x95,0x13,0xbd,0x13,0xff,0x10,0xc4,0xec,0xa9,0x41, + 0x58,0x87,0x27,0xfa,0x10,0xf8,0xfd,0x1d,0xf9,0x6d,0x71,0x30,0xea,0x74,0xf0,0x9c, + 0xc7,0xfc,0xf1,0x6,0x8e,0xad,0xcb,0x4f,0xcb,0xe4,0x17,0x82,0x62,0x47,0x22,0x8f, + 0xa3,0xf5,0xbd,0xfa,0xbd,0xe8,0x0,0x8f,0x51,0x34,0xed,0xab,0xc,0xdb,0xfc,0x62, + 0xef,0xa2,0xb0,0x61,0x95,0xe9,0xfa,0xfd,0x27,0xa,0x3f,0x46,0xf5,0x3,0xce,0xd9, + 0xc3,0xdc,0xa7,0x42,0x8b,0x24,0x24,0x2,0xc5,0x3c,0xd5,0xa8,0x54,0xaa,0x5,0x9b, + 0xc6,0x6d,0xb3,0x17,0x1d,0x29,0xb7,0xb9,0x8a,0xcb,0xf3,0x5b,0x55,0x7c,0xd9,0xf4, + 0x80,0xf9,0xa8,0x5a,0x4c,0xf6,0xe0,0x33,0xf,0xbf,0x6f,0x9b,0x7c,0x7,0xeb,0x98, + 0x79,0x45,0x99,0x71,0x21,0x8d,0xc1,0x72,0xde,0x66,0x36,0x26,0x32,0x3f,0x8,0xac, + 0x67,0x5f,0xc7,0xd5,0xae,0x18,0x2,0xe4,0xe1,0x5c,0xeb,0xbf,0xd5,0x5f,0x98,0x70, + 0x9e,0x61,0xc8,0xab,0x11,0xfe,0x28,0xfc,0x5b,0x1,0x85,0x86,0xc9,0x50,0x62,0xbc, + 0x96,0x31,0x3b,0x8d,0xba,0xf4,0x38,0xf4,0x9c,0xdb,0x75,0xac,0x1,0x53,0x70,0xb7, + 0xa9,0x31,0x34,0x9b,0x4a,0x5e,0xd4,0xbd,0x95,0xce,0xf1,0x83,0x62,0x1f,0x61,0x4b, + 0x41,0x21,0x54,0x93,0x71,0x6f,0xa8,0xc6,0xa3,0x3e,0xf1,0xef,0xf3,0x80,0x6c,0x94, + 0xa0,0x98,0x96,0xb2,0x2f,0x7f,0x8d,0xd8,0x4e,0xed,0x44,0x4d,0x14,0xa,0x85,0x9a, + 0x23,0xec,0xf,0x73,0x55,0xd,0xa6,0xe0,0x19,0xc7,0xc,0x59,0x5c,0x64,0x2c,0x64, + 0x5b,0xdd,0xab,0xd5,0x52,0xb2,0x98,0xfa,0x2f,0x39,0xa4,0x9,0xe3,0xac,0x8e,0x24, + 0xc,0x22,0x2d,0x4a,0xd5,0xf2,0xcd,0xff,0x6d,0x7d,0x28,0x63,0x71,0xdb,0x91,0x8f, + 0xcf,0xda,0xa0,0x36,0xc1,0xb9,0x9c,0x37,0xfa,0xe1,0x21,0x7f,0x9e,0xd,0xd2,0xab, + 0x90,0x4a,0xf9,0x91,0x6,0x1e,0xff,0x48,0xb4,0x9,0x4d,0x25,0xcf,0x5b,0x68,0x31, + 0xa1,0xc4,0x91,0xe6,0x46,0x48,0xe2,0x69,0xb2,0x38,0x62,0x9,0x3b,0xa1,0x1e,0x46, + 0x33,0x33,0xb3,0x3d,0xb5,0xa0,0xfd,0xb2,0x23,0x9d,0x48,0x89,0x90,0xd0,0xef,0x32, + 0xaf,0x9c,0x96,0x59,0x25,0xb,0x53,0xfe,0x75,0xfc,0xdf,0xe6,0x8c,0xd5,0x75,0xf3, + 0x78,0x70,0xa3,0xc,0x42,0x60,0x19,0xb4,0xc4,0x36,0x25,0x5b,0xb3,0x2a,0x97,0xb6, + 0x59,0xb,0x14,0x49,0xa6,0x9d,0xe3,0xde,0xab,0x2e,0x18,0x92,0x79,0x15,0x0,0xd9, + 0x61,0x4,0xdb,0xed,0x94,0xeb,0x86,0x8d,0x97,0xbb,0xc0,0xe8,0x67,0xc9,0xa5,0x81, + 0xc7,0x88,0xc7,0xda,0xde,0xdf,0x13,0xeb,0x57,0x55,0x3f,0xf5,0xf6,0x27,0xa9,0x3c, + 0xbf,0x6,0x41,0xb1,0x7a,0x9b,0x35,0x8c,0xbc,0xa8,0xd1,0x7,0x65,0x85,0x17,0xcf, + 0xd9,0x1e,0x40,0x85,0x42,0xee,0xbd,0x3a,0x7c,0x14,0xee,0x14,0x8b,0xd4,0x71,0x11, + 0x57,0xa6,0x92,0xee,0xd8,0xe8,0x3f,0x7d,0xf8,0xb6,0xe7,0x8f,0x84,0x27,0xb7,0x62, + 0x5f,0x5d,0x7e,0xbc,0xfd,0x36,0x35,0xa2,0x2a,0x99,0x3a,0xe3,0x9e,0x48,0x2d,0x3f, + 0x66,0xec,0x8a,0xdb,0xf8,0xf4,0x7a,0xa3,0x14,0x8e,0x2e,0xe7,0xc1,0x48,0xf0,0x97, + 0x59,0xf2,0x61,0x93,0xc0,0x57,0x1a,0x35,0xf6,0xd3,0x1a,0xb3,0x3c,0xc6,0xad,0xc5, + 0xf3,0x5c,0x29,0x4c,0x94,0xca,0x32,0xa8,0xee,0x48,0x9,0xf2,0xdd,0x50,0xc,0x4b, + 0xc2,0x14,0xdd,0xed,0x1e,0xbf,0x2d,0x23,0x28,0x4a,0xcf,0x3f,0x80,0x7b,0xaa,0x89, + 0xe3,0x25,0x4d,0x35,0xbd,0x25,0xa,0xc9,0x14,0x85,0x4,0x97,0xbe,0xe2,0x33,0x5a, + 0xb2,0xe8,0xe9,0xd9,0x1c,0x8b,0x54,0x4e,0x65,0x18,0x72,0x4,0xd5,0x58,0xbd,0x60, + 0xe9,0xf3,0x4,0xbd,0x20,0xc4,0x23,0x89,0xde,0x1f,0x16,0x1b,0x8d,0xab,0x4c,0x87, + 0xc1,0xc1,0xa1,0x7e,0xb9,0xc8,0x0,0x23,0xdc,0xd0,0xc,0x22,0xfa,0xa2,0x7e,0xe2, + 0x7a,0x9b,0xef,0x59,0x6b,0xf6,0x4c,0x79,0x60,0xc2,0x8,0x60,0x76,0x4e,0xc1,0x63, + 0x69,0x78,0x7a,0xa1,0xd6,0x62,0x70,0xf,0x58,0x50,0x2b,0xfd,0xac,0x3c,0xf7,0xfe, + 0xb1,0xfc,0xca,0x9e,0x3f,0x7e,0x6e,0xe1,0x2f,0x86,0x2f,0xd,0x3c,0xd,0x70,0xfb, + 0x20,0x51,0xc7,0x56,0x7a,0xee,0xc1,0x7a,0xcc,0xa7,0xe6,0x91,0xd4,0xf1,0xd,0xfb, + 0x61,0x16,0xb5,0xdd,0x8c,0x2e,0x58,0x93,0x95,0x95,0x1e,0x7a,0xfa,0xd4,0x63,0xc1, + 0x57,0xbc,0x61,0x5e,0xdb,0xb4,0x8a,0xb8,0xc5,0xa7,0x53,0xb0,0x85,0x8e,0x8d,0x30, + 0x2,0x59,0x32,0x8a,0xd7,0x96,0xa8,0xdd,0xa2,0x72,0x8f,0xdd,0x89,0x41,0xcd,0x33, + 0xfc,0xdc,0x52,0x5d,0x13,0xdf,0xc8,0x5f,0x92,0xd7,0x46,0x6,0x8d,0x76,0x1f,0x12, + 0x88,0x7b,0x46,0x5d,0x85,0x3a,0xef,0x54,0x81,0xe5,0x10,0xd9,0xce,0xe8,0x72,0xe4, + 0x4f,0xd3,0x92,0x35,0x1e,0x3d,0x33,0xa1,0x6e,0xb6,0x6e,0x42,0x80,0x25,0x9c,0x55, + 0x39,0x8c,0x13,0x1f,0xd6,0x8a,0xf3,0x21,0x90,0xe4,0x77,0x1b,0x16,0x15,0x16,0xc7, + 0x57,0xb0,0x3b,0x51,0xc8,0xc9,0xc3,0xb1,0xe8,0x69,0xff,0x10,0xac,0x9a,0x81,0x8, + 0xa,0xd7,0x1c,0x63,0xcc,0x18,0xb0,0xd6,0xc6,0x40,0x5e,0x36,0xae,0x3c,0xf2,0x1f, + 0x6d,0x30,0x93,0x10,0x46,0xf8,0x98,0x41,0xf5,0xbb,0xd7,0x4a,0xb0,0xb,0xf9,0xf9, + 0x34,0xfa,0x45,0x9f,0xbd,0x52,0x30,0x12,0x76,0x32,0xf1,0x50,0x7d,0x16,0x25,0xf4, + 0xab,0xe1,0xf8,0xe5,0x52,0x70,0x8d,0x3d,0x25,0xfa,0x3d,0x9,0xc9,0xb9,0x86,0xa8, + 0x3c,0xc3,0xf9,0xa2,0x7d,0xf5,0xc2,0xb0,0x20,0x60,0xa3,0xb1,0x8c,0xf3,0xce,0x19, + 0x36,0xd9,0x6d,0xbd,0xad,0x7e,0xdb,0x50,0xf7,0x44,0xaa,0x40,0xf5,0x68,0xe2,0xe3, + 0x17,0x23,0xdb,0x45,0x1d,0xf9,0x3a,0x8c,0x1f,0xcb,0x56,0x53,0xa6,0x6b,0xba,0x84, + 0xe7,0x6b,0x97,0xe8,0x43,0xc1,0xdf,0x87,0x34,0x87,0x89,0x35,0x2d,0xcd,0xd1,0x3a, + 0x9f,0x7d,0xb1,0xd1,0xa8,0xbd,0xaf,0x3b,0x33,0x70,0x54,0xa1,0x59,0x61,0x5b,0xee, + 0xa6,0xb8,0x33,0x8e,0x23,0xad,0xbb,0xc3,0x4e,0x73,0x16,0x5f,0xe1,0x7b,0xb1,0x69, + 0xa4,0x45,0x89,0x46,0x21,0xfe,0x3d,0xfa,0x61,0xb2,0xe9,0xf8,0x1,0x9f,0x6e,0x6f, + 0x8f,0xa7,0xec,0x80,0xc2,0x28,0x22,0x76,0xcf,0x3b,0xcb,0x3,0x7d,0x79,0x31,0x59, + 0xb0,0x54,0x5e,0x6b,0x1b,0x43,0x21,0xf7,0xe9,0xa4,0x10,0xb,0x21,0x3b,0x79,0xbf, + 0x6a,0x0,0x2b,0xe4,0xa2,0xa,0x8b,0x72,0xb3,0xe3,0xc3,0xb,0x8,0x16,0x25,0xd3, + 0xcb,0xc0,0x12,0x3e,0x24,0xf0,0xd,0xcc,0x6c,0xea,0x39,0xfa,0x2c,0xcc,0x7b,0x26, + 0xd5,0x1,0xc4,0x10,0xc1,0xa4,0xf8,0x92,0x36,0x79,0x3d,0xb,0x92,0xb8,0xf0,0x7b, + 0x8,0x8b,0xb4,0x8a,0x3e,0x14,0x62,0x8,0xbc,0xa,0x7d,0x4b,0x12,0xce,0xe2,0x60, + 0x49,0xc7,0x5b,0x4b,0x2d,0x1b,0x22,0x7a,0xe7,0xf4,0x4a,0x7,0xb0,0xa2,0x94,0x32, + 0x8b,0x0,0x16,0x9d,0xb5,0xee,0xd6,0x49,0x50,0xbb,0x87,0xcd,0x53,0x63,0x57,0x47, + 0xc5,0x9e,0x2b,0xc6,0xd,0x7e,0xb,0xfc,0x59,0x5f,0x94,0x46,0xd9,0x9e,0x61,0x2, + 0x43,0x7c,0x72,0xdc,0xce,0xda,0x25,0x57,0x8d,0xcc,0xe1,0x90,0xe7,0x65,0xc5,0xc3, + 0xce,0x82,0xdd,0xb3,0xb7,0x7d,0x83,0x44,0xc4,0x6b,0x10,0x98,0x28,0x2b,0x95,0xd9, + 0xb0,0xf3,0x17,0xca,0x8d,0x44,0x17,0x3d,0xe3,0x7a,0xeb,0x1b,0x97,0xbd,0x97,0x72, + 0xbe,0xe7,0x93,0x3f,0xc3,0x9f,0x8f,0xd4,0xef,0xfb,0xa1,0x6e,0xa,0x9d,0x74,0xc, + 0xbc,0xc,0xf2,0x62,0xb5,0xa,0xf0,0x59,0xbe,0x43,0x8d,0x51,0xad,0xc1,0x97,0x83, + 0xc2,0x93,0xbf,0xea,0x29,0x27,0x91,0x4f,0xd3,0x27,0x50,0x33,0xdd,0xc5,0x9f,0x13, + 0x30,0x2e,0x6e,0x7f,0x56,0xbf,0x3c,0xfe,0x6d,0x82,0x96,0xa8,0x31,0xe3,0xa3,0xec, + 0x2b,0xab,0xb5,0xb0,0xd9,0xc2,0xda,0x9e,0x98,0x7f,0xa,0x57,0xe5,0xcd,0xf5,0x7a, + 0xdc,0x3b,0xe4,0x2c,0xe8,0x4e,0x36,0x1f,0x10,0x7c,0xcf,0xec,0xc0,0x6f,0xf5,0x30, + 0x70,0x79,0x95,0x79,0x50,0x4,0x6b,0x35,0xa1,0xdd,0x7d,0xa8,0xcf,0xd3,0x9c,0x83, + 0x1f,0x77,0x9c,0x8f,0x7c,0x99,0xfa,0xd7,0x65,0x22,0x1c,0x76,0xe2,0x6e,0x10,0x8d, + 0x36,0x41,0xfe,0x44,0x5a,0x34,0x13,0xa4,0x21,0x73,0x45,0xaf,0x55,0x3f,0x9a,0xdb, + 0x83,0xc5,0xc2,0xc3,0x65,0xa6,0x9c,0x5d,0x2f,0xe9,0x20,0xf8,0x6f,0xfd,0x4a,0xd9, + 0xe2,0xe7,0xb2,0x76,0xd6,0x2f,0x76,0x9b,0xfc,0x13,0xd0,0x17,0xb0,0x73,0xa9,0x3b, + 0x5,0x9d,0x58,0x4a,0xf,0x9e,0xbb,0x86,0x2d,0xff,0xaf,0x36,0xb2,0xcd,0xd6,0x31, + 0x49,0x5e,0x23,0xe,0x99,0xc7,0x63,0xd7,0xec,0xdb,0xbc,0x98,0x17,0x7,0xf2,0x34, + 0xcf,0x77,0xb2,0x1e,0x5a,0x6e,0x49,0xdf,0xbf,0xf0,0xdb,0x98,0xc6,0xba,0xb8,0xf0, + 0x9c,0x9b,0xf8,0x99,0x61,0x4a,0xdc,0xf0,0x7e,0x7b,0x57,0x94,0x8c,0x6c,0xc3,0x81, + 0x36,0xa5,0x7c,0x8a,0x37,0x3c,0xca,0x2e,0x30,0x6c,0xb7,0x14,0xee,0x10,0x63,0x44, + 0xf0,0xf1,0xc6,0xa6,0x1a,0x3,0x8c,0xab,0xff,0x81,0x2a,0x31,0xe4,0x6e,0x10,0x7f, + 0x26,0x19,0xb9,0xf2,0x4c,0x34,0xa6,0x8b,0xc8,0x9d,0x78,0x16,0xd5,0xc1,0x63,0xc, + 0x48,0x92,0x51,0x81,0xb5,0x71,0xd7,0x54,0x14,0x9,0x4a,0xdb,0xa5,0xae,0xd8,0x7b, + 0x9d,0x77,0xb1,0x10,0xdf,0x35,0x9,0xcf,0x6,0x9d,0x40,0x80,0xcf,0x8b,0x8a,0x63, + 0x3b,0x93,0x9b,0xf1,0xa,0x4,0x31,0x45,0x8,0xfe,0xe7,0x18,0xc,0xa7,0x9e,0x1a, + 0x4f,0x69,0xa,0x9a,0x8a,0x10,0xa3,0xb0,0x10,0xd3,0x9f,0xaf,0xa6,0x6b,0x25,0xe2, + 0x75,0xbb,0xbe,0x54,0xb2,0xd,0x45,0x9f,0x17,0xb6,0x21,0x8b,0xd6,0x8e,0x15,0xd0, + 0x42,0x48,0x4f,0x61,0x3,0x59,0x9b,0x23,0x19,0x71,0x4f,0xfd,0xb6,0xc,0x42,0xce, + 0xf3,0x7b,0xee,0xb7,0xb6,0x28,0xa7,0x5f,0x9f,0x7a,0x6,0x7,0x23,0x3e,0xb5,0x9d, + 0x44,0x89,0x99,0xe5,0x9e,0xb5,0x2b,0x26,0xe,0xb3,0x10,0x10,0xbf,0x8d,0x0,0xc2, + 0xdc,0x5d,0xb0,0xd2,0xb6,0xe8,0x85,0xeb,0xdf,0xa7,0xfc,0xb0,0x1c,0x13,0x77,0x89, + 0xe6,0xf,0x66,0x3c,0x22,0x9e,0xcf,0x8f,0x81,0xfb,0x4d,0x16,0xa9,0xe,0xf3,0x1a, + 0x5,0xfb,0x27,0x79,0xd1,0xbd,0xbb,0xd8,0xb7,0x2f,0x75,0xc4,0x67,0x5c,0x63,0x18, + 0xab,0xd3,0x6f,0x71,0xe4,0x2a,0x9b,0x61,0xa7,0x44,0x4a,0x62,0x13,0xce,0x94,0x20, + 0xa9,0x93,0xbd,0xeb,0xe6,0xd2,0x70,0x70,0xa4,0xd,0xa0,0x39,0x8a,0xb9,0x42,0x1a, + 0x24,0x75,0x6f,0xbf,0x8a,0xa,0x8c,0xc9,0x9e,0x38,0x48,0x58,0xed,0x38,0xca,0x58, + 0xfe,0x65,0x65,0x11,0x8d,0x77,0x31,0xef,0x5,0xc2,0x36,0x38,0x92,0x72,0x46,0x3, + 0xd8,0x3a,0x4d,0xb2,0x3e,0x83,0x7b,0x66,0x6e,0x11,0x55,0x4e,0x70,0xdd,0x3b,0x7b, + 0xc6,0xbc,0x84,0xb7,0xa0,0x1a,0x9f,0xb,0xa5,0xdb,0xb1,0x9f,0x3c,0xc5,0xc,0xf7, + 0x13,0xc,0xb6,0x7f,0x4a,0x7f,0x3b,0x35,0x34,0x61,0x7f,0x48,0xe0,0x93,0xbf,0xae, + 0xf9,0x1d,0x8a,0x98,0xaf,0x7b,0xb6,0x13,0x2d,0xbc,0xe2,0x3a,0xcb,0x14,0x3,0xe8, + 0x1e,0xef,0xbe,0xaf,0xc1,0xd3,0x6b,0xc1,0xde,0xa,0x4a,0xf2,0xfc,0xb8,0xd5,0x64, + 0xe6,0x4a,0x2b,0x82,0x88,0xfd,0x85,0xb1,0x48,0xa2,0xc4,0x11,0x7,0x8b,0xcc,0x4c, + 0x49,0xbe,0xa9,0xf7,0x77,0x2e,0x7b,0x60,0x60,0x7e,0xd8,0xac,0xe8,0x91,0x0,0x38, + 0xde,0x73,0x7e,0x9b,0x7e,0xb6,0xf3,0xd0,0xed,0xb1,0x19,0xd3,0x1,0xce,0xcb,0x32, + 0x19,0x30,0xc0,0xc,0xeb,0x70,0x79,0xa4,0x7,0xf4,0xa3,0xfd,0x33,0xec,0x40,0x9b, + 0x12,0x1f,0xc3,0x43,0x7d,0x92,0xd,0x54,0x4d,0x2,0xcb,0x14,0xf2,0x7c,0xa0,0x73, + 0x8f,0x6a,0x8a,0xfb,0x73,0x4e,0xaf,0x55,0x83,0xe6,0xb8,0x5d,0x22,0x43,0x8c,0xce, + 0x82,0x3e,0x31,0x63,0xe1,0x86,0x57,0x9b,0x67,0x18,0xa,0xd8,0xfe,0x70,0x5a,0x27, + 0xaa,0x9,0x7c,0xb0,0x3a,0x7b,0xe9,0x71,0x57,0x3c,0xed,0x2b,0x2c,0x75,0x2,0xd0, + 0x3d,0x7e,0xce,0x35,0xc5,0x57,0xb5,0xb0,0x48,0xab,0xf7,0x18,0xd2,0x9f,0xef,0xc3, + 0xf1,0x2b,0x7c,0x60,0x3b,0xec,0x93,0x84,0xa1,0x73,0x79,0x21,0x68,0x2,0x3b,0xc2, + 0xca,0xdb,0xda,0xec,0x9e,0x41,0x7b,0x13,0xee,0xa1,0xa4,0xa1,0xfe,0x2e,0x91,0x42, + 0xe6,0xe6,0x95,0x50,0x54,0x6a,0xfe,0x32,0x12,0x68,0x14,0x8f,0xe8,0x8e,0xe3,0x7f, + 0x30,0xbf,0xd,0x3f,0x1a,0x43,0x2d,0xe4,0xee,0xa2,0x5b,0x1b,0xba,0x29,0x81,0xbf, + 0xb2,0xad,0xc3,0x44,0x69,0x4f,0x0,0x37,0x42,0xb,0x1a,0xdf,0xeb,0x95,0xd8,0x86, + 0x4f,0x7e,0xca,0xdc,0x9e,0xf2,0xc6,0x2,0xe6,0x65,0x1,0xbb,0xb2,0xe5,0x8d,0x25, + 0x34,0xea,0x24,0xa9,0xc9,0x14,0x2f,0xc4,0x68,0x3b,0xa6,0x18,0xa6,0x22,0xa3,0xdd, + 0xf3,0xff,0xd6,0xbe,0x1f,0xd,0xf0,0x22,0xe7,0xeb,0x82,0x29,0xef,0xb7,0xcf,0xbd, + 0xdd,0x64,0x9,0xe6,0xcf,0x7c,0x81,0x16,0x5a,0x44,0x1e,0x6b,0x88,0xd,0xa7,0xc0, + 0xbf,0xb3,0x9,0x5e,0xd1,0xed,0x14,0xc9,0x55,0x53,0x1b,0xd7,0x8c,0x42,0xba,0xcb, + 0x1d,0xa9,0x5,0x68,0xfa,0x40,0xd7,0x11,0x6f,0x39,0x19,0x0,0xe2,0x87,0xd9,0xfc, + 0xd0,0xe2,0x89,0x65,0xe5,0xd8,0x74,0x9d,0xb7,0xbe,0xf1,0x79,0x17,0x31,0xc4,0x6, + 0xd0,0xdd,0xc7,0x58,0x55,0x79,0xc9,0x9b,0x73,0x4f,0xa9,0x7f,0x73,0xed,0x1e,0xa9, + 0x3d,0xfc,0x40,0x60,0x63,0x7d,0x7d,0x3d,0xbe,0x45,0x37,0xf8,0x65,0xb8,0xc0,0xe4, + 0xb3,0xba,0x0,0x6,0xe1,0x18,0x99,0x25,0x3b,0x64,0xb4,0x18,0xa9,0xea,0x95,0xe3, + 0x45,0xa9,0x7,0x73,0xe0,0xf7,0x44,0x3e,0x7a,0x41,0x2a,0xd1,0xa7,0xc9,0xf3,0xa8, + 0xf6,0xa2,0xed,0xc5,0x8,0xf5,0xc0,0x4a,0xf2,0x96,0x38,0xc3,0xd3,0xd1,0xc0,0x4e, + 0x42,0xfe,0x32,0xb,0x44,0xc0,0x15,0xd2,0xf8,0xc,0x87,0xfd,0xa9,0xf7,0x80,0xaa, + 0xf9,0x95,0xf6,0x1e,0x5f,0xa7,0xa4,0x13,0x17,0x37,0x72,0x48,0xf1,0x82,0x27,0x9, + 0x6e,0x9b,0x50,0x2b,0x2f,0x7b,0x75,0x20,0x14,0xee,0x52,0x36,0x52,0xde,0x10,0x8b, + 0xb8,0xdb,0xb0,0xe,0xe1,0x5b,0xf7,0x8f,0x66,0x1d,0xf7,0x55,0xa2,0x4d,0x9d,0xcc, + 0x5a,0x13,0xba,0x6b,0xfc,0x1e,0x6,0x63,0x64,0x7a,0xd8,0x3a,0x6,0x1f,0x1e,0xf, + 0x9b,0xea,0x23,0xee,0x74,0x9f,0x22,0x43,0x3b,0xca,0x7b,0x98,0xa5,0x1e,0x90,0xfd, + 0x3f,0x4d,0x6f,0x5f,0xfa,0x11,0x9a,0x70,0xe8,0x1,0x51,0x37,0xcf,0x39,0x95,0x58, + 0x16,0x80,0x59,0x72,0xb3,0x47,0xc3,0x7f,0xbf,0x8f,0x88,0x5d,0xb3,0x20,0xa8,0x8a, + 0x4a,0x54,0x27,0xfa,0xd5,0xd4,0x46,0xb9,0xf0,0x43,0x25,0xd3,0x85,0xa4,0xec,0xcd, + 0x11,0x6d,0xec,0x6c,0x4b,0x63,0x84,0xda,0x32,0x13,0x1a,0xf5,0xd9,0xdc,0xc0,0xe6, + 0x1d,0xdc,0xed,0xf4,0xfb,0x74,0x65,0x83,0x3,0xa4,0x6c,0x58,0xb8,0xe2,0x43,0x8a, + 0xff,0x35,0x4e,0x97,0x30,0x9e,0x73,0x1,0x5,0xd3,0x1b,0xc0,0xc7,0xe4,0x28,0x6b, + 0x63,0x58,0x5c,0x1f,0xba,0x95,0x5d,0xf2,0x14,0x6f,0xb2,0x20,0xf4,0x38,0x71,0x58, + 0x6d,0x9c,0x42,0x70,0x30,0xdf,0xe9,0xf2,0x19,0xf,0x60,0x4,0xc5,0x64,0x49,0xeb, + 0x51,0x76,0x3c,0x1c,0x9a,0x45,0x9d,0x21,0x27,0x22,0xbf,0x44,0x94,0xb0,0x7,0x7b, + 0xe6,0x65,0xd,0x13,0x91,0x79,0x78,0xdf,0x75,0xdf,0xce,0x78,0xfc,0xb0,0xbc,0x6d, + 0x74,0x71,0x2,0xbc,0x89,0xb2,0xf2,0xcc,0xda,0xa,0xbf,0x5d,0x11,0xc8,0xbd,0xc5, + 0x8b,0x4a,0xb2,0x9e,0x7f,0x96,0x34,0x2c,0x9a,0x57,0xb1,0x1a,0x3d,0x92,0x63,0x3d, + 0x5b,0xbf,0xfd,0x4,0x2,0x9d,0xe6,0x2a,0x8a,0x47,0x2c,0x8e,0xd3,0xab,0xea,0xaf, + 0x2e,0x15,0x66,0x10,0x99,0xba,0x3d,0x93,0xc,0x1c,0xa4,0xbb,0x85,0x7e,0x45,0xff, + 0xed,0x1c,0xda,0x97,0x3e,0x77,0xc3,0x75,0x12,0x15,0x8d,0x8e,0xc7,0x1d,0xe2,0x6c, + 0xd7,0x3,0xb6,0x68,0xca,0xa3,0xdd,0x7d,0xe9,0x6,0x99,0xe6,0x5b,0x2c,0x70,0x58, + 0xc5,0xdb,0xf9,0x8b,0xbb,0x89,0xaf,0x77,0x8e,0x4a,0x2e,0x8e,0x24,0x43,0x61,0x49, + 0xc8,0xfb,0x3f,0x99,0x97,0x1f,0x3e,0x1c,0xaf,0x95,0x19,0x71,0x24,0xc1,0x8f,0x44, + 0x37,0xf7,0xc8,0x5f,0xc6,0xac,0xfa,0x1f,0x77,0x8a,0xd9,0x37,0x52,0xa5,0xdd,0x1d, + 0x6b,0x36,0x51,0x85,0xf4,0xbb,0xbc,0xc5,0x35,0x2b,0x73,0x59,0xd4,0x3,0x5b,0x2a, + 0xa4,0xeb,0x7b,0x3,0xba,0x42,0x18,0x11,0x60,0xfe,0xac,0xfb,0x3b,0x47,0x3a,0x2b, + 0xea,0xcf,0xca,0xb4,0x7d,0x4c,0x69,0x23,0x7d,0xfb,0x5b,0xdf,0x98,0x89,0xe,0xdb, + 0xba,0xa6,0x62,0xfe,0x50,0xca,0xe5,0xbf,0x7c,0xab,0x8a,0x80,0x32,0x30,0x4c,0x3f, + 0x81,0x1c,0x7d,0xb8,0x68,0xf8,0x3b,0xdc,0xb4,0x7b,0x45,0xe9,0x77,0x33,0xa9,0x22, + 0xb3,0x39,0x16,0xd6,0xfe,0x8,0x7d,0xd2,0x7e,0x65,0x49,0xe2,0x9a,0xf2,0xc6,0x86, + 0x27,0x5d,0xd5,0xea,0xba,0xb5,0x60,0x31,0xcd,0x2,0xc9,0xae,0x21,0x20,0xe9,0xaf, + 0xc,0x70,0xc6,0xb1,0x2d,0x4,0xc6,0xbc,0x94,0x35,0x14,0x18,0x9b,0xfa,0x8a,0xd9, + 0x13,0xaa,0xae,0xbc,0xd7,0x63,0x67,0xc0,0x7e,0x3b,0x7f,0x24,0xc5,0x79,0x22,0xe7, + 0x95,0xc7,0x1e,0x2c,0xe1,0x32,0x6c,0x1a,0xc7,0xe1,0x23,0x8,0x8b,0xc2,0xb3,0xf7, + 0x6,0x98,0x37,0xd6,0x9d,0xbf,0x38,0x72,0xbf,0xe9,0x40,0x40,0x86,0xe5,0x92,0xdc, + 0x73,0x87,0x92,0x8c,0x9,0x99,0x7e,0xa4,0x51,0xe5,0x52,0xd5,0xd1,0xca,0x2c,0xf2, + 0xd9,0xe5,0x90,0x86,0x8b,0x89,0xf1,0xaf,0x35,0x1e,0xd3,0x18,0xe1,0x63,0x29,0xb, + 0xed,0xbe,0x37,0xda,0x37,0x69,0x57,0x27,0xcd,0xe5,0x60,0xde,0xcd,0x43,0x9b,0xdf, + 0xc2,0xd1,0xc3,0x1a,0x7b,0xc7,0x9c,0x53,0x8f,0x74,0x93,0xe6,0x5,0x37,0xa3,0x60, + 0xe3,0x4e,0x61,0xf6,0xc4,0x7c,0xb5,0xc5,0x6f,0x93,0xbe,0xba,0xe0,0xe0,0xc7,0x57, + 0xbe,0xbb,0x68,0x97,0x73,0xc,0xde,0x34,0xa3,0x3d,0x68,0x70,0x25,0xea,0xd4,0xe6, + 0x91,0xb6,0x8b,0xbb,0xed,0x6c,0x8a,0x91,0x86,0xa3,0xc,0x7b,0x8e,0x85,0x3f,0x4, + 0x47,0x73,0xec,0x57,0x6c,0x97,0xc2,0x8b,0xef,0xa6,0x7,0x99,0x4d,0xa6,0xbf,0x0, + 0x1c,0x5f,0x3e,0xd2,0x45,0x0,0x5c,0xa1,0x1f,0xf6,0x22,0xfb,0xf7,0xaf,0xfd,0xc, + 0xb3,0x13,0x30,0x5c,0x26,0x13,0xa3,0x58,0x9c,0x6a,0x42,0x49,0x48,0xd9,0x76,0x8a, + 0x29,0x30,0xdf,0x75,0x18,0xbd,0x82,0x52,0xc8,0xcc,0xbb,0xb9,0x2c,0x42,0xf7,0x3b, + 0x72,0xc7,0x92,0x1f,0x33,0x98,0xbd,0x4f,0x24,0x80,0x4b,0xbc,0xf6,0xb3,0xf0,0x47, + 0x4,0x41,0x67,0x1b,0x4e,0x37,0x17,0xaf,0x77,0x27,0x9a,0x6c,0x2f,0xd4,0x55,0x4, + 0x1e,0x2d,0xb5,0x4e,0xd9,0xdd,0x1b,0x6d,0x7a,0x6f,0x2f,0x6e,0x6c,0x4f,0x5a,0x46, + 0xca,0xe7,0x35,0x38,0x4d,0x5a,0x2e,0x47,0x1e,0xe9,0x1b,0x60,0x6b,0x99,0xd9,0xf7, + 0x7d,0xaa,0x56,0xbc,0x3e,0x5c,0x4c,0xf5,0x35,0x71,0x22,0xb2,0x1d,0x3a,0x41,0x9e, + 0x7e,0x92,0xe8,0x19,0xec,0xa4,0xe8,0xfa,0xfa,0x3c,0x8b,0x0,0x29,0x29,0xf1,0x4e, + 0xba,0x9b,0x89,0xac,0x6,0xf3,0x62,0x78,0x4f,0xfe,0x53,0x1c,0x4f,0x87,0xae,0xe9, + 0x94,0xc,0xac,0xd5,0xed,0xc3,0x23,0x3c,0x3,0x52,0x9,0x3c,0xb1,0x2f,0xf4,0xda, + 0x94,0xe9,0xe9,0xd2,0x47,0x9e,0x36,0x28,0xf,0xa5,0xf3,0x67,0x7,0xcb,0x98,0x35, + 0x62,0xcf,0x2d,0xbf,0xfc,0xe5,0x4b,0x51,0x90,0x95,0x3d,0xaf,0xd6,0x99,0x13,0x6f, + 0x31,0x3,0xe5,0x74,0xd9,0x24,0x57,0x75,0xb8,0xd7,0xbe,0xd0,0x63,0x52,0xed,0x2d, + 0xe,0x70,0xc8,0xd1,0xb6,0x50,0xaa,0xae,0x3f,0x10,0x99,0x50,0x28,0x5a,0xb6,0xa3, + 0x62,0xec,0x49,0x47,0x50,0x4c,0xda,0x8a,0x5b,0xea,0xf2,0x9a,0x7f,0xde,0x8e,0x35, + 0x77,0xa1,0x69,0x52,0xe3,0xff,0xdb,0x39,0xea,0xaa,0xdf,0x2b,0x45,0x92,0x65,0xda, + 0x18,0xb8,0x56,0xa6,0x15,0xf4,0x29,0x38,0xb3,0x97,0x59,0x64,0x9f,0x1f,0x7b,0x1d, + 0x9c,0xde,0x53,0x3d,0x13,0x17,0xdb,0xea,0xa3,0xf3,0x95,0x61,0x6b,0xe6,0x95,0xfa, + 0x6c,0x3a,0xb0,0x7,0x52,0x3e,0xfb,0xc6,0x42,0x84,0x3a,0x6d,0xbc,0x95,0xa0,0x49, + 0x53,0xc1,0x96,0x35,0x6a,0xdc,0x75,0x9a,0xd4,0xc3,0x10,0xf8,0xac,0x86,0x3a,0xf4, + 0x22,0x94,0xe1,0x86,0x90,0x90,0xcd,0x6,0xbc,0xe3,0xcb,0x6f,0x62,0x1a,0xca,0x1d, + 0x97,0xee,0xc,0x41,0x69,0x50,0x9f,0xc9,0x9e,0x87,0xa3,0xbe,0x29,0xc6,0xe7,0x95, + 0x6c,0x59,0xf9,0x11,0x6,0x3e,0x74,0xdf,0x60,0x4d,0x64,0x7d,0x8,0x6d,0x92,0x9f, + 0xcb,0x6a,0x65,0xd0,0x37,0x35,0x3d,0x4e,0x9d,0x5,0xae,0x9,0xe2,0xa9,0xdf,0x26, + 0x9a,0x93,0xae,0x1a,0xe0,0xa4,0xa0,0x96,0xa3,0x3e,0xe,0x12,0x6d,0xef,0x9d,0x47, + 0x3e,0x35,0x4f,0xfc,0xbb,0x1d,0x3,0x83,0xc7,0xe4,0x3e,0x5f,0xa3,0x31,0x35,0x2d, + 0x19,0x3e,0xfe,0x3d,0x61,0x9a,0xb6,0xac,0x8,0xb2,0x5f,0x6f,0x7f,0xaa,0x33,0x1e, + 0x7e,0xbe,0x6d,0xaf,0x82,0xd0,0xfd,0xbc,0x50,0x1b,0x4e,0xd8,0xd9,0xfd,0x1c,0x52, + 0x60,0x69,0xdb,0x56,0x44,0x42,0x28,0x70,0x6e,0x8,0xf1,0x4d,0xd2,0xdd,0xc8,0x1e, + 0x12,0xbf,0xbb,0x88,0xdd,0x9d,0x6a,0x58,0xe8,0xfe,0x91,0xf4,0x50,0x12,0x7c,0x17, + 0xda,0xfa,0x3e,0x7e,0x36,0x2a,0x4f,0xef,0xa6,0x3e,0x17,0xcb,0x54,0x53,0xd2,0xfa, + 0xec,0x62,0x7,0x3f,0xdb,0x7a,0x42,0xe0,0xb8,0x85,0x42,0x9a,0xd1,0xa5,0x32,0x2a, + 0xa6,0xa7,0x30,0x7b,0x21,0xba,0x8f,0xde,0xcb,0xa1,0xfb,0x2,0x39,0xd3,0x46,0x73, + 0x78,0x4d,0x81,0xf0,0xd5,0xfa,0x4a,0x81,0x70,0x65,0xed,0x65,0x2,0xfe,0x5f,0x7b, + 0xd7,0x1,0x17,0xc5,0xd1,0xc5,0xf7,0x4,0xc4,0x8e,0x5d,0xac,0x60,0x2f,0xd1,0x60, + 0x6f,0x51,0xc1,0x5e,0xa2,0x82,0xc6,0xde,0xb0,0x1b,0x7b,0xef,0x4a,0x11,0x10,0x4b, + 0x62,0x8b,0x25,0xc6,0x18,0x7b,0x89,0x31,0x96,0x44,0xb1,0xb,0x1a,0x1b,0x1a,0x7b, + 0xd4,0xc4,0x8a,0x25,0xb1,0x25,0x91,0xcf,0x42,0x11,0xf0,0x7d,0xf3,0x9f,0xbd,0x39, + 0x96,0xf5,0x1a,0x70,0x70,0x60,0x58,0x7e,0x8f,0x2d,0x37,0x3b,0xe5,0xfd,0xdf,0xbc, + 0xf7,0xa6,0xee,0xf0,0x30,0xf7,0x51,0xfb,0x4b,0xe6,0xfc,0x34,0xec,0xfe,0xa,0xef, + 0x76,0x3f,0x1f,0x3a,0xf8,0x74,0xfc,0xe9,0x8b,0x1b,0x36,0x97,0x1e,0x7c,0xb9,0xe4, + 0x77,0xb5,0x5a,0xe5,0xfb,0xaa,0xf2,0xd0,0x43,0x5f,0xb6,0xb8,0xf1,0xee,0xe0,0xd7, + 0xad,0xfc,0xed,0x9a,0x2c,0x1d,0xb3,0xa8,0x48,0xf0,0xd4,0xeb,0x6d,0x9f,0x4d,0xeb, + 0x57,0xb1,0xec,0xcd,0xcd,0xf6,0x4d,0x42,0x5e,0xb7,0xb5,0x3d,0x71,0xa3,0xf0,0x27, + 0xaf,0xf3,0x97,0xab,0xd4,0xf9,0x91,0xf7,0x89,0xdc,0xb5,0x66,0x5e,0xff,0x63,0x71, + 0xa4,0x43,0xbf,0xf0,0xdb,0x7b,0x6f,0x5c,0xf1,0xfc,0xe8,0xd3,0xb0,0xac,0x1d,0xdc, + 0xfc,0xf2,0x7d,0x55,0x35,0xb4,0xdc,0x57,0x79,0xfa,0x7e,0xe4,0xdb,0x6e,0xc2,0x3f, + 0xa5,0x76,0xfd,0xd0,0x77,0xf9,0xe2,0xb0,0xb0,0x75,0xdd,0x87,0xf8,0x5f,0x18,0xeb, + 0x3f,0xeb,0xfa,0xbb,0xed,0xd1,0xcd,0xed,0xd6,0xae,0xd8,0x11,0xdc,0xa7,0x50,0xd9, + 0x37,0xe1,0x15,0xa,0xec,0x1e,0x54,0x71,0xc6,0xf3,0x73,0x9e,0xed,0x5d,0x7a,0x1e, + 0xfd,0xb6,0xe0,0xea,0x31,0x99,0x66,0x46,0x1e,0x72,0xb8,0xba,0xac,0xcd,0xaa,0x99, + 0x53,0xee,0x37,0x79,0xd6,0xb8,0xcc,0xdd,0x1c,0x7d,0x3f,0x6d,0xfd,0xe5,0xf9,0xee, + 0x33,0xdb,0xf6,0x3f,0xba,0xee,0xe9,0x55,0x9b,0xc8,0x90,0x3f,0x96,0x8f,0x1a,0xed, + 0xe0,0xf4,0x7c,0x49,0xc0,0xf1,0x1e,0x4e,0x8b,0x1e,0xd1,0x93,0x2a,0xfb,0x9e,0x4c, + 0xfc,0xf8,0x68,0xe1,0x80,0x9d,0xae,0x71,0x35,0x1b,0x8e,0x75,0xfe,0x7a,0xc9,0xaa, + 0x5f,0x4f,0x7c,0x13,0xd1,0x6a,0x7c,0xf0,0xbf,0xfe,0x45,0xc7,0x96,0x1e,0xf8,0xf2, + 0x97,0x6f,0x66,0xf5,0xf4,0x99,0xee,0x2b,0x55,0x3d,0x5e,0x69,0xfc,0xa7,0x43,0xa7, + 0xbd,0x8b,0x7e,0xfc,0xe6,0xe0,0x3e,0xe9,0xec,0xfc,0x1e,0x7b,0xa5,0xfe,0xed,0x3e, + 0x9b,0x95,0x5b,0xaa,0x76,0x6f,0x46,0xd4,0x27,0x6f,0x3f,0xd9,0xee,0x7b,0xe0,0xec, + 0x9a,0xe0,0x9,0x7f,0x55,0xee,0x3d,0x35,0x70,0x5c,0xee,0xfd,0x4b,0x67,0xd4,0xda, + 0x71,0x7f,0x61,0x97,0xaa,0xbb,0xec,0x9f,0x87,0x47,0xde,0xeb,0x52,0xce,0xfb,0xed, + 0xdf,0xe3,0x9f,0xc,0xfc,0xec,0xc0,0xe4,0x96,0x5d,0x57,0x94,0xfb,0x35,0xfa,0xf1, + 0x1a,0xa7,0x62,0xab,0x87,0x8f,0xf9,0xe2,0x6d,0xec,0xde,0x8f,0xb2,0xe4,0x1d,0xd1, + 0xd5,0xf1,0x9c,0x5b,0x37,0xfb,0xfa,0xf5,0x47,0x2f,0xff,0x7d,0xc5,0x85,0x92,0xbd, + 0x6,0xc6,0x74,0x98,0x98,0xfb,0x4a,0xfe,0x77,0x3,0xf6,0x9f,0xb8,0xb8,0xec,0xce, + 0x63,0xbb,0x90,0x90,0xb5,0x5d,0xec,0xdc,0x42,0x3f,0xf6,0x39,0xb1,0xe6,0xde,0xcc, + 0x7d,0x47,0xf7,0x17,0xb4,0x6d,0xe3,0x77,0x24,0x9a,0x35,0x89,0x8b,0x6f,0xa,0xe8, + 0x5a,0xfc,0xb6,0xfb,0xf8,0xe9,0xd3,0x9f,0x54,0x1a,0x74,0x30,0xd2,0x71,0x49,0xab, + 0xc6,0xb9,0x27,0x9e,0x3e,0xe0,0x3f,0xeb,0xda,0xdd,0xbf,0x1c,0x8e,0x1f,0xad,0xbb, + 0xa7,0x51,0x44,0xb7,0x1f,0x77,0x9e,0xf1,0xbe,0x75,0x78,0xea,0xeb,0xba,0x3f,0x3d, + 0xa9,0xd0,0x34,0xea,0xe8,0x95,0x1,0xbb,0x23,0x7f,0x2e,0xd4,0xbb,0xd9,0x9a,0xb2, + 0x3,0xf2,0x38,0x5e,0xed,0xb9,0xa6,0x96,0xd7,0x8,0xb7,0x31,0x35,0xfa,0x94,0xdc, + 0x7d,0xcd,0x36,0xf3,0xbe,0x47,0xde,0xcb,0xb7,0xf,0x59,0x74,0xe3,0xb3,0x7f,0xca, + 0xe7,0x3e,0xdf,0x72,0x8c,0xfb,0xaf,0x8f,0x7e,0x58,0x17,0x54,0xed,0x7f,0xd9,0xf, + 0x4c,0x76,0x58,0xd8,0x3f,0xcf,0xf,0x52,0xdf,0x56,0x8d,0xc3,0x37,0x8f,0xb3,0xbf, + 0xdb,0xc5,0x7f,0xda,0xe3,0x80,0xb2,0x7b,0xa6,0xfd,0x99,0xad,0xdd,0x92,0x87,0x97, + 0x56,0xb8,0x17,0x5e,0xe2,0xf9,0xcf,0xfe,0x6c,0x43,0xbf,0xfa,0xa9,0xe8,0xca,0x16, + 0xc3,0xe7,0x3a,0xd9,0x3e,0x2f,0x58,0x74,0xbc,0x77,0x3b,0xff,0xeb,0xde,0x39,0x7a, + 0xac,0xc9,0x37,0xf3,0xed,0xe2,0xaf,0x8a,0xe7,0xb5,0x3d,0x5b,0xca,0xed,0xb7,0xb8, + 0x5d,0x85,0x1d,0x97,0xcd,0x9e,0x54,0xb0,0x75,0xdd,0x66,0x1,0x73,0xfb,0xd8,0xfe, + 0x2f,0xef,0xcb,0x62,0x59,0xa,0xec,0xd9,0x70,0xf3,0xea,0x9b,0x98,0x5f,0x23,0x16, + 0x56,0xee,0xe6,0xe6,0x14,0x73,0x29,0x70,0xd6,0xf8,0x6,0xff,0x6b,0x78,0xd6,0xff, + 0xa7,0x2c,0x52,0x66,0xdb,0x63,0x47,0x22,0xef,0xae,0x2a,0x71,0xeb,0x76,0xdb,0xd1, + 0x5b,0x57,0x44,0x55,0x79,0x18,0x13,0x1c,0xf7,0x20,0xfb,0x37,0x95,0xc7,0xe4,0xb9, + 0x3b,0x6a,0xe4,0xba,0x5a,0xb9,0x73,0x9c,0x38,0x76,0xbc,0xe6,0xf9,0xe,0xd7,0x8f, + 0x5f,0x5b,0xbf,0xb1,0xfa,0xb4,0xfc,0xb9,0x3b,0xd9,0x96,0xe8,0x50,0x6e,0x59,0xc1, + 0x12,0xf3,0xa2,0x86,0x97,0x6b,0xef,0x9c,0xf7,0x84,0x6b,0xeb,0x3c,0x4e,0x31,0x7d, + 0xff,0xbd,0xb5,0xbd,0xe1,0xd5,0x16,0x15,0xf3,0xcf,0x72,0x8e,0x3a,0xbe,0xa8,0xe4, + 0x6f,0x57,0xaf,0x36,0x2d,0xd4,0x30,0x6a,0xed,0xdd,0xcd,0x35,0xb2,0x8c,0xc9,0x99, + 0xeb,0xc2,0xa6,0xab,0xd7,0xdb,0x5c,0xa,0x99,0x94,0xa7,0xe5,0xae,0x1b,0xf6,0xf7, + 0xbf,0xec,0xbe,0xf3,0xa2,0xd3,0x27,0xdf,0x7c,0xec,0x54,0xfb,0x8b,0xef,0x3c,0x9e, + 0x37,0x2c,0x7f,0xf1,0x46,0x93,0x3f,0xff,0x18,0xbe,0xa3,0x5a,0xbb,0x69,0xf,0xa6, + 0x2f,0x2d,0x34,0xa8,0x80,0xf4,0xc5,0xea,0xb3,0x39,0xd6,0x8c,0xfd,0xb5,0xda,0xb4, + 0xe2,0x15,0x97,0x39,0x78,0xfd,0x33,0xfc,0xf5,0xa9,0x9f,0x6,0x6d,0x7c,0x7c,0xb4, + 0xf3,0x8e,0xe3,0x3d,0x5b,0x79,0xcf,0xac,0xf6,0x75,0x3d,0xbb,0x26,0x61,0x77,0xa, + 0x5f,0xdd,0xeb,0xe1,0x33,0x46,0x5a,0xf0,0xef,0xdf,0xeb,0x27,0xdf,0x9d,0x1e,0x38, + 0x78,0xc0,0xf7,0x11,0xbb,0x5d,0x76,0xb4,0x8b,0x29,0x76,0xc2,0xfe,0x41,0x8e,0x31, + 0x3e,0xb1,0xd2,0x29,0x87,0x3d,0x41,0x41,0x1d,0x87,0xc,0xd9,0x52,0x20,0xf3,0x8c, + 0xd5,0x25,0xba,0xd9,0x57,0xce,0x7d,0x69,0xdf,0xe8,0x39,0x25,0xa,0x14,0xaa,0xdb, + 0x7b,0x64,0xcc,0x97,0x79,0x72,0xbb,0xef,0xa9,0x19,0x30,0xe7,0xc5,0xfd,0x6a,0x1e, + 0x8e,0xb9,0x35,0x61,0x99,0xf7,0xff,0x1b,0x75,0xfb,0xf1,0xdf,0x6f,0xfd,0xbc,0xdf, + 0x74,0x9d,0x46,0xd5,0x2f,0xd7,0xf9,0xce,0xe3,0xb8,0x14,0x17,0x91,0x75,0x83,0x74, + 0x6f,0xe8,0xd0,0xcb,0xcd,0x8e,0x7,0x2d,0x7d,0x7a,0x61,0xd5,0xce,0x56,0xc1,0xe7, + 0xa2,0x22,0xbb,0x65,0x2e,0x7f,0xca,0x3d,0xb6,0x2,0x4b,0xc1,0xa1,0x5c,0xa6,0x8f, + 0xbb,0x1c,0xef,0x3b,0xa7,0x42,0xf7,0x16,0xe3,0x7a,0xaf,0x3d,0xdd,0xf6,0xe0,0xcb, + 0xa2,0xb1,0x81,0x43,0xba,0x34,0x39,0x9e,0xef,0xde,0x86,0x8e,0x2c,0xd6,0x45,0xb, + 0x17,0x95,0x2f,0xe2,0x3a,0xf9,0x68,0xf7,0x61,0xb7,0x67,0x8c,0x9f,0x54,0x74,0xf6, + 0xed,0x5e,0x7d,0xe6,0xb6,0x76,0x39,0xff,0x7c,0x5c,0x3e,0xd7,0x67,0x5e,0x8e,0xee, + 0xab,0xdc,0x7a,0x97,0xc,0xdf,0x7c,0xa4,0xe5,0xde,0xbe,0x6e,0xb6,0x6e,0xf5,0x9c, + 0x7f,0x9c,0xe7,0x5b,0xe6,0xe8,0x11,0x2f,0xdf,0x5a,0x11,0xc3,0x56,0xff,0xdd,0xb5, + 0xf7,0xcc,0x6b,0x3e,0x7d,0x5e,0x5c,0x6e,0xf9,0xd2,0xfd,0xc8,0xbf,0x1d,0x8a,0xbd, + 0x2d,0x2b,0xdd,0xee,0x74,0xd3,0xd7,0xad,0x4b,0xc3,0x18,0xcd,0x81,0x61,0x5e,0xcd, + 0x1a,0x4e,0xff,0x31,0x5f,0x9f,0xfe,0x6b,0x43,0x2f,0xde,0x78,0xdd,0xc4,0xb9,0x51, + 0x8e,0x1e,0xd9,0xd7,0x16,0xf1,0x70,0x1f,0x38,0xb9,0x43,0xd6,0x97,0xe7,0x86,0x4f, + 0x2f,0x99,0xdb,0x81,0x85,0x9f,0x77,0xf9,0xed,0xcc,0xe2,0x3d,0xb7,0xdb,0x5d,0xf6, + 0x9c,0xef,0x77,0xf1,0x87,0x88,0x22,0x23,0xfd,0x34,0xcb,0xca,0x4,0xb7,0x3c,0x1c, + 0x5e,0xd0,0x6d,0x75,0x5f,0xe7,0x56,0x3d,0x3f,0xfe,0xb1,0xd8,0xc4,0x17,0x63,0x5d, + 0xdd,0x8f,0xf4,0xc8,0x1f,0xb7,0xcd,0x3e,0xac,0xda,0xfe,0xaa,0x5f,0x87,0xba,0x7a, + 0x6c,0xed,0xfa,0xc3,0xe6,0x51,0xb6,0x52,0xec,0x9b,0x69,0xaf,0xff,0x18,0xee,0x1b, + 0x6b,0x53,0xb6,0xd7,0xb3,0xe,0x59,0x72,0xd4,0xd7,0xec,0xf2,0xd8,0x98,0xa5,0x50, + 0xb6,0x72,0x8d,0xdc,0x17,0xff,0x93,0xc7,0x29,0xf3,0xbc,0x6f,0xfd,0xee,0x1c,0xdf, + 0xda,0x25,0xc7,0x59,0x47,0x37,0x6f,0x7f,0xb7,0x23,0xf,0x96,0x7e,0xe5,0x5e,0x71, + 0x78,0x8c,0x4d,0xeb,0xb6,0xbd,0x7e,0xf8,0xf6,0xda,0x54,0x97,0xc3,0xe1,0xc7,0xf, + 0xe6,0xab,0xe9,0x77,0x21,0x53,0xf8,0xd6,0x8f,0x73,0xc,0x3c,0xf0,0x77,0x8f,0x2a, + 0xe7,0x7b,0xb7,0x9e,0xa2,0xf1,0x78,0xb8,0x9f,0xde,0xc5,0x9c,0xf3,0xfa,0xd2,0xd7, + 0x79,0xf0,0x81,0x9d,0xbe,0x11,0x17,0x1b,0x7d,0x72,0x70,0x44,0xaf,0x2a,0x3,0x3c, + 0xe,0x4a,0x25,0x4e,0x6a,0x9a,0x84,0x5,0x14,0xea,0x33,0x67,0xef,0xf9,0x21,0xdf, + 0x4d,0x2d,0x77,0x3d,0xe2,0x65,0xc9,0x42,0xd1,0xfd,0x7e,0x3a,0x1d,0x30,0xf0,0xe8, + 0xca,0x2d,0xc3,0x1d,0xfd,0x3a,0x4a,0x67,0x1c,0x7d,0x2a,0xcf,0xed,0xf4,0xf9,0x88, + 0xbe,0xbb,0xd6,0xdc,0x73,0x3a,0xf1,0xfd,0x9d,0xf5,0xfe,0xa1,0x6e,0xab,0x1e,0xef, + 0xef,0x73,0x64,0x49,0xed,0xf6,0x39,0xe,0x7a,0x56,0x75,0x6a,0x9d,0xed,0xfb,0xe0, + 0xda,0xbf,0x5f,0x8c,0xc,0x7f,0xb4,0x30,0xdf,0xbb,0xae,0xaf,0x2b,0x14,0xd9,0x55, + 0xae,0x52,0x81,0x45,0xaf,0x1e,0x2d,0x2c,0xe4,0x77,0xc5,0x2e,0x7c,0x6b,0x3,0xb7, + 0xe3,0xfb,0x1f,0x66,0xb,0xe8,0x73,0xa3,0x74,0x23,0x96,0x93,0xf2,0xfb,0x7,0x84, + 0xde,0x99,0x16,0x1d,0xf6,0x7a,0xb4,0x7d,0xd1,0x5,0xb7,0x3d,0xc7,0xad,0x7a,0xe3, + 0x58,0x6b,0x67,0xad,0x29,0x63,0x7b,0xd8,0xf7,0x7d,0x19,0x18,0x7e,0x37,0xdc,0x37, + 0x38,0xcf,0xc2,0x6d,0x7e,0x85,0xa4,0x5a,0xb,0x5a,0xbd,0xac,0x71,0x38,0xf7,0xd6, + 0xe9,0x53,0x34,0x61,0xf7,0x3b,0x9c,0xe,0xaf,0xe6,0x53,0x24,0xf0,0x4d,0x74,0xce, + 0xbc,0xff,0xe4,0x5c,0xf7,0xe2,0x4d,0x9d,0x46,0x57,0x9a,0x1e,0xef,0xa9,0xdd,0x9d, + 0x63,0x58,0xf1,0xa9,0xeb,0xe3,0x9e,0x8e,0x8f,0xc8,0x11,0xf6,0xe5,0x94,0x4e,0xa5, + 0xf,0x4b,0x5b,0xed,0x9b,0x65,0xd1,0xb8,0x7b,0x39,0x84,0x9c,0x96,0x9e,0xd9,0xb5, + 0xc8,0x32,0x65,0xcd,0xbd,0xf8,0xb0,0xd,0x1a,0x3c,0x73,0xf4,0x6b,0x2f,0x3d,0x2a, + 0x5a,0xad,0xeb,0x99,0x31,0x37,0x8f,0x79,0x79,0xe5,0x7f,0xb6,0xfb,0xf7,0xef,0x5b, + 0x36,0x70,0x5c,0x5a,0xcd,0xa7,0x63,0xe0,0xf9,0x5c,0x11,0xaf,0xca,0x36,0x88,0x6e, + 0xd8,0xe6,0xd8,0xda,0x9f,0x59,0xd0,0x6,0xf,0x7e,0x59,0xbb,0x47,0x6a,0xf0,0xd3, + 0xe2,0x36,0x9b,0xb0,0xbf,0x87,0x5f,0xee,0xbb,0x99,0xb6,0x6a,0xa2,0x86,0x1d,0x78, + 0x93,0xb5,0x7b,0xfb,0xb,0x6b,0x9f,0xcc,0x75,0x39,0x62,0x57,0xf5,0x8c,0x6f,0x68, + 0xfb,0xe5,0x95,0xbb,0x77,0x7c,0x7a,0x2b,0xdc,0x71,0x63,0x78,0x41,0x9f,0xc0,0xd3, + 0xce,0xcd,0x8a,0xdd,0x74,0xda,0xba,0x55,0xa,0xff,0xe6,0xdc,0x2f,0x1b,0x7e,0xda, + 0xfa,0x75,0x76,0xe7,0xd0,0x7b,0x97,0x72,0x97,0x58,0x3f,0xed,0xaf,0x95,0x43,0x4e, + 0x4d,0x5a,0x5d,0xeb,0x87,0xae,0x85,0x66,0xfc,0x3d,0x76,0xfc,0x5f,0x39,0x3e,0x9f, + 0xfe,0xe6,0x52,0x97,0x7a,0x37,0xe7,0x1f,0x3a,0xdf,0xf1,0x66,0x8f,0x83,0x13,0xbe, + 0xef,0xfd,0xe2,0x9f,0x7f,0xaa,0xec,0x5f,0xdd,0x31,0xf7,0x8a,0x8,0x97,0xa7,0x27, + 0x9a,0x8c,0x7d,0x71,0x24,0xf2,0xe6,0x82,0x67,0xcd,0x4a,0xf5,0xfb,0xaa,0x77,0xaf, + 0x2b,0x36,0x4b,0xa2,0xc6,0xc6,0xfa,0xce,0x1f,0xba,0x61,0x67,0xd0,0x83,0x51,0x3b, + 0x4b,0xdc,0xac,0xd4,0x72,0xfa,0xd8,0x7d,0x85,0x5b,0xf6,0xac,0x6c,0xbb,0xde,0xd6, + 0xed,0xf6,0xa6,0xbb,0xa5,0xcf,0x38,0xbc,0x5e,0x75,0x7a,0xd0,0x5e,0xa9,0x4c,0xb4, + 0xa6,0x7d,0x8f,0xb9,0x5f,0xc5,0xce,0x38,0x1c,0xbb,0xe1,0xcc,0xab,0x1b,0xa3,0x7f, + 0xcf,0x3d,0xf5,0xc2,0x17,0x41,0xb5,0xf,0xbd,0x3b,0x70,0x91,0x5c,0x8e,0xc4,0xde, + 0xec,0x4a,0x95,0x86,0xc4,0x8c,0xdd,0xdb,0xd5,0x61,0xe4,0xb2,0xd,0x47,0xf6,0xdf, + 0xfa,0xe2,0xe7,0x2a,0xf9,0x5b,0x16,0x9f,0x93,0x2d,0x74,0xec,0x57,0x4e,0x15,0x56, + 0x49,0x63,0x42,0x2f,0xce,0x29,0xe5,0xda,0x75,0x45,0xef,0xbd,0xe3,0x36,0xdd,0xb9, + 0x7e,0xcf,0xb5,0x4d,0x49,0xef,0xdf,0x67,0x3c,0x59,0x58,0xb5,0xe2,0x9e,0x23,0xd3, + 0x3e,0xff,0xa1,0xd8,0x3f,0x27,0xef,0xc,0xee,0x35,0x32,0xe7,0xc0,0xb9,0x2f,0xc7, + 0x2d,0x72,0xaa,0x30,0x5f,0x3a,0xd3,0xfc,0xdd,0xd6,0x3,0xb7,0xe7,0x95,0xf4,0x6e, + 0xd4,0xac,0x7b,0xce,0x8e,0xdd,0x1e,0x65,0xca,0xbe,0xb8,0xc9,0xcd,0xca,0x9b,0x14, + 0x61,0xaf,0x65,0x8a,0x1e,0x30,0xbc,0xd9,0xfa,0x4e,0x2f,0xb,0x65,0x8b,0x6e,0x19, + 0x3a,0xa4,0x76,0xc1,0x9b,0xb3,0x47,0x3c,0x77,0xf5,0x8a,0x1d,0x70,0xe4,0xdd,0xbd, + 0x1d,0xc1,0x8d,0x82,0x22,0x9e,0xad,0xab,0xe2,0xfc,0x6f,0xc4,0x83,0x51,0x35,0x76, + 0x4,0xfd,0x55,0xc2,0xfb,0x70,0xdc,0x77,0xe7,0x2e,0x7a,0x47,0xfc,0x31,0xe4,0xe7, + 0xa0,0x92,0xb9,0x98,0x94,0xb7,0xf6,0x72,0xee,0x82,0xed,0x2a,0x5e,0x38,0xdc,0x76, + 0xcd,0x76,0xf4,0xd3,0x92,0xce,0x9e,0xdf,0x55,0x8,0x2b,0x7b,0x66,0xcb,0xc4,0x5d, + 0x9e,0x41,0x79,0x5a,0x82,0x81,0xb7,0x83,0x57,0xde,0x6a,0x51,0xab,0xa1,0xcb,0x6, + 0xc7,0x97,0x36,0x73,0xfc,0xa,0x54,0xb2,0x3d,0xdb,0xee,0x5d,0xb7,0xa2,0x1f,0x5, + 0xc4,0x8e,0xd0,0x2c,0x7d,0xd9,0xb2,0x9f,0xe6,0x52,0xd7,0xa2,0xb7,0x73,0xe5,0xbe, + 0x76,0xbd,0x62,0xf9,0x35,0x79,0xeb,0x97,0x5b,0x80,0xf4,0xa6,0xb6,0xed,0x25,0x67, + 0xae,0xe1,0xdb,0x33,0x1b,0xa6,0x75,0xaf,0x1c,0x5d,0x38,0x20,0x8b,0x8f,0xaf,0xb3, + 0x6b,0xee,0xf9,0xa5,0x6b,0xe4,0x7e,0x34,0xe4,0xf5,0x8d,0xdb,0x91,0xe1,0x73,0x6c, + 0x36,0x2d,0x71,0x7a,0x32,0x3c,0x4b,0xa4,0xdb,0x62,0xa7,0xa,0x7f,0xd8,0x3d,0x71, + 0x89,0xee,0x1d,0xec,0xba,0x66,0xf4,0xf2,0x4f,0xeb,0x36,0xcb,0xea,0xd7,0xeb,0x9f, + 0xfc,0xa5,0xfa,0x6e,0x5c,0x5e,0xe1,0xcf,0xa3,0x3,0xa7,0x7,0x4,0x75,0x3e,0x73, + 0x24,0xe7,0xec,0xa0,0xb3,0x97,0xfb,0x54,0xac,0xf0,0x57,0x71,0xcd,0xcb,0xb8,0x76, + 0xf,0x9d,0x5d,0x17,0x5d,0xcc,0xe4,0xd8,0xea,0xe5,0x8a,0xdb,0x63,0x7a,0x3d,0x72, + 0xb1,0xad,0xee,0xf3,0xf0,0x6d,0xec,0xc9,0x3d,0xc7,0x16,0x8d,0x3c,0x50,0x6e,0x84, + 0xf7,0xcd,0x2f,0x86,0xed,0xc,0x1e,0x59,0xfd,0x76,0x50,0x9b,0xa1,0x3b,0x7b,0xdc, + 0x3a,0x7b,0xad,0xcf,0xee,0x91,0x2d,0xe2,0x8a,0xbf,0x1d,0x5e,0xa5,0xc5,0xde,0xce, + 0xf3,0x1f,0xd9,0xbf,0x1d,0xa9,0x59,0xfa,0xc3,0xf,0x2e,0x9e,0xae,0xae,0xd9,0x35, + 0xef,0x4a,0x74,0x9d,0x35,0x77,0xc6,0xe5,0x6d,0x7b,0xcf,0xd7,0xbd,0xf5,0xc3,0xf5, + 0xa0,0x71,0x7b,0x7b,0x66,0xb9,0xbd,0x76,0xdd,0x88,0xe0,0xdf,0x62,0xb6,0x75,0x7e, + 0x69,0x13,0x97,0x57,0x5a,0xf6,0xe4,0xf1,0x64,0xcf,0x39,0xef,0x82,0x8e,0xb9,0x64, + 0x75,0xc9,0x3e,0xb5,0x3,0xb3,0x50,0xb7,0xc6,0xdf,0x99,0xf3,0x6e,0x4f,0x68,0x64, + 0xa1,0x41,0x2b,0x5f,0xef,0x3b,0x32,0x6c,0xe4,0xa7,0x8d,0x86,0xac,0x1b,0x59,0xb0, + 0xb4,0xc7,0xdb,0x98,0x3a,0xcd,0xeb,0xdc,0x8b,0x8b,0xbc,0x37,0x7a,0xdf,0xb5,0x52, + 0xd1,0xbe,0xeb,0xed,0xdc,0x8a,0xc5,0xc5,0x8e,0x2d,0x13,0x78,0xe2,0xf2,0xec,0x8f, + 0x3a,0x6d,0xdb,0x2d,0x27,0xb0,0xfe,0xe6,0x17,0x4d,0x5b,0x9f,0x98,0xe8,0xb9,0xb7, + 0x8d,0xd7,0xda,0xad,0x7d,0x7c,0xda,0x44,0xbc,0xea,0xba,0xfe,0xcb,0x63,0xbf,0xf, + 0xfe,0xf6,0x9f,0x9c,0x3,0x7b,0x76,0xc8,0x54,0xf6,0x46,0xf9,0x5,0x31,0x15,0x5f, + 0x1f,0x1d,0xb6,0x32,0xd6,0xed,0x58,0x41,0xb7,0x62,0x8f,0x16,0x96,0x8e,0x5e,0xdf, + 0x23,0x5f,0xdb,0xb3,0x77,0x6,0xd7,0x2a,0x7b,0x6c,0x69,0xd,0xdf,0xad,0x1e,0x4b, + 0x6b,0x14,0xfe,0xe2,0xe7,0xd8,0xaa,0x21,0xe5,0x87,0xf9,0x7b,0xfe,0xb8,0x28,0x38, + 0x2c,0x7b,0xae,0x4e,0xae,0xde,0x3b,0x1e,0xcd,0xdf,0xff,0xd5,0x8c,0x47,0x63,0xaf, + 0xdd,0x1e,0x5c,0xab,0xdc,0xb1,0xa5,0xa5,0x7d,0x5b,0x95,0xe8,0xfa,0x74,0x60,0xd5, + 0x5c,0x51,0xd7,0x6c,0xa2,0x7d,0x1b,0x55,0xf1,0xd9,0x3f,0x2e,0x26,0xe6,0xaa,0xeb, + 0x8b,0xaf,0xbc,0x9e,0xd9,0x9c,0xcc,0x92,0x5f,0x7a,0xd1,0xbc,0xd8,0x5f,0xc1,0xf3, + 0xa7,0x95,0x76,0x5d,0xd4,0x55,0xca,0x71,0x22,0xe4,0xbb,0x5e,0xe5,0xfa,0xd6,0x5b, + 0x32,0xe3,0xc1,0xa9,0xbe,0x9f,0xd7,0xb8,0x10,0x71,0x76,0xb5,0x5b,0xa7,0xd6,0xbf, + 0x95,0x8e,0x7e,0xd5,0xe7,0x70,0xb7,0x97,0x2b,0xae,0x9c,0xf6,0x3c,0x7b,0xc6,0xa5, + 0x85,0x67,0xeb,0x46,0x71,0x43,0x83,0x3b,0x8e,0xec,0xd2,0x74,0xfa,0xd8,0x86,0x3b, + 0x9b,0xdd,0x8e,0xb4,0xcb,0x3f,0xa0,0xec,0xc1,0x79,0xb3,0x6e,0x6d,0x2b,0xbf,0xe6, + 0x5e,0xf3,0x8d,0x76,0x1e,0xb9,0x5e,0x3e,0xb6,0xe9,0xa9,0xf9,0xb3,0x4d,0xa5,0xc5, + 0x37,0x9e,0x5e,0x9c,0x99,0x73,0xe0,0xaa,0x6b,0xb7,0xfb,0x1c,0xc8,0x3b,0x67,0xde, + 0x1,0x97,0x3a,0x85,0xb7,0xbb,0x8e,0x6c,0xf5,0x5b,0x8d,0x68,0xdf,0xca,0x1a,0x8f, + 0x6c,0xd1,0xbe,0xef,0x22,0xe,0x9d,0xba,0x66,0xff,0x77,0xb9,0x3f,0xf3,0xdf,0x9c, + 0xe4,0xe9,0x32,0xea,0xc0,0xad,0xed,0x41,0x11,0x6f,0x5f,0x1d,0x9e,0x59,0x72,0xc7, + 0xe3,0xa5,0x15,0x82,0x72,0xae,0xbc,0xfd,0xcb,0xf3,0x37,0x6d,0xbc,0x9c,0x97,0xda, + 0x57,0xcd,0x1d,0x17,0x1b,0xf0,0xba,0xca,0xe9,0x3f,0xec,0x7b,0x2d,0x78,0xb4,0x64, + 0xff,0xad,0x62,0x6d,0xff,0xd1,0xc4,0xc5,0xc5,0x9c,0x18,0xeb,0xb9,0x29,0xe8,0x7e, + 0xa5,0xed,0xd3,0xca,0xb9,0xf6,0xad,0xe2,0xd3,0x31,0xd4,0xa9,0xab,0x6f,0x40,0x93, + 0x45,0x3b,0x1d,0xba,0x7d,0x33,0xf5,0xcd,0xf2,0xa7,0x5d,0x17,0x44,0xbc,0xf5,0x3b, + 0xfa,0xf6,0xc9,0xc3,0x83,0x3b,0x3b,0xde,0xda,0x3a,0xf9,0xa5,0x4d,0xf,0x69,0x69, + 0xfd,0x6d,0x2e,0x3b,0xfe,0x5d,0xe5,0xdb,0x2a,0xff,0xd9,0xc0,0x26,0x7d,0x6e,0xb7, + 0xd9,0xd7,0x3d,0x34,0x62,0x5b,0xf3,0x33,0x2b,0xae,0xb4,0x38,0xd2,0x22,0x66,0xfc, + 0xba,0xb1,0x6b,0xaf,0x4c,0x1f,0xbf,0xee,0xeb,0x47,0x39,0x1b,0x35,0x7a,0x56,0xf6, + 0x5c,0xad,0x8d,0x7b,0x16,0x5,0xd,0x2f,0x7b,0x75,0x27,0x6a,0x57,0x4b,0xcf,0xd0, + 0x11,0x1e,0xe5,0x5c,0xf3,0xdf,0x8,0x5a,0xb0,0x60,0x7b,0xdc,0x9b,0x16,0x5e,0x6e, + 0xa7,0xa5,0xdb,0xf6,0x45,0x2a,0xbc,0x3c,0x3d,0xb7,0x57,0xef,0xce,0x9b,0xba,0x14, + 0x59,0xd2,0xf8,0xe4,0xfe,0x5b,0xdb,0x23,0x22,0x1e,0x34,0xf1,0xf6,0x9f,0x71,0x7b, + 0x64,0xab,0xf3,0x2f,0x42,0xd7,0x34,0x5e,0xe2,0x94,0xe5,0xd3,0x19,0x67,0x9b,0x7b, + 0x4d,0x8e,0xaa,0x92,0xa5,0x68,0xd7,0xea,0xad,0xf6,0x96,0x5d,0x36,0xa5,0x53,0xa1, + 0xaf,0x63,0x99,0xd9,0x5b,0x56,0x27,0xa6,0xf8,0xeb,0x95,0xd9,0xbe,0x28,0x3c,0xbd, + 0xe3,0xf7,0x9d,0xae,0x4f,0xda,0xb1,0xf3,0xae,0x67,0xbb,0x63,0xe3,0x6f,0x16,0xaa, + 0x91,0x7d,0xd1,0xdf,0x36,0x83,0xf3,0xbd,0x78,0x4c,0x6f,0x5e,0x9d,0x19,0x10,0x53, + 0xe3,0xcf,0xaf,0xb2,0xef,0xfb,0x87,0xc7,0x3c,0x6f,0xe4,0xd5,0xb8,0x98,0x31,0x3d, + 0xc7,0xde,0xee,0xea,0x5d,0x32,0xd4,0xfb,0xc6,0xea,0xc9,0x83,0xfe,0xd9,0x39,0xe4, + 0xa5,0x4d,0xd6,0x89,0xaf,0xd6,0x39,0x86,0xd8,0x15,0xea,0xd5,0xf7,0xc6,0xc3,0x6f, + 0x37,0x5e,0xfd,0x65,0xc0,0xda,0x63,0x5f,0x4d,0xe,0xdf,0xd3,0x7b,0x47,0xc4,0x4e, + 0x56,0xe6,0xee,0x6f,0xa4,0xcc,0xc3,0x66,0x7f,0xe6,0xb0,0xd0,0x57,0xaa,0xe9,0x9d, + 0xbf,0x41,0xb4,0x4d,0xb3,0x83,0x52,0x9f,0x2c,0x53,0x7e,0xcb,0xf4,0xc8,0x7f,0x75, + 0xdc,0xd4,0x2d,0xc3,0x57,0xc7,0xba,0xdd,0x75,0xc,0x59,0x52,0xf6,0xd3,0x27,0xdf, + 0x8e,0xbf,0x50,0x78,0xeb,0x74,0x6c,0x55,0xd5,0xa0,0xf3,0xe4,0x46,0xf9,0xd7,0xc7, + 0x3d,0xf7,0x8d,0x75,0x5b,0xd3,0xd8,0x2d,0x8b,0xc6,0x61,0xe1,0xb1,0x4c,0xdf,0xcd, + 0x2c,0x52,0xc4,0xe9,0x79,0x9f,0x57,0x8f,0x5b,0x76,0xc9,0x3d,0xe6,0xfe,0xf1,0x80, + 0x2,0x7,0xb,0x38,0x2c,0xbc,0xe2,0x91,0xe5,0xfe,0xa7,0x2b,0x83,0x7e,0xb8,0x7e, + 0xc6,0x61,0xe9,0xa0,0x69,0x63,0x58,0x22,0xfe,0xbf,0xbd,0xdd,0xb4,0xf6,0xee,0x19, + 0x7,0x66,0x47,0xaa,0x6d,0xbd,0xec,0x59,0xe3,0x5e,0xf3,0x86,0x4b,0x9c,0xe6,0xc, + 0x1a,0xe7,0xe1,0xb0,0xb0,0xcd,0xba,0x6e,0x2f,0x5b,0xe6,0x39,0xd2,0x27,0x14,0x3f, + 0x76,0x98,0x1c,0xb6,0x67,0x72,0x9f,0x8b,0x1,0x3d,0xca,0xbb,0x86,0xd9,0xf9,0xb4, + 0xbc,0xb3,0xfe,0x2e,0x7f,0x7c,0xff,0xfe,0xda,0x3e,0xfc,0xe5,0xfb,0x25,0x3d,0xdc, + 0x1f,0xd9,0x1f,0x96,0xc2,0xc3,0xab,0x6e,0xad,0xf3,0xd2,0xa6,0x8f,0x34,0x65,0x8a, + 0xc7,0xcc,0x25,0xd8,0x87,0x6b,0xc3,0xbf,0x1d,0x76,0x3e,0xb2,0xcf,0xfb,0x4b,0x60, + 0xae,0x9c,0x9b,0x32,0xbd,0x70,0x9d,0xb2,0xab,0x63,0xe4,0x83,0xfb,0x1d,0xaa,0x6c, + 0xcd,0xfe,0xd2,0xe6,0x6e,0xa6,0xf0,0xf0,0x2c,0x1b,0x46,0xc9,0x11,0x2c,0x6e,0xdc, + 0x7b,0x31,0xc2,0xff,0x52,0xda,0xed,0xce,0x62,0xa7,0x28,0x72,0x97,0x96,0xb7,0xff, + 0xfc,0xe6,0x9f,0x4d,0xb0,0x4f,0x5a,0xeb,0xe6,0xed,0x9b,0xed,0x68,0xd2,0x77,0x56, + 0x5,0xec,0x93,0xc6,0xc8,0x59,0xbb,0x77,0x1a,0xe,0x37,0x5b,0x29,0x5,0xf,0xf, + 0x7a,0x9f,0xd8,0x7f,0xf,0x89,0xd4,0xa4,0xff,0x5d,0x7a,0x8f,0x10,0xd6,0xc7,0xe7, + 0x7d,0x52,0xc6,0xb1,0x60,0x1,0xd1,0xf0,0xe1,0x44,0xad,0x5a,0x11,0xe1,0x5a,0x10, + 0xee,0x11,0xc7,0x81,0x3,0xec,0x1f,0xc5,0x13,0xee,0x95,0x71,0x88,0xf7,0x91,0x87, + 0x72,0xe5,0xca,0xe9,0x48,0xc4,0x81,0x70,0xca,0xe7,0x88,0xc3,0xd0,0xfb,0x41,0x41, + 0x41,0x34,0x6a,0xd4,0xa8,0xf7,0xde,0x57,0x3e,0x37,0xf5,0xbe,0x20,0xf5,0xfb,0x82, + 0xd4,0xef,0xab,0xe3,0x10,0x84,0x77,0x6f,0xdf,0x96,0xcb,0xab,0xe4,0x3d,0xee,0xf1, + 0x5c,0x8d,0x83,0x92,0x8f,0x32,0xef,0x3c,0x78,0x5a,0x8,0xab,0x26,0x3c,0xd7,0xf7, + 0xee,0xfb,0xfc,0xf7,0x48,0xc0,0x7b,0x41,0xfa,0xde,0x35,0xc4,0x7f,0x21,0x47,0x86, + 0xe,0x53,0xfc,0x57,0xbf,0xaf,0x96,0x41,0x73,0xf8,0xaf,0x7c,0x57,0x2d,0x83,0x4a, + 0xbe,0xa9,0xf9,0x8f,0xe7,0x4a,0xfe,0xe3,0x5a,0x2d,0x7f,0xca,0x38,0xd4,0x84,0xe7, + 0x6a,0xde,0xb,0x79,0xd6,0xc7,0x7,0x35,0xe1,0xb9,0x29,0xfe,0xb3,0x7,0x74,0xcc, + 0x9e,0xc8,0xc7,0x86,0xfd,0xa2,0x49,0x48,0x3e,0x8c,0x42,0xd8,0x73,0x1f,0xf6,0xbb, + 0xe4,0xcd,0x68,0x3c,0xa3,0x7e,0xda,0xdf,0x6c,0xe4,0xf7,0xa0,0x67,0xf2,0x33,0xc2, + 0x59,0xe8,0x99,0x45,0x99,0x8d,0x21,0x66,0xe9,0x43,0x9f,0xde,0x31,0xae,0x7f,0x12, + 0xab,0x87,0x4c,0xe9,0xa3,0xc4,0xe8,0x25,0x53,0xfa,0xc9,0x94,0x9e,0x12,0xef,0xab, + 0xeb,0x8a,0x88,0x53,0xbc,0xaf,0xd6,0x59,0xc6,0xf4,0x8e,0x8,0xd7,0xa6,0x4d,0x1b, + 0xa3,0xfa,0x4f,0xf9,0xbb,0x29,0x3d,0xb6,0x64,0xc9,0x12,0x5e,0x17,0xc5,0x3b,0x6a, + 0x7d,0xa6,0xfe,0xdd,0x1c,0xbd,0x88,0x77,0x8c,0xe9,0x47,0xe5,0xef,0xc6,0xe2,0x53, + 0xd7,0x75,0x65,0x9d,0x15,0xef,0x28,0x7f,0xd7,0x57,0xef,0xf5,0xc5,0x69,0x48,0xff, + 0x8a,0xf7,0x4,0xe1,0xde,0x5c,0x3d,0x6c,0x8e,0x3e,0x4e,0x8c,0x5e,0x36,0x47,0x3f, + 0x1b,0xd3,0xd3,0xa6,0xe4,0xcf,0x94,0xbe,0xd6,0xc7,0x3b,0x63,0xf2,0x97,0x94,0xf8, + 0x8c,0xc9,0x9f,0xa1,0xf8,0xcc,0xb1,0xb,0xfa,0xe4,0xf,0xbf,0xab,0x31,0x34,0x66, + 0x27,0x4c,0xc9,0x9f,0x31,0x79,0x31,0xc7,0xee,0xa8,0xed,0x8f,0x52,0x6,0x5,0x25, + 0xd6,0xe,0x19,0xb3,0x47,0xc6,0xe4,0x4f,0xc4,0x69,0x88,0xf0,0xbb,0xb9,0xf2,0x7, + 0xcd,0x16,0xe2,0xe6,0x4d,0x3e,0x92,0x2b,0x7b,0xee,0xa4,0x97,0x7c,0x18,0x85,0xb0, + 0xdf,0x7d,0x98,0xb1,0x62,0x97,0x5a,0x62,0xe1,0x73,0x29,0xc3,0xb8,0xf2,0x78,0x60, + 0xaf,0x1c,0x19,0x55,0x95,0xe2,0xed,0x56,0xdf,0xac,0xe6,0x48,0x5a,0x4a,0x1f,0xfa, + 0x6d,0x99,0x46,0x33,0x88,0x6c,0x6d,0x7b,0x9b,0xb4,0x69,0xfa,0xed,0x9a,0x7c,0xc8, + 0xef,0xeb,0xb7,0x6d,0xd9,0xb2,0xdd,0x32,0xcb,0xc6,0xa9,0x65,0x26,0x61,0xbe,0x99, + 0x3f,0x50,0xe1,0x29,0xd5,0xae,0xfd,0x8c,0x5a,0xb6,0xc,0xa7,0xa6,0x4d,0x5f,0xf0, + 0xb3,0xab,0xeb,0x3f,0xa,0x3d,0x46,0xb4,0x79,0x73,0x1e,0x9d,0xc,0x2a,0x69,0xd3, + 0xa6,0x6c,0x34,0x7d,0xba,0x8d,0x51,0x5b,0x8a,0xb8,0xbe,0xf9,0xe6,0x66,0x2,0xfa, + 0xfa,0xeb,0x7b,0x34,0x68,0xd0,0x4b,0x5d,0x1a,0x9b,0x37,0x17,0x37,0x68,0x53,0x91, + 0x86,0xb1,0xf8,0x11,0x17,0x48,0xa9,0xdf,0xc4,0x33,0x11,0xbf,0x31,0x1b,0x6b,0xac, + 0x5e,0x89,0xba,0x8a,0x3a,0xf,0xbd,0x24,0x8,0xef,0x7f,0xf3,0xcd,0xef,0xba,0xf8, + 0x85,0xfd,0x51,0x87,0x49,0x4c,0xfc,0x6a,0xfd,0x7,0x3e,0xa9,0xe3,0xd7,0x67,0x83, + 0x13,0x13,0xbf,0x20,0x43,0xf9,0x57,0x87,0x31,0x37,0x7e,0x63,0xfa,0x71,0xed,0xda, + 0xa1,0x3a,0x39,0x57,0xdb,0x68,0xe1,0x63,0xeb,0x93,0xd1,0x78,0xfd,0xab,0x5f,0x5f, + 0x96,0x2a,0xf5,0x84,0xd6,0xac,0x99,0xac,0xb7,0xcd,0xa4,0x8c,0xfb,0xe1,0x43,0x5b, + 0xbd,0x76,0x5b,0xa4,0x21,0xeb,0x35,0x7d,0x94,0xd0,0x7e,0xeb,0x93,0xff,0xf3,0xe7, + 0x6d,0xd,0xea,0x51,0x1c,0x8b,0x17,0xbf,0x7d,0xcf,0x2f,0x50,0xd6,0xab,0xa4,0xf8, + 0x8,0xfa,0xe2,0x86,0xac,0xac,0x5c,0x79,0x9b,0x93,0xa8,0x63,0xea,0x34,0xcc,0xd1, + 0xd9,0xfa,0xf0,0x15,0xf1,0x29,0xeb,0xe,0xee,0x97,0x2f,0x7f,0x92,0x20,0xd,0x7d, + 0xf1,0x18,0x3a,0x94,0xf1,0x43,0x4f,0x1a,0xab,0x5f,0xc9,0x8f,0x7f,0x88,0xde,0xba, + 0x3,0x5e,0x99,0x8a,0xdf,0x90,0x8e,0xd6,0x97,0xff,0xf7,0xeb,0x57,0x3c,0x6,0xfa, + 0xe2,0x50,0xeb,0x6d,0x43,0xf5,0xb,0xf1,0x8b,0x34,0xf4,0xd5,0x2f,0xc4,0xaf,0x8c, + 0x43,0xe9,0x83,0x40,0x77,0x9a,0xd2,0x9f,0xca,0x34,0xc0,0x2b,0x71,0xfe,0xe4,0x93, + 0x27,0x46,0x7d,0x92,0xb3,0x67,0x33,0xf3,0x67,0x5b,0xb7,0x66,0x4d,0x94,0x5f,0xac, + 0x24,0xa5,0x8f,0x72,0xf5,0xaa,0xfe,0x3a,0x66,0xac,0xe,0x98,0xe3,0xff,0x20,0x9c, + 0xb1,0x3a,0x66,0x28,0x6e,0x65,0x1a,0x20,0xd4,0x37,0xf5,0xb5,0x32,0x5c,0x62,0xea, + 0x57,0x4a,0x1e,0xb0,0x76,0xe1,0x59,0xec,0x29,0x4c,0xb2,0x61,0xbe,0x95,0x86,0xf9, + 0x4f,0xfa,0x9,0xbf,0x21,0x4c,0x98,0x64,0xcf,0xae,0x1d,0x78,0xff,0x80,0x4c,0xf, + 0xc9,0x47,0x73,0x4c,0x11,0x8e,0x85,0x61,0xf1,0x85,0x17,0x73,0x40,0xd4,0xdc,0xf, + 0x73,0x66,0xe4,0x26,0xc5,0xfb,0x61,0x3e,0xb9,0xd,0x67,0x27,0x85,0xc9,0xe0,0xe1, + 0xe3,0xe3,0x43,0x21,0x21,0x21,0x16,0x27,0xc4,0x2b,0xc8,0x58,0x1e,0xf0,0x7b,0x4a, + 0x1c,0x49,0xc9,0x83,0x8,0xa7,0x7c,0xc7,0x12,0xd7,0x49,0xc9,0x83,0xa5,0xaf,0x15, + 0xe9,0x1b,0xcd,0x83,0x32,0xac,0x25,0xf3,0xa0,0xe6,0x8d,0x31,0x1e,0x98,0x2b,0x63, + 0x89,0x91,0x5,0x73,0xe4,0x41,0x99,0x3e,0x7e,0x37,0x76,0x56,0xf1,0xd3,0x28,0x99, + 0x2b,0x8f,0x49,0x49,0xdf,0xd4,0x91,0xd4,0xf4,0x45,0x38,0x63,0xf5,0x5b,0x89,0xa9, + 0x21,0x4a,0xe9,0xf4,0x2d,0xc7,0xff,0xf7,0x7d,0x67,0xbc,0xa3,0xcf,0x5f,0xd6,0x27, + 0x4f,0xc6,0xc8,0xb4,0xfc,0x25,0x7e,0x9c,0x28,0x29,0x87,0xbe,0xf4,0x93,0x33,0xce, + 0x64,0x6e,0xf9,0x95,0x7c,0x30,0x94,0x7e,0x12,0xc7,0xa9,0x12,0x4d,0x2a,0xd9,0x49, + 0x90,0xfe,0xb6,0x6d,0xdb,0xf4,0x8e,0x73,0x29,0x9f,0x2b,0xd3,0x4f,0x6c,0xf9,0x45, + 0xba,0xa2,0x1e,0xeb,0x4b,0x5f,0x90,0x3a,0x7d,0x41,0xca,0xf4,0x93,0x6a,0x93,0xd5, + 0xb2,0x9f,0xd4,0x71,0x36,0x63,0x87,0x48,0x53,0xcd,0x77,0x43,0x75,0x3f,0xb1,0xe3, + 0x74,0xc6,0x78,0xac,0x4c,0x5f,0xe8,0x40,0x73,0xca,0x6f,0x6e,0x3f,0x72,0xa3,0x46, + 0x8d,0xc,0x92,0x31,0x1b,0xa6,0x2f,0x7d,0x73,0xc6,0x9,0x8d,0xa5,0x67,0x2a,0x7d, + 0x53,0xfc,0x37,0x25,0xff,0xea,0xf4,0x85,0x1c,0x98,0x9b,0xbe,0x29,0xfe,0x9b,0x23, + 0xff,0xca,0xb4,0x95,0x3a,0xd0,0x92,0xfc,0x4f,0xca,0x38,0xa7,0x25,0xd2,0x57,0xe6, + 0x21,0x31,0xe3,0xa4,0x96,0x92,0x3f,0x65,0x1e,0xf4,0xf4,0x63,0x27,0x4b,0xfe,0xf5, + 0xe9,0x5d,0x63,0xfe,0x1f,0xe,0x43,0xef,0x9b,0x4b,0xca,0xf7,0x85,0xcd,0x4b,0x6a, + 0xfa,0x49,0xd1,0xef,0xea,0xf4,0x95,0xfa,0x30,0xb1,0xe9,0xa7,0x54,0x9b,0xcc,0x58, + 0xfa,0xca,0x3c,0x58,0xfa,0x30,0x37,0x7d,0x91,0x7,0x4b,0x97,0x5f,0x29,0xf,0xa6, + 0xd2,0x17,0x79,0x48,0x9,0x4a,0x90,0x86,0x24,0x79,0xb3,0x93,0x2b,0x23,0x27,0x76, + 0xed,0x10,0x22,0x49,0xf6,0x61,0x92,0x64,0xc3,0x48,0xa3,0x26,0xf6,0x9b,0xc6,0x47, + 0x7c,0x94,0x31,0x9e,0x6c,0xd8,0x33,0x9b,0x10,0xed,0x59,0x52,0x91,0xf8,0x2d,0x5c, + 0x41,0x51,0x8c,0x62,0x19,0xbd,0x63,0x69,0xa1,0x9f,0x2,0x63,0x45,0x7d,0x25,0x45, + 0x3f,0x45,0x59,0xa3,0x6c,0x49,0x52,0xbd,0x4c,0x21,0x4a,0xd4,0xd1,0xb9,0x73,0x67, + 0x4a,0xb,0x34,0x6c,0xd8,0x30,0x4e,0xc5,0x8a,0x15,0x33,0xbb,0xc,0x53,0xa7,0x4e, + 0xa5,0xcb,0x97,0x2f,0xa7,0x9,0x12,0xf9,0x7,0xe5,0xca,0x95,0xcb,0xac,0x32,0x4c, + 0x9c,0x38,0x91,0xbf,0x1b,0x16,0x16,0x46,0x31,0x31,0x31,0x14,0x1b,0x1b,0x9b,0x22, + 0x3a,0xc6,0xd8,0x61,0xa8,0xc,0x76,0x76,0x76,0x66,0x95,0x61,0xde,0xbc,0x79,0xfc, + 0xdd,0x9,0x13,0x26,0xe8,0x64,0x10,0x47,0x6a,0xdf,0xeb,0x2b,0x43,0x99,0x32,0x65, + 0xcc,0x2e,0x3,0x8e,0xb3,0x67,0xcf,0xea,0x74,0xa1,0xb8,0x17,0xe9,0xa4,0xf4,0xbd, + 0x21,0x1c,0x24,0x33,0xeb,0xb4,0x28,0x83,0x38,0x44,0x1a,0xa9,0x79,0x6f,0xa9,0x32, + 0xa4,0x45,0x1c,0xcc,0xd5,0x4b,0x93,0x27,0x4f,0x4e,0x33,0x38,0x28,0xf3,0x6f,0x8e, + 0x5e,0xfa,0xfc,0xf3,0xcf,0x9,0x18,0x44,0x45,0x45,0x71,0x9e,0x58,0x93,0xf4,0xe5, + 0xdf,0x54,0x19,0x90,0x7f,0x8c,0xa1,0x89,0xfc,0x9f,0x3e,0xfd,0x6b,0xa2,0x9,0xef, + 0xe1,0xfd,0xe4,0x10,0xe2,0xb8,0x78,0xf1,0xe2,0x7b,0x79,0x87,0xbe,0x77,0x70,0x70, + 0x30,0x98,0xff,0xa1,0x43,0x87,0xd2,0xc2,0x85,0xb,0x13,0xe4,0x1f,0x78,0xf6,0xe9, + 0xd3,0x47,0x77,0xd,0x5b,0x29,0xae,0xbb,0x76,0xed,0xaa,0xbb,0x6e,0xd1,0xa2,0x5, + 0xbf,0x56,0xea,0xc5,0xa4,0x12,0xd2,0xd7,0x97,0xff,0x11,0x23,0x46,0x18,0xe5,0xbf, + 0x39,0xf9,0x37,0x76,0xad,0xac,0x87,0x12,0xbd,0x9f,0x27,0x7d,0x64,0xc9,0xfc,0xf, + 0x1e,0xfc,0x39,0x6b,0xe3,0x59,0x26,0xff,0xe6,0xe4,0xd3,0x50,0x38,0x43,0xf9,0x1f, + 0x39,0x72,0xa4,0x49,0xfe,0x7f,0xf5,0xd5,0x62,0xbd,0xf5,0x57,0xc8,0xb6,0x29,0x12, + 0xf9,0xc7,0x59,0x49,0x86,0xf2,0xaf,0x2f,0x9c,0xb1,0xfc,0x9b,0x92,0xff,0x95,0x2b, + 0x97,0x27,0xc8,0xbf,0x32,0x6e,0x7d,0xf9,0x45,0xb9,0xce,0x9d,0xbb,0xf4,0x5e,0xfe, + 0x4d,0xe5,0xd3,0x58,0xb9,0x52,0x33,0xff,0x86,0xf8,0x9f,0x1c,0x4a,0xaa,0xfc,0x98, + 0x9a,0x8f,0x86,0xfc,0x99,0x9a,0x8f,0xa6,0x2e,0x73,0x52,0x8,0x79,0x4f,0x6c,0xfd, + 0xb5,0xe4,0x7c,0xb7,0xa4,0xd8,0xd,0x35,0x25,0x2e,0xff,0x96,0x9f,0x4f,0x27,0x78, + 0x98,0x1c,0xfa,0xe5,0x97,0x5f,0x12,0xe4,0x1f,0xfd,0xa0,0x6a,0xf9,0x4f,0xa9,0xf9, + 0x7a,0xfd,0xfa,0xf5,0xb3,0x8,0xa9,0x71,0x50,0xf3,0x3f,0xa5,0xe6,0x3,0xa2,0xfd, + 0x4,0xb2,0xb5,0xb5,0x4d,0x14,0x89,0x77,0xc4,0x59,0x59,0x86,0xbe,0x7d,0xfb,0x52, + 0x8e,0x1c,0x39,0xc,0xe6,0x5f,0xf4,0x17,0x9b,0x9a,0x6f,0xa8,0x2f,0x8c,0x3a,0xff, + 0xd5,0xab,0xd7,0x64,0x54,0x9d,0xaa,0x55,0xab,0xc6,0xcf,0xfa,0xae,0xd5,0xe4,0xe2, + 0xe2,0xa2,0xa3,0xaa,0x55,0xab,0xf2,0xb3,0xba,0xc,0xf9,0xf3,0xe7,0x37,0x99,0x7f, + 0x53,0xf3,0x19,0xf5,0x85,0x51,0xe7,0xdf,0x12,0x3e,0xe8,0x98,0x31,0x63,0xde,0x2b, + 0x43,0xd1,0xa2,0x45,0xcd,0xca,0xbf,0xb1,0xf9,0x92,0xfa,0xc2,0xa8,0xf3,0xff,0xf6, + 0xed,0x5b,0xb3,0x28,0xa1,0x2d,0x3c,0x4d,0x67,0xce,0x9c,0xe1,0xe7,0xe0,0xe0,0x60, + 0x9e,0x7f,0x65,0x19,0xd4,0x79,0xd7,0x97,0x7f,0xf5,0x98,0x83,0xa1,0xf9,0x98,0xca, + 0x30,0xfa,0xe6,0x63,0x2,0x1b,0x53,0x84,0xfc,0x9f,0x3c,0x79,0x92,0xd9,0xef,0x73, + 0x3c,0xff,0xc2,0x7e,0x29,0xf9,0xaf,0x2c,0x83,0x64,0xa0,0x1d,0x99,0x12,0xf3,0x3d, + 0x1b,0x36,0x6c,0x68,0x94,0x44,0xfe,0x4f,0x9d,0x3a,0xc5,0xf3,0x8a,0x63,0xc6,0x8c, + 0x19,0x9c,0x44,0x19,0x94,0xf9,0x7,0x69,0x34,0x1a,0x83,0xb6,0xd7,0x92,0xf3,0x49, + 0x4d,0xe5,0x5d,0xe4,0xff,0xdd,0xbb,0x77,0x3a,0x5e,0xe3,0x80,0xec,0x18,0xcb,0xbf, + 0x21,0xfe,0xe3,0xb0,0xd4,0x7c,0x55,0x73,0xf2,0x2e,0xf2,0x2f,0xda,0xee,0xa0,0x5f, + 0x7f,0xfd,0x55,0xd7,0x6,0xd6,0x27,0x3f,0xc6,0xf2,0x6f,0xa9,0xf9,0xb0,0xea,0x3c, + 0xd6,0xaf,0x5f,0x3f,0x1,0xe9,0xe3,0x7f,0x68,0x68,0xa8,0x51,0xfd,0x63,0x2a,0xff, + 0x49,0x99,0x6f,0x6b,0x2e,0x8f,0x5,0x35,0x68,0xd0,0x80,0x93,0xbe,0xfc,0x43,0x66, + 0x44,0x7e,0x8d,0xd5,0x5f,0x73,0xf2,0xf,0x3f,0xd3,0x98,0xfd,0x4a,0x6a,0xfe,0xcd, + 0x95,0x7f,0x53,0xf5,0xd7,0x74,0xfe,0x87,0xe8,0xb5,0x4d,0xea,0xf9,0xc2,0xfa,0xf2, + 0xa3,0xd4,0x45,0xca,0xe7,0x8d,0x1a,0x25,0xc,0xd7,0xa4,0x49,0x93,0x4,0xf2,0x2f, + 0x74,0x67,0x52,0xeb,0xaf,0x3e,0xfe,0x9b,0x33,0x1f,0x59,0x9d,0x77,0xb5,0xf,0xdd, + 0xb0,0x61,0x63,0xbd,0xf9,0x6f,0xda,0xb4,0xa9,0xde,0xfa,0x2b,0xca,0x90,0xd8,0xfa, + 0xab,0x6f,0xbe,0xb3,0x21,0xfb,0x85,0xfc,0x9b,0x3b,0xdf,0xb9,0x41,0x83,0x26,0xda, + 0xfc,0x37,0xd0,0x9e,0x1b,0x51,0xbd,0x7a,0xf5,0xf4,0xca,0x8f,0xb2,0xe,0x24,0xa7, + 0xfe,0x5a,0x72,0x3e,0xb5,0xb9,0xf2,0x8f,0xbc,0xeb,0xa3,0xc4,0xe8,0x4f,0x4b,0xcf, + 0xd7,0x4e,0x4c,0xfd,0xb5,0x44,0xfe,0x95,0x65,0x30,0x36,0x1f,0x1c,0xe9,0x9a,0x9a, + 0xf,0x9e,0x58,0xfb,0x85,0xbc,0xa,0xbd,0xa9,0x24,0x3c,0x4f,0x4c,0xfe,0x45,0x19, + 0xc,0xcd,0x37,0x57,0xa6,0x6d,0xae,0xfd,0x32,0x97,0xff,0x4a,0xdd,0x9,0xb2,0xb7, + 0xb7,0x4f,0x52,0xfe,0xc5,0x31,0x75,0xea,0x1c,0x8a,0x88,0x88,0xa0,0xbd,0x7b,0xf7, + 0xf2,0x77,0x2c,0xa1,0xef,0xf5,0xe5,0x1f,0x63,0x6e,0xf0,0x95,0x5f,0xbd,0x7a,0xa5, + 0xab,0xb3,0x42,0x7f,0x26,0x27,0xff,0xe3,0xc6,0xd,0x49,0x90,0xff,0x94,0x20,0x21, + 0x3f,0xf0,0x9f,0x95,0xf9,0x17,0x76,0x38,0x39,0xf9,0x9f,0x38,0x71,0x92,0x2e,0xff, + 0xe6,0xf8,0xf1,0x49,0xa5,0xd7,0xaf,0x5f,0xf3,0x3e,0x6,0xe4,0x5f,0x4d,0xc9,0xcb, + 0xff,0x44,0x5d,0xfe,0xd5,0x14,0x14,0x64,0x98,0xf4,0x85,0x7,0xed,0xd9,0xb3,0x47, + 0xfb,0x6e,0x10,0xbf,0xde,0xbd,0x7b,0x37,0x1d,0x3a,0x74,0x88,0x8e,0x1f,0x3f,0x4e, + 0x7,0xf,0x1e,0xa4,0x23,0x47,0x8e,0xd0,0xb1,0x63,0xc7,0xe8,0xc4,0x89,0x13,0xba, + 0x36,0x58,0x72,0xf2,0x8f,0x23,0x20,0x20,0x80,0x97,0xc1,0xda,0x94,0xd4,0xfc,0x8b, + 0x32,0x80,0x37,0xd6,0x24,0x65,0x19,0x12,0x9b,0x7f,0x1c,0x18,0xf,0xfb,0xe1,0x87, + 0x1f,0xd2,0x44,0x19,0x92,0x92,0x7f,0x1c,0x81,0x81,0x81,0x56,0xc7,0xa1,0x6d,0xdb, + 0xb6,0x49,0xca,0xbb,0x38,0xa6,0x4f,0x9f,0x4e,0xa9,0x49,0xb0,0x3,0x18,0xcb,0x85, + 0x2e,0x99,0x39,0x73,0xa6,0xde,0xbc,0x87,0x30,0xb2,0x67,0x3a,0xd8,0x87,0x9d,0x6d, + 0xe4,0xb1,0x57,0x6c,0x97,0x22,0x87,0xd5,0x3e,0xc7,0x5e,0x2a,0x8,0x27,0xb9,0x12, + 0x85,0xe1,0xec,0x44,0x14,0x8e,0xb3,0x3,0x51,0x94,0x24,0x47,0xc0,0xef,0x6d,0x92, + 0x7f,0xe,0xd3,0x9e,0x43,0xb4,0x67,0x1f,0x73,0xce,0xf6,0xf1,0xe7,0x10,0xed,0x39, + 0x4c,0x75,0xe,0x51,0x85,0x33,0xf7,0xac,0x8e,0x2f,0x5c,0x7b,0x8e,0x35,0x71,0x7e, + 0xa7,0x3d,0x93,0x38,0xfb,0x68,0xcf,0x21,0x32,0xdf,0x78,0x84,0x4e,0xf2,0x7a,0x32, + 0x37,0x89,0xcf,0x17,0xd3,0xcd,0xd3,0x92,0x9a,0x48,0x86,0x8e,0x14,0xb3,0xc5,0xa9, + 0x44,0x49,0x3e,0x52,0x62,0xde,0x60,0x6a,0x91,0x62,0x6e,0x62,0x92,0x79,0x90,0xde, + 0xcb,0x9f,0x5c,0x1e,0xa4,0xe7,0xf2,0x5b,0x82,0x7,0xca,0xf2,0xa7,0xa7,0x43,0x5d, + 0xfe,0xa4,0xf2,0x40,0x59,0x7e,0x55,0x1c,0x3c,0x9d,0xb4,0xfa,0x4c,0x9f,0xc,0x24, + 0x97,0x7,0x22,0xd,0x65,0x5c,0x69,0xf9,0x99,0xa5,0x79,0xa0,0x94,0x2d,0x65,0x9a, + 0x69,0xf9,0x59,0x4a,0xc9,0x81,0x38,0x24,0x85,0xfc,0xa5,0xd5,0x67,0x19,0x75,0x21, + 0xa3,0x2e,0xa4,0xa4,0x1c,0x24,0x45,0x26,0xad,0xf5,0x4c,0x5f,0xf9,0x93,0xc2,0x3, + 0x21,0x3,0xd6,0xf6,0x6f,0x92,0xeb,0x17,0x25,0x95,0x7,0x29,0x59,0xfe,0x94,0x38, + 0xcc,0x29,0xbf,0x82,0x7,0x49,0x2a,0x3f,0xde,0x55,0xea,0x9a,0xc4,0xde,0xeb,0xf3, + 0xb1,0x2c,0x45,0xea,0xbc,0xa6,0xf9,0xf2,0xe3,0xef,0xc0,0x7f,0xb7,0xfc,0xc3,0xd9, + 0x9f,0x44,0xff,0xdd,0xf2,0x1b,0x2b,0x87,0xa1,0xc3,0xda,0xe5,0xb7,0x94,0x5e,0x36, + 0x56,0xce,0xa4,0xf0,0x26,0xb5,0xca,0xaf,0x8e,0x2b,0x39,0xe5,0x37,0x91,0x3f,0xbd, + 0x64,0xec,0x9d,0xf4,0x56,0xfe,0xc4,0x96,0xd1,0x9c,0x7a,0xf3,0x21,0x94,0x3f,0xa9, + 0x64,0xb9,0xf2,0x1b,0xdb,0x47,0x5c,0x26,0x65,0xf9,0x4d,0xcd,0x79,0xd7,0xb7,0x7, + 0x4e,0xda,0x2d,0xbf,0xf1,0x7d,0xcf,0xe3,0x29,0x7e,0xaf,0x1f,0x53,0x73,0xe6,0xd5, + 0x73,0x6a,0xd2,0x6e,0xf9,0xe5,0xb2,0x1b,0x9b,0xa7,0xa2,0x9c,0xb3,0xa8,0xdc,0x8f, + 0xd9,0x1c,0x52,0xf2,0xc1,0x58,0x1d,0x4f,0x2a,0xe9,0xab,0x67,0xe6,0x97,0xdf,0xfc, + 0xb2,0x2b,0x79,0x60,0x6e,0xd9,0xd5,0xfb,0x80,0x58,0xda,0xa6,0x1a,0xd2,0x33,0xe6, + 0x94,0xdf,0xd8,0xfc,0x24,0xf5,0x3c,0x1f,0x63,0x3c,0x30,0x34,0xef,0x27,0xad,0xf1, + 0xc0,0x9c,0xf2,0x8b,0x3a,0xae,0xde,0xdf,0x44,0x5f,0x38,0x51,0x26,0x43,0xf3,0x86, + 0xd4,0x3c,0x48,0xc9,0x3a,0xa0,0xaf,0x3e,0x24,0xb6,0xfc,0xa2,0xec,0xea,0xfd,0x85, + 0xc4,0x1e,0x3f,0x6a,0x1e,0x28,0x75,0x9b,0x3a,0xbc,0x3e,0x1e,0x24,0x67,0x2f,0xae, + 0xa4,0x90,0x9a,0x7,0xe6,0x96,0x5f,0xec,0x9,0x2b,0xf6,0xa9,0x31,0xc4,0x3,0xf5, + 0x77,0x12,0xd4,0xe1,0xd3,0x42,0xf9,0x95,0x3c,0x48,0x4c,0xf9,0xc5,0x5c,0x5d,0x90, + 0x28,0x93,0xb1,0xf2,0xeb,0xb,0x6f,0xa8,0xfc,0x29,0x2d,0xff,0xaa,0xf2,0xaa,0x7d, + 0xf,0xab,0x97,0x3f,0x35,0x75,0x9f,0x52,0xe,0x12,0x2b,0xff,0xca,0xb9,0xce,0xe6, + 0xc8,0xbf,0x3a,0x7c,0x5a,0x28,0xbf,0xca,0xe7,0x92,0xcc,0x29,0xbf,0x7a,0xef,0x75, + 0xf1,0xad,0xb,0x43,0xe5,0x57,0xef,0xc3,0x2e,0xbe,0xbd,0x62,0xa8,0xfc,0x49,0x3d, + 0x2c,0x69,0xfb,0xcc,0xe1,0xc1,0xfb,0x14,0x1f,0x4e,0x5d,0x26,0x7d,0xa4,0xf6,0x11, + 0x8d,0xed,0x85,0x66,0x8a,0xf4,0x95,0x5f,0x9f,0xae,0x4b,0x6e,0xf9,0xe3,0x79,0xf0, + 0x3e,0x29,0xc3,0xe8,0xf3,0x6f,0xd5,0x64,0xc8,0xff,0xb1,0x44,0xf9,0x71,0xe8,0xd3, + 0x73,0x89,0x2d,0xbf,0x21,0x1e,0x18,0x23,0x43,0x6b,0xad,0x8c,0x91,0x98,0x7,0x9e, + 0x94,0xb2,0x1b,0x2a,0xbf,0xb2,0xbc,0xc9,0x29,0xbf,0xe0,0x81,0xf9,0xfe,0xbf,0x47, + 0xa2,0x78,0xa0,0x9c,0x7,0x6f,0xc9,0xf2,0x2b,0x9f,0x59,0x12,0x7f,0x7d,0xf3,0xfc, + 0xf5,0xf9,0xc8,0xc6,0xd6,0xac,0xa9,0xe7,0xff,0x27,0xa7,0xec,0x86,0xea,0xbf,0x21, + 0xdd,0x68,0x9,0xfd,0x67,0x8e,0xff,0x6f,0x6a,0xdd,0x9b,0x25,0xca,0x6d,0xac,0xfc, + 0x96,0xd2,0xff,0x49,0xf1,0xff,0x45,0x58,0x4b,0x94,0xcd,0x5a,0xfa,0x3f,0xb9,0xfe, + 0x7f,0x6a,0xf2,0x20,0x25,0xf4,0x7f,0x72,0xfd,0x5f,0x73,0xcb,0x6f,0x6a,0x1f,0x58, + 0x6b,0xe9,0xff,0xd4,0x28,0xbf,0x39,0xfb,0xd0,0x26,0xb5,0xfc,0xc9,0xd5,0xff,0xc9, + 0xf5,0xff,0xe5,0xb6,0xac,0x79,0xe5,0x4f,0x9,0xff,0x2f,0xb9,0xfa,0x3f,0x29,0xfe, + 0xbf,0xbe,0xfe,0xf,0x63,0x32,0xaf,0xef,0x5b,0x73,0x96,0x2a,0x7f,0x72,0xf5,0xbf, + 0x31,0xbb,0x66,0xca,0xff,0x17,0xfb,0x1d,0x1b,0xf2,0xff,0xf5,0xf9,0xc0,0xe9,0xa1, + 0xfc,0xe6,0xfa,0xff,0xa2,0xfc,0x86,0xfc,0x7f,0x63,0x7d,0xc0,0x69,0xa5,0xfc,0x82, + 0x7,0x89,0xe9,0xfb,0x16,0x65,0xc7,0x7b,0xd6,0xf4,0xff,0x2d,0xdd,0xfe,0x4d,0x4c, + 0xfb,0x47,0xb9,0x66,0xd7,0x5a,0xfe,0xbf,0xa5,0xca,0x2f,0x78,0x60,0x6a,0x9d,0xaf, + 0x7a,0xcd,0xaf,0xb2,0x7f,0x23,0xb5,0xfd,0x7f,0xc9,0xcc,0xfe,0xce,0xc4,0xb4,0xff, + 0x94,0x7c,0x30,0x45,0x88,0x2b,0x3e,0x5f,0xa9,0xef,0xff,0x2b,0x7d,0x3f,0x7d,0xfd, + 0x7c,0x49,0x2d,0xbf,0xfa,0xc0,0x7b,0x86,0xfc,0x6e,0x4b,0x94,0x29,0x39,0xe5,0x57, + 0xcb,0x7b,0x46,0xf9,0x53,0xb7,0xfc,0xa9,0x4d,0xc6,0xca,0x9f,0x54,0xff,0x37,0xa9, + 0xe5,0xd7,0x17,0x7f,0x4a,0x93,0xba,0xfc,0xfa,0x8e,0xd4,0x2a,0x7f,0x5a,0xa7,0x8c, + 0xf2,0x5b,0xa6,0xfc,0x4a,0x1e,0xa4,0xa7,0xc3,0x92,0xe5,0x17,0x3c,0xb0,0x36,0xa6, + 0x89,0x21,0x7d,0x3c,0x48,0x4e,0xf9,0x3f,0x4,0x1e,0x24,0xb7,0xfc,0xe9,0x9d,0x7, + 0x96,0x28,0x7f,0x7a,0xe6,0x81,0xa5,0xca,0x2f,0x78,0x90,0xde,0x48,0x6f,0x39,0xf8, + 0x7f,0x6f,0xed,0x6f,0xae,0xda,0xb3,0x93,0xf6,0x2c,0xf6,0xb3,0xb5,0xd7,0x9e,0x6d, + 0xe4,0xfd,0xb,0xf8,0xf7,0x6b,0xf9,0x21,0xef,0x5f,0xc0,0x22,0x8,0xd7,0x46,0x10, + 0xa5,0x8d,0x20,0x56,0x1b,0x81,0xf6,0x6c,0x6f,0xa9,0xb3,0x36,0x1d,0x7b,0x6d,0xba, + 0xf6,0xda,0x7c,0xd8,0xfb,0x68,0xcf,0x52,0xd2,0xce,0xe,0xe2,0xec,0xa3,0x3a,0x6b, + 0xe3,0x77,0x8,0x53,0xdd,0xab,0xc3,0xa9,0xe3,0x31,0xf7,0x6c,0x28,0x3d,0x6d,0x39, + 0x1d,0x28,0xb1,0x67,0x1f,0xed,0x39,0x44,0x7b,0xe,0xd3,0x9e,0xc3,0xb5,0xe7,0x28, + 0xed,0x59,0x66,0xa8,0x13,0xf6,0x89,0x68,0xc5,0x68,0x91,0x14,0xbf,0x4f,0x44,0xdf, + 0x4e,0xd2,0x7b,0x47,0xb6,0x6c,0x39,0xac,0xe2,0xf3,0xa7,0x2,0x5d,0x64,0x54,0xe0, + 0xfd,0x12,0x27,0xee,0x48,0x6f,0x3a,0xd1,0x1c,0x42,0x99,0xdc,0xdc,0xdc,0xc0,0xa3, + 0x7,0xc9,0xe5,0xd1,0x87,0xc8,0x1f,0x6f,0x6f,0x6f,0xce,0x23,0x57,0x57,0xd7,0x64, + 0xcb,0xd1,0x87,0xca,0x1f,0xc1,0xa3,0xe4,0xca,0x91,0xe0,0xcf,0xad,0x5b,0xb7,0xe8, + 0xde,0xbd,0x7b,0xe9,0x96,0x6e,0xde,0xbc,0xc9,0xf7,0xb5,0x45,0x59,0xf0,0x3d,0x10, + 0x25,0x8f,0x92,0x23,0x47,0x78,0x1f,0x7b,0xae,0x45,0x47,0x47,0xf3,0xbd,0x7,0x1f, + 0x3c,0x78,0x40,0x57,0xaf,0x5e,0xe5,0x74,0xe7,0xce,0x1d,0x7a,0xfe,0xfc,0x79,0x82, + 0x67,0x7f,0xfd,0xf5,0x98,0x7f,0x5b,0xb,0x61,0xff,0xfe,0xfb,0x6f,0x45,0xd8,0xbb, + 0x7c,0xdf,0x39,0x3c,0x47,0x18,0xf5,0x73,0xec,0xeb,0x8c,0x32,0xe0,0x19,0xce,0x57, + 0xae,0x5c,0xe1,0xf1,0xbc,0x7e,0xfd,0x46,0x17,0x16,0xe9,0x88,0x38,0x12,0xc6,0x2d, + 0xe7,0x43,0x19,0xef,0xfd,0xfb,0xf7,0xe9,0xc2,0x85,0xb,0xfc,0x37,0xf1,0xcc,0x3f, + 0x20,0x80,0xd6,0xac,0x59,0x43,0x3b,0x77,0xee,0xd4,0xf1,0x27,0xb9,0x72,0xc4,0xde, + 0x7f,0xb1,0x76,0xed,0x5a,0xfa,0xee,0xbb,0xef,0x28,0x77,0xee,0xdc,0xfc,0x5b,0x3e, + 0x22,0xde,0x5d,0xbb,0x76,0x53,0xcf,0x5e,0x3d,0x69,0xf3,0xe6,0x2d,0xba,0x67,0xab, + 0xbe,0xfd,0x96,0x3c,0x3a,0x78,0xd0,0xdc,0xb9,0x73,0xf9,0x5e,0xa9,0x4b,0x97,0x2e, + 0xe5,0xf4,0xcd,0x37,0xdf,0x50,0xbb,0xf6,0xed,0x68,0xd6,0xac,0x59,0xb4,0x7f,0xff, + 0x81,0xf7,0x9e,0x7f,0xf9,0xe5,0x97,0xf4,0xfd,0xf7,0x72,0xf8,0x8d,0x1b,0x37,0xd2, + 0xa8,0xd1,0xa3,0x68,0xe0,0xc0,0x81,0x3c,0x8d,0x95,0x2b,0xbf,0xe1,0xcf,0xb7,0x6f, + 0xdf,0xce,0xc3,0xfa,0xf9,0xf9,0xf1,0xb8,0x45,0x9a,0xdb,0xb7,0xff,0xc8,0x9f,0xef, + 0xdc,0xb5,0x4b,0x17,0x2f,0xf2,0x81,0xef,0xa7,0xe0,0x7d,0xf1,0x6c,0xce,0x9c,0x39, + 0x54,0xb9,0x4a,0x65,0x5a,0xbd,0x7a,0x35,0x6d,0xd9,0xb2,0xe5,0x3d,0x1e,0x25,0x45, + 0x8e,0xd8,0xbb,0xae,0x78,0x7f,0xdd,0xba,0x75,0xf4,0xe3,0x8f,0x3f,0xd2,0xb4,0x69, + 0xd3,0x79,0xf9,0x40,0x87,0xf,0x1f,0xa1,0x6e,0xdd,0xbb,0xd1,0xd1,0xa3,0x47,0x19, + 0x56,0x17,0xe9,0xdc,0xb9,0x5f,0x99,0xac,0xfd,0x42,0xa3,0x47,0x8f,0xa6,0x63,0xc7, + 0x8e,0xf3,0x3c,0x5d,0xbe,0x7c,0x85,0x5f,0xe3,0xb7,0xe1,0x23,0x86,0xd3,0xfa,0xf5, + 0xeb,0x69,0xd5,0xaa,0x6f,0xe9,0xfc,0xf9,0xb,0xef,0x3d,0xf,0xe,0xe,0xa1,0x13, + 0x27,0x4e,0xf2,0xe7,0x27,0x4f,0x9d,0xa2,0xb9,0xf3,0xe6,0xf2,0x32,0x21,0xc,0x9e, + 0x61,0xdf,0x70,0xec,0x8f,0xb7,0x63,0xc7,0x4e,0x1e,0x1e,0x71,0xe3,0x37,0xa4,0x8d, + 0x34,0x91,0x1f,0x11,0x2f,0x9e,0x21,0x2c,0xae,0xcf,0x9c,0x9,0xe5,0x67,0xc4,0x3d, + 0x6d,0xfa,0x34,0xaa,0x51,0xa3,0x6,0xe3,0xdb,0xae,0x4,0x3c,0x4e,0x8e,0x1c,0x79, + 0x79,0x79,0xb9,0xa,0x39,0xc2,0xbe,0x77,0x90,0xa1,0x53,0xa7,0x4e,0xf3,0xbc,0xfd, + 0xfc,0xf3,0xcf,0x1c,0x6f,0xe0,0x84,0xbc,0x61,0x5f,0xb7,0xef,0xbf,0xff,0x9e,0xcb, + 0xc3,0xec,0xd9,0xb3,0x9,0xdf,0xe3,0x43,0xb9,0xc5,0xde,0xbb,0x8,0x8b,0x6f,0x5e, + 0x20,0xef,0x88,0x43,0xf9,0x7c,0xd8,0xf0,0x61,0x4c,0x4e,0xd7,0xe8,0xc2,0x43,0x6e, + 0x20,0x13,0xf8,0x86,0x93,0x32,0x2c,0xd2,0x42,0xd8,0x4d,0x9b,0x36,0xb3,0xf4,0x8e, + 0xd2,0xc1,0x83,0x87,0x58,0x3e,0xf6,0xd0,0xa2,0xc5,0x8b,0x79,0x39,0xc5,0xfb,0x1b, + 0x37,0x6e,0xe2,0x61,0x51,0xee,0xa3,0x47,0x83,0xf9,0xb3,0xf5,0xeb,0x37,0xf0,0x3a, + 0xd6,0xba,0x75,0x6b,0xce,0x23,0x13,0x72,0xe4,0x60,0x8a,0x37,0xa,0x39,0x72,0x61, + 0xf4,0xf4,0xeb,0xaf,0xbf,0xa6,0x9f,0x7e,0xfa,0x89,0x7f,0xfb,0x40,0xe4,0x63,0xcf, + 0x9e,0xbd,0x1c,0x17,0xc4,0x8d,0x7d,0x22,0xf1,0xc,0xf2,0x5,0x4c,0xbd,0xbc,0xbd, + 0x74,0x75,0x1e,0xcf,0xf7,0xed,0xdb,0xc7,0x65,0xce,0xcf,0xdf,0x9f,0xe7,0x55,0xf9, + 0xbc,0x73,0x97,0xce,0xb4,0x7c,0xf9,0x72,0x1e,0x9f,0xe0,0xc5,0x96,0xad,0x5b,0xf9, + 0x73,0xa4,0x25,0xc2,0x1e,0x3a,0x74,0x98,0x3f,0x43,0x3d,0xc1,0x5e,0x94,0xca,0x3c, + 0x8c,0x1b,0x37,0x8e,0xd7,0x53,0xe0,0xb4,0x7f,0xff,0x7e,0xce,0xbf,0xc1,0x43,0x6, + 0x73,0xfe,0xa8,0xd3,0xea,0xd8,0xb1,0x23,0x7d,0xcb,0xea,0x21,0x9e,0xa3,0xce,0x2a, + 0x79,0xe4,0xe1,0xe1,0x91,0xe8,0xba,0xc6,0xe4,0xa8,0x18,0x78,0xb4,0x6c,0xd9,0x32, + 0xce,0xa3,0x5e,0xbd,0x7a,0x51,0x50,0xd0,0x3e,0x2e,0xbb,0xd7,0xae,0x5d,0x67,0x78, + 0xaf,0xe4,0x32,0x8e,0x3d,0x33,0xf1,0xc,0xf5,0x6e,0xc3,0x86,0x8d,0xac,0x3e,0xad, + 0xe2,0x75,0x53,0xd4,0x91,0x20,0x96,0x3f,0xe8,0x9d,0x95,0x8c,0xf6,0xee,0xd,0xd2, + 0x3d,0xdf,0xb2,0x65,0x2b,0x97,0xc9,0x2f,0xbe,0xf8,0x82,0x3f,0x13,0xf5,0x4,0xcf, + 0x17,0x2d,0x5a,0xa4,0xb,0x7b,0xfa,0xf4,0x19,0xfe,0x6c,0x3b,0x8b,0x13,0x3c,0x16, + 0x75,0x12,0x79,0xc0,0x73,0xc8,0xe6,0xa6,0x4d,0x9b,0x74,0x75,0xf,0xbc,0x41,0x9d, + 0xc4,0x3e,0x9e,0xca,0xb4,0x96,0x2f,0x5f,0x41,0xbd,0x7b,0xf7,0xe6,0x3c,0xb3,0x94, + 0xce,0x56,0xcb,0x51,0xa3,0x46,0xae,0x3a,0xac,0x21,0x27,0xd0,0x8b,0xc0,0xb,0xf5, + 0x1,0xfa,0x7,0x75,0x6c,0xe9,0xd2,0x65,0x5c,0x67,0x43,0xd6,0x85,0xe,0x6,0x2f, + 0xa1,0x83,0xfb,0xf5,0xef,0xa7,0xb,0x2b,0xf4,0x2a,0xc2,0x42,0x5e,0xde,0xd3,0xcb, + 0xfe,0x7e,0xef,0xe9,0x70,0xbc,0xf,0x59,0x55,0x87,0x45,0xf9,0xd4,0x3a,0x1c,0x32, + 0x83,0x3a,0x27,0xe2,0x80,0x1e,0x1c,0x3c,0x78,0x30,0x35,0x6e,0xd2,0xd8,0xa0,0x1c, + 0x25,0x45,0x67,0xab,0xe5,0x8,0x3a,0x5b,0xe8,0x50,0xa1,0x17,0xef,0xde,0xbd,0x4b, + 0x97,0x2e,0x5d,0xe6,0xcf,0x81,0x2f,0xea,0xda,0xd5,0xab,0xbf,0xd1,0xef,0xbf,0xff, + 0xc1,0x9f,0x81,0x50,0x77,0x10,0x16,0xcf,0x44,0x58,0xa1,0xdf,0xf1,0xec,0xca,0x95, + 0xab,0xfc,0x19,0xf4,0x1a,0xea,0xe,0x74,0x85,0xfe,0xf7,0x7f,0x4f,0x10,0x16,0xef, + 0x63,0xf,0xde,0x1b,0x37,0x7e,0x7f,0x4f,0x87,0xe3,0xb9,0x32,0x8e,0xc5,0x4c,0x67, + 0x7d,0xbd,0xf2,0x6b,0x2a,0x5b,0xb6,0x2c,0xf7,0x8d,0x4,0x4f,0x95,0xfd,0x17,0x49, + 0x94,0x23,0x77,0xc4,0xf3,0xdb,0x6f,0xbf,0xf1,0xef,0x20,0x8,0x1f,0xc,0x74,0xfb, + 0xf6,0x1d,0xfa,0xf7,0xdf,0x7f,0xd9,0xf5,0x2d,0x6e,0x3b,0xf0,0x3b,0xf6,0xaa,0xc5, + 0xb3,0xa7,0x4f,0x9f,0x72,0xbf,0x4,0xcf,0x2f,0x5e,0xbc,0xc4,0xcf,0xca,0xb0,0xb2, + 0xfd,0x91,0xc3,0x3e,0x7a,0xf4,0x88,0x3f,0xc3,0xfe,0xc2,0xe0,0x31,0xca,0x65,0xe8, + 0x7d,0x65,0x58,0xd4,0xa7,0xc7,0x8f,0x1f,0xf3,0xe7,0x61,0x61,0xf7,0xb5,0xcf,0xcf, + 0xe9,0x9e,0x23,0x8e,0x5f,0x7f,0x3d,0xcf,0x9f,0xa3,0xce,0x81,0x87,0xf0,0x8f,0xc0, + 0x1f,0xe8,0x6c,0x7d,0x7d,0x3c,0x5a,0x39,0xa,0x36,0x97,0x3f,0xec,0x1d,0x57,0xbc, + 0x7,0x5f,0x2d,0xa5,0xda,0x1,0xf8,0xde,0xa,0xf8,0x9f,0xd2,0x4,0x7d,0x24,0xd2, + 0x34,0xc4,0x1f,0x50,0x81,0x2,0x5,0xc0,0xa3,0xba,0xc9,0xe1,0xf,0xe2,0x87,0x1f, + 0x0,0xbb,0x22,0x9e,0xa1,0x6e,0x63,0xf,0xe4,0xc4,0x84,0x1,0x41,0x9f,0x1,0xb7, + 0x94,0x24,0xcc,0x61,0x4,0x8f,0xcc,0xe1,0x8f,0xb6,0x9e,0x6d,0x4b,0xe,0x7f,0x10, + 0x7,0x8,0xba,0x49,0x3c,0x63,0xc1,0x49,0xd9,0xce,0x35,0x27,0xc,0x8,0x3c,0x94, + 0x52,0xb8,0x1f,0x8,0x3c,0x4a,0xef,0xfc,0xd1,0x14,0x95,0x28,0xfb,0x39,0x89,0x72, + 0xac,0xce,0xe0,0x8f,0x3e,0xfe,0x38,0x38,0xe6,0xa4,0x31,0xbb,0x7,0x50,0xd6,0x3d, + 0x19,0xfc,0x49,0x4c,0xfd,0x82,0xbe,0x44,0x5f,0x5,0xe2,0x31,0x44,0x53,0xa6,0x4c, + 0x49,0x53,0xfc,0xb1,0xa4,0x7e,0x16,0xfc,0xc1,0xb7,0x1b,0xf0,0x9d,0x39,0xf5,0xde, + 0xf5,0x48,0x1f,0xfb,0x61,0x3b,0x39,0x39,0xe9,0xa5,0x3a,0x75,0xea,0x70,0x5f,0x6, + 0x7b,0x67,0xab,0xdf,0x85,0xef,0x6f,0xd,0xfe,0xc0,0xbf,0x52,0xe2,0x87,0xb6,0x45, + 0x52,0xed,0xbb,0xe0,0x4f,0xa1,0x42,0x85,0xa8,0x77,0x9f,0xde,0x7a,0xa9,0x66,0xad, + 0x9a,0x6,0x65,0x23,0x73,0xe6,0xcc,0xe4,0xee,0xe1,0xae,0xf7,0xbd,0x1,0x3,0x7, + 0xa4,0x28,0x7f,0x44,0xbf,0x7,0xf8,0x3,0x3f,0x45,0x10,0xfc,0x76,0x65,0x9c,0x72, + 0x7b,0x3a,0x38,0x49,0x4,0xfb,0x2e,0xca,0xea,0xec,0xec,0x4c,0xe5,0xca,0x97,0x4b, + 0x40,0xe8,0xcb,0x41,0x5b,0x2,0x67,0xf5,0x6f,0xa0,0x7a,0xf5,0xeb,0xf1,0xdf,0xf5, + 0xfd,0x56,0xc8,0xb1,0x90,0x15,0xf9,0xe3,0xad,0x25,0xcb,0xf1,0xc7,0x10,0x39,0x39, + 0x3b,0x51,0x8d,0x9a,0x35,0xc,0x52,0xe1,0x22,0x85,0xad,0xa2,0x7f,0x46,0x8c,0x98, + 0xe1,0x3e,0x68,0xd0,0x64,0xe6,0x5f,0x6d,0xa5,0xba,0x75,0x17,0x52,0xf1,0xe2,0x6b, + 0xa9,0x78,0xb1,0x9d,0x54,0xa2,0xc4,0x6,0xaa,0x5f,0x7f,0x9,0xd,0x1b,0x36,0x83, + 0xc5,0xe9,0xfb,0x1e,0x7f,0xf6,0xee,0xdd,0x4e,0x2b,0x56,0x8c,0x65,0xed,0xd6,0x6, + 0x34,0x7c,0x84,0x86,0xc6,0x8c,0xd5,0xd0,0xd8,0x71,0x1a,0x9a,0x38,0xc9,0x86,0xe6, + 0xce,0xab,0x49,0xeb,0xd6,0x5,0x26,0x8a,0x3f,0xc9,0xa5,0x94,0xe0,0xcf,0x8c,0x19, + 0x8b,0xbf,0xac,0xfc,0xd1,0x12,0x2a,0xec,0xf8,0x80,0xb2,0xd9,0xbf,0xa1,0xac,0x99, + 0xdf,0x50,0x8e,0x6c,0xf2,0x19,0x94,0x3d,0xb,0x3b,0xdb,0x9f,0xa2,0x4f,0x3e,0xf1, + 0xa5,0xb9,0x73,0xe7,0xf3,0x7e,0x8e,0x3,0x7,0xf6,0x32,0x7d,0xd4,0x9b,0xa6,0x4e, + 0xcb,0x4c,0xb3,0x3,0x25,0x5a,0xb0,0x40,0x62,0xbf,0x31,0x9a,0x17,0x4f,0x78,0x3e, + 0x63,0x26,0xa3,0x19,0xce,0x14,0x14,0xb4,0x2d,0xdd,0xf1,0xc7,0xdf,0x3f,0xb4,0xc0, + 0x94,0x29,0x7b,0x76,0xba,0xb7,0xbf,0x4f,0x1f,0x57,0x8e,0xa6,0x8f,0x2a,0x46,0x51, + 0xcd,0xea,0x6f,0xe9,0x93,0xfa,0x31,0xd4,0xd8,0x35,0x96,0x5c,0x1b,0xc5,0x52,0xad, + 0x9a,0x6f,0xa9,0x58,0x91,0x8,0xca,0x6a,0xf7,0x86,0xb2,0x64,0xbe,0x47,0x35,0x6b, + 0x7c,0xc5,0x64,0xe6,0x47,0xc6,0x9b,0xa,0xb4,0x7c,0x99,0x44,0xdf,0xae,0x92,0x68, + 0xdb,0xf7,0x1a,0xda,0xbd,0x5b,0x43,0x7b,0xf6,0x6a,0x68,0xdf,0x3e,0xd,0x5,0x81, + 0x82,0xe4,0x67,0x6b,0xbe,0x93,0x28,0x60,0xb6,0x44,0xde,0x3e,0xb9,0xc9,0xcf,0xaf, + 0x57,0xba,0xe1,0x4f,0x40,0xc0,0x9f,0x2e,0xd3,0xa7,0x3f,0x7b,0x3a,0x64,0x70,0x24, + 0xb5,0x6c,0x11,0x47,0x2d,0x9a,0xc7,0x51,0x9b,0x56,0x71,0xd4,0xf6,0xd3,0x38,0xf2, + 0x70,0x8f,0xa3,0x2e,0x9d,0xe3,0xa8,0xd3,0x67,0xf2,0x35,0x7e,0xaf,0x5b,0x3b,0x86, + 0x9c,0x8b,0x47,0x50,0xee,0x5c,0xe1,0xd4,0xbc,0xf9,0x50,0x66,0xbb,0x19,0x3f,0xf6, + 0x64,0xa2,0x9f,0x7f,0xd2,0xd0,0xc1,0x43,0x1a,0x3a,0xfe,0x8b,0x44,0xe7,0x2f,0x48, + 0x74,0xe5,0x8a,0x44,0x17,0x2f,0x49,0x74,0x26,0x54,0xa2,0xe0,0x10,0x89,0xf1,0x52, + 0x43,0x1b,0x37,0x4a,0x34,0x87,0xc9,0xd6,0x4c,0x2f,0x89,0x3e,0xfd,0x54,0x43,0xcd, + 0x9a,0x35,0xd3,0xf9,0x4c,0x96,0x26,0xf4,0xff,0x58,0x82,0x3f,0xd3,0xa7,0xff,0xef, + 0x69,0x5f,0xcf,0x58,0xce,0x87,0x8e,0x1d,0x64,0x5e,0xf4,0xee,0x15,0x4b,0xfd,0xfb, + 0xc5,0xd2,0x90,0x21,0x31,0x34,0x74,0x68,0xc,0x8d,0x18,0x11,0xc3,0xaf,0x7b,0x74, + 0x8f,0xa5,0xf6,0xed,0xe2,0xa8,0x61,0xc3,0x18,0x26,0x67,0x51,0x94,0xc7,0xe1,0x31, + 0xd3,0x37,0xe5,0xb8,0x8c,0x1c,0x38,0x28,0xd1,0x8d,0xeb,0x12,0xdd,0xba,0x29,0xd1, + 0x1d,0xcc,0xd1,0xbf,0x15,0x4f,0xbf,0xff,0x8e,0x6f,0x24,0x49,0x5c,0xa6,0x7e,0xd8, + 0xa6,0x61,0xbe,0x9f,0x44,0x53,0xa6,0x49,0xf4,0xe5,0x97,0x7d,0x75,0x3a,0x29,0xa9, + 0xbe,0x82,0xb9,0x84,0x6f,0xa,0xa9,0xfb,0x7f,0x4c,0xf1,0x27,0x20,0xe0,0xe5,0xd2, + 0x11,0x23,0xa2,0xa9,0x73,0xa7,0x38,0x6a,0xdf,0x3e,0x8e,0x3e,0xeb,0xf8,0x8e,0x6, + 0xe,0x88,0xa1,0x91,0x23,0xa3,0x69,0xe2,0xc4,0x48,0x9a,0x39,0xf3,0xd,0x79,0x79, + 0x3d,0xa3,0xa9,0x53,0x23,0xf8,0xb3,0xcf,0x3f,0x8f,0xa1,0x3e,0xbd,0x65,0x1e,0xb9, + 0xb1,0x7a,0x57,0xac,0x70,0x4,0xd5,0xab,0xbb,0x98,0x8e,0x1f,0xb7,0xe3,0xf2,0x72, + 0xed,0x37,0xac,0x5d,0xc8,0x44,0x7f,0xfd,0x69,0x4f,0xff,0xfe,0x93,0x83,0x5e,0xbc, + 0xc8,0xc9,0xce,0x39,0xe9,0xfe,0xfd,0xcc,0x74,0xee,0x57,0x89,0x8e,0x1c,0x95,0xe8, + 0xe7,0x9f,0x33,0xd1,0x96,0xcd,0x12,0xcd,0x9f,0x2f,0xd1,0x88,0x91,0x79,0x19,0xcf, + 0xf6,0xa6,0xa,0x7f,0x40,0xb0,0xc1,0xfa,0x78,0x64,0x88,0x3f,0xde,0xde,0xaf,0x99, + 0x1c,0xc6,0x70,0x99,0x69,0xad,0xad,0x53,0xbd,0x7b,0xff,0xc5,0xf4,0xc3,0x2b,0xe6, + 0x8b,0xee,0xa0,0x7a,0xf5,0x5c,0xa9,0x4c,0x99,0x32,0x54,0xb3,0x66,0x63,0xc6,0x9f, + 0x3d,0x34,0x6e,0x5c,0x14,0x97,0x23,0xc8,0x5a,0xeb,0xd6,0x71,0x54,0x85,0xe9,0xaa, + 0xcc,0xb6,0x4f,0x68,0xee,0x9c,0x66,0x74,0xea,0x14,0xbe,0xab,0xa,0x19,0xca,0xc3, + 0xde,0x6f,0x40,0x4d,0x9b,0x37,0xe5,0xdf,0x3e,0xee,0xd4,0xb9,0x6,0x9d,0x3d,0xeb, + 0x4c,0x8f,0x1f,0x67,0xa5,0x6b,0xd7,0x24,0x2e,0x67,0xbb,0x76,0x6a,0x68,0xf5,0xb7, + 0x12,0x4d,0x98,0x28,0x31,0xfe,0xf,0xe4,0xf9,0x36,0xd6,0x96,0x48,0x2e,0xa1,0xcf, + 0x56,0xf0,0x48,0x8c,0xb1,0x9a,0xe2,0x8f,0x9f,0x5f,0xa8,0x3,0x64,0x64,0x0,0x93, + 0x17,0xc8,0x3,0x74,0x70,0x8d,0xea,0xaf,0x99,0x4e,0x39,0xc2,0xfc,0xf6,0x15,0xd4, + 0xae,0x5d,0x3b,0x3e,0x7,0x1f,0xdf,0x68,0xc4,0xf7,0x4a,0xab,0x54,0xa9,0x42,0x3d, + 0x7a,0x2c,0x64,0x7e,0x7f,0x4,0xd,0x1a,0xf4,0x96,0xd7,0xc5,0x86,0xd,0x62,0xb8, + 0x4d,0x73,0xc8,0xb5,0x87,0xd9,0xf2,0x5c,0x34,0x6f,0x7e,0x1,0xc6,0xc3,0xde,0xfc, + 0x5d,0x7c,0x9b,0x12,0xef,0xe2,0x5b,0xa1,0x75,0xea,0xd4,0xa0,0x9f,0x82,0xca,0xd1, + 0x83,0xfb,0x76,0x74,0xe1,0x82,0xac,0x8b,0x36,0x31,0x5d,0x34,0xcb,0x4f,0x62,0xed, + 0x1,0xe7,0x14,0xd3,0x41,0x4a,0xc2,0x37,0x87,0xc0,0xb,0xf4,0x45,0xcf,0x9f,0x3f, + 0x3f,0x1,0x8f,0xf4,0xf1,0x87,0xd5,0x2d,0xd7,0x31,0x63,0xa2,0xa9,0x67,0xcf,0x58, + 0xae,0x93,0x6b,0x33,0xfb,0x54,0xae,0xcc,0x13,0xe6,0xf3,0xcc,0xe0,0xed,0x1a,0xf4, + 0x2f,0xe1,0x8c,0x71,0x51,0x5c,0xbb,0xbb,0xbb,0x73,0x1e,0xf9,0xfb,0x3f,0xa4,0xf1, + 0xe3,0x23,0x99,0x2e,0x62,0xfa,0xba,0x65,0x1c,0x39,0x16,0x8c,0x20,0xbb,0x4c,0x77, + 0xa9,0x43,0x47,0x67,0x1a,0x34,0xa4,0x3,0x6f,0x37,0xa1,0x1d,0xa4,0x7c,0x17,0x63, + 0x52,0x35,0x6b,0xd6,0xa4,0x7b,0xf7,0x72,0xd3,0x1f,0xbf,0x43,0x5f,0x6b,0x68,0xfb, + 0xf,0x1a,0x6e,0xfb,0x7b,0xf7,0xb6,0x49,0x71,0x5b,0xa6,0x24,0x8c,0x15,0xa3,0xad, + 0x84,0xf1,0x5,0xd5,0x78,0x46,0x2,0xfe,0xcc,0x9e,0xfd,0xca,0x75,0xc4,0x88,0xb7, + 0x5c,0xf7,0x80,0x3f,0x2e,0x55,0xa2,0x98,0x6f,0xf3,0x2b,0xb9,0xba,0x8d,0xe2,0x32, + 0xe8,0xeb,0xeb,0xcb,0xcb,0xe7,0xef,0xef,0xcf,0xfb,0xfe,0x51,0x5e,0xc4,0x33,0x7a, + 0xf4,0x6e,0xa6,0x97,0xe4,0x7a,0xd9,0xc1,0x23,0x96,0xf1,0x34,0x8a,0x6c,0x19,0x7f, + 0x3a,0x75,0x2e,0x49,0xdd,0xba,0x75,0xe3,0x63,0x38,0xea,0x77,0xc7,0x8f,0x1f,0xcf, + 0xbf,0xb7,0x79,0xf6,0xac,0x13,0xdd,0xb9,0xa3,0xa1,0x93,0xac,0x2e,0xee,0xf8,0x51, + 0xc3,0xfd,0x24,0xf0,0x7,0x6d,0x8c,0xd4,0x22,0x47,0x47,0x47,0xae,0x33,0xc0,0x23, + 0x21,0x47,0xfa,0xf8,0xc3,0x74,0x89,0xeb,0xc8,0x91,0x6f,0xb9,0xee,0x1,0x7f,0x3e, + 0xe6,0xba,0xe4,0x2,0x95,0x2f,0x3f,0x80,0xb7,0x3d,0x31,0x7e,0x20,0xca,0x8,0x5e, + 0xe3,0xdc,0xb3,0x67,0x4f,0x56,0x7f,0xf6,0xf2,0x3a,0x6,0x5d,0xdd,0xbd,0x5b,0x1c, + 0xf3,0x95,0xa2,0x39,0x7f,0x7a,0xf5,0x29,0xcb,0xeb,0x23,0x74,0x9,0xbe,0xe1,0xa5, + 0x7c,0x17,0x3c,0xc2,0xb8,0xdc,0xe9,0x53,0x25,0x98,0xae,0xb6,0xe5,0xba,0xa,0xf2, + 0x33,0x67,0xe,0xea,0x97,0x8d,0x41,0xbb,0x92,0x52,0x4,0x3e,0xa1,0xf,0x45,0xc8, + 0x91,0xb6,0x8f,0xfe,0xbd,0xfa,0x35,0x6a,0x54,0x34,0x2f,0xa3,0x3b,0xb3,0x5d,0x75, + 0x98,0x5f,0x93,0x33,0xfb,0x33,0xca,0x95,0xcb,0x87,0xe3,0x8d,0x71,0x3e,0x8c,0x91, + 0x60,0xcc,0x19,0x63,0xca,0x90,0xa9,0xd1,0xa3,0xc7,0xb0,0x72,0xdf,0x65,0xf5,0x27, + 0x8a,0x6,0xe,0x4,0x7f,0x62,0xa9,0x72,0x25,0x99,0x3f,0x3,0x6,0x55,0x64,0x32, + 0x52,0x86,0x7f,0x9f,0xb,0x63,0x60,0xea,0x77,0x87,0xc,0x19,0x42,0x57,0xaf,0xe6, + 0xa2,0x3f,0xfe,0x90,0xe8,0x68,0xb0,0xc4,0xf5,0x4f,0x40,0x80,0xc4,0x74,0x59,0xd9, + 0x54,0xb1,0x5f,0xd0,0xd1,0x82,0x3f,0xe8,0x3b,0x42,0x3f,0x89,0x90,0xa3,0xce,0x9d, + 0x3b,0xdf,0x63,0x2c,0x71,0x55,0xdb,0xaf,0xc9,0x93,0x5f,0x51,0x5f,0x4f,0x59,0xe, + 0x9a,0x34,0x8e,0xa5,0x92,0x25,0x22,0x98,0x6f,0x7c,0x87,0xf1,0xb7,0x23,0x1f,0x1b, + 0x47,0x39,0xc1,0xa7,0x15,0x2b,0x56,0x70,0x79,0x18,0x36,0x6c,0x19,0xc1,0xe6,0xc1, + 0x37,0xea,0xc5,0x7c,0xa4,0xe,0x1e,0x71,0x54,0xb8,0x60,0x24,0x65,0xcb,0x72,0x81, + 0x26,0x4f,0x2d,0xc1,0xea,0x57,0x36,0xa6,0x8b,0x3f,0xe6,0xdf,0x31,0x53,0xbe,0x3b, + 0x7d,0xfa,0xc,0xc6,0xaf,0x26,0xdc,0x6f,0x3c,0xcd,0xfc,0x20,0xf8,0xd5,0xeb,0xd6, + 0xc8,0x6d,0x8e,0xe5,0xcb,0x27,0xf1,0x76,0x4a,0x4a,0xf3,0x47,0x9f,0x7f,0x58,0xb5, + 0x6a,0x55,0xae,0x8f,0xfa,0xf6,0xed,0xeb,0xa9,0xe6,0xd,0x8e,0xa9,0x53,0xdf,0x9c, + 0x82,0x1e,0x41,0x5d,0x69,0xd7,0x2e,0x96,0x1a,0x7c,0x12,0x4b,0x79,0x73,0xbf,0x21, + 0x3b,0x9b,0x50,0x2a,0x54,0x68,0x0,0x95,0x2d,0x5b,0x9d,0xe9,0xeb,0x4f,0x18,0xb5, + 0xa6,0x8f,0x5d,0xba,0x33,0x9f,0xf7,0x10,0xe7,0xe5,0x67,0xac,0x4e,0x76,0x60,0xf6, + 0xab,0x69,0x93,0x58,0xde,0x4e,0x73,0x6b,0x3c,0x9b,0xbe,0x5c,0x90,0x95,0xa6,0x4d, + 0x97,0x98,0x8d,0xcb,0x49,0xb5,0xeb,0x14,0xa5,0x72,0xe5,0xca,0xf0,0x7e,0xac,0x26, + 0x4d,0x6a,0xd1,0xd8,0xb1,0x15,0x59,0xfe,0x24,0x3a,0x7c,0x44,0x6e,0x77,0xc0,0xdf, + 0x6,0x7f,0xbc,0x7d,0xa,0xf0,0x7e,0x82,0xa4,0xd2,0xc5,0x8b,0x17,0xf5,0xf6,0x2d, + 0xa1,0xec,0xe0,0x87,0x29,0xfe,0x80,0x8a,0x15,0x2b,0x86,0xba,0xe5,0xad,0x8f,0x3f, + 0xfe,0xfe,0x4f,0x3a,0x4f,0x98,0x10,0x49,0xd0,0xd3,0xf0,0x99,0xe1,0xf3,0x55,0xfd, + 0x38,0x9a,0xb7,0xb3,0x72,0xe5,0x78,0x42,0xf9,0xf2,0x9e,0x64,0xb4,0x91,0x1c,0xb, + 0x6d,0x67,0x6d,0xf8,0x43,0xf4,0x71,0x95,0x5b,0xd4,0xd8,0x8d,0xd9,0xbb,0x16,0xb1, + 0xdc,0x5f,0x2a,0x5b,0x3a,0x8a,0x85,0xfb,0x8b,0x36,0x6e,0x2e,0x4a,0x3b,0x76,0x48, + 0x14,0xc8,0xf4,0xc9,0xf4,0x19,0x12,0xd,0x1f,0xae,0xa1,0x1,0x3,0x35,0xcc,0xff, + 0x63,0x7e,0xf2,0x54,0xb9,0x8d,0xba,0x96,0xf1,0xe3,0xc7,0xed,0x1a,0x6e,0xdb,0xe1, + 0x6f,0xaf,0x66,0xed,0xb5,0x41,0x83,0xf3,0x71,0x9d,0x25,0xbe,0x99,0x9c,0x18,0xc2, + 0xfc,0x18,0x8c,0x5d,0x2a,0x79,0x30,0x60,0xc0,0x0,0xfa,0xe8,0xa3,0x8f,0xb8,0x3e, + 0x71,0x71,0x71,0xe1,0x7d,0x93,0xa6,0xf8,0x53,0xa9,0x52,0x25,0x83,0xfc,0xc1,0xe1, + 0xeb,0xfb,0xea,0xfb,0x49,0x93,0x22,0xb9,0xdf,0xc,0x1f,0xba,0x31,0xab,0x67,0x8d, + 0x1a,0xca,0x7c,0x72,0x2a,0x1e,0xc9,0xda,0x10,0x11,0xcc,0x86,0x47,0x52,0x85,0x72, + 0x51,0x54,0xab,0xc6,0x5b,0xa6,0xeb,0x63,0x59,0xbb,0x9,0x61,0x62,0x28,0x4f,0xae, + 0x37,0x4c,0xee,0xe6,0xd2,0x31,0xd6,0xe6,0xa,0x3e,0x26,0xaf,0x7b,0xfe,0x89,0xb5, + 0xc3,0x36,0x6f,0xd2,0xd0,0xd2,0xaf,0xe4,0xb6,0x3c,0x8,0xba,0x6,0xed,0xb3,0xbd, + 0x8c,0x2f,0x87,0xe,0x4b,0xbc,0x8d,0x76,0xfa,0xb4,0x2d,0x93,0xc7,0x1a,0x49,0xe6, + 0x8f,0x97,0x97,0x57,0x2,0xfe,0x9c,0x3f,0x7f,0x9e,0xcb,0x13,0xe6,0xe9,0x8,0xbf, + 0x30,0x57,0xae,0x5c,0x5c,0x9e,0x92,0xc3,0x1f,0x7f,0xff,0x3f,0x5d,0xe0,0x2f,0xa3, + 0x8e,0xb9,0xb3,0x36,0x28,0x64,0x3,0x3c,0x68,0xde,0x5c,0xe6,0x3,0xf4,0x52,0xe3, + 0xc6,0xcc,0x7f,0x64,0xb2,0xd5,0xb4,0x29,0x9e,0xc9,0xba,0xaa,0x6e,0x9d,0xb7,0x54, + 0xb4,0xf0,0x1b,0xfa,0xfa,0x6b,0xf,0xd6,0xde,0xb2,0xe3,0x7e,0xd,0xda,0x10,0xd0, + 0x2f,0xd0,0xbf,0x7,0xf,0x49,0xba,0xf6,0x3b,0xea,0x14,0xfc,0x66,0xb4,0x55,0x7f, + 0xbf,0xa1,0xa1,0x27,0x8f,0xb3,0xb0,0x67,0x4e,0xba,0xb2,0x5a,0x82,0x3f,0x18,0x5b, + 0xc6,0xfc,0x92,0xc3,0x87,0xf,0xf3,0xb9,0xc,0xe8,0xf7,0xf6,0xf4,0xf4,0xd4,0xc9, + 0x50,0xd2,0xf9,0x73,0xa7,0x13,0xda,0x57,0xb0,0x47,0xf0,0x89,0xc1,0x93,0x96,0x2d, + 0xe5,0x36,0x16,0xf8,0x5,0x1d,0xdc,0xe9,0xb3,0x77,0xfc,0xec,0xe1,0x81,0x36,0x3c, + 0xe3,0x59,0x13,0x59,0x57,0x95,0x2d,0xfd,0x3f,0x6a,0xdb,0xa5,0x23,0x3d,0x7c,0x58, + 0x90,0x9e,0x3f,0xcf,0xce,0xf8,0x94,0x89,0x95,0x5f,0xe2,0xed,0x8,0xf0,0x2a,0xf4, + 0xac,0x7c,0xbe,0x74,0x49,0xe2,0xcf,0x1f,0x3d,0xcc,0x4c,0xaf,0x5f,0xe7,0xa1,0xd0, + 0xd0,0xe2,0x9,0xca,0x6a,0x9,0xfe,0x60,0xe,0xe3,0xa5,0x4b,0x97,0xf8,0x18,0x3f, + 0x8,0x72,0x84,0x39,0x2e,0xf0,0x55,0x93,0xc3,0x1f,0x66,0xe7,0xd7,0xc0,0xce,0x77, + 0xeb,0x26,0xf7,0x61,0x80,0x2f,0xdd,0x99,0x6f,0xdc,0xbf,0xbf,0xdc,0x66,0x87,0xfe, + 0x1e,0x34,0x28,0x86,0xd0,0xc6,0xef,0xd6,0x55,0x6e,0xe3,0x7f,0xfa,0xa9,0x2c,0x43, + 0x2e,0xac,0xe,0xd6,0x69,0x38,0x94,0xe7,0xd7,0xcf,0xaf,0xa,0x2f,0x37,0xda,0xa5, + 0x68,0x9f,0x3e,0x7c,0x60,0xc7,0x7d,0x9d,0x3f,0x1f,0xd9,0xd3,0xdf,0x8c,0x77,0x2f, + 0x5f,0x3a,0xb0,0x36,0x7c,0x31,0x66,0xcb,0x5c,0xde,0x2b,0xab,0x25,0xf8,0x83,0xf9, + 0x1b,0x2f,0x5f,0xbe,0xe4,0x73,0x4e,0xc1,0x1f,0xcc,0x9d,0x80,0xfc,0x88,0xb1,0x93, + 0xa4,0xf0,0x27,0x20,0xe0,0x7f,0xc5,0x98,0xfe,0xe1,0x65,0x47,0xb9,0x51,0xb7,0x60, + 0x9b,0xfa,0xf4,0x89,0x65,0x3a,0x36,0x9a,0xa6,0x4d,0x8b,0xe0,0x6d,0x78,0x9c,0x47, + 0x8f,0x8e,0xa6,0xc1,0x8c,0x4f,0xd0,0xe3,0x6d,0x5a,0x6b,0xdb,0x6b,0xd5,0xa2,0xa9, + 0x6e,0x93,0x35,0xef,0xe5,0x1d,0x3c,0x50,0x93,0xb1,0xb2,0x5a,0x82,0x3f,0x20,0xcc, + 0xf1,0xc0,0xf7,0x9a,0x61,0xdb,0x50,0xdf,0xcc,0x99,0x9f,0x60,0x9c,0x3f,0x4f,0xb6, + 0x41,0x37,0xa3,0x3d,0xce,0x75,0x4d,0x93,0x58,0xde,0x66,0xc0,0x33,0x6f,0x9f,0xdb, + 0xd4,0xbb,0xcf,0x42,0xa6,0x77,0xfa,0xb3,0x7a,0x6,0x9f,0xf1,0x4,0x2b,0xe7,0x1b, + 0x2e,0x53,0xdd,0xba,0xc6,0xdb,0xba,0x7a,0x6e,0xa1,0xc9,0x5e,0x87,0x6e,0x29,0xfe, + 0x80,0xb6,0x6e,0x95,0xe7,0xa4,0xa9,0xc7,0xdc,0x12,0xcb,0x1f,0x7f,0xff,0x1b,0x2e, + 0x90,0x9d,0x81,0x3,0xdf,0xf2,0x7a,0xe5,0xda,0x28,0x8e,0xb5,0xb5,0x63,0x69,0xc8, + 0xe0,0x47,0xac,0xfd,0xb4,0x96,0xd9,0x25,0x8f,0x4,0xed,0x77,0xf8,0x52,0x43,0x3e, + 0xdf,0xc2,0xf2,0x5,0xff,0x30,0x86,0x5a,0xb1,0xb6,0x69,0xf5,0xaa,0xd1,0x54,0xb9, + 0xc6,0x3,0xe6,0x1f,0x35,0x4b,0x13,0xfc,0x51,0xda,0xf7,0xd2,0xa5,0x4b,0x27,0xcb, + 0xbe,0x33,0xbd,0xc3,0xf5,0x72,0xbf,0xbe,0x31,0xbc,0x7d,0x51,0xbf,0x5e,0xc,0xd5, + 0x64,0xf6,0x7b,0xf2,0x54,0xcc,0xf5,0x9d,0xa6,0xb7,0xfd,0x5e,0xa7,0xce,0x27,0xac, + 0xbd,0xf2,0x94,0xb7,0x2f,0x20,0x73,0xf5,0xea,0xc6,0x30,0x19,0x8a,0xa2,0xa6,0xcd, + 0x66,0x5b,0x9d,0x3f,0xc2,0xbe,0x63,0x7e,0x22,0x6c,0x3b,0xda,0x36,0xc9,0xb1,0xef, + 0xac,0xfd,0xee,0x3d,0x76,0x6c,0x14,0xef,0xf,0x84,0x6d,0xaa,0xfc,0x51,0x34,0xb3, + 0x47,0x7f,0x53,0xbf,0x7e,0x1,0x46,0xdb,0xef,0x13,0x27,0x1e,0x60,0xf5,0x2f,0x42, + 0xe7,0x4f,0x56,0xa9,0x1c,0xc5,0xf2,0x7b,0x96,0xf1,0x2e,0xe9,0x32,0x64,0x29,0xfb, + 0x2e,0xec,0x17,0x78,0x2,0xfb,0xde,0xa9,0x53,0xa7,0x24,0xdb,0xf7,0xc0,0xc0,0xd7, + 0xde,0xa3,0x46,0xbd,0x65,0xfc,0x88,0xe1,0xf5,0xcb,0xd9,0x29,0x9a,0xb5,0x4f,0x6f, + 0xb1,0x7a,0xd4,0xc5,0x60,0xfb,0x1d,0x63,0xdb,0xa3,0x47,0x6f,0x63,0xed,0xbb,0x48, + 0xce,0x57,0xe8,0xab,0xaa,0x2e,0x6f,0xa9,0x66,0xcd,0x7d,0x54,0xbb,0x76,0x4b,0xb3, + 0xcb,0xe6,0xea,0x5a,0x8f,0xf9,0x57,0x1f,0xb1,0xba,0x5b,0x35,0xc9,0x3c,0xd5,0x67, + 0xdf,0xd1,0x1f,0x2f,0xec,0xfb,0xe6,0xcd,0x9b,0x79,0x3f,0x5d,0x52,0xed,0xfb,0xec, + 0xd9,0xaf,0x3d,0xd1,0xbf,0x1,0x3b,0xe,0x9b,0x5e,0xbe,0x6c,0x34,0x65,0xb6,0xf9, + 0x1f,0xe5,0xcd,0x33,0x81,0xcf,0x35,0x6,0x8f,0xd4,0x6d,0x70,0xd4,0x33,0x1f,0xdf, + 0xb,0x84,0x36,0x9,0x6c,0x7d,0x8b,0x16,0x71,0x54,0xa3,0xfa,0x5b,0x26,0x7b,0x21, + 0x66,0xf3,0x7,0xbc,0xe9,0xd0,0x21,0x37,0xf3,0x47,0x33,0x31,0xbf,0x21,0x13,0xe7, + 0x93,0x25,0xf8,0x23,0xec,0xbb,0x98,0x13,0x89,0x79,0x87,0xd0,0x9,0x49,0xb5,0xef, + 0x81,0x81,0xaf,0x5c,0x61,0xb7,0xe1,0xdb,0xc0,0xb6,0xa3,0xae,0xe4,0xcb,0x1d,0x49, + 0xd9,0xb3,0x1e,0xa7,0x52,0xa5,0x6a,0xf1,0x7e,0xa,0x8c,0xe3,0x81,0x20,0xab,0xe0, + 0x55,0x8f,0x9e,0x13,0x68,0xc6,0x8c,0xff,0x71,0x3b,0xf,0x9d,0x5,0xf9,0x41,0xff, + 0x58,0xa9,0x92,0x27,0x99,0x6e,0xaf,0x6f,0xb2,0x4c,0x4d,0x9b,0xba,0x30,0xde,0x64, + 0x67,0x7a,0x34,0x13,0x4d,0x67,0x6d,0x77,0xb4,0x67,0x3b,0x76,0xcc,0x63,0x11,0xfe, + 0x80,0xa0,0x7f,0x2c,0x69,0xdf,0xfd,0xfd,0x5f,0x3f,0x1d,0x3e,0x3c,0x86,0xf7,0x95, + 0x72,0x7b,0x54,0x2d,0x86,0xf2,0xe7,0x8d,0xa4,0x7c,0x79,0x76,0x51,0xe1,0x22,0x4d, + 0xa9,0x5e,0xbd,0x4f,0xa8,0x55,0xab,0x56,0x4c,0x4e,0xda,0x32,0xf9,0xe8,0xc2,0xca, + 0xb7,0x85,0x7a,0xf5,0x8c,0xd5,0xf6,0xa9,0xc5,0xf2,0x3e,0xa3,0x12,0xc5,0x22,0x99, + 0x9e,0x9e,0x45,0x5d,0xbb,0xda,0x92,0x47,0x87,0xbc,0xd4,0xa6,0x4d,0x71,0x26,0x13, + 0x95,0x38,0x2f,0x4,0xb5,0x68,0x51,0x81,0xda,0xb6,0x2b,0x44,0x3d,0x7b,0xda,0x30, + 0x7b,0x99,0x89,0xf7,0x6b,0x7c,0xc5,0xda,0x67,0xdf,0xac,0x94,0x98,0xf,0x97,0xc5, + 0x62,0xfc,0x49,0x6c,0xff,0x86,0x29,0xfe,0x30,0x1d,0x34,0x16,0xbe,0xe,0x64,0x8, + 0x65,0x46,0xfb,0xa,0xfa,0x4,0x72,0x94,0x3b,0xe7,0x4b,0x2a,0x98,0xff,0x10,0x15, + 0x2d,0xf2,0x1d,0x93,0x8f,0x7d,0x54,0xae,0xec,0x29,0xce,0x93,0x36,0x6d,0xe4,0x36, + 0x99,0x9b,0x6b,0x1c,0x95,0x72,0x8a,0xa2,0x82,0x5,0x1e,0xb0,0x74,0xca,0xb1,0x7a, + 0x27,0x31,0xdd,0xa4,0xe1,0xe5,0x47,0x9f,0x69,0x97,0x2e,0xb6,0x9c,0x67,0x9d,0x3a, + 0xd9,0xf2,0x6b,0xc8,0xcc,0xc4,0x49,0x12,0x7d,0xf1,0xa5,0x44,0x1b,0x36,0xa0,0x8f, + 0x3e,0x13,0xcb,0xb3,0x86,0x7c,0xbc,0x73,0xa6,0x59,0xfe,0xe0,0x98,0x35,0xeb,0xf5, + 0x3d,0xe8,0x21,0xcf,0x3e,0xb2,0xf,0x8d,0x76,0x69,0xdd,0x3a,0x31,0x54,0xca,0x39, + 0x8a,0xcb,0x52,0x99,0x52,0x51,0xcc,0x4f,0x7e,0xcb,0xf9,0x81,0x76,0x6b,0x63,0xb7, + 0x38,0xde,0xbe,0xff,0xa8,0x52,0x34,0xe5,0xcf,0x13,0x49,0x9d,0x3b,0x8f,0xe6,0xed, + 0xcf,0x2d,0x9b,0xe5,0x31,0x64,0xb4,0xdb,0x3,0x3,0xd1,0xb7,0x23,0xd3,0x8c,0x99, + 0x76,0xe4,0xef,0x27,0xd1,0x42,0xd6,0x8e,0x5f,0xb3,0x46,0xe2,0x63,0xcd,0xfb,0xf6, + 0x6b,0xe8,0xc4,0x49,0x89,0x6e,0xdf,0xb1,0xa3,0x61,0xc3,0x2a,0xa6,0x69,0xfe,0x30, + 0x19,0x62,0x7e,0xe2,0x9b,0xa7,0xe8,0x3,0xea,0xd7,0x37,0x96,0xf7,0xd7,0xb7,0x6b, + 0xcb,0xf8,0xd4,0x4c,0x6e,0x83,0x36,0x69,0x8c,0x7e,0x30,0x59,0x17,0xa3,0xe,0x42, + 0x86,0x1a,0xd4,0x8f,0xa1,0x8a,0xe5,0xa3,0xc8,0xad,0xd1,0xe,0x3a,0x77,0x2e,0x27, + 0xb3,0x1b,0x72,0xbb,0xfd,0xe0,0x41,0xd,0x1f,0x6f,0x86,0x5c,0xa0,0x7f,0xf9,0xc7, + 0xed,0xf2,0x58,0x17,0x9e,0x81,0x87,0xfb,0xf,0xc8,0x7c,0xb9,0x7c,0x59,0x43,0xff, + 0xb0,0x76,0x1a,0xfa,0xeb,0x2d,0x65,0xbf,0x52,0x8a,0x3f,0x5a,0x1e,0x15,0x83,0x2e, + 0x82,0xbd,0x47,0xfb,0xa1,0x57,0xcf,0x38,0x6e,0x9f,0xc0,0x2b,0xc8,0x54,0xe7,0x4e, + 0xef,0xa8,0x6b,0x97,0x38,0xae,0x7b,0xc4,0xb9,0x7b,0xb7,0x97,0xb4,0x71,0xa3,0x7, + 0x6b,0xb7,0x67,0xa3,0xbb,0x77,0x24,0x4e,0x68,0xb7,0x9f,0x3a,0x2d,0x8f,0xb7,0xa3, + 0x7f,0xe3,0xd0,0x61,0xd,0x1f,0x33,0x45,0x7f,0xf,0xfa,0x36,0xae,0x5e,0x45,0x1b, + 0xde,0x96,0x22,0x22,0xf2,0xd1,0xa3,0x47,0x85,0x99,0xfd,0x35,0xad,0xd3,0xd3,0x2, + 0x7f,0x84,0x1c,0x31,0xda,0x36,0x75,0x6a,0x24,0xa1,0xbe,0xa1,0x3f,0x8,0x4,0xdd, + 0x34,0x6c,0xe8,0x5b,0x66,0xf3,0xa3,0x69,0xf2,0xe4,0x48,0xc2,0xef,0x5e,0x5e,0xe1, + 0x4c,0xa7,0xcc,0xe4,0xf9,0x5c,0xf0,0x65,0x25,0x56,0xd6,0xfc,0xf4,0xcf,0xdf,0xd9, + 0xe9,0xf1,0x5f,0xf6,0x74,0x3f,0x2c,0x13,0x85,0xdd,0xd3,0x70,0x7e,0xdd,0xba,0x25, + 0xf3,0xed,0xe1,0x3,0x1b,0xce,0x47,0xb4,0xe1,0x1f,0x3f,0x2e,0x48,0x2b,0x57,0x56, + 0x48,0x32,0x5f,0xf4,0xf1,0xe7,0xd0,0xa1,0x43,0xd4,0xa3,0x47,0xf,0xee,0xf,0x82, + 0x60,0xd7,0x5,0xa1,0x2f,0xde,0x12,0xfc,0x11,0x7,0x6b,0x3f,0x74,0x9a,0x3d,0xfb, + 0x19,0xf3,0xd,0xdf,0x70,0xf2,0xf3,0x7b,0xcd,0xfc,0xc3,0x70,0x46,0x2f,0x58,0xbb, + 0xef,0x11,0xd3,0x21,0x57,0x69,0xfe,0xfc,0x45,0x54,0xb1,0x62,0x42,0xbd,0x11,0x18, + 0x58,0x91,0xf9,0x1e,0x45,0x29,0x3a,0xba,0x0,0x27,0xc8,0x48,0xc4,0x9b,0xbc,0xba, + 0xfb,0x7d,0xfb,0x9c,0x79,0x98,0xe4,0xf2,0x45,0x1f,0x7f,0x60,0xd7,0xe1,0x1b,0x62, + 0x2d,0x24,0xfc,0x36,0xac,0x1f,0x13,0x6b,0x75,0x92,0xdb,0x3f,0x66,0x58,0x9e,0x5e, + 0xb9,0x7c,0xfd,0xf5,0x6e,0xe6,0xb3,0x3f,0x67,0x3a,0xf5,0x24,0xc3,0xe8,0x84,0x4e, + 0x56,0xd1,0x3e,0x56,0xf3,0x47,0x49,0x3d,0x7a,0xd4,0xa2,0x11,0x23,0x6a,0x70,0xf2, + 0xf4,0xac,0x65,0x31,0x9e,0x18,0xe3,0xcf,0xb5,0x6b,0xd7,0xf8,0xbc,0x59,0xb4,0xbf, + 0xd0,0xbe,0x40,0x1e,0x53,0x92,0x3f,0x38,0xe0,0x1b,0xc2,0xcf,0x52,0xd7,0x65,0x53, + 0xfc,0x49,0xd,0x52,0xf3,0xe7,0xfa,0xf5,0xeb,0x7c,0xd,0x34,0xd6,0x10,0x62,0xac, + 0xb,0xb2,0x84,0x76,0x51,0x6,0x7f,0x12,0xf2,0x7,0x84,0x35,0x98,0x90,0x23,0xb4, + 0x89,0xac,0xc5,0x9f,0x52,0xa5,0x4a,0xa5,0x59,0xfe,0x28,0xe5,0xc8,0x1a,0xfc,0xc1, + 0xfa,0x58,0xd8,0x86,0xd4,0x98,0x97,0x62,0x88,0xb0,0x96,0x5a,0xac,0x7d,0x3,0x7f, + 0x9e,0x3d,0x7b,0xc6,0xf7,0x1d,0x50,0x12,0x9e,0x63,0x6d,0x61,0x6a,0xf3,0x27,0x3d, + 0x52,0x6,0x7f,0x52,0x9f,0x3f,0x2b,0x56,0xac,0x78,0x81,0xfe,0x82,0xc4,0xec,0x17, + 0x92,0x56,0x9,0x75,0xcd,0xd2,0xfc,0xc1,0x5a,0x3,0xf8,0x5b,0xc2,0xff,0x4a,0xcf, + 0x84,0x75,0xbe,0x38,0x5b,0x92,0x3f,0x38,0xb0,0x7,0xc5,0xfc,0xf9,0xf3,0x5f,0x28, + 0xd7,0x2c,0xa5,0x57,0xc2,0xda,0x74,0xac,0x91,0xb6,0x24,0x7f,0x84,0x1c,0xc1,0xd7, + 0xfa,0x50,0x78,0x84,0xf9,0x46,0x96,0xe4,0xcf,0x87,0x26,0x47,0x7f,0xfd,0xf5,0x17, + 0x9f,0xb3,0x66,0x49,0xfe,0xe0,0xf8,0x90,0xe4,0x8,0x76,0x19,0x72,0xa4,0xe5,0xcf, + 0x7b,0x73,0xeb,0x92,0x7a,0x40,0x8e,0x2,0x3,0x3,0x5f,0xc0,0x87,0x4e,0xef,0xc4, + 0x7c,0xcc,0x17,0x4c,0x86,0x2a,0x19,0x29,0x2e,0xdf,0x4b,0x54,0x88,0x87,0xe2,0xda, + 0x55,0x71,0xed,0xa4,0xb8,0x76,0x50,0x5c,0xdb,0x2b,0xae,0x6d,0x14,0xd7,0x1a,0xbe, + 0x3f,0xa9,0x22,0x81,0x10,0x45,0x2,0x61,0x8a,0x4,0xc2,0x15,0x9,0x44,0x29,0x12, + 0x88,0xd5,0x73,0x6d,0x6f,0xc5,0xeb,0x28,0xc5,0x75,0x98,0xe2,0x3a,0xc4,0xc0,0xb5, + 0x8f,0x81,0x6b,0x29,0x19,0xd7,0x22,0x1e,0x7,0x23,0xd7,0x21,0x89,0xbc,0x36,0x14, + 0x8f,0x64,0xa1,0xeb,0xc4,0xe6,0x33,0x4c,0x71,0x1d,0xae,0xb8,0x56,0xca,0x43,0x2, + 0x41,0xf4,0x49,0xe1,0xeb,0x10,0xc5,0x75,0x98,0xe2,0x3a,0x5c,0x71,0x1d,0xa5,0xb8, + 0xd6,0x66,0x14,0xf2,0x8c,0x7d,0x48,0x79,0x54,0x9a,0xf8,0x7d,0x48,0xa5,0x2c,0x1a, + 0x49,0x7d,0x60,0x1f,0xd2,0xf,0x78,0x2f,0xd2,0xf4,0x42,0x16,0xb3,0x1f,0x89,0x3d, + 0x32,0xf0,0x4f,0x33,0x64,0x15,0x19,0x10,0x7e,0xb0,0xb5,0xfd,0xa9,0xff,0x1a,0x9, + 0xbe,0xa3,0xff,0xd1,0x9a,0x32,0x90,0x81,0xbf,0x75,0xf1,0xb7,0xb6,0xc,0x64,0xe0, + 0x6f,0x7d,0xfc,0xad,0x29,0x3,0x19,0xf8,0x5b,0x87,0xd4,0x7b,0x7a,0x5a,0x4b,0x6, + 0x32,0xf0,0x4f,0x59,0xc2,0x5c,0x4f,0x53,0xf8,0x5b,0x53,0x6,0x32,0xf0,0xb7,0x8e, + 0x1c,0x28,0xf7,0xaa,0xb7,0xa6,0xc,0x28,0xf1,0xc7,0x38,0x51,0x72,0xd6,0x9b,0x66, + 0x90,0x61,0xc2,0x78,0xfa,0xe5,0xcb,0x97,0xf9,0xdc,0x3,0xf0,0x5a,0xbd,0xaf,0xb3, + 0xb5,0x64,0x40,0xa4,0x87,0x75,0x67,0xe2,0xfb,0x5,0x19,0x94,0x32,0x4,0x7c,0x27, + 0x4c,0x98,0xa0,0xd3,0x5,0xfa,0x74,0x40,0x6a,0xcb,0x80,0x48,0x4b,0xcc,0x8b,0x51, + 0xca,0xe5,0x9a,0x35,0x6b,0x75,0x7b,0xe2,0x28,0x9,0x7b,0xa,0x60,0x3d,0x1,0xc6, + 0x3f,0xb0,0xb7,0xb9,0xfa,0x77,0xbc,0x83,0xfd,0xfb,0xb1,0xc7,0x1e,0xf6,0xd1,0x46, + 0x38,0x43,0x61,0x45,0x5c,0x8,0x3b,0x75,0xda,0x54,0x1e,0x2e,0x34,0xf4,0xec,0x7b, + 0xdf,0x18,0x0,0xe1,0x7d,0x84,0x13,0xf1,0x5a,0x3a,0x9c,0xa9,0xf2,0x20,0x7f,0x98, + 0x5b,0x65,0x2a,0x2e,0x63,0xe5,0xcc,0x97,0x2f,0x1f,0x75,0xe9,0xda,0xc5,0xa8,0x1d, + 0x48,0x4d,0x19,0x10,0xe9,0x61,0xbc,0x46,0xc8,0x0,0xd6,0xf2,0x21,0xbd,0x61,0xc3, + 0x86,0x27,0xab,0xac,0x22,0xc,0xd6,0xeb,0x78,0x6b,0xbf,0x9f,0xa0,0x96,0x27,0x84, + 0xc5,0x1c,0x23,0x11,0x56,0x7c,0x1b,0x4,0x61,0xd5,0xf1,0xa,0x99,0x2,0x61,0xbd, + 0x18,0xc2,0x5a,0x32,0x1c,0xd2,0x35,0x55,0x1e,0xe4,0xd5,0x54,0x5c,0xb8,0x36,0x56, + 0x4e,0xc8,0xc0,0xb2,0x65,0xcb,0xd3,0x84,0xc,0x78,0x6b,0xf7,0xa3,0xd4,0x27,0x3, + 0xb5,0x6a,0xd5,0x32,0x59,0x56,0xf0,0x45,0xf9,0x1d,0xe,0xc1,0x6b,0x25,0xa6,0xe0, + 0x29,0xf8,0x81,0xdf,0x70,0xad,0x26,0x11,0x1f,0xde,0x11,0xf2,0xa6,0x2f,0x1c,0x48, + 0xc4,0x8b,0x77,0x52,0x22,0x9c,0xc8,0xbf,0xa9,0xf2,0x98,0x8a,0xcb,0x54,0x39,0xc1, + 0x5b,0xf0,0x2e,0xad,0xcb,0x80,0xb9,0x65,0xc5,0xfe,0xfd,0xf8,0x1e,0x84,0x20,0x11, + 0x6,0x65,0x54,0xd6,0x29,0xf0,0x12,0x61,0x31,0x7,0x52,0x10,0x7e,0x47,0x38,0x90, + 0xa8,0x37,0xa2,0x2e,0x62,0x1e,0x82,0x8,0x27,0xe2,0x45,0xba,0x42,0x2e,0x53,0x2a, + 0x9c,0xb1,0xf2,0x20,0xac,0xa9,0xb8,0x4c,0x95,0x13,0xf8,0x3,0xcb,0xb4,0x2e,0x3, + 0x83,0x6,0xd,0x36,0x59,0x56,0xc1,0x33,0x35,0xbf,0x20,0x1b,0xca,0x7a,0xb5,0x58, + 0xfb,0x1d,0x1d,0x11,0x5e,0x4d,0x2,0x3,0x5c,0x63,0x7f,0x47,0x21,0x2f,0xfa,0xc2, + 0xa,0x7d,0xb2,0x58,0xf1,0x6d,0x9e,0xe4,0x86,0x13,0xe9,0xa,0xfb,0x63,0xa8,0x3c, + 0xe6,0xc4,0x85,0xdf,0x84,0xec,0x1b,0x2a,0x27,0xf2,0x95,0x5e,0xf4,0x0,0x7c,0x41, + 0x53,0xfc,0x15,0xba,0x40,0xa9,0x3f,0x45,0x7d,0x56,0xfa,0xc,0xc2,0x1f,0x30,0x65, + 0x6b,0xbb,0xf7,0xe8,0xae,0x7b,0x66,0xca,0xf,0x41,0x9c,0xe6,0x86,0x33,0x27,0x5d, + 0x7d,0x76,0x40,0xd8,0xaf,0xc4,0xa6,0x89,0x78,0x8d,0x85,0x81,0x3f,0x90,0x1e,0x64, + 0x0,0xe9,0xe9,0x6b,0x13,0x28,0x7d,0x1b,0x73,0xfc,0x23,0xe1,0x6b,0x59,0xcb,0x1f, + 0x14,0x72,0x6b,0x2c,0x5d,0xa1,0xc3,0xcd,0x29,0x7,0xe2,0x53,0xcb,0x89,0x3e,0x1f, + 0xc9,0x58,0x5c,0xe9,0x45,0x6,0xd0,0x26,0x30,0xe5,0xdb,0x24,0xc6,0xd7,0xb2,0x86, + 0x3f,0x68,0x6e,0xba,0xe6,0xa6,0x29,0xec,0x80,0xd2,0x5e,0xc0,0xf6,0x8b,0xf8,0xc, + 0xc5,0xa3,0x8e,0xb,0x58,0x82,0xdf,0x69,0x5d,0x6,0xa0,0x3,0x8c,0xf9,0x36,0x82, + 0x77,0xa6,0x7c,0x2d,0x51,0x4f,0x4c,0xf9,0x83,0x8,0x87,0xfd,0xda,0x8c,0xc5,0x89, + 0x33,0xc2,0x98,0xf2,0xf3,0x70,0x86,0xde,0x36,0xe5,0x9f,0x61,0x8d,0xa2,0x39,0x71, + 0x21,0x4d,0x51,0x16,0xa5,0xcf,0x88,0x6b,0x11,0x9f,0x52,0x96,0x8c,0xf1,0xa4,0x73, + 0xe7,0xce,0xdc,0x1f,0x48,0xf,0x32,0x80,0x7c,0x1a,0xf2,0x6d,0xd4,0xfe,0x80,0x3e, + 0x9f,0x41,0xf4,0xa9,0xc0,0xd6,0xa,0x6c,0xf5,0xc5,0xa5,0xc,0x27,0x70,0x33,0x56, + 0x97,0x84,0xdf,0x68,0x28,0x8c,0x32,0x2e,0x53,0x75,0xdc,0x94,0xf,0xaa,0xe,0x67, + 0xc8,0x16,0x88,0x32,0x18,0xd3,0x8d,0xc2,0xc6,0x21,0xc,0x6c,0x41,0x7a,0x90,0x1, + 0xc9,0xc,0x7f,0xc0,0xdc,0x3e,0x22,0x81,0x99,0xa9,0x70,0xe6,0xf8,0x5b,0xc0,0xc3, + 0x92,0x71,0x99,0x1b,0xce,0x92,0x65,0x30,0x47,0x6,0x52,0x6b,0xfe,0x80,0x31,0x19, + 0x30,0xd7,0x1f,0x30,0xd5,0xa7,0x22,0x7e,0x37,0x27,0x9c,0xb9,0xfe,0x96,0xa5,0xe2, + 0x32,0xd7,0xc7,0x13,0xb6,0xca,0x52,0xe9,0x4a,0x26,0xfc,0x81,0xd4,0x9c,0x43,0x62, + 0x4c,0x6,0x4c,0xf9,0x3,0x4f,0x9f,0x3e,0xe3,0xf7,0xc6,0xfa,0x54,0x10,0xe6,0xd5, + 0xab,0xd7,0x66,0x85,0xbb,0x77,0x2f,0xcc,0xa4,0xbf,0x65,0xc9,0xb8,0x30,0x76,0x63, + 0x6e,0x38,0x4b,0xa6,0xab,0xdd,0xd7,0x3a,0xc1,0xd8,0xb1,0xbe,0x35,0x82,0xd6,0x90, + 0x1,0xe4,0x45,0xc8,0xc0,0x8b,0x17,0x2f,0x74,0xe5,0x56,0x13,0xca,0x29,0xf8,0x82, + 0x6b,0x43,0x7d,0x2a,0x62,0x8c,0xcc,0xdc,0x70,0xe0,0xa1,0x21,0x7f,0xb,0xbf,0x59, + 0x3a,0xae,0xc4,0x84,0xb3,0x64,0xba,0x18,0x8f,0x4b,0xc,0xfe,0x29,0x2d,0x3,0x22, + 0xd,0xe4,0x4d,0xec,0x2f,0x8d,0xfc,0x61,0x6f,0xbc,0x7b,0x66,0xac,0x73,0xc5,0xf7, + 0x58,0xd5,0xf4,0xdb,0x6f,0xd7,0x92,0x14,0xe,0xf7,0xfa,0xc2,0xa5,0x64,0x5c,0xe6, + 0x86,0xb3,0x54,0xba,0xea,0x79,0x23,0xe6,0xe0,0xaf,0x92,0x81,0xe0,0x94,0xc2,0x1f, + 0x64,0xed,0x79,0x35,0xff,0x35,0x32,0x17,0x7f,0x10,0xbe,0x93,0x20,0x59,0x58,0x7, + 0xa4,0x37,0xfc,0xbf,0xfb,0xee,0x3b,0xab,0xcf,0xfb,0x48,0xa,0x59,0x2,0xff,0x94, + 0xd0,0x1,0xe9,0xd,0x7f,0xf8,0x2a,0x92,0xf5,0xd7,0xf6,0x24,0x8a,0x2c,0x85,0x3f, + 0x48,0x11,0x6f,0xaa,0xe2,0x2f,0xfa,0x7,0x10,0x56,0xd9,0x86,0x49,0xad,0xdf,0x33, + 0xf0,0xb7,0x2e,0xfe,0x22,0x5d,0x11,0x3e,0xb5,0x7f,0x57,0xf2,0xcb,0xda,0x78,0x66, + 0xe0,0x9f,0x76,0xf0,0xb7,0xa9,0x23,0x51,0x8e,0xbb,0x12,0x39,0x1c,0xd7,0x90,0x4d, + 0x55,0xeb,0x63,0x9d,0x81,0x7f,0xea,0xe2,0xf,0xec,0x5,0xfe,0x20,0x6b,0x63,0x9d, + 0x81,0x7f,0xea,0xe2,0x3f,0xfd,0xf8,0x48,0x4e,0x42,0xe,0xac,0x8d,0x75,0x6,0xfe, + 0xa9,0x8b,0x7f,0x89,0xaa,0x45,0x75,0xf8,0xc3,0x16,0x58,0x1b,0xeb,0xc,0xfc,0xd3, + 0xae,0xff,0x87,0xf1,0x16,0xec,0x33,0x9b,0x14,0x12,0x7d,0xf7,0xff,0x55,0xfc,0xd3, + 0x4a,0xfb,0x2f,0xa9,0xf8,0xf7,0xeb,0xd7,0x4f,0xef,0x98,0xbb,0xb9,0x84,0x7e,0xa7, + 0xa4,0xca,0xc0,0x87,0x80,0x7f,0x5a,0x21,0x35,0xfe,0xf8,0x2e,0xaa,0xb9,0x75,0x58, + 0x60,0x99,0x18,0xec,0x10,0xbf,0x72,0x9c,0x34,0x29,0xba,0x22,0x3,0xff,0x94,0xc3, + 0x3f,0xb1,0xf5,0x18,0x78,0x26,0x6,0x7f,0xb5,0xc,0x98,0x43,0x90,0x81,0xf,0xd, + 0x7f,0xc8,0xbe,0xbe,0xfc,0xa0,0xbc,0xb0,0xab,0xd6,0xc2,0x5f,0xcc,0xaf,0x30,0x97, + 0x30,0xf,0x27,0xb1,0xf8,0xd7,0xab,0x5f,0x2f,0xd1,0xe9,0x7c,0x68,0xf8,0x9b,0xca, + 0x97,0xb5,0xf0,0x7,0x9e,0x29,0x29,0x3,0xe5,0xca,0x97,0x4b,0x76,0xfc,0x69,0x19, + 0x7f,0xa1,0xb3,0x4,0xfe,0x98,0xcf,0xaa,0x8f,0xf4,0xcd,0x4f,0x52,0xea,0x0,0x43, + 0xef,0x59,0x9a,0x92,0xea,0xff,0x25,0x45,0x4e,0x8c,0xd5,0xe9,0xc4,0xd0,0x87,0x83, + 0xbf,0x7e,0x19,0x48,0xf,0xf8,0x27,0x57,0x6,0x92,0x62,0x37,0xd2,0x7,0xfe,0x5e, + 0x9,0xf0,0x5f,0xbf,0x7e,0xb,0xff,0xde,0xd0,0x8c,0x99,0x8b,0x68,0xe4,0xa8,0xc5, + 0x34,0x4a,0x4b,0x23,0x46,0x8c,0x21,0x5f,0x5f,0x7f,0xad,0xc,0x24,0x94,0x85,0xc4, + 0xe2,0x3f,0x77,0x6e,0xff,0xf7,0x68,0xc5,0xa,0x4f,0x5a,0xb5,0xca,0x93,0x7e,0xf8, + 0x61,0x61,0x8a,0xe1,0x6f,0x2d,0x4a,0xcb,0xf8,0xfb,0xf8,0xf8,0x71,0x6c,0xbd,0xbc, + 0x96,0x52,0xdd,0xba,0xc3,0xa9,0x5e,0xbd,0x61,0xe4,0x58,0x78,0x2,0xe5,0xcf,0xef, + 0x45,0x55,0x2a,0xef,0xa7,0xb2,0x65,0xf6,0xb1,0xf3,0x1,0x72,0x70,0x98,0x43,0xf9, + 0xd8,0xb3,0x66,0xcd,0x26,0xd1,0xd4,0xa9,0x3e,0x4c,0x16,0xfc,0x74,0x32,0x60,0xa, + 0x7f,0x94,0x73,0xde,0xbc,0x1,0x34,0x63,0x46,0x55,0xd6,0xe,0xcf,0x44,0x9f,0x7f, + 0xae,0xa1,0x29,0x53,0xa5,0x4,0x34,0x61,0x82,0x44,0xe3,0x27,0xe4,0x22,0x2f,0x9f, + 0xbc,0xf4,0xc5,0x97,0x2e,0x6,0xe5,0x20,0x3,0x7f,0xcb,0xe0,0x1f,0x10,0xb0,0xc8, + 0xb5,0x7f,0x7f,0x9f,0xe0,0x8a,0x95,0x86,0x51,0xb1,0x62,0x9b,0xa8,0x60,0x81,0x50, + 0xb2,0xd1,0x5c,0xa1,0xfc,0x79,0xff,0xa2,0xfc,0x79,0x22,0x28,0x67,0xb6,0x8,0xca, + 0x6c,0xf3,0x86,0xec,0x6d,0x5,0x45,0xf0,0xef,0x1f,0xe6,0xc9,0x7d,0x95,0x72,0xe4, + 0x58,0x42,0x2d,0x5a,0x8c,0x64,0x72,0xb0,0x90,0xe5,0xc9,0x8b,0x7f,0x9b,0x47,0x1f, + 0x56,0x3f,0xfe,0xb8,0x8e,0x2,0x2,0x9a,0x30,0xf9,0x92,0xf1,0xc6,0x77,0x34,0x7d, + 0x66,0x9,0xd2,0x24,0x20,0xf9,0x37,0x39,0xdc,0x98,0xb1,0x1a,0x1a,0x3a,0x2c,0x13, + 0xd3,0xb,0xad,0x68,0xe3,0xc6,0x45,0x19,0xf8,0x5b,0x18,0xff,0x89,0x13,0xbd,0x83, + 0x3d,0x3a,0x4,0x32,0xdc,0x37,0x52,0xe1,0x42,0x7f,0x72,0xbc,0x81,0x35,0x28,0x67, + 0x36,0xf9,0x9c,0x3f,0x4f,0xfc,0xbd,0x78,0x26,0x64,0xc1,0xce,0xe6,0x11,0xe5,0xca, + 0xb9,0x8f,0xca,0x94,0x99,0x48,0x7d,0xfb,0x4d,0xe5,0xdf,0xa4,0xd5,0x87,0xfb,0xe4, + 0x29,0xf1,0x78,0x7f,0xf9,0xa5,0x44,0xcb,0x96,0xca,0x84,0xeb,0x5,0xb,0x8c,0x93, + 0xb7,0xaf,0x2c,0x13,0xe3,0x99,0x5e,0x98,0x31,0xa3,0x5a,0x6,0xfe,0x16,0xc2,0x7f, + 0xf0,0x60,0xbf,0x60,0x4f,0xcf,0xd3,0x54,0xbf,0xde,0x3d,0xaa,0x50,0x2e,0x8a,0x4a, + 0x3a,0x45,0x50,0xc9,0x12,0x11,0x54,0xca,0x39,0x92,0x2a,0x96,0x8f,0xa4,0xaa,0x2e, + 0xd1,0xfc,0x7b,0xa8,0x20,0x7c,0xfb,0x14,0x84,0x67,0x15,0xd8,0x6f,0x42,0x26,0x84, + 0x3e,0xc8,0x96,0xf5,0x2a,0xf3,0x8b,0xbc,0x68,0xe6,0xcc,0xf8,0x3a,0xa,0xbd,0x3d, + 0x71,0x52,0x5e,0x8e,0x21,0x70,0xc6,0xf7,0x51,0x57,0xad,0x94,0x68,0xdd,0x5a,0x89, + 0xb6,0x6e,0xd1,0xd0,0x8e,0x1d,0x32,0xe1,0x7b,0xb1,0x82,0xf0,0x1d,0xd0,0x3d,0x7b, + 0xe4,0x6b,0xfc,0x86,0x6f,0xab,0x7e,0xfb,0x8d,0x44,0xb3,0x3,0xe3,0x75,0x42,0x40, + 0x40,0x35,0xa6,0xb,0x16,0x67,0xe0,0x9f,0x44,0xfc,0xfd,0xfd,0x43,0x5d,0xfd,0xfd, + 0xb7,0x33,0x9d,0xfd,0x80,0x7f,0xa7,0x14,0xf8,0x2,0x57,0x81,0x37,0xbe,0x77,0xdb, + 0xa2,0x59,0x1c,0x3f,0x37,0x67,0xe7,0xe6,0x4d,0xe3,0xa8,0x99,0x96,0xf8,0xb7,0x70, + 0x5d,0xe5,0x77,0x20,0x2f,0x4a,0x7d,0x60,0x97,0xe9,0x4f,0xca,0x93,0x27,0x90,0xf9, + 0x6e,0xdf,0xd3,0xa1,0x43,0xb,0xf8,0x77,0x92,0xd7,0xaf,0x8d,0xc7,0x1c,0x58,0xee, + 0xf8,0x51,0xc6,0xf7,0xf0,0x11,0xf9,0xbc,0x7f,0xbf,0xfc,0x4d,0x5c,0x7c,0xef,0x54, + 0x5c,0x8b,0xdf,0x71,0xf,0x82,0x2c,0x20,0xe,0x21,0x3,0x33,0xbc,0x24,0x1a,0x31, + 0x92,0x9d,0x67,0xf4,0xb5,0x3a,0x9e,0xe9,0xd,0x7f,0x60,0x1f,0x10,0x70,0x97,0xf9, + 0x69,0xcf,0xa9,0xaf,0x67,0x2c,0xb5,0x69,0x1d,0x8f,0x29,0xb0,0x76,0x6d,0x14,0xc7, + 0x9f,0x1,0x6b,0x9c,0xf1,0x2d,0xf1,0x4e,0x9f,0xbd,0xe3,0xdf,0xb1,0xc5,0x19,0xf7, + 0x78,0x8e,0x70,0x42,0x1f,0x54,0x54,0xe8,0x83,0xec,0x59,0xff,0xe4,0x7a,0x60,0xe7, + 0x4e,0x5b,0x86,0x9b,0xa4,0xab,0xd7,0xc0,0x5d,0x57,0xc7,0xb5,0x38,0xe3,0x5b,0xb7, + 0xc7,0x4f,0x48,0x14,0x7a,0x56,0x26,0x5c,0xb,0x3a,0x78,0x48,0x96,0x9,0x21,0xf, + 0x3f,0xff,0x9c,0x89,0xd6,0xae,0x89,0x97,0x1,0x5f,0x3f,0xd,0xf7,0x13,0x5b,0xb4, + 0xc8,0x64,0x75,0x4c,0xd3,0xb,0xfe,0x81,0x81,0xaf,0x19,0xf6,0x8f,0x69,0xe8,0xd0, + 0x18,0x1a,0x38,0x30,0x86,0xba,0x77,0x8f,0xc7,0x1a,0xb8,0x82,0x80,0xb3,0xc0,0x1c, + 0xf4,0x59,0xc7,0x77,0xd4,0xbd,0x5b,0x9c,0x7c,0xee,0x2e,0x9f,0x85,0x3c,0x8,0xd9, + 0x11,0xfa,0xc3,0xb9,0x44,0x4,0xf7,0x1f,0x6c,0x34,0x57,0xa9,0x83,0x87,0x3b,0xff, + 0xb6,0xf3,0xde,0xbd,0x32,0xee,0x42,0xa7,0xb,0xdc,0x5,0xe6,0xd7,0xaf,0x4b,0x74, + 0xfb,0x96,0x4c,0x77,0x6e,0xcb,0x84,0x67,0x97,0x2e,0xc9,0xbf,0x1f,0x3b,0x2e,0xf1, + 0x77,0x76,0xef,0xce,0xc4,0x6d,0x6,0xbe,0xb3,0xd,0x5b,0x2,0x9f,0x40,0xc8,0xc0, + 0xd4,0xa9,0x1d,0x13,0xcd,0xbb,0xd4,0x26,0xd1,0xb7,0x82,0x6f,0x54,0x59,0x3,0xff, + 0xc0,0xc0,0x57,0x1c,0xfb,0x1,0x3,0x62,0xf8,0xf7,0xce,0x81,0x29,0x70,0x6c,0xaf, + 0xc5,0x1a,0xb8,0x82,0xba,0xb1,0xe7,0xf8,0x4e,0xf5,0x80,0x1,0xb1,0x9c,0x86,0xd, + 0x7b,0x9f,0xf0,0x1c,0xdf,0xb8,0x16,0xb2,0xd0,0xa0,0x41,0xac,0x4e,0xe,0x9c,0x8b, + 0xbf,0xa1,0x22,0x8e,0x11,0xe4,0x90,0x33,0x94,0xc6,0x8d,0xab,0xa9,0x95,0x1,0xad, + 0x5d,0x67,0xb2,0x20,0x30,0x7,0x1,0x6b,0x81,0xbd,0x21,0xba,0x7a,0x45,0xa2,0x33, + 0x67,0x24,0xe6,0x4f,0x68,0xe8,0xe7,0x9f,0x34,0xf4,0xd3,0x4f,0xb2,0x1e,0x80,0x2f, + 0x1,0x19,0x80,0x3f,0x80,0x36,0xa4,0xba,0x6d,0x20,0xda,0x9a,0xe9,0x89,0x8c,0xf5, + 0xab,0x26,0x17,0xff,0x80,0x80,0xff,0x5,0xe3,0x1b,0xdb,0xa2,0xde,0xb,0xec,0x51, + 0x8f,0x21,0xb,0x7d,0x7a,0xc7,0xf2,0xdf,0x86,0xd,0x93,0x69,0xec,0xd8,0x28,0xae, + 0x27,0xc6,0x8c,0x89,0x52,0x50,0x34,0x7f,0x36,0x7c,0xb8,0x4c,0x78,0x47,0xfe,0xd6, + 0xf9,0x3b,0x6a,0xd2,0x24,0x96,0x5c,0x5d,0x63,0xb9,0xc,0x14,0x2e,0x4,0x5f,0x20, + 0x82,0x8a,0x14,0x5e,0xca,0xea,0xad,0xd,0x97,0x81,0xa0,0x7d,0x1a,0x5e,0x97,0xf1, + 0x9d,0x73,0x65,0x9d,0x37,0x45,0x8,0x7b,0xee,0x57,0xf9,0xbb,0xe8,0xf8,0x4e,0x3c, + 0xec,0x0,0xe4,0x9,0xbe,0x84,0x52,0x6,0x3a,0x76,0xb4,0x4d,0xf7,0xf8,0xa3,0xed, + 0x94,0x18,0x19,0x30,0x17,0xff,0x80,0x80,0x97,0x2c,0xda,0xd7,0x1c,0x3b,0xd4,0x7d, + 0xa1,0xbf,0x45,0xdd,0x7,0xfe,0xc0,0x1e,0xbf,0x3,0xf7,0xcf,0x3f,0x8f,0xa5,0xc9, + 0x93,0x23,0x8,0xef,0x80,0x20,0x37,0xde,0xde,0x6f,0xb4,0xd7,0x11,0xfc,0x77,0x21, + 0x3,0xd0,0x15,0x78,0x5f,0x27,0x3,0xcc,0x2f,0x28,0x5f,0x36,0x92,0xfb,0x85,0x59, + 0xed,0xaf,0xb0,0x30,0x5d,0xe8,0xc4,0x2f,0x1a,0xba,0xf6,0x9b,0x44,0x97,0x99,0x4e, + 0xbf,0x76,0x5d,0x96,0x1,0x60,0x7b,0xeb,0x96,0x1d,0xdd,0xf,0xb3,0xa5,0xa7,0x4f, + 0xb2,0x52,0x54,0x54,0x3e,0x8a,0x8c,0xcc,0xab,0xa5,0x7c,0x14,0x1e,0xee,0x40,0xf, + 0xee,0xdb,0xd1,0xbd,0xbb,0xb6,0x74,0xf1,0xa2,0x44,0x47,0x82,0x65,0x3a,0x70,0x50, + 0xf6,0x7,0xd0,0x36,0x80,0x4f,0x9,0x5b,0x30,0x9d,0xb5,0xd,0x87,0xe,0xd5,0xd0, + 0x17,0x5f,0x4c,0x48,0xd7,0xf8,0xb,0x1d,0x60,0xae,0xc,0x24,0x2,0xff,0x60,0xe0, + 0x86,0x7a,0x2d,0xf4,0x3e,0x6c,0x7c,0xab,0x56,0xf1,0xf8,0xb7,0x6e,0x15,0x46,0x53, + 0xa6,0x44,0x70,0x7c,0x3,0x3,0x5f,0x32,0x7a,0x45,0x5e,0x5e,0xbf,0x50,0xcf,0x9e, + 0x5f,0x51,0xbf,0x7e,0x7e,0x4c,0xe7,0x2f,0xa2,0xf1,0xe3,0xf7,0xe8,0xe4,0x60,0xc8, + 0x90,0x58,0x1e,0x9f,0x90,0x1,0xc4,0x83,0xf8,0x20,0x3,0xd0,0x1,0xf9,0x72,0x33, + 0x7f,0x90,0xb5,0xb,0xb,0x16,0xd8,0x45,0xdb,0xb6,0x55,0xe1,0xba,0xfe,0x37,0x26, + 0x3,0xc0,0x12,0xb2,0x70,0xf3,0xf,0x89,0xfe,0xf7,0xbf,0x5c,0x9c,0x4e,0x86,0xd6, + 0xa2,0x4d,0x5b,0xaa,0xd3,0x8a,0x15,0x65,0x68,0xde,0xbc,0x42,0xb4,0x71,0x53,0x5, + 0x7a,0xf6,0xcc,0x89,0xcb,0x4,0xe4,0xe0,0xf7,0xdf,0x65,0x3b,0x70,0xfa,0x8c,0x2c, + 0x3,0x7b,0x7e,0x96,0xfd,0x49,0x10,0x64,0x0,0x3e,0xe1,0x84,0x89,0x12,0x75,0xee, + 0x5c,0x90,0xf3,0x30,0x3d,0xe3,0xaf,0xdc,0xa3,0xd7,0x82,0xf8,0xeb,0xf4,0x36,0xb0, + 0x6,0xf6,0xad,0x5b,0xc9,0x7e,0x1f,0xf0,0xea,0xc1,0xec,0x41,0xcf,0x9e,0xb7,0x39, + 0xb6,0xc0,0xde,0xdb,0xfb,0x24,0x7d,0xfa,0x69,0x47,0xf6,0x5b,0x13,0x2a,0x52,0xa4, + 0x8,0x39,0x3a,0x3a,0xf2,0x73,0xc9,0x92,0x25,0xa9,0x56,0xad,0x6,0x2c,0xae,0x9f, + 0x78,0xd8,0xd1,0xa3,0xa3,0x75,0xbe,0xa4,0x52,0x6,0xe0,0xb,0x54,0x28,0x17,0xc9, + 0xdb,0x3,0x76,0x36,0xf,0xa9,0x69,0xb3,0xa9,0xf4,0xc7,0xef,0x4c,0xff,0x1f,0x93, + 0x58,0xbb,0x50,0xa2,0xb,0x4c,0x6,0x1e,0x3d,0xb4,0x63,0x7e,0x5d,0x39,0x1a,0x30, + 0xb0,0x3,0x35,0x6b,0xd6,0x8c,0x6a,0xd7,0xae,0x4d,0x75,0xeb,0xd6,0xe5,0x54,0xa7, + 0x4e,0x1d,0x72,0x71,0xf9,0x98,0xa6,0x4f,0xaf,0x46,0xcf,0x9f,0x97,0xa0,0xe8,0xe8, + 0xfc,0x5c,0x5e,0x20,0x43,0x78,0x57,0xb4,0x9,0x4,0xfe,0xd0,0x1,0x68,0x13,0x76, + 0xef,0x6e,0x93,0x60,0xee,0x85,0xb5,0x7d,0x3e,0x73,0x8,0x73,0x29,0x76,0xef,0xde, + 0x9d,0x24,0x19,0x30,0x17,0x7f,0x2f,0xaf,0x37,0xbc,0xae,0xe,0x1a,0x18,0x8f,0xbf, + 0x68,0xcb,0xd7,0xae,0xf5,0x96,0xe9,0xec,0xa7,0xcc,0x76,0x1f,0x67,0x7a,0xfd,0x20, + 0x4d,0x9a,0xb4,0x96,0x7a,0xf7,0xee,0x4d,0xed,0xda,0xb5,0xe3,0x98,0xb8,0xb8,0xb8, + 0xe8,0x70,0xc1,0xbc,0xbc,0xa,0x15,0x2a,0x70,0xea,0xdc,0xd9,0x97,0xcb,0x8a,0xd0, + 0x2b,0xf0,0x5,0xe0,0xf,0xc2,0xa6,0x34,0x6a,0x18,0x4b,0x55,0x3f,0x8e,0xd6,0xf5, + 0xd,0x64,0xcb,0xb2,0x8f,0xc6,0x8d,0xaf,0x4f,0xb3,0xfc,0x32,0xd3,0xcc,0x19,0xf0, + 0xe5,0x99,0xff,0xb6,0xd4,0x8d,0xef,0x89,0xd4,0xb3,0x67,0x4f,0x6a,0xde,0xbc,0x39, + 0xc7,0x5c,0xa4,0x3,0xaa,0x57,0xaf,0x1e,0x7f,0xd6,0xaa,0x55,0x1d,0x7a,0xf0,0xa0, + 0x24,0xd3,0x13,0xe,0x5c,0x6,0x2e,0x5c,0x90,0xe8,0xe4,0x29,0x89,0xb7,0x21,0x7f, + 0x64,0xf8,0xa3,0x4d,0x0,0x3f,0x0,0xfd,0x8a,0x83,0x6,0x67,0x62,0xba,0xaa,0x96, + 0xd5,0x31,0x4d,0xaa,0x1c,0x24,0x56,0x6,0xcc,0xc1,0x1f,0xed,0x7d,0xd8,0x6f,0x81, + 0x3f,0xea,0xa8,0xb2,0xdd,0xe6,0xc2,0x70,0xaa,0x5b,0x37,0x8c,0xf1,0x39,0x88,0xfa, + 0xf5,0x9f,0xcf,0xfb,0xef,0x1b,0x34,0x68,0x40,0x1e,0x1e,0x1e,0xd4,0xba,0x75,0xeb, + 0x4,0xd4,0xa6,0x4d,0x1b,0x1d,0x36,0xc5,0x8a,0x15,0x63,0x6d,0xaf,0x5d,0x5c,0x6, + 0xa0,0x7,0x10,0xbf,0xf0,0x2d,0xa0,0x3,0xd0,0x37,0x90,0xd7,0xe1,0x8d,0x56,0x7, + 0x3c,0xa2,0x2a,0x55,0x46,0xd0,0xb0,0xe1,0x39,0x59,0x1d,0xcd,0x44,0x63,0x27,0x34, + 0xe2,0xfb,0x65,0x8c,0x19,0x33,0x46,0x6f,0x3a,0x20,0xc8,0x1e,0xd2,0x29,0x5f,0xbe, + 0x3c,0x35,0xef,0xd8,0x94,0xe1,0x9f,0x93,0x9e,0x3e,0xcd,0xca,0xfd,0x6,0xb4,0xd, + 0xd1,0x37,0x20,0x74,0x0,0xfa,0x7,0x81,0x3f,0xda,0x1,0x3d,0x7a,0x54,0xb4,0x7a, + 0x1b,0x3f,0x39,0x84,0xb9,0xa9,0x62,0xaf,0x40,0x53,0x32,0x60,0xe,0xfe,0xf0,0xfd, + 0xa6,0x4c,0x89,0xd4,0xe1,0x23,0xea,0x3e,0xf0,0xa9,0xc6,0xda,0xec,0x85,0xa,0x3c, + 0x64,0x6d,0xf7,0xe3,0x54,0xb3,0xd6,0x42,0x86,0xc9,0x18,0x9a,0x38,0x71,0x22,0xaf, + 0x93,0xa3,0x46,0x8d,0xe2,0x34,0x6b,0xd6,0x2c,0x1d,0xe1,0x79,0xab,0x56,0xad,0x78, + 0xbd,0x84,0x2e,0xa8,0x5e,0xbd,0x3a,0xcd,0x9e,0xfd,0x98,0xc9,0xc0,0xff,0xb8,0x1d, + 0x80,0xe,0x80,0x7e,0x81,0xe,0x40,0x5b,0x40,0xd8,0x0,0xf4,0xf,0xe7,0xca,0x35, + 0x97,0x86,0x8d,0xc8,0x49,0x9f,0x7d,0x96,0x89,0x46,0x8e,0x1b,0xc6,0xf7,0x5,0x43, + 0x7c,0x22,0x2d,0x65,0x3a,0xb8,0xc7,0x73,0xec,0x43,0x6,0x79,0x2b,0x57,0xae,0x1c, + 0x6d,0xd8,0x50,0x9d,0xcb,0x0,0x74,0x0,0xda,0x4,0x67,0xcf,0x49,0xba,0x3e,0x5, + 0xe0,0x8f,0x76,0xc0,0xd4,0x69,0x12,0x8b,0xdf,0xce,0xea,0x18,0x5a,0x82,0xc0,0x5f, + 0x53,0x32,0x60,0xe,0xfe,0xb3,0x67,0xbf,0xf2,0x46,0xdb,0xd,0xb6,0x5f,0xd4,0x7d, + 0xf4,0xf3,0x1,0x7f,0xb4,0xd5,0x2b,0x56,0x88,0xa2,0x6c,0x59,0x57,0x53,0x99,0xb2, + 0x1e,0x1c,0x93,0xb9,0x73,0xe7,0x92,0xaf,0xaf,0x6f,0x2,0x3c,0xd4,0x4,0x7c,0x20, + 0x3,0x98,0xb,0x39,0x61,0xc2,0xf7,0xdc,0x57,0x84,0x1d,0x10,0x32,0x80,0x74,0x9a, + 0x35,0x4b,0x68,0x3,0x4,0xfe,0x3d,0x7a,0x7e,0xcc,0xdf,0x47,0x5a,0xa6,0xd2,0x1, + 0x41,0xde,0x60,0x83,0x9a,0xb7,0x6a,0xce,0xfc,0xc1,0xbc,0x4c,0x7,0x64,0xe3,0x7e, + 0xc0,0xc5,0x4b,0x72,0x7b,0x50,0xd9,0x37,0xc,0xfc,0x3b,0x75,0xfa,0x30,0xf0,0x37, + 0x47,0x6,0xcc,0xc5,0x1f,0xb8,0x24,0xd0,0xfd,0x8d,0xe2,0xfb,0xef,0xb3,0x65,0xb9, + 0x4c,0xd9,0xb3,0xad,0x66,0xf5,0xac,0x7,0xb7,0x41,0x89,0xc5,0x65,0xf8,0xf0,0x15, + 0xda,0xf6,0xc2,0xff,0x98,0xfe,0xd5,0xf6,0x2b,0xa2,0x3d,0xd1,0x5a,0x4e,0x3,0xfd, + 0xc2,0x76,0xa,0xfc,0x5b,0xb6,0x2c,0xce,0x74,0x74,0xf,0x3e,0x4f,0xd4,0x9c,0xb4, + 0x20,0x2b,0xb0,0x5,0xf0,0x11,0x9f,0x3e,0xcd,0x42,0x4f,0x9e,0xc8,0x36,0xe0,0xa2, + 0xc2,0x6,0xc0,0x7,0x9c,0x3b,0x57,0xfa,0xa0,0xea,0xbf,0x39,0x32,0x60,0xe,0xfe, + 0xcc,0xf6,0x7b,0xab,0x6d,0x7f,0x73,0xad,0xfe,0x2f,0x52,0x8,0xf8,0x5f,0xe1,0xf8, + 0x57,0xaf,0xd1,0x99,0xe3,0xbf,0x62,0xc5,0xa,0x1e,0xb7,0x12,0x3,0xa1,0x13,0x70, + 0x16,0x98,0x9,0x5c,0x3c,0x3d,0x97,0x69,0xdb,0xc,0xaf,0x75,0xf8,0x63,0x5c,0x1, + 0x36,0x0,0x69,0xc8,0xed,0x40,0x19,0xff,0x59,0xfe,0x8e,0xc,0xff,0x12,0xec,0x1d, + 0x4f,0x9e,0xe,0x64,0x40,0x8d,0xbf,0x48,0xb,0x79,0x11,0xbf,0x41,0xd6,0x3e,0xf9, + 0xe4,0x13,0x8e,0x3f,0xda,0x83,0x4a,0xfc,0x45,0xfd,0x9f,0x35,0x4b,0xe0,0x6f,0x6b, + 0x75,0x5f,0xce,0x12,0xa4,0xdc,0xe7,0xc9,0x90,0xc,0x98,0x87,0x7f,0x84,0x37,0xfa, + 0x74,0x4,0xfe,0x4a,0xfb,0x8f,0xb1,0x5e,0xdb,0x4c,0xf,0x49,0x23,0xed,0x24,0x27, + 0x67,0x77,0xea,0xdf,0xbf,0x3f,0xef,0x83,0x52,0xe3,0x22,0x30,0xc7,0x39,0x30,0x30, + 0x30,0x1,0x2e,0x83,0x6,0x2d,0xd6,0xb6,0x3,0x22,0x75,0x6d,0x4c,0xd8,0x0,0xf4, + 0x7,0xb9,0x32,0x1f,0xb3,0x70,0x41,0x15,0xfe,0xad,0x8a,0x53,0xcd,0x9a,0x35,0x75, + 0xf8,0x2b,0x71,0x56,0xca,0x19,0xca,0xa7,0x94,0x35,0x77,0xf7,0xf6,0x1c,0x7f,0xb4, + 0x3,0x44,0xbf,0xa0,0xd0,0xff,0x4a,0xfb,0x8f,0x7e,0xc0,0xf4,0xd4,0xfe,0x4b,0x8e, + 0xc,0x98,0x83,0xff,0xec,0xd9,0x2f,0xb9,0xfd,0x57,0xe2,0xef,0xae,0xad,0x9b,0xe5, + 0x99,0x7f,0x96,0x2f,0x4f,0x4,0x65,0x92,0x42,0x28,0x4f,0x9e,0x61,0x5c,0xc7,0x2, + 0x7f,0xd0,0x82,0x5,0xb,0x38,0xff,0x41,0x2,0xb,0x10,0x30,0x13,0xf2,0x31,0x60, + 0xc0,0x0,0x9a,0x36,0x2d,0x48,0x87,0x3f,0xf4,0xc,0xea,0x7f,0x1f,0xe6,0x67,0xb6, + 0x6f,0x27,0xfb,0x19,0x45,0x1c,0x23,0x13,0xe0,0xdf,0xa1,0x43,0x21,0xaa,0x5c,0xb9, + 0x32,0xcd,0x9c,0x39,0x93,0xa7,0x23,0xe4,0x40,0x99,0x6,0xae,0x45,0x3a,0x42,0x6, + 0xc6,0x8d,0xeb,0xc1,0xda,0x81,0x76,0xdc,0xff,0x3,0xfe,0x18,0x47,0xc0,0x18,0xb1, + 0xd2,0xff,0xc7,0x98,0xf0,0xc0,0x41,0xe5,0x75,0x7d,0x40,0xd6,0xee,0xcb,0x49,0xc, + 0x19,0x5a,0x53,0x61,0x4c,0x6,0xb4,0xcf,0x83,0x8d,0xe1,0x1f,0x10,0xf0,0x4a,0x87, + 0x3f,0xec,0x32,0xfa,0x7a,0x80,0x7f,0x23,0xe6,0x3,0xd4,0x63,0xf6,0x39,0x7b,0x96, + 0x87,0x94,0x23,0xdb,0x9f,0x64,0x67,0xb7,0x99,0x4a,0x95,0xae,0xc6,0xfd,0x7f,0x21, + 0x3,0xa0,0xe5,0xcb,0x97,0x73,0x8c,0x20,0xf,0xb3,0x67,0xcf,0xd6,0x5d,0x23,0xbf, + 0x6d,0xda,0xb4,0x67,0xcf,0x5e,0xe9,0x74,0xbf,0x18,0x43,0x40,0x5a,0xa8,0xff,0x68, + 0x63,0x42,0xff,0xc3,0xfe,0x63,0xce,0x20,0xf0,0x1f,0x36,0x22,0x17,0xab,0xff,0x95, + 0x79,0xdf,0x12,0xe2,0x52,0xa6,0x85,0x78,0x41,0xc0,0x5d,0x99,0x2e,0xf4,0xd2,0xea, + 0xd5,0x1f,0xd3,0xad,0x9b,0x72,0x1f,0x22,0xea,0xfe,0xf1,0x13,0xb2,0xff,0x2f,0xe6, + 0x87,0x88,0xf6,0xff,0xd8,0xb1,0xcd,0xd3,0x6d,0xff,0x5f,0x62,0xf5,0x0,0xbb,0xf7, + 0x36,0x86,0xbd,0xc2,0x6,0x70,0x5c,0x94,0xe3,0x7e,0xb0,0x1,0xf0,0xcf,0x30,0xd7, + 0x27,0x47,0x56,0xd8,0x81,0x2b,0x94,0x3b,0x37,0xe6,0x7c,0xd6,0x27,0x7f,0x7f,0xff, + 0x4,0xb8,0xa8,0x31,0x2,0x2e,0x83,0x6,0xd,0x62,0x75,0x72,0x7d,0x82,0xba,0x2f, + 0xf0,0x47,0x3a,0xb0,0xff,0x88,0xdf,0x2e,0x93,0xdc,0xfe,0x73,0x72,0x9e,0xc4,0xf0, + 0x2f,0x4c,0xc3,0x86,0x3b,0x50,0xbb,0x76,0x85,0xa9,0x78,0xf1,0xe2,0x3a,0x7b,0xa3, + 0x8f,0x80,0x3f,0x68,0xde,0xbc,0x79,0xd4,0xb9,0x73,0x17,0xba,0x78,0xd1,0x85,0x8f, + 0x1b,0xa0,0xff,0x7,0x75,0x5f,0xf8,0x7e,0xe8,0xff,0x1,0xfe,0x18,0x3,0xc0,0x7c, + 0xd2,0x2d,0x5b,0xd6,0x7f,0x70,0xf8,0x1b,0x90,0x1,0xa3,0xf5,0x3e,0xa1,0xe,0x90, + 0xc7,0xfc,0x7,0x29,0x64,0xc0,0x5d,0xdb,0x46,0xc7,0x58,0x4d,0x91,0x42,0x6f,0xf8, + 0x1c,0xcf,0x2c,0x99,0xf7,0x51,0xa1,0x42,0x9f,0x51,0xa9,0x52,0xa5,0xa9,0x57,0xaf, + 0x5e,0x3a,0x7f,0x10,0x24,0xae,0x71,0x46,0x1f,0xc5,0xf0,0xe1,0x5e,0x2c,0xce,0xb, + 0x24,0xc6,0x95,0xa0,0xf3,0x95,0x73,0x5,0x9a,0x36,0x8d,0x65,0xed,0x8b,0x48,0x5d, + 0xff,0x4f,0xdb,0x76,0x1d,0xc8,0xd7,0xaf,0x30,0x4d,0x99,0x96,0x85,0xf7,0xd3,0x36, + 0x6b,0xe6,0x44,0x85,0xb,0x17,0xe6,0x7a,0x0,0x3a,0x47,0x5f,0x5a,0x93,0x26,0x4d, + 0xa2,0x6e,0xdd,0xba,0xd3,0xb7,0xdf,0x36,0xa1,0x63,0xbf,0xc8,0x63,0x7,0x27,0x4e, + 0x68,0xc7,0x2,0xb5,0xf3,0x82,0xe0,0xfb,0xa3,0xff,0xcf,0xcf,0x5f,0xa2,0xde,0x7d, + 0x6c,0x38,0xee,0xe2,0x9b,0x74,0xd6,0xc6,0xd3,0x92,0xf8,0xab,0x65,0xc0,0x94,0xde, + 0x57,0x1e,0xd3,0xa7,0xbf,0x9,0x1e,0x36,0x2c,0x5a,0xa7,0x9b,0x45,0x5f,0x0,0xfa, + 0xfe,0xe1,0x7,0xa0,0x9f,0x26,0x47,0x36,0x8c,0xd9,0x3e,0xa2,0xcc,0x76,0x9b,0xa8, + 0x70,0x91,0x6e,0x54,0xb2,0x64,0x4d,0x86,0x4f,0x11,0xde,0x7,0x7,0x3f,0xaf,0x53, + 0xa7,0x4e,0xbc,0x9f,0xb6,0x6e,0xdd,0x66,0x54,0xaf,0x7e,0x37,0xe6,0x8f,0xed,0x65, + 0xf5,0xf8,0x28,0x97,0x27,0xd8,0x94,0x76,0x6d,0xe3,0x74,0x73,0x84,0x50,0xf7,0x75, + 0xba,0x9f,0xd5,0xff,0x82,0x5,0x4e,0xd3,0xc4,0xc9,0x65,0x59,0x1b,0x3d,0xf,0xef, + 0xa7,0xc7,0x58,0xd,0x64,0xa0,0x7d,0xfb,0x52,0x4c,0x96,0x2b,0x50,0xc1,0x82,0x5, + 0xb9,0x3e,0x40,0x3a,0xe8,0xf,0xfc,0xec,0xb3,0xcf,0x78,0xdf,0x92,0x87,0x87,0x1b, + 0xf3,0xb,0x3f,0xa1,0x6d,0xdb,0x64,0x7d,0x7f,0xf2,0xa4,0x94,0x60,0x4e,0x90,0xc0, + 0x1f,0xf3,0x48,0x31,0x37,0x74,0xcf,0xde,0xf8,0xb5,0x6b,0x29,0x4d,0x62,0x7f,0xd4, + 0xd4,0xc4,0x5f,0x8f,0xc,0x98,0x59,0xff,0x5f,0x7a,0x8b,0x7e,0x7a,0x60,0x8f,0x33, + 0xc6,0xed,0xe5,0xbe,0xfa,0x38,0xde,0x4f,0x3,0x1d,0x90,0x2f,0xf,0xf4,0x40,0x24, + 0xf3,0x7,0x8f,0x51,0x36,0xd6,0x26,0x74,0x74,0x9c,0x40,0x25,0x9c,0x9a,0x33,0x7c, + 0x1a,0x30,0x59,0x68,0x4c,0xc5,0x8a,0x7b,0xb2,0x67,0x93,0xa9,0x90,0xe3,0x24,0x6a, + 0xd1,0x22,0x84,0x8f,0x19,0xf0,0x71,0xe4,0x76,0xb2,0x3e,0x69,0xaf,0xa5,0x66,0xcd, + 0x64,0x99,0x2,0xf6,0xd9,0xec,0xdf,0x50,0x87,0x8e,0x53,0x28,0xf8,0x98,0x44,0xdf, + 0x7f,0x2f,0x51,0x40,0x20,0xd3,0xd5,0x33,0xe4,0x39,0xfe,0x18,0xb3,0x85,0xbf,0xde, + 0xb6,0x6d,0x5e,0x6a,0xd0,0x20,0x1f,0x55,0xab,0x9e,0x95,0xc9,0x5b,0x56,0xf6,0x7e, + 0x7e,0x96,0xcf,0xcc,0x5c,0x56,0x30,0xb6,0x83,0xb1,0xde,0x9f,0x7f,0x92,0xe7,0x80, + 0x81,0x4,0xf6,0x2,0x7f,0xcc,0x2f,0xed,0xdb,0x37,0x13,0x5f,0x97,0x2f,0x8,0xdf, + 0x78,0x50,0xde,0x5b,0x92,0xcc,0x5d,0x1f,0xad,0xc2,0x8a,0xdf,0x27,0x17,0x7f,0x73, + 0xdb,0x7d,0xea,0xc3,0xcb,0xeb,0x29,0x9f,0xbf,0x1,0xec,0xc7,0x8d,0x93,0xfb,0x3, + 0xa1,0xa7,0xe5,0x79,0x1b,0xb2,0xc,0x38,0x97,0x90,0x65,0x20,0x47,0xd6,0x37,0xdc, + 0x6f,0xcf,0xe3,0x70,0x95,0xa,0x3b,0x5e,0xa3,0xec,0xd9,0xbe,0xe5,0xf2,0x50,0xa4, + 0xc8,0x2e,0x2d,0xed,0xa4,0xb2,0x65,0x7e,0xa5,0x2a,0x95,0x1f,0x73,0x3f,0x12,0x71, + 0x80,0x20,0xb,0x4d,0xd9,0xb9,0x4e,0xed,0x18,0xca,0x9b,0x5b,0xee,0xf7,0xcb,0x9a, + 0xf9,0x11,0x2d,0x5d,0x5e,0x81,0x8e,0x32,0x9d,0xbd,0x63,0xa7,0x86,0x16,0x2e,0x42, + 0x5b,0x8d,0xf9,0x6b,0xac,0xbd,0x86,0x39,0xe1,0x63,0xc6,0xc8,0x72,0xd0,0xbf,0x7f, + 0x26,0x6e,0xbf,0x27,0x4e,0x94,0x65,0x3,0xf6,0x1c,0x7d,0x7a,0xd0,0xed,0x2b,0x57, + 0x48,0xdc,0xcf,0xdf,0xbc,0x49,0x93,0x60,0x8e,0x30,0xc6,0x80,0x80,0xff,0x2c,0x3f, + 0x89,0x66,0x32,0x59,0x69,0xd4,0xa8,0x91,0x8e,0x1a,0x36,0x6c,0x98,0xe0,0xde,0x92, + 0x4,0x1f,0xc8,0xd4,0xfa,0x68,0x81,0x11,0xd6,0xff,0xb,0x12,0xfb,0x5a,0x18,0xda, + 0xd3,0x22,0x25,0xf1,0x87,0xe,0x60,0x6d,0x41,0x3e,0x8f,0x47,0xb4,0xd3,0xb9,0xe, + 0x68,0x27,0xe3,0x7,0x7d,0xcd,0xdb,0x84,0xcc,0x1f,0x28,0xe9,0xf4,0x86,0xeb,0x6e, + 0xc8,0x1,0xea,0x70,0xe,0xe6,0x1b,0xa0,0x9d,0x28,0x8,0xfd,0x86,0x98,0xeb,0x7, + 0x99,0x1,0xd6,0x8d,0x1a,0xc5,0xf2,0x31,0x1f,0x90,0xb2,0xdf,0x1f,0xef,0x76,0xec, + 0x38,0x83,0xeb,0x6e,0xd4,0xff,0x83,0x87,0x24,0xda,0xb5,0x4b,0xa2,0xed,0xdb,0x19, + 0xa6,0xdf,0x68,0x68,0xe9,0x52,0xd,0xaf,0xbb,0xd3,0xa6,0x4b,0x5c,0x16,0x80,0x39, + 0x74,0x3,0xda,0xf2,0x1,0xb3,0xe5,0xba,0xff,0xd5,0x12,0x16,0xf6,0x6b,0x79,0xee, + 0xf0,0xf6,0xed,0xb2,0xee,0x47,0xbb,0x1f,0xf1,0x1,0x7f,0x3c,0x47,0xb8,0xf6,0xee, + 0x1f,0xa7,0x1a,0xfe,0x42,0x7,0x18,0xc2,0x1f,0xbe,0x7,0xb0,0xc6,0xf8,0x16,0xbe, + 0x3d,0x2b,0xda,0xeb,0xe8,0xf7,0x12,0x7b,0xe,0xa4,0x36,0xfe,0xb2,0xc,0xbc,0xd2, + 0xc9,0x80,0x68,0xab,0x2b,0xe7,0x6d,0x34,0x6d,0x8a,0x79,0xbd,0xb1,0xba,0x39,0xff, + 0x7c,0x6e,0x2f,0xc3,0x12,0xba,0x0,0x4,0x7f,0xae,0x52,0x85,0x68,0x8e,0x3b,0x7e, + 0xc7,0x5c,0x1f,0xf8,0x79,0x78,0x17,0x71,0x34,0x6c,0x28,0xbf,0xb,0x5b,0xc2,0xe7, + 0x2,0x67,0xf9,0x93,0xb6,0x6d,0xcf,0xcb,0x7d,0x37,0xd0,0xc9,0xd3,0x12,0xd7,0x3, + 0x7b,0x83,0xe4,0xf9,0x60,0x42,0x8f,0xc3,0x87,0x5f,0xbb,0x56,0xc3,0xfb,0xf1,0x50, + 0xdf,0x79,0x9d,0x5f,0xa9,0x5d,0x23,0xa0,0x9d,0x2f,0x8e,0x3a,0x8f,0xb9,0x7f,0x98, + 0x17,0x8c,0x38,0x84,0x3f,0x70,0xe5,0xaa,0x2d,0xfd,0xb0,0x2d,0xff,0x7b,0x18,0x59, + 0xb,0xff,0x7b,0xf7,0xee,0xf1,0xdf,0xb0,0xb7,0xf7,0xae,0x5d,0xbb,0xde,0xdb,0xf, + 0x4,0x32,0x21,0x19,0xb0,0x5,0x29,0x8d,0xbf,0x56,0x6,0x74,0x3e,0xfb,0x40,0x6d, + 0x3b,0x9d,0x63,0xaf,0xd5,0xe1,0x2,0x4b,0x21,0xf,0x7c,0x4e,0xb8,0x6b,0xac,0x6e, + 0xfd,0x7,0xf4,0x4,0x70,0x16,0x78,0xe3,0xdc,0xb4,0x49,0x1c,0xf,0xab,0x5b,0x17, + 0xc0,0x74,0x3,0x74,0x47,0x93,0xc6,0x4b,0xe8,0xf2,0x15,0x3b,0xee,0xb7,0xff,0xf1, + 0xbb,0xa4,0x6b,0xbf,0x85,0x1c,0x97,0xe5,0x1,0x73,0x79,0x20,0xb,0xf0,0xe9,0x80, + 0xad,0xd0,0xe9,0xc0,0x1a,0xf5,0x1c,0xb6,0x1e,0xe7,0xa0,0x7d,0xf2,0x3c,0x62,0x60, + 0x8e,0x39,0x40,0x18,0xff,0x45,0x1f,0xd0,0xc3,0x7,0x76,0x7c,0xbe,0xd8,0xe0,0x41, + 0x1f,0xa7,0x19,0xfc,0xf1,0x1c,0xfb,0xe5,0x8b,0xbd,0xdd,0x21,0x3,0xd0,0xf7,0xd0, + 0x3,0x38,0x43,0xf,0xc0,0xc7,0xd5,0xa7,0x3,0x52,0x7,0xff,0x47,0xc1,0xd0,0x1, + 0xc2,0x6,0xc0,0x7,0x80,0xc,0x60,0xe,0x6f,0x6b,0x2d,0xee,0x2,0x7f,0xb5,0x2c, + 0x8,0x52,0x3e,0x97,0xf1,0x8f,0xe5,0xb2,0xc0,0xd7,0x3,0xc0,0x8f,0x28,0xfe,0x86, + 0xeb,0x8a,0x9,0x13,0xbe,0xa0,0xdb,0xb7,0x8b,0xf3,0x39,0x5e,0xe8,0xb7,0x3,0xa1, + 0xf,0x47,0xc8,0x1,0xe4,0xe2,0x4c,0xa8,0x2c,0xf,0x47,0x83,0xe3,0x75,0x3,0x64, + 0x81,0xf7,0xed,0xb2,0x6b,0xc8,0xc8,0xe1,0x23,0x72,0x38,0xcc,0xfd,0x11,0xb8,0x3f, + 0x7b,0x9a,0x8d,0x63,0x1f,0x1a,0x5a,0x5c,0x2f,0x46,0xd6,0xc4,0x5f,0x60,0x2f,0xce, + 0xc0,0x1e,0x84,0xfa,0x8f,0xb3,0xd8,0x13,0xc8,0x3a,0xf8,0x3f,0xe1,0xf3,0xfc,0x44, + 0x7f,0xd,0xb0,0x17,0xb6,0x1b,0x32,0x0,0x7c,0x71,0x2d,0x7c,0x79,0xf8,0x7,0x62, + 0x9e,0xb0,0xa0,0xf6,0xa,0x5f,0xbf,0x89,0x42,0x6f,0x34,0xd2,0xda,0xe,0xd8,0x7f, + 0x67,0xa7,0xbf,0xa8,0x9a,0x7b,0x57,0x1a,0x31,0xa2,0x3a,0x45,0x45,0xe5,0x61,0x94, + 0x9f,0xee,0xdf,0xb7,0xe3,0x24,0xe4,0xe0,0xb7,0xab,0xb2,0x2c,0x40,0xe,0x20,0x3, + 0x4a,0x42,0x3d,0x7,0x1,0x73,0x84,0x41,0x78,0xbc,0x87,0xf1,0x5f,0xc4,0x65,0xc, + 0x7b,0x6b,0xe3,0x7f,0x4f,0xfb,0x6d,0x87,0xe3,0xc7,0x8f,0xeb,0x9e,0xa3,0xbf,0x4e, + 0xc8,0x0,0xfa,0x4f,0xac,0x81,0xbf,0xbf,0xff,0x1d,0x6f,0x51,0xf7,0xd1,0xf,0x20, + 0xc6,0xea,0x5,0xfe,0xc0,0x5a,0xb7,0xd6,0xa3,0x9b,0x7c,0x8d,0xf6,0xbd,0xa7,0xa7, + 0x3c,0xcf,0x1b,0xd4,0xb1,0xc3,0x3b,0x5d,0x1f,0xa2,0x72,0x1e,0x31,0xd7,0x3,0x4d, + 0x63,0x75,0x3e,0x24,0xd6,0x13,0x36,0xec,0xec,0xcf,0xf9,0x5,0x19,0x8,0xd,0x2d, + 0xc6,0xc7,0xef,0x5f,0xbc,0xc8,0xc5,0x31,0x14,0xfa,0x40,0xc8,0x82,0x7a,0xde,0xb7, + 0xc0,0x5b,0x90,0x8c,0x3b,0xe6,0x8,0xe7,0xe1,0xd8,0xaf,0x5a,0x55,0xc1,0x28,0x46, + 0xd6,0xb4,0xff,0xf8,0x66,0xce,0xe5,0xcb,0x97,0xf9,0xf7,0x73,0x20,0x3,0xca,0xef, + 0x7c,0x58,0xd3,0xfe,0x63,0x1e,0x30,0x6c,0xbf,0x98,0xb,0x24,0xe6,0xeb,0x1,0x3b, + 0xe0,0x88,0x7b,0xcc,0xe3,0x84,0x5f,0x20,0x8,0x36,0x42,0x79,0x1e,0xa8,0x95,0x9b, + 0xe,0x1e,0xef,0x12,0xac,0x21,0x11,0xba,0x40,0xf8,0x0,0xd0,0x1,0x4e,0x4e,0x93, + 0x12,0xf0,0x4d,0xc8,0x81,0x8c,0x21,0xe6,0xf6,0x32,0x59,0x78,0x92,0x4d,0xa7,0x13, + 0xd4,0x78,0x87,0x87,0xe7,0x64,0xbc,0xcc,0xa9,0x98,0x17,0x9e,0x87,0xe1,0x5e,0xde, + 0x2c,0x8c,0xac,0xe9,0xff,0xe3,0xb7,0x7f,0xff,0xfd,0x97,0x63,0x2f,0x74,0x80,0x90, + 0x3,0xc8,0x87,0xbe,0xba,0x9f,0xa,0xed,0x3f,0x57,0xcc,0x3,0xc6,0x5c,0x30,0xd4, + 0x7d,0x61,0xf7,0x95,0xf3,0xc0,0x81,0xab,0x7a,0x1d,0xc8,0xd0,0xa1,0xb1,0x5c,0x5f, + 0x88,0xb3,0x78,0x2e,0x64,0x1,0xfa,0x40,0xc8,0x90,0xe8,0x4f,0x12,0x3a,0xa0,0x79, + 0xb3,0xa7,0x6,0x79,0x8,0x1c,0xbf,0xf9,0xa6,0x82,0x2,0x5b,0x43,0x94,0x87,0x87, + 0x33,0x17,0xf7,0xb4,0x80,0x3f,0xfa,0x6,0xf1,0x7b,0x58,0x58,0x18,0xc7,0x5b,0x9c, + 0xa1,0x17,0x8c,0xf5,0x1d,0xa6,0x2c,0xfe,0xff,0xb,0xc6,0x58,0x9d,0x72,0xd,0x80, + 0xc0,0x4d,0xe0,0xf,0xfd,0x3e,0x70,0x40,0xc,0x1f,0xcb,0x13,0xeb,0x3f,0xe4,0xb9, + 0x3d,0xf1,0x84,0xb1,0x1e,0xb1,0xe,0x48,0xe8,0x5,0xc8,0x80,0x68,0xf,0x88,0x76, + 0x2,0xea,0x3f,0xfa,0x1,0xe1,0x3,0xa4,0x14,0xe,0x69,0x15,0x7f,0x75,0x5b,0x50, + 0x10,0xee,0xad,0xd1,0xff,0x27,0xaf,0xf9,0x95,0xeb,0x3e,0xf0,0x82,0x9d,0x57,0xfa, + 0xfa,0xee,0x5a,0x3f,0xf,0xba,0x1f,0x73,0x45,0x64,0xdc,0xb1,0xfe,0x23,0x8c,0x66, + 0xcf,0xbe,0xc7,0x6c,0xd5,0x36,0x9a,0x3e,0xfd,0x4,0xd3,0xdf,0x27,0xd8,0xfd,0x53, + 0xed,0x7c,0x9f,0x57,0xba,0xf9,0x3e,0x62,0x6e,0x1,0xfc,0x47,0x81,0x7f,0x45,0x66, + 0xff,0xcb,0x96,0xb9,0x43,0x9d,0x3a,0x7d,0xfb,0x9f,0xc5,0x3f,0xb1,0x94,0x52,0xf8, + 0x8b,0x36,0xdf,0xd8,0xb1,0xd1,0xba,0x39,0xda,0xf0,0xf3,0x51,0x3f,0xd1,0x7f,0xb, + 0xdc,0x60,0xf,0xc6,0x8d,0x8b,0xe6,0xd8,0x62,0x4e,0xef,0xf8,0x9,0xeb,0xa8,0x53, + 0x67,0x4f,0x2a,0x51,0xa2,0x4,0x1f,0xa7,0xc3,0xb9,0xd2,0x47,0x1f,0x51,0xe3,0xc6, + 0x3,0xc8,0xb3,0xef,0x1a,0x2e,0x1f,0x42,0x6,0x20,0x53,0x62,0xcc,0xd7,0xb5,0x51, + 0xfc,0x3a,0x50,0xac,0x2d,0xa8,0xf5,0xd9,0x9e,0xff,0x34,0xfe,0xf0,0xf3,0x4,0x59, + 0x3,0xff,0xf8,0xba,0x2f,0xb7,0xf9,0x80,0xb3,0xbb,0x16,0x27,0xb1,0xee,0x1f,0x73, + 0x2,0x81,0xdf,0xec,0xd9,0x77,0x59,0x9d,0xff,0x91,0x7a,0xf5,0x1e,0x6c,0x74,0xfd, + 0x47,0xb5,0x6a,0xd5,0x68,0xfc,0xf8,0xdd,0x3a,0x19,0x10,0xf3,0x7e,0x31,0xe,0x28, + 0xfa,0x0,0xa1,0xff,0x41,0x45,0xea,0x1e,0xfe,0x4f,0xe2,0xaf,0x1e,0xfb,0x11,0x64, + 0x4c,0xe,0x52,0x2,0xff,0x80,0x80,0xbb,0xde,0x72,0xdd,0x4f,0x38,0x7,0x4c,0xf4, + 0xf7,0xa3,0xff,0x1e,0xf8,0xf7,0xef,0x7f,0x89,0xe6,0xcf,0x5f,0x47,0xd3,0xa6,0x4d, + 0x33,0x6b,0xfd,0x47,0xe9,0xd2,0xa5,0x69,0xd6,0xac,0xab,0xba,0x35,0x40,0x3,0xb5, + 0x6b,0xc2,0x95,0xeb,0xbf,0x30,0x4e,0xe0,0xee,0x7e,0x8f,0xaa,0x54,0xf1,0xf8,0x4f, + 0xe1,0x8f,0xb5,0x2d,0xc0,0x7,0x7d,0xfd,0xa2,0xcf,0xcf,0x5b,0xb1,0xdf,0xb0,0x98, + 0xc3,0x93,0x1a,0xf8,0x63,0xfe,0xb7,0x97,0xd7,0xeb,0x4,0xeb,0x73,0x4,0xfe,0x62, + 0xfd,0x4f,0xa3,0x46,0xf7,0x58,0xdd,0xdf,0x4f,0x73,0xe6,0xcf,0xa6,0x9,0x13,0x26, + 0x98,0xbd,0xfe,0xe3,0xd3,0x4f,0x7b,0x68,0xfd,0x81,0xf8,0xb9,0xdf,0xf0,0x23,0xd0, + 0x6,0x40,0xdc,0x4e,0xc5,0x23,0x58,0x3a,0xd1,0x54,0xbb,0xce,0xec,0xff,0xc,0xfe, + 0xc2,0xf7,0x5f,0xb2,0x64,0x9,0x5f,0xd7,0x87,0xfe,0x1e,0xb1,0x57,0x38,0xce,0xa2, + 0xef,0x4f,0xdf,0x18,0x60,0xca,0xd4,0x7f,0x79,0x6e,0xb6,0x3e,0xfc,0xd1,0x57,0xb, + 0xaa,0x5d,0x2b,0x94,0xa6,0x4e,0x9b,0xc7,0xe7,0x7d,0x25,0x66,0xfd,0x47,0xa9,0x52, + 0xa5,0xd8,0xfd,0x25,0xdd,0x1a,0x30,0xe8,0x0,0xd8,0x0,0x81,0x3f,0x74,0x0,0xc6, + 0x90,0xda,0xb5,0xfd,0x87,0x5a,0xb6,0x1c,0xf6,0x9f,0xc0,0x1f,0xed,0x7e,0x90,0xb8, + 0x5f,0xbb,0x76,0xad,0xe,0x7f,0xa5,0x1e,0xd0,0xa7,0x3,0x52,0xa8,0xfe,0xeb,0xc6, + 0xfd,0x95,0xf8,0xcb,0xfb,0x34,0x60,0x1c,0x37,0x92,0x6a,0xd6,0xfc,0x95,0xfd,0x3e, + 0x33,0x49,0xeb,0x3f,0xc6,0x8c,0xfd,0x96,0xfb,0x1,0xf0,0x2f,0x50,0xff,0x85,0xf, + 0x10,0xbf,0x37,0x50,0x14,0x39,0x3b,0x5d,0x66,0x3a,0x60,0x66,0xaa,0xeb,0x0,0x6b, + 0xe0,0xaf,0xec,0xff,0x45,0xff,0x1f,0xce,0x2,0x7f,0xdc,0x3,0xff,0xd4,0xec,0xff, + 0xf,0xc,0x7c,0xcd,0xfd,0xfa,0x41,0x83,0xe4,0x75,0x19,0xc0,0xe7,0xd3,0x36,0x71, + 0x54,0xaf,0x6e,0xc,0xe5,0xcf,0x1b,0x49,0x45,0xb,0x47,0xb2,0x7a,0xbc,0x9a,0xd9, + 0xfb,0xf8,0xf5,0x1f,0x86,0xd6,0x64,0x28,0xd7,0x7f,0xc0,0xc6,0xc1,0x17,0xe8,0xdb, + 0x77,0x16,0x21,0xd,0xb1,0xc6,0x10,0xf1,0x37,0x6b,0x2a,0xf7,0x3,0x56,0x73,0x79, + 0xcb,0xdb,0x0,0x55,0xaa,0x1c,0x67,0x61,0xff,0x5b,0xf8,0x8b,0x3e,0x3f,0xd1,0xff, + 0x27,0xfa,0xfe,0xad,0x85,0x3f,0xda,0x68,0x90,0x1,0xf4,0xf9,0x79,0xb8,0xc7,0x51, + 0xf5,0x6a,0x31,0x94,0x33,0x7b,0x24,0xa7,0x1c,0xd9,0x56,0x33,0x9d,0xd4,0x84,0xcf, + 0xe7,0xc7,0xdc,0x5b,0xe5,0x9a,0xc,0xe5,0xfa,0xf,0x25,0xfe,0x78,0xe,0x7f,0xd0, + 0xd3,0xd3,0x57,0x87,0xbf,0x98,0x57,0x8,0xfc,0xb1,0xfe,0xf,0x3a,0x6,0xeb,0xb, + 0xeb,0xd7,0xff,0x85,0x6a,0xd5,0x5e,0x62,0x71,0x1c,0x9a,0x36,0xad,0xca,0xfc,0xd2, + 0x52,0x3a,0x4a,0xb,0xf8,0xb,0xfd,0x8f,0x7a,0x2f,0x48,0x69,0xb,0x20,0x3,0xa9, + 0xa9,0xff,0x81,0x8d,0xd8,0xab,0x45,0xe0,0x2f,0xea,0x7f,0x2e,0x86,0xbd,0xbd,0x6d, + 0x24,0xd9,0x6a,0x8e,0x51,0x91,0xa2,0x1e,0x7c,0x2e,0xae,0x98,0x7f,0x2d,0xd6,0x5e, + 0xa8,0xeb,0x3e,0x64,0x43,0xc8,0xc7,0xc0,0x81,0x3,0x69,0xf2,0x94,0x95,0x3a,0xfc, + 0x45,0xfb,0x2,0x6b,0xff,0x9a,0x69,0xf7,0xf,0xac,0x5d,0x93,0xe9,0x0,0x66,0x5f, + 0xa,0x17,0x99,0x6c,0x71,0xec,0x3b,0x75,0xca,0xcc,0x7c,0x52,0x5b,0xd6,0x76,0xb1, + 0xe1,0xe7,0xf6,0xed,0xdf,0x9f,0x7,0x92,0xda,0xf8,0xb,0xff,0xef,0x9e,0xe2,0xfb, + 0xee,0x4a,0x19,0x10,0xed,0xc2,0xd4,0xf2,0xff,0x18,0x36,0xde,0xea,0xfa,0xf,0xfc, + 0x61,0x9f,0xb,0xe4,0x8b,0xe2,0xf8,0x67,0xb1,0x8b,0xa4,0x5c,0x39,0x97,0x50,0xd1, + 0xa2,0xc5,0xf8,0x9c,0x6b,0xe5,0x3c,0x7c,0x31,0x27,0x5b,0xc8,0x83,0x72,0xdd,0x56, + 0xd3,0xe6,0x4d,0x29,0x20,0xe0,0xe,0xb7,0xff,0xf0,0x31,0x80,0x3f,0xdf,0x5b,0x44, + 0x8b,0x3f,0xf4,0x3f,0xea,0xff,0x27,0xf5,0x9f,0x31,0xfc,0xa7,0xa4,0x8,0xf6,0x63, + 0xc7,0x4a,0x7c,0xce,0x20,0x8,0xf7,0xf8,0xcd,0x9a,0xf8,0xb,0x1d,0x20,0xc6,0x80, + 0x84,0x1d,0x50,0x3e,0x87,0xed,0x4c,0xad,0xf6,0x1f,0xf0,0xf7,0xf1,0x79,0xf3,0x9e, + 0xfe,0x47,0xdd,0xc4,0xfa,0x9f,0x9c,0x5a,0x1d,0x90,0x15,0x73,0xff,0x1d,0x5b,0xf3, + 0x35,0xf7,0x1,0x1,0x1,0x6,0xd7,0x65,0x0,0x7b,0xc8,0x0,0x6c,0xc5,0xa0,0x21, + 0xb3,0x79,0xfb,0x6f,0xcc,0x98,0xb7,0x4c,0x17,0xc8,0xe3,0xc4,0x2,0x7f,0xcc,0x29, + 0x85,0xef,0x57,0xca,0x39,0x8a,0xca,0x97,0xbd,0x6e,0x31,0xfc,0x5b,0xb7,0x2e,0xc9, + 0xb1,0x7,0x61,0xde,0x28,0xd6,0xfc,0x81,0x30,0xff,0x13,0xf7,0xa9,0x61,0x7,0xcc, + 0xe9,0xff,0x11,0x58,0xab,0xc9,0xd8,0x18,0x40,0xa,0xe1,0xef,0xaa,0xb4,0x1,0xf0, + 0x1,0x95,0x7b,0x37,0x56,0xaa,0xf8,0x96,0xe3,0xf,0x72,0x76,0xde,0xcc,0x64,0xa0, + 0x26,0xdf,0xdb,0x3,0x7b,0xc0,0x18,0x5a,0xff,0xd1,0xa7,0x4f,0x1f,0x6a,0xe7,0xee, + 0xce,0xe4,0xe9,0x34,0x8d,0x1f,0x17,0x95,0xa0,0x6d,0x1,0xec,0xc5,0x3c,0x0,0xcc, + 0x1,0xaa,0x58,0x21,0x9a,0xb5,0x33,0x7e,0xa3,0xda,0xb5,0x1b,0x31,0xfd,0x9c,0x97, + 0xfd,0xe6,0x92,0xc4,0x3a,0xef,0x42,0xed,0xdd,0xf3,0x32,0xdc,0x6d,0x13,0x60,0xf, + 0xdc,0x3,0xe7,0xc8,0x84,0x67,0xf8,0x2d,0x2d,0xe0,0x2f,0x8,0x78,0xb,0x32,0x15, + 0x36,0xa5,0xfa,0xff,0x81,0xff,0xd4,0xa9,0x91,0x3a,0xfc,0xc5,0x1a,0xc0,0xa6,0x5a, + 0x3f,0x1d,0x38,0x1,0xff,0xcc,0x36,0x7f,0x52,0xf1,0xe2,0x9b,0x99,0x1d,0x68,0x4a, + 0x85,0xa,0x15,0xa5,0x2,0x5,0xa,0x70,0x7d,0x80,0xb6,0x1e,0xfa,0x83,0xeb,0xd7, + 0xaf,0x4f,0x35,0x6a,0xd6,0x60,0xd4,0x89,0x5c,0xdd,0xe6,0x52,0xe3,0xc6,0xc7,0x78, + 0x5c,0x62,0x1f,0x48,0xae,0xf7,0xb5,0x71,0x8a,0xba,0x8f,0xb8,0x9d,0x8a,0x5d,0xa3, + 0x3e,0x9e,0xb6,0x5a,0xec,0x18,0x75,0xb6,0xe5,0x58,0xa2,0x2e,0x9b,0x92,0x7,0x84, + 0x89,0xc7,0xdd,0x8e,0xcf,0x13,0x7,0xce,0xc0,0x1d,0x84,0xf9,0xc3,0x58,0xff,0xc5, + 0xd7,0x0,0x7b,0xcb,0x36,0x20,0x2d,0xe1,0x9f,0x18,0x4a,0x41,0xfc,0x75,0x36,0x40, + 0xa9,0x3,0xd4,0x75,0x55,0xe8,0x1,0xc7,0x82,0xe7,0x98,0x1c,0x6c,0x21,0x47,0xc7, + 0x9e,0x94,0x27,0x6f,0x63,0xca,0x95,0xab,0x21,0x3f,0xe3,0x1e,0x7a,0xbc,0x50,0x21, + 0x5f,0xaa,0x54,0xe9,0x4,0xc3,0xf9,0x59,0x82,0x35,0xc5,0xb2,0xcf,0x17,0xcb,0xed, + 0xa,0xe2,0x43,0xfb,0x32,0x5f,0x9e,0x3f,0x19,0xde,0xfd,0xf9,0xbc,0x6e,0xe0,0x26, + 0xea,0xa8,0x4e,0x16,0xb4,0xf2,0x60,0x90,0xb4,0x61,0x80,0x2b,0xd6,0xa,0x60,0xed, + 0x10,0xea,0x3d,0xd6,0x7b,0x61,0xdd,0x8f,0xd8,0x3f,0x1c,0x67,0xdc,0xf7,0xee,0x9d, + 0x27,0x3,0x7f,0x23,0x3a,0x0,0x3e,0x0,0x64,0xa0,0x87,0x76,0xf,0x50,0xc8,0x0, + 0xe6,0xed,0xf1,0x31,0xdb,0xf2,0xd1,0x3a,0x7f,0x0,0x4,0xec,0x20,0xb,0xa5,0x4b, + 0x1f,0xa3,0x62,0x45,0xe,0x52,0xb9,0x32,0xe7,0xa9,0x5c,0xd9,0xf3,0xac,0x4d,0xff, + 0x8c,0xb7,0xef,0x20,0x3b,0x42,0x86,0x30,0x6f,0x5c,0x8c,0x29,0xa0,0xee,0x8b,0xbe, + 0x85,0x82,0x5,0xce,0x32,0x5c,0xaa,0xeb,0xf6,0xec,0xf5,0xf3,0x93,0xbf,0xf1,0xa1, + 0x5c,0xf7,0x1,0x6c,0x41,0xa8,0xdf,0xf2,0x59,0xbe,0x16,0xf7,0x8,0x87,0xf0,0xf8, + 0x6,0x0,0xde,0x7,0xce,0xd8,0x57,0x5c,0xb9,0x6f,0xbc,0x90,0x81,0x91,0x23,0x9c, + 0x32,0xf0,0x37,0xa2,0x3,0x44,0x5b,0x0,0x3a,0x40,0xcc,0x1,0x12,0xfe,0x3a,0xda, + 0xeb,0xf0,0xd9,0x31,0xd7,0x5f,0xc8,0x1,0xce,0xc0,0x11,0x98,0xa2,0x5e,0xd7,0xd3, + 0xee,0xf,0x2f,0xe6,0x85,0xcb,0x67,0x19,0x77,0xfc,0x86,0x70,0x78,0x1f,0x6d,0xcb, + 0x22,0x8e,0x7f,0x31,0x39,0xfb,0x44,0xb7,0xcf,0x3f,0xd6,0x72,0x60,0x6e,0xbf,0xf8, + 0xee,0x3,0x6c,0x36,0x74,0xb6,0xf8,0xe6,0xb,0xea,0x35,0xea,0xf7,0x98,0xb1,0xf9, + 0xb9,0x3f,0xf,0xcc,0xf1,0x1b,0xd6,0x86,0x88,0x6f,0x8,0x0,0x77,0xc4,0x85,0x39, + 0xe2,0xc0,0x1c,0x7b,0x0,0x80,0x2e,0x5f,0x96,0xe8,0xfc,0x79,0xe8,0xff,0xa4,0xf9, + 0x17,0x1f,0x3a,0xfe,0x42,0x7,0x28,0xed,0x80,0xf0,0xd9,0xda,0xeb,0x7c,0xf6,0x58, + 0x5d,0xbb,0x0,0x38,0xf2,0xbe,0x41,0x67,0x19,0x4f,0xc8,0x45,0x3d,0xed,0x77,0x20, + 0xc4,0xb8,0xb1,0xab,0x6b,0xfc,0x38,0xa2,0xc0,0x1f,0x7a,0x5f,0xc8,0x4c,0xc9,0x52, + 0xab,0x59,0xdb,0x57,0x5e,0xaf,0xb1,0x6f,0x5f,0xfc,0xbe,0xad,0x7c,0xef,0xd6,0x35, + 0x92,0x6e,0xbd,0x7,0x70,0x5,0x61,0xbd,0x97,0xf0,0xe5,0x70,0xd,0x39,0x59,0xaa, + 0xfd,0x86,0x0,0xc2,0xe3,0x3d,0xb1,0x16,0x44,0x10,0xf6,0x1,0xbb,0x71,0x43,0xa2, + 0x97,0x2f,0x1d,0xe8,0xf0,0x61,0xeb,0xb7,0xff,0xd3,0x38,0xfe,0xae,0xc2,0xe,0x88, + 0x79,0x7c,0x62,0x9e,0xaf,0xd2,0x1f,0x68,0xde,0x2c,0xbe,0x7d,0x28,0x30,0x57,0xae, + 0xff,0x68,0xde,0x4c,0xb6,0x19,0xc2,0x76,0x8,0x19,0x0,0xf6,0xb2,0xbc,0xfc,0x49, + 0xd5,0xaa,0x1d,0xa4,0x2d,0x5b,0x6a,0x72,0x6c,0x40,0xc7,0x4f,0xc8,0xeb,0xb6,0xb1, + 0xd6,0x43,0xec,0xe1,0xcc,0xf7,0x70,0xd5,0xee,0xe3,0xb,0x5a,0xaf,0x25,0xac,0xfb, + 0x11,0x6b,0x7f,0xc4,0xde,0xf1,0x9,0xbe,0x13,0xc1,0x70,0xf,0x39,0x26,0xef,0x1, + 0x77,0xf7,0x8e,0x8c,0x7d,0x74,0x74,0x1,0x1a,0x31,0xa2,0x46,0x6,0xfe,0x66,0xca, + 0x0,0xe6,0x2,0x89,0xf5,0xc0,0x62,0xd,0xb7,0x98,0xdf,0xf,0x5c,0x5b,0x34,0x4f, + 0x88,0x37,0xff,0x26,0x48,0x73,0x79,0xec,0xa0,0xb5,0xf6,0xbb,0x10,0x38,0xb7,0xd1, + 0x12,0xc2,0xa0,0x4f,0x11,0xfd,0x3d,0x4e,0xc5,0x6f,0xd1,0xb2,0x65,0x6e,0x7c,0xcf, + 0x5e,0xec,0xd5,0x76,0xe3,0xba,0x8c,0x13,0xf0,0xfa,0xe5,0xa4,0xa4,0x5b,0xbb,0xa7, + 0xfc,0xd6,0x8b,0xb2,0x4e,0xe3,0x5e,0x7c,0xf,0x64,0xff,0xfe,0xf8,0x3a,0x8f,0xf7, + 0x40,0xd0,0xf5,0x90,0xa9,0x47,0x8f,0xec,0x38,0xee,0xa0,0xb3,0x67,0x53,0xde,0xee, + 0x7f,0x8,0xf8,0x2b,0x65,0x40,0xdd,0x26,0x10,0x6d,0x43,0xe5,0x5a,0xf,0xf4,0x15, + 0x81,0x94,0xcf,0x4,0x89,0xb0,0xe2,0xdc,0xaa,0x65,0x2c,0xb5,0x6b,0x1b,0x49,0x73, + 0xe7,0x6e,0xe5,0x98,0xa0,0x5e,0x2,0x77,0x25,0x1,0x37,0xe0,0x7,0x59,0x40,0x1d, + 0x6,0xae,0xfc,0x5b,0x2f,0xa,0xfc,0xc5,0x3d,0xce,0x8,0x73,0xe2,0x94,0x44,0xa7, + 0x4e,0x4b,0x3a,0x5d,0xaf,0xac,0xf3,0xa9,0x8d,0xfd,0x87,0x80,0xbf,0x5a,0x6,0x84, + 0x4f,0x28,0xfa,0x8,0x95,0xb2,0xa0,0x94,0x9,0x71,0x2f,0xda,0x10,0x38,0x2b,0x9, + 0xf1,0x60,0xbe,0x28,0x78,0x4,0x5d,0x2c,0x64,0x0,0xf5,0xd4,0x90,0x1c,0x8,0x82, + 0xef,0x26,0xe4,0x42,0xf9,0x5c,0xd8,0xf,0xf1,0xde,0xf3,0xe7,0xd9,0x74,0xb8,0x83, + 0x56,0xad,0xaa,0x98,0xaa,0xd8,0x7f,0x28,0xf8,0xc7,0xcb,0xc0,0xab,0x60,0x65,0xff, + 0x90,0x3e,0x12,0x78,0x2b,0x9,0x58,0xe3,0x1d,0x41,0x88,0x3,0x7d,0xc1,0x6a,0x5e, + 0xfd,0xf2,0x4b,0x11,0x1d,0x56,0xc0,0xe,0xa4,0x96,0x5,0x53,0x24,0xde,0x53,0xe2, + 0x8e,0x78,0x53,0xcb,0xde,0x9b,0x8b,0xbf,0x18,0xd7,0x35,0x97,0xac,0x8d,0xbf,0x52, + 0xe,0xe4,0x79,0x5c,0xb2,0x1c,0x0,0x5b,0x35,0x29,0x71,0x56,0x12,0xde,0x3,0x6d, + 0xd8,0x70,0x91,0x4a,0x96,0xac,0xae,0x97,0x5f,0xc0,0x49,0x29,0x7,0x42,0x2f,0x8, + 0x12,0xf8,0x42,0x4f,0x80,0xc4,0xbd,0x52,0xc7,0x8b,0x77,0xa0,0xeb,0xf5,0xad,0xf7, + 0x4d,0xb,0xf8,0xe3,0x19,0xc6,0x78,0x31,0xc6,0x2f,0xd6,0x7b,0xe3,0x5a,0x39,0x7, + 0x50,0xb9,0x77,0x5f,0x5a,0xc1,0x5f,0x1c,0xb3,0x67,0xff,0x15,0x2c,0xe4,0x40,0x1f, + 0x89,0xdf,0x94,0x98,0x83,0x44,0xfe,0x91,0x27,0x53,0xbc,0x5b,0xba,0xb4,0xcc,0x7b, + 0xb2,0x60,0x8a,0xf0,0xe,0xc8,0x9a,0x98,0x9b,0x8b,0x3f,0xce,0x62,0x9d,0xaf,0x72, + 0xdd,0xbf,0x5a,0x6,0xd2,0x22,0xfe,0xe2,0xd0,0xfa,0x6,0xde,0x7e,0x7e,0x3b,0x19, + 0xbe,0x7f,0xd0,0xf1,0xe3,0xd1,0x5a,0xac,0x4f,0x32,0xba,0x69,0xd0,0x7e,0x99,0x83, + 0xbf,0x9a,0x50,0x97,0x61,0xc3,0xd5,0x64,0xed,0x3a,0x9e,0x1c,0xfc,0x31,0xde,0xaf, + 0x9c,0xf7,0x89,0x79,0x5f,0x6a,0x19,0x48,0xcb,0xf8,0x8b,0x3,0x69,0x61,0x3f,0x35, + 0x73,0x7d,0x9d,0xa4,0xe0,0x9f,0x1e,0xc9,0x18,0xfe,0xc0,0x5a,0x90,0x58,0xf7,0x2f, + 0x70,0x17,0x73,0x67,0x32,0xf0,0x4f,0xdf,0x64,0x2e,0xfe,0xa2,0xde,0x2b,0x75,0x81, + 0xf0,0x9,0x32,0xf0,0x4f,0xbf,0x94,0x18,0xfc,0x85,0x1e,0x10,0x7b,0xc0,0x64,0xe0, + 0x9f,0xfe,0x29,0xb1,0xf8,0xab,0x6d,0x81,0xd8,0x1f,0x2e,0x3,0xff,0xf4,0x49,0x49, + 0xc1,0x5f,0xe9,0x3,0xe2,0xfa,0x43,0xc5,0xff,0xe3,0x8f,0xd3,0xae,0xdf,0x6e,0x6d, + 0xfc,0x95,0xfe,0xc0,0x87,0x88,0xbf,0xa1,0x35,0xaf,0x1f,0x1a,0x61,0x7f,0xc7,0xa4, + 0xe2,0xf,0xfa,0x50,0xf5,0x3f,0xf6,0xba,0x33,0xb7,0xc,0xe9,0x99,0xc,0xed,0xe1, + 0x92,0x98,0xfd,0xa3,0xd1,0x57,0xfc,0xa1,0xe1,0x9f,0x41,0xc9,0xa3,0xc,0xfc,0xff, + 0xdb,0x94,0x81,0xff,0x7f,0x9b,0xd2,0x1a,0xfe,0xe8,0xa7,0x30,0xe4,0xeb,0x64,0xd0, + 0x7f,0xb,0x7f,0xe5,0x3a,0x96,0xc,0x4a,0x19,0x4a,0x83,0xf8,0xbb,0x42,0x6,0xee, + 0xde,0xbd,0x9b,0x6a,0xdf,0x55,0xf9,0x2f,0x13,0xf8,0x9c,0x96,0xf0,0x57,0xca,0x0, + 0xd6,0x7d,0x5a,0x5b,0x3f,0x7e,0xc8,0x24,0xd6,0x8d,0x9b,0x23,0x3,0xa9,0x89,0x7f, + 0x86,0xc,0xa4,0x3d,0x19,0x48,0x6d,0xfc,0x33,0x64,0x20,0x6d,0xc9,0x80,0x35,0xf0, + 0xcf,0x90,0x81,0xb4,0x23,0x3,0xd6,0xc2,0x3f,0x43,0x6,0xd2,0x86,0xc,0x58,0x13, + 0xff,0xc,0x19,0xb0,0xbe,0xc,0x58,0x1b,0xff,0xc,0x19,0xb0,0xae,0xc,0xa4,0x5, + 0xfc,0x33,0x64,0xc0,0x7a,0x32,0xa0,0xc5,0xde,0xd5,0xda,0xf8,0xe3,0x50,0xca,0x0, + 0xd6,0x3e,0x64,0x50,0xca,0x10,0xbe,0x1f,0x5,0xfc,0xb1,0x7,0x97,0xb5,0x31,0x57, + 0x1f,0x42,0x6,0x2c,0x31,0xb6,0x9e,0x41,0x86,0x49,0xcb,0xe3,0x24,0xd5,0x7b,0x57, + 0xa2,0x4,0x72,0xe3,0xa4,0xba,0x77,0x50,0xdd,0xdb,0xab,0xee,0x6d,0x54,0xf7,0x1a, + 0xd5,0xbd,0xa4,0xbe,0xf7,0x56,0xdd,0xbb,0xaa,0xee,0x9d,0x54,0xf7,0xe,0xaa,0x7b, + 0x7b,0xd5,0x3d,0xcb,0x80,0x8f,0x2a,0x3,0x21,0xaa,0xc,0x84,0xa9,0x32,0x10,0xae, + 0xca,0x40,0x94,0x2a,0x3,0xb1,0xaa,0xc,0xbc,0x4b,0xd9,0xc,0xbc,0x9f,0xa1,0x8c, + 0x7b,0xe3,0xf7,0x21,0xaa,0x7b,0x1f,0xd5,0xbd,0x94,0xf0,0x3e,0x56,0x75,0x1f,0xa5, + 0xba,0xf,0x57,0xdd,0x87,0x99,0xb8,0xf,0x49,0xe6,0xbd,0x8f,0x75,0xef,0xbd,0x55, + 0xf9,0xa1,0xc4,0xde,0x87,0x99,0xb8,0x57,0xf1,0x53,0x55,0xbf,0x4c,0xdf,0xab,0xdf, + 0x57,0xdf,0x9b,0x4a,0x3f,0xc4,0xc4,0xbd,0x4f,0x3a,0xbb,0xf,0x31,0x71,0x1f,0x66, + 0xe2,0xde,0x14,0x3f,0xd5,0xfc,0x57,0xd5,0x17,0x95,0xfe,0x93,0x54,0xfa,0x4f,0x7a, + 0x5f,0xdf,0x85,0xab,0xee,0x63,0x55,0xf7,0xc6,0x2d,0xc4,0x7,0x70,0xef,0xa3,0xba, + 0xf,0x51,0xdd,0x87,0xa9,0xee,0xc3,0x55,0xf7,0x51,0xaa,0xfb,0x58,0xd5,0xfd,0x3b, + 0xd5,0x3d,0xa9,0xef,0x15,0x19,0x80,0x85,0x56,0x66,0xc0,0x86,0xfe,0xf,0x67,0xb0, + 0xcc,0x48, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty_active.ico + 0x0,0x0,0x2,0xf2, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0x13,0x41,0x10,0x1e,0x5b,0x26,0x52, + 0x44,0x11,0x17,0x89,0x94,0xe,0x97,0x94,0x3c,0x82,0x69,0xa8,0x29,0x32,0x4a,0x9, + 0x15,0xa2,0xa4,0xa1,0xe6,0x4a,0x4a,0x1e,0xc1,0x5,0x45,0xb4,0x96,0x92,0x16,0x51, + 0x44,0xe6,0x21,0xdc,0x53,0x7,0x89,0xa,0x9a,0x34,0xcb,0xdc,0x9d,0x37,0xbe,0x3b, + 0xcf,0xee,0xce,0xfe,0xf8,0x8c,0x23,0x4f,0xb4,0xfa,0x7c,0xb7,0xbb,0xf3,0xb3,0xde, + 0xfd,0x66,0xd6,0x1,0x18,0xc0,0x8,0xc6,0x63,0x20,0x9c,0xc0,0xfb,0x11,0xc0,0x2b, + 0x0,0x38,0x3d,0xad,0x9f,0xbf,0x1d,0x1,0x5c,0xd3,0xbb,0xf3,0xf3,0xfa,0xf9,0xf3, + 0x31,0xc0,0xbb,0xa7,0x0,0x93,0x49,0xfd,0x7c,0x45,0xf3,0x7e,0xd3,0xd8,0xe7,0x34, + 0x87,0x3e,0xd2,0x9b,0xfa,0x7d,0x29,0xd3,0x11,0x70,0xa2,0x3,0xb0,0xdb,0x2a,0x29, + 0x8a,0x42,0xb,0x50,0x43,0xd1,0x68,0x2b,0x1d,0x66,0xcc,0xd7,0xd9,0xcc,0x8e,0x34, + 0xbe,0x14,0x68,0xfe,0xad,0x75,0x80,0x4f,0x87,0x6b,0x7e,0xe,0xfb,0x8b,0xc5,0x82, + 0x9d,0xdb,0x8a,0x7f,0xa5,0xc3,0x88,0xcf,0x7e,0x73,0x7d,0x9b,0x3a,0x4c,0x33,0xf3, + 0x5c,0xf6,0xbb,0xc2,0xd9,0x8,0xb2,0xcf,0xc4,0xe6,0xb1,0xdf,0xc2,0x10,0xfb,0x3e, + 0x94,0xd8,0xf7,0xa1,0xc4,0xbe,0xad,0x5f,0x62,0xdf,0x8c,0x71,0xad,0x8f,0x4f,0x7f, + 0x17,0x39,0xfb,0xc2,0xf3,0xc7,0x22,0xbe,0xd4,0x5a,0x15,0x5a,0x23,0x74,0xf0,0x87, + 0xd6,0xf3,0x3b,0xc2,0x25,0x3d,0x2b,0x42,0xe4,0xb1,0xe4,0x19,0xa2,0x9b,0x8a,0x6f, + 0xc,0xcf,0x7c,0x39,0x2,0x4e,0x42,0x78,0xc6,0xa0,0xad,0xc5,0xc4,0xdd,0xe6,0x9f, + 0x18,0x1e,0x32,0xc8,0xf1,0x41,0x0,0x2f,0x88,0xf8,0x89,0xd1,0x27,0xd6,0xb9,0x3, + 0xff,0x76,0xb1,0x7e,0x2e,0x7e,0x95,0xf2,0xac,0x94,0x6f,0x43,0x78,0x57,0xca,0xbf, + 0x21,0x3c,0xc4,0xfa,0xe7,0x58,0x13,0xa1,0x7f,0x2d,0x4c,0xf1,0xaf,0x4f,0xde,0x4e, + 0xf1,0x4f,0xca,0xf7,0x12,0xff,0x7c,0xfc,0xfe,0x98,0xfd,0x93,0xec,0x3f,0x1b,0x1f, + 0xfb,0xfa,0xd9,0x3c,0xf5,0xfa,0x99,0x56,0xb3,0x13,0x8d,0xd3,0x93,0xa,0x97,0x2b, + 0x34,0xcf,0xf8,0x81,0xfa,0xef,0x6f,0x34,0x7e,0x7c,0x43,0x79,0x89,0x10,0xed,0x38, + 0x27,0x2c,0xf3,0x15,0x95,0xd0,0xf0,0x2,0xd6,0x79,0xeb,0xed,0x31,0x70,0xc2,0x9e, + 0x95,0x40,0xec,0xb6,0x66,0x7f,0x74,0xfe,0x6,0x77,0x4e,0xab,0xfa,0x63,0xcf,0xed, + 0x83,0xae,0x5c,0x39,0xa9,0xa3,0xdb,0xca,0xff,0x29,0x79,0xc5,0x60,0x80,0xfe,0xe6, + 0x7a,0xee,0xab,0xff,0xff,0xd3,0xfa,0x3f,0xec,0x4d,0x87,0x8d,0xea,0x7d,0xc4,0xfe, + 0xd9,0x10,0x77,0xce,0x87,0x10,0xff,0xad,0xc2,0x9f,0xaf,0xd8,0x3c,0xdb,0x56,0x2d, + 0xc8,0xf9,0xa9,0xfe,0xe7,0xcc,0xc3,0x52,0xdd,0x29,0x75,0x83,0x59,0xab,0x5d,0xd4, + 0x11,0x39,0xfc,0x97,0xfa,0x12,0xe3,0xbf,0x2f,0xf7,0xe6,0xcc,0xeb,0xd2,0xda,0xe2, + 0xe0,0x7f,0xde,0xfd,0x13,0x1a,0x2f,0xe7,0x97,0xb4,0xde,0x92,0xcc,0x47,0x7c,0x42, + 0x75,0xd3,0x50,0xe3,0xc5,0x40,0xab,0x2b,0xa0,0x3a,0xc,0xda,0x58,0xbe,0xbf,0xa5, + 0xfe,0x4f,0x34,0xee,0x56,0x11,0x62,0x8d,0x48,0xa8,0x3c,0xf8,0x4b,0x55,0x75,0xd8, + 0x84,0xda,0x14,0xd6,0x75,0x58,0x31,0x6,0x4e,0xf4,0x16,0xb1,0xdb,0xb8,0x71,0xd1, + 0x75,0x9a,0x5,0xeb,0x26,0xf8,0x4d,0x2,0x22,0xf6,0x91,0x7,0xb5,0xb7,0xbe,0x2b, + 0x36,0x7c,0xc8,0xc3,0xb3,0x92,0xda,0x63,0xb3,0xc6,0xc9,0x16,0x7f,0xa4,0xfd,0x2c, + 0xf1,0x7,0xd9,0xce,0x51,0x47,0xa6,0xac,0x3d,0xb3,0x6,0xa9,0x3e,0xec,0x7b,0xfc, + 0x7b,0xff,0xfd,0xef,0x68,0xff,0xb7,0x78,0xaf,0xe7,0xf3,0xcf,0xe6,0xba,0xc6,0xbd, + 0x81,0xb3,0xdb,0xbc,0x47,0xa4,0xf0,0x5f,0x73,0xed,0x38,0x1f,0x9c,0xf7,0x17,0x6a, + 0x29,0x75,0x84,0xcd,0x76,0xcb,0x87,0xea,0x3,0xb0,0xf7,0x9b,0x94,0x3a,0xa9,0xe1, + 0x83,0x53,0x42,0x62,0xd9,0x56,0xfc,0x21,0xfb,0x27,0xeb,0xf7,0xbf,0xe5,0xf8,0x1d, + 0x3e,0x44,0x9f,0x9f,0x94,0xff,0xb3,0xc5,0xd8,0xce,0x11,0x7f,0x2a,0xf6,0x71,0xcf, + 0xec,0x23,0xfe,0x1c,0xfc,0x99,0x85,0xff,0x7b,0x8e,0x3f,0xf4,0x5e,0x78,0x88,0xff, + 0x10,0xff,0x63,0x8a,0x3f,0xe7,0xf9,0xf,0xbd,0xe7,0xda,0xe6,0xc5,0xe8,0x43,0xbc, + 0x38,0x53,0x6a,0x36,0x44,0x9c,0xe,0x94,0x2a,0x60,0x8d,0x0,0x6d,0x34,0xef,0x17, + 0x3,0x35,0xff,0x39,0xc4,0xcb,0x3f,0x67,0xea,0xe6,0x5e,0xe1,0xe5,0x5f,0x54,0xf3, + 0x3b,0x85,0xb8,0x44,0x45,0x82,0x24,0x62,0xbc,0xfe,0xae,0xfe,0x1,0xd6,0xdb,0x0, + 0x8f, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo.ico + 0x0,0x0,0x4,0xf7, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x58,0x3b,0x52,0x1b,0x41,0x10,0x1d,0xaa,0x28,0xaa, + 0x28,0x7,0x26,0x20,0x20,0x33,0xa1,0x43,0x1f,0x81,0xc8,0xe7,0x70,0xe4,0x32,0x70, + 0x7,0xa4,0xd0,0x1,0x50,0x3e,0x86,0x23,0x3,0x99,0xcf,0x1,0x9c,0xc3,0x57,0x90, + 0xe7,0x49,0xfb,0xc4,0x53,0x6f,0xf7,0xf4,0xac,0x24,0x7b,0xaa,0x5a,0xfb,0xd1,0xf6, + 0x67,0x7a,0x7a,0xfa,0x75,0x4f,0x29,0x7,0xe5,0xb0,0x9c,0x9c,0x94,0x7a,0x3d,0x2f, + 0xdf,0xe,0x4b,0xf9,0x5c,0x4a,0x39,0x3d,0x5d,0x3d,0xff,0x3e,0x2a,0xe5,0x57,0x7d, + 0x77,0x76,0xb6,0x7a,0xfe,0x7e,0x5c,0xca,0xd7,0x77,0xa5,0x9c,0x9f,0xaf,0x9e,0x7f, + 0x56,0xbe,0x3f,0xf5,0xdb,0x8f,0x95,0xa7,0xde,0xd6,0x37,0xab,0xf7,0x18,0x17,0x87, + 0x25,0x1a,0x8b,0x2d,0x9,0x3f,0xb,0x52,0x91,0xfb,0x90,0x1e,0x1f,0xc7,0xdf,0x63, + 0x3c,0x3d,0xad,0xee,0x71,0x5,0x5d,0x5d,0x6d,0x12,0xdf,0xcb,0xb7,0x2e,0xff,0xdd, + 0xdd,0x62,0x71,0x7f,0xbf,0x58,0xbc,0xbe,0xae,0x8,0xcf,0x20,0xca,0x31,0xfc,0xeb, + 0x39,0x60,0xd0,0x3e,0x10,0xbe,0x51,0x7e,0xbc,0xc3,0x75,0xf8,0x6e,0xc4,0x4b,0xfd, + 0xe0,0x21,0x2f,0xf9,0xf1,0x7c,0x7b,0xfb,0xc6,0xef,0xd9,0x8f,0xff,0x68,0xbf,0xca, + 0xa0,0x7e,0xca,0xc1,0xb8,0xbe,0x8e,0xf9,0x69,0x27,0x79,0xa1,0x17,0xc4,0x39,0x61, + 0xc0,0xf,0x1e,0x3f,0xe7,0xd0,0x22,0xfa,0xd2,0xf2,0xc3,0xe7,0xd0,0xc1,0x79,0xab, + 0x1d,0x3a,0x17,0xae,0xad,0xb7,0x7e,0xd9,0x80,0x8c,0xcb,0x4b,0xdf,0x7f,0xb8,0x72, + 0x9e,0x83,0x6e,0x1b,0xaf,0xeb,0xb9,0x47,0xfc,0xb4,0x19,0x72,0xaa,0xae,0x9b,0x9b, + 0x9b,0xc5,0x6c,0x36,0x5b,0x5e,0x8b,0xda,0xe9,0xc5,0x8f,0xc6,0x2e,0xa8,0xca,0x1, + 0xef,0x7c,0x3e,0x5f,0x5e,0x37,0xf8,0x5b,0xb1,0x27,0x32,0x42,0xfe,0x48,0xbf,0xa1, + 0x19,0x78,0x85,0xec,0xff,0xe0,0x9d,0x1f,0x6c,0xbe,0xb6,0xcf,0x1e,0xf1,0x1b,0x5c, + 0x91,0x67,0x6a,0xba,0x59,0xe6,0x1b,0xe6,0x99,0x1f,0x47,0x7b,0xcf,0x33,0xbb,0xe7, + 0x1d,0x4b,0xbd,0x79,0x28,0xcb,0x47,0x8c,0xb7,0x2c,0x2f,0x49,0x5c,0xac,0xf3,0x89, + 0xe6,0x88,0x24,0xcf,0xb9,0xb1,0x42,0x39,0x5e,0xce,0xa2,0x2e,0xee,0x97,0x28,0x6f, + 0xd1,0xf,0x88,0x79,0xf2,0xe3,0xdd,0xc3,0xc3,0x9b,0x7d,0xfc,0xf,0x7b,0x1c,0xf7, + 0x90,0x99,0xcd,0x77,0xd8,0x43,0x1b,0x32,0xd5,0x3e,0xe6,0x25,0xcd,0x6b,0x99,0xff, + 0x6c,0x3e,0xa1,0xc,0xe6,0x57,0x9b,0xe7,0xb2,0x3c,0x8b,0x6f,0x69,0x27,0xe6,0x86, + 0x79,0x81,0x70,0xf,0xe2,0xfa,0x66,0x79,0x93,0xf6,0x91,0x87,0xeb,0xa9,0xb1,0xc3, + 0x79,0x4e,0x91,0x47,0xa2,0xcf,0xf9,0x8c,0x7b,0xce,0x7b,0x5f,0x79,0xdd,0x52,0x94, + 0xe7,0x75,0x1d,0xb8,0xae,0x5c,0x47,0x92,0x8d,0x1b,0xf5,0x87,0x27,0xaf,0x77,0x30, + 0x76,0xa0,0xb3,0x95,0xc7,0xa9,0x93,0x6b,0x5b,0xc9,0xcb,0x23,0x6b,0x99,0xea,0x5b, + 0x4f,0x1e,0xf7,0x97,0xc8,0x3,0x26,0xb8,0xf8,0x0,0x59,0x9a,0xc7,0x23,0x79,0xba, + 0xb6,0x95,0x20,0x27,0xcc,0xf7,0x8e,0xbc,0x10,0x77,0x4,0x3b,0x9a,0xf8,0x31,0x1, + 0x87,0x52,0x79,0x99,0x7d,0xe,0x11,0x93,0xe6,0xd,0x7c,0x92,0xfc,0x5c,0xe6,0xe5, + 0x43,0xbd,0xbe,0x5f,0x93,0x7d,0xee,0x21,0xf2,0xe0,0xa,0xbc,0xaa,0x25,0x74,0xf9, + 0x24,0xb8,0xf5,0xe5,0xf8,0x9f,0xe3,0x96,0xa5,0x91,0x8f,0xb6,0xc2,0x32,0x92,0x60, + 0x9a,0xbb,0xcf,0xf8,0x7f,0x84,0x6d,0xa8,0x2b,0x41,0x19,0xc6,0x45,0xfb,0xd8,0xca, + 0xd7,0xba,0xd5,0xe2,0x9d,0xea,0xb5,0x98,0xe7,0xc9,0xa7,0xd,0x9c,0x27,0xf3,0x80, + 0x95,0xad,0xf2,0x15,0xaf,0x2,0xf9,0x1b,0xb1,0xef,0x61,0x97,0xc5,0x56,0xcd,0x69, + 0xec,0x35,0xf0,0xbf,0x83,0x89,0x23,0x9c,0xa5,0xfd,0x8a,0x61,0xc0,0x59,0xf,0x6b, + 0x15,0xdb,0x7a,0xfd,0x8f,0xef,0x99,0xbb,0x2d,0xf6,0xd2,0x47,0x76,0x5d,0x2c,0x86, + 0x44,0xf5,0xb5,0xca,0xf7,0x6a,0x7b,0xda,0xab,0x76,0x4f,0x91,0xcf,0x7c,0x4d,0xfb, + 0x23,0x6c,0x56,0x8c,0x8e,0xe2,0x13,0xff,0x7b,0xf2,0x35,0x3e,0x23,0xac,0x8e,0x30, + 0x3b,0x93,0xcf,0x38,0xb0,0xfb,0xcb,0x62,0xb7,0x62,0x78,0x24,0x3f,0xea,0xaf,0x64, + 0xed,0xb7,0xce,0xf,0xe0,0x8f,0xfa,0x47,0xdd,0x4f,0x8a,0x79,0xc4,0x34,0x25,0xb5, + 0x5f,0x7d,0x19,0xd9,0x6f,0x6b,0x55,0x1b,0x8f,0xb6,0xbe,0x66,0xf,0x4f,0xbf,0x52, + 0x7,0xae,0xad,0xba,0x64,0xea,0x60,0xec,0x32,0xa6,0x5b,0x75,0xa,0xf7,0xae,0xe6, + 0x86,0x61,0x1f,0x44,0x39,0x7e,0xad,0x23,0xab,0x5b,0x34,0xf7,0x70,0x1d,0x70,0xff, + 0xf2,0xb2,0x24,0xad,0x37,0xdc,0x9e,0x34,0xab,0x63,0x34,0x36,0xb5,0xfe,0x1e,0xe6, + 0xa3,0xf8,0x3e,0xc2,0x78,0x2b,0x3b,0x93,0xaf,0xf9,0x6b,0xf0,0x55,0x53,0xbe,0xad, + 0x99,0x7a,0x6b,0x13,0xa9,0xf9,0x9b,0xf2,0xb3,0x1a,0x45,0xfd,0xef,0xd4,0x52,0xec, + 0xe5,0xbb,0xe5,0xf7,0xf8,0xa7,0x51,0x5f,0x4d,0x91,0x9f,0xd5,0x59,0x24,0xad,0xb7, + 0x7a,0x6a,0xae,0x41,0x7e,0xad,0xbb,0xe,0x46,0x31,0xed,0xbd,0xeb,0x25,0xe5,0xc5, + 0x3d,0xea,0x30,0x54,0x5f,0x17,0x52,0x87,0xcd,0x4f,0xfe,0x7b,0x1d,0x96,0x91,0xeb, + 0xe3,0xe2,0xbc,0xdb,0x99,0x4c,0xd,0x37,0x8a,0x23,0x13,0x3,0x51,0x3c,0x8d,0x6a, + 0xba,0xa8,0xb6,0xf3,0x30,0xb4,0xd5,0xbf,0xb4,0xf4,0xdb,0xb3,0x4a,0x95,0x1b,0x9d, + 0xc7,0xda,0x3a,0x33,0xd3,0x6f,0xfe,0xdb,0xc8,0x67,0xd1,0x9c,0x6c,0x6d,0xa8,0xb8, + 0xa5,0xb5,0x5,0x6b,0x94,0x29,0xfa,0x3d,0xbd,0xd6,0x86,0xe8,0x2c,0x45,0xfd,0x65, + 0x6b,0xc8,0x2c,0x57,0x69,0x2d,0xdc,0xd2,0xad,0xf3,0xd7,0xda,0x4c,0x31,0xc0,0xab, + 0x41,0x22,0xdd,0x8a,0x4d,0xf4,0x7f,0x66,0x3,0xf1,0x29,0xd2,0xad,0xdf,0x11,0xf, + 0x32,0xff,0x53,0xbf,0x9e,0x57,0x65,0xf3,0xd7,0xb3,0xf8,0x9e,0x1a,0x35,0x8a,0x7f, + 0xae,0x19,0xe7,0xdf,0x6b,0x3,0x75,0xeb,0xfe,0x88,0xf6,0x5f,0xab,0xe,0xd7,0x33, + 0x1d,0x5b,0xe7,0x5b,0x1b,0xf4,0x9c,0x2d,0xd2,0xbd,0x8d,0x7e,0xc4,0x2f,0xe3,0xdf, + 0x3b,0xe7,0x63,0x7c,0xdb,0xba,0x9d,0xbc,0xdb,0xea,0x57,0x7e,0xc6,0xbf,0xed,0x45, + 0xec,0x9e,0x56,0xf2,0xfa,0x87,0x28,0xfe,0x5b,0xe7,0x69,0xd1,0x39,0x22,0xe3,0xcc, + 0xd3,0xad,0x36,0xd8,0x75,0xe8,0xd5,0x4f,0xbf,0xda,0xfc,0x47,0x3f,0x44,0xfd,0x86, + 0x67,0x83,0xdd,0x7f,0x56,0xbf,0xd7,0x27,0xd8,0x3e,0xc4,0xca,0x8d,0xfa,0x29,0x4b, + 0xda,0x5f,0xed,0x53,0x3f,0xe6,0xf4,0xaf,0xf5,0x5b,0xc,0xd8,0x27,0x69,0x7c,0x65, + 0x7d,0x9a,0x97,0xbf,0xa6,0xc4,0x9f,0xed,0xdf,0x38,0xb7,0x9e,0x3e,0x4e,0x75,0x7a, + 0xfd,0x5c,0xef,0xfe,0x6b,0x5d,0xa3,0x3e,0x4f,0x31,0xb,0xf9,0x8e,0xba,0xf5,0xac, + 0xc6,0x62,0xbb,0xe6,0x1f,0x3d,0xa3,0x26,0x2e,0x41,0x8e,0x77,0x26,0x10,0xe9,0x67, + 0xac,0xec,0x32,0x9e,0x9f,0xdf,0x6c,0xb7,0x36,0x64,0xfa,0x99,0xfb,0xbd,0xbc,0x3f, + 0xcc,0x31,0xab,0x6b,0x97,0x83,0xfc,0x53,0xfa,0x60,0x3d,0xc7,0xb2,0xba,0x5,0x6f, + 0x6c,0xcf,0xda,0xec,0x5d,0xa3,0xd8,0x6d,0xe9,0xb7,0xfb,0x40,0xcf,0x9f,0x9c,0x9e, + 0xd6,0xed,0xad,0x6c,0xec,0x66,0x7d,0xb4,0xee,0x7b,0xcd,0x9f,0xf6,0xfc,0xab,0x57, + 0xbf,0xdd,0xbb,0x3d,0x7d,0xb6,0xed,0xe5,0x65,0xcd,0x5b,0x3d,0x7d,0xa8,0x9f,0x36, + 0x78,0xfb,0x35,0xd3,0xef,0xf8,0x7d,0xb2,0xfe,0x28,0x57,0x88,0xfe,0x51,0xfd,0x1b, + 0xe5,0xfe,0xa9,0xfe,0xf7,0xce,0x1e,0x32,0xdd,0x49,0x2f,0xcf,0xf5,0x98,0xbc,0xfe, + 0xd,0x1b,0x9a,0xfe,0xf,0x68,0x9f,0xfa,0xa3,0x1e,0xb8,0x45,0xf6,0xcc,0x61,0xca, + 0xd9,0x83,0xd2,0xf2,0x4c,0x0,0xc7,0x3,0xce,0x88,0xde,0xef,0x3a,0x54,0x2e,0xee, + 0xff,0x2,0x28,0x22,0xef,0xc4, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_active.ico + 0x0,0x0,0x4,0xf4, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x59,0x31,0x52,0xdd,0x30,0x10,0x15,0x33,0xc,0x33, + 0x4c,0x8a,0x50,0x50,0xd0,0x85,0x32,0x65,0x8e,0x40,0x95,0x73,0xa4,0xca,0x4,0xb8, + 0x3,0xb8,0x4c,0x1,0x4c,0x8e,0x91,0x2a,0x40,0x97,0x73,0x0,0xe7,0xc8,0x15,0x7e, + 0xf4,0x6c,0x3f,0xf3,0xfe,0x7a,0x57,0x92,0xff,0xff,0xa0,0xcc,0xc6,0xfe,0xb6,0xb5, + 0xbb,0x92,0x56,0xef,0xed,0x8a,0x94,0xf6,0xd2,0x7e,0x3a,0x3a,0x4a,0xf9,0x7a,0x9a, + 0x7e,0xec,0xa7,0xf4,0x35,0xa5,0x74,0x7c,0x3c,0xfc,0xfe,0x7b,0x90,0xd2,0x9f,0xfc, + 0xec,0xe4,0x64,0xf8,0xfd,0xf3,0x30,0xa5,0xef,0x1f,0x52,0x3a,0x3d,0x1d,0x7e,0xff, + 0xce,0xfd,0xfe,0xe5,0x6f,0x3f,0xe7,0x3e,0xf9,0x36,0x3f,0x19,0x9e,0xa3,0x9d,0xed, + 0xa7,0xa8,0xad,0x36,0x14,0xfc,0xb7,0xa2,0x24,0xb9,0xb7,0xd2,0x7f,0xda,0x89,0xe8, + 0xf7,0x68,0x8f,0x8f,0xc3,0x3d,0xae,0x90,0x8b,0x8b,0x49,0xf0,0x3d,0x5a,0xd2,0x7f, + 0x5d,0xd0,0xff,0xf6,0x76,0xb5,0xba,0xbb,0x5b,0xad,0x5e,0x5e,0x6,0xc9,0xbf,0x4b, + 0xfd,0xa7,0x31,0xf4,0x1f,0xe4,0xeb,0xc3,0xc3,0x20,0xd0,0xd7,0xd0,0x7f,0x66,0x1f, + 0x7d,0xd8,0x77,0xec,0x8f,0xdf,0xd4,0xc1,0x36,0xeb,0x8f,0xef,0xe8,0xbf,0xea,0xc0, + 0xef,0x51,0x74,0xfe,0x56,0x76,0xfe,0xd8,0x1f,0xbe,0x53,0x7,0xae,0x37,0x37,0x83, + 0x70,0x4c,0x68,0x98,0x57,0xaf,0x3f,0xc7,0x50,0x12,0x7c,0xe7,0xf5,0xc7,0x9c,0xc3, + 0x6,0xc7,0xad,0x7e,0xe8,0x58,0xb8,0xb6,0xde,0xfa,0xd7,0x1a,0x74,0x9c,0x9f,0x4f, + 0x7e,0xae,0xf5,0xc7,0x95,0xe3,0x1c,0x6d,0xdb,0x78,0x9d,0xc6,0x1e,0xf5,0xa7,0xcf, + 0xd0,0x93,0x6d,0x5d,0x5d,0x5d,0xad,0xae,0xaf,0xaf,0xfb,0x6b,0x52,0x3f,0xa5,0xff, + 0xda,0x1e,0xe0,0x3b,0x48,0xd6,0x83,0xbe,0x5d,0xd7,0xf5,0xd7,0xb5,0xfe,0xb6,0xaf, + 0xda,0x17,0x1d,0x61,0xff,0xc8,0xbe,0x91,0x6b,0xf4,0x15,0x71,0xf6,0x64,0xea,0xf6, + 0xd6,0x1f,0x77,0x95,0xe5,0xef,0xbf,0xd9,0x7b,0xbd,0x2,0x67,0x32,0xdc,0xf4,0x78, + 0x43,0x9c,0xf9,0x75,0xb0,0x73,0x9c,0xd9,0x18,0x77,0x42,0xfc,0xa1,0x78,0x71,0x68, + 0xd7,0xb2,0x5,0x8f,0x6a,0xb8,0x20,0x71,0xd1,0x8b,0xec,0x95,0x16,0x7d,0x6e,0xac, + 0x50,0x8f,0xc1,0xac,0x45,0xfe,0xa1,0x1f,0xf7,0xe,0xf7,0x29,0x9e,0xdd,0xdf,0x2f, + 0xf2,0x6f,0x36,0xde,0x71,0xf,0xad,0xe9,0xdc,0xc4,0x3f,0x9d,0x3f,0x8b,0x27,0xc4, + 0x36,0x7,0x5f,0xd9,0x8a,0x38,0xb,0x9f,0xe8,0x27,0xf0,0xb,0xd8,0x2,0xc1,0x7d, + 0x16,0x2f,0x5e,0x42,0xdc,0x85,0x4f,0xe8,0x47,0x3f,0x89,0x33,0x8c,0x1d,0x62,0x5f, + 0xb,0xe,0xdb,0xf8,0x83,0x8f,0xc4,0x3d,0x8,0xee,0xb9,0x5e,0xbb,0xc2,0x75,0x2b, + 0x11,0xce,0xeb,0x3a,0x70,0x5d,0xe1,0x8b,0xf0,0xd4,0xf4,0x8e,0x3e,0xea,0x7c,0x78, + 0xfa,0x5a,0x1b,0x39,0x4,0x36,0x4b,0x38,0x4e,0x9b,0x5c,0x5b,0xc4,0x9c,0x83,0x23, + 0x93,0x4e,0x9d,0x5b,0x4f,0x1f,0xf7,0x97,0xe8,0x3,0x27,0xb8,0xfc,0x0,0x5d,0x8a, + 0xe3,0x91,0x3e,0x5d,0xdb,0x2c,0xd0,0x13,0xe2,0xbd,0xa3,0x2f,0xe4,0x1d,0xe1,0x8e, + 0x22,0x7f,0x2c,0xe0,0xa1,0xaa,0xbe,0x9a,0x7f,0x8e,0x90,0x93,0xba,0x2,0x3f,0x9, + 0x76,0xe7,0xad,0xf7,0x29,0x5f,0x3f,0x4e,0xd2,0xc9,0x7d,0xab,0x50,0x7,0xae,0xe0, + 0xab,0x9c,0x42,0xa7,0x2f,0xc2,0x5b,0xdf,0xe,0xdf,0x9c,0xb7,0xac,0xcc,0xe6,0xa8, + 0x85,0xcb,0xf4,0xdb,0x88,0xd3,0xdc,0x7d,0x46,0xac,0x8f,0xb8,0xed,0xf2,0x72,0x90, + 0x91,0xe3,0x7a,0x29,0x73,0x52,0x59,0x3f,0xf1,0x80,0xef,0x5a,0xf8,0xa4,0xc4,0x53, + 0xd4,0xaf,0xdc,0x67,0x74,0x2f,0xd5,0xbf,0x16,0xfb,0x1e,0x77,0xd9,0x7a,0x20,0xbf, + 0xdb,0xda,0x7f,0xe5,0x30,0xf0,0xac,0x70,0xed,0xc6,0xfa,0x89,0x25,0x29,0xcd,0x79, + 0x92,0xb6,0xc7,0x67,0x5b,0xeb,0xf7,0x72,0x7b,0x72,0xf1,0x28,0x25,0x1b,0x3,0xcc, + 0x18,0xfd,0xc4,0x6b,0xfa,0x1f,0x71,0xb3,0x70,0x74,0x89,0xf3,0x67,0xf1,0x4f,0x9d, + 0x8c,0xcf,0x88,0xab,0xd,0x67,0xbb,0x39,0x0,0xec,0x5b,0xfd,0xac,0x7f,0xec,0xfe, + 0xb2,0xdc,0xad,0x1c,0xae,0x7b,0x3,0xc2,0x79,0x8e,0xea,0x2b,0xc1,0xd8,0x8d,0x84, + 0x71,0x8c,0x3d,0x1e,0xcd,0x8f,0xfa,0xc3,0x35,0x20,0xa7,0xa9,0xa8,0xff,0x3a,0x97, + 0x91,0xff,0x36,0x57,0x95,0x78,0x9c,0xd6,0x40,0x85,0x35,0x3c,0xe7,0x95,0x36,0x70, + 0x2d,0xe5,0x25,0x4b,0x1b,0x63,0x97,0x31,0x5d,0xca,0x53,0xb8,0x77,0x15,0x1b,0xc6, + 0x7d,0x10,0x61,0xfc,0x64,0xa3,0x96,0xb7,0x28,0xf6,0x70,0x1d,0x70,0xff,0xfc,0xdc, + 0x8b,0xe6,0x1b,0x6e,0x4d,0x5a,0xcb,0x63,0x34,0x36,0xf5,0x5c,0x60,0x1c,0x8f,0xf2, + 0xfb,0x8c,0xe3,0xad,0xee,0x9a,0x7e,0xc9,0x6b,0x38,0x57,0x45,0xfd,0x36,0x67,0x6a, + 0xcd,0x4d,0xe4,0x6c,0xa3,0xa8,0xbf,0x96,0xa3,0xe8,0xfc,0x3b,0xb9,0x14,0x6b,0xf9, + 0x66,0xfd,0x2d,0xf3,0x53,0xc8,0xaf,0x96,0xe8,0xaf,0xe5,0x59,0x14,0xcd,0xb7,0x5a, + 0x72,0xae,0x51,0x7f,0x86,0xbb,0xbd,0x59,0x4c,0x77,0x41,0xac,0xb7,0x88,0xea,0xc3, + 0x3d,0xf2,0x30,0x64,0x5f,0x67,0x92,0x87,0x75,0x47,0xef,0x9e,0x87,0xd5,0xc4,0x9d, + 0xe3,0xe4,0x3c,0x6b,0x95,0x49,0x77,0xe7,0x88,0xd1,0x3d,0xc3,0x9,0xe5,0x81,0x20, + 0x9e,0x66,0x39,0x9d,0xe6,0x76,0x6a,0x37,0xe2,0xfe,0xee,0xd5,0x6e,0xb3,0x7d,0xad, + 0x1,0xf9,0x4c,0xb1,0xbe,0x35,0x37,0x2b,0xe5,0x99,0x66,0x1f,0xaf,0xe1,0x99,0x9d, + 0x3,0x63,0xfb,0x4d,0xec,0x7b,0x76,0xad,0xf,0x63,0x7e,0xb7,0xc8,0x76,0x2d,0x4f, + 0xd5,0x5c,0xb8,0x64,0x7b,0xd3,0xb9,0x2f,0xe5,0xb1,0x9a,0xb,0x7a,0xd8,0x64,0x7d, + 0x18,0xf9,0xe9,0x4d,0xec,0xeb,0x79,0xd5,0x7b,0x8c,0x5f,0xe3,0x9c,0xe3,0x6f,0xf4, + 0x61,0xa7,0xf6,0x35,0x1f,0x29,0xf9,0x40,0x8e,0x1c,0xf7,0xc8,0xd6,0xf1,0x4f,0xfb, + 0xc8,0xc3,0x18,0xff,0xde,0x39,0x1f,0xde,0xe3,0x3b,0x93,0xb7,0x6f,0x6d,0x9f,0xb6, + 0x39,0x7e,0xaf,0x16,0xd1,0x7a,0xc1,0xae,0x87,0xf8,0x10,0xf9,0x31,0xbd,0xeb,0x1c, + 0xfc,0xe3,0xdc,0x47,0xe7,0x88,0xcc,0xf5,0x3c,0xdb,0xc6,0x87,0xe2,0x99,0x25,0xde, + 0x45,0x75,0x80,0xae,0x3f,0x7d,0xd1,0xbf,0x5d,0x94,0x6c,0x8b,0xf,0x8c,0x87,0x59, + 0x7d,0xc3,0x6f,0xbc,0x3a,0xc1,0xd6,0x21,0x4e,0xae,0xe4,0xd6,0x53,0x1e,0x3f,0x79, + 0x3c,0xa1,0x1c,0xb3,0x89,0x7d,0x8c,0xff,0xad,0xed,0x5b,0xe,0xd8,0xa5,0x68,0x7c, + 0xd5,0xea,0xb4,0x0,0x67,0x5b,0xe2,0x6f,0x8d,0xa7,0xb5,0xb6,0x62,0x1c,0x71,0x8e, + 0x4a,0xf6,0x6d,0xbd,0xa8,0xf5,0x5c,0x61,0xff,0x4d,0x67,0xec,0xd6,0xb6,0xbd,0x46, + 0x75,0x9e,0x9e,0x7d,0x3,0xef,0x68,0x5b,0xcf,0x6a,0xc6,0x33,0xfc,0xd9,0xb9,0x81, + 0x3d,0xa3,0x66,0xfd,0x7,0x3d,0xde,0x99,0x40,0x64,0x9f,0xb1,0xb2,0x4d,0x7b,0x7a, + 0x7a,0xf5,0xdd,0xfa,0x50,0xb3,0x4f,0xec,0xf7,0x70,0x9f,0x7f,0x2f,0x4e,0xa9,0x28, + 0x7d,0x63,0xff,0x25,0x75,0xb0,0x9e,0x63,0x59,0xdb,0xc2,0x37,0xb6,0x66,0x2d,0xd6, + 0xae,0x51,0xec,0x96,0xec,0xdb,0x7d,0xa0,0x67,0x50,0x4e,0x4d,0xeb,0xd6,0x56,0x36, + 0x76,0x6b,0x75,0xb4,0xee,0x7b,0xcd,0xfd,0xcc,0xf9,0x57,0xb3,0x7d,0xbb,0x77,0x5b, + 0xea,0x6c,0x5b,0xcb,0xcb,0x9a,0x97,0x6a,0xfa,0xd0,0x3e,0x7d,0xf0,0xf6,0x6b,0xcd, + 0xbe,0x33,0xef,0x8b,0xed,0x47,0x58,0x21,0xf6,0x67,0xf9,0x6f,0x84,0xfd,0x4b,0xe7, + 0xdf,0x3b,0x7b,0xa8,0xd9,0xae,0xd4,0xf2,0x5c,0x8f,0xc5,0xeb,0x5f,0xf0,0xa1,0x38, + 0xff,0x81,0xec,0xd2,0x7e,0x54,0x3,0x97,0xc4,0x9e,0x39,0x2c,0x39,0x7b,0x50,0xe9, + 0xcf,0x4,0x70,0x3c,0xe0,0xb4,0xce,0x7b,0xb8,0x83,0xa6,0xf6,0x70,0xff,0x1f,0x15, + 0x62,0x8c,0x56, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/sound.ico + 0x0,0x0,0x3,0x8c, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0x3f,0x6f,0x53,0x41,0xc,0x77,0x4b,0x68,0x54, + 0x75,0x48,0x86,0x4a,0x94,0x89,0x2c,0x48,0x8c,0x6c,0x8c,0x74,0x82,0x91,0xaf,0xc0, + 0x84,0x58,0x99,0x2a,0xb1,0x24,0x23,0x23,0xdf,0xa0,0x2b,0x62,0x40,0x62,0x83,0x29, + 0x8f,0x89,0x91,0xaf,0xd0,0xf2,0x1,0x50,0xaa,0xe,0x8d,0xd4,0xa8,0x87,0x7d,0xef, + 0x5d,0xea,0x5c,0xee,0x8f,0xfd,0x72,0x51,0x22,0xa8,0x25,0xeb,0xf2,0xee,0x9d,0x7f, + 0xf6,0xf9,0xee,0x6c,0xdf,0xb,0xc0,0xe,0x74,0xa0,0xdf,0x7,0x6c,0x7,0xf0,0xb6, + 0x3,0xf0,0x2,0x0,0xe,0xf,0xeb,0xe7,0x6f,0x7b,0x0,0x5f,0xb0,0xef,0xe8,0xa8, + 0x7e,0xfe,0xb0,0xf,0xf0,0xe6,0x0,0x60,0x30,0xa8,0x9f,0x3f,0xa1,0xdc,0x1f,0x1c, + 0xfb,0x4,0x65,0xf0,0x27,0xf6,0xd4,0xfd,0x44,0xc7,0x1d,0xd0,0x92,0x19,0x8d,0x46, + 0x46,0x2d,0xd5,0xc8,0x3a,0xf9,0x16,0x18,0xe6,0xfd,0xf7,0xd6,0xf2,0xb,0xb2,0x55, + 0x55,0x59,0x16,0x62,0x58,0xd9,0xcf,0xe6,0xf1,0x82,0x3c,0x3e,0x44,0x99,0xcf,0xd5, + 0xc9,0xfa,0xf2,0x9e,0x7e,0xdf,0xe,0x2b,0x47,0xef,0x7d,0x59,0x6a,0xb9,0x7e,0x60, + 0xec,0xfa,0x48,0xf6,0xb7,0xf9,0x6a,0xc7,0xc5,0xe4,0x3d,0x1b,0xc,0xb7,0x21,0x26, + 0x4f,0xcf,0xbe,0x7e,0x6e,0x47,0x4e,0x3f,0x51,0x44,0xff,0x92,0xf,0x8,0xc3,0xe1, + 0x84,0xfc,0x17,0xd2,0xf,0xb0,0xe0,0xff,0x85,0xb9,0x64,0xfc,0x3f,0x5f,0xaf,0xd0, + 0x6,0x70,0x18,0xca,0xf5,0x4f,0x62,0xb4,0x39,0x43,0x2b,0xec,0x7f,0x4e,0xd1,0x79, + 0x3a,0xba,0x19,0x1a,0x33,0x7b,0x6e,0xcc,0x14,0x79,0xf2,0xc8,0x98,0x33,0x9c,0xd6, + 0xe8,0x41,0x33,0xbd,0x7b,0x4d,0x7b,0x80,0x7d,0xd8,0x9e,0x3d,0xc4,0x31,0x50,0x8f, + 0x25,0x19,0x92,0xa5,0x38,0x83,0xe1,0xc6,0xc6,0x1b,0x17,0x67,0x3e,0xee,0xb5,0xb4, + 0x76,0xfb,0x69,0x95,0xb5,0x58,0xc2,0x82,0xd5,0xd7,0x77,0x8e,0x55,0x68,0xbf,0x2c, + 0x61,0x29,0xe3,0x67,0x10,0x4b,0x13,0x4f,0x13,0xe7,0x2a,0x19,0x5f,0x21,0xb3,0xcf, + 0x1d,0x86,0x63,0x1f,0x8b,0xe3,0xf1,0x71,0x9,0xfb,0x8c,0x8b,0x5b,0x3c,0x76,0xc7, + 0xe2,0x2f,0xc3,0xc,0x12,0x8f,0x5d,0x3c,0x96,0xa6,0xe2,0x71,0xca,0x3e,0x87,0xe7, + 0xc7,0xe6,0x54,0x7c,0xe,0xd8,0x17,0x8c,0xd3,0xa1,0x58,0x1d,0x5a,0x5f,0xee,0x43, + 0xdf,0xa7,0xa9,0xf9,0x27,0xe2,0xb7,0x6f,0x63,0x72,0xcd,0x63,0xf9,0x20,0xb5,0xa6, + 0xa9,0xb8,0xce,0x31,0x23,0xf6,0xf9,0x24,0x3a,0x33,0x8a,0x7c,0x21,0xdd,0xe7,0xd2, + 0xfc,0x21,0xc6,0x6b,0x39,0xbe,0x18,0x19,0x47,0xa7,0xc8,0x3d,0xcc,0x3d,0xc8,0xb3, + 0x2e,0xe6,0x22,0xe8,0x99,0x49,0x97,0xf2,0x53,0xaf,0xc9,0x57,0xd4,0x8e,0xed,0xf3, + 0x64,0x67,0x6c,0xdf,0xcf,0xba,0x63,0x1c,0x8f,0x82,0xc4,0xa7,0x35,0xc,0xe5,0x2b, + 0x2c,0xa1,0xe1,0x29,0xdc,0xe6,0xad,0xd7,0xfb,0x9b,0x98,0xd9,0x7f,0x41,0x25,0xf3, + 0xe6,0x12,0x36,0xe4,0xf7,0x79,0x6b,0xec,0x82,0x79,0x35,0x89,0xed,0xe2,0x88,0x24, + 0x37,0xe6,0xea,0x4f,0x87,0x2d,0xa8,0x83,0x55,0xf6,0x3a,0x6e,0x79,0xcf,0xc9,0xfa, + 0x22,0x74,0xf,0x72,0xcc,0xfd,0xc3,0xfb,0x5,0xfe,0x59,0xb0,0x37,0x74,0x4f,0xf2, + 0x73,0x75,0x24,0xd7,0x4,0xc9,0xcf,0x5b,0xa,0x7c,0x91,0x8f,0x72,0xf8,0xdc,0x5e, + 0x7f,0xff,0x48,0xfc,0x93,0xc3,0x27,0x5a,0xa7,0xfd,0x2,0xfc,0x6c,0xce,0x8f,0xd5, + 0x3a,0x5c,0x3e,0x74,0xbe,0xf8,0xfb,0xd8,0xbe,0xe2,0x3a,0x72,0xf7,0x54,0xe1,0xf9, + 0xca,0xee,0x2b,0xc5,0x3d,0x36,0xa5,0x23,0x49,0xb1,0x3a,0x46,0x18,0x73,0xb2,0x75, + 0x52,0x48,0x87,0x22,0xf6,0x88,0x63,0x47,0xcb,0xf8,0x2c,0x3e,0xdf,0xde,0x78,0x29, + 0x69,0xf1,0xb7,0x96,0xc,0x27,0x5e,0x7b,0xe1,0xab,0x29,0xd6,0x5d,0xd5,0x7d,0xaa, + 0xbd,0xa0,0xde,0xe,0xbb,0xf5,0x9d,0xc2,0xb6,0xbb,0xcf,0x6c,0x7f,0xd5,0xbd,0xc4, + 0x71,0xd7,0x76,0xfc,0x4d,0xef,0x1a,0xe5,0xa7,0x88,0x33,0x9d,0x43,0x52,0x1d,0x36, + 0x40,0x3e,0x86,0xdb,0x3a,0x6c,0xd4,0xdf,0xcc,0x5c,0xef,0xe8,0x9f,0xa2,0x75,0xd6, + 0x9c,0x59,0xdd,0xa0,0x8f,0x49,0xc5,0x74,0xaf,0xb1,0x66,0x55,0xe9,0x2e,0x50,0x73, + 0xaa,0x75,0x17,0xae,0x79,0xd5,0xba,0x37,0xa0,0x3f,0xa9,0xbb,0xcd,0x9d,0x22,0x92, + 0xf3,0xb3,0xba,0x63,0xfa,0xb,0xfb,0x60,0x9e,0x5b,0x7d,0xdd,0x42,0xfd,0xab,0xe4, + 0xe5,0xe8,0x37,0x3f,0x49,0xcd,0x9,0x1e,0x2b,0xfd,0x1f,0xbd,0xc7,0x84,0xe6,0xaf, + 0xac,0xa9,0xb3,0x94,0xaa,0xe3,0x95,0xfa,0xe7,0xbe,0x5c,0x97,0xfe,0xd4,0x9d,0x28, + 0x54,0xc3,0x4a,0x58,0xa3,0x3f,0x73,0xa7,0x59,0xfb,0xfc,0x15,0xfa,0x43,0xfb,0x20, + 0xba,0x37,0x52,0xdf,0x94,0xa5,0x77,0xae,0xd0,0x59,0x90,0x9c,0xf,0x6e,0x43,0xe8, + 0x1e,0x56,0x30,0xfe,0x88,0xcf,0x47,0xc8,0x86,0x2,0xfa,0xb9,0x1d,0x59,0xca,0xdd, + 0x47,0xdb,0xc6,0x7f,0x90,0xc5,0x7f,0x91,0xd,0x6d,0xff,0x3b,0xd2,0xc,0x2e,0x70, + 0x67,0xe,0xe9,0x57,0xc5,0x49,0xe5,0x7f,0x3,0xc5,0xf5,0x87,0x6c,0xd8,0x44,0xd, + 0xbc,0xc1,0xfa,0x93,0x93,0xda,0x77,0x77,0xb4,0xbd,0x64,0x7c,0xba,0x44,0x3e,0x47, + 0xfe,0x41,0xc9,0x8e,0xfe,0xcc,0x34,0xe6,0x6,0xec,0x77,0x9,0x98,0xc2,0xd0,0x54, + 0xf0,0x8a,0xbe,0x3f,0x20,0xbd,0xc4,0x3d,0x70,0xd2,0xec,0x3,0x6a,0xdf,0xfd,0xa2, + 0xfe,0xa,0x86,0x3f,0x71,0xdc,0x15,0x8d,0x47,0xb9,0x2b,0x94,0xbf,0x40,0x9c,0xb, + 0x8b,0x77,0xde,0xe0,0x33,0xfa,0xb,0xcc,0x7b,0xed,0xd, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_disabled.ico + 0x0,0x0,0x4,0x6d, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x6e,0x1b,0x31,0x10,0xa5,0xd,0xd9,0x80, + 0x91,0x42,0x2a,0x6c,0xc0,0x5d,0x54,0xa6,0xcc,0x11,0x24,0x20,0x48,0x1b,0x17,0x66, + 0x9d,0x54,0x41,0x4e,0x21,0x51,0xaa,0xdc,0x25,0x47,0x10,0x82,0x14,0x6,0x5,0x24, + 0x6d,0xaa,0x95,0x2e,0xe1,0x6b,0xa4,0x73,0xa3,0x20,0x98,0x8c,0x44,0x8d,0x96,0x1c, + 0xfe,0x57,0x71,0x13,0x78,0x0,0xe2,0x89,0x5c,0x7e,0x66,0xb8,0xcb,0x37,0x8f,0x12, + 0xe2,0x44,0xf4,0xc4,0x60,0x20,0x10,0x87,0xe2,0x53,0x4f,0x88,0xb7,0x42,0x88,0xcb, + 0x4b,0x53,0xff,0x79,0x2e,0xc4,0x77,0x6c,0xbb,0xbe,0x36,0xf5,0xbb,0xb,0x21,0x3e, + 0xbe,0x10,0x62,0x38,0x34,0xf5,0x7b,0x1c,0xf7,0xb,0xfb,0xbe,0xc2,0x31,0xf8,0x13, + 0x5b,0x4c,0xfb,0xd6,0x46,0x3d,0x51,0x63,0x10,0x40,0x5e,0x82,0xa6,0x94,0x82,0x0, + 0x62,0x1,0xab,0x84,0xe7,0xa0,0x31,0xab,0xf5,0x7a,0x87,0x4d,0xd3,0x20,0xaa,0xc3, + 0x38,0x53,0xdf,0xb9,0x93,0xf2,0x1,0x4c,0xf,0xd8,0x3f,0x37,0xe3,0x4d,0xbd,0x45, + 0xe6,0x83,0xe3,0x73,0xd3,0xac,0x2,0xeb,0x53,0xdd,0x19,0xef,0xc5,0xbb,0xde,0xfb, + 0x4e,0xeb,0x1b,0x54,0xe0,0xc6,0x6f,0xf6,0x84,0xc6,0x7c,0x5b,0x2c,0x9c,0x39,0xa8, + 0xee,0xa2,0x3a,0x14,0xea,0x17,0x1a,0x43,0xeb,0xc7,0x90,0xfa,0xa5,0xd6,0xb7,0xe6, + 0x77,0x90,0xe6,0xb0,0xd7,0xe7,0xf3,0x1e,0xfa,0xcc,0x66,0x3b,0x9c,0x4e,0xdd,0xb9, + 0xba,0xac,0xcf,0xf7,0x36,0xb5,0x3e,0x3d,0x9b,0xcd,0xe7,0x6,0x67,0x73,0xa7,0x9e, + 0xda,0xbb,0x18,0xda,0x63,0xb8,0xf1,0xf5,0x63,0x28,0x12,0xdf,0x7b,0x2c,0xfe,0xc0, + 0x7e,0x78,0x96,0x1b,0x93,0x9a,0xe3,0xcf,0x18,0x60,0xa3,0x0,0x1e,0x7b,0x6,0xe5, + 0x0,0x40,0x6f,0x11,0xdb,0xb5,0x46,0x94,0x16,0x2e,0x11,0xdf,0x23,0xfe,0x68,0x71, + 0xcb,0x33,0x48,0x37,0x3b,0xbe,0x21,0x9e,0xf9,0x72,0x1e,0xf3,0x34,0x68,0xc1,0xef, + 0x4c,0x84,0xf9,0xa6,0x88,0x77,0x26,0xd3,0xe9,0xfe,0xbb,0x73,0x90,0x9d,0xbf,0x32, + 0x1e,0xa2,0xf7,0x12,0x3b,0xcb,0x6e,0xbb,0xcb,0xb,0xdc,0xe8,0x3b,0x21,0x6e,0x5b, + 0xad,0x56,0xfb,0x7e,0x66,0x3e,0x53,0xdf,0xa2,0xfd,0x3d,0xa5,0x79,0x2a,0xed,0x5f, + 0xeb,0x57,0xcb,0x85,0x79,0xde,0x72,0xb9,0xaf,0xf5,0x8f,0xea,0xe6,0x39,0x80,0xed, + 0x5f,0x8e,0xc7,0xba,0xec,0x5f,0x8c,0xd7,0x9a,0x86,0xfb,0xb9,0x72,0xe6,0xec,0xc2, + 0xb3,0xae,0x1f,0xb6,0x9f,0x6e,0x29,0xe1,0xbd,0x1c,0xf,0x84,0x78,0x21,0xe7,0x5f, + 0x29,0xa7,0x17,0xf1,0x72,0x84,0xdb,0x9,0x6b,0xf2,0x84,0xcf,0x93,0x69,0xce,0xaf, + 0xf1,0x6f,0xbe,0xe7,0x6b,0xc1,0xbe,0x87,0x63,0xfc,0xa3,0x5c,0xc0,0x39,0xb9,0xc4, + 0x3f,0x7e,0x5e,0x28,0x9f,0x90,0x9f,0xd3,0x4,0xdf,0xe6,0xf2,0x4c,0x7c,0x3f,0x7d, + 0xce,0x8e,0xf9,0xc7,0xc7,0xc4,0x9e,0x8b,0xf6,0x7d,0x1f,0x2c,0xb7,0x3e,0xc7,0x12, + 0xff,0x6a,0xf3,0x52,0x32,0x4f,0xdd,0xbc,0x84,0xcd,0xa2,0xf,0x8f,0xe3,0x3e,0xe2, + 0x67,0x90,0x6f,0xde,0x81,0xfe,0xda,0xc7,0x3c,0xd5,0x7,0x8d,0xed,0x12,0x9f,0x6b, + 0x4c,0x48,0x12,0x13,0x93,0x8f,0x2b,0x37,0x8f,0x69,0x93,0xb7,0x50,0x42,0x8b,0xd7, + 0xa2,0xcd,0x5b,0x1f,0x2e,0x62,0x91,0x4,0x2d,0x79,0x86,0x18,0xf2,0x62,0x3f,0xf7, + 0x2c,0x93,0xc7,0xe,0x28,0xd2,0x39,0x2d,0xb8,0x6,0x7f,0x7f,0x94,0x6b,0x28,0x17, + 0xf1,0x9c,0x44,0x1c,0x4d,0x96,0xcb,0x71,0x5b,0xb,0xeb,0x5f,0x5f,0x8f,0x33,0x8e, + 0x16,0x91,0x35,0x82,0x1c,0x40,0xfe,0xf3,0x5c,0xe5,0xea,0x75,0x65,0xcd,0x67,0xc6, + 0x35,0x18,0x1f,0xd3,0xff,0xd1,0x3c,0x98,0xf7,0x5f,0x59,0xed,0xa1,0x7a,0x9e,0x97, + 0x72,0xfe,0x53,0xbb,0xbd,0x6,0xf7,0x3f,0xc6,0xa3,0x65,0xfb,0x4f,0xf3,0xf1,0x1c, + 0xec,0xbe,0x63,0xce,0xcd,0x69,0xff,0xfd,0x35,0xda,0x12,0x9f,0xbb,0xd4,0xff,0xf8, + 0x77,0xe4,0xbe,0x87,0xb2,0xfd,0x5f,0xb3,0x38,0x5c,0xc,0x69,0x0,0x7b,0x9e,0x94, + 0xff,0x69,0x6d,0x11,0xc7,0x2e,0x79,0xad,0x16,0x6b,0xfc,0xcf,0x69,0x8f,0x54,0x9e, + 0x29,0xf5,0x5f,0x14,0xf2,0x69,0x17,0x1d,0x41,0xed,0x93,0x9,0xe7,0xd1,0x3d,0xcf, + 0x4e,0x26,0xc1,0x38,0x6a,0xfc,0xa7,0xb9,0xb8,0xb6,0xea,0xa2,0x33,0x62,0xfe,0xd3, + 0x1a,0x84,0xbc,0xfd,0x29,0xfc,0xef,0xb2,0xff,0xb1,0x7c,0xce,0xf5,0xd1,0x21,0x9e, + 0x23,0x74,0x53,0xe9,0xb9,0xe8,0xa2,0xa3,0x4a,0xf5,0x54,0x17,0x5d,0x95,0xd3,0x59, + 0x35,0xfe,0xe7,0xf4,0xd3,0x51,0xba,0x4b,0x9e,0xc1,0x46,0x9f,0xc2,0xe3,0xed,0x9, + 0x6c,0xee,0x87,0xa8,0xb3,0x6,0xa0,0xef,0xef,0x10,0x47,0x88,0x43,0x78,0xc0,0x76, + 0x8d,0xcf,0x25,0xf6,0xd3,0x28,0xac,0x24,0xa,0xac,0x38,0x2e,0x1d,0x5d,0xb6,0x44, + 0xdc,0xea,0xb0,0x21,0x96,0x91,0x68,0x75,0x98,0x1a,0xc4,0x22,0x2d,0xb2,0x2a,0x3e, + 0x11,0x79,0x7d,0x16,0xdd,0x77,0x6e,0x7c,0x1f,0x33,0xfa,0x6d,0x5f,0x54,0xa0,0x98, + 0x67,0x81,0xb3,0x98,0x5d,0xbb,0x30,0xe7,0x58,0x6b,0xc5,0xf2,0xa7,0xe2,0x3e,0x64, + 0x8d,0x9f,0x8f,0xb0,0xb6,0xb4,0xf5,0xb,0x4,0x8d,0xe5,0x71,0xfb,0x9d,0x1c,0x1d, + 0x3f,0x5f,0xdf,0xd5,0x6c,0x5c,0x83,0xaa,0xa2,0xb5,0x63,0xf1,0x87,0xfe,0x47,0x9, + 0xeb,0x38,0xe5,0xf4,0xdb,0x8e,0xab,0xf5,0xa1,0x2c,0x7e,0x7f,0xcd,0x70,0xdd,0x6b, + 0x2f,0xda,0x83,0xda,0xf8,0x43,0xda,0x36,0x11,0x7f,0xf2,0x1c,0x1f,0x17,0x7f,0x4a, + 0xc3,0xb7,0xf1,0xe7,0x78,0xb3,0x6b,0xfc,0x69,0x8d,0xef,0x9e,0xc3,0xd2,0xfc,0x57, + 0xf6,0xfd,0x73,0xed,0xcf,0xef,0x0,0xee,0xbb,0xcf,0xe5,0x3f,0x3f,0xfe,0x35,0xdb, + 0x7,0xff,0xfc,0x87,0xf9,0xcf,0x7f,0xf7,0xb5,0xf1,0x97,0x7c,0x7,0xae,0x1f,0x3e, + 0x27,0x6d,0xfb,0xd5,0x68,0x91,0xba,0xff,0xff,0x94,0xe3,0x87,0x6d,0xf4,0x2c,0xa5, + 0xe3,0x6a,0xf5,0x4f,0x5c,0xb3,0x4,0xf3,0x4f,0x91,0xce,0xcb,0xc5,0x5f,0x7a,0x6f, + 0xe8,0x72,0x8f,0xc8,0xc5,0xcf,0xeb,0xa2,0x50,0xf,0xd4,0xfc,0x9f,0x5a,0xfa,0xfe, + 0xfd,0x7b,0x87,0x7b,0xff,0x70,0xff,0xcf,0x79,0x9a,0xf8,0x73,0xf7,0x93,0xd8,0x1d, + 0xe2,0x5f,0xc4,0xcf,0xd7,0xf6,0xee,0x2f,0x11,0x9f,0x9e,0xe3,0x7f,0xfa,0xf8,0x9, + 0x63,0x39,0xac,0x26,0xfe,0xd2,0x7b,0x1f,0xdf,0x87,0x5c,0xbf,0x50,0x3c,0x39,0x2c, + 0xe5,0xe2,0x63,0xf4,0x6d,0xd7,0xbb,0x5c,0xc9,0xbd,0x91,0x5b,0xd7,0x7b,0x64,0xe9, + 0x3b,0x7b,0x8e,0xff,0xff,0x88,0xbf,0x56,0xf,0xd4,0xc4,0x9f,0xd3,0xbf,0xb1,0xfe, + 0x5d,0xc7,0xdb,0x6,0xf,0xb7,0x57,0xa0,0x17,0xa7,0x20,0x47,0x27,0xa0,0x95,0x0, + 0x39,0x1e,0x23,0x2e,0x40,0xf6,0x6e,0x40,0xcf,0x87,0x52,0x9e,0xd,0xb4,0x9e,0x2b, + 0x89,0xed,0x1a,0x9f,0x4b,0xec,0xa7,0xb1,0xbf,0x94,0xb7,0x57,0x1a,0x4d,0xa2,0x25, + 0x70,0x99,0xfc,0xdf,0xe2,0xb7,0x86,0xbf,0xff,0xaa,0x44,0x3e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/other_peripherals.ico + 0x0,0x0,0x2,0x97, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x6e,0xc3,0x20,0x10,0x7d,0x96,0x22,0xab, + 0x51,0x87,0x66,0xc8,0x90,0x2d,0x1e,0x3b,0xf6,0x13,0x32,0x55,0xfd,0x8c,0x4e,0x55, + 0xb7,0xee,0x9d,0x3c,0x55,0x1d,0xfb,0x19,0x9d,0x3a,0xc7,0x5b,0xbe,0xa8,0xca,0x1f, + 0x50,0x30,0xc6,0x21,0x18,0xec,0x3,0x8c,0x9b,0x48,0xbe,0xe8,0x89,0x80,0x39,0x1f, + 0xdc,0x85,0x7b,0x47,0x80,0xc,0xb,0xac,0x56,0xe0,0x6d,0x81,0xd7,0x5,0xf0,0x8, + 0x60,0xbd,0x96,0xfd,0x7d,0xe,0xfc,0xf0,0xb1,0xcd,0x46,0xf6,0x3f,0x97,0xc0,0xcb, + 0x2d,0x50,0x14,0xb2,0xff,0xcd,0xf5,0x7e,0xf9,0xdc,0x7b,0xae,0xc3,0xbf,0xf2,0x11, + 0x39,0x2e,0x64,0xb7,0x0,0x45,0x98,0x1,0xd7,0x18,0x8c,0xef,0xb5,0x94,0x65,0xc9, + 0xc0,0x18,0x83,0x68,0x9b,0xe7,0xb6,0x31,0xf,0x7d,0x66,0x1b,0xb3,0xac,0x45,0xd3, + 0xe7,0x9f,0xa,0xee,0xb6,0xea,0xbc,0xe3,0xdc,0x96,0xf9,0x5c,0x7d,0x54,0xbf,0x82, + 0x73,0x6d,0x4a,0xff,0x70,0x38,0xd4,0x68,0xe7,0x37,0x63,0x54,0xfd,0x16,0xfa,0x9a, + 0x75,0x68,0xfa,0x6c,0xff,0xc4,0xaa,0x77,0xd4,0x6d,0x88,0xbe,0xd0,0x8d,0xd9,0xbf, + 0xd0,0x57,0xfb,0xd,0xd9,0xbf,0xd0,0x57,0xe8,0xac,0xdf,0x5,0xed,0xb7,0x65,0xea, + 0x53,0x60,0xea,0xeb,0xfb,0x15,0x7e,0x14,0x50,0x7d,0xe3,0x79,0xe7,0xf7,0xa6,0xef, + 0x5f,0xcd,0x57,0x63,0x54,0xfd,0x21,0xd8,0x74,0x95,0xbe,0xcf,0x7e,0x4d,0x39,0x7e, + 0x30,0x56,0x3,0x12,0x70,0x21,0x6b,0x70,0xd7,0x60,0x2b,0x21,0xf2,0xc,0x4f,0x37, + 0x75,0xbe,0x51,0x79,0xe6,0x2b,0xb7,0x59,0xea,0x88,0xeb,0xc,0xe,0x3d,0x3,0x1c, + 0x7e,0x6c,0xcf,0x51,0x5f,0xfe,0x9,0xc9,0x43,0x7d,0xf9,0x28,0x26,0x2f,0x99,0x67, + 0x34,0x26,0x4f,0x99,0x67,0xd4,0x27,0x6f,0xf1,0x56,0x3f,0xb7,0xed,0xdc,0xd0,0x3c, + 0xa6,0xbd,0xaf,0x3,0x97,0xf,0x7c,0xf3,0x5a,0xc0,0xfb,0x7a,0xf3,0x5c,0x80,0xff, + 0xf4,0x33,0x3e,0x86,0xff,0x48,0x79,0xd0,0x73,0xbf,0x63,0xbf,0xef,0xea,0xfd,0x97, + 0x98,0x57,0xa8,0x3c,0x63,0x72,0x8c,0x6d,0x8c,0xca,0x3b,0x6a,0xee,0x14,0x3c,0x34, + 0x36,0x2f,0x91,0x79,0xaa,0x78,0x63,0x35,0x38,0xf9,0x8,0x80,0x8c,0x6d,0x83,0x73, + 0x1e,0x13,0x7c,0xc5,0x4b,0x68,0x3c,0xe0,0xc4,0x5b,0xcf,0x4b,0x9b,0xe5,0x8e,0x38, + 0x73,0xb2,0xb6,0x76,0xca,0x1c,0xc0,0x11,0x87,0xe,0xb7,0x50,0xf8,0x2c,0x86,0xd7, + 0x28,0xfc,0x96,0x92,0xe7,0x52,0xf0,0x5e,0x62,0x1e,0x4c,0xce,0x8b,0xa9,0x79,0x32, + 0x75,0xde,0x4f,0xcc,0x3,0xc9,0x79,0x35,0x35,0xcf,0xce,0xfe,0x9f,0xfd,0x7f,0x49, + 0xfe,0xf7,0x85,0xc6,0x45,0x63,0xd4,0x49,0xb1,0x75,0x93,0xd9,0x1f,0xbb,0x8e,0x9a, + 0xba,0xae,0x4a,0x5d,0x67,0x91,0xeb,0xae,0x9b,0x9c,0xd5,0xe0,0xcf,0x8f,0xe,0x4e, + 0xa6,0x21,0x6b,0x70,0x5e,0x97,0x89,0x3a,0xac,0xe0,0xd8,0xe1,0x54,0x87,0x95,0x2b, + 0xdb,0x4a,0x6,0x85,0xba,0x16,0xdf,0xb9,0x30,0xbe,0x5b,0xa5,0xb7,0x66,0xf2,0xa9, + 0xdf,0x88,0x75,0x5c,0x84,0xfd,0xfe,0xfa,0x8e,0x58,0xe7,0xd9,0xed,0xc3,0x9e,0x53, + 0xa9,0x75,0x5f,0x7f,0x1d,0x38,0x6c,0x3f,0x24,0x2f,0x13,0xf3,0x34,0xd5,0xbe,0x6f, + 0xde,0xa6,0xe6,0x71,0xf2,0xfe,0x7d,0x79,0x8f,0xc8,0x83,0x17,0x60,0xbf,0x17,0xa9, + 0xe3,0x3f,0x74,0x66,0x52,0xc7,0x9f,0x6a,0x3f,0x95,0xff,0xcd,0x7b,0x86,0xce,0x4d, + 0x51,0xf7,0x8e,0xc0,0x3a,0xcc,0xe4,0xf8,0x29,0xe2,0xdf,0x57,0x27,0x4c,0x11,0x7f, + 0x5b,0x5d,0xa0,0x62,0x31,0x95,0xff,0xff,0xdb,0xfe,0x1c,0xff,0x39,0xfe,0x73,0xfc, + 0x3d,0xfc,0x1f,0x8b,0x86,0xfb,0x29,0xf6,0x53,0xc0,0xb4,0xef,0x8a,0xbf,0x1a,0x1b, + 0xea,0x53,0xef,0x85,0xa6,0x84,0xde,0x13,0x43,0xef,0x8d,0x2e,0xfb,0x2e,0xff,0x53, + 0x5b,0xc7,0xbd,0xf2,0x6a,0xec,0x63,0x8e,0xff,0xa8,0xa0,0xd8,0x56,0xf6,0x53,0x9e, + 0xef,0x21,0x61,0x28,0x72,0x9,0xc0,0x86,0x8,0xc9,0x1a,0x38,0x5e,0x2d,0xff,0xb7, + 0xf8,0x3,0xe7,0xb4,0x1a,0x18, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_active.ico + 0x0,0x0,0x3,0x4a, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x72,0x13,0x31,0x10,0x5d,0x4f,0x3c,0xc9, + 0x64,0x28,0xe2,0x22,0x45,0x3a,0xbb,0xa4,0xe4,0xf,0x48,0xc5,0x77,0x50,0x31,0x7c, + 0x86,0x4a,0x4a,0x3e,0x83,0x8a,0x9a,0xd2,0xfc,0x49,0x66,0xe8,0x21,0x43,0x8c,0x39, + 0x82,0x61,0x59,0xc5,0x77,0xe7,0xd5,0x6a,0xf7,0x4e,0xa7,0x93,0x3d,0x1,0xbc,0x37, + 0x3b,0xf2,0xe9,0xb4,0x6f,0x57,0x3a,0xe9,0xed,0x9e,0x1,0x26,0x30,0x85,0xd9,0xc, + 0xa8,0x5d,0xc0,0xeb,0x29,0xc0,0xb,0x0,0xb8,0xbc,0xdc,0xde,0x7f,0x38,0x5,0x78, + 0x4f,0x7d,0x57,0x57,0xdb,0xfb,0x37,0xe7,0x0,0xaf,0x9e,0x0,0x2c,0x16,0xdb,0xfb, + 0x77,0x64,0xf7,0x99,0xc6,0x3e,0x25,0x1b,0xfa,0x49,0x3d,0xdb,0x7e,0x2f,0xd7,0x53, + 0x18,0x2b,0xc8,0x74,0xb8,0xad,0x63,0x1a,0x62,0x60,0xa7,0xd2,0x78,0x2f,0xc0,0x2f, + 0xb7,0x7b,0x96,0xa2,0x5d,0xf6,0xcd,0xb3,0x76,0x4c,0xdd,0xb7,0x5c,0x2e,0x93,0xed, + 0x1f,0xc6,0xd6,0x18,0x9a,0x34,0xe3,0xf8,0x3d,0xb7,0xe7,0xd2,0x60,0xf1,0xb6,0xb5, + 0x91,0x6b,0xa8,0xcc,0x53,0xf3,0x2d,0x9f,0x47,0xf6,0x0,0x41,0x9c,0xbe,0x75,0xce, + 0x5,0x63,0xe5,0x73,0x69,0x1f,0xac,0xa7,0xb0,0xb1,0x9e,0x7,0xf7,0xb5,0xf2,0x75, + 0xd7,0xee,0x5b,0xbf,0xcc,0xfe,0x7e,0xbd,0xc2,0x1f,0xeb,0xaf,0x58,0xad,0x56,0xb8, + 0x59,0x7f,0xc3,0xd5,0xdd,0x17,0xfc,0xbe,0xba,0xc3,0x9f,0xf4,0xbb,0xaa,0xdb,0x5f, + 0xd5,0x1a,0x37,0xf7,0xd4,0x92,0x6,0x7b,0x30,0x71,0xf,0x29,0xeb,0xff,0xd7,0xb, + 0x7e,0xa2,0xc5,0xfb,0x88,0xe8,0x97,0x11,0x12,0xd4,0x4d,0xc2,0xbd,0xe5,0x79,0x86, + 0xe8,0xe6,0x81,0x6f,0x1a,0x9e,0x79,0x7b,0x5a,0x2e,0x3c,0x45,0xf3,0xb1,0xf4,0x77, + 0x38,0x1c,0x53,0xe3,0x3,0xc9,0xb,0x76,0xfc,0x69,0xfc,0x96,0xc9,0x73,0x26,0x5f, + 0x59,0xbc,0x7,0x10,0x70,0x57,0x33,0x86,0xf3,0xd0,0x10,0x3c,0xc9,0x5d,0x16,0x1f, + 0x25,0xc7,0x27,0x78,0xd0,0x6c,0xbb,0xb8,0x4f,0xc4,0xc7,0xc5,0x8a,0x33,0xe2,0x1c, + 0x85,0x7f,0x24,0x6f,0x45,0xb6,0xc0,0x38,0x14,0x41,0x1d,0xab,0xe2,0x31,0xde,0xc, + 0x6c,0x19,0x1e,0xf7,0x11,0x8c,0x35,0xf0,0xa2,0x77,0xc4,0xfa,0xa5,0xf,0xd5,0x5e, + 0xda,0xd6,0xca,0xf7,0x48,0x6f,0x7f,0xcf,0xfe,0x1b,0xda,0xb6,0xe7,0x82,0xe1,0x8d, + 0x95,0x22,0x79,0x21,0xde,0x2f,0x47,0x19,0x29,0x58,0x3d,0x47,0xbc,0x9d,0x23,0xde, + 0x5c,0x50,0xae,0xba,0xa0,0x35,0x4d,0x57,0x7,0xf3,0xe8,0x3d,0xfb,0x7c,0x45,0x25, + 0x34,0x3c,0x83,0x5d,0xde,0x7a,0x79,0xbe,0x9f,0xd0,0x15,0x2d,0x87,0x6d,0xf1,0xd3, + 0x58,0xe1,0x67,0xb6,0x3b,0xc7,0x65,0x61,0xb7,0x9c,0x63,0x5d,0xa1,0x8f,0xb4,0x3c, + 0x2a,0xb9,0x2b,0x5,0x3f,0xf3,0x4c,0xf,0xc1,0x97,0x3c,0xc7,0xf9,0xb6,0xe5,0x54, + 0x84,0xb4,0x7c,0x9b,0x90,0x77,0xf9,0xbd,0xea,0x23,0x27,0x7e,0x8c,0xbf,0x47,0xfa, + 0x78,0xd4,0xf2,0xd1,0xac,0x87,0x15,0x7f,0x72,0x6b,0x70,0xbe,0x9a,0xa7,0x51,0x7c, + 0x7f,0xd,0x98,0x87,0x9a,0xdb,0x24,0xbe,0xd8,0x1b,0xed,0xdc,0xeb,0x71,0x3e,0x6f, + 0x7b,0xf5,0xb6,0xcd,0xef,0x76,0xde,0x9a,0xad,0x86,0xf,0x61,0xae,0x97,0x75,0x86, + 0x86,0xcf,0x63,0x8,0xde,0x8b,0x81,0x1f,0x9d,0x1f,0xde,0x2f,0x54,0xc6,0xa0,0xe2, + 0x49,0x2c,0xc6,0x2b,0x9d,0x35,0x56,0xc7,0x38,0x6d,0xfd,0x73,0x6b,0x8,0xb3,0xb6, + 0xe8,0x38,0xbf,0xa3,0xb1,0x21,0xc6,0x2f,0x2d,0x7b,0xa9,0x63,0xa4,0x1e,0xe5,0x9f, + 0x17,0xc4,0x33,0xc4,0xdf,0x27,0x88,0x1b,0xfa,0xf0,0xaf,0x88,0x67,0xc,0x2e,0xe8, + 0x53,0x7,0x13,0x75,0x9f,0xfa,0x3a,0x6c,0x41,0x7a,0xd,0xbb,0x3a,0xcc,0xcd,0xe, + 0x38,0x41,0x3d,0xde,0xc3,0xf9,0xd5,0xcf,0xd5,0xbe,0xe3,0x8,0xf8,0x35,0xba,0xc2, + 0x38,0xca,0x8a,0x4b,0xa8,0x3d,0x64,0xd,0xf2,0x78,0xfc,0x67,0xed,0xfd,0x56,0x87, + 0xf8,0x96,0x31,0x14,0xe2,0xec,0x31,0xfe,0xb5,0x3c,0xc8,0x73,0x6f,0x5f,0x2e,0x2e, + 0xe1,0xdf,0xfa,0x6f,0x3c,0x29,0x86,0x12,0xf3,0x57,0xe6,0x65,0xf5,0x47,0x3e,0xf7, + 0x34,0xff,0x26,0x86,0xd4,0xba,0x20,0x63,0xff,0x77,0xce,0x3f,0xa7,0x66,0xcf,0xf5, + 0x5f,0xa4,0x6,0x73,0xa2,0x46,0x17,0x17,0x5f,0xab,0xae,0xf7,0x2f,0x65,0x68,0xc, + 0x56,0xed,0x97,0x52,0xe7,0xca,0xba,0x3c,0x88,0xc1,0xc0,0x8d,0xfc,0x34,0x38,0xa, + 0x47,0x4,0xcf,0x25,0x77,0xb9,0x9d,0xcf,0xa8,0x65,0xcf,0xf9,0x37,0x49,0xa3,0xea, + 0xb7,0x8f,0x81,0x65,0xce,0x9f,0xcd,0xdd,0x63,0xf1,0x35,0x18,0xe2,0x5f,0xae,0x63, + 0x17,0x56,0xce,0xfc,0xbb,0x74,0xf4,0xfc,0xa5,0xf,0x7,0xd1,0xde,0xea,0x55,0xfe, + 0xfe,0x5,0x96,0xf9,0x1d,0x64,0xf9,0x18,0x71,0x26,0x25,0x56,0x74,0x4e,0x4a,0x9f, + 0xff,0xa1,0xb1,0x95,0xe4,0xbf,0xc,0xae,0x7a,0x54,0xf3,0x87,0x3,0xfa,0x86,0xd8, + 0xff,0xa1,0x25,0xa8,0x1,0x53,0xcf,0x55,0x69,0x3d,0xca,0x51,0xfe,0x73,0x41,0xdc, + 0xcc,0x11,0x6f,0xcf,0x10,0x6f,0x4e,0x88,0x5,0x27,0x5e,0x5d,0x61,0x1f,0x84,0xa7, + 0xff,0x49,0x41,0xf2,0x7,0xe4,0xe9,0x9f,0x6b, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/input_devices.ico + 0x0,0x0,0x3,0xe0, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x40,0xc,0xa6,0x61,0x23,0x41, + 0xd0,0xc1,0x1e,0x32,0x64,0xb3,0xc7,0x8e,0x7d,0x3,0x67,0xea,0x73,0x74,0x2a,0xfa, + 0x16,0xd6,0xd8,0xad,0x7d,0x84,0xc,0x1d,0x3a,0x75,0xce,0x56,0xf5,0x49,0x2a,0xa0, + 0x80,0xc7,0xc2,0x9d,0x1a,0xa0,0x46,0x54,0x9e,0x64,0xc6,0x34,0x4d,0xde,0xf1,0x24, + 0xd9,0xcd,0x50,0x2,0x1f,0x22,0x9d,0x8e,0x1f,0x79,0x7f,0x24,0xcf,0x1,0x18,0xc1, + 0x4,0x66,0x33,0xc0,0xbf,0xb,0x78,0x37,0x1,0x78,0xd,0x0,0xd7,0xd7,0xed,0xfb, + 0xfd,0x5,0xc0,0x17,0x6c,0xbb,0xb9,0x69,0xdf,0xdf,0x5f,0x1,0xbc,0x7d,0x1,0xb0, + 0x58,0xb4,0xef,0x9f,0x51,0xef,0x27,0xf6,0x7d,0x89,0x3a,0xf8,0x88,0x2d,0x6d,0x7b, + 0x90,0xdb,0x9,0xa4,0xa4,0x66,0x70,0x49,0x59,0x96,0x4f,0x3a,0xe1,0x99,0xe0,0xe5, + 0xe1,0x3a,0x24,0x39,0x3c,0x5c,0x4f,0xf8,0xaf,0xf1,0x24,0xfd,0x2f,0x8a,0xa2,0xd6, + 0xc6,0x94,0xf2,0x21,0xe0,0xd3,0xdd,0xdd,0x81,0x7e,0x78,0xf,0x48,0xe9,0x6b,0x73, + 0xa1,0xf8,0x9f,0x14,0x3e,0x17,0x6c,0x3e,0x0,0x1c,0xeb,0x1a,0x74,0xd7,0xeb,0xf5, + 0x11,0x14,0x3f,0x24,0x87,0x3a,0xdf,0x84,0x30,0x1f,0x7c,0x5d,0x85,0x2f,0xcd,0xf7, + 0x14,0xa4,0x3e,0xb5,0xd3,0x33,0x8d,0x35,0x8,0xb5,0xd3,0xb3,0xa6,0x4f,0x7e,0xd1, + 0x58,0x3c,0x1c,0x7c,0x5d,0xb9,0x2e,0x49,0xca,0x7f,0x45,0xdf,0x2d,0x9c,0x2b,0x47, + 0x4f,0x59,0xa7,0x23,0xf9,0x11,0xc6,0x1d,0xb0,0x44,0xcc,0x5b,0x14,0x88,0xa,0xdf, + 0xab,0xf,0x38,0x67,0x97,0x61,0x5e,0xf6,0x28,0x46,0xd8,0x36,0x46,0x5,0xfc,0x56, + 0x7f,0xaf,0xeb,0x10,0x67,0x30,0xdc,0x34,0xf1,0x86,0xe2,0xcc,0xc7,0x8b,0x6c,0xbf, + 0xb2,0x62,0x4e,0x8c,0xa3,0x4b,0xc,0xa,0x62,0xc5,0x31,0xd,0x1e,0x5e,0x4b,0x57, + 0x8b,0x71,0x1e,0x5e,0x8d,0x23,0x8,0x9d,0xd1,0x98,0xdf,0x1a,0x27,0xe7,0xe1,0x67, + 0x1d,0x76,0xfb,0x33,0x36,0x1f,0x29,0x1f,0x65,0xdc,0xe0,0x7c,0x14,0x27,0xc9,0xa6, + 0x27,0x36,0xf2,0xf8,0x4a,0xf1,0x94,0xc7,0x58,0xe2,0xc9,0x89,0x95,0x9c,0x57,0x89, + 0x99,0x12,0x6e,0x3e,0x3e,0x9f,0x19,0x31,0x14,0xc,0xbb,0xd1,0x3d,0x64,0xc5,0x54, + 0x70,0xc6,0x55,0x1e,0x1b,0xad,0x18,0x2b,0xe3,0x6c,0x4c,0x62,0x7c,0xbc,0xf,0xe7, + 0xa3,0x6f,0x32,0xe6,0x5a,0x36,0x65,0xc,0xee,0x12,0xc7,0xb5,0x98,0xce,0xfb,0xf3, + 0x45,0x21,0xce,0x54,0x6e,0xe3,0xfd,0xa4,0x5f,0x52,0x3c,0xeb,0x61,0xf0,0x65,0x8b, + 0x66,0xa3,0xb,0x8f,0x22,0x43,0xf1,0xb8,0x38,0xb7,0x2b,0xcc,0x47,0x73,0x5c,0xdb, + 0x90,0x8f,0x46,0x2c,0x1f,0x21,0x2a,0x7c,0x7f,0x8,0x68,0xda,0xa6,0x7,0x28,0x30, + 0xa1,0x95,0x98,0xdc,0x2a,0x40,0x82,0x6f,0x38,0xa1,0xbf,0x11,0x7f,0xda,0xbc,0x85, + 0x25,0x34,0xbc,0x82,0x7d,0xde,0x7a,0x73,0xd5,0xcb,0xef,0xbe,0x39,0xcc,0xe4,0xec, + 0x9a,0xd3,0xbc,0x9c,0x32,0x7e,0xe6,0xd8,0xb1,0xf2,0x84,0x8c,0x81,0x5d,0x73,0x69, + 0x8c,0x93,0xc0,0x63,0x43,0xae,0x1d,0x8b,0x97,0x8b,0xcc,0x8f,0x8e,0xf1,0xa8,0xfc, + 0x1a,0x67,0x2c,0xef,0x46,0xd6,0xe5,0x80,0x5f,0xe3,0xd4,0x72,0x4f,0x2a,0xf,0xc7, + 0x6a,0x5,0x6d,0xe,0x8,0x94,0x97,0xe5,0xdd,0x47,0xdb,0x3,0xd6,0x5a,0x73,0xbf, + 0xa4,0x6f,0x86,0x8f,0x6a,0xae,0x8c,0xed,0xa5,0x20,0xe4,0xab,0x1c,0x8f,0xcc,0xdd, + 0x20,0xf6,0xb3,0x87,0x3b,0x36,0x1e,0x8d,0x5f,0xcb,0x6b,0xa,0x95,0x39,0x5e,0x9a, + 0x67,0x59,0x13,0x90,0x70,0x1b,0x7d,0xeb,0x4,0xaf,0xff,0x5d,0xea,0x6,0xed,0xfc, + 0x6a,0xdf,0xb8,0xcd,0x9c,0x3a,0x42,0x7b,0xb6,0xf8,0x69,0xcd,0x72,0xea,0xa,0xf9, + 0x1c,0xab,0x33,0xf8,0xdc,0xf0,0x45,0x8e,0xd5,0x19,0xe7,0xa8,0x3b,0x4e,0x5d,0x87, + 0x78,0x7c,0x19,0x82,0x57,0x91,0x53,0xf1,0x9e,0x8b,0xff,0x1c,0x36,0x4c,0xfe,0x70, + 0xcf,0xdf,0xe2,0x7d,0xbf,0x6a,0x6a,0xab,0xe5,0xae,0xae,0xba,0x7c,0x42,0x81,0x28, + 0x11,0x1b,0x6c,0xdf,0x36,0xdf,0x44,0x7c,0xc1,0x62,0xad,0x84,0x31,0xea,0x63,0xe1, + 0xb6,0x9d,0xe3,0x4e,0x5a,0xed,0xf0,0xb5,0x41,0xa8,0xc3,0x16,0x88,0x5b,0xd8,0xd7, + 0x61,0xc5,0x6c,0xb0,0x31,0xd,0x5d,0x93,0xb9,0x6d,0xe,0x58,0xb3,0x75,0xb2,0xd9, + 0xa7,0xa6,0xeb,0x63,0x73,0x88,0x9a,0x4f,0x13,0x6f,0x9d,0x39,0x44,0x4d,0x68,0xd9, + 0xf7,0xda,0x8c,0xe5,0xb5,0xae,0x7e,0x78,0xea,0x54,0x2e,0x5a,0x5f,0xa7,0x1f,0x49, + 0xfb,0x5e,0x9b,0x6c,0x5c,0x39,0xfb,0xc2,0xb4,0xef,0x1d,0x27,0xd9,0x94,0xf5,0x74, + 0xca,0xf,0xaf,0x7d,0x6b,0xfd,0xa9,0x16,0xb6,0xea,0x6d,0x67,0x5d,0x9b,0xbd,0x7, + 0x34,0x1f,0xac,0xff,0x45,0x58,0x3a,0xde,0xfa,0xd6,0xf2,0x21,0x36,0xbf,0xb2,0xbd, + 0x8f,0x7d,0xf2,0x81,0xfb,0xa1,0xcd,0x2f,0xaf,0x57,0x3d,0x3e,0xec,0xfa,0x64,0x9, + 0xf7,0x43,0xce,0xaf,0xc7,0x3e,0xb0,0x7d,0x9,0x19,0xb1,0xc8,0x3b,0x1f,0x9a,0x7d, + 0xbe,0x26,0xb9,0x67,0xd0,0xeb,0x87,0x76,0x56,0x39,0x77,0xec,0x4e,0x30,0x94,0xf, + 0xf2,0x9c,0x9e,0xcb,0x3e,0xf7,0xc3,0xda,0x5b,0x1d,0xed,0x9b,0x77,0x40,0xb,0x4a, + 0x7e,0x39,0xb8,0x33,0x25,0xec,0x1f,0xe9,0xc,0x89,0x94,0xfd,0x3e,0xf7,0xc8,0x94, + 0x78,0xec,0xf3,0xbe,0xdc,0x3e,0x7d,0xf3,0xde,0x33,0xad,0xe7,0x94,0x7d,0x6e,0x57, + 0xee,0xdb,0xbe,0x3e,0xa4,0xee,0xf9,0xb2,0xbf,0xb6,0x77,0x53,0xb5,0x44,0xc,0x72, + 0xfc,0xfc,0x5d,0x8e,0x5f,0x3b,0x5b,0x43,0xef,0xbf,0x88,0xfd,0x93,0x49,0xcc,0xb7, + 0x53,0xda,0x35,0xe4,0x5f,0xd8,0x7c,0x4e,0xf6,0x83,0xfc,0xf7,0xe1,0x19,0xdb,0xaf, + 0x7f,0x85,0x83,0xba,0xaa,0xb7,0x30,0x6f,0x7e,0x4b,0x0,0x18,0x85,0xbe,0x2b,0xc4, + 0x92,0xa3,0x40,0x94,0x88,0xa,0xbf,0x3d,0xe0,0xdf,0x47,0x40,0x85,0x62,0x31,0xad, + 0x4b,0xc4,0xa6,0x9a,0x4a,0x5e,0xec,0x3f,0xc2,0xfe,0xe3,0x2a,0xfc,0x98,0x51,0x6f, + 0xe6,0x75,0xfd,0x58,0xb7,0x60,0x3f,0x52,0x20,0xfe,0x2,0x6a,0xd7,0x85,0x1e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/other_removable_devices.ico + 0x0,0x0,0x4,0x85, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xb1,0x6e,0x1b,0x31,0xc,0xa5,0xe1,0x20,0x41, + 0xd1,0x21,0x19,0x32,0x64,0xb3,0x97,0x2,0x1d,0xfb,0x7,0xcd,0xd4,0xef,0xe8,0x54, + 0x34,0xc9,0x3f,0xc4,0xd7,0xad,0x43,0x12,0xf4,0x33,0x8a,0xe,0x45,0xb2,0x75,0xf4, + 0x3f,0xc4,0x1f,0x90,0x2f,0x28,0x32,0x66,0x8,0xa2,0x8a,0xbe,0xa3,0xcc,0xa3,0x44, + 0x89,0xba,0xbb,0xb6,0x2,0x88,0xf3,0xd9,0xe2,0x7b,0xd4,0x49,0x47,0x3e,0xc9,0x0, + 0x33,0xd8,0x83,0xa3,0x23,0xf0,0xd7,0x25,0x7c,0xde,0x3,0xf8,0x0,0x0,0xc7,0xc7, + 0xed,0xfd,0xaf,0x7d,0x80,0x9f,0xfe,0xbb,0x93,0x93,0xf6,0xfe,0xeb,0x2b,0x80,0x4f, + 0xaf,0x1,0x96,0xcb,0xf6,0xfe,0xbb,0xf7,0xfb,0xed,0xfb,0xbe,0xf5,0x3e,0xfe,0xa3, + 0xff,0xa6,0xfd,0x1e,0xdb,0xe9,0x1e,0xc,0x69,0x4e,0x98,0xcd,0xe9,0xcd,0xf,0x97, + 0x32,0xb,0xce,0xb6,0xef,0xe6,0x31,0x6d,0x7d,0x9c,0xbc,0x3f,0x5e,0x7d,0x5b,0xaf, + 0xd7,0xc1,0xe8,0x7b,0xe1,0x1f,0xe2,0x4a,0xf9,0xe6,0x30,0x5c,0x67,0xe1,0x33,0xf3, + 0xe7,0xbe,0x1c,0x23,0xf2,0xdf,0x6c,0xda,0xeb,0xdd,0x5d,0xe4,0x9f,0xc2,0x90,0x63, + 0xa0,0x18,0xdc,0xcd,0xcd,0xce,0xff,0x66,0x93,0x7c,0xfe,0x5b,0xeb,0x7e,0x8b,0xf8, + 0xa5,0x7f,0xce,0xa4,0x3f,0xfa,0xf2,0xf1,0xd7,0xf2,0xa3,0x3f,0xe7,0x67,0x6b,0x40, + 0xae,0x41,0xbe,0x6,0x7a,0xfe,0xd4,0x4,0x5f,0xd3,0x34,0x3d,0x63,0xfe,0x10,0x8d, + 0xdf,0xcf,0x41,0xe0,0xc1,0x76,0x71,0xd1,0xce,0x4b,0x66,0xdd,0x86,0xe7,0x8f,0xfd, + 0x3c,0x6,0x72,0x4,0x7f,0x8b,0x2f,0x9f,0x7f,0x6f,0x91,0xbf,0x95,0xbf,0xb3,0x30, + 0x4e,0xf1,0x7d,0xd2,0xf7,0xd0,0xb9,0xe7,0xb9,0x73,0x4f,0xb3,0xd6,0x1a,0xe6,0xd2, + 0x80,0x80,0xf0,0xbf,0x83,0xef,0xdf,0x2c,0x76,0x57,0xcc,0x33,0x3e,0xdd,0x6c,0xf3, + 0xd,0xe5,0x99,0x6f,0xfb,0x29,0x26,0x53,0x8b,0xe6,0x5a,0x1b,0xb3,0x5,0x67,0x4c, + 0xe,0xa,0x40,0x72,0xdd,0x2a,0xef,0x42,0x29,0x27,0x5,0x2c,0xca,0x63,0xe8,0xa7, + 0xe5,0x38,0xf1,0x8e,0x69,0xcf,0x27,0x7a,0xd7,0x44,0x9e,0xea,0xe5,0x1b,0x81,0x27, + 0xd6,0x85,0x8a,0x65,0xc5,0x74,0x62,0xbd,0x4b,0x3c,0x2d,0x17,0xe,0xc5,0x8b,0x72, + 0x62,0x2a,0x47,0xa7,0xc6,0x8c,0xcd,0x18,0x5f,0x94,0xb3,0x2b,0xc7,0x9b,0xc3,0x54, + 0xf1,0xae,0xaf,0x63,0xbc,0x5c,0x2e,0x95,0x6b,0xd3,0x8a,0x67,0xb5,0x14,0x1e,0xaf, + 0x53,0xd4,0x4f,0x5b,0xcb,0xca,0x9a,0xe,0x78,0x98,0x73,0x6f,0x6f,0xe3,0xf9,0xed, + 0xfa,0xcb,0x35,0x1f,0xd6,0x7e,0x6e,0x3e,0xa8,0x6,0x24,0xf0,0x64,0x2d,0x8,0xb9, + 0x56,0xc3,0xc3,0xeb,0xd5,0xd5,0x2e,0xc6,0x42,0x6d,0x91,0x35,0xa6,0x57,0x67,0x8, + 0xf,0xb1,0xf0,0x39,0x22,0xae,0xcf,0xfd,0x97,0x97,0x97,0x6e,0xb5,0x5a,0x6d,0xaf, + 0x30,0x24,0xef,0x53,0x5f,0x34,0x8f,0x8b,0x58,0x18,0x3,0x5e,0x7b,0x78,0x25,0x2c, + 0x1e,0x1f,0xc3,0x54,0xf1,0x2a,0xeb,0x12,0xd9,0xa,0xb1,0x98,0x99,0xea,0xd4,0x17, + 0xe7,0x5e,0x60,0xe5,0x9e,0xe1,0xbd,0x7b,0x82,0x85,0xaf,0x4d,0xb,0xdf,0xef,0x30, + 0x58,0xc3,0x3e,0xc7,0xb6,0x68,0xeb,0xd9,0xcc,0x85,0x2b,0xd6,0x2b,0x2f,0xa1,0xe1, + 0x1d,0xec,0xea,0xd6,0xc7,0x57,0x29,0xe6,0xaa,0x36,0x55,0xfd,0x4a,0xe2,0x4e,0x51, + 0xcf,0x7a,0xa0,0x5a,0xe,0xc9,0xd7,0x37,0x7b,0xdd,0x94,0xef,0xbe,0x21,0xd7,0x28, + 0x75,0x34,0x7e,0xff,0x53,0xf9,0xac,0x94,0x7b,0x12,0x35,0x35,0xaa,0x83,0x1a,0x36, + 0xcb,0xe9,0x6a,0xed,0x4a,0x70,0x44,0x75,0x22,0x95,0x3b,0x45,0xfd,0x29,0x72,0xe4, + 0xf0,0xb,0xd8,0xa3,0x38,0xb4,0xba,0x54,0xa8,0xc5,0x39,0xfc,0x80,0x8d,0x39,0xa7, + 0x22,0xfe,0x14,0x47,0x16,0xbf,0xf0,0x7c,0x2c,0x1c,0x63,0xf1,0xcd,0x1a,0xa3,0x52, + 0x17,0x44,0xcf,0x41,0xe1,0x18,0x84,0x6f,0xd1,0x1e,0xa9,0xfc,0x31,0xb5,0xe,0x19, + 0xaa,0x4b,0x2c,0xda,0x24,0x93,0x27,0x7a,0xf3,0x8b,0x1c,0xa9,0xf5,0x5f,0xd0,0x2a, + 0x21,0x67,0x95,0xd6,0xf,0xb6,0xc,0xbe,0xa6,0x35,0x22,0xd,0xa3,0xe9,0x98,0xd4, + 0x18,0xc6,0xe1,0xc7,0xba,0x1,0xd,0x75,0x4d,0x85,0x56,0xd2,0x34,0x53,0x12,0x9f, + 0x74,0x7,0x72,0x78,0x43,0x4d,0xa2,0xea,0x13,0xde,0xbf,0x56,0x47,0x31,0xed,0x93, + 0xd5,0x3f,0x23,0x74,0x55,0x11,0xbf,0x36,0xfe,0x8c,0xd6,0x6a,0x32,0x7a,0x2b,0xab, + 0xbb,0x1e,0x56,0xdb,0x8d,0xfe,0xb,0x1c,0x78,0xed,0x35,0xf7,0x3a,0x6b,0xee,0xfb, + 0xcd,0x3a,0x3,0x7f,0x9f,0x5f,0xf3,0x3b,0xc3,0xfe,0xe8,0x7b,0x18,0xb4,0x1b,0x5e, + 0x51,0x87,0x2d,0xbd,0x9d,0xc2,0x4e,0x87,0x35,0x47,0xa9,0x48,0x26,0x69,0x7f,0x4b, + 0x9f,0x99,0x38,0xd,0xfa,0x6d,0xd2,0x58,0x6a,0xf5,0x9d,0xa2,0xbd,0x86,0x73,0x8f, + 0xd8,0x6f,0xfe,0x17,0xee,0x9,0x62,0xc8,0x72,0x5b,0xea,0xce,0x88,0x18,0xb2,0xdc, + 0x35,0xfa,0x75,0x60,0xc,0x2a,0x3f,0xd3,0x88,0x55,0x31,0xc4,0xfc,0xf9,0xfa,0xaa, + 0x69,0x17,0x83,0xf6,0x35,0xe9,0xf8,0x7e,0xae,0xec,0xe7,0xcf,0xcc,0x9e,0x81,0xda, + 0x98,0x18,0x7a,0x3a,0x81,0xb4,0x32,0xaf,0x25,0x86,0xb1,0x5b,0x62,0x18,0xc4,0x9f, + 0xd2,0x45,0x62,0xfc,0xd6,0x18,0x8a,0xfc,0xa4,0x31,0xa8,0x9e,0x22,0xb7,0x3c,0x3f, + 0x4a,0xac,0x79,0x6b,0xc,0x55,0x7b,0xb9,0xee,0xfc,0x26,0xf7,0xfc,0x35,0x5d,0xae, + 0xc5,0x50,0x35,0x7e,0xe2,0xde,0x6c,0xcc,0x7b,0xd6,0x52,0xc,0xa6,0xf9,0xc7,0x71, + 0xe3,0x3d,0x3e,0xfb,0x8a,0xf1,0x5b,0x62,0xa8,0xe2,0xa7,0xf9,0xd7,0xc6,0x2f,0x6a, + 0x5b,0xf5,0x1e,0x26,0xc5,0x4f,0xe7,0x76,0x34,0x7e,0xae,0x77,0xa7,0xd8,0xd7,0x58, + 0xf8,0xf9,0xfb,0xd7,0xfd,0x67,0xf5,0xcf,0xf8,0xe9,0xbc,0xd6,0x92,0x7f,0x72,0x35, + 0xcf,0x5a,0xb,0x53,0xfc,0x4c,0x13,0x97,0xf2,0x2f,0xbf,0x2f,0xd5,0x8f,0x2d,0x4f, + 0x69,0xfd,0xd1,0xf3,0xa7,0x3c,0x48,0x66,0xe0,0x2f,0xed,0x7f,0xaa,0xf8,0xb9,0x69, + 0xef,0xe0,0x74,0xfc,0xfd,0xdc,0x87,0x31,0x68,0x2d,0xf3,0x6e,0x95,0xf8,0xe5,0x1e, + 0x30,0xb9,0xf,0xa4,0x79,0xc7,0x31,0xd3,0xb8,0x59,0x1e,0x50,0xe7,0x15,0x1b,0xf6, + 0xa7,0xe7,0x77,0x7e,0x5e,0xdc,0x57,0xf5,0xb4,0x4d,0x2a,0xf7,0xd3,0x3a,0xc0,0xcf, + 0xf7,0xf7,0x5b,0xc3,0x33,0x7c,0x3a,0xcf,0x4f,0x9e,0xe9,0x63,0xc,0x67,0x67,0xa6, + 0x7d,0x5d,0x92,0x9f,0xbf,0x7b,0x94,0x8b,0xa8,0xe,0x79,0xe3,0xfb,0xc9,0x68,0x4f, + 0x29,0xb9,0xc7,0xf2,0xb3,0x7d,0x38,0xcd,0x45,0x96,0x1f,0xb9,0xe5,0x1e,0xb8,0x62, + 0xdf,0x13,0x62,0xa0,0xdc,0x2f,0x63,0xf0,0xdf,0x65,0xf9,0x2b,0xf6,0xd4,0x2a,0x37, + 0x3f,0xc7,0x95,0xd6,0xfd,0xf7,0x62,0xe6,0x9f,0xe2,0xf9,0x67,0xce,0x13,0xa6,0xe4, + 0xf,0x31,0x14,0x8c,0x9f,0x37,0x58,0xce,0x1c,0x9c,0x95,0x1b,0xff,0x0,0xa2,0x3f, + 0x7f,0x1e,0xe1,0xd0,0x3d,0xc0,0x81,0x5b,0x6f,0xf,0x24,0x66,0x68,0xd,0x1e,0x1f, + 0x88,0xd6,0x58,0x80,0x5b,0xbf,0x39,0x88,0x7c,0xd1,0x74,0xe7,0x1b,0xf4,0xf9,0xf, + 0x99,0xc6,0xa2,0x4e, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_active.ico + 0x0,0x0,0x4,0x5d, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x5a,0xb1,0x6e,0x1b,0x31,0xc,0xe5,0xc1,0x41,0x8c, + 0xa2,0x5,0x9c,0x21,0x43,0x36,0x7b,0xec,0xd8,0xf,0x8,0x90,0x4c,0x45,0x3f,0xa3, + 0x53,0xd1,0xaf,0x68,0x2e,0x5b,0xc7,0x7e,0x46,0xa7,0xce,0x19,0xfd,0x29,0xfe,0x82, + 0xc2,0xa3,0x87,0x20,0x2a,0x75,0x67,0xe9,0x28,0x1e,0xc9,0xa3,0xce,0x4e,0x8b,0xea, + 0x40,0xd8,0xa7,0x3b,0xbe,0x47,0x49,0x14,0x49,0x39,0x1,0x68,0xe0,0x2,0xae,0xae, + 0x0,0x3f,0x37,0xf0,0xf5,0x2,0xe0,0x23,0x0,0x5c,0x5f,0xf7,0xf7,0x4f,0x97,0x0, + 0xbf,0xb0,0xef,0xe6,0xa6,0xbf,0xff,0xfe,0x6,0xe0,0xcb,0x5b,0x80,0xcd,0xa6,0xbf, + 0xff,0x89,0x7a,0xbf,0xf1,0xdd,0xf7,0xa8,0x83,0x5f,0xb1,0xa7,0xef,0x8f,0xed,0xfe, + 0x2,0xbc,0x2d,0x38,0x64,0xdc,0xda,0x36,0x74,0x12,0x86,0x6,0xe9,0x8a,0x3a,0x2d, + 0x11,0x8e,0x81,0x7a,0xfd,0xfb,0x83,0x64,0xfd,0x16,0x4a,0xac,0xc0,0x30,0x88,0x2e, + 0xfd,0xac,0xd1,0xd7,0x30,0x26,0xf5,0xc9,0x98,0x47,0x18,0x9,0xf7,0xe9,0x53,0xc6, + 0xc8,0x76,0x51,0xfd,0xf4,0x2e,0xc5,0x88,0xf7,0xc0,0xdf,0x21,0xf3,0x17,0xef,0x5, + 0x7e,0x28,0x75,0x87,0xf5,0x4c,0xef,0xf1,0x77,0xd2,0x7d,0xb2,0xbb,0xb3,0xd5,0xd0, + 0xa7,0x3c,0x44,0x3f,0xea,0x75,0xba,0x9,0x8b,0xd9,0x3f,0x8c,0x7b,0xcc,0x3f,0xd2, + 0xcd,0xf3,0x5e,0xfa,0x13,0x70,0xc,0xba,0x7e,0x5c,0x37,0x7e,0x8b,0xb8,0x23,0x7f, + 0x3a,0x7e,0xd2,0xf1,0x9,0xfa,0xc9,0xa6,0x50,0xf4,0xf,0x18,0x92,0xff,0x4a,0xdc, + 0x5c,0x5f,0xd4,0x65,0xfb,0x87,0x72,0x87,0xb1,0x9e,0xac,0x2b,0xed,0x43,0x2e,0x42, + 0x3b,0x2c,0x42,0xd8,0x35,0x21,0x6c,0x91,0xa0,0x3d,0xa,0x1c,0xa5,0x69,0x7b,0x49, + 0xf7,0x6d,0xd3,0xcb,0x36,0xea,0x2c,0x43,0x38,0xac,0x43,0x88,0x71,0x6,0xc3,0x4d, + 0x17,0x6f,0x52,0x9c,0xf9,0x71,0x39,0x69,0x21,0x6f,0x9e,0x78,0x33,0x3d,0x76,0xea, + 0xa3,0x64,0xbd,0xf2,0x7a,0xb7,0x82,0x48,0x98,0x2,0x4e,0x81,0x25,0xc5,0x3,0x29, + 0xae,0x1c,0xb1,0x44,0x1f,0x28,0xfc,0xb9,0xe,0xaf,0xf0,0xc3,0x53,0xec,0x53,0xe2, + 0xde,0x6c,0xfb,0xb4,0x38,0x18,0x2,0xf3,0x45,0x7,0x9e,0x16,0x17,0x53,0x1f,0xf7, + 0xb,0x16,0x5f,0xe9,0x5c,0x64,0x3c,0x29,0x4e,0x8e,0x63,0xdd,0xe0,0x93,0x92,0xbf, + 0x64,0x5f,0x12,0xb0,0x4a,0xdb,0x4,0xbc,0xb1,0x4f,0x8d,0xf0,0xb8,0x9c,0x11,0x4f, + 0x89,0xed,0x63,0x3c,0x23,0xce,0x4f,0xc6,0x7a,0x16,0xf3,0xcd,0xf9,0x11,0x63,0x7f, + 0xf2,0x83,0xb6,0x94,0x62,0x4d,0x95,0xb9,0x4e,0xb9,0x96,0x60,0xa9,0xb1,0x94,0xdc, + 0x17,0x98,0x9e,0xb8,0x6e,0xc4,0xf6,0x2,0x53,0x8b,0x2d,0xa,0x96,0x84,0x67,0xe6, + 0x1c,0x8a,0x29,0xe4,0xd,0xd,0x8f,0xac,0x93,0xdd,0x48,0x7c,0x10,0xf1,0xbc,0x38, + 0xa,0xae,0x27,0x3f,0xa5,0xf6,0x2,0x77,0xe1,0x0,0xeb,0xb0,0x83,0x15,0xe6,0xaa, + 0x5e,0xda,0xa3,0x40,0x94,0x3d,0x93,0xee,0xd9,0xba,0x93,0x2d,0xea,0x46,0xd9,0xc1, + 0x43,0x38,0x60,0xfe,0x7a,0x59,0xf6,0x79,0xb,0x4b,0x68,0xf8,0x0,0x43,0xde,0xfa, + 0xfc,0xa6,0x7a,0x24,0xa9,0x59,0xb9,0xaa,0x2e,0x87,0xa5,0xa6,0xf8,0x7e,0xa0,0x7b, + 0xa4,0x26,0xa7,0x71,0x6c,0xc5,0xcf,0x32,0x7e,0x8e,0x77,0xc2,0x65,0x71,0x4c,0x60, + 0xf7,0x7b,0xcd,0x88,0xff,0x16,0x87,0x16,0xef,0x8a,0x7d,0x2,0xf3,0xf0,0x8d,0xbc, + 0x2a,0xcd,0x4d,0x15,0xbe,0x23,0xcf,0x96,0xb9,0x72,0x6,0x7e,0x50,0xf2,0x6e,0xc6, + 0xa4,0x7b,0x6d,0x9e,0xfd,0x22,0x47,0x99,0x43,0x47,0xf9,0x58,0xc2,0xee,0xfa,0x15, + 0x6c,0x23,0xd7,0xf3,0x66,0xe7,0xfc,0xc4,0x61,0xe5,0x69,0x1d,0xbb,0xe0,0x10,0x6b, + 0x0,0x8e,0x2f,0x89,0xb,0xdf,0xd0,0xff,0x87,0xf8,0x13,0xb5,0x42,0x89,0xef,0xac, + 0x1b,0xa,0x6c,0xd7,0xfa,0xe,0xb9,0x67,0xaa,0x8e,0x48,0xb8,0xa3,0x73,0xa4,0xea, + 0x9f,0xc2,0x9e,0x9c,0xa8,0x2b,0xc4,0x33,0x6a,0x80,0x61,0xae,0x58,0xcc,0xe6,0xfb, + 0xba,0xe0,0x30,0xeb,0x96,0x12,0xdb,0x3c,0x4b,0x6a,0x1c,0x66,0xec,0x84,0x6a,0xfc, + 0x22,0xa6,0x98,0xb1,0x5f,0xc0,0x76,0xe2,0x9b,0xd8,0x2,0x87,0xbb,0xde,0xf1,0x62, + 0xb,0xeb,0xed,0xc6,0xaf,0xad,0x83,0x88,0xaf,0xa8,0xf8,0xb5,0x35,0x83,0x83,0xcb, + 0x5b,0x6f,0xa5,0x16,0x1e,0x97,0xe1,0x19,0x16,0x58,0x7b,0x35,0x61,0x8f,0xb7,0x3b, + 0x94,0x2d,0x4a,0x9b,0xa5,0x9,0x70,0x8b,0xf6,0x7d,0x63,0x72,0xdb,0x3f,0x4b,0xb2, + 0x45,0x8c,0x1d,0x2c,0x11,0x63,0xd5,0xd5,0x71,0xcf,0x58,0x8f,0x85,0xc7,0xbe,0xe, + 0xdb,0xa0,0xdc,0xc3,0x50,0x87,0xb5,0x57,0x27,0x8d,0x36,0x9b,0x3e,0x21,0xd6,0x7b, + 0xf3,0x9a,0xb2,0xff,0xa1,0x58,0xdf,0xe3,0x45,0xf2,0xa4,0x52,0xbf,0xf9,0xed,0x50, + 0x38,0x39,0x77,0xe6,0xa7,0xbc,0xd2,0xe5,0xad,0x23,0x13,0xb7,0x63,0x5f,0x67,0x7e, + 0x4f,0xed,0x41,0xed,0xb0,0x6c,0xa8,0xe4,0x3e,0x2b,0xbf,0x93,0xbb,0x88,0x9d,0x35, + 0xdc,0x96,0xd,0xb4,0x3e,0x7a,0xad,0xb9,0xd7,0xf8,0x1d,0x75,0xec,0xab,0x8e,0xdf, + 0x59,0x4b,0xbf,0xca,0xf8,0xad,0x3a,0xf8,0x6f,0x8c,0xdf,0xa8,0x93,0x55,0x1b,0x46, + 0x71,0xff,0x4,0xff,0x9f,0xa8,0xd5,0x83,0xc4,0x5b,0x71,0x2e,0xa8,0x99,0x7b,0xd3, + 0x86,0x92,0x97,0xb7,0xe2,0xdc,0x20,0xf1,0x52,0x7f,0xc9,0x79,0xd8,0x3a,0x47,0x10, + 0x1b,0x18,0xbf,0xd6,0x72,0x8c,0x95,0x9a,0x7a,0xce,0x70,0xd8,0xe0,0xe0,0x26,0x36, + 0xb4,0xf6,0xf9,0x86,0xf3,0x3b,0xfc,0xbc,0x9a,0xdf,0x83,0xf9,0x9f,0xf0,0x3b,0xcf, + 0x4c,0x6c,0xfe,0x1d,0x6b,0xea,0xe0,0x77,0x9e,0xa9,0xa,0xee,0xc2,0x5f,0xad,0xcf, + 0x9,0x7e,0xf1,0xcc,0x65,0xed,0x3f,0xc2,0xf,0x1e,0x1b,0x78,0xfc,0xb3,0xb8,0xa9, + 0xd,0xc6,0xb9,0xf,0x28,0xb7,0x65,0x3,0x8f,0x7f,0x84,0x57,0xe5,0xe,0x24,0xae, + 0x18,0xe7,0x42,0x97,0xd,0xca,0x39,0xd4,0xc3,0x5d,0x73,0xee,0x52,0x6d,0x90,0x6a, + 0xf,0xcf,0xb8,0x2b,0xf9,0x45,0x1b,0x24,0xff,0x31,0xf7,0x1,0xe3,0xae,0xe4,0x1f, + 0xd9,0x50,0x55,0xfb,0xc1,0x59,0xf8,0x27,0xb9,0x45,0x1b,0x14,0xee,0x99,0xfc,0x93, + 0xdc,0x85,0xd,0xe3,0xab,0xfa,0x5c,0x3e,0x87,0x5b,0xb1,0xa1,0xfa,0xdc,0x7e,0xa, + 0x37,0xb5,0xe1,0x68,0xc7,0x2c,0xfe,0x73,0x9c,0xf1,0xa9,0x1d,0x29,0x4e,0x58,0xfc, + 0xe7,0xfa,0x6d,0xc1,0x61,0xcb,0xdc,0xdf,0x1e,0x68,0xb,0xfb,0x77,0xf1,0x8f,0x39, + 0xcb,0x17,0x80,0xc5,0x33,0x40,0x73,0x40,0xd9,0x63,0xff,0xe,0x65,0x7b,0x94,0xb6, + 0x97,0x26,0xa,0x2c,0xb0,0x67,0x89,0x4f,0x57,0xfb,0x52,0x62,0x1f,0x3e,0x4b,0xef, + 0x45,0xd9,0x76,0x3d,0xb0,0xc0,0x27,0xcb,0xf8,0x16,0x62,0xaf,0x91,0xe3,0xe,0xb9, + 0x1e,0xba,0x7f,0x78,0xd8,0xaf,0xc2,0x1f,0xda,0x3a,0xc9,0x54, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cassette_empty.ico + 0x0,0x0,0x2,0x6a, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x4e,0xc3,0x30,0x10,0x3d,0xa4,0xaa,0x52, + 0xc5,0xd2,0xa1,0x43,0xc7,0x8e,0x8c,0x7c,0x42,0x27,0xfe,0x20,0x33,0x4c,0x88,0xcf, + 0xe8,0xc8,0xc8,0x67,0x20,0x57,0x82,0x95,0xad,0xfd,0x9,0x7e,0x83,0x1,0x68,0x29, + 0x8,0x64,0x2e,0x49,0x43,0xcd,0xc9,0x67,0x9f,0x83,0x4d,0x2,0xcd,0x93,0xaa,0x97, + 0x38,0xb6,0xef,0xce,0x71,0xde,0x9d,0xb,0x70,0x0,0x3d,0x18,0xe,0x1,0x79,0x2, + 0x17,0x3d,0x80,0x13,0x0,0x18,0x8d,0xca,0xfb,0xbb,0x3e,0xc0,0xd,0xb6,0x8d,0xc7, + 0xe5,0xfd,0xe5,0x0,0xe0,0xfc,0x10,0x60,0x32,0x29,0xef,0xaf,0x71,0xdc,0x3,0xf6, + 0x3d,0xc2,0x31,0x78,0x89,0x2d,0x65,0x7b,0x8e,0x69,0xf,0xda,0xc,0x5d,0x93,0x61, + 0x36,0x9b,0xe9,0x3a,0x9c,0xcf,0x51,0x5d,0x2f,0x97,0xcb,0x6f,0xac,0x11,0x66,0x5f, + 0xfa,0xdc,0x98,0xe3,0xab,0x2f,0x1d,0x4b,0x99,0xce,0x61,0xda,0xf7,0xf5,0xa5,0xcf, + 0x4d,0xfb,0x34,0x2e,0xae,0x2f,0x7d,0x6e,0xda,0xaf,0xd6,0xd3,0xd5,0x97,0x59,0x43, + 0xa0,0x73,0x70,0x63,0x6c,0xcf,0xeb,0xbe,0x3b,0xdb,0xfa,0xbf,0xae,0x1f,0xb,0x7e, + 0x5f,0xaf,0xa,0x7e,0x79,0x7e,0x2a,0x78,0xb3,0xe5,0x8f,0xcd,0xba,0xe4,0xb7,0x55, + 0xcc,0x3d,0xf4,0xa7,0xa1,0xb7,0xb8,0xcf,0xb4,0x56,0x4a,0xeb,0xcc,0xc3,0x79,0x3f, + 0x13,0xb9,0xce,0xa0,0xdc,0x14,0x7a,0x53,0xe9,0xcc,0x55,0xbf,0xc1,0x80,0xda,0x85, + 0xba,0x9a,0x16,0x6d,0x7f,0x4a,0xbe,0x1b,0x9f,0xe6,0x71,0x1a,0x68,0xfa,0xe9,0xd3, + 0x51,0xa9,0x26,0xba,0xfc,0xab,0xcb,0x36,0xff,0x7c,0x9a,0x2d,0xd1,0x5d,0xda,0x46, + 0xc7,0x2,0xd1,0x3b,0x89,0xe,0x4b,0x35,0x9c,0xae,0x97,0xeb,0xfd,0x56,0x7e,0xd0, + 0xb1,0x9c,0x7f,0xb4,0xdd,0xb6,0x7e,0x3e,0x3f,0x42,0xfc,0xfb,0xc9,0x7b,0xa5,0xfe, + 0xf9,0xf6,0x9b,0x8f,0x5d,0x79,0x75,0x5f,0x73,0x44,0x1b,0x60,0xe6,0x1c,0xa5,0x16, + 0x98,0x8f,0x4e,0x91,0x6f,0x85,0xbc,0xd0,0x14,0x79,0xbe,0xc2,0x12,0x1a,0x8e,0x61, + 0x97,0xb7,0xce,0x6,0xd,0x6,0xd8,0xc1,0x87,0x58,0xb9,0x34,0x79,0x6e,0x35,0x75, + 0x94,0x6a,0x2a,0x97,0x1f,0x39,0x8d,0xf3,0xe5,0x64,0xdb,0x1c,0xbe,0x7b,0xa9,0x6d, + 0xb0,0xe8,0xbe,0x34,0xaf,0x37,0x91,0xe7,0x63,0xe4,0xfd,0x94,0x75,0x0,0x97,0xe3, + 0x53,0xd6,0x5,0x3e,0x1f,0xa8,0x3d,0xd7,0x58,0xca,0x29,0xea,0x86,0x26,0xea,0x8, + 0xc9,0xfe,0xa9,0x62,0x8b,0x35,0xb7,0xcd,0xff,0xd8,0xc,0xbb,0xf7,0x95,0x52,0xe3, + 0x3a,0xfc,0x63,0xd0,0xba,0xe9,0x3e,0xcb,0xb0,0x9e,0x52,0x58,0x57,0x85,0x71,0x3e, + 0xce,0x86,0xbc,0xe,0x9b,0xe0,0x6f,0xa,0xbb,0x3a,0x6c,0x36,0x6c,0x2c,0xdc,0xe, + 0x1d,0x5c,0x70,0xe6,0xc3,0x84,0x9c,0x4c,0xbf,0x43,0x74,0xde,0x97,0x67,0xb9,0x5a, + 0xd1,0x57,0xdb,0xba,0xf2,0x6f,0xc5,0xd2,0xb9,0x7d,0xfd,0x42,0x7d,0x94,0xc4,0x2f, + 0xad,0xe1,0xeb,0xfa,0x24,0x89,0xbf,0x6e,0x8d,0x20,0x5d,0x2f,0x49,0x1c,0xa9,0x58, + 0x12,0x7f,0x2a,0x96,0x9c,0xb3,0x62,0xad,0xb,0x37,0x9f,0x2d,0x7e,0xae,0xe6,0xe, + 0xdd,0xf,0xa6,0xd,0xdb,0x7c,0x92,0x73,0x8e,0xf4,0x4c,0xc2,0xed,0x77,0x6a,0xbb, + 0x62,0x57,0xfc,0x55,0x1f,0xae,0x3e,0xa7,0xcf,0xa9,0x6d,0xee,0xec,0x12,0x33,0x7e, + 0x2e,0x2e,0xce,0xd7,0x90,0xf8,0xa9,0x8d,0xd0,0x73,0x95,0x45,0xdf,0xad,0xb6,0x5d, + 0xfb,0xdf,0xf7,0x9e,0x43,0xbf,0x31,0x6e,0x1e,0x5b,0xfc,0x6d,0xf8,0xfe,0x7f,0x8b, + 0xf7,0x35,0x7e,0xb0,0xe4,0xff,0x58,0x67,0xe3,0xd0,0xfc,0x68,0x5e,0x37,0x51,0x7b, + 0x75,0xe8,0xb0,0xcf,0xb0,0xfd,0x77,0xa0,0x94,0x9a,0x67,0x8,0x64,0x15,0x89,0xe7, + 0x36,0x3b,0x39,0x3e,0x1,0x71,0xa8,0x21,0x9c, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_empty_active.ico + 0x0,0x0,0x4,0x34, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x5a,0xb1,0x6e,0xdb,0x30,0x10,0xa5,0x93,0x34,0x41, + 0xd0,0x21,0x19,0x52,0x20,0x5b,0x3c,0x76,0xec,0x1f,0xd4,0x45,0x81,0xce,0x19,0x4a, + 0x78,0x29,0xe0,0x4e,0x45,0x7f,0xa2,0x88,0xba,0x75,0xec,0x27,0x78,0xe8,0x10,0xd0, + 0x40,0xbd,0x76,0x6a,0xfc,0x13,0xde,0x3b,0x6b,0x28,0x3a,0x54,0x8b,0x0,0xfb,0x7a, + 0x92,0x22,0x87,0xa2,0x78,0xbc,0x23,0xad,0xe6,0x2,0xe1,0xc5,0x8a,0xef,0xde,0x23, + 0x45,0xde,0x1d,0x85,0x28,0x35,0x52,0x47,0xea,0xfc,0x5c,0x21,0x8e,0xd5,0xc7,0x23, + 0xa5,0xde,0x28,0xa5,0x2e,0x2e,0x9a,0xcf,0x3f,0x8e,0x95,0xfa,0x8e,0xf7,0x2e,0x2f, + 0x9b,0xcf,0x5f,0x4e,0x95,0xfa,0xf0,0x54,0xa9,0xf1,0xb8,0xf9,0x7c,0x8b,0x7e,0xbf, + 0xf1,0xbb,0xcf,0xd1,0x7,0x7f,0xc5,0x3b,0xcd,0xfd,0xca,0x26,0x47,0x2a,0xc6,0xc0, + 0x83,0xf6,0xd5,0xb3,0x2c,0xcb,0xea,0xfb,0xab,0xd5,0xaa,0x46,0x40,0xab,0xf0,0xdb, + 0x7c,0xde,0xf8,0x64,0xd6,0xe5,0xc4,0x70,0x7d,0x5b,0xac,0x7d,0xb3,0x3a,0x14,0x28, + 0xfb,0xc7,0x8a,0x41,0xf9,0xb6,0xfc,0x9c,0xff,0x50,0xfc,0x6e,0x8c,0xce,0xfd,0xfb, + 0x18,0xad,0xb5,0xfe,0xae,0xaf,0x8b,0x2d,0x47,0x1d,0xd3,0x9a,0xbf,0x96,0x83,0xf1, + 0xed,0x3c,0x4b,0x57,0x9f,0xcd,0xef,0x6a,0x96,0x3e,0x1f,0x9f,0xaf,0x1d,0xdf,0xbe, + 0xdf,0x3e,0xf,0x1f,0xbf,0xeb,0x7b,0xbf,0x66,0x7a,0xbe,0x9e,0x18,0xac,0xaf,0xbb, + 0x1e,0x76,0xeb,0xc2,0x32,0x77,0x5c,0x94,0x66,0xcb,0x97,0x8c,0xd1,0xf2,0xbb,0xbe, + 0xee,0xbc,0xf8,0xcc,0x9d,0xf,0xdf,0x9c,0x51,0xbe,0x54,0xc,0xcf,0x7a,0xd8,0xd9, + 0xe6,0x35,0x40,0xfe,0x19,0x60,0x8d,0x4c,0x26,0x7b,0x40,0xfd,0xa,0x60,0x61,0x10, + 0xd7,0xf8,0xb9,0x42,0x8d,0xb8,0xc0,0xbf,0x23,0xe6,0x88,0xc5,0x14,0xa0,0xbc,0x3, + 0xa8,0xf2,0xc,0xa6,0x9b,0x3a,0xdf,0xb4,0x79,0xe6,0xeb,0x31,0xa7,0xd0,0x6b,0x5c, + 0xbe,0x21,0xf3,0x8e,0x3b,0x6e,0x22,0xf,0x74,0xf3,0xf,0x91,0x87,0x44,0xb1,0x7c, + 0xf9,0x80,0xc8,0x2b,0x16,0x7f,0x2f,0xd6,0xee,0x99,0x46,0xc4,0xa3,0xd6,0x45,0x8a, + 0x3e,0x6e,0x6f,0xa5,0xe8,0xa3,0xf6,0x9a,0x2f,0x17,0x72,0xf1,0xa8,0x7c,0xee,0xc9, + 0x51,0xbd,0xfc,0x4a,0xe5,0x59,0x6a,0x9f,0x7b,0xcc,0xbb,0x5e,0x7c,0x79,0x4f,0xba, + 0xbf,0x3,0x39,0x34,0x4d,0x5f,0x58,0x43,0x28,0x56,0x50,0x9f,0xaf,0x6,0x51,0x75, + 0xc2,0x33,0x66,0x6f,0xc,0x5f,0x2e,0x92,0xe6,0x7e,0x77,0x9d,0x86,0xf2,0x1a,0xa5, + 0x93,0xdb,0x83,0xa1,0xb9,0xe1,0x6a,0x52,0xcc,0x3a,0x68,0x7d,0x63,0x63,0xd9,0xcf, + 0x95,0x8a,0x29,0xde,0xcf,0x82,0x1a,0xe2,0xc6,0x1e,0x22,0x16,0xa5,0x37,0x54,0x9f, + 0x5a,0x83,0xeb,0x97,0x50,0xce,0xaf,0xa0,0x98,0x9c,0x41,0x3e,0x3f,0x83,0x35,0xa2, + 0xb1,0x50,0xff,0xb9,0x2,0x53,0x2e,0x41,0x17,0xb3,0x6,0x35,0xa2,0xb9,0xc3,0x7a, + 0x35,0x83,0xbc,0xc6,0x1b,0x44,0x80,0xd,0xd6,0xaf,0xed,0xb2,0xa9,0x5b,0xd8,0x42, + 0xab,0x17,0xea,0xa1,0x6e,0xbd,0x3f,0x8d,0x1d,0x49,0x57,0x62,0x0,0xdd,0x4b,0x64, + 0x54,0xff,0xd2,0xae,0x1d,0x15,0x59,0xd3,0x6c,0xa3,0xd6,0x97,0xdd,0x33,0xd7,0x97, + 0xb0,0xc6,0xc5,0xc6,0x26,0xf3,0x3f,0xc3,0xc1,0xed,0xf,0xb2,0x5f,0x17,0xc4,0xe7, + 0x62,0xef,0xa3,0x9f,0xca,0xef,0x5e,0x8c,0x8c,0x4f,0xe5,0x51,0x32,0xc7,0xed,0xa1, + 0x5f,0x70,0x5e,0x60,0x39,0x76,0xfd,0x18,0x11,0x3b,0x50,0x5b,0xba,0x16,0xae,0xf9, + 0xb5,0x9f,0xa0,0xe,0x85,0xf7,0x8a,0x7f,0x7f,0x5,0xeb,0xac,0xa0,0x76,0xb7,0xc6, + 0xd6,0xf,0xee,0x99,0x72,0xfa,0x5,0xfe,0x7b,0xeb,0x8f,0xe9,0x1b,0x22,0x38,0x3a, + 0x7b,0x2e,0xa5,0x8f,0xe0,0xd6,0x28,0xb5,0x96,0x25,0x7d,0x5,0xd5,0x13,0x44,0x8c, + 0x97,0xcd,0xd,0xa9,0x3d,0x82,0x44,0x7f,0x6a,0x6c,0x7b,0xdd,0x50,0x1c,0x5c,0xff, + 0x96,0x12,0x9b,0xe3,0x18,0x22,0xb6,0xcb,0x21,0xed,0xa7,0x62,0x62,0x73,0x1c,0xb1, + 0xfb,0x3b,0x85,0x4b,0xd2,0x6f,0xb5,0x6,0xeb,0x13,0xd8,0x9a,0x43,0xd8,0xbc,0x1d, + 0x41,0x79,0xab,0xa0,0xb8,0x56,0x90,0x23,0xae,0x11,0x4d,0x85,0x78,0xdf,0xfc,0x3c, + 0x0,0x7d,0xf3,0x4,0xcc,0xd6,0x20,0xea,0x6,0x3f,0x21,0x9a,0x5,0xf6,0x5d,0x2d, + 0x4e,0xb1,0xff,0x5a,0x42,0x81,0xfd,0x58,0x89,0xfd,0xd8,0x6,0xfb,0x31,0x58,0x34, + 0x7d,0xd8,0x18,0xaf,0x89,0x7a,0xe8,0xc3,0xb2,0xf3,0x7d,0x47,0xdc,0x48,0x67,0xd0, + 0xfe,0x9e,0x7b,0x25,0x19,0x97,0x3,0x9c,0xfe,0xad,0xb9,0xe8,0xfe,0x2d,0x4a,0x7, + 0x97,0x77,0x7a,0xdc,0x5c,0x7f,0x27,0xec,0x23,0x43,0x9c,0x5e,0xd,0x92,0xde,0x43, + 0xd8,0x67,0x46,0x73,0xd7,0x13,0x35,0x1c,0xbf,0x94,0x7b,0xb7,0x97,0x63,0xb8,0x19, + 0xd,0xb1,0xf9,0x3a,0x7a,0xee,0x3,0xfc,0xd2,0x7c,0xf8,0x3f,0xc6,0x1f,0x9b,0x93, + 0x87,0x1c,0x3f,0x75,0x1e,0x13,0xd7,0x9e,0x1,0xc6,0x4f,0xad,0x6b,0x4a,0x43,0x2f, + 0xe7,0xef,0xb1,0xfe,0xb9,0xbc,0xe6,0x6a,0xf0,0xf6,0x5d,0x89,0xfc,0xd2,0xfc,0xb6, + 0xdb,0xe7,0xf4,0xbe,0xed,0xbc,0x2b,0xf4,0xf1,0xda,0xe7,0x8,0xbb,0xb6,0x4b,0x73, + 0x8c,0xa8,0x6f,0xce,0xba,0x3a,0x7a,0xe7,0x97,0x2e,0x37,0xdb,0x47,0x7b,0xe6,0x9c, + 0xb3,0xdd,0x7a,0x8,0x9d,0x6f,0x62,0xc6,0x6f,0xeb,0x95,0x8,0x90,0x8e,0xe9,0x7f, + 0x8e,0x3f,0x62,0x4c,0x31,0xdc,0x8f,0x3e,0x7e,0xf1,0x99,0xd9,0xe1,0x8e,0xe9,0x9b, + 0xa5,0xdc,0xdc,0x3c,0x24,0xf4,0xd5,0xa4,0x86,0x7d,0xcf,0x7c,0x9c,0x6,0x9b,0x9b, + 0x1a,0x27,0xa5,0x5b,0x7a,0x36,0x14,0x68,0xe8,0xcd,0x9d,0x94,0x3b,0xaa,0x3e,0x7a, + 0xbe,0xaf,0x3c,0xcf,0x30,0x76,0xdc,0xa9,0x1a,0x1e,0x93,0x3b,0xa0,0xa1,0x67,0xdc, + 0x79,0x7d,0x28,0xd,0x21,0xa3,0xce,0xf3,0xfb,0x72,0xfb,0xd6,0x1c,0xa7,0x81,0xe3, + 0x8e,0xee,0x13,0x23,0x6c,0xa8,0x77,0xe,0x29,0xdc,0x9c,0x86,0x94,0xfc,0xb6,0xaf, + 0x25,0xbc,0x57,0x18,0x8c,0x9b,0xd3,0x92,0xf2,0xfe,0xa1,0x35,0x28,0xde,0x5d,0x81, + 0x99,0x9f,0x80,0x9e,0x1c,0x6e,0x4d,0x36,0xda,0xe8,0xc9,0xa8,0x34,0x99,0x2a,0xb4, + 0x52,0x39,0xe2,0x1a,0xd1,0xd4,0x38,0x19,0x21,0x8e,0xf4,0x74,0x35,0x32,0xcb,0x5f, + 0x7,0x7a,0xf6,0xf7,0x99,0x59,0x96,0x46,0xcf,0xa,0x5d,0xe3,0x14,0x71,0x91,0x9b, + 0xb5,0xd6,0xda,0x18,0xb3,0xa8,0x30,0x6f,0x70,0x8a,0xb8,0x2c,0xb4,0x9e,0x95,0xc6, + 0xdc,0x6d,0xb4,0xbe,0xd9,0x56,0xff,0xf8,0x50,0xfd,0xc3,0x43,0xb9,0x84,0x7f,0x9e, + 0x6e,0xb3,0xb0, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_active.ico + 0x0,0x0,0x2,0x9b, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0x3,0x31,0x10,0x9d,0x15,0x51,0xa4, + 0x88,0x82,0x14,0x29,0xd2,0x65,0x4b,0x4a,0x6e,0x40,0x2a,0xce,0x41,0x85,0x90,0xb8, + 0x1,0x95,0x4b,0x4a,0x8e,0x41,0x85,0x44,0x7,0x5d,0x2a,0xe,0xc2,0x1,0xb8,0x82, + 0xb1,0xbd,0x31,0x71,0x96,0x19,0x7b,0x3c,0xf6,0x26,0x20,0xd6,0x68,0x94,0xdd,0xc5, + 0xf3,0xf1,0xc6,0x7e,0xef,0x4d,0x0,0x1a,0x98,0xc0,0x7c,0xe,0xe6,0xb3,0x85,0xdb, + 0x9,0xc0,0x15,0x0,0x2c,0x16,0xdd,0xfd,0xeb,0x14,0xe0,0xd9,0x3c,0x5b,0x2e,0xbb, + 0xfb,0x87,0x19,0xc0,0xcd,0x29,0x40,0xdb,0x76,0xf7,0x4f,0xc6,0xef,0xd3,0xcc,0x3d, + 0x37,0x3e,0xe6,0xd2,0x3c,0xe9,0x9e,0xdb,0xb1,0x9e,0x0,0x35,0xb4,0xd0,0xe0,0xed, + 0x1e,0xb4,0x37,0xa5,0x14,0x69,0x6e,0xbe,0xa,0x6c,0x1b,0xc3,0xfa,0xe9,0x8f,0x17, + 0xad,0xdf,0xef,0x34,0x35,0xec,0x7c,0xf7,0x19,0xfe,0xa9,0x7d,0x7f,0x7b,0xbd,0xd9, + 0x6c,0x50,0xe3,0xf8,0x97,0xe6,0xb7,0xfe,0x54,0xfe,0xb0,0x86,0x30,0x26,0x37,0xff, + 0x9e,0xcf,0xd6,0xac,0x5f,0x4e,0xfe,0xd0,0xec,0x5c,0xcc,0x9f,0x53,0x83,0x9f,0x47, + 0xfa,0x33,0x8d,0xf4,0xb7,0xd7,0x94,0x25,0xfc,0xdd,0xb5,0xf9,0xa4,0xf6,0x6b,0x18, + 0x23,0xe6,0x4f,0xed,0xdf,0x5c,0x7f,0xe7,0xb3,0xbd,0x1f,0xca,0xbf,0x7f,0x6,0x63, + 0xe7,0xb0,0x3f,0xcf,0xfa,0xaa,0xc6,0xec,0x2b,0x90,0x99,0xf5,0xb5,0x38,0x63,0xe0, + 0xc6,0xe1,0x8d,0xc7,0x99,0xc7,0x69,0x75,0x9c,0x11,0xe3,0xe,0x89,0x3f,0x11,0x1c, + 0x4a,0x9d,0x1f,0x14,0xf,0x22,0xb8,0xc4,0x39,0xd7,0xdc,0x78,0xb5,0xeb,0xe3,0xe2, + 0xce,0x6f,0xae,0x2f,0xac,0x11,0x7b,0x2e,0xc5,0x49,0x6c,0xbf,0xa0,0xb8,0x25,0x1d, + 0x4,0xe,0x70,0xeb,0xab,0x8a,0xeb,0x48,0x6d,0x35,0x70,0xbe,0xa,0xee,0xb,0x79, + 0x20,0xc6,0x5,0x12,0x5e,0xa0,0xb8,0x41,0xca,0x13,0x58,0x3c,0x8f,0xf9,0x12,0xde, + 0x38,0x54,0x3c,0x6f,0x91,0x78,0x80,0xf1,0x12,0x17,0xab,0xfb,0x1c,0xe5,0x78,0xa, + 0x56,0xe6,0xfa,0xac,0x82,0xad,0xb4,0x82,0x4b,0xc7,0x5b,0x46,0x42,0xc3,0x45,0xc0, + 0x5b,0xd7,0xb3,0xc1,0x79,0x2b,0xca,0x63,0xdc,0xf7,0xc3,0xe1,0xb4,0x52,0x1c,0xf8, + 0x8e,0x15,0xc1,0xe8,0x1f,0x3c,0xc7,0xc4,0xae,0x28,0xfe,0xc7,0x78,0x20,0x93,0xb, + 0x24,0xf1,0xc7,0xfa,0xcb,0xeb,0x4f,0xad,0xc1,0x3d,0x47,0x74,0x57,0x2e,0xf7,0xc5, + 0x38,0xbf,0x16,0xf,0x62,0xe7,0x2b,0xc6,0x63,0x52,0xee,0xe,0x39,0x3c,0xc9,0xbb, + 0xd2,0xc1,0xe1,0xe1,0x4a,0x76,0xd4,0xf8,0x39,0x5a,0x2,0xd1,0x14,0xb1,0xf8,0xb9, + 0xda,0x2,0xd3,0x18,0xdc,0xf8,0x39,0x3c,0x50,0x2b,0x7e,0x5f,0x2f,0x8c,0xf1,0xf, + 0x1f,0x3f,0xd4,0x57,0x89,0xf8,0xa4,0xce,0xca,0xd5,0x12,0xd8,0x6f,0x3,0x9d,0xee, + 0x6a,0x6,0xd2,0x3e,0x8d,0xd1,0x61,0x27,0x4e,0x87,0xb5,0xc6,0xd6,0xb0,0xd3,0x61, + 0x6a,0xe,0xd4,0x18,0x4a,0x87,0x65,0xeb,0xb4,0xdc,0xf7,0x4b,0x7e,0xcf,0x84,0x7e, + 0xf3,0x7b,0x27,0x86,0x73,0x52,0x8e,0xd9,0xcb,0x4b,0x71,0x7f,0xc0,0xff,0x61,0x7e, + 0x5f,0x93,0x94,0x87,0x58,0xda,0x23,0xa1,0x33,0xfd,0x19,0x14,0xad,0xbd,0x30,0x7f, + 0x9,0xf,0x67,0xe5,0x4e,0xe9,0x30,0xc1,0xfa,0x6b,0xe7,0x1f,0xd7,0xff,0xb7,0xd6, + 0x7f,0xec,0xfd,0x9f,0xfd,0xe,0x12,0xf9,0xc5,0xf8,0xa7,0x76,0x7d,0x3,0x96,0x37, + 0xac,0x75,0x10,0x1d,0xae,0x77,0x7d,0x45,0xf4,0x7f,0x9,0x9d,0x5b,0xda,0x6b,0xf8, + 0x77,0x81,0xf5,0x37,0x2c,0x9d,0x3d,0xd4,0x60,0xe6,0xaf,0xb1,0xfe,0x58,0xf,0x96, + 0x5c,0xff,0x10,0xef,0x20,0xa7,0xcf,0x39,0x80,0x8d,0xf9,0x13,0xf9,0x25,0xbd,0x26, + 0xa3,0xff,0xe4,0xe4,0xf,0x7b,0x9,0x6b,0x25,0x1a,0x97,0xaa,0x21,0x27,0x7f,0x89, + 0x16,0x1e,0x3a,0xbf,0xd7,0x8c,0xd8,0xdc,0x31,0xff,0x98,0xff,0x3f,0xe4,0xf,0x2d, + 0x33,0x3f,0x50,0x3d,0x70,0xad,0x7e,0x98,0x8a,0xe9,0x73,0x2b,0xfb,0xf3,0xc0,0x71, + 0x46,0x63,0x72,0x9f,0x7c,0x1,0x5a,0x44,0xd,0x8a, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/display.ico + 0x0,0x0,0x2,0xf6, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x30,0x10,0xfe,0x4,0x1b,0x1, + 0x82,0xe,0xf5,0x90,0x21,0x5b,0xbc,0x18,0xe8,0x98,0x37,0x68,0xa6,0x3e,0x47,0xa7, + 0x22,0xcf,0x90,0x49,0x63,0xa6,0xa0,0x8f,0x51,0x74,0xe8,0x5c,0x6f,0x7e,0x88,0x3e, + 0x47,0x91,0x31,0x43,0x51,0xf5,0x68,0x99,0xd2,0x91,0x3a,0x52,0x47,0x8a,0x72,0x12, + 0x37,0x27,0x7c,0x50,0x44,0xeb,0xee,0xf8,0xa7,0xef,0x3e,0x22,0x40,0x85,0x25,0x56, + 0x2b,0xd0,0x7d,0x8d,0xdb,0x25,0xf0,0x9,0xc0,0xc5,0x45,0xfb,0xfc,0xf3,0xc,0xf8, + 0x41,0x6d,0x97,0x97,0xed,0xf3,0xfd,0x39,0xf0,0xe5,0x1d,0xb0,0x5e,0xb7,0xcf,0xdf, + 0xc8,0xef,0x37,0xbd,0xfb,0x81,0x7c,0xe8,0x4f,0x6a,0x69,0xdb,0x8d,0xdd,0x2c,0x11, + 0xb3,0x26,0x11,0x9d,0xd5,0x75,0xdd,0xa4,0x82,0xc7,0x30,0xcf,0x63,0xb6,0xdb,0xed, + 0x3a,0xf8,0x31,0xac,0xbf,0xb9,0x6f,0xef,0x30,0x80,0xf5,0xb7,0x7d,0x8f,0xf9,0x9b, + 0xb6,0xe6,0xfb,0xa6,0x3,0xf7,0x37,0xa6,0xf2,0xff,0xf5,0x20,0xfa,0x6b,0xfa,0xef, + 0xcf,0xb3,0xf5,0xe7,0x6d,0x31,0x7f,0x9,0xd6,0xac,0x8f,0xe7,0xdf,0xb5,0x69,0x8d, + 0xfb,0xef,0xef,0xa6,0x7f,0x87,0x36,0x3e,0xce,0x10,0xfc,0xbe,0x58,0x7f,0xde,0x37, + 0xe5,0x1e,0x42,0xeb,0x4f,0xd7,0x16,0xe1,0xfb,0x56,0xde,0xb7,0x9d,0xbf,0xfb,0x7b, + 0xd3,0x5d,0xf6,0x59,0xe1,0x6f,0xc7,0xd6,0xbd,0x7f,0x68,0xd3,0xfa,0x8f,0x42,0xf0, + 0x4d,0xf9,0xf6,0x42,0xfe,0xbb,0x5,0xad,0x45,0x45,0x80,0xc,0x58,0xd0,0x3b,0x78, + 0xcf,0x70,0xd5,0xc2,0xf0,0xc,0xd1,0xcd,0x9e,0x6f,0x2c,0xcf,0x7c,0x3d,0x93,0x32, + 0xbd,0x4a,0x4b,0xe5,0x44,0x71,0x8e,0x8d,0xe5,0x70,0x64,0x6c,0xdd,0xb4,0xdf,0x6b, + 0x8c,0xb7,0xa4,0x78,0x21,0xe,0x55,0xf0,0x98,0xc8,0x27,0x3d,0xa7,0xba,0x18,0xe3, + 0x55,0x87,0x17,0xe,0x71,0x6,0xf1,0xf6,0x3c,0x3b,0x8c,0x27,0xf5,0x4f,0x15,0x4f, + 0xe8,0x9f,0x3f,0x26,0x37,0x5e,0xcf,0x33,0x31,0xe,0x7,0xe3,0xf1,0x10,0xf,0xfb, + 0x3c,0x34,0xc6,0xe9,0xd2,0xfa,0x4b,0xf1,0x38,0x7,0xa5,0x70,0x7c,0x28,0x9e,0xf, + 0x2d,0xe7,0x8b,0xbc,0x2f,0xf1,0x5c,0x93,0x56,0x3,0x9c,0x3a,0xc0,0x79,0xd6,0xe7, + 0xf0,0x9,0xbc,0xde,0xbd,0x7b,0xc,0x9e,0x97,0x79,0x5f,0x8c,0x37,0x81,0x4f,0x82, + 0x3c,0xf5,0x52,0xcd,0xee,0xc9,0x27,0x7c,0x6c,0x1e,0xa9,0xf0,0x3c,0x52,0x11,0x32, + 0x40,0x14,0x57,0x7d,0xfd,0x3a,0xc0,0x9a,0xa9,0x57,0x24,0xa1,0x71,0x8d,0xbe,0x6e, + 0x7d,0x3e,0x7f,0xc6,0x1,0x9e,0x96,0xe5,0xd4,0xcd,0x59,0xeb,0x68,0x6a,0x5d,0xd5, + 0x72,0x9a,0x4,0x4d,0x9d,0xd5,0x1a,0xe7,0x4e,0x13,0x4f,0x1b,0x3f,0x56,0xc7,0x43, + 0xf5,0x3c,0xa5,0xff,0x7d,0xdd,0xdc,0x88,0xf0,0xe3,0x47,0xfa,0x3f,0xa2,0x1b,0x36, + 0xce,0x79,0x2a,0x76,0xae,0xca,0xab,0xfb,0xe3,0xfd,0xe7,0xfd,0x4b,0x8d,0x1f,0x82, + 0xaf,0x7f,0xec,0xfb,0x72,0x7c,0xb7,0x36,0xf2,0xda,0x3c,0xa6,0xf,0x6c,0x7c,0xbe, + 0x9f,0x34,0xba,0xa3,0xd4,0xfe,0x2f,0xa1,0x43,0x7c,0x2b,0xad,0x4b,0x8e,0xa5,0x53, + 0x26,0xe9,0x96,0x99,0x75,0xcc,0xd1,0x75,0xcd,0xcc,0x3a,0xe7,0x54,0x74,0xcf,0x73, + 0x1b,0xff,0xee,0x9e,0xb0,0x20,0xcd,0x55,0x11,0xe0,0x0,0x51,0x54,0x3,0x5d,0xc6, + 0xcd,0xe8,0xb0,0x35,0xe1,0x6,0xbd,0xe,0xab,0x57,0xc7,0x1f,0xe7,0x9b,0xbd,0x6a, + 0x2b,0xa1,0x37,0x93,0x74,0xa8,0xb5,0x52,0xfc,0x94,0xaa,0x53,0x79,0xfe,0xa9,0xf5, + 0x3a,0x47,0xc7,0xfa,0xf9,0xa7,0x9a,0x53,0x7f,0x14,0x3a,0xd7,0xcf,0xaf,0xd1,0xbb, + 0x1a,0x1d,0x6c,0x2c,0x37,0x3f,0x22,0x7a,0x52,0xab,0x93,0x73,0xe7,0xbf,0x54,0xfe, + 0x29,0xf3,0x5f,0x22,0x7f,0x64,0xfe,0xf5,0xe7,0x85,0x19,0xe6,0xbf,0xf6,0x74,0xbe, + 0xbd,0x8b,0xf9,0x85,0xf3,0xca,0x69,0xe4,0xc7,0xe0,0xff,0x2a,0x25,0xe7,0x9f,0xaf, + 0xeb,0xd8,0x39,0xc5,0x5e,0x7e,0xfe,0x54,0x24,0x9d,0xc3,0x4,0x1d,0xcd,0xf3,0xe7, + 0x82,0xe7,0xe7,0x7c,0x28,0x8e,0x5f,0x38,0xe7,0x84,0xd6,0xaf,0x24,0xff,0x7,0x75, + 0x3e,0x5b,0x83,0xd2,0xa6,0x59,0x7f,0xce,0x3,0xa5,0xc7,0xcf,0xf7,0x43,0x68,0xfd, + 0x39,0x6f,0xce,0xa8,0x1,0x10,0x9b,0xff,0xa4,0xbb,0xf2,0xdc,0x25,0xf1,0xfc,0x8b, + 0xc8,0x9f,0x7a,0x4e,0xce,0x3c,0x37,0x87,0xf2,0xa7,0x9e,0xa3,0x73,0xcf,0xd5,0xea, + 0xf9,0x9f,0xe9,0xdc,0x2d,0xe5,0x9f,0x69,0x6f,0xab,0xf2,0xbf,0xd9,0xff,0x6d,0x7e, + 0x6d,0xf8,0xb,0x2c,0xfe,0x0,0x15,0x1,0x12,0x94,0x56,0x21,0xa0,0xb,0x7c,0xfb, + 0x7,0x2e,0x9a,0x56,0xd5, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty.ico + 0x0,0x0,0x3,0x82, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xcd,0x59,0x3b,0x8e,0x13,0x41,0x10,0x2d,0x24,0x6b,0xa5, + 0x15,0x89,0x83,0xd,0x36,0x74,0x48,0xc8,0x11,0x36,0xe2,0x6,0x13,0x43,0x84,0x38, + 0x85,0xed,0x90,0x90,0x23,0x6c,0x40,0x80,0x6c,0x9,0x32,0x8b,0x8c,0x1b,0x38,0xdb, + 0x2b,0x38,0xe4,0xa,0x43,0xcf,0xe,0x8d,0x67,0x1e,0xfd,0xea,0xd3,0x3d,0x48,0x8c, + 0xb4,0x7a,0xdb,0xb3,0xd3,0xf5,0xeb,0xea,0x57,0xd5,0xbd,0x22,0x2f,0x64,0x25,0xeb, + 0xb5,0x24,0xdc,0xc8,0x87,0x95,0xc8,0x1b,0x11,0xb9,0xbb,0x1b,0xc7,0xdf,0x6f,0x44, + 0xbe,0xa6,0x77,0xf7,0xf7,0xe3,0xf8,0xe3,0xad,0xc8,0xfb,0x97,0x22,0x9b,0xcd,0x38, + 0xfe,0x92,0xe6,0xfd,0x4c,0xdf,0xbe,0x4a,0x73,0xd2,0xaf,0xe9,0xcd,0xf8,0x7e,0x78, + 0x1e,0x56,0xa2,0x3d,0x7d,0x25,0xca,0x7e,0xbf,0x9f,0xbd,0xcb,0x63,0xb,0x87,0xef, + 0xf3,0xef,0xe7,0xf3,0x79,0x86,0x9f,0x1f,0x1f,0x67,0x98,0xdf,0xf7,0xe9,0x1,0x19, + 0x7f,0xbd,0x3b,0x9d,0x4e,0xcf,0x78,0xb9,0x5c,0x66,0x63,0x94,0x35,0xf5,0x21,0xcb, + 0x40,0x3b,0xf2,0x5c,0xd4,0x5f,0x9a,0x8b,0xbe,0x64,0xfd,0x4c,0xd6,0xd4,0xff,0xfc, + 0x37,0xfc,0x6,0xdf,0x47,0xfc,0x67,0x32,0x73,0x1c,0x4a,0xfa,0xad,0x35,0xc3,0xef, + 0x4a,0xb1,0xc3,0xb8,0xa3,0x2f,0x25,0xfd,0x18,0x5f,0x86,0x79,0x6e,0x49,0x7f,0x29, + 0xbe,0x53,0x44,0x3b,0xa7,0xfa,0x59,0xee,0xec,0x76,0xbb,0x99,0x8c,0x3c,0x77,0xaa, + 0x9f,0xe5,0x70,0x9e,0x9b,0xb1,0xb4,0x76,0xa8,0x1f,0x65,0xe0,0xde,0xd2,0xf4,0x23, + 0xee,0x0,0xb,0xfb,0x4f,0x9e,0xba,0xbe,0x3f,0x1c,0xfa,0xbe,0xfb,0x8d,0x38,0x2e, + 0xe2,0xf1,0x8a,0x3,0xcf,0x24,0xba,0x79,0xe6,0x9b,0xcc,0x33,0x9f,0x6e,0x44,0x7b, + 0x6a,0x79,0x66,0x31,0xde,0x89,0xf0,0x90,0xc5,0x47,0x11,0x5e,0xc2,0x7d,0x60,0xf1, + 0x53,0x84,0xa7,0x18,0xe7,0x64,0x99,0x11,0xde,0x62,0xfb,0x58,0xe3,0x51,0xe6,0xa3, + 0x57,0x66,0x84,0xd7,0x98,0xe,0xa6,0x73,0x6a,0x1f,0xe3,0x46,0xf4,0x8d,0xf1,0x7e, + 0x84,0x77,0x71,0xd,0x58,0x4e,0x95,0xec,0x63,0xdf,0x5a,0x75,0x49,0xe3,0xe5,0xe8, + 0xbe,0xd0,0x78,0x9a,0xd5,0x36,0xcc,0x6d,0xb4,0xbf,0x64,0x9f,0x17,0x51,0x66,0x84, + 0xc7,0x85,0xf0,0x8,0xca,0xd4,0xe2,0x87,0x32,0xb7,0xdb,0xed,0xc,0xd9,0xde,0x2c, + 0xd9,0x87,0x32,0x73,0x8d,0x60,0x7c,0x1f,0xa9,0x3b,0x56,0xfd,0xf1,0xd4,0x10,0x26, + 0xab,0xc6,0xbe,0xda,0xfa,0x34,0xaf,0x53,0x6f,0x53,0xfd,0xf9,0x96,0xea,0xce,0x88, + 0x38,0xf6,0xe1,0x8f,0x3f,0x38,0xd4,0xab,0xd4,0x42,0xcb,0x6b,0xb9,0xd6,0xad,0x77, + 0xb7,0xa2,0x3d,0x6a,0x1e,0x35,0x60,0x75,0xdd,0x62,0x6b,0xa6,0xd5,0x35,0xb6,0xbe, + 0x58,0xdf,0x18,0x67,0x79,0xf6,0x9,0xe3,0x28,0xab,0xde,0x69,0xfd,0x19,0xea,0x65, + 0xb2,0xad,0x9e,0xdb,0xb3,0x8f,0xac,0xda,0x15,0xe1,0x60,0x6f,0xfc,0x59,0x5d,0x8c, + 0xc4,0xdf,0x9a,0xcb,0xfa,0xf2,0x25,0xe2,0xef,0xb5,0xdb,0xd3,0xbf,0x5b,0xb5,0xd9, + 0xea,0xc1,0x3c,0xe7,0x1b,0xcb,0xde,0x25,0xf2,0xdf,0x92,0xc5,0xf2,0xc7,0xd3,0x17, + 0x2c,0xc8,0x11,0xcd,0xf6,0xb3,0x75,0xd2,0xec,0xb7,0xf8,0xc7,0xca,0x5,0x2d,0x7f, + 0xa2,0x7d,0x5,0xcb,0x5,0x29,0xe4,0x3f,0xe3,0x0,0x21,0xfc,0x8e,0x3a,0xb4,0xfc, + 0x67,0x3c,0x84,0xfd,0x6,0x3b,0x93,0x7a,0xfa,0x72,0x26,0x1b,0xeb,0x3b,0xf6,0xc, + 0x28,0x3b,0x62,0xbf,0xd5,0x43,0xb4,0x9c,0x7b,0x58,0xff,0xc4,0x7a,0x1e,0x4d,0xb6, + 0x15,0x2b,0x6f,0xf,0xe4,0x89,0xbf,0xd5,0x5f,0x59,0xf6,0x47,0xfa,0x2c,0xec,0xb7, + 0xd8,0xb8,0xdc,0x77,0x75,0xa9,0x5f,0x3a,0xa4,0xbe,0x69,0x8a,0x47,0x18,0xfb,0xf1, + 0x9,0xe4,0xc,0x7d,0xd8,0x26,0xfd,0x3c,0xc8,0xb5,0xf,0xdb,0xaf,0x45,0x7b,0xd4, + 0xfd,0xf6,0xf,0xb1,0x14,0x1f,0x57,0xdc,0x5b,0x51,0x2,0x79,0x64,0xf5,0x73,0x56, + 0x5d,0xd3,0xce,0x8,0xec,0x6f,0xde,0x1e,0xc0,0x7b,0xdf,0x51,0xb3,0x8f,0xac,0xfa, + 0xe2,0xbd,0x93,0x6c,0xf1,0xdf,0x42,0xeb,0xcc,0xbc,0xc4,0xfd,0x8f,0xd7,0x7f,0xb6, + 0x56,0xa5,0x1e,0x70,0x29,0xff,0x2d,0xdd,0x91,0x3a,0xc6,0xee,0x19,0xa2,0xb1,0xaf, + 0xc9,0x7f,0xec,0x41,0xbc,0x36,0x78,0x73,0x35,0x92,0xff,0xec,0xdc,0x13,0x8d,0x39, + 0xeb,0x41,0x23,0xfe,0xb3,0x18,0xb3,0xde,0xae,0xc6,0x7f,0x8b,0x5b,0x32,0x5a,0x77, + 0x6e,0x2d,0xeb,0xcf,0xf2,0xdf,0x3a,0x5f,0x59,0xfd,0x34,0xfb,0xce,0xe3,0x7f,0x34, + 0xb7,0xac,0x33,0x54,0xb,0xff,0x79,0xfd,0xf3,0xc6,0xe9,0x7f,0xf5,0x1f,0xbf,0x59, + 0xa,0x5b,0xfc,0xb7,0xf2,0x3f,0x1a,0x27,0x8f,0xff,0x2c,0xff,0xad,0x3d,0x58,0x93, + 0xff,0x51,0x7e,0x67,0xdc,0x63,0xf1,0xa6,0x87,0xff,0xa2,0xe7,0x4c,0x76,0x9f,0x6d, + 0xd5,0x8f,0x92,0xff,0x56,0xed,0xb1,0xce,0xa5,0x19,0x99,0xd,0x9a,0xff,0x2c,0xe6, + 0xa8,0x1b,0xcf,0xab,0x19,0xf1,0xbe,0xdc,0xe2,0x6e,0xcd,0x7f,0xa6,0x9b,0x9d,0x6b, + 0xd9,0xd9,0x8d,0xc5,0x41,0xf3,0xdf,0xba,0x3,0x63,0xba,0xd9,0xd9,0xce,0xf3,0xff, + 0xd,0xb4,0x8b,0xd5,0xf7,0xa8,0xff,0x2d,0xfb,0x3f,0xaa,0xdb,0xba,0x5b,0x28,0xf9, + 0x8f,0x36,0x2c,0xb5,0xfe,0x35,0xba,0xbd,0x7d,0x4b,0x74,0xfd,0x6b,0xf6,0x7f,0xad, + 0xd,0x52,0xb1,0xfe,0xd1,0x3a,0xc6,0xee,0x17,0xac,0x7b,0x87,0x82,0xad,0xc3,0x3d, + 0x44,0x77,0x48,0x4f,0x7,0xc8,0xde,0xb7,0x22,0xc8,0x3d,0xfe,0x2,0x61,0x70,0xb3, + 0xb, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip.ico + 0x0,0x0,0x3,0x34, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x5a,0x3b,0x6e,0x1b,0x31,0x10,0x7d,0x82,0x4,0xb, + 0x86,0xb,0xa9,0x70,0xe1,0x4e,0x6a,0x2,0xa4,0xcc,0xd,0xec,0x2a,0xe7,0x48,0x15, + 0xe4,0x16,0xde,0x74,0xa9,0x82,0x1c,0x23,0x48,0xe1,0x3a,0xe5,0x1e,0xc2,0x7,0xd0, + 0x9,0xc,0x95,0x2a,0xc,0x33,0xa4,0x56,0x2b,0x73,0xb9,0x33,0x9c,0xe1,0x67,0x9d, + 0x84,0xc0,0xc0,0xda,0x35,0xe7,0xbd,0x81,0x96,0x7c,0xf3,0xb8,0x10,0x30,0xc3,0x2, + 0xeb,0x35,0xec,0xdf,0x2d,0xbe,0x2c,0x80,0x8f,0x0,0xae,0xaf,0xbb,0xeb,0xdf,0x17, + 0xc0,0x83,0xbd,0x77,0x73,0xd3,0x5d,0x7f,0xbb,0x4,0x3e,0x5f,0x1,0xdb,0x6d,0x77, + 0xfd,0xd3,0xe6,0x3d,0xd9,0xb9,0xef,0x6d,0x8e,0xfd,0x68,0xef,0x74,0xf7,0xdd,0xb8, + 0x5b,0x40,0x3b,0xc,0x13,0xaa,0x3c,0xf3,0xee,0x17,0x19,0x31,0x9c,0xc1,0xdc,0xef, + 0x8f,0x74,0xc,0x71,0x86,0xb9,0x8f,0xfb,0x2e,0xdc,0xbc,0xfe,0x73,0x18,0x1e,0x8e, + 0x8f,0x71,0xce,0xef,0x39,0xec,0x68,0xdb,0x76,0x14,0xfe,0x9c,0x3e,0x9f,0xcb,0xd5, + 0x62,0x84,0xf9,0x7e,0x2e,0x85,0x21,0xe5,0x87,0xb9,0x21,0x46,0xe,0xbf,0x8f,0xa1, + 0xc9,0x8f,0x61,0x44,0xf3,0xbd,0x67,0xcc,0x46,0xf0,0xc,0x47,0xf9,0xda,0xe0,0xf2, + 0xb9,0xb5,0xc3,0xac,0xa1,0xd1,0xf7,0x7f,0xfa,0x3f,0xb7,0x87,0xc4,0xe7,0x77,0xca, + 0x6f,0x9a,0x66,0x14,0x54,0xfe,0x68,0xef,0x9c,0x82,0xca,0x77,0x11,0xec,0x47,0x1c, + 0x36,0xc6,0xec,0x96,0xf6,0xd9,0xcc,0x8d,0x69,0x66,0x5d,0x38,0x1a,0x4d,0xb8,0xb9, + 0x4e,0x67,0xac,0xdc,0x1c,0xf5,0xa6,0xd7,0x99,0x1f,0x17,0xa,0xa5,0x20,0x74,0x83, + 0x88,0x2c,0x9c,0x1c,0xfd,0x19,0x80,0x70,0x6b,0x2e,0xae,0x47,0xbc,0xae,0x85,0x6b, + 0x47,0xb1,0x36,0x29,0x9d,0x1b,0xe0,0xf9,0xf3,0xa5,0xb5,0x4a,0x68,0x1e,0x8b,0xe5, + 0xed,0x61,0x56,0x7b,0x34,0x3a,0x4a,0xe8,0x89,0x88,0xc9,0xe9,0xaa,0x52,0x1b,0x63, + 0x98,0xa4,0xce,0x8,0x5a,0x99,0x8a,0x27,0x69,0x67,0xe,0x9e,0x6,0x33,0x15,0x4f, + 0xad,0xf1,0x9,0x78,0x2a,0xcd,0x97,0x74,0x5b,0xd2,0x7e,0x6a,0x3f,0x96,0xf6,0x1, + 0x6d,0x5f,0xd0,0xf4,0x86,0xc8,0xbe,0x23,0xd7,0x9f,0xd0,0x2b,0xce,0x7a,0xa6,0x5d, + 0xcf,0x91,0xde,0x41,0xf6,0x90,0xd8,0x9e,0x2b,0xc3,0xe3,0xb5,0x34,0xd2,0x9b,0xb8, + 0x1e,0xe5,0xc6,0x8b,0xed,0x51,0x7,0xdb,0x6f,0x76,0xb8,0x37,0x2d,0x6e,0x8f,0xd1, + 0x60,0x73,0xc,0x60,0xa5,0xe,0x37,0xdf,0xe5,0xba,0x7e,0x65,0x2d,0x34,0x3e,0xe0, + 0xb5,0x6f,0x7d,0xba,0x8c,0x75,0x85,0xe8,0xa8,0xd5,0xbf,0x48,0x4c,0x45,0x3f,0x4b, + 0xe2,0x4a,0xed,0x6f,0x5c,0x2f,0x62,0xb1,0xb,0xfc,0xd8,0x24,0xd8,0xa,0x8e,0x28, + 0xb6,0x66,0x9f,0xa7,0xf6,0xd9,0x9c,0x7e,0xab,0xed,0xbb,0x44,0x8f,0x4b,0xe2,0xd0, + 0xe0,0x13,0xfd,0x33,0xc7,0x37,0xc4,0x3c,0x48,0x3f,0x4a,0x38,0x34,0xb5,0x27,0x7b, + 0xa,0x5,0x7e,0xd8,0x7,0x93,0x3c,0x86,0x12,0x3f,0x85,0x23,0x17,0x5f,0xcb,0x51, + 0x82,0xaf,0xe1,0x28,0xc5,0x97,0x38,0x92,0xf0,0x3,0x6d,0x4c,0xf6,0x2c,0x1a,0xfc, + 0xd2,0xf8,0xdb,0xf8,0x5a,0xaf,0xc4,0x69,0xa9,0xb4,0x7f,0xbd,0x6b,0x8,0xfe,0x9, + 0xa1,0x47,0x49,0xc4,0x97,0xfc,0x4a,0xc,0x9f,0xd4,0xb8,0x7a,0xf8,0xc3,0x1e,0xc3, + 0x84,0x84,0x1f,0x7a,0x2e,0x1f,0xdb,0x7c,0x35,0xe6,0xd9,0xfa,0xa5,0x83,0xf5,0x4d, + 0x7b,0xeb,0x9f,0x76,0x58,0x5a,0xff,0x34,0xb7,0x3e,0x6a,0x76,0xe,0xcd,0xf7,0x1f, + 0x86,0xcb,0x73,0x38,0xce,0x87,0x6d,0x6d,0xdc,0xe1,0xd5,0x87,0x35,0x6b,0xaa,0x43, + 0x27,0xf,0xa9,0x86,0x29,0x86,0xe8,0xd9,0x4a,0xbd,0x5b,0x8c,0x57,0xe5,0xe9,0x8, + 0xfd,0x2a,0xa9,0x23,0x89,0x53,0xa8,0x25,0xb5,0x86,0xea,0xda,0xf6,0x16,0x3e,0xb7, + 0x42,0xd,0x2a,0xee,0x54,0xbd,0x55,0xd6,0x20,0x72,0x9f,0xf0,0x63,0x5e,0xed,0xdc, + 0x6f,0x63,0x38,0x4c,0xd,0xb9,0x5e,0xba,0xd4,0x63,0x6b,0xb9,0x25,0x9f,0x3a,0xa5, + 0xcf,0xd7,0x7a,0xe5,0xaa,0xe7,0x80,0x80,0x3f,0xb7,0x6,0x89,0x3f,0xc6,0xed,0x7b, + 0xba,0xa9,0x6a,0xd0,0x9c,0xb1,0x4a,0x6b,0xc8,0xe5,0xa7,0xbc,0x6d,0x4e,0xd,0x25, + 0xfc,0x35,0x6a,0x28,0xe5,0x2f,0xad,0xa1,0x6,0x7f,0x49,0xd,0xb5,0xf8,0x73,0x6b, + 0xa8,0xc9,0x9f,0x53,0x43,0x6d,0xfe,0xd4,0x1a,0xa6,0xe0,0x4f,0xa9,0x61,0x2a,0x7e, + 0x6d,0xd,0x59,0xfc,0xbd,0x6,0xd6,0x88,0x48,0xf,0x9c,0xcc,0x6f,0x49,0xf1,0x3f, + 0xf0,0xa7,0x9e,0xb5,0x33,0xde,0x67,0x46,0xfb,0x5f,0x70,0xf,0x19,0xe7,0x41,0x50, + 0x67,0xdc,0x4c,0x7e,0xcd,0x79,0x57,0x75,0xc6,0xfe,0x87,0xf8,0x59,0xf,0xf4,0x36, + 0xfc,0x43,0xf,0x2c,0x44,0xe,0x3f,0xf5,0xe,0x62,0xf0,0x1e,0x62,0xbf,0x3a,0xfe, + 0xe0,0xe0,0x5,0xb8,0x7f,0x6,0x6e,0xf,0xc0,0x66,0xf,0xac,0x76,0xc0,0xb2,0x5, + 0xe6,0x2e,0x1a,0x60,0xd6,0x7,0x75,0x76,0xc9,0x19,0xe,0xcb,0x61,0xff,0x1,0xbc, + 0x55,0x8f,0xd6, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35.ico + 0x0,0x0,0x2,0x1a, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3d,0x4e,0xc3,0x30,0x18,0x7d,0x51,0xab,0x4a, + 0x15,0x3,0x19,0x3a,0x74,0x6b,0x46,0x46,0x6e,0x40,0x27,0xce,0xc1,0x84,0x90,0xb8, + 0x1,0x93,0x47,0x46,0x8e,0xc1,0x84,0xc4,0x6,0x5b,0x27,0xe,0xc2,0x1,0xb8,0x82, + 0xf9,0xec,0xd4,0x10,0x45,0x76,0xf2,0xf9,0x2f,0xa1,0xc2,0x96,0x3e,0xc5,0x8e,0xfc, + 0xfd,0x38,0x89,0xdf,0x7b,0xe,0x50,0x61,0x89,0xba,0x6,0x5d,0x1b,0xdc,0x2d,0x81, + 0x6b,0x0,0x9b,0x4d,0x3b,0x7e,0x5b,0x1,0x2f,0x74,0x6f,0xbb,0x6d,0xc7,0x8f,0x6b, + 0xe0,0xf6,0xc,0x68,0x9a,0x76,0xfc,0x4c,0x7e,0x5f,0x34,0xf7,0x82,0x7c,0xa8,0x4b, + 0x77,0xda,0xfb,0xaa,0xed,0x97,0x70,0x35,0x19,0x68,0x78,0x7f,0x80,0x34,0x26,0x84, + 0x60,0x99,0x99,0xaf,0x62,0xa8,0xab,0xfc,0x7c,0x95,0xf2,0xe3,0x5e,0xb2,0x1b,0xcd, + 0xed,0xfb,0xab,0xfe,0xe1,0x70,0x60,0x99,0xcd,0x3f,0x36,0xbf,0xba,0x77,0xf2,0xf9, + 0x39,0x35,0x1c,0xe7,0x39,0xfd,0x99,0xe6,0xf4,0x57,0x7d,0x97,0x8d,0xf8,0xeb,0x3e, + 0x5d,0x5d,0xdf,0x6b,0x37,0xc6,0x90,0xbf,0xed,0x9b,0xd,0xf1,0xd7,0x3e,0xc7,0x71, + 0x2e,0xff,0xfe,0x1e,0x1c,0xda,0x87,0xfd,0x79,0xca,0x57,0x54,0x52,0xaa,0xd0,0x21, + 0xa6,0x7c,0x15,0xce,0x10,0xdc,0x68,0xbc,0x31,0x38,0xf3,0xb4,0x4a,0x8e,0x33,0x49, + 0x70,0x87,0x8b,0x43,0xdc,0x7d,0xc4,0xd9,0x57,0xfa,0xbd,0x85,0xb6,0xc8,0x7d,0x9e, + 0x1c,0x77,0x4a,0x7d,0xa7,0x59,0x5f,0x48,0x8d,0x89,0x70,0x3e,0x9,0xee,0x7,0xf2, + 0xc0,0x10,0x17,0x84,0xf0,0x82,0x8b,0x1b,0x42,0x79,0xc2,0x16,0xcf,0x60,0x7e,0x8, + 0x6f,0x4c,0x15,0xcf,0xd8,0x40,0x3c,0xd8,0x78,0x89,0x8b,0xd5,0x7d,0x8e,0xd2,0x3c, + 0x85,0x1d,0xf5,0xcf,0x13,0xd8,0x4e,0xa,0x5c,0x69,0xde,0x22,0x9,0x8d,0xcb,0xe, + 0x6f,0xdd,0xac,0xb3,0xf3,0xd6,0x20,0x8f,0xc5,0x70,0x99,0xe3,0xd9,0xc5,0xe3,0x0, + 0x13,0x17,0xcc,0x77,0x16,0x8a,0x5d,0x5d,0xc,0x4b,0x8a,0x63,0x9e,0xb8,0x56,0xea, + 0x2f,0xf5,0xff,0xe9,0xfa,0x23,0xf5,0x46,0x2e,0x5e,0x67,0xf3,0xfc,0x14,0xf1,0x7d, + 0xb4,0x84,0x45,0x53,0xc,0xc5,0xf7,0xd5,0x16,0x36,0x8d,0xc1,0x8d,0xcf,0xc5,0xfc, + 0x94,0xf1,0xfb,0x7a,0xa1,0xc4,0x9f,0x3e,0x7e,0x57,0x5f,0x8d,0xc4,0x77,0xea,0x2c, + 0x5f,0x2d,0x61,0xfb,0x37,0xd0,0xea,0xae,0x2a,0x93,0xf6,0xa9,0x48,0x87,0x2d,0xb4, + 0xe,0x6b,0xc8,0xf6,0xf8,0xd5,0x61,0xa2,0xb6,0x28,0xb0,0xb6,0xe5,0xd2,0x61,0xde, + 0x3a,0x2d,0x85,0x56,0xf3,0x78,0x17,0x56,0x9c,0x8b,0xe5,0x9a,0x31,0xe,0xb2,0x7d, + 0xc7,0xa6,0xa6,0x24,0x5c,0x1a,0xc0,0x53,0x3f,0x78,0x3a,0xd3,0xfa,0x93,0xf0,0x70, + 0xc4,0xfa,0xe7,0x7e,0xff,0x65,0xfd,0x65,0xfd,0x65,0xfd,0x65,0xfd,0x65,0xfd,0x99, + 0x9e,0x41,0x2f,0x7e,0xee,0x73,0xd4,0x98,0x95,0xfc,0x23,0xf9,0x43,0xce,0x9a,0x8c, + 0xf3,0x27,0x27,0x7f,0xf7,0x2c,0xa1,0x2c,0x46,0xe3,0xba,0x6a,0xf0,0xc9,0x1f,0xaa, + 0x77,0xa7,0xc8,0x6f,0x34,0xa3,0x6d,0x6e,0xc9,0x5f,0xf2,0xff,0x87,0xfc,0x5d,0xf3, + 0xcc,0xf,0xd7,0x19,0x38,0xd5,0x79,0xd8,0x15,0xd3,0xe4,0x16,0xea,0xf7,0xc0,0x3c, + 0xad,0xa2,0xdc,0x8b,0x6f,0x5f,0x37,0xc0,0xcd, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_active.ico + 0x0,0x0,0x2,0x92, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0xc4,0x30,0x10,0x7d,0x81,0xd5,0xc2, + 0x8a,0x82,0x14,0x5b,0x50,0x50,0xa4,0xa4,0xe4,0x4,0x68,0x69,0x10,0xc7,0xa0,0x42, + 0x94,0x1c,0xc1,0x25,0x15,0xe2,0x18,0x54,0xd4,0x94,0x1c,0x82,0x3,0x70,0x2,0xc4, + 0xd,0x82,0x9d,0x65,0x88,0xd7,0xb1,0x9d,0xf1,0x27,0x64,0x17,0xc5,0xe8,0x89,0xb5, + 0x93,0x79,0xe3,0xd8,0xce,0x9b,0x99,0x0,0x5,0x66,0x28,0x4b,0xc8,0xff,0x15,0xee, + 0x66,0xc0,0x15,0x80,0xe5,0x72,0xdd,0x7f,0x9d,0x3,0x2f,0x72,0xec,0xe4,0x64,0xdd, + 0x7f,0x58,0x0,0xb7,0x47,0x40,0x55,0xad,0xfb,0xcf,0xd2,0xee,0x53,0xde,0x7b,0x26, + 0x6d,0xe4,0x4f,0x39,0xb2,0x1e,0x57,0x6d,0x35,0x83,0xad,0xd5,0x29,0xb8,0xbe,0xae, + 0x59,0x68,0xee,0x17,0x1a,0x34,0xfb,0xf7,0xf7,0xba,0x7e,0x7c,0x74,0x43,0xdd,0xaf, + 0x1a,0xf4,0xbf,0x96,0x3,0x7d,0x1c,0x3e,0xfb,0x54,0xff,0x3e,0xfb,0x8d,0xe7,0xff, + 0xe1,0xa0,0xd6,0x67,0x4f,0xcf,0x46,0x8d,0x38,0x8,0xb4,0xa6,0x21,0xf6,0xe6,0xdc, + 0x86,0xb4,0xd7,0x38,0x1a,0xd8,0xd6,0x86,0xbb,0xfe,0xae,0xb5,0xe5,0xd8,0xfb,0xf6, + 0x86,0xb3,0x7f,0x42,0x8,0xeb,0xf5,0xa1,0xed,0xe9,0xdc,0x90,0xbd,0x6f,0xfd,0x1d, + 0xef,0x1b,0x7c,0xfd,0x76,0xbc,0x85,0xd0,0x7e,0x17,0x6f,0x2d,0xf4,0x7b,0x74,0xec, + 0x55,0x75,0xad,0x74,0x46,0xca,0x4d,0xa3,0x37,0xa4,0x33,0x4f,0xf3,0xfc,0x3a,0x13, + 0xab,0x3b,0x4e,0xfd,0x89,0xd0,0x21,0xaf,0x1e,0x44,0xe8,0x4a,0x8,0x1f,0x47,0xe7, + 0xc6,0x9c,0xdf,0x18,0x7c,0x3e,0x7d,0xe5,0xea,0x2c,0x57,0x6f,0xb9,0xba,0xcb,0xd5, + 0xcf,0x50,0x1d,0xcb,0xcd,0xa7,0x71,0x5a,0xf5,0x39,0x86,0x8f,0x83,0x50,0x3e,0xce, + 0x19,0x8,0x39,0x2f,0x2e,0x3d,0x9e,0xf8,0xfc,0x71,0xcc,0xe4,0xe3,0x9c,0x3f,0x6e, + 0x6c,0xf2,0xc5,0xa7,0xf6,0xfa,0xf1,0x6,0x84,0xd1,0xc7,0xbd,0x6,0xf3,0x9a,0x81, + 0xe2,0xf0,0xb8,0x89,0x5b,0x32,0x85,0xc6,0xb9,0x16,0xb7,0x6e,0x16,0xc3,0xc7,0xad, + 0xd4,0x38,0xc6,0x8d,0x69,0x6a,0x9f,0x52,0xde,0xdb,0x5f,0x2e,0x7f,0x4c,0x8a,0xe2, + 0xf7,0xea,0x7f,0x42,0x5c,0x89,0xe1,0xf,0x89,0xab,0xdb,0x38,0xff,0x6d,0xe2,0xb7, + 0xc5,0x63,0x1b,0x77,0x33,0x1e,0x78,0x7e,0x48,0x23,0xcc,0xf8,0xec,0x8a,0xf9,0x11, + 0x71,0xb0,0xd3,0x5c,0x39,0x40,0xa8,0xe,0xfb,0xf8,0x73,0xe8,0xfc,0xd0,0xfc,0xe, + 0x1f,0x9c,0xfd,0xa,0xcb,0xb,0x19,0xf9,0x48,0xa,0x7f,0x8,0x62,0xf8,0xd5,0x7d, + 0x84,0xdc,0xfc,0x14,0x7b,0x9,0x39,0xf3,0xa2,0x89,0x7f,0x5c,0x7e,0x5b,0x7e,0xa5, + 0x8f,0xf7,0xf1,0x33,0xf2,0x4,0x47,0xed,0xef,0xcf,0xb9,0x7e,0x73,0xc,0x3,0xc2, + 0x1c,0x3b,0x95,0xb8,0xd0,0x70,0xda,0xb5,0xb1,0xe2,0x12,0x4d,0x1e,0x56,0x49,0xac, + 0xd0,0xe6,0x61,0xa2,0xb4,0xa9,0x19,0x93,0x73,0xb,0xf3,0x34,0x13,0x94,0x9b,0xc1, + 0x93,0xbf,0xe1,0x27,0x87,0x4b,0xcd,0xe3,0x6c,0xd8,0xf0,0xeb,0x8a,0xfd,0x99,0xf2, + 0xc8,0x8e,0x6f,0x4e,0xee,0x91,0x29,0xcf,0xdc,0x36,0xff,0x41,0xbe,0x33,0xe4,0x79, + 0x39,0xfd,0x93,0x56,0xa4,0xcc,0x61,0x97,0x9f,0xff,0x3f,0xf8,0x1f,0xeb,0xfc,0x73, + 0xeb,0x82,0x21,0xfc,0xf7,0xd5,0xd,0x36,0xbf,0xb1,0x75,0x44,0x67,0xad,0x19,0x75, + 0x85,0xf3,0x9b,0x65,0x44,0x9d,0xc1,0xf1,0xad,0xcf,0x81,0xce,0x83,0xad,0xbe,0x31, + 0xd6,0x6f,0x30,0xff,0xcc,0xfd,0xdb,0x39,0xff,0x7d,0xfb,0x1f,0x78,0x7e,0xe3,0xbf, + 0xe3,0x74,0xe7,0x10,0xf3,0xfe,0x24,0xbd,0xff,0xd0,0xf2,0xa8,0x50,0xdb,0xa1,0xeb, + 0xbc,0xbf,0xf2,0x9f,0xa2,0x9d,0xa9,0xfe,0x95,0x1d,0xa7,0x66,0x19,0xc2,0x7f,0x68, + 0xdd,0x34,0xf9,0x9f,0xfc,0x4f,0xfe,0xf3,0xf8,0x37,0xbf,0x2b,0xe8,0xfd,0x18,0xff, + 0xa1,0xa0,0x58,0x17,0xf3,0xdd,0xc1,0x66,0xe3,0x6a,0xc2,0x36,0x58,0xbc,0x1,0xfb, + 0x1f,0xc0,0xc1,0x57,0xb,0xd5,0x57,0xe3,0xa1,0x6d,0x56,0xe2,0x1b,0xa0,0x4f,0xf7, + 0xef, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/machine.ico + 0x0,0x0,0x3,0xe8, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xbd,0x72,0x13,0x31,0x10,0x5e,0xc7,0x26,0x99, + 0x8c,0xb,0xbb,0x48,0x91,0x2e,0x2e,0xe9,0xc2,0x1b,0x24,0xd,0xc,0x6f,0x40,0x4b, + 0xc5,0xf0,0xc,0x34,0x71,0x49,0xc9,0x23,0x50,0x52,0x51,0xe7,0xaa,0xf8,0x2d,0x28, + 0x69,0x19,0xa,0x1e,0x0,0x66,0x2c,0x56,0xf7,0xa3,0x5b,0xed,0xed,0x4a,0xab,0xbb, + 0x5c,0xa2,0x99,0x6f,0xe2,0x93,0xbd,0x3f,0x5a,0xad,0x76,0x3f,0x5d,0x0,0x16,0xb0, + 0x82,0xed,0x16,0xf0,0xef,0xe,0x3e,0xae,0x0,0xde,0x0,0xc0,0xc5,0x45,0xf3,0x7c, + 0x7f,0xa,0xf0,0x1d,0xe7,0x2e,0x2f,0x9b,0xe7,0xcf,0xe7,0x0,0x1f,0xd6,0x0,0xbb, + 0x5d,0xf3,0xfc,0xd,0xe5,0xfe,0xe0,0x6f,0x5f,0xa2,0xc,0x7e,0xc4,0x99,0x66,0xde, + 0x8f,0xdb,0x15,0x4c,0x19,0x6e,0x92,0x74,0x2f,0x5f,0xaa,0x87,0xcb,0x4d,0x91,0x77, + 0x20,0xeb,0xcb,0x62,0xbf,0xdf,0xd7,0xe0,0xf2,0xf5,0x5c,0x5,0x3a,0x5a,0xd9,0x6e, + 0x10,0x1d,0xbd,0xbc,0x4b,0xdb,0xf6,0xe3,0x70,0x38,0xd4,0x60,0x3a,0x82,0x7d,0xea, + 0x1f,0xff,0xdc,0xc9,0x4a,0x3a,0x82,0xfd,0x4f,0x95,0x8c,0xaa,0x52,0x75,0x4,0x79, + 0xb4,0xff,0xf6,0xde,0xd5,0xf0,0x32,0xf4,0xb3,0xf7,0x5e,0xd3,0x11,0xfc,0x74,0xbd, + 0xcf,0x74,0x2e,0x8a,0x43,0x15,0xaf,0xa5,0xf5,0x3f,0xc4,0x8f,0xe,0x29,0x26,0x74, + 0x2f,0x3a,0x59,0x1a,0xbf,0x4e,0x2e,0xc8,0xb,0xf6,0xa5,0xdc,0x2b,0xb5,0x2f,0xca, + 0x57,0xd0,0xd8,0x4b,0xfd,0x4d,0xc8,0x5b,0x21,0xc9,0xbb,0x9f,0xe8,0xf0,0xf,0xc4, + 0x3b,0xc4,0x6b,0xdc,0xab,0x17,0x88,0x45,0xb,0x20,0xf0,0xcf,0x4b,0xc4,0x26,0x86, + 0xaf,0x33,0x58,0x6e,0xea,0x7a,0xd3,0xd5,0x99,0x2f,0xa7,0xdc,0xca,0xe8,0x31,0xb5, + 0xe6,0x68,0xfa,0x1e,0xbb,0x96,0x3d,0xa6,0x3e,0xa9,0x46,0xf1,0xef,0x26,0xd5,0x2c, + 0x3f,0xb2,0x75,0x4b,0xa8,0x61,0x42,0x2e,0x5,0xbd,0xd9,0x3a,0x56,0xe7,0x71,0x25, + 0xea,0x92,0xfc,0xcc,0xd5,0xb5,0xe6,0x6c,0xb8,0x68,0x9e,0x9e,0x3f,0xee,0x67,0xa9, + 0x7f,0x52,0xcd,0xe5,0xbe,0x58,0xfd,0xa3,0xba,0x24,0x9d,0x91,0x7f,0x6a,0x1d,0x6, + 0xb5,0x8e,0xaa,0x75,0x3d,0x59,0x97,0x21,0x59,0x9b,0xc5,0x3a,0x2f,0xd4,0xe9,0xa8, + 0x5e,0x93,0x9c,0x49,0xe9,0xc,0x32,0x95,0x1c,0x1b,0x2d,0x37,0xb5,0x1e,0x12,0xf2, + 0xd9,0xf5,0xfa,0xba,0x11,0x7e,0xa3,0xec,0xbd,0xd4,0x53,0x24,0x7d,0x34,0x27,0xe8, + 0xde,0x4b,0xfb,0xce,0x7b,0xc,0x3d,0x6f,0xea,0x7a,0xb5,0xdc,0x2c,0xe8,0x3b,0x52, + 0xff,0x11,0xf3,0x72,0x6a,0x1f,0x62,0x7b,0xad,0xe9,0x1b,0xb,0x49,0x9f,0xfb,0x87, + 0xb,0xfb,0x8b,0xf8,0x8d,0xf8,0xf5,0x80,0xdf,0x7b,0x5c,0xb7,0xd8,0x28,0xb8,0x42, + 0xdc,0x20,0xee,0xe2,0x5e,0x6,0x4d,0xdf,0x42,0xa,0xd,0xaf,0xa0,0xef,0x5b,0xef, + 0xcf,0xb9,0xd5,0xc9,0xe3,0xb1,0xfb,0x97,0xa6,0x7f,0xee,0x3e,0x39,0xa7,0x7e,0xad, + 0xdf,0x81,0xf0,0x9b,0x29,0xfd,0x2f,0x9d,0xf7,0xc6,0x3e,0x68,0xed,0x87,0x91,0xfe, + 0xc,0xbf,0x87,0xae,0xff,0x80,0xac,0xdb,0xd2,0xc7,0xa5,0xfe,0x24,0x9d,0x7b,0x3a, + 0x9f,0xea,0x97,0x9d,0x1d,0xb3,0xff,0x82,0xee,0x54,0xff,0x8c,0xf4,0x5b,0xfc,0x67, + 0x7d,0x3e,0xd5,0x4f,0x8b,0xfa,0x3e,0xf3,0x5f,0xd2,0x5d,0xc2,0x3,0x52,0xfe,0xa7, + 0x74,0x27,0x79,0x41,0x2e,0x2f,0x5d,0xba,0xdf,0x4e,0xba,0xff,0x11,0xfe,0x51,0x6a, + 0x83,0xfa,0xdf,0x71,0xf,0xce,0x45,0x2,0x1f,0x31,0xf0,0x86,0x14,0x8f,0x0,0xda, + 0xa7,0x1c,0x28,0xfd,0x4b,0xbf,0xcf,0xe6,0x78,0x85,0x7a,0x26,0xa3,0x7d,0x70,0x26, + 0x4e,0x35,0xe0,0x19,0x39,0x5e,0xa0,0xec,0xbb,0x64,0x43,0xe4,0x1d,0x29,0x5e,0xd4, + 0xf7,0x6f,0xf5,0x4c,0x68,0xba,0x25,0xfd,0xf4,0xc,0x59,0xce,0x46,0xae,0xef,0x9b, + 0xe2,0x63,0xe9,0x7,0x13,0x79,0x54,0xca,0xff,0xac,0x7e,0x2b,0xaf,0x12,0xce,0xf5, + 0x9c,0x3c,0xcb,0x12,0x7f,0x77,0xc4,0x40,0x1c,0x1f,0x90,0x7b,0x79,0x74,0x5c,0x6b, + 0xdd,0xe2,0xa4,0x85,0x16,0xf7,0x5,0x62,0x89,0x38,0x73,0x1a,0x47,0xf3,0x3c,0x6c, + 0x87,0xb8,0x85,0x9e,0x87,0xed,0xb7,0xdc,0x8b,0xd9,0xc6,0x60,0xbd,0x4f,0x3c,0x6, + 0xfd,0xfc,0x99,0xec,0x3e,0xa7,0x7d,0x91,0xd7,0x3c,0x85,0xdd,0x14,0xaf,0x9a,0xdb, + 0xbe,0x72,0xf6,0xe6,0xf2,0x43,0x5c,0x77,0xe2,0xfc,0xcf,0x66,0x9f,0x73,0xc4,0x1c, + 0xff,0x64,0x3a,0x26,0x81,0xdb,0xb6,0xf0,0xd3,0xce,0xb8,0x89,0x87,0x19,0xdf,0x9f, + 0x95,0xf0,0x57,0x1a,0x37,0x73,0xaf,0x3,0xe8,0xf9,0x8e,0xc1,0xf6,0x58,0x9e,0x9e, + 0xed,0x87,0x6e,0xf8,0x7e,0xae,0x84,0xff,0xd2,0x38,0x14,0xaf,0x9f,0xc5,0xde,0x62, + 0xbb,0x94,0xe7,0x27,0xd7,0x4f,0xe2,0x5f,0x62,0x3b,0x79,0xf,0x28,0x5d,0x7f,0xab, + 0xa3,0xd4,0xb6,0x7a,0x4f,0x28,0xdd,0xff,0x11,0x9c,0x3e,0x77,0x8f,0x30,0x83,0xf0, + 0x7d,0x2b,0xe7,0x37,0xdd,0x33,0xcc,0xb6,0x21,0xba,0xf,0x8c,0xdd,0x8b,0x36,0x9e, + 0x81,0xa7,0x66,0xef,0x69,0xd1,0xfb,0xe2,0x21,0x4a,0x7c,0xe8,0x6c,0xd3,0xfa,0x47, + 0xef,0x6d,0xd2,0x5d,0x2e,0x7a,0xbf,0x4c,0xe2,0x5f,0xba,0x17,0xd4,0x76,0x54,0x7f, + 0x73,0x3c,0x3a,0x7a,0x4f,0x19,0xc7,0x9f,0x22,0xe5,0x3,0xb7,0x4d,0xe3,0x9f,0xe5, + 0xd0,0x5,0x39,0x2a,0xf9,0x20,0xd9,0xa6,0xeb,0x4f,0xd5,0x92,0xe2,0x1a,0x1,0xb1, + 0xf,0x9a,0x6d,0xba,0x7e,0x7e,0x8f,0x94,0xee,0x93,0xb9,0xfa,0xc0,0xeb,0x4,0x79, + 0x56,0x7,0x5f,0x7f,0xfd,0xbc,0x87,0x1a,0xd1,0x5c,0xea,0x3e,0x55,0x70,0xaf,0xca, + 0xad,0xbf,0x79,0x6e,0x72,0xab,0xe4,0x3e,0x3d,0x40,0x89,0x7d,0xe3,0xfa,0x4b,0xe3, + 0x3f,0x76,0xfd,0xbc,0xaf,0x9b,0xf3,0x7f,0x6c,0xfc,0x67,0xc8,0xff,0x31,0xeb,0xd7, + 0xc6,0xd8,0xfc,0x2f,0x59,0x7f,0x88,0xdd,0x98,0xf7,0x9,0x13,0xe3,0x3f,0x17,0x2c, + 0xf6,0x1d,0xff,0x7,0x90,0xfb,0xea,0x71,0xed,0x8e,0x7b,0x8f,0x35,0xfe,0xc4,0xe3, + 0xa4,0x85,0x36,0x16,0x88,0x25,0xe2,0xc,0xb1,0x41,0x5c,0x21,0x6e,0x10,0x77,0x90, + 0xc9,0x93,0xff,0x85,0x2d,0x3,0xa1, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/86Box-yellow.ico + 0x0,0x1,0xfa,0xbe, + 0x0, + 0x0,0x1,0x0,0x9,0x0,0x14,0x14,0x0,0x0,0x1,0x0,0x20,0x0,0xbc,0x1,0x0, + 0x0,0x96,0x0,0x0,0x0,0x40,0x40,0x0,0x0,0x1,0x0,0x20,0x0,0xc0,0x4,0x0, + 0x0,0x52,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0xbc,0x52,0x0, + 0x0,0x12,0x7,0x0,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x20,0x0,0x68,0x4,0x0, + 0x0,0xce,0x59,0x0,0x0,0x18,0x18,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x9,0x0, + 0x0,0x36,0x5e,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x10,0x0, + 0x0,0xbe,0x67,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x20,0x0,0xa8,0x25,0x0, + 0x0,0x66,0x78,0x0,0x0,0x48,0x48,0x0,0x0,0x1,0x0,0x20,0x0,0x88,0x54,0x0, + 0x0,0xe,0x9e,0x0,0x0,0x80,0x80,0x0,0x0,0x1,0x0,0x20,0x0,0x28,0x8,0x1, + 0x0,0x96,0xf2,0x0,0x0,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0, + 0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x8,0x6,0x0, + 0x0,0x0,0x8d,0x89,0x1d,0xd,0x0,0x0,0x1,0x83,0x49,0x44,0x41,0x54,0x78,0x9c, + 0xad,0x94,0x4d,0x6e,0xc2,0x30,0x10,0x85,0x67,0x10,0xb7,0xe8,0x92,0xb,0xb0,0x84, + 0xb,0x0,0x2b,0x92,0x1c,0xa1,0x47,0x80,0x7a,0xcf,0x5,0x20,0xdd,0x80,0x58,0xf6, + 0x8,0x9,0x3b,0xc4,0x5,0xd8,0xb2,0xaf,0xb2,0xec,0x39,0x5c,0x8f,0x9d,0x99,0xd8, + 0x71,0x92,0x82,0xd4,0x27,0x45,0xfe,0x99,0xf1,0xa7,0xb1,0xfd,0x62,0x84,0x5a,0x3a, + 0xcf,0x35,0xf4,0x8,0xb7,0x5b,0x4,0xad,0x7b,0xe3,0x80,0x88,0xd2,0x15,0x58,0x55, + 0xf5,0xe6,0xc3,0x64,0x2,0xb8,0x5e,0xf,0xc6,0x19,0x8a,0x2,0x33,0x5f,0x76,0xbd, + 0x46,0xb9,0xc5,0x6a,0xe5,0x80,0x9b,0x8d,0xcd,0x81,0xfb,0xbd,0x9,0xce,0xe7,0xae, + 0xa5,0xb9,0xc7,0x3,0xa0,0x2c,0x71,0xcc,0x31,0x86,0x15,0xfa,0x22,0xf9,0x19,0x26, + 0x76,0xde,0x42,0x19,0x46,0xb,0x7d,0x31,0xb4,0xd6,0xd8,0x1f,0x34,0x30,0x65,0xbe, + 0xbd,0x1b,0x7f,0x1a,0xd0,0xed,0x6,0xe9,0x72,0x9,0x65,0x9a,0xda,0x2a,0xbc,0x25, + 0xd1,0xb9,0x8e,0xdb,0x13,0x4,0xab,0xaa,0x6f,0xc3,0x48,0x6c,0x51,0xfb,0xb7,0xbc, + 0x9,0x85,0x30,0x1e,0x6b,0x3f,0x16,0x0,0x95,0x4a,0x6c,0x4b,0x67,0x3c,0x74,0x47, + 0x1d,0x50,0xd1,0x88,0x3b,0x45,0x9e,0x4b,0x35,0xc,0xb,0xaa,0x7b,0x52,0xa1,0x6d, + 0xa8,0xb4,0xb6,0xcc,0xf9,0xd1,0xc5,0x94,0x3,0x36,0x8c,0x7c,0x18,0x40,0x5b,0x7b, + 0x15,0xd8,0x1f,0x3e,0x15,0x1f,0xfa,0xb0,0xec,0x74,0x8a,0x72,0xc9,0x32,0x78,0x3c, + 0x76,0xdb,0x66,0x3a,0x75,0xb6,0x21,0xa0,0x52,0xf6,0x3c,0xb1,0xd,0x6b,0xfb,0x50, + 0xa0,0xb3,0x99,0x85,0xe9,0xe2,0xbd,0xd9,0x69,0xf6,0xe5,0xa0,0xa4,0xda,0xd8,0x23, + 0xf0,0x14,0xfa,0xd0,0x8d,0xe9,0xb2,0x78,0x41,0x3,0x73,0x71,0x3b,0xde,0xed,0x82, + 0x1d,0x5,0x40,0x4e,0x26,0x1f,0x9e,0xcf,0x89,0xd8,0xe8,0x95,0xf8,0x4b,0x3e,0x7c, + 0xc6,0xa7,0x2,0xe4,0xad,0xa9,0x9f,0x6d,0xb7,0xf,0x8b,0x2,0xe,0xa6,0xf9,0x50, + 0x28,0xf1,0xc3,0x3e,0xb6,0x52,0x53,0xa1,0xf1,0x1b,0x2c,0x16,0xb1,0x99,0x69,0x9e, + 0x1e,0x8e,0x3a,0x1e,0x41,0x68,0xde,0x93,0xb5,0x4d,0x4a,0xe7,0xdb,0xbd,0x3,0x97, + 0x44,0x8f,0x2,0xdf,0x66,0x97,0xea,0x1b,0x16,0x20,0x43,0xfb,0xf2,0x4b,0xca,0x4b, + 0xd3,0xfe,0x5f,0xa5,0xfd,0x68,0xfc,0xa7,0x7e,0x1,0xfe,0x7d,0xd1,0xbb,0x0,0x0, + 0x0,0xf8,0xc7,0x48,0x47,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, + 0x82,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44, + 0x52,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x40,0x8,0x6,0x0,0x0,0x0,0xaa,0x69, + 0x71,0xde,0x0,0x0,0x4,0x87,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,0x5b,0x3d,0x53, + 0xe3,0x30,0x10,0xb5,0x18,0xfe,0x9,0x25,0xd,0x25,0x54,0xa4,0x4a,0xa8,0x20,0xfc, + 0x84,0x2b,0x19,0x28,0x80,0xa1,0x4f,0xe8,0x6f,0x80,0xe6,0xe6,0xca,0x6b,0xe8,0x93, + 0xeb,0x48,0xaa,0x50,0xd1,0xd2,0x5c,0x5,0xfc,0x16,0x9f,0x56,0xf1,0xda,0x2b,0x5b, + 0xb2,0xf5,0x69,0x3b,0xb9,0x7b,0x37,0x47,0x1c,0x59,0xb2,0xf5,0x9e,0x56,0xda,0xdd, + 0x58,0x66,0x89,0x23,0xa6,0xd3,0x69,0xea,0xda,0xb6,0x2b,0xf0,0x3e,0xb3,0x72,0xd9, + 0xae,0xe3,0x85,0xd2,0xc1,0x60,0xe0,0xdd,0xa1,0xb6,0x70,0x7c,0x7c,0x9c,0xdc,0xdf, + 0xdf,0xc3,0x21,0xc,0x9a,0x24,0xc2,0x8e,0xed,0xc5,0x36,0x98,0xbc,0x12,0x56,0x2, + 0x6c,0x1b,0x79,0x80,0xb1,0x0,0xdb,0x48,0x1e,0x60,0xb4,0x6,0x0,0xf9,0xc9,0x64, + 0xe2,0xdd,0xa9,0x36,0x61,0x42,0x1e,0xd0,0x28,0x0,0x92,0x7f,0x7d,0x7d,0xf5,0xee, + 0x54,0x1f,0x61,0xbd,0x8,0x6e,0x1b,0x9c,0xdc,0x20,0x60,0xb5,0x5a,0x5,0xec,0x86, + 0x19,0xa8,0x25,0xc2,0x1c,0x57,0xc1,0xd6,0x52,0x9d,0x5,0xe0,0x53,0xc3,0xb5,0xa9, + 0x33,0xca,0xeb,0x50,0x99,0x2c,0x2c,0xd2,0xb6,0x3,0xe3,0x2c,0x0,0x60,0xb1,0xf0, + 0x69,0x1d,0x16,0xae,0x16,0xf9,0x7f,0xd,0x28,0x17,0xa4,0xf,0xf,0xd5,0x18,0xff, + 0xf1,0x31,0x51,0xcf,0xb8,0x35,0x46,0xc3,0xe6,0xb4,0x60,0xb1,0xac,0x84,0xe1,0xde, + 0x8,0xb1,0xe,0xe5,0x2,0xe4,0xc4,0xbf,0xbe,0x8c,0x1a,0xf2,0xfa,0x9,0x1b,0xde, + 0x24,0xa6,0x6d,0x50,0xa4,0x50,0x42,0x30,0x16,0xe6,0x3a,0x42,0x0,0x41,0x1e,0x49, + 0x18,0xa,0x20,0xda,0x71,0xcb,0x60,0xa7,0xa7,0x56,0x6d,0x40,0x88,0x10,0x22,0x84, + 0xf2,0x42,0xc5,0x14,0xb0,0x20,0x21,0xc1,0xb4,0x1d,0xd4,0xdb,0xdb,0x73,0xbb,0x47, + 0x44,0xec,0x4a,0xa3,0x4f,0xf1,0xf2,0xa2,0x6e,0x71,0x72,0xb2,0xfe,0xc4,0x36,0xfb, + 0xfb,0xeb,0xcf,0xb7,0xb7,0x6a,0xdd,0xa3,0x23,0xf9,0x3b,0xb4,0x79,0x7e,0x4e,0x46, + 0xef,0xe3,0x64,0x71,0x31,0x77,0xeb,0x71,0x60,0xa8,0xdd,0x20,0x27,0x7f,0xae,0x69, + 0x30,0x3,0x61,0x50,0x4,0x4,0x90,0x7f,0x7f,0xd7,0xdf,0xa5,0x2c,0x44,0x8f,0x50, + 0x15,0x80,0x90,0x9f,0xa5,0xbf,0xe5,0x73,0x8f,0xd9,0xa8,0x2f,0x97,0xeb,0x4f,0x18, + 0xd1,0x8c,0xbc,0x6a,0x44,0x47,0x3f,0xc9,0x97,0x9e,0x8a,0xa0,0xd,0x84,0xa,0xf2, + 0x77,0xe2,0xef,0x72,0xf9,0xc1,0xcd,0x3d,0x49,0x86,0x7f,0x1e,0xd6,0x73,0x19,0xa7, + 0x0,0x27,0x3f,0x9e,0x73,0xf2,0x17,0xd5,0x6b,0xa0,0x28,0xb9,0x10,0x11,0x44,0xa0, + 0x21,0xb1,0x4b,0xc2,0xd6,0x10,0x9,0xde,0x71,0x9e,0x1f,0xe2,0x48,0xb7,0x86,0xa5, + 0x9c,0xbc,0x6e,0xba,0x54,0x50,0x63,0x2d,0x2e,0x40,0xf2,0x48,0xbc,0xf5,0x50,0xd8, + 0x14,0x40,0x18,0xad,0x20,0xf4,0xe2,0x87,0xe4,0x5d,0xdd,0x62,0x83,0x0,0xdf,0xb9, + 0xe9,0x9f,0x89,0x23,0x5f,0xf,0x16,0x6b,0xd5,0x47,0xe2,0xae,0xc9,0xd9,0xe,0xbb, + 0xbd,0x65,0x2a,0x76,0xe7,0xec,0x4c,0x90,0x87,0x53,0x78,0x5a,0xcc,0x7f,0x98,0xb, + 0x38,0xff,0xb3,0x5,0xf3,0xa2,0xa3,0xa4,0x8,0x46,0x1f,0x88,0x23,0x79,0x17,0x2b, + 0x28,0x2c,0x0,0x17,0x36,0xee,0xe2,0x66,0x19,0x31,0x41,0x98,0x82,0x92,0x27,0xe8, + 0x2a,0x17,0x0,0xf8,0x46,0x84,0x42,0x0,0xb0,0x2,0x29,0x17,0x0,0x11,0xe8,0x4a, + 0x8f,0xa0,0xdf,0x33,0x91,0xe6,0x9f,0x9f,0x9d,0xe4,0x2,0x88,0x60,0x5e,0x20,0x17, + 0xc1,0x30,0x27,0xb0,0x21,0x4f,0x11,0x2a,0x17,0x0,0x84,0xf0,0x2,0xf9,0xef,0x1, + 0xda,0x90,0x58,0x3,0x6b,0xf2,0xae,0xb9,0x46,0x3,0x82,0x78,0x81,0x9c,0x7c,0xc9, + 0xc4,0x95,0xc8,0xc2,0xe0,0xf4,0xea,0x2a,0x61,0x37,0x37,0x45,0xb9,0x2a,0x17,0x0, + 0xd0,0xe0,0x27,0x42,0x2e,0xe0,0xeb,0x5,0x36,0x3a,0x17,0x40,0x2f,0x80,0x70,0xf2, + 0x2,0x95,0xd1,0x37,0xc9,0x5,0xb2,0xfa,0xe2,0xf7,0x80,0xc3,0xc3,0x9c,0x7c,0x3a, + 0xfb,0x26,0x55,0x67,0xc9,0xa9,0x54,0x9f,0x62,0x68,0xe0,0x39,0x4c,0x10,0xc4,0xb, + 0xa8,0x50,0x9b,0xb,0x28,0x50,0x90,0x2f,0xea,0x43,0x78,0xa0,0x73,0x91,0x6d,0x3f, + 0x68,0xd1,0x4d,0x11,0xef,0x5c,0xc0,0xaf,0x7e,0x3b,0x0,0xf2,0x68,0x29,0xdc,0x53, + 0x48,0x8f,0xc8,0x5b,0xc9,0x5,0x54,0x68,0xeb,0xc1,0x4a,0xd3,0x1a,0x11,0x38,0x17, + 0x30,0xaf,0xdf,0xd6,0x83,0x15,0x24,0xad,0x13,0x5c,0x2b,0x0,0xe4,0x2,0x10,0xe3, + 0x53,0x22,0x95,0x5c,0x80,0x80,0x9d,0xff,0x12,0xae,0x8d,0xd6,0x37,0x9,0x91,0xdb, + 0x40,0x9d,0xb5,0x55,0x5,0xb0,0xc9,0x5,0xc0,0x25,0x62,0x2c,0x30,0x99,0x24,0x23, + 0xd5,0x1d,0x34,0x82,0xc5,0xb6,0x0,0xdc,0xcb,0xd0,0x34,0xd5,0xd4,0x16,0x0,0x22, + 0xc0,0x67,0x5d,0x2e,0x40,0x1,0x7e,0x5e,0x77,0x4e,0x53,0xde,0xc6,0x66,0xb,0x93, + 0x75,0x46,0xac,0x86,0x63,0xf0,0x62,0x70,0x50,0xe,0x70,0xea,0xc0,0x47,0x9f,0xd9, + 0x3e,0x1c,0xcc,0x2,0xa6,0xd5,0xf5,0xb5,0x5d,0x3b,0x7,0xe8,0xc8,0x67,0x96,0x27, + 0x7b,0x81,0x39,0x4c,0x61,0x10,0x41,0x15,0xe5,0xa9,0x0,0xe4,0xc7,0xe3,0x35,0x21, + 0xd3,0x28,0x8f,0x84,0xca,0x31,0x3c,0x80,0xab,0x45,0xe5,0x53,0x40,0x12,0xa1,0x1, + 0xb0,0x3e,0xc0,0x28,0xe,0x9e,0x9e,0xcc,0xef,0x94,0x45,0x8b,0xd3,0x83,0x83,0x28, + 0xf3,0x3f,0x4d,0x53,0xff,0x1f,0x45,0x51,0x84,0xa6,0x46,0x7,0x59,0x60,0x61,0x23, + 0x2,0x9a,0x7d,0x17,0x1b,0x2b,0xea,0x50,0x59,0x4,0xe7,0xd9,0xfc,0x50,0xed,0xd, + 0x52,0x75,0xbe,0x8d,0xf9,0x1c,0x13,0x9d,0x45,0x82,0x3a,0xd4,0x4d,0x8f,0x18,0x53, + 0xa7,0x33,0x1,0x74,0x64,0x5c,0x4,0xf0,0x11,0xc6,0x4a,0x80,0x90,0xbe,0x5b,0xb7, + 0xef,0xb0,0x8e,0x8c,0x4b,0x9b,0x26,0x58,0xb,0x0,0x37,0x43,0x21,0x6c,0xbf,0x53, + 0xe8,0x36,0x38,0xc0,0x6a,0xae,0x43,0xa8,0x4d,0x11,0x14,0x9d,0xed,0x11,0xba,0x4c, + 0x2f,0x95,0xfe,0x6,0x48,0xea,0xfe,0xc7,0x40,0x67,0x2,0xfc,0xe0,0xff,0x92,0x65, + 0x57,0x77,0x2f,0xd0,0x9d,0x17,0x88,0x33,0xa0,0xd6,0xd0,0x76,0x23,0xe6,0x1e,0x61, + 0xdd,0x2e,0x4f,0x1f,0x94,0xfb,0x69,0x95,0xb,0xb4,0x8d,0xae,0x36,0x5e,0xab,0xbc, + 0x45,0xad,0x0,0xd0,0x51,0x3a,0x5a,0xb8,0x10,0xd1,0x95,0xba,0x6f,0x65,0xd,0x23, + 0x2f,0xaa,0xd1,0x72,0xa5,0x0,0xf4,0xfd,0x0,0x10,0x1,0x2e,0xa,0x17,0xc0,0x9b, + 0xf5,0xb5,0xcc,0x96,0xbc,0x52,0x0,0xfa,0x66,0x88,0xea,0xa5,0x83,0xbe,0x96,0x51, + 0xf2,0xf4,0xb8,0x8e,0x7c,0xa5,0x10,0xc9,0x6f,0xb2,0xd9,0xdb,0x90,0x97,0x4e,0x6c, + 0x83,0xd9,0xdb,0x92,0x7,0xec,0x22,0xf9,0x7f,0xc9,0xec,0x29,0x18,0x25,0x8f,0xaa, + 0x22,0x40,0x71,0xb8,0x61,0x1f,0xcb,0x42,0x90,0x17,0x95,0xa8,0x0,0x31,0x2,0x94, + 0x58,0x50,0xed,0xb,0xb0,0x25,0xf,0x90,0xbc,0xc0,0x26,0xbf,0x19,0xe6,0x42,0x1e, + 0xb0,0xd1,0x6f,0x8c,0x28,0x36,0x47,0x58,0x67,0x18,0x1b,0x2d,0x0,0xc0,0x87,0x3c, + 0x6d,0xd4,0x8f,0x87,0x78,0xee,0x70,0xce,0x2d,0xff,0x2,0x70,0xd1,0xac,0x3e,0x0, + 0x0,0xed,0x19,0xfe,0xc9,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, + 0x82,0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44, + 0x52,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x8,0x6,0x0,0x0,0x0,0x5c,0x72, + 0xa8,0x66,0x0,0x0,0x52,0x83,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,0x7d,0x9,0x80, + 0x5c,0x55,0x95,0xf6,0xa9,0xea,0x2d,0x9d,0xce,0xbe,0x6f,0x9d,0x84,0x90,0x84,0x24, + 0x24,0x84,0x2d,0xa0,0x80,0x10,0x2,0xb2,0x44,0xc5,0x2d,0x20,0x22,0x23,0xb3,0x38, + 0x3a,0x20,0xe0,0x88,0x3a,0x3a,0xc2,0x3f,0x84,0xf9,0x5d,0xc6,0x71,0x0,0xc5,0x41, + 0xf0,0x1f,0x67,0xc4,0x5f,0x64,0xfc,0x67,0x18,0x17,0x46,0xb2,0xa8,0x90,0x10,0xb6, + 0x41,0x59,0x13,0x48,0x2,0x89,0x90,0xa5,0xb3,0xef,0x6b,0x77,0xa7,0xbb,0xab,0xfe, + 0xfb,0xdd,0x77,0xcf,0xab,0xf3,0x6e,0xbd,0xaa,0xae,0xea,0x7a,0xd5,0x5d,0xcb,0xfd, + 0x92,0xea,0xf7,0xea,0x2d,0xf7,0xdd,0xf7,0xea,0x7d,0xe7,0x9c,0x7b,0xee,0xb9,0xe7, + 0xc6,0xa8,0x42,0x71,0xe7,0x9d,0x77,0x26,0xb1,0x8c,0xc5,0x62,0x7d,0x5d,0x95,0x12, + 0x46,0xb2,0xaf,0x2b,0xe0,0x90,0x3,0x92,0xea,0x67,0xba,0xeb,0xae,0xbb,0x8a,0xf2, + 0x22,0x57,0x24,0x3b,0x1c,0xf9,0x73,0x43,0x32,0xe9,0x4,0x40,0x39,0xa1,0x18,0x42, + 0xa0,0x36,0xea,0x2,0xfb,0x1a,0x4c,0x7e,0x7,0x87,0x72,0x7,0xb,0xe8,0xc5,0x8b, + 0x17,0xeb,0xf,0xde,0xed,0xa8,0x85,0x40,0x45,0x9,0x0,0x9b,0xfc,0xf3,0xe7,0xcf, + 0xef,0xa3,0x9a,0x94,0x7,0x9c,0x5,0x50,0xda,0xb8,0xe8,0xa2,0x8b,0xfc,0x75,0x8, + 0x0,0x45,0xfe,0xc8,0xaf,0x51,0x31,0x2,0xc0,0x26,0xff,0xc5,0x17,0x5f,0xdc,0x57, + 0x55,0x71,0x70,0x28,0x18,0x92,0xfc,0x0,0x4,0x40,0x3c,0xae,0x95,0x3f,0xbf,0xe7, + 0x91,0x58,0x2,0x15,0x21,0x0,0x1c,0xf9,0x1d,0x2a,0x1,0x6c,0x91,0xd9,0x96,0x2b, + 0xc8,0x1f,0xe2,0xcf,0xc2,0xc1,0x5,0xb,0x81,0x78,0xa1,0x5,0xf4,0x35,0x1c,0xf9, + 0x1d,0x2a,0x1,0xd9,0xc8,0xf,0x64,0xf0,0x67,0x17,0xdc,0x86,0x2b,0x6b,0x1,0xe0, + 0xc8,0xef,0x50,0x9,0xe8,0x8e,0xfc,0xc6,0xf4,0x2f,0xa,0xca,0x56,0x0,0x38,0xf2, + 0x3b,0x54,0x2,0xfa,0x92,0xfc,0xba,0xfc,0xa2,0x96,0x5e,0x24,0x38,0xf2,0x3b,0x54, + 0x2,0xfa,0x9a,0xfc,0xfa,0x1a,0x45,0xbf,0x42,0xc4,0x70,0xe4,0x77,0xa8,0x4,0x94, + 0x2,0xf9,0xf5,0x75,0x7a,0xe5,0x2a,0x11,0xc1,0x91,0xdf,0xa1,0x12,0x50,0x2a,0xe4, + 0xd7,0xd7,0xea,0xb5,0x2b,0x15,0x8,0x47,0x7e,0x87,0x4a,0x40,0x29,0x91,0x5f,0x5f, + 0xaf,0x57,0xaf,0xd6,0x43,0x38,0xf2,0x3b,0x54,0x2,0x4a,0x8d,0xfc,0xfa,0x9a,0xbd, + 0x7e,0xc5,0x3c,0xe1,0xc8,0xef,0x50,0x9,0x28,0x45,0xf2,0xeb,0xeb,0xf6,0xc9,0x55, + 0x73,0x84,0x23,0xbf,0x43,0x25,0xa0,0x54,0xc9,0xaf,0xaf,0xdd,0x67,0x57,0xee,0x6, + 0x8e,0xfc,0xe,0x95,0x80,0x52,0x26,0xbf,0xbe,0x7e,0x9f,0x5e,0x3d,0x3,0x1c,0xf9, + 0x1d,0x2a,0x1,0xa5,0x4e,0x7e,0xa0,0xe4,0x6,0x3,0x39,0xf2,0xf7,0x1e,0xdc,0x70, + 0xe0,0xe2,0xa3,0x94,0xc9,0xf,0x94,0x94,0x5,0xe0,0xc8,0xef,0x50,0x49,0x28,0x75, + 0xf2,0x3,0x25,0x63,0x1,0x48,0xf2,0xab,0xf5,0xbe,0xac,0x8a,0x83,0x43,0xe4,0x28, + 0x45,0xf2,0x3,0x25,0x61,0x1,0x38,0xf2,0x3b,0x54,0x32,0x4a,0x95,0xfc,0x40,0x9f, + 0xb,0x0,0x47,0x7e,0x87,0x4a,0x46,0x29,0x93,0x1f,0x28,0x99,0x26,0x80,0x8d,0x55, + 0xab,0x56,0xf5,0x75,0x15,0x2a,0x1e,0x89,0x44,0xa2,0xaf,0xab,0x50,0xb1,0x90,0x19, + 0x7c,0x4a,0x39,0x3b,0x75,0x9f,0x5b,0x0,0xe,0xe,0x95,0x8c,0x52,0x26,0x3f,0xd0, + 0xe7,0x2,0xa0,0xd4,0x1f,0x50,0x25,0x3,0xcf,0xde,0x7d,0x8a,0xf3,0x29,0x17,0x94, + 0x44,0x13,0xa0,0x9c,0x1e,0x98,0x83,0x43,0x25,0xa1,0xcf,0x2d,0x0,0x7,0x7,0x87, + 0xbe,0x83,0x13,0x0,0xe,0xe,0x55,0xc,0x27,0x0,0x1c,0x1c,0xaa,0x18,0x25,0xe1, + 0x3,0x70,0x70,0xc8,0x15,0x3c,0x7e,0x21,0x57,0xbf,0x51,0x54,0xe3,0x1d,0xe2,0xf1, + 0x78,0x5a,0xb7,0x69,0x25,0xf8,0xae,0x9c,0x5,0xe0,0x50,0x96,0xe8,0xed,0x81,0x4c, + 0x92,0xfc,0x10,0x6,0x95,0x40,0x7e,0xa0,0x6a,0x2c,0x80,0x95,0x2b,0x57,0xf6,0x75, + 0x15,0x4a,0x10,0xe5,0x33,0x1a,0x90,0xf9,0xce,0xd1,0xa2,0xf8,0x3d,0x21,0x4,0xba, + 0x23,0x62,0x31,0x27,0x88,0x85,0x20,0x58,0xb1,0x62,0x85,0xae,0x43,0xb9,0x8e,0xac, + 0xac,0xa,0xb,0xc0,0x91,0xbf,0xf2,0xd0,0xd7,0x33,0x3f,0x83,0xfc,0xbc,0x2c,0x57, + 0xf2,0x3,0x15,0x6f,0x1,0x30,0xf9,0x39,0x26,0xdb,0xa1,0xbc,0x21,0xc7,0x8b,0x40, + 0x8,0x3c,0xf5,0xd4,0x53,0x39,0x9d,0x17,0x45,0x68,0x39,0x5b,0x1b,0x4f,0x3e,0xf9, + 0xa4,0xbf,0xad,0xdc,0xc3,0xa9,0xab,0xc2,0x2,0x70,0xe4,0xaf,0x1c,0xb0,0xe6,0xed, + 0x6d,0x84,0x91,0xbf,0x12,0x50,0xf1,0x16,0x80,0x24,0xff,0xf2,0xe5,0x7d,0x57,0xf, + 0x87,0x68,0xb0,0xf1,0x8a,0xde,0xbf,0x26,0x93,0xff,0x89,0x27,0x9e,0xd0,0xeb,0xb, + 0x16,0x2c,0xa0,0xbb,0xee,0xba,0xab,0xf7,0x2b,0x52,0x4,0x54,0xbc,0x0,0x60,0x38, + 0xf2,0x57,0x6,0xa6,0x2e,0xeb,0xdd,0xeb,0x49,0xf2,0x5f,0x72,0xc9,0x25,0x7a,0xbd, + 0x92,0xac,0x80,0xaa,0x68,0x2,0x38,0x38,0xf4,0x4,0x36,0xf9,0xb1,0x4,0x60,0x1, + 0x48,0xf4,0x55,0xb3,0x24,0xa,0x94,0x6f,0xcd,0x1d,0x1c,0x7a,0x11,0x4c,0xfe,0x30, + 0x94,0xb3,0x23,0xd0,0x9,0x0,0x7,0x87,0x10,0xc8,0xf8,0x2,0x68,0x7f,0x7c,0x2a, + 0xd1,0x11,0x58,0x35,0x3e,0x0,0x7,0x87,0x5c,0x20,0x89,0xcf,0x5a,0x5f,0x9a,0xff, + 0x95,0x44,0x7e,0xc0,0x59,0x0,0xe,0xe,0x21,0xb0,0xc9,0xcf,0xe,0x40,0xa0,0x42, + 0xa2,0x80,0x35,0x9c,0x0,0x70,0x70,0xa0,0x54,0x76,0x24,0x49,0x7c,0xb6,0x6,0xa4, + 0x10,0xa8,0x24,0xf2,0x3,0x4e,0x0,0x38,0x38,0x8,0x48,0x73,0x1f,0x8,0x6b,0x6, + 0x54,0x12,0x9c,0xf,0xc0,0xa1,0xaa,0x21,0xbb,0xfa,0x18,0x4c,0xf6,0x4a,0x19,0xf1, + 0x97,0xd,0xce,0x2,0x70,0xa8,0xa,0x30,0x99,0x33,0xa5,0xeb,0x66,0x4f,0xbf,0xad, + 0xe9,0xe5,0xf7,0x4a,0x14,0x8,0xce,0x2,0x70,0xa8,0x1a,0xc8,0x61,0xbb,0x61,0x11, + 0x7e,0x61,0x44,0x87,0xd7,0x1f,0xdf,0xbd,0x65,0x2f,0x57,0xb8,0x17,0xe0,0x4,0x80, + 0x43,0x55,0xa0,0xab,0xab,0x8b,0x6a,0x6a,0x6a,0x74,0xd0,0xe,0x96,0x0,0x13,0x5e, + 0xb6,0xf3,0x25,0x58,0x38,0x80,0xfc,0xb9,0xe4,0x1e,0x28,0x47,0xf4,0x89,0x0,0x38, + 0xfa,0xcd,0x6f,0xfa,0x3,0xa8,0xd7,0xa9,0x7,0x3b,0xd3,0x3c,0xd8,0xe3,0xdf,0xfa, + 0x96,0x7f,0xcc,0xd9,0x66,0x1f,0x83,0x8f,0x79,0xf1,0xdd,0xef,0xee,0xa5,0x5a,0xe6, + 0x8f,0xcb,0xa7,0xbe,0x4d,0x23,0x27,0x8c,0xcf,0xe9,0xd8,0x3d,0x2d,0xdb,0x68,0xf9, + 0xc6,0x29,0x45,0xae,0x91,0x3,0x3,0xe4,0x65,0xf2,0xdb,0x64,0xe,0x73,0xf0,0xc9, + 0xf0,0x5f,0x1c,0x5b,0xaa,0x53,0x7b,0x15,0x8a,0x5e,0x11,0x0,0x7f,0xf8,0xc6,0x37, + 0x34,0x93,0x67,0x86,0x48,0xd0,0xb0,0x6d,0xf6,0x3e,0x29,0x8,0xce,0x7e,0xfe,0xf9, + 0x80,0xd0,0xe8,0xb,0x81,0x90,0x89,0xe8,0x23,0xf3,0x28,0x3,0xe7,0x5f,0x3f,0xa1, + 0x3d,0x6d,0xfb,0xc3,0x2b,0x1b,0xa,0xa8,0x99,0x43,0x26,0xc8,0xc4,0x1d,0xd0,0xe8, + 0x52,0xdb,0x87,0x79,0xfd,0x53,0x66,0x7f,0xac,0x22,0x4d,0x7f,0x46,0xd1,0x5,0x80, + 0xd4,0xf6,0x3d,0x85,0x2d,0x24,0xa4,0x60,0x90,0x2,0x1,0xcb,0x63,0xe7,0x9d,0x57, + 0xe8,0xe5,0x42,0x21,0x49,0x9f,0xf,0xd1,0xf3,0xc5,0xf5,0xf3,0xdb,0xb5,0x75,0x80, + 0x6b,0x39,0x2b,0x21,0x3a,0x70,0xbc,0xbe,0x24,0x7f,0x26,0x93,0x5f,0x7e,0xaf,0x44, + 0xb3,0x5f,0xa2,0x68,0x2,0x0,0x5a,0x3f,0x93,0x76,0x6f,0x68,0x69,0xa1,0xf6,0x9, + 0x13,0x2,0x4b,0x40,0x6e,0xcb,0x5,0x5c,0xbe,0xbc,0xe,0xb,0x84,0x28,0x4,0x41, + 0x14,0xa4,0x97,0x64,0xce,0xb5,0x79,0xe0,0x5f,0xd3,0x58,0x9,0x7c,0xae,0xb3,0xe, + 0xa,0x3,0x27,0xf3,0xe4,0x70,0x5e,0x1e,0xd5,0xc7,0xdf,0x79,0x1f,0xb6,0x57,0x83, + 0xf6,0x7,0x8a,0x72,0x7b,0x61,0x5a,0x9f,0x49,0xde,0x53,0xe4,0x2a,0x14,0x24,0xb8, + 0xe9,0x30,0xef,0xab,0x5f,0xcd,0x2b,0x1f,0x0,0xb4,0x70,0x2e,0xb0,0xc9,0x8d,0x65, + 0xbe,0xc8,0x57,0x38,0x38,0xab,0x80,0xe8,0xbd,0xef,0x4d,0x8d,0xbe,0xeb,0x2e,0x25, + 0xd8,0x45,0x17,0x5d,0xa4,0x97,0x9c,0xc0,0x3,0x84,0xe6,0x16,0x65,0xba,0x0,0xc8, + 0xbd,0xe,0x8b,0x17,0x7b,0xe5,0x21,0x29,0x68,0x36,0x70,0x4a,0xba,0xa8,0x4,0x9, + 0x5f,0x57,0xa0,0xa0,0x92,0x23,0x15,0x0,0xc5,0x20,0x7e,0x26,0xe4,0x63,0x2d,0x40, + 0x10,0xec,0x3f,0xeb,0xab,0xdd,0x1e,0x97,0x8b,0x13,0xaf,0x27,0x24,0xcf,0x7,0x4e, + 0x10,0x74,0x8f,0x5c,0x5,0x0,0x34,0xf8,0x85,0x17,0x5e,0x58,0xd4,0xf1,0xfa,0x4c, + 0xf0,0x4c,0x89,0x41,0x4b,0x5d,0x0,0x44,0xd2,0x4,0x88,0x9a,0xf8,0x35,0xbb,0x76, + 0x53,0xd7,0xe8,0x51,0x59,0x8f,0xe1,0xf2,0x33,0x5d,0x47,0xa,0x6,0x34,0x11,0x9e, + 0xed,0xe6,0x9a,0xd0,0xfa,0x61,0x66,0x7e,0xb1,0x9,0xdf,0xdd,0xf5,0x32,0x9,0x4, + 0xe9,0x44,0x74,0x4d,0x83,0x74,0x70,0xdb,0xbd,0x9c,0x93,0x75,0xf4,0x6,0xa,0x96, + 0x4b,0x3d,0x21,0x3f,0x13,0x3c,0x6c,0x9,0x84,0xad,0x77,0x27,0x10,0xb2,0x81,0x85, + 0x41,0x98,0x25,0x10,0x66,0xee,0x17,0x85,0xf4,0xbb,0xb6,0x13,0x8d,0x1e,0xd7,0xe3, + 0xd3,0xbb,0xb3,0xc,0xaa,0x49,0x8,0xe4,0xd3,0x4,0xe8,0x6b,0x54,0xb4,0x5,0x60, + 0x93,0x3f,0x1b,0xf1,0x33,0x91,0x98,0x89,0x9e,0x69,0x1b,0xaf,0x67,0x12,0x8,0xd9, + 0x84,0x9,0x1f,0x93,0xa9,0xa9,0x60,0x93,0x3f,0x2f,0xe2,0x33,0xa1,0xb1,0xcc,0x80, + 0xf8,0x81,0x43,0x94,0x18,0x3a,0x38,0x78,0x4e,0x36,0x70,0x79,0x21,0x82,0x82,0xeb, + 0x96,0x49,0x10,0xf0,0xbd,0x54,0x93,0x20,0x70,0x28,0x1c,0x3d,0x96,0x1e,0xb9,0x90, + 0x3f,0x93,0x86,0x8f,0x12,0x61,0xe5,0xda,0xdb,0xda,0x5f,0x7c,0x89,0x6a,0xdf,0x77, + 0xa5,0x16,0x2,0xb0,0x2,0x16,0x7e,0xe1,0xb,0x69,0xe5,0x44,0x41,0x7e,0x26,0x3c, + 0x96,0x80,0x5c,0x97,0xdf,0xe5,0x32,0x2b,0xb2,0x8,0x84,0x6c,0x16,0x41,0xa5,0xb, + 0x1,0x67,0x1,0x4,0xd0,0xfb,0x16,0x40,0x3e,0x9a,0x9f,0xd1,0x1d,0xf9,0x93,0x7b, + 0xf7,0x52,0x6c,0xc4,0x88,0xb4,0xf5,0x9e,0x94,0x6b,0x6f,0x6b,0x38,0xfb,0x2c,0x6a, + 0x7f,0x7c,0x29,0x21,0x0,0x74,0xb6,0xfa,0x2c,0x51,0x1f,0x16,0x2,0xf9,0x78,0xe0, + 0x3,0x64,0x34,0xe4,0xb7,0x49,0x2f,0x61,0xef,0xb3,0x8f,0xc9,0x24,0x1c,0xfc,0x73, + 0xe5,0x75,0x1,0x21,0x8,0xb2,0xd5,0x1b,0xd6,0x40,0xa5,0xb,0x1,0x87,0x68,0x90, + 0xb7,0xf4,0x90,0xe4,0xcf,0x44,0xfc,0x5c,0x35,0x3e,0x88,0x9e,0xb,0x72,0x15,0x6, + 0x2c,0x38,0xb8,0x5c,0xac,0x43,0xfb,0xd7,0x4f,0x9e,0x44,0x27,0x36,0x6d,0xf6,0x8f, + 0xfb,0x6e,0xeb,0x31,0xfa,0xea,0xbf,0xfc,0x8b,0x5e,0x4f,0x9c,0x3a,0x3b,0x7b,0xa1, + 0x39,0x6a,0x7b,0x1b,0x61,0x96,0x40,0x26,0x8b,0x20,0xdb,0xf9,0x69,0x56,0x42,0x1e, + 0xd6,0x40,0xa5,0xa,0x1,0x67,0x1,0x4,0xd0,0x7b,0xdd,0x80,0x36,0xf9,0x63,0xa6, + 0xeb,0x23,0x69,0xdd,0x5d,0xcd,0x8e,0x9d,0xde,0x4a,0x88,0x7,0x36,0xb9,0x67,0xb7, + 0x17,0x8b,0x1d,0xaf,0x49,0xbf,0x40,0xd2,0xfb,0x61,0x63,0x23,0x47,0xe9,0xe3,0xbc, + 0x2f,0x71,0xeb,0x90,0x2e,0x2f,0x40,0x43,0x1c,0x83,0xf2,0xe2,0xa3,0x46,0xeb,0xef, + 0x99,0xce,0xed,0x50,0x2,0xa0,0x4e,0x8,0x2,0x8,0x85,0xba,0xdb,0x3e,0xaf,0xd7, + 0xb5,0x10,0xc0,0xbd,0x70,0x27,0x31,0xc8,0x3e,0xc6,0x90,0x6a,0xa7,0x68,0x1a,0x20, + 0x26,0x7c,0xdf,0x1,0x4a,0xc,0x1f,0xea,0x11,0x37,0x91,0x8,0xac,0x87,0xdd,0x6f, + 0x46,0xf0,0xb9,0x5c,0x9e,0x55,0xae,0x5f,0x56,0x57,0x17,0x25,0x46,0xc,0xf3,0xf7, + 0x7,0x20,0x84,0x41,0x35,0x9,0x1,0x27,0x0,0x2,0xe8,0x1d,0x1,0x10,0x66,0xf6, + 0x43,0x0,0x30,0xf9,0x35,0xe9,0xd,0x81,0xba,0xc6,0x8e,0x9,0x68,0xff,0xc4,0xee, + 0x5d,0x9a,0xa0,0x58,0xda,0xe4,0xb5,0x9,0x9e,0x11,0x96,0x70,0xe0,0x1,0x1d,0xf8, + 0x8e,0x72,0xbd,0xa2,0x6a,0xbc,0xe3,0x44,0x99,0x27,0xde,0xd9,0xa4,0xeb,0x25,0x6f, + 0x74,0xa9,0x12,0x2,0x1f,0x5c,0xf4,0x11,0xfa,0xf4,0x1f,0x5e,0xa0,0x7f,0xfb,0xde, + 0x3f,0x7b,0x75,0xb4,0x2d,0x81,0x1d,0x2d,0xc1,0x5f,0xd,0xe4,0xdf,0xbb,0x3f,0xb5, + 0x2d,0xb,0xd9,0x13,0x2d,0xdb,0x29,0x3e,0x61,0x1c,0x25,0xb6,0xed,0xa0,0xf8,0xf8, + 0xb1,0xa9,0xa5,0xd9,0xde,0x2d,0x6c,0xc1,0xc2,0x9b,0xcd,0xb6,0x6c,0x56,0x81,0x2d, + 0x8,0x9c,0x0,0xe8,0x5b,0x54,0x84,0x0,0xc8,0x64,0xf6,0xdb,0x16,0x40,0x98,0xe6, + 0x97,0xe4,0xd7,0xe7,0x84,0x68,0x7e,0x90,0xb4,0xfe,0xa4,0xc9,0xfe,0x32,0x2b,0x98, + 0xe0,0x46,0x20,0xb0,0xf6,0x67,0xe1,0x62,0x2e,0x12,0x28,0xdb,0x16,0x0,0x40,0xdd, + 0xa4,0x66,0xba,0x67,0xed,0x5a,0x9a,0xff,0xf9,0xcf,0xd3,0xb9,0xb3,0x67,0x7b,0x2, + 0x0,0xda,0x1e,0x9a,0x1f,0x4b,0xe,0xec,0x50,0xf7,0x2,0xe2,0x6b,0x2d,0x9c,0x41, + 0xd3,0x27,0xb6,0x6e,0xa3,0x78,0xf3,0x78,0x4d,0x70,0xef,0xfa,0xb1,0x94,0x45,0x91, + 0xf1,0x3e,0xbc,0xfd,0x5a,0x30,0x98,0xf3,0xd3,0x60,0x9,0x2,0x7f,0x9d,0x77,0x4b, + 0x41,0x50,0x45,0x42,0xc0,0x9,0x80,0x0,0x8a,0x2b,0x0,0xba,0x73,0xf8,0x81,0xf4, + 0x5a,0xe3,0xef,0xdc,0x65,0x4a,0xc,0xbe,0xfc,0x3e,0xf1,0xf1,0xdd,0x26,0x26,0x6f, + 0x17,0xe0,0x88,0xaa,0x8c,0x2,0xc1,0xd2,0xf0,0x2c,0x8,0x7c,0xa1,0x10,0x62,0x51, + 0xa0,0x1c,0xbe,0x4e,0x92,0xbd,0xfd,0x8a,0x24,0xd8,0xf2,0xbd,0x63,0x47,0xe8,0xcd, + 0xfe,0x8d,0xda,0x12,0xf0,0x85,0x0,0xea,0x60,0x88,0xaf,0xef,0x23,0x44,0xdb,0x83, + 0xb4,0xfe,0xaf,0x9a,0x81,0xf0,0xb1,0x1d,0x5b,0xbd,0x6b,0x8e,0x6d,0xa6,0xd8,0xce, + 0x16,0x4a,0x8e,0x99,0x90,0x5a,0xaa,0x7d,0xd8,0x6e,0xdd,0x7c,0x76,0xa1,0x60,0x84, + 0x4f,0xc6,0xde,0x84,0xc,0x42,0xc0,0x9,0x80,0xbe,0x43,0xa9,0xb,0x80,0xbc,0xc2, + 0xa4,0xc2,0x9c,0x7e,0x9a,0xfc,0xd0,0xfc,0x92,0xf4,0xca,0x44,0x7,0xf1,0x75,0x9b, + 0x5c,0x69,0x7c,0xad,0xf5,0x2d,0xf2,0x83,0xd8,0x69,0xa4,0x64,0x6c,0xf3,0x34,0x29, + 0xef,0x67,0x61,0xe1,0x6d,0xb4,0xc8,0x9f,0x43,0x13,0x2,0xd7,0xf2,0x33,0xc1,0x30, + 0x31,0xcc,0x35,0x6f,0x9b,0x35,0x8b,0x4e,0x39,0xde,0xea,0x6d,0x43,0xdb,0x1f,0x4, + 0xdc,0x7f,0xd0,0x23,0x3f,0x12,0x47,0x48,0x6b,0xc6,0x68,0x78,0x6d,0xd2,0x83,0x9c, + 0x5a,0xa8,0x99,0x54,0x53,0x3b,0xbd,0x67,0x3,0x62,0x33,0xf1,0x3,0xfb,0x60,0x85, + 0xc8,0x25,0x6,0xa6,0xe0,0x58,0x71,0x9e,0xff,0xfc,0x54,0xf9,0x9a,0xe8,0xea,0x7a, + 0xbe,0x55,0x1,0xf0,0x9c,0xf4,0x56,0xaf,0x82,0x6f,0x15,0xa0,0xfe,0xc6,0x59,0xc9, + 0xdd,0x9a,0x58,0x22,0xc4,0xd9,0xc1,0x21,0xc,0x59,0xbb,0x1,0xb3,0xd,0xe5,0xf5, + 0x3d,0xfd,0xac,0xf9,0x5,0x51,0x7c,0x93,0x9c,0xdb,0xfa,0x86,0xa4,0x52,0xeb,0x9f, + 0x78,0xe6,0xb9,0x40,0x79,0x2c,0x4,0x34,0x41,0xd5,0x47,0x92,0xbe,0xbb,0xe6,0x81, + 0xf6,0x7,0x50,0x22,0xd4,0xb7,0x20,0xcf,0xb,0x24,0x82,0x30,0xcb,0x8e,0xcd,0x5b, + 0x69,0xda,0x9e,0xfd,0xf4,0xe7,0xb7,0xdc,0x4c,0x3f,0xfc,0xea,0xff,0xf2,0xda,0xe8, + 0x35,0xa9,0x66,0x8a,0xad,0xe9,0x35,0x39,0xc9,0x23,0x29,0x6b,0x71,0xad,0xd5,0xb1, + 0xdc,0xb5,0x2d,0x25,0x14,0xd6,0xbe,0x4e,0x4,0xa7,0x1d,0xb,0xb9,0x7d,0x7,0x28, + 0xa6,0xbe,0x27,0x95,0x70,0x89,0xd,0x1b,0x92,0x5a,0xaa,0xed,0xa4,0xd6,0x71,0xac, + 0x3e,0x1f,0x82,0xa,0xbe,0x15,0x58,0x7,0x2c,0x10,0x5a,0xb6,0xfb,0x96,0x81,0x84, + 0xdd,0x8b,0xe0,0x5b,0x3,0xa6,0xe7,0xc2,0x8f,0x6d,0xe8,0x2e,0x0,0xc9,0xa1,0x6a, + 0x91,0xd5,0x7c,0x60,0x1,0x90,0x35,0xc8,0x47,0x9a,0xfe,0x44,0xa1,0xe,0x39,0x26, + 0x61,0x87,0xf1,0xc0,0x83,0xec,0x20,0xba,0xad,0xf9,0x79,0x1b,0x96,0xf0,0xd8,0xe3, + 0x78,0x90,0x36,0x40,0xfc,0x64,0xca,0xfc,0x4b,0x23,0xbc,0xf4,0xf,0x64,0x68,0xa, + 0x78,0x55,0x8d,0x5,0x5,0xe,0x79,0x4d,0x81,0x2f,0x7d,0xed,0x1b,0x7a,0x9d,0x1d, + 0x75,0x20,0x1e,0x93,0x1b,0xa4,0xf4,0x89,0xce,0x66,0x3c,0x13,0x16,0xe5,0x81,0xc8, + 0xe2,0x39,0x64,0xf2,0x1,0x7c,0xf8,0xe0,0x1,0xfa,0xc5,0x10,0xcb,0x9b,0x2f,0x7b, + 0x20,0xf8,0xde,0xd8,0xe3,0x6f,0x9c,0x80,0xb2,0xb9,0x60,0xb,0x2,0x7d,0x58,0x48, + 0x17,0xa3,0x86,0x12,0x4,0xf1,0xf5,0xeb,0xf4,0xea,0xd2,0xda,0xf7,0xa5,0x9d,0x57, + 0x8e,0x70,0x4d,0x80,0x0,0x8a,0x13,0x8,0x94,0x73,0x22,0xf,0xf3,0xe2,0xb2,0xb3, + 0x2f,0xb8,0x2f,0x45,0xfe,0x50,0x8d,0x6f,0xce,0x65,0xe2,0x83,0xf4,0x64,0x88,0xff, + 0xdf,0x2b,0x57,0xd1,0x55,0x8b,0x3e,0xe2,0xf5,0xe9,0x4b,0x42,0xc7,0x82,0xe,0x46, + 0x80,0x2d,0x8e,0x80,0x33,0x30,0x44,0x8,0xb0,0x25,0xe1,0x57,0x4f,0xb4,0x93,0x6f, + 0x69,0x1a,0x48,0x74,0xc7,0x57,0xb5,0x10,0x60,0x8d,0xeb,0x9b,0xf0,0xdc,0x5e,0x87, + 0xd9,0x6e,0xcc,0x78,0x68,0x78,0xff,0x1,0x59,0x56,0x45,0xfd,0xd6,0xad,0x74,0xa2, + 0xb9,0x59,0x2f,0x25,0xb0,0xed,0xd7,0x47,0x8e,0x52,0xbd,0xfa,0xc8,0x87,0x1b,0x13, + 0xfb,0xfd,0xe7,0x63,0x4,0x8a,0x16,0x4,0x4a,0x8,0x40,0xd8,0x24,0x47,0x7b,0xf5, + 0x65,0x2b,0x44,0xa,0x82,0x8c,0x41,0x46,0x1c,0x8b,0x80,0x73,0x26,0x91,0x83,0x43, + 0x0,0x79,0x45,0x2,0xda,0xf1,0xfc,0x5a,0xfb,0xb,0xa2,0x0,0xb6,0x53,0xf,0xdf, + 0x41,0xe8,0x30,0x8d,0xcf,0xe4,0x5f,0x66,0x2c,0x83,0xd,0x6f,0xbc,0x4e,0x5d,0x8a, + 0x64,0x35,0x78,0xe1,0x47,0xe,0xa3,0xc7,0x1e,0xfd,0x39,0x6d,0x54,0xcb,0xa9,0xca, + 0x44,0xdf,0xa0,0x96,0x30,0xd5,0x21,0x14,0xb0,0xfd,0x3,0x17,0x5d,0xe0,0xf7,0xfd, + 0xb3,0x20,0xf0,0xaf,0xc9,0x5d,0x83,0xc9,0xae,0x34,0xe7,0x23,0xb,0x1,0x59,0x1f, + 0x16,0x4,0xb8,0xce,0x1f,0xf6,0xed,0xa1,0x79,0xc3,0x47,0xa6,0xda,0xf1,0x0,0x88, + 0xf,0x2,0xda,0x5a,0x5e,0x10,0x5e,0xdf,0xe,0xdf,0x96,0xfa,0xd4,0xa9,0x6d,0xb6, + 0x4,0xd,0xdb,0x26,0xcf,0xab,0x33,0xe5,0x74,0x34,0xa7,0xcc,0x7f,0xbf,0xe9,0x80, + 0x25,0x5b,0x1b,0x42,0x10,0x84,0x59,0x3,0x36,0x58,0x60,0x38,0x38,0xd8,0x8,0x35, + 0x1f,0xba,0x8b,0xf6,0xb3,0x23,0xfc,0xc2,0x3c,0xfd,0xec,0x79,0xf,0x90,0xde,0x68, + 0xfc,0xfa,0xb,0xbc,0x6c,0x3d,0xd0,0xf2,0x20,0x38,0xb0,0xbe,0x7f,0x23,0xcd,0x38, + 0xde,0x9a,0xb6,0xb4,0xc1,0x15,0xbb,0x4d,0x7,0xef,0x78,0xed,0x7e,0x1b,0x69,0xd6, + 0x80,0xbe,0x76,0xd0,0x9,0x29,0x5,0x15,0x37,0x3b,0x10,0x1f,0x80,0xfa,0xfc,0xcd, + 0xcd,0x37,0xa5,0xf6,0x49,0xcd,0xaa,0xce,0xb1,0xc9,0x1e,0xa8,0x5b,0x81,0x66,0x5e, + 0x4c,0x14,0x8a,0xa2,0x7c,0x8b,0x80,0x1d,0x98,0x56,0x20,0x10,0xb,0x2,0x20,0xb4, + 0x59,0x20,0x89,0xbf,0xee,0xd,0xbd,0x58,0x7e,0xc5,0xbd,0x85,0x55,0xb2,0x4,0xe0, + 0x9a,0x0,0x1,0x14,0x6f,0x2c,0x40,0x77,0x3,0x7c,0x24,0x52,0x84,0x33,0xb5,0xb2, + 0xef,0xd8,0x90,0x7f,0x79,0x67,0xa7,0xd6,0xf4,0xd8,0xbb,0x7e,0xd2,0x78,0xda,0xd1, + 0x94,0xa0,0x35,0x87,0xe,0xd1,0x89,0xb6,0x83,0xf4,0xb3,0xd6,0x4e,0x6a,0x3b,0xe0, + 0xbd,0xec,0xfd,0x5a,0x63,0x34,0xa0,0xa9,0x96,0xea,0x6b,0xfb,0xd1,0x9c,0xc1,0x83, + 0x69,0xec,0x31,0x8f,0xc0,0x2c,0x1c,0xee,0x51,0x65,0x0,0x53,0xf7,0x3c,0xa3,0x83, + 0x7a,0x34,0xb8,0x1b,0xcd,0x34,0x45,0x78,0xa9,0x3,0x87,0x10,0x41,0x68,0x62,0x10, + 0x7c,0x2b,0xc0,0x8,0x28,0xb6,0x6,0xae,0x44,0x74,0xe0,0xa4,0x66,0xfa,0x1b,0x53, + 0x65,0x4d,0x7e,0x41,0x7a,0x69,0xa2,0xeb,0xfd,0x91,0xa6,0x53,0x11,0xe5,0x25,0xbd, + 0x5f,0x95,0x9b,0x12,0xbe,0x35,0x0,0x67,0xa1,0x1,0x1c,0x88,0x20,0xb5,0x76,0x24, + 0x2a,0x41,0x10,0x66,0xd,0x70,0x10,0x12,0xac,0x17,0x58,0x17,0xff,0xfd,0x97,0x8f, + 0x46,0x5b,0x61,0x87,0xb2,0x47,0xda,0x2b,0x9c,0x4d,0xfb,0xdb,0xe4,0x97,0x6d,0x70, + 0xf6,0xf6,0x87,0x6a,0x7e,0x5,0x68,0x7d,0x68,0xfc,0x5f,0x2b,0xd2,0x77,0x2a,0x55, + 0xb7,0xa5,0x7f,0x3b,0xbd,0xd4,0xb2,0x87,0x8e,0x1e,0x4b,0xa9,0xbd,0x69,0xd3,0x54, + 0x33,0x60,0x83,0xb7,0x4,0x64,0x92,0x95,0x41,0x83,0x9b,0x68,0xdc,0xf8,0x99,0x34, + 0xf4,0x95,0x5d,0x54,0x6b,0x98,0xf2,0xc0,0xfb,0x3f,0x40,0xdf,0xf9,0x8f,0xff,0xa0, + 0x2f,0x5c,0x34,0x3f,0xe8,0x48,0x13,0xc2,0x27,0x93,0x35,0x90,0x29,0xe,0x81,0x9b, + 0x23,0x1f,0xbe,0xeb,0xe,0xaa,0x5d,0xf3,0x46,0x60,0x5f,0x32,0xf4,0x89,0xa5,0xf0, + 0xf8,0xa7,0x7a,0x4e,0xb0,0xf7,0xfd,0x70,0x51,0xda,0xb6,0x58,0x32,0xdc,0x3f,0xa0, + 0xf7,0x41,0x0,0x58,0x90,0x16,0x41,0x0,0x46,0xfb,0xd7,0x57,0x88,0x10,0x70,0x16, + 0x40,0x0,0xbd,0x3b,0x1a,0x50,0x6a,0x7e,0x26,0x96,0x24,0x57,0x58,0x16,0x55,0xd6, + 0xfa,0x6f,0x1a,0x8d,0xff,0xe2,0xde,0x9d,0x34,0xb4,0x5f,0x27,0x8d,0x1d,0xe7,0xf1, + 0x75,0xee,0x5c,0xef,0xb8,0x90,0x51,0xba,0x1a,0x77,0xdf,0x8d,0xbf,0xc7,0x54,0x53, + 0xfc,0x45,0xaa,0xbb,0x6a,0x1a,0x1d,0xd9,0x3b,0x99,0xfa,0xd3,0x8,0xba,0xf1,0xd7, + 0xff,0x4d,0xdf,0xb9,0xed,0x36,0xba,0xfb,0x9e,0x7b,0xe8,0xaf,0xaf,0xb9,0xc6,0xab, + 0x9b,0xe9,0x46,0xe3,0x27,0x2e,0x1d,0x84,0x7e,0x8f,0x1,0xa5,0x3b,0x4,0x1,0xf4, + 0x38,0x5c,0x3e,0x69,0x22,0x35,0xcc,0x3b,0x3b,0x40,0xfe,0x4c,0xc4,0x2f,0x84,0xf0, + 0xd9,0xca,0x62,0x61,0x0,0x39,0x87,0x6b,0x43,0x10,0x48,0xff,0x80,0xb6,0xc,0x88, + 0x2,0xdd,0x89,0x99,0xa0,0x7d,0x17,0x44,0x69,0xe,0x49,0x87,0x20,0x32,0xa5,0xf4, + 0xaa,0xda,0xac,0xc0,0xdd,0xd,0xf1,0x65,0xef,0xbc,0xc,0xed,0xd,0x78,0xfa,0xd9, + 0x41,0x76,0xfe,0xbb,0x3d,0xf2,0x2b,0xb3,0x7d,0xd3,0x80,0x36,0x7a,0xea,0xad,0xdd, + 0x74,0xf2,0xc9,0x44,0xa7,0x9f,0xee,0xf5,0x70,0x49,0xd2,0xcf,0x99,0x43,0xb4,0x66, + 0x4d,0x6a,0xc9,0x51,0xb7,0xf,0x3d,0xe4,0x7d,0x7,0xee,0xbe,0x7b,0x3,0xf5,0x1f, + 0xd0,0x42,0xd3,0xe7,0x7c,0x94,0x36,0xd0,0x5,0x7a,0x7c,0x3f,0xc8,0x8f,0xb1,0xfe, + 0xfd,0x61,0xa1,0x8c,0x1d,0xa3,0x8f,0xf3,0xc3,0x92,0x45,0x93,0x20,0x10,0x36,0xac, + 0xea,0x2d,0x9b,0x2,0xde,0xa1,0x31,0x6d,0x1,0x24,0x37,0x6f,0xa1,0x1b,0x94,0xb0, + 0xfa,0xf1,0xbc,0x73,0x3c,0xb3,0xdc,0xbc,0x1b,0x51,0x12,0x3e,0x1b,0xf8,0x3a,0x52, + 0x10,0xb0,0x7f,0x40,0x12,0x59,0x36,0x9,0xb4,0x20,0xe0,0x75,0x65,0x9,0x70,0xaf, + 0x81,0x3c,0xc6,0x21,0x88,0x4c,0xa4,0xf,0x3b,0xa6,0x52,0x5,0x41,0x40,0x0,0xe4, + 0x93,0xc3,0xdf,0x1f,0xbb,0x2f,0x2,0x7d,0xd2,0x3c,0xfd,0xea,0xe1,0xdd,0x63,0x3c, + 0xfb,0x5b,0x1a,0x8e,0xd0,0xca,0x37,0xf,0xf8,0xe4,0xff,0xbc,0x37,0x10,0x4f,0x93, + 0x5d,0x82,0xbf,0x67,0xda,0xee,0x9,0x8c,0x56,0xba,0xf7,0x3b,0xff,0x4e,0xad,0xad, + 0x67,0xd0,0xf,0x7e,0xf0,0xc,0x7d,0xe7,0xaf,0x6e,0xd4,0xfb,0x12,0x23,0x47,0xf8, + 0x3,0x94,0x2,0x82,0xc0,0x4,0x29,0xe9,0xd9,0x61,0x64,0x53,0xc0,0x2,0xba,0x21, + 0xaf,0x50,0xcb,0xda,0x89,0x13,0xe8,0x8f,0xeb,0xd6,0xf9,0xdb,0x1f,0xef,0x23,0xb3, + 0x59,0xa,0x2,0xf6,0xf,0x48,0x41,0x20,0x9b,0x5,0xd2,0xa,0xd0,0xf1,0x9,0xe4, + 0xb4,0x7f,0x36,0xd8,0xe4,0x9f,0x3f,0x7f,0x7e,0xe8,0x71,0x76,0xd2,0xcf,0x4a,0x13, + 0x4,0xdd,0xc6,0xd1,0xda,0x29,0xb9,0x0,0x68,0x7f,0xfd,0x11,0xed,0x7e,0x68,0x7f, + 0x9f,0xfc,0xe6,0x21,0xc1,0xf4,0xc7,0xda,0xaa,0x11,0xb5,0xf4,0xe4,0xdb,0x7,0x68, + 0xd1,0x22,0xcf,0xdc,0xff,0xb7,0x7f,0xf3,0x8,0x6d,0x93,0x3c,0x1b,0x5e,0x7d,0xd5, + 0x5b,0xf2,0x39,0x3f,0x78,0xb0,0x8b,0xfa,0xf7,0x7f,0x95,0xa6,0xdf,0x72,0xa5,0x9f, + 0xfe,0xbb,0x6d,0xe2,0x44,0xaf,0x6b,0x51,0x8c,0xa0,0xd3,0x82,0x80,0x7f,0x3c,0xd3, + 0x63,0xa0,0x97,0x88,0x13,0x50,0x1f,0x19,0x64,0xc4,0x43,0x86,0x7f,0xbd,0xca,0x4b, + 0x21,0x7a,0xc3,0x1f,0x7e,0xdf,0x6b,0x5a,0x3f,0x1b,0x32,0xd5,0xc1,0xef,0x91,0x30, + 0x5a,0xde,0x5e,0x32,0x58,0x50,0x54,0x42,0xfb,0x3f,0xa,0x30,0x99,0x41,0x7a,0xfe, + 0x64,0x82,0xbd,0x3f,0x17,0xab,0xa1,0x9c,0x10,0x2a,0x0,0xa4,0xf9,0x1f,0x96,0xc7, + 0xcf,0x4e,0xd0,0xa1,0xe3,0xfa,0xe5,0x8,0x34,0x78,0xfb,0x3b,0x3a,0x68,0xfd,0xe8, + 0x11,0xf4,0xd2,0x80,0x7a,0x7a,0xae,0x65,0x87,0xd6,0xfc,0xd0,0xfa,0x30,0xe7,0x7b, + 0x2,0x58,0xd,0x52,0x8,0xac,0x5f,0xaf,0xea,0xa6,0x4,0xcc,0xa3,0x8f,0xfe,0x3b, + 0x75,0xd5,0xb5,0x7,0x85,0x0,0xea,0x88,0x79,0xe0,0xb8,0x19,0x60,0xea,0x14,0x18, + 0x99,0x68,0x85,0x27,0x33,0x1e,0x33,0x1,0x48,0xa5,0x6,0x8,0x81,0x30,0x41,0x20, + 0x85,0x80,0xed,0x13,0x60,0x41,0xe0,0x2c,0x80,0x14,0x24,0xf9,0xf3,0x1,0xb,0x82, + 0x4a,0xb3,0x0,0xba,0x75,0x2,0x86,0x25,0xf3,0xf4,0x33,0xf9,0x40,0xfb,0x5b,0x11, + 0x7e,0xd2,0xdd,0x59,0xab,0x48,0xf8,0x42,0xd7,0x51,0x1a,0x33,0x36,0x41,0xa7,0x9d, + 0x96,0x5f,0xc5,0x40,0x76,0x90,0xfe,0xb5,0xd7,0x52,0x4e,0x42,0x7c,0x97,0xfb,0xd0, + 0x1c,0x78,0xe2,0x89,0xc3,0xb4,0xb2,0x7e,0x2d,0x5d,0xd2,0x71,0x86,0x7f,0x6e,0xab, + 0x11,0x2,0x8d,0x32,0x2c,0x17,0xa3,0xfb,0x2c,0x87,0x20,0x2c,0x81,0x7a,0xd1,0x73, + 0x1,0xed,0x7f,0x95,0xfa,0x20,0xd0,0x88,0x4c,0x7c,0x42,0xa9,0x1,0x5a,0xfc,0x3, + 0xff,0x92,0xea,0x31,0xe0,0x88,0x43,0x2c,0xa5,0x10,0x0,0xe4,0xba,0x43,0xa,0x61, + 0xe4,0x67,0x53,0x9f,0xd3,0x88,0xf3,0x54,0x62,0xf6,0xb1,0x98,0x68,0xa4,0xd4,0x7b, + 0x1e,0xf2,0x41,0x9a,0x5,0x60,0x3b,0xff,0xba,0x4b,0xc7,0xcd,0x41,0x3d,0x61,0x78, + 0x7d,0x40,0x3f,0xda,0xb5,0xef,0xb0,0x4f,0xd6,0xee,0x4c,0x7e,0x10,0x1b,0x84,0x7, + 0xa4,0xa0,0x65,0xcd,0xcf,0x8e,0x40,0x7b,0xdf,0x23,0x3f,0xfa,0x5,0x25,0x6a,0x3a, + 0x3,0x65,0x35,0x6e,0xd9,0x92,0xba,0x7,0xd3,0xc,0xb0,0x73,0x13,0xc8,0x5e,0x1, + 0x0,0xd9,0x82,0x60,0xdd,0x94,0xa2,0x5,0x20,0x21,0x4d,0x79,0x5b,0xbb,0xdb,0x8e, + 0x41,0xde,0xef,0xcc,0x7f,0x4f,0xfb,0xe7,0x43,0x7e,0xb9,0x8f,0x81,0x63,0x2e,0xbe, + 0xf8,0x62,0x33,0x6d,0x58,0xf9,0x5b,0x3,0xbe,0x0,0xe8,0x6e,0xe4,0x5f,0x18,0xd0, + 0x66,0xd6,0x16,0x80,0x15,0x1a,0xb,0xf3,0x1f,0x11,0x75,0xbb,0xfb,0x77,0x51,0x73, + 0x73,0x52,0x7b,0xf3,0xc3,0xc8,0xcf,0xc4,0x6,0xe9,0xf1,0x81,0xa0,0x80,0xb2,0x66, + 0xad,0x8f,0x25,0xbe,0xb3,0x25,0x80,0x32,0x78,0x1f,0xb,0x3,0x8,0x96,0x6b,0xaf, + 0xe9,0xa4,0x55,0xf1,0xad,0x7e,0x33,0x0,0xb5,0x60,0x2b,0x20,0xd0,0x1b,0x60,0x42, + 0x84,0xb5,0x5,0x0,0x5f,0x81,0xf1,0x9,0xd4,0x4f,0x9e,0xe8,0xd,0x3a,0x52,0xda, + 0xff,0x57,0x4a,0xfb,0xdf,0xfd,0xd4,0xca,0x9c,0x1e,0x5e,0x5f,0xc2,0x26,0x74,0x98, + 0x99,0xef,0x4c,0xff,0xec,0x58,0xb5,0x6a,0x95,0xfe,0x0,0x98,0x36,0x1c,0xc4,0xc7, + 0x7b,0x80,0x75,0x7c,0xbc,0x69,0xc1,0xe3,0xfa,0x18,0x68,0x7d,0x7b,0x92,0x91,0x4a, + 0xf0,0x7,0xe4,0x94,0xf,0x20,0x93,0x15,0x0,0x93,0xd9,0x6f,0xfb,0xb,0xf2,0x3, + 0x88,0xd6,0x5b,0x77,0xe4,0x90,0xaf,0xfd,0x6d,0x30,0xe1,0x99,0xc8,0x78,0xb6,0x58, + 0xe7,0x21,0xf8,0x58,0xc7,0x12,0xdf,0xb1,0xce,0x2,0x81,0xc9,0x2f,0x84,0x34,0xad, + 0x5e,0xad,0x8e,0x6b,0xa,0x4f,0xeb,0xcd,0xbd,0x1,0x32,0x4a,0x90,0x7b,0x2,0x6c, + 0xb,0x0,0xda,0x1f,0x51,0x85,0xe8,0x56,0x2c,0x87,0x9f,0x36,0x4c,0x8,0xc8,0x4f, + 0xa6,0xe3,0xaa,0x11,0x61,0xda,0x1f,0x84,0xc7,0x87,0xc9,0x2f,0x35,0x3a,0x5b,0x1, + 0xbc,0xb4,0xc9,0xcf,0xfe,0x80,0x72,0xb7,0x2,0xd2,0x4,0x80,0x3d,0x81,0x46,0x98, + 0xf6,0x67,0x27,0xa0,0xef,0xf9,0x67,0x49,0x68,0x96,0x1c,0xdf,0x3f,0x7a,0x42,0x6d, + 0x80,0xa8,0x0,0x9b,0xf8,0x78,0x9e,0x72,0x9d,0xc1,0x96,0x2,0x9f,0x87,0xef,0x58, + 0xe7,0x63,0xa5,0xc0,0x0,0x10,0x24,0x84,0xfd,0x7,0xf,0x6c,0xc8,0x7a,0xa3,0xc, + 0x7f,0xdc,0x2,0x8f,0x21,0x48,0x26,0x94,0xe9,0xbf,0x45,0x3b,0x32,0x91,0x41,0x18, + 0x40,0x74,0x61,0xb9,0xfc,0xac,0xdd,0x91,0xdb,0x91,0x3f,0x1c,0xd0,0xea,0xac,0xe5, + 0xbb,0xba,0xba,0xf4,0x36,0x26,0x39,0x7f,0x67,0xb,0x80,0x27,0xf,0x5d,0xbc,0xf8, + 0xce,0xb4,0x72,0xca,0xdd,0xa,0xe8,0x91,0xf,0x80,0x9d,0x80,0x68,0xff,0xfb,0x16, + 0x80,0x19,0xd9,0xa7,0x57,0xcd,0x71,0x47,0x8f,0x1c,0xd1,0xcb,0x7c,0xba,0xfb,0x64, + 0x0,0x10,0x7f,0xe7,0x75,0x76,0x6,0x4a,0xa1,0x2,0xeb,0x2,0xfb,0x7f,0xfe,0xb3, + 0x3f,0xe6,0x54,0x3e,0x2c,0x0,0x8e,0x7,0xd0,0x3d,0x1,0xea,0x83,0x26,0x0,0xe7, + 0x2a,0x80,0xf9,0xf,0xb,0xe0,0xaf,0x6e,0xbb,0x2d,0xf7,0x4a,0xf7,0x31,0x40,0xf2, + 0x4c,0x1f,0x7,0xf,0x52,0xfb,0xa3,0x5d,0xf,0xcd,0xe,0xa2,0x83,0xe0,0x35,0x22, + 0x1,0xc,0x4f,0x21,0xe,0x48,0xd,0xff,0xc4,0x13,0x4f,0xa8,0xb6,0xff,0x82,0x80, + 0x10,0xe0,0x32,0xcb,0xd9,0xa,0xc8,0xda,0x4,0x90,0x31,0x0,0x2c,0x8,0xe4,0xa4, + 0x1d,0x3a,0x61,0x87,0x19,0x4c,0xc3,0xc0,0xb0,0x5d,0x44,0xfd,0x25,0xcf,0xbf,0x80, + 0x66,0x9f,0x9a,0xc8,0x68,0xfe,0xeb,0x8b,0x67,0xb8,0xba,0xbd,0x1d,0x2,0x24,0xcc, + 0x62,0x80,0xf6,0xf7,0xc2,0x84,0x89,0xae,0xfb,0xb8,0x65,0x6a,0x18,0x70,0xe2,0xd2, + 0xae,0x31,0x5e,0x34,0x60,0x60,0xe4,0xa2,0x1,0x2c,0x0,0x1d,0x30,0xa3,0x9a,0x34, + 0x37,0x37,0xd,0xa4,0xef,0x2a,0xb,0xe0,0xaf,0x1f,0x7c,0x20,0xbc,0x72,0xe,0x15, + 0x1,0x26,0x37,0x34,0xb8,0x8e,0x10,0x55,0x2f,0x15,0x96,0x2c,0x14,0xd8,0x1a,0x0, + 0xf1,0x2f,0xb9,0xe4,0x12,0xbd,0xce,0x96,0x80,0x8d,0x72,0xb6,0x2,0xb2,0x36,0x1, + 0xc2,0xa6,0xf5,0x92,0x13,0x6f,0xb0,0xf,0x40,0xa,0x1,0xc,0xd3,0xc5,0x88,0x3d, + 0xf5,0x58,0x69,0xf6,0x69,0x83,0xfc,0xb2,0x6c,0xd3,0x3d,0x1b,0xec,0x66,0x0,0x87, + 0x7,0xe3,0x5c,0x5b,0xfb,0x33,0xfe,0xf3,0x3f,0x43,0xe6,0x19,0x20,0x4a,0xcb,0x58, + 0x9c,0x96,0xb4,0x44,0x0,0xf7,0x86,0x29,0xc4,0xf0,0x73,0x7e,0xe6,0x33,0x7f,0xd5, + 0x7d,0x45,0x1d,0xca,0x12,0xf6,0xcc,0xc1,0xec,0xfc,0xc3,0x92,0x5,0x1,0x88,0xf, + 0x80,0xfc,0x58,0x2f,0x67,0x2d,0x9f,0xd,0x3e,0x1d,0xf1,0xd2,0xe3,0xc6,0x1b,0xd0, + 0x7d,0x26,0x25,0x5a,0x22,0xa9,0xc8,0x63,0x25,0xdc,0x60,0x1f,0xc0,0xdb,0xef,0x78, + 0x12,0x94,0xd3,0x56,0x29,0xe9,0xf9,0x98,0x32,0xaf,0x3e,0x77,0xf5,0xd5,0xea,0xb4, + 0x24,0xfd,0xf1,0x9d,0xd4,0xf8,0x75,0xd3,0xac,0xf2,0x8e,0xeb,0x46,0x60,0x86,0x9, + 0x8b,0xb0,0x6d,0xdf,0xfe,0xb6,0xa9,0xa2,0xba,0xfc,0xc2,0xf,0x9e,0x1c,0x70,0xdc, + 0x25,0xcd,0x85,0x6a,0x4c,0x82,0x51,0x76,0x6,0x26,0x76,0x71,0x2,0x53,0xaf,0xa0, + 0xf6,0x3f,0xbe,0xed,0x47,0x3,0xc2,0x7,0xd0,0xf9,0xf8,0x52,0x5a,0xd7,0xaf,0x81, + 0x1e,0x78,0xe0,0xfb,0x94,0xe6,0xc0,0x70,0xa8,0x18,0x80,0xe8,0xec,0xf8,0xe3,0x26, + 0x0,0xfb,0x4,0xa0,0xe9,0x59,0xeb,0x3,0xbc,0x5e,0x89,0x32,0x20,0x45,0x27,0x2b, + 0x9c,0x96,0xbf,0x77,0x8d,0x1d,0xad,0x3f,0x7c,0x4c,0x72,0xb7,0x18,0x51,0x37,0xe5, + 0x24,0xaf,0xed,0xdf,0x3c,0xc1,0xcc,0xf6,0x13,0xa7,0xf,0x2e,0x5a,0x44,0xf7,0xfc, + 0xbf,0xff,0x47,0x9f,0x9d,0x73,0x1a,0xfd,0xc5,0x9f,0x7f,0xc8,0xe7,0x10,0x9e,0x31, + 0x77,0xfb,0xd5,0x84,0x2b,0xeb,0xbc,0xf0,0xad,0x6f,0xa5,0xd6,0x5f,0x7e,0x99,0x68, + 0xf0,0xe0,0x69,0x34,0x13,0x26,0x9d,0xfa,0x8e,0x4b,0xb2,0x30,0xe8,0x1a,0xef,0xe5, + 0xf7,0xf3,0xbb,0x3,0x2d,0xe9,0xd3,0x70,0xf2,0x14,0xdd,0xff,0x5f,0x3f,0x31,0x65, + 0xf9,0xdc,0x5f,0x53,0x4f,0x37,0xde,0x78,0x53,0x59,0xf4,0x4,0x38,0xe4,0xf,0xed, + 0x3,0x32,0xda,0x1e,0x60,0x13,0x5e,0x6a,0x7e,0x2c,0x79,0x3d,0x97,0xf2,0xca,0x15, + 0x29,0xb,0xc0,0x56,0xcb,0xc2,0x74,0x96,0x7d,0xe9,0xb1,0x51,0xc2,0x29,0x8,0xb3, + 0x89,0x93,0x76,0x22,0x92,0x6e,0x52,0x33,0xfd,0xe2,0xd1,0x47,0xe9,0xb3,0x5f,0xfc, + 0x22,0xdd,0xbf,0x66,0x35,0x3d,0xf8,0xd0,0x3b,0xfa,0x30,0x36,0xe1,0x41,0x7c,0x69, + 0x9,0xf4,0x14,0x4c,0xfe,0x5a,0x11,0xc7,0x78,0x4e,0xc3,0xe4,0x74,0xcf,0xbd,0x19, + 0x17,0x0,0x2b,0x80,0x2d,0x80,0x98,0x95,0x7c,0xb3,0x4d,0x59,0x0,0x9,0x54,0x2a, + 0x64,0xc2,0x92,0x6b,0x7e,0xd8,0xfd,0xa4,0xa7,0xe,0xe5,0x7,0xee,0xda,0x43,0x7b, + 0x1f,0x1f,0x7b,0x28,0x3b,0x34,0x3e,0x6b,0x7d,0x8,0x1,0x58,0x4,0x65,0xcc,0xf1, + 0xac,0x8,0x6d,0x91,0xb7,0xa,0x2b,0x0,0xc4,0x91,0x7d,0xe9,0xbe,0x5,0xa0,0x7, + 0xaa,0xc7,0xa8,0x9f,0xd2,0xa0,0x92,0x44,0x1f,0x7a,0xcf,0x5,0x74,0xff,0x3f,0xfd, + 0x93,0xb6,0x0,0x3e,0x75,0xdd,0x4d,0x34,0x6a,0xcc,0xbb,0x8,0xa1,0x1,0x6c,0xc2, + 0x47,0xa1,0xfd,0xbf,0xfc,0x65,0x8f,0xfc,0xf8,0x1d,0xa1,0xfd,0x87,0xe,0x6b,0xa0, + 0xc6,0x23,0xa3,0xbd,0x2a,0x99,0x63,0x9a,0x36,0x6d,0xf2,0xaa,0xa9,0xa4,0x3c,0xac, + 0x80,0xc0,0xb8,0x80,0x1a,0x4f,0x72,0xa0,0xde,0xa8,0x3f,0x2c,0x97,0x64,0xa7,0x17, + 0xbf,0x0,0x1f,0xc0,0xeb,0x9f,0xfe,0x94,0xd7,0x4,0x70,0xa8,0x18,0xc8,0x88,0x3e, + 0xe9,0xbd,0xe7,0x36,0x3f,0x48,0x2e,0xb5,0x7f,0x26,0xc8,0x84,0x1c,0x28,0x93,0x1d, + 0x89,0xe5,0xa,0x5f,0x0,0xc,0xba,0xfd,0x76,0x93,0x77,0x2a,0x99,0xa,0xa3,0x65, + 0x2b,0x60,0x67,0x6a,0xe2,0xf,0x58,0x0,0x9e,0x10,0x48,0xdd,0x34,0x48,0xa4,0x91, + 0xe8,0xd2,0xc7,0xdc,0x76,0xed,0xb5,0xfa,0xeb,0x6b,0xcf,0xbd,0x42,0xcb,0x5f,0x99, + 0xa1,0xdb,0xed,0x33,0x66,0x78,0x87,0x48,0xd3,0x3d,0x57,0xf0,0x39,0x58,0xe2,0x73, + 0xef,0xbd,0x41,0x5f,0xc0,0xa7,0xfe,0xf4,0x63,0x14,0xeb,0xaa,0x4d,0x8d,0x87,0xe7, + 0x25,0xb7,0xed,0xb6,0x59,0x79,0xf1,0xbb,0x3a,0xfd,0x7a,0xc3,0x8f,0x81,0xa2,0x3a, + 0x5a,0xb6,0xeb,0x69,0xc4,0x3f,0xf3,0xd8,0xaf,0xe8,0x41,0x45,0xfe,0x8f,0x39,0xed, + 0x5f,0xd1,0x90,0x9e,0x7e,0xf6,0xee,0xcb,0x76,0xbf,0xfc,0xce,0xda,0x3f,0x24,0x1b, + 0x4f,0xd9,0x23,0xbb,0x5,0xc0,0xb0,0x5b,0x7,0xa3,0x82,0xb1,0x1,0xac,0x49,0x4f, + 0x6c,0xda,0xea,0xe5,0x0,0xf8,0xd9,0xcf,0xbc,0xf6,0xb8,0x52,0xd1,0xa7,0x8e,0x58, + 0x44,0x7b,0xf,0xcd,0xa7,0x37,0xde,0xf0,0xc8,0xb,0xed,0xcd,0x44,0x6,0xba,0x13, + 0x8,0xf2,0x1c,0x80,0x35,0x3f,0x0,0xed,0x3f,0x76,0xec,0x30,0x9a,0x7b,0xec,0x24, + 0x9a,0xc5,0xf3,0x12,0xf8,0x77,0x16,0x57,0x42,0xc1,0x6b,0x6f,0x68,0x3f,0x0,0x9c, + 0x3e,0x3b,0x4d,0x92,0x4c,0x61,0x1,0x24,0x8c,0xf7,0x57,0x1f,0x37,0x7a,0x14,0xdd, + 0x77,0xd3,0x67,0x5d,0xdb,0xbf,0x2,0x1,0x4d,0x2d,0xad,0x0,0xc,0xea,0xe1,0xed, + 0x6c,0xf2,0x73,0x97,0x1f,0xb6,0xb1,0xf,0xc0,0x16,0xa,0xc,0x3b,0x4f,0x40,0xb9, + 0x22,0xaf,0xa9,0xc1,0x18,0xd2,0x11,0x8,0xb0,0x5,0x50,0x3f,0xb9,0x59,0x93,0xeb, + 0x4b,0x17,0x2f,0xd0,0xcd,0x80,0xf3,0xd5,0x83,0x7c,0xf5,0xd9,0x35,0x34,0x64,0xc0, + 0xc7,0xe8,0x37,0xbf,0xeb,0x4f,0x3f,0xfa,0x51,0x8a,0xc8,0x4c,0x6a,0x49,0xee,0xb0, + 0x25,0xf6,0xb3,0xb7,0xbf,0xbe,0xde,0xd3,0xfc,0xf8,0xbc,0xf8,0xa2,0x32,0xf3,0x9b, + 0xe2,0xf4,0xbf,0xaf,0xfd,0x4,0xcd,0xee,0xec,0xa7,0xf7,0xb3,0xf3,0x8f,0xcd,0xff, + 0xb8,0x99,0xb4,0x24,0x93,0xf9,0xcf,0x5a,0x20,0xa6,0x2c,0x5,0x68,0xff,0x7b,0x95, + 0xe0,0xfa,0xdc,0xf7,0xef,0x77,0xda,0xbf,0x42,0x61,0x77,0xff,0x41,0x8,0xe0,0xb3, + 0x62,0xc5,0x93,0xfe,0x7e,0x6e,0xef,0xc7,0xe3,0x31,0xfd,0xc1,0x3e,0x68,0xfe,0x4a, + 0xd4,0xfe,0x40,0x40,0x0,0xac,0x35,0x9a,0xd0,0x1f,0x4c,0xc3,0x9a,0x51,0xc6,0xd3, + 0x93,0xb0,0x0,0x2c,0xe9,0xd7,0xf6,0xce,0x66,0xdf,0xbc,0x46,0x33,0x0,0x56,0xc0, + 0x79,0xaa,0x8c,0x97,0x9f,0x39,0x48,0xf5,0x35,0x1f,0xa2,0x63,0xc7,0xc7,0xfa,0xd1, + 0x7c,0x68,0x66,0x41,0x9b,0x23,0x90,0x27,0xdb,0x92,0xcd,0x7d,0x90,0x5f,0xa2,0xb1, + 0x31,0x46,0x27,0x9d,0x74,0x36,0x35,0x1d,0x4a,0x65,0xc2,0xd,0x74,0x3,0x72,0xdb, + 0x5f,0x98,0xff,0xfa,0x5,0x10,0xe6,0xbf,0x76,0x73,0x98,0x7d,0xd0,0xfe,0x9f,0x57, + 0x75,0x2e,0x6f,0x79,0xee,0x90,0xd,0xf8,0xfd,0xc3,0x86,0xf2,0x82,0xdc,0x20,0xba, + 0x35,0xc5,0x85,0xbf,0xcf,0x46,0xa5,0x68,0x7f,0x20,0xd4,0x2,0xc8,0xe6,0xf0,0x4c, + 0x69,0xff,0xf4,0xa3,0xb4,0x25,0x60,0x34,0x2c,0x2,0x87,0x10,0x56,0x9c,0x34,0x42, + 0xa0,0x7f,0x7c,0xe,0xfd,0xf8,0x47,0x97,0x52,0x22,0x36,0x84,0xce,0x3a,0xcb,0xeb, + 0xd,0xe8,0xec,0x4c,0x5,0xf8,0x60,0x9d,0xdb,0xf5,0x72,0x29,0xc3,0x82,0xa1,0xf5, + 0x81,0xf5,0x6f,0xd6,0xd0,0xc9,0x27,0xcf,0xa3,0xdb,0xcf,0xf9,0x90,0x16,0x32,0x0, + 0x77,0x2e,0x40,0xfb,0x27,0x4d,0xf7,0x80,0x9e,0xb9,0x58,0x9a,0xff,0xa8,0x9b,0xfa, + 0x40,0xfb,0xe3,0x13,0x53,0x12,0x9e,0x85,0x1c,0xfa,0xff,0xff,0x7d,0xec,0x43,0x4e, + 0xfb,0x57,0x30,0x98,0xb0,0xf6,0x10,0x5f,0x80,0xb5,0xbc,0xfd,0xb1,0x51,0x49,0xe4, + 0x7,0x2,0x9,0x41,0xce,0xbd,0xe3,0x8e,0xd8,0xe1,0xaf,0x7f,0x5d,0xdf,0x59,0xe3, + 0xd6,0xad,0x3a,0x26,0xa0,0xdf,0xd6,0xad,0x81,0x74,0xdb,0x29,0xed,0x9f,0xf0,0xb6, + 0x27,0x44,0x17,0x1a,0xd6,0xf9,0xc1,0x74,0x7a,0x9a,0x76,0xa6,0x9,0xb9,0x9c,0xa5, + 0xd6,0xd7,0x25,0x67,0x50,0xeb,0xb0,0xe1,0xb4,0x64,0xd7,0x13,0xd4,0x54,0xbf,0x46, + 0xb,0x2,0x34,0xb,0x90,0x2c,0x4,0x23,0xfa,0xce,0x3e,0x3b,0x5c,0x8,0x80,0xf8, + 0xd8,0x7,0x6c,0xdb,0x3e,0x8a,0xa6,0x4e,0x99,0x45,0x5f,0x3e,0xeb,0xb2,0x50,0xf2, + 0x7,0xc0,0x59,0x81,0xb8,0x30,0x68,0x7f,0x25,0x0,0xb8,0xc9,0xd2,0xfe,0xf6,0x26, + 0xad,0xf1,0x1b,0x26,0x4f,0xd2,0xb1,0x0,0x2b,0x7f,0x30,0x94,0x3e,0x36,0xef,0x58, + 0x41,0xf,0xd4,0xa1,0xf4,0x1,0xf2,0x32,0x91,0x73,0xcd,0xc,0x54,0x69,0xc4,0x67, + 0xa4,0x65,0x4,0xc2,0x98,0x7a,0x38,0xd4,0xda,0x15,0xf9,0x39,0x9a,0x8e,0x4c,0x92, + 0x4d,0x4d,0xa6,0x4c,0x1d,0xa2,0x89,0x54,0x7,0x3f,0xb4,0x6d,0x7c,0xcc,0x58,0x6d, + 0x7e,0xa3,0x75,0xde,0x66,0xc2,0x8b,0x67,0x82,0x88,0x47,0x46,0x53,0xbf,0xa6,0x6b, + 0xe8,0xa5,0xa6,0x73,0x69,0xdb,0xfe,0x95,0x74,0xc3,0xd,0x1b,0xe9,0xc7,0x3f,0xf6, + 0xce,0x83,0x53,0x2f,0xad,0x58,0xe3,0xd5,0xdb,0xb2,0x65,0xb0,0xb2,0x16,0x4e,0xa1, + 0x21,0x8d,0x27,0x51,0xec,0xe9,0x67,0x69,0xe6,0xd9,0x97,0xeb,0xed,0x1,0xf2,0xc3, + 0xf1,0x28,0xfb,0x19,0xd9,0x61,0x40,0xc6,0xfc,0x17,0xed,0x7f,0xbd,0x1b,0x6d,0xff, + 0xc9,0x5e,0x20,0x10,0xf0,0x83,0xab,0x3e,0x48,0x4f,0xd2,0xfd,0xd9,0x9f,0x98,0x43, + 0x45,0xc0,0xb6,0x6,0x72,0x4d,0xa,0x5a,0x69,0x8,0x65,0x33,0xac,0x0,0xdd,0xbf, + 0x9,0xed,0xad,0xbe,0xb3,0x15,0xe0,0xb,0x0,0xf6,0xb8,0x1b,0xa2,0xeb,0x71,0xf5, + 0xc6,0x56,0x4f,0xf2,0xd0,0x4a,0xb5,0x1d,0x56,0x0,0x47,0xe2,0x1d,0x57,0x42,0x80, + 0xdb,0x1b,0x7c,0xd1,0xb5,0xea,0xa1,0xb6,0xd,0xdc,0x43,0x6f,0x36,0xec,0xa2,0x1f, + 0xff,0xe4,0x77,0xd4,0xda,0x7a,0x90,0x8e,0x1e,0x39,0xa1,0xf7,0xd,0x18,0x58,0xaf, + 0xda,0xf9,0x43,0x68,0xe4,0x8,0x25,0x48,0x6a,0x86,0xd1,0xa0,0x17,0x36,0xe8,0xe8, + 0x3c,0x20,0x93,0xe6,0x4f,0xd6,0x6,0xe5,0x99,0x3f,0x81,0x89,0xaa,0xa7,0x14,0x0, + 0x80,0x6e,0x2,0xc4,0xe2,0xba,0x19,0x0,0x7,0xe0,0xc3,0xa7,0x2f,0xa1,0xd1,0x4e, + 0xfb,0x97,0x5,0xdc,0xc4,0x20,0x1,0x14,0x54,0x72,0xa8,0xf,0x80,0x33,0xeb,0x88, + 0x30,0x41,0xbd,0xe0,0xd4,0x5a,0x76,0x2f,0x80,0x9e,0xbd,0x76,0xf4,0x18,0x3d,0xc6, + 0x5e,0x7,0x57,0x28,0xf2,0xeb,0x36,0x37,0x86,0x5a,0x1a,0x27,0x5c,0xd3,0x96,0x2d, + 0xda,0x4b,0x2f,0xa3,0xeb,0x61,0x69,0xf4,0x3b,0x32,0x92,0xe6,0xee,0x9d,0x4d,0xf7, + 0x5e,0xf9,0xd7,0xf4,0xe0,0x47,0x16,0xd3,0x79,0x67,0x5c,0x4b,0xe7,0x1f,0x9f,0x40, + 0x73,0xa6,0x7d,0x44,0x6f,0x1b,0xfa,0xe2,0x3e,0xfa,0x9b,0x33,0xdf,0xab,0xc9,0xf, + 0xe2,0x73,0xb8,0x6f,0x80,0xfc,0x10,0x3c,0x8a,0xfc,0x7c,0x2d,0x19,0xbd,0x68,0x77, + 0xfd,0xf9,0x37,0x1e,0xab,0x49,0xc5,0xd,0xec,0xdd,0x4b,0x1f,0xdf,0xf1,0xa7,0x39, + 0x3f,0x34,0x7,0x87,0x4a,0x41,0x68,0x52,0x50,0xe9,0xb,0x48,0x13,0x5d,0xe8,0x36, + 0x1b,0x39,0x52,0xb,0x1,0x9f,0xe8,0xa,0x49,0xb3,0xd4,0x9a,0x5f,0x2c,0x89,0x43, + 0x71,0x95,0x25,0x0,0x21,0x70,0xc,0x7e,0x5,0x45,0xda,0x63,0x93,0x27,0x6b,0x1, + 0x73,0xe6,0xe6,0xcd,0xd4,0xaa,0xd6,0x19,0xf7,0xa1,0x9b,0x80,0xbb,0xa,0x14,0xbe, + 0x7b,0xd3,0x67,0xfd,0x75,0x36,0xc2,0x58,0x88,0xc8,0x68,0x3f,0x80,0xad,0xd,0xdd, + 0x5c,0x11,0x89,0x4c,0xc2,0x62,0xb5,0xeb,0xa7,0xa8,0x76,0xff,0xdb,0xde,0xf9,0xff, + 0xb4,0x66,0x35,0xdd,0x76,0xea,0xac,0xb0,0x47,0xe1,0x50,0xe1,0xc8,0xd5,0xb4,0x2f, + 0xe7,0x78,0xff,0x6c,0xc8,0x69,0x6a,0x30,0xed,0xc,0x44,0x74,0x20,0xba,0xd6,0x30, + 0x34,0x78,0xe7,0x2e,0x2d,0x4,0x0,0x16,0x2,0xbc,0xe4,0x75,0xd,0x24,0x5d,0xb0, + 0xba,0xe2,0x9a,0x36,0x6f,0xf6,0xd7,0x41,0xe4,0x36,0x41,0xfe,0xee,0x90,0x46,0xfc, + 0xda,0xf4,0xea,0xeb,0x6b,0x99,0xb6,0x7f,0x26,0xed,0xaf,0xef,0xc9,0x34,0x1,0xe0, + 0x0,0xfc,0x62,0xa2,0x8b,0x7e,0x3a,0xf6,0x21,0xca,0x3c,0x50,0xd8,0xa1,0xd2,0x90, + 0xeb,0xc4,0x20,0xc8,0x1c,0xc4,0xc3,0x85,0x81,0x4a,0x13,0x4,0x19,0x5,0x0,0x42, + 0x83,0xb5,0x2f,0x0,0x5f,0xc4,0x4d,0xfb,0x41,0x35,0x22,0x16,0xd7,0x27,0x3c,0x5, + 0x5,0x82,0x6e,0x2,0x70,0x52,0x11,0x63,0x5,0x60,0x70,0xe,0x1c,0x75,0xb0,0x6, + 0xd8,0x6f,0x70,0x8c,0x73,0xf9,0x67,0xa9,0x68,0x7f,0xf6,0xf0,0xb,0xc7,0x9e,0x5f, + 0x27,0x53,0xb6,0xac,0x97,0x14,0x4a,0x88,0xf3,0x8f,0xd5,0xd6,0x5,0xce,0x41,0x4f, + 0x40,0x3b,0xe6,0x4,0x48,0x76,0x51,0x6c,0xd4,0x68,0xd7,0xfe,0xaf,0x22,0x48,0xf2, + 0x77,0xd7,0xb,0x70,0xe1,0x85,0x17,0xea,0xa5,0x14,0x4,0x95,0x24,0x4,0x72,0x9e, + 0x1c,0x94,0xbb,0x4,0xfd,0xde,0x0,0x6b,0x16,0x5e,0x40,0xf,0xb3,0xb4,0x2c,0x0, + 0xdb,0xa,0x88,0x73,0xdf,0xbc,0xfe,0xe2,0x91,0xb5,0x49,0xa4,0xf0,0xe,0x43,0xd2, + 0x90,0x1e,0x4b,0x2d,0x40,0xcc,0x79,0x4c,0xfc,0x80,0x95,0x61,0xac,0x2,0xdb,0x32, + 0xe1,0x2e,0x40,0x46,0xbb,0x8e,0x3,0x88,0xd3,0x63,0x4f,0x3d,0xad,0x87,0x30,0x17, + 0x8a,0x8f,0x5f,0xd8,0x5a,0x70,0x19,0x70,0xba,0xfe,0xec,0xa9,0x7e,0x5,0x97,0xe3, + 0x90,0x19,0x3d,0x9d,0x18,0x84,0x5,0x41,0xa9,0x3b,0x1d,0xf3,0x45,0x56,0x1,0x90, + 0x66,0x5,0xd8,0x5d,0x82,0x20,0xb8,0xe8,0x76,0xd3,0x8e,0x40,0xa2,0x80,0x5,0xe0, + 0xc3,0x6a,0xa7,0x27,0x2d,0x2d,0x2e,0xa7,0xf3,0x62,0xa2,0xcb,0x7d,0x7c,0xbc,0x3c, + 0x8f,0x89,0xcf,0xc1,0x3e,0x8c,0x80,0x10,0x22,0x4f,0x18,0x24,0x91,0x8,0x44,0x8, + 0x81,0x86,0x93,0x26,0xe9,0xc8,0x45,0x90,0xbf,0xbb,0xb9,0xf,0xc2,0x70,0xed,0xfc, + 0xf6,0x40,0x1d,0xa3,0x0,0xd2,0x97,0x49,0x41,0x82,0x7b,0xfd,0xd9,0xca,0x86,0x48, + 0xaf,0xe1,0x10,0x24,0x3f,0xa7,0x5,0xf,0xcb,0xfe,0xcb,0x39,0x3,0x98,0xfc,0x40, + 0xa5,0x4d,0xc,0x92,0xf7,0xf4,0xe0,0x3e,0x58,0x20,0x88,0x50,0x3d,0x26,0x9e,0x24, + 0x1f,0xc0,0x24,0xb5,0x97,0x12,0xb6,0x40,0x90,0xdf,0xd3,0xce,0x67,0xe1,0x13,0xa3, + 0xe0,0x50,0x5f,0x73,0x8e,0x74,0x44,0x6,0x84,0x91,0xc9,0x2,0xe4,0x8d,0x3,0xf0, + 0x7a,0x1,0x1e,0x7b,0xf4,0x51,0x6a,0x5c,0x9e,0x9b,0x23,0x8,0xa4,0xd7,0xb7,0x8e, + 0x5e,0xf,0x11,0x36,0xed,0x5d,0xda,0xcb,0x30,0xb3,0x6f,0xcb,0x56,0x1a,0x39,0x79, + 0x12,0xed,0xd9,0xb4,0x39,0x43,0x29,0x1e,0x70,0xc,0xd0,0x89,0xb2,0x32,0x1c,0x83, + 0x6b,0x40,0x20,0x38,0x41,0x10,0xd,0x32,0x4d,0xc,0xc2,0xe0,0xdf,0xd0,0xfe,0xe, + 0x21,0xc1,0x42,0x80,0x5,0x44,0xa5,0xc4,0x7,0x74,0x2b,0x0,0x60,0x5,0x1c,0xf9, + 0xc6,0x37,0x90,0x39,0x51,0x8f,0xf,0x68,0x34,0xf9,0xe6,0x39,0xc9,0x26,0x1c,0x82, + 0x3a,0xea,0x4f,0x99,0xde,0xb2,0x57,0xc0,0x17,0x2,0xc2,0x5c,0x67,0xd8,0x42,0xc0, + 0x16,0x8,0xf6,0x77,0xdf,0xbb,0x1f,0x22,0x4,0x6c,0xf2,0x4b,0xb3,0x9f,0xeb,0xa0, + 0xe3,0x0,0x84,0xf,0x40,0xb7,0xff,0x95,0x10,0x40,0x36,0xa0,0xe4,0xd6,0xec,0xcd, + 0xf,0x40,0x12,0x5f,0x2f,0x89,0x2f,0xe9,0x5d,0xd3,0x26,0x7b,0x77,0xe4,0xb7,0x8f, + 0x61,0x81,0x31,0x7c,0x52,0x33,0xc5,0x95,0x90,0xea,0xb2,0x2c,0xb,0x27,0x8,0x8a, + 0x3,0x90,0x98,0x49,0x2e,0xd3,0x82,0xc9,0x6c,0x41,0xdc,0xde,0xaf,0xea,0x89,0x41, + 0x2,0x37,0x6a,0xd6,0x99,0x78,0x2c,0x8,0x38,0x64,0x4f,0x92,0xce,0x6,0x13,0x58, + 0x6a,0xf4,0x30,0xc8,0x7d,0x72,0x19,0x20,0x3f,0xc0,0xbd,0x0,0x21,0xe,0x49,0x5b, + 0x8,0x30,0xfc,0x71,0x0,0xe6,0x7,0xdf,0xfb,0xf9,0x41,0x94,0x9,0x20,0x3e,0x9b, + 0xfa,0xfa,0x83,0x1c,0x83,0x66,0x4,0x21,0x34,0x3d,0x48,0x9b,0x46,0x76,0x19,0xc3, + 0x9c,0xed,0x23,0xc0,0x65,0xec,0xdb,0xec,0x95,0xb9,0x5f,0x95,0x8d,0xeb,0xd4,0x84, + 0x34,0x93,0x20,0x8,0xae,0x33,0x2,0xc9,0x21,0x77,0x64,0xd3,0xfe,0x4c,0x7e,0xf9, + 0x9e,0xf3,0xa4,0x21,0xc,0xfc,0xe6,0x3c,0x84,0x18,0x98,0x5f,0x21,0x13,0x83,0xe4, + 0x54,0xfb,0x17,0xbe,0xf6,0xb5,0xe4,0xac,0xb8,0x97,0x2f,0x5d,0x27,0xd,0x15,0xd1, + 0x80,0x3e,0x29,0x45,0xbf,0x7b,0xc0,0xf9,0x46,0x94,0x46,0x42,0xef,0xa0,0x44,0x70, + 0xb4,0x8f,0xd4,0x7a,0xf6,0x77,0x1b,0xf1,0xec,0x72,0xcb,0xbe,0xbe,0xdd,0x3,0xe0, + 0x47,0x1,0x26,0x13,0x54,0x7b,0xd5,0xfb,0xe9,0xc9,0xab,0x82,0xe1,0xbf,0xb6,0xc6, + 0xaf,0xc9,0xa0,0xe9,0xd3,0xea,0xdb,0x4d,0xbd,0x32,0x57,0x38,0xe4,0x19,0x18,0xf8, + 0x4d,0x5,0x78,0x9f,0xb1,0x22,0x5e,0x52,0x38,0x31,0x1f,0xa9,0x42,0x8b,0xa0,0x27, + 0x91,0x80,0x52,0x0,0x70,0xbb,0x5f,0x66,0xf3,0xe1,0x3c,0x81,0x80,0xcc,0x16,0xcc, + 0x24,0xe7,0xa4,0x21,0x77,0xdd,0x15,0xcc,0x8,0xd4,0x9d,0x15,0x50,0xea,0x91,0x80, + 0x39,0x9f,0xac,0x9b,0x1,0xe4,0x79,0xaa,0x1b,0x4d,0x4c,0x0,0x90,0x49,0x0,0x0, + 0xb6,0x10,0x8,0xd3,0xc8,0x1,0x14,0x40,0x22,0x9f,0xec,0xe8,0x2d,0x10,0xd6,0x88, + 0x1d,0x6,0xac,0xdb,0xff,0x46,0xe2,0x2f,0xdb,0xf4,0xe,0x1d,0xfd,0x5a,0x7f,0x1a, + 0x25,0xba,0x0,0x25,0xf9,0x6d,0xe2,0xa7,0xb5,0xed,0xc3,0x88,0xbf,0xa3,0x85,0x68, + 0xfc,0x44,0xa2,0x6d,0xdd,0x37,0x2d,0xfc,0xe3,0xc6,0x4f,0x34,0x37,0x21,0x4,0x80, + 0x25,0xc,0x58,0x10,0x24,0x4d,0x1e,0x46,0x46,0x35,0xa,0x81,0x9e,0x8,0x0,0xa9, + 0xbd,0xe5,0x64,0xa0,0x3c,0x33,0x10,0xa7,0x7,0x93,0x7d,0xfe,0xbc,0x9f,0x13,0x83, + 0x60,0xc8,0x30,0x26,0x7,0x91,0x65,0xad,0x58,0xb1,0x22,0x6b,0x5a,0xb0,0x52,0x17, + 0x0,0x39,0xb3,0x6d,0xad,0xd5,0xfe,0xf5,0xc3,0x83,0x2d,0x53,0x3e,0x13,0xc9,0x93, + 0x98,0x8f,0xcf,0x4,0xe7,0x30,0x59,0xe5,0x92,0x43,0x87,0xe5,0xf6,0x4c,0x8,0x3b, + 0x9f,0xaf,0x9,0xf2,0xa7,0xb5,0xfd,0xad,0x1c,0x80,0xc9,0x44,0x52,0x7f,0xae,0x52, + 0x3f,0x64,0x18,0xf9,0xe3,0x21,0xe4,0xf,0xac,0xdb,0x43,0x16,0x41,0x7a,0xac,0xe7, + 0x43,0x7e,0x80,0x8f,0xc3,0x12,0x1f,0x9c,0xcf,0x65,0xa1,0x79,0x23,0x4,0x8b,0x6e, + 0x6e,0x6c,0xde,0xe2,0xa5,0xb1,0x46,0x33,0xc4,0xbc,0x51,0xb8,0x5f,0xd7,0x24,0xc8, + 0xf,0x9c,0xa,0x9c,0x27,0x5,0xe1,0x26,0x0,0x4f,0x9,0x86,0xef,0x72,0x4a,0x30, + 0xce,0x16,0x4,0xf2,0x87,0xa1,0x9c,0x7d,0x1,0x79,0xab,0x5b,0x39,0xf3,0x6e,0x20, + 0xe5,0x96,0xe9,0xf3,0x67,0xf2,0xc9,0x98,0x0,0x6d,0x46,0x61,0x42,0xe,0xcc,0xc0, + 0x62,0xf9,0x8,0x6c,0x81,0xe1,0x87,0x16,0x2b,0x81,0x11,0xf6,0xb1,0x85,0x83,0xed, + 0xf4,0x43,0xdb,0x9e,0x89,0x1f,0xb,0xb1,0x26,0xf4,0x48,0xc0,0x78,0x4c,0xf,0x2, + 0xc2,0xcc,0x46,0xb,0x1e,0xfb,0x2c,0x7d,0xfe,0x77,0x5f,0xa2,0x7,0x3b,0x1f,0xf7, + 0xef,0xf,0x3f,0x7e,0x68,0xfb,0x5e,0x3f,0x31,0xd1,0x8e,0x7,0x69,0xed,0x68,0x44, + 0x26,0x35,0x1f,0x3,0xe7,0xe8,0xfe,0x83,0xfa,0xa3,0xd7,0xf,0x1e,0xf6,0xbe,0x63, + 0x69,0xd6,0xd3,0xfc,0x2,0x2c,0x10,0xc2,0x4,0xc1,0x96,0xad,0xfe,0xf3,0xad,0x71, + 0x42,0x20,0x6f,0xc8,0x6e,0x3f,0x4e,0x8,0xca,0x60,0xe2,0x33,0x64,0x66,0xe0,0xee, + 0x66,0x7,0x2a,0x57,0xe4,0x2c,0x0,0x30,0x3e,0x0,0xcb,0x5c,0xa5,0x5d,0xe0,0xb8, + 0x78,0x3c,0x94,0xf0,0x52,0x18,0x4,0x48,0x6c,0x4,0x6,0x5e,0x6c,0x7b,0xc9,0xfb, + 0x6d,0x2f,0xbf,0xdf,0xdc,0x30,0xc7,0xe8,0x2c,0xbf,0x56,0xfa,0xef,0x54,0xf2,0xd2, + 0x54,0x1e,0xf8,0x5f,0xdf,0xff,0x7d,0x9a,0x77,0xfb,0xed,0xf4,0x9b,0x33,0xcf,0xa4, + 0xd6,0x6d,0x2d,0x4,0x5d,0x90,0xd1,0xb1,0xc7,0x64,0x67,0x72,0x4a,0xd8,0xdb,0xa0, + 0xa5,0xf7,0xee,0xd7,0xf5,0x49,0x8c,0x1a,0xe1,0x7d,0xdf,0xbd,0xd7,0x9f,0xfe,0x38, + 0x31,0x62,0x98,0xbf,0xae,0x5,0x2,0x8e,0x35,0xc2,0xc2,0xbf,0xa6,0xb4,0xc,0x70, + 0x6d,0xa3,0xa9,0x20,0x4,0xf4,0x67,0x6b,0x8b,0x6f,0xa9,0x38,0x21,0x90,0x3f,0x78, + 0x1a,0x30,0xd6,0xfc,0xfc,0xce,0xf2,0x4c,0x40,0x76,0x76,0xe0,0x4a,0x23,0x3f,0x90, + 0xb3,0x0,0x38,0x62,0x6,0x7,0xf9,0x3e,0x0,0xb2,0xb2,0xee,0xc6,0x83,0xf1,0xf7, + 0xd2,0x3b,0x8a,0x21,0xc2,0x61,0xcd,0x2,0x5b,0xfb,0xb3,0xf6,0x86,0xc9,0xae,0xe7, + 0x20,0x54,0x5a,0xdc,0x5f,0xa2,0x9,0xa1,0x96,0xb6,0x4f,0x21,0xcc,0xb,0xab,0x8f, + 0x45,0xdd,0xc4,0x3e,0x26,0x7f,0xcc,0xc4,0x2,0x24,0xb7,0x6c,0xf5,0xf7,0x2f,0x33, + 0x5d,0x9b,0x6d,0x4a,0x0,0xc0,0xcc,0xf6,0x9d,0x9c,0xd2,0xd4,0x47,0x79,0x4c,0x46, + 0x80,0x9,0xcf,0x4b,0x26,0x3c,0x6b,0x79,0x90,0xbd,0xae,0x8e,0xe2,0x87,0x8e,0xe8, + 0xed,0x9a,0xf0,0x78,0x3e,0x43,0x7,0xeb,0xb2,0xb0,0x9f,0xd7,0x35,0x70,0x2c,0xce, + 0x67,0xab,0x1,0xeb,0x7c,0x6d,0xbe,0x1e,0x7f,0xdf,0xb5,0xdd,0xaf,0xfb,0x1e,0xd3, + 0x63,0xe0,0x90,0x3b,0x98,0xe8,0x72,0x5a,0x70,0x39,0x9,0xa8,0x4c,0x4,0x6a,0xb, + 0x83,0x5,0xb,0xd2,0x9b,0x1,0xe5,0xdc,0x13,0xd0,0xa3,0x37,0x27,0xb4,0x9,0x20, + 0xa0,0x89,0x89,0xa8,0x40,0x36,0xc7,0x6b,0xe2,0x1,0xe2,0x22,0x2a,0xcf,0x33,0xd7, + 0xe3,0x3e,0xb1,0xf5,0x7c,0x83,0xf0,0xcc,0x5b,0x1e,0xfb,0x54,0x4d,0x3d,0xa2,0xe8, + 0xfd,0xd2,0x2,0x30,0x8e,0x1a,0x29,0x4c,0x60,0x2d,0x60,0x68,0xb2,0x76,0x6,0x9a, + 0x1c,0x80,0x80,0x97,0x8,0x24,0xa6,0x9b,0x0,0x7a,0x2a,0x34,0xa5,0x41,0xaf,0x9c, + 0x34,0x99,0xbe,0x38,0x7f,0x3e,0x75,0x1d,0x3f,0x4e,0xb5,0x38,0x1e,0xe4,0xda,0xbb, + 0x5b,0xdd,0xe4,0x31,0x43,0x6c,0x75,0xfc,0xce,0x6d,0x1,0x6b,0x42,0xa,0x6,0x36, + 0xe1,0xfd,0x25,0x93,0x5d,0x11,0xda,0x9f,0x5,0x5,0x84,0x3f,0x70,0x28,0xb5,0x4, + 0x40,0x78,0x5e,0xc7,0x33,0x13,0xc2,0x40,0x93,0x1f,0xfb,0xb9,0x79,0xc0,0x96,0xc7, + 0xf6,0xad,0x9e,0x0,0x1a,0x3b,0x21,0x25,0xa4,0xd4,0x87,0x9b,0x5,0xb8,0xdf,0xcb, + 0xa7,0xbe,0x9d,0xdb,0x8f,0x58,0xa5,0x90,0x51,0x7d,0xb6,0xb3,0x8f,0x35,0xbc,0x9c, + 0x17,0x10,0x60,0xd2,0xe3,0x71,0x73,0x2,0xd1,0x4a,0x41,0x4e,0xa2,0xb,0xda,0x3f, + 0x69,0xa4,0x24,0x46,0x5,0xfa,0x1,0x41,0xa2,0x2b,0x50,0xb6,0x63,0xc3,0x3c,0xff, + 0x5a,0x10,0xe8,0x63,0x32,0xcf,0xc,0xc2,0x66,0x3a,0x67,0xec,0xe1,0x75,0xdf,0x74, + 0xf,0x83,0x49,0x43,0x6,0x81,0xc3,0x16,0x81,0xff,0xc3,0x9a,0x64,0x25,0xb0,0x40, + 0x58,0xb0,0x20,0xd,0x98,0x16,0x0,0x98,0xd0,0xd4,0x44,0xe1,0x2d,0x4f,0x74,0xd2, + 0x87,0x9e,0x59,0xe9,0x3d,0xe,0x26,0xba,0xbe,0x37,0xf5,0x51,0x82,0x84,0x76,0x9b, + 0xb1,0xf,0xc6,0xeb,0xef,0x99,0xe9,0x9e,0x20,0xe9,0x6e,0xa6,0x93,0xc4,0xd6,0x6d, + 0xde,0xa,0xb,0xd,0xd3,0x6b,0x10,0x1f,0x3f,0x56,0xef,0x8b,0x37,0x8f,0x4f,0x3f, + 0x49,0xd5,0x17,0x42,0x44,0xb,0x88,0xe,0x6f,0xc2,0x12,0x2d,0x54,0x18,0xd6,0xec, + 0x46,0x5a,0x20,0x28,0xc,0x1b,0xe7,0x9,0xc0,0x7f,0x5f,0xd5,0x98,0xb5,0x4e,0xe5, + 0x8e,0x42,0xbb,0x1,0xf9,0x3c,0x7e,0x57,0xec,0x99,0x80,0x33,0x59,0x1,0x78,0xec, + 0xf6,0xc4,0x20,0x5c,0x76,0x26,0x94,0x7a,0x2f,0x40,0x5e,0xa1,0xc0,0x7c,0x9b,0xdc, + 0xd,0x88,0xc0,0x18,0x8,0x6,0xbf,0x1b,0x10,0xed,0x5d,0xa5,0xd1,0xe5,0xd0,0x60, + 0x69,0xbe,0x33,0x6c,0xa2,0x7b,0xce,0xba,0x98,0xb6,0x18,0xda,0x56,0x3d,0x93,0x3a, + 0x4e,0x9,0x16,0xcc,0x3b,0xc8,0xdb,0xf4,0x1c,0x84,0xa6,0x37,0xc2,0x16,0xe,0x3c, + 0x63,0x31,0x20,0xbb,0x1f,0x53,0xe5,0x9b,0xfe,0x7f,0x38,0x7e,0xa0,0x31,0xe3,0xde, + 0xe0,0x22,0xd4,0xf9,0xa,0x65,0x5,0x5c,0xf1,0x7f,0x1f,0xa6,0x65,0x37,0x7c,0x32, + 0x45,0x2c,0xbd,0x54,0x9f,0x5d,0xea,0x1e,0x3a,0x91,0xc1,0x54,0x11,0xb1,0xbe,0x81, + 0x62,0x87,0x8f,0x28,0xed,0x5c,0x4b,0x89,0x21,0x83,0xb5,0xa9,0xaf,0xb5,0xbc,0x10, + 0x2,0x9a,0xf0,0xbe,0xd9,0xbe,0x99,0x68,0xfc,0xa4,0xe0,0xfa,0x2e,0xb5,0x7f,0x6c, + 0x33,0x25,0x7e,0xff,0x3f,0xfa,0x7b,0x62,0xdb,0x8e,0x54,0x10,0x15,0xb,0x3,0xcb, + 0x52,0xd0,0xfb,0xd8,0x37,0x0,0x6b,0x67,0xd8,0x10,0xff,0x8d,0xc2,0xf6,0x84,0xd9, + 0xbe,0x7f,0xed,0x1b,0x44,0xb3,0x4e,0xa5,0xcb,0x37,0xff,0x90,0x96,0x4f,0xfa,0x54, + 0x6e,0x3f,0x6a,0x95,0x82,0x1d,0x80,0xb2,0x9b,0xf,0x90,0x42,0x0,0xc0,0x3a,0xd2, + 0x83,0xdb,0xdd,0x7f,0x95,0x82,0xac,0xd2,0x43,0x6b,0x7e,0xac,0xa8,0x87,0xd5,0x28, + 0x35,0x3f,0x6b,0x43,0x85,0x9a,0xed,0x3b,0xbc,0xef,0xc6,0x4c,0xcd,0x14,0x7c,0x3, + 0xa4,0x8,0xf,0xc2,0x78,0x3,0x8b,0x92,0xc6,0x7c,0xe5,0x9a,0x84,0x55,0x48,0x4f, + 0xf9,0x65,0x52,0x78,0xc7,0x27,0x36,0xa7,0x26,0x73,0x14,0xc2,0x40,0x26,0x27,0xe5, + 0x69,0xbe,0xa4,0x5,0xc2,0x2,0x82,0xa3,0x0,0x59,0x8,0x68,0xc9,0xae,0x48,0xac, + 0xad,0x80,0x67,0x3d,0xf,0xb1,0xdf,0x7,0x6f,0xa6,0x47,0x8b,0x75,0x74,0x52,0xac, + 0xbd,0x5d,0x9,0xc,0x55,0x7e,0xa3,0x12,0x2,0xc7,0xdb,0xbc,0xf0,0x67,0x43,0x7c, + 0x49,0xfa,0x98,0x22,0x3a,0x3f,0x33,0x8d,0x7d,0x7,0x28,0x36,0x7c,0xa8,0x77,0x63, + 0x32,0xa0,0xd2,0x58,0x1f,0x49,0x16,0x10,0x7c,0x5d,0x58,0x18,0x93,0x9a,0x83,0xf, + 0x80,0x2d,0x2,0x90,0x5d,0x91,0x3f,0xae,0xca,0xb4,0x85,0x80,0x3e,0xbd,0xc5,0xf8, + 0x6,0x76,0x6f,0xa7,0xe5,0xe7,0xdc,0x19,0xf2,0x24,0x2b,0x3,0x3d,0x4d,0x9,0x26, + 0xad,0x0,0x8,0x0,0x9c,0xcb,0x7d,0xfb,0xc,0x26,0xbe,0x6c,0xd7,0x87,0xcd,0xc, + 0x94,0xeb,0x58,0x80,0xb2,0xb6,0x0,0xec,0x5b,0x93,0x1,0x40,0x8c,0x2e,0x65,0x76, + 0x72,0x5c,0xbe,0xd4,0xfe,0x81,0x6c,0xc1,0x24,0xc8,0xcf,0x61,0x97,0x5b,0x5a,0xfc, + 0xda,0xc7,0x40,0x6a,0xee,0xde,0x32,0xeb,0x58,0x32,0x62,0xf6,0x52,0x67,0x23,0x4e, + 0x68,0x41,0x52,0x8f,0x51,0x7d,0xa2,0xc9,0x40,0xf2,0x18,0x79,0x2f,0x26,0x27,0x80, + 0xb4,0x3c,0xf4,0x76,0xd3,0x4e,0xbf,0x62,0xe2,0x24,0x65,0x5,0xfc,0x84,0x96,0x7d, + 0xf2,0x4f,0x2,0x3,0x9d,0x62,0x27,0x94,0x30,0xe9,0x4a,0x50,0xb2,0xbd,0x43,0x7d, + 0x8e,0x2a,0x72,0x9d,0x50,0xcb,0x76,0x8a,0xc1,0x57,0x60,0xb4,0xbf,0xbc,0x52,0x12, + 0x9a,0x7b,0xe4,0x70,0x22,0x76,0xe2,0xa9,0x75,0xfd,0x1c,0xf7,0xec,0xa3,0x18,0xb6, + 0x3,0x28,0x57,0x9,0xcc,0xe4,0xe8,0xf1,0x14,0xdb,0x61,0xda,0xef,0xca,0x2a,0xe0, + 0xf5,0x84,0x9c,0xfe,0xc8,0x8,0x4,0xed,0x17,0x80,0x65,0x20,0x2c,0x1,0xbd,0x2e, + 0x84,0xb1,0xff,0x96,0xa9,0x6d,0x97,0xff,0xfe,0xae,0x8a,0x16,0x2,0x3d,0x41,0xd8, + 0xc4,0x20,0xc,0x8,0x1,0x6f,0x52,0x90,0x58,0x4e,0x73,0x3,0x54,0xa,0x32,0x3a, + 0x1,0x11,0xfe,0xab,0xd3,0x80,0x1b,0xed,0x2f,0x9f,0x4a,0x6b,0x73,0x8a,0x9c,0xda, + 0x2,0x10,0xed,0x7f,0xdf,0xdc,0x57,0xe4,0xe4,0xb8,0x7b,0x24,0xde,0x0,0xf1,0x7d, + 0xcd,0xab,0x3e,0xd0,0xe4,0x4c,0x7e,0x30,0x4,0xdf,0x1b,0x2e,0xbc,0x40,0x47,0xe7, + 0x41,0x1b,0x2f,0x57,0x4b,0xbd,0xae,0x3e,0xf5,0x93,0x27,0xd1,0x52,0xb3,0x5c,0x62, + 0x96,0x98,0x9a,0x1c,0xe4,0x6f,0x37,0xcd,0x80,0x7e,0x6a,0x1d,0x42,0x47,0x13,0x1d, + 0xf5,0x36,0x3e,0x81,0x40,0xef,0x83,0xc8,0x5c,0xac,0xaf,0x2b,0xe6,0x2e,0x87,0x4f, + 0xe0,0x33,0xf,0x3f,0x42,0x63,0x5f,0x7f,0x3d,0x40,0x24,0xdd,0x6,0x87,0xd9,0x7f, + 0x50,0x11,0x1b,0xc9,0x4f,0x5b,0xb6,0x28,0x2d,0xbf,0xc5,0xb4,0xe5,0xd5,0x79,0x8a, + 0xd8,0xfa,0x50,0x45,0xc6,0xa4,0x21,0x29,0xc9,0xbe,0x7d,0xac,0xf3,0x76,0x1c,0xc7, + 0x9e,0x7e,0xd4,0x61,0x87,0x69,0x8a,0x18,0xf2,0xc3,0x1a,0xc0,0x3a,0xa7,0x54,0xf, + 0xf8,0x7,0xb8,0x99,0x61,0x7a,0x27,0x7c,0xad,0xf,0xeb,0x82,0x8c,0x15,0x82,0x7d, + 0x68,0x62,0x28,0xb,0x1,0x80,0x10,0x70,0x48,0x21,0x9f,0x89,0x41,0x58,0xb1,0x87, + 0x5,0xff,0x54,0xca,0x48,0x40,0x20,0xa3,0xf9,0x80,0x3c,0x0,0x8d,0x2d,0xa6,0xcb, + 0x2b,0x6c,0xca,0x14,0x3,0xce,0xbb,0xef,0x77,0xc9,0xe9,0x17,0xb4,0xc6,0x6f,0x9f, + 0xeb,0xac,0x3b,0xea,0x32,0x49,0xd3,0xd5,0xc6,0xa4,0xe7,0xd2,0x40,0x6c,0x59,0x91, + 0xd,0x23,0x86,0x53,0xa7,0x7a,0xd9,0xeb,0xb8,0x6f,0xd6,0xba,0x1e,0x28,0xb,0xfa, + 0x4c,0xdd,0xbb,0x8f,0xde,0x1a,0x3e,0x8c,0xa6,0xee,0xdb,0x4f,0x1f,0x5e,0xb4,0x48, + 0xb,0x1e,0x7d,0xbc,0x89,0x3,0x8,0x1b,0x87,0xa0,0x73,0x2,0x88,0xfa,0x11,0x3b, + 0x2f,0x79,0x48,0x6e,0x53,0x7f,0xba,0x6f,0xd6,0x29,0xf4,0x95,0x7f,0xf2,0xe6,0x22, + 0x8b,0x81,0xfc,0xed,0x27,0x28,0xa6,0xc8,0xaf,0xcb,0xdf,0xef,0x91,0xdd,0x27,0x37, + 0x5a,0x8,0xaa,0x1e,0x5a,0xe3,0xb3,0x66,0x56,0xa8,0x33,0x69,0xcf,0x12,0x20,0xaa, + 0x79,0x49,0x3a,0x4c,0xcf,0x89,0xb7,0xc3,0x44,0x55,0xc2,0x8c,0xe7,0xba,0x8d,0x6d, + 0x4e,0xed,0xb3,0x9a,0x1,0x89,0xcd,0x5b,0x53,0xdf,0x11,0xa,0x8c,0x66,0x0,0x2c, + 0x8d,0x80,0xc3,0x92,0x3c,0x7f,0x2,0x0,0x21,0x80,0xfa,0xa8,0xe3,0x2a,0xd1,0xa, + 0x28,0x34,0x2b,0x30,0xde,0x53,0xe9,0x10,0xcc,0x7,0xf9,0x92,0xbf,0xd4,0x9b,0x0, + 0xa1,0x16,0xc0,0x11,0x93,0x16,0xbc,0x55,0xbe,0xb4,0x12,0x8,0x9f,0x44,0xe6,0xdd, + 0xed,0xa9,0xf0,0x5d,0xdf,0xd1,0xf6,0xce,0x66,0xff,0x3b,0xc8,0x8f,0xae,0x36,0x54, + 0x11,0xb5,0xac,0x31,0xc4,0x5f,0x66,0xb4,0x3b,0x3e,0x7f,0x54,0x84,0xc7,0xe7,0x31, + 0xf5,0x82,0x3f,0x36,0x71,0x2,0xbd,0xd9,0xbf,0x3f,0x6d,0x6c,0x68,0xa0,0x75,0x6a, + 0xa9,0x3f,0x4d,0x58,0x36,0x6a,0x87,0xa3,0x8e,0x24,0x24,0xef,0xe1,0xbf,0xff,0xb3, + 0x5e,0x8a,0xf0,0xab,0xd4,0xf2,0xdb,0x90,0xde,0xe8,0xfa,0x53,0x1f,0x3b,0xa0,0x8, + 0xf0,0xfd,0x12,0xa3,0xc7,0x4,0x9f,0x9c,0x65,0x5,0xa0,0xfc,0x93,0xdb,0xda,0xa8, + 0xe,0x1a,0x1f,0x9a,0xd9,0x84,0x10,0x27,0xb5,0xe5,0xe0,0x39,0x3c,0xf5,0xf7,0x23, + 0xc7,0x3c,0xf2,0x1f,0x38,0xe8,0x6b,0xfc,0x7a,0x45,0x7a,0x10,0xbf,0x6,0x59,0x93, + 0x10,0x5c,0x82,0x2e,0x4e,0x75,0x78,0x97,0xe9,0x72,0xac,0x35,0xb1,0x13,0xb5,0xdc, + 0x8c,0x62,0x27,0x24,0x96,0xd8,0x61,0xcc,0x7f,0x68,0x7d,0x9f,0xec,0x5d,0xc6,0x39, + 0x28,0x7d,0x2,0x6c,0xfa,0x9b,0x75,0x9f,0xfc,0x2d,0xd6,0xc8,0x4a,0x75,0x5f,0xb5, + 0xaf,0xbc,0x16,0xfe,0xfb,0x95,0x31,0x24,0xf9,0x7b,0xa,0x9e,0x18,0x24,0x6c,0x86, + 0xa0,0x4c,0xe0,0xe3,0x39,0x7c,0xb8,0x52,0x10,0xea,0x3,0xc0,0xed,0xf9,0xdd,0x7c, + 0x61,0x41,0x26,0x32,0x2b,0x10,0x5,0xf3,0xee,0x73,0x1b,0x5b,0x7b,0xdb,0x15,0xf9, + 0x35,0xc9,0xd0,0xa6,0xc7,0x77,0x65,0x66,0x2f,0x53,0xe6,0x3d,0x5e,0x59,0x68,0x7a, + 0x2c,0x5f,0x6d,0xf4,0x52,0x60,0xad,0x1d,0x34,0x98,0xf6,0xef,0xd8,0x41,0xc7,0x4f, + 0x78,0xf3,0x2,0xf4,0x6f,0xf0,0x6,0xb8,0x5c,0xd0,0xcf,0x5b,0x42,0x10,0xe8,0xba, + 0x99,0x87,0xdf,0x2e,0xe6,0x19,0xb0,0x11,0x1f,0xe5,0xd,0x51,0x66,0xc2,0xdb,0x11, + 0x83,0xd0,0xe6,0x1,0x5f,0x0,0x37,0x5f,0x3a,0x3a,0x55,0x5b,0x7b,0x1f,0x2d,0xbe, + 0xff,0x7e,0xba,0xfd,0x8b,0x5f,0xf4,0x9a,0x6,0x70,0x0,0x2a,0xc2,0x27,0x3b,0xb8, + 0xf9,0xa0,0x9a,0x17,0x3,0x9b,0x28,0xb9,0x2f,0x65,0xca,0x83,0xf8,0x9,0x78,0xe7, + 0xd5,0x67,0x42,0xb2,0x8d,0x9a,0x3b,0xf,0x50,0x6c,0xcf,0x26,0x6a,0x6d,0x3b,0x48, + 0x7,0xe,0x1c,0x57,0xad,0x7,0xed,0xc6,0xa4,0x21,0x83,0xeb,0x68,0xe8,0xe0,0xc1, + 0xd4,0xb0,0x7d,0x28,0xb5,0x8c,0x99,0x4e,0x5b,0x68,0x9a,0x47,0x7e,0x58,0x2,0xc6, + 0xe2,0x81,0x16,0x47,0x17,0xa1,0x1f,0x43,0x0,0x2b,0xc4,0x8f,0x29,0x30,0x5d,0x8f, + 0x21,0xea,0x24,0x3e,0x61,0x5c,0xca,0x2,0x10,0x2f,0xe8,0x65,0x97,0x55,0xd6,0xb, + 0x1b,0x15,0xdc,0xc4,0x20,0x1e,0x42,0xcd,0x87,0xc3,0x66,0xe4,0x9f,0x2f,0x4,0x42, + 0x5e,0x38,0x39,0xe5,0x96,0x4c,0xb8,0x21,0x9d,0x7d,0xda,0x99,0x47,0x9e,0x35,0xb0, + 0xa4,0xf3,0x84,0xe,0xb3,0x5d,0x3f,0x7a,0x14,0xad,0x57,0xa4,0x46,0x26,0x9c,0x67, + 0x5a,0xdb,0xe9,0x58,0x87,0x22,0x57,0xac,0x93,0xba,0xd4,0xbf,0xe9,0x33,0xea,0xe8, + 0xa5,0x17,0xdb,0xe8,0x94,0x53,0x30,0x31,0x48,0x3f,0x6a,0xa8,0x1f,0xac,0x2e,0x31, + 0x48,0x29,0xb3,0x1,0xaa,0x59,0xdc,0x48,0xe3,0x95,0x9,0xdf,0xa4,0x4,0x4,0xae, + 0x3a,0xf3,0x78,0x2b,0xdd,0xa8,0x48,0x8a,0x59,0x88,0x3f,0xab,0x96,0x98,0x87,0x90, + 0xbb,0x22,0xed,0xe4,0x20,0x36,0x64,0x7d,0xdb,0x95,0xc5,0x92,0xdc,0xb6,0xcd,0x6f, + 0x6,0x24,0x7,0xf,0xa2,0x7b,0x95,0xc6,0x7d,0x66,0xc6,0xc,0x7a,0xe5,0x8c,0xb9, + 0x74,0x42,0x9,0xb5,0xa3,0xb1,0x38,0x75,0x1c,0x3d,0xec,0x37,0x17,0x8,0xdd,0x7f, + 0xa,0xd0,0xfa,0x7a,0xae,0x3,0xb5,0x7d,0x46,0xd7,0x21,0x9a,0x1e,0xdf,0x46,0x5b, + 0x37,0xad,0xa5,0x8d,0x1b,0xbd,0xc3,0xc0,0xdd,0x29,0x53,0x88,0xde,0x7c,0x93,0xf4, + 0x3d,0x35,0x36,0x7a,0x5c,0xc6,0x7,0x7e,0xbe,0xda,0xf8,0x64,0x3a,0x32,0xf3,0x42, + 0x1a,0xab,0xc,0x8e,0x5f,0x4c,0x3d,0x99,0x68,0xf4,0x78,0xaf,0xfd,0x7f,0xfa,0x6c, + 0x53,0x51,0xd3,0x1c,0xc0,0xf5,0x60,0x69,0x40,0x8,0xa0,0xe,0x22,0x3d,0x9b,0x7f, + 0x4f,0x2d,0xa9,0xe8,0xc0,0xd8,0x4e,0x6f,0x4e,0x46,0xed,0xb,0x18,0x3e,0x94,0x92, + 0x77,0xfc,0x5d,0x45,0xbe,0xc0,0x20,0x67,0xa9,0x47,0xe1,0x95,0x7a,0x13,0x20,0xcd, + 0x2,0x80,0xf9,0xef,0xcf,0x4,0xa4,0x8,0xc5,0x9a,0x5e,0x2e,0xbd,0xcb,0xa6,0xcc, + 0x6b,0xf9,0x23,0x78,0xed,0xfe,0xcd,0x1e,0xf9,0xd1,0xcd,0xa6,0xb6,0x49,0xf2,0xaf, + 0x69,0xa8,0xa7,0x67,0x8f,0x1d,0xa3,0x49,0xa7,0x8e,0xa6,0xe6,0xc4,0x76,0xda,0xb1, + 0xe3,0x38,0x9d,0x7e,0xba,0xf7,0xae,0x7f,0xf9,0xcb,0x5d,0xa2,0x26,0x6d,0xe6,0xb3, + 0x4b,0x4f,0x13,0xde,0x34,0x70,0x2,0xc5,0xa6,0x4e,0xa3,0x83,0x35,0xaa,0x19,0xa1, + 0xda,0xbf,0xeb,0x5e,0x7a,0x49,0x1f,0xf5,0x59,0x23,0x4,0xbe,0x70,0xcd,0x35,0xde, + 0x69,0x71,0x93,0xba,0x5c,0xd5,0x35,0x3e,0x62,0x64,0xaa,0x38,0x21,0x18,0xd8,0xa, + 0x48,0xcd,0x69,0x98,0x6a,0x6,0xc4,0x8e,0x1c,0xa5,0x59,0x8a,0xd8,0xff,0x7a,0xe5, + 0xe5,0xda,0x7,0xd0,0xa0,0x3e,0x75,0x6a,0xff,0x6e,0x34,0xb,0x6,0xd,0xf2,0xc9, + 0xf,0xad,0x8f,0xda,0x7e,0x78,0x68,0x3,0x25,0xf,0xad,0xa5,0x4d,0x5b,0x5e,0xa3, + 0xdd,0xca,0x58,0x51,0xb7,0x46,0xc8,0x98,0x8e,0xf9,0xe,0x1,0x4c,0x6f,0x1e,0x6, + 0x55,0x65,0xea,0xdf,0x7f,0x13,0xd5,0xb5,0x6d,0xa2,0xce,0xfa,0xf3,0xe8,0xe3,0x6b, + 0xe,0xd0,0xa5,0xe3,0x9b,0xe9,0x2f,0xf0,0x93,0xc0,0x51,0xc8,0xfe,0x81,0xf1,0x13, + 0x29,0x51,0x6b,0xcc,0x7b,0x43,0x7a,0x74,0x3,0xda,0x6f,0x94,0xb6,0x0,0x8c,0x10, + 0x48,0x8e,0x99,0x40,0xf4,0xc6,0x1a,0xdd,0xc0,0xab,0x7d,0x75,0x75,0x78,0x5,0xca, + 0x1c,0xf9,0x98,0xef,0x95,0x82,0x62,0xf4,0x46,0xa4,0x9,0x0,0x4c,0xd7,0x35,0xb3, + 0xb9,0x59,0x6b,0x7f,0xce,0xf6,0x13,0x10,0x2,0x48,0x1,0x26,0xbb,0x9e,0x0,0x31, + 0xdc,0x36,0x60,0xfa,0xb7,0x78,0x51,0x70,0x3e,0xf9,0xeb,0xeb,0xe8,0x37,0x87,0xf6, + 0xd1,0xac,0xd3,0x7,0xd2,0xe8,0xd1,0x6b,0xb5,0xb2,0x3,0x11,0x18,0x98,0x29,0x78, + 0xcd,0x9a,0xd4,0x92,0x63,0x6c,0x1e,0x7e,0x18,0xdf,0xe1,0x90,0x6c,0xa1,0x7f,0xfe, + 0xfe,0x34,0x8a,0xf,0x99,0x4e,0x89,0x85,0xb,0xf5,0xc,0x46,0x4f,0xde,0x7d,0xb7, + 0x16,0x2,0x48,0xa5,0xd9,0x88,0xb1,0xdc,0x1c,0x36,0x2b,0xc7,0xe9,0xdb,0xc9,0x47, + 0x28,0xd5,0xf,0xaf,0x93,0x83,0x6e,0xdd,0x1a,0xb8,0x1f,0x4,0xfb,0xdc,0xf4,0xf0, + 0x23,0x74,0xf7,0x67,0xfe,0xd2,0xcb,0x2,0xa4,0x8e,0xec,0x37,0x64,0x10,0xb5,0xed, + 0xf7,0x82,0x73,0xa0,0xf9,0xe1,0xa7,0x9f,0x4e,0xc7,0xa8,0xf3,0xe0,0xab,0xf4,0xfc, + 0x33,0x6f,0x13,0xe6,0x4c,0x3d,0x59,0x29,0xf1,0x31,0x63,0x82,0xa4,0xcf,0x74,0x4f, + 0x98,0xf,0x11,0xdf,0xdb,0xda,0x30,0x41,0xea,0x73,0x34,0x70,0xd0,0x29,0xb4,0x6f, + 0xd7,0x2b,0xf4,0xaf,0xa3,0xcf,0xa0,0xbf,0xb0,0xa3,0xb,0x61,0x5,0x20,0xc4,0x78, + 0xf8,0x30,0xdf,0x6b,0xe3,0x3b,0x2,0xf9,0x10,0x19,0x8b,0x80,0x1e,0x5,0x44,0xe, + 0xee,0x3f,0xa8,0xeb,0x5f,0xf7,0xd1,0x8f,0xd2,0x6f,0x6f,0xb9,0xc5,0xbb,0xef,0xa, + 0xb2,0x4,0x4a,0x5d,0xfb,0x47,0x89,0x62,0x75,0x45,0xa6,0x35,0xa3,0x67,0x59,0x7d, + 0xca,0x7e,0xfa,0x2d,0x3,0x2d,0x14,0xd8,0x19,0xa6,0x4c,0x72,0xdb,0xf4,0xd7,0xa7, + 0xc2,0xd9,0x67,0xcc,0xff,0x65,0x4a,0xfb,0xb3,0xe6,0x5f,0x7e,0x64,0x2f,0x8d,0x3f, + 0xa9,0x5d,0x91,0x7f,0x17,0x7d,0xe1,0xb,0x1e,0x51,0x40,0xc,0xfe,0x0,0x72,0x9, + 0xcb,0x40,0x7e,0xc7,0xe7,0xe6,0x9b,0x36,0xd0,0x27,0xae,0x5f,0x43,0x5d,0xc7,0xdf, + 0xa2,0x27,0x8f,0x1e,0xa5,0x5,0x28,0xc8,0x0,0xb3,0xd,0xe9,0xf0,0x5e,0xc5,0x32, + 0x9d,0x2e,0x1c,0xd6,0x8a,0xe9,0x52,0xf3,0x33,0xff,0xe2,0x3b,0xf,0x5b,0x56,0xf7, + 0xa1,0x85,0x96,0x89,0x39,0xd0,0x31,0x1,0x88,0xc,0x8c,0xd5,0x68,0x66,0xc6,0xf1, + 0x3d,0xe6,0xd,0x1d,0x1e,0x1a,0x4b,0xb5,0xf7,0x51,0xe2,0x8c,0xe4,0x51,0x3a,0x35, + 0xbe,0x8e,0x9e,0xfc,0xed,0xdb,0x34,0x70,0xa0,0x6a,0x92,0xcc,0xa4,0x1e,0xdd,0xd3, + 0xbc,0x79,0x44,0x37,0xde,0xa8,0xda,0xea,0x57,0xbc,0x49,0xeb,0x37,0x3c,0x4e,0xdb, + 0x5b,0x7e,0xcf,0x4f,0xd1,0x6f,0x2,0xe8,0x18,0xb,0x10,0x7a,0xdc,0x4,0xaf,0x17, + 0x40,0x99,0xf5,0xda,0xa,0x10,0x64,0xd6,0x5d,0x86,0x1c,0x20,0xc5,0x3d,0xa,0x33, + 0x4f,0xf5,0x6e,0x59,0x35,0x65,0x2a,0x8d,0x2c,0x95,0x76,0x3f,0xd9,0x90,0x85,0xfc, + 0x5,0x3f,0x84,0x50,0x27,0x20,0xb7,0xfd,0xa1,0xed,0xd3,0xb4,0xbf,0xbe,0x6c,0x2c, + 0x6d,0x7e,0x40,0xed,0x54,0x5b,0xf5,0x8c,0xdf,0x6d,0xc7,0xbd,0x2,0xa8,0xe1,0x9a, + 0xfa,0x5a,0x5a,0x7e,0x78,0xf,0x5d,0xf6,0xbe,0xe,0x6a,0x6b,0xed,0xa2,0x87,0x1e, + 0xca,0xbf,0xa2,0x3c,0x45,0xb8,0xa7,0x49,0xb7,0x28,0xcb,0xa1,0x83,0xe0,0xa7,0x8b, + 0x4d,0x3c,0x9f,0x66,0xe,0x18,0xe0,0x1f,0x77,0x7c,0xe2,0x44,0xea,0x2f,0x66,0x1f, + 0x2,0x74,0xdd,0xed,0x7c,0x82,0xa8,0xdb,0xc8,0x51,0xd4,0x4f,0x11,0x5b,0xb,0x2f, + 0x6e,0x6,0x98,0x7a,0x77,0xa8,0x7b,0x9c,0xfe,0xd2,0xcb,0xf4,0xe6,0x39,0xf3,0xbc, + 0x48,0x44,0x3c,0xac,0xcd,0x5e,0x94,0x5f,0x73,0xb2,0x9d,0x66,0xd7,0xbd,0x45,0xcf, + 0x3f,0xbf,0x85,0x2e,0xbd,0xd4,0x3b,0xad,0xd0,0x7b,0x2,0x6e,0xbd,0xf5,0x6d,0xba, + 0xef,0xbe,0xdf,0xd1,0xcf,0x4f,0x9d,0x4b,0x1f,0x19,0x32,0xdb,0x4b,0x2e,0x22,0x2, + 0x82,0xf4,0x60,0x20,0x13,0x4,0xe5,0xb,0x1,0x7d,0x23,0xe9,0xef,0x81,0xe,0xd3, + 0x56,0xcd,0x0,0x74,0x3f,0xea,0x66,0xc0,0x7b,0x2e,0x32,0x87,0x56,0xf,0x71,0x2a, + 0x1,0x99,0xc8,0x8f,0xee,0xcf,0x28,0x42,0x93,0xd3,0x2c,0x0,0x69,0x20,0xfa,0xed, + 0x7d,0x4a,0xb7,0x4,0x0,0xf6,0xb2,0x73,0xb0,0xf,0x82,0x79,0xf4,0x87,0xbc,0x76, + 0x3f,0xb4,0x3f,0xbc,0xfd,0x4f,0xb7,0x1f,0xa1,0x31,0xcd,0x27,0xe8,0x73,0xb7,0x76, + 0x69,0x73,0xbe,0x27,0x0,0x51,0x40,0x18,0x0,0x84,0xd9,0xb4,0x69,0x7,0x9d,0xe8, + 0x78,0x96,0x9e,0x7f,0xfd,0xa9,0xd0,0xc9,0x4c,0xe5,0x48,0x45,0x99,0x65,0x18,0xf7, + 0xc4,0xf7,0xc5,0xdd,0x83,0x7e,0x4,0xa1,0x71,0xb0,0x29,0xea,0xd0,0xac,0xdd,0x7b, + 0xe8,0xe4,0x57,0x5e,0x49,0xab,0x47,0x42,0x9,0x8c,0x4b,0x47,0xef,0xa3,0x17,0x5e, + 0xd8,0x44,0xe8,0xa8,0x80,0xc6,0x8f,0xea,0x9e,0xda,0xdb,0xc1,0xed,0x8d,0xf4,0x8b, + 0x5f,0xfe,0x80,0x9e,0x3c,0xd1,0x91,0x3a,0x10,0x82,0x60,0x9c,0xd2,0xea,0xa3,0xcd, + 0xa8,0xcb,0xb1,0x13,0x82,0x83,0x81,0x32,0xc1,0x4,0x9,0x81,0xf2,0x77,0x3f,0xf4, + 0xa3,0x8a,0x48,0x62,0x59,0x4d,0xc8,0x44,0x7e,0xee,0x8e,0x5c,0xb1,0x62,0x45,0xc1, + 0xed,0xb9,0x80,0x0,0x38,0x22,0x27,0x4,0x8d,0xc5,0x52,0xb3,0xec,0x9a,0x6e,0xbf, + 0x40,0x8f,0x0,0x88,0xb2,0xcb,0x13,0xa,0xfe,0x80,0x1c,0x8e,0xeb,0x47,0xc8,0x2a, + 0x79,0x2f,0xde,0x8b,0x3,0xea,0x68,0xe2,0xf4,0x5a,0x9a,0x3e,0x2d,0xbf,0xfe,0x5b, + 0x26,0xc6,0xab,0xaf,0xa6,0xb6,0x81,0x30,0xbc,0xf,0x84,0xb9,0xed,0xf3,0x1d,0x34, + 0x63,0xce,0x3e,0x5a,0xd1,0xba,0x3f,0x35,0xd3,0x2f,0x1f,0x1c,0x42,0x10,0x39,0x7b, + 0xb0,0xbe,0x79,0x99,0x8b,0x80,0xa3,0x1b,0x45,0x0,0x52,0xd2,0x22,0x4b,0x42,0x35, + 0x5,0x66,0x27,0xf6,0xd3,0xf8,0x51,0xff,0xa3,0xfd,0x81,0xec,0xe8,0x8b,0xf2,0x9e, + 0x6e,0xb8,0x81,0x68,0xe2,0xc4,0x57,0x69,0xe7,0x8e,0xa7,0x52,0xf7,0xc0,0xda,0x5f, + 0xfa,0x6,0x4c,0x53,0x20,0x70,0x9f,0xf6,0x3d,0xf3,0xef,0xa5,0xb6,0x2f,0x85,0x13, + 0x93,0x2a,0xcb,0x7,0x50,0xea,0x28,0x44,0xd8,0x66,0x23,0x3f,0x10,0xd5,0xef,0x98, + 0x66,0x1,0x70,0xde,0x7f,0x40,0x6a,0x4b,0x69,0x1,0xf8,0xe6,0xbf,0xb9,0xc1,0x13, + 0x88,0xf6,0xdb,0xda,0x42,0x4b,0x13,0x9d,0xda,0xf1,0xb7,0xac,0xa3,0xdd,0xef,0xeb, + 0x7f,0xae,0xf5,0x30,0x8d,0x1b,0xb7,0xdf,0x6f,0x1b,0x67,0x3,0x48,0xc0,0xe4,0x90, + 0x99,0xb6,0x98,0x38,0x70,0x9a,0xd9,0xfb,0xde,0x5c,0xbb,0x8e,0x96,0x3d,0xfb,0x78, + 0x2a,0xbb,0xab,0xfa,0x1c,0x9f,0x3c,0xd9,0x5b,0x57,0x64,0xe,0x68,0x7f,0x61,0x5, + 0xf8,0x30,0xe1,0xc1,0xc9,0x44,0x78,0xe4,0x61,0x60,0x9b,0xba,0xdf,0x91,0x5d,0x2d, + 0xf4,0xc0,0x3,0x5e,0x9b,0xbf,0x18,0xf7,0xd4,0xbf,0xbf,0x7a,0x84,0x2d,0x44,0x8f, + 0xfe,0xfc,0x27,0x29,0x61,0xb,0x1,0x0,0xed,0xf,0xe1,0x24,0xb5,0x7f,0x18,0xe1, + 0x6d,0xf0,0xa0,0x21,0xf5,0x81,0x15,0xe0,0x1d,0xe6,0xac,0x80,0x62,0xa3,0x98,0xe4, + 0xe7,0xf2,0xcd,0x77,0x33,0x6c,0xb5,0x67,0x8,0x8,0x0,0x68,0xbc,0x40,0x9c,0x3f, + 0x2c,0x80,0x9d,0x3b,0xc3,0x63,0x1,0x4c,0x48,0x6d,0xfb,0xdb,0xef,0x50,0xfd,0x49, + 0x93,0x75,0xd,0xde,0x37,0xf9,0xa4,0x40,0x36,0xdb,0x97,0x9b,0x1a,0x68,0xec,0xa4, + 0x4e,0xed,0x77,0xb,0x23,0x8a,0xd4,0x88,0xf8,0x40,0x1b,0xe2,0x58,0xac,0xc3,0x59, + 0x86,0x25,0xbe,0x63,0x3b,0xd6,0x51,0x6,0xef,0x63,0xe2,0x80,0x84,0x17,0xce,0xdf, + 0x4f,0xdf,0x3f,0x76,0xd0,0x8b,0x39,0x30,0x4f,0x83,0x85,0x80,0x9c,0x7c,0xc4,0xbf, + 0x27,0x39,0x1f,0x81,0xbc,0x2d,0x2b,0xc3,0x6f,0x5c,0x10,0xec,0xf8,0xde,0x7d,0x74, + 0x72,0xe2,0x18,0x8d,0x68,0x7c,0x8b,0x86,0xf,0xa7,0xa2,0xde,0xd3,0xa7,0x3f,0xad, + 0x4,0xcc,0x29,0x6f,0xd3,0x5f,0x1d,0xdf,0x14,0x7c,0xde,0x36,0x2c,0x2b,0x0,0x5d, + 0x81,0x12,0x3a,0x7a,0x72,0xdf,0x1,0xed,0x7,0xe8,0x3c,0xfd,0x34,0x53,0x8c,0x23, + 0x7f,0xb1,0xc1,0xcf,0x98,0x13,0x8c,0xe4,0xf3,0xc8,0x73,0x21,0x3f,0x80,0x6c,0xc4, + 0x16,0x7a,0x24,0x4,0xba,0xb5,0x0,0x52,0x5e,0xbd,0x94,0xe3,0x2f,0x36,0x2a,0x38, + 0x97,0x9e,0x4e,0xb5,0x6d,0x46,0xf1,0x2d,0xd1,0x91,0x7e,0x31,0xda,0xa8,0xb4,0xff, + 0xb3,0x6d,0x47,0x68,0xf2,0xe4,0xf6,0xd0,0xbe,0x70,0x26,0x7,0xbf,0xf4,0xb0,0x6e, + 0xb1,0x8e,0x76,0x35,0xaf,0x63,0x89,0xef,0x58,0x67,0xf2,0x30,0x51,0xba,0x44,0xc8, + 0xc0,0xda,0xd7,0x77,0x51,0xbc,0x61,0x8f,0xff,0x5d,0x3e,0x6f,0xce,0xed,0x1f,0xf0, + 0x1,0x98,0x24,0xa6,0x3a,0x86,0x61,0xa4,0xd7,0xd5,0x99,0x35,0xe9,0x88,0xc2,0x61, + 0xa5,0x96,0x87,0x75,0x1e,0x24,0x3c,0x2,0x98,0xfe,0xc5,0xbc,0x27,0x58,0x3,0x90, + 0xbb,0x1f,0xd8,0xb2,0x44,0x7f,0xd7,0x29,0xc1,0x4d,0x28,0xb4,0x2f,0x60,0x4d,0x12, + 0x10,0x19,0x10,0xe4,0x27,0x1f,0x31,0xd0,0x4d,0x18,0x25,0x20,0xd0,0x73,0x51,0xf7, + 0xea,0x6a,0x47,0xfe,0x5e,0x40,0x6f,0x90,0x3f,0x4b,0xd9,0x79,0xb,0x81,0x40,0x2f, + 0x0,0xc8,0xf,0xb,0xa0,0x71,0x9b,0xe9,0xbf,0x37,0xed,0x7f,0x6,0x88,0xef,0x9b, + 0xff,0xbe,0xa6,0xf4,0xf2,0xa9,0x83,0xfc,0x68,0x2,0xc4,0x45,0x3d,0xc6,0x4f,0x19, + 0xac,0xb4,0xdd,0xe1,0xc0,0x5,0xf9,0x85,0x7,0x11,0xb0,0x8e,0xa5,0x6c,0xda,0xda, + 0xfd,0xe5,0xac,0x21,0xd9,0x8c,0x96,0xe4,0x2,0x10,0x24,0xa4,0xd1,0x6f,0xf,0xad, + 0xed,0x9c,0x46,0x33,0x11,0x28,0x43,0xde,0xa0,0x21,0xaf,0x2a,0x19,0x7c,0x1,0x66, + 0x2a,0x33,0xe,0x8,0xe2,0xee,0xc0,0x24,0xf,0x80,0xe2,0xd3,0xc5,0x7a,0xff,0xc4, + 0x41,0x82,0x61,0x71,0xe8,0x50,0xe0,0x90,0xa2,0xdc,0x13,0x3a,0x36,0x36,0x6f,0x7f, + 0x5,0xc1,0x6,0xfa,0x5e,0x32,0xcd,0x37,0x28,0x93,0x88,0xa2,0x2b,0x50,0x86,0x3, + 0x6b,0x6b,0x48,0x3d,0x8f,0x8e,0x49,0x93,0xa8,0x6e,0xcb,0x16,0x5a,0x72,0xe8,0x30, + 0x9d,0x91,0xae,0x39,0x1c,0x8a,0x80,0xb0,0x61,0xc5,0xd9,0x10,0x1,0xf9,0x7b,0x84, + 0x80,0x5,0xa0,0xc9,0xf,0x2,0x70,0xce,0xff,0xb1,0xc1,0xc1,0x33,0x20,0xbf,0xa7, + 0xfd,0x83,0x57,0x4f,0x9a,0xaf,0xb,0x6b,0xeb,0xb5,0xf6,0x7,0xd6,0xf6,0x6f,0x54, + 0xef,0xe4,0x51,0xbd,0xde,0x5d,0x3b,0x59,0x42,0x12,0x85,0xbf,0xf3,0x3a,0x48,0xa6, + 0xeb,0x25,0xb4,0x3f,0x34,0x31,0x34,0xe6,0xaf,0x1f,0x7f,0x5e,0x93,0x1f,0xc8,0x46, + 0xfe,0x6c,0xf0,0x9d,0x98,0x61,0x50,0x65,0xcf,0x68,0x3e,0x4c,0x6c,0x20,0x15,0xfb, + 0x9e,0x50,0xf5,0xf6,0x23,0x26,0x3f,0x80,0xd1,0xfa,0x3c,0x39,0x88,0x6f,0xd,0x28, + 0x2b,0x40,0x26,0x6,0xb1,0xeb,0x9b,0xd3,0x36,0x87,0xa2,0xa0,0x98,0xe4,0x47,0x86, + 0xa2,0xa8,0x10,0x10,0x0,0x7e,0xb6,0x1f,0x19,0x4,0xc4,0x41,0x3f,0x86,0xfc,0x49, + 0x64,0xbb,0xb5,0xaf,0x6f,0x12,0x78,0xa0,0xdb,0xf,0x80,0xf3,0xf,0x38,0x69,0x4a, + 0x6b,0x46,0x53,0x59,0x97,0x9f,0x21,0x9d,0x9e,0xbd,0x1d,0x64,0x63,0xed,0x2a,0xf7, + 0x43,0x53,0x7e,0xdb,0x1b,0xb9,0x4b,0x97,0x5e,0xd6,0x91,0xde,0x13,0x60,0x97,0xcb, + 0x6d,0x7f,0xe9,0x8d,0xe3,0x64,0xa3,0xb1,0xec,0xb9,0xfd,0x80,0xcd,0x9b,0x76,0xd2, + 0xb0,0x61,0x99,0xcd,0xff,0xb0,0xba,0xfb,0xd7,0xce,0xf3,0x9e,0xe0,0x27,0xd8,0xbb, + 0xef,0x1d,0xff,0xf8,0xd0,0x39,0xa,0x76,0xb4,0xf8,0x59,0x82,0x7c,0x18,0x61,0x81, + 0x70,0xe0,0x24,0xc7,0x9,0x8,0x70,0x57,0x20,0x6b,0x28,0xf7,0x29,0xce,0x27,0x57, + 0xf4,0x25,0xf9,0x75,0x79,0xf2,0x4b,0x1b,0x1c,0x80,0xa8,0xbd,0xb4,0x0,0xd8,0xbb, + 0x6e,0xcc,0xff,0x18,0x72,0xdc,0x5b,0x12,0x80,0xb3,0xf8,0xd8,0x1d,0x7d,0x33,0x67, + 0xb4,0xf9,0xeb,0xb6,0x99,0x9b,0xd,0xac,0x5d,0x59,0x2b,0x72,0x28,0x2d,0x8f,0x87, + 0x61,0x80,0x88,0xdc,0x24,0x7e,0xe4,0xe1,0x54,0x53,0x83,0x6b,0xd7,0xa,0x7b,0x1d, + 0xdf,0xb3,0x64,0x2f,0xe,0x20,0xce,0x9d,0x97,0x29,0xc8,0x6f,0x93,0x27,0xc7,0x69, + 0xe8,0xd0,0xd4,0xf7,0x62,0xde,0x13,0xb6,0xfd,0xe1,0xf,0xa9,0x1d,0xc3,0x45,0x86, + 0xa4,0xc0,0x3d,0xc8,0x80,0x20,0xff,0x1e,0x48,0x87,0x3,0xc7,0x86,0xa7,0x2a,0xeb, + 0x3a,0xff,0x4a,0xf,0x7d,0x4d,0x7e,0x20,0x3d,0x12,0x50,0xe6,0xfb,0x13,0x23,0xfe, + 0x82,0x16,0x80,0x17,0x1b,0x87,0x1e,0x0,0xa6,0x88,0xe,0xa7,0xb5,0x92,0x7b,0xbc, + 0xf0,0xfb,0x3a,0xba,0xf4,0x52,0x2f,0xa0,0x45,0xbe,0xe4,0xdd,0x21,0x8c,0x58,0x61, + 0xdb,0xa0,0x29,0x59,0x99,0x7f,0xf8,0xa3,0x3,0xbd,0x71,0xc,0x31,0xaf,0x11,0x22, + 0x85,0x91,0x9c,0xbf,0xc0,0x16,0x2,0xb9,0x60,0xf7,0xab,0xaf,0x69,0xc1,0x98,0x48, + 0x8e,0xa2,0x75,0xeb,0x52,0x8e,0xb6,0x62,0xde,0x13,0xb6,0x9d,0x7f,0x41,0x33,0xfd, + 0xc6,0x6c,0xe7,0xd9,0x8a,0xfc,0xd1,0x80,0x36,0x78,0xa0,0x10,0xb2,0xd,0x6f,0xdb, + 0xe1,0x85,0x3,0x63,0x40,0x90,0xc8,0x26,0x8c,0xe9,0xc4,0x16,0x2f,0x5e,0x9c,0x7b, + 0xa5,0x1d,0x7a,0x1d,0xbd,0x49,0x7e,0x5d,0x6e,0xe8,0xd6,0x2c,0x16,0x80,0x47,0x2d, + 0xaf,0x32,0xd,0x53,0x4e,0x4a,0x9d,0x22,0xda,0xcf,0xac,0x6d,0x6e,0xf8,0xf3,0x77, + 0xfb,0xdb,0xc2,0xcc,0xdd,0x42,0x0,0x53,0x99,0xb5,0xff,0xcb,0x2f,0x83,0x8c,0xe3, + 0x68,0x16,0x37,0x57,0xac,0x63,0xed,0xa8,0x40,0x7f,0xbb,0x1c,0xc7,0x10,0xf7,0xce, + 0x8c,0x25,0x32,0x7,0x2c,0xad,0xdf,0x32,0x90,0x26,0x89,0x1c,0x9e,0xc5,0xbc,0xa7, + 0x75,0xeb,0x54,0x9b,0x7f,0xdc,0x34,0x7f,0x5f,0x57,0xb6,0xd9,0x92,0x85,0xdd,0x29, + 0x13,0x83,0x48,0xb,0x20,0x9e,0x8f,0x5d,0xea,0xd0,0x27,0xe8,0x6d,0xf2,0xeb,0xb2, + 0xed,0xd,0x32,0xe,0xc0,0x7,0xe2,0xca,0xd9,0x1,0x88,0xc9,0x3b,0x46,0x8e,0x8, + 0xee,0x4e,0x24,0xb5,0x5,0x80,0x38,0x80,0x24,0x25,0x7d,0xa1,0xf1,0xc8,0xff,0xf5, + 0x12,0x63,0x66,0x32,0x77,0x7b,0xa,0xf6,0xfc,0xd7,0xd7,0xa7,0xb6,0x75,0x9e,0x18, + 0xad,0x2d,0x0,0xbe,0xa9,0xa6,0x4d,0x9b,0x7c,0x41,0x10,0x98,0xc1,0xa8,0x1b,0x64, + 0x33,0x95,0xaf,0x79,0xff,0x79,0x7a,0x5c,0x3f,0x50,0xec,0x7b,0x42,0x57,0x61,0x6c, + 0xf0,0x38,0x1a,0x86,0x81,0x55,0x4a,0xeb,0x7,0x66,0xff,0x11,0x64,0xf6,0x33,0x4, + 0x5b,0xe0,0x4,0xa3,0x12,0xae,0x19,0x50,0xba,0xe8,0xb,0xf2,0xeb,0xf2,0xed,0xd, + 0x32,0xe,0x40,0xc3,0x98,0x96,0x29,0xb,0x40,0x51,0x7c,0xcf,0x5e,0x79,0x80,0x3a, + 0xc4,0xd3,0x4e,0x75,0xec,0xa5,0x36,0x7e,0x84,0xba,0xd7,0x77,0xd0,0x8c,0x19,0x1e, + 0x41,0xf2,0x69,0x2f,0x77,0x7,0xf6,0xfc,0x43,0x29,0x42,0xfb,0xa3,0xcc,0xf,0x4c, + 0x99,0x13,0x30,0xff,0x31,0x32,0x10,0x42,0x20,0xd,0x56,0xfa,0x72,0xaf,0xba,0x26, + 0x59,0xa9,0xce,0xb8,0x83,0x14,0x5d,0xe1,0xf,0x7d,0xe5,0x8b,0x87,0x68,0xdf,0x3e, + 0xea,0x95,0x7b,0x1a,0x3b,0x96,0xe8,0xd9,0x5f,0x9a,0x1c,0x84,0x61,0xda,0x9f,0x85, + 0x40,0x2c,0x16,0xf4,0x1,0x18,0xf8,0x23,0x2,0xf9,0x7b,0xe1,0x55,0x74,0x28,0x12, + 0xfa,0x8a,0xfc,0xfa,0x1a,0xf6,0x86,0x36,0xb6,0x0,0x32,0x34,0x3,0xf4,0xd2,0xb2, + 0x0,0xe2,0xc8,0x8e,0xab,0x18,0xf1,0x4b,0x75,0x23,0x57,0x61,0x9a,0x2d,0xc5,0x88, + 0x53,0x8e,0xb7,0x52,0x63,0x5b,0x3f,0x7a,0xf4,0x97,0x93,0x35,0x41,0x40,0x1a,0xc0, + 0xef,0xb7,0xcf,0x3,0x7c,0xe,0x96,0xf8,0xdc,0x7b,0x6f,0x30,0x1d,0xc1,0x47,0xaf, + 0x1e,0x4d,0x8d,0x47,0x47,0x7,0x52,0xef,0x37,0x99,0xdc,0x7b,0xd0,0xfe,0xa1,0xde, + 0x7f,0x9,0xf1,0x9c,0xb5,0x77,0x3c,0x3,0x5d,0x1e,0x3d,0x90,0xa4,0xcb,0x17,0x2d, + 0xf4,0xbb,0xf1,0x8a,0x75,0x4f,0xa8,0xe6,0xa2,0x4f,0x2e,0xa0,0x87,0xff,0xee,0x1e, + 0x9d,0xb7,0x60,0x7f,0xcb,0xb6,0x60,0xfb,0x9f,0xe7,0x27,0xb4,0xd3,0x81,0x8b,0x75, + 0x64,0x5,0x72,0x28,0x7d,0xf4,0x25,0xf9,0xf5,0x75,0xe4,0x97,0x8c,0x3,0xc,0x4c, + 0x13,0xc0,0x5b,0xa7,0xc0,0x50,0xe0,0x6,0x93,0x9e,0x1b,0x67,0x2e,0x6c,0x9e,0x48, + 0xb1,0x11,0x23,0x28,0xd6,0xd9,0xa9,0x93,0x74,0xc4,0x12,0x31,0x7a,0xfd,0x95,0x19, + 0xfa,0x3d,0x5d,0xbf,0xde,0x7b,0xd1,0xa1,0xe9,0xf8,0xa5,0x7,0xba,0x23,0x8f,0x3c, + 0x7,0x90,0x29,0xf3,0xa1,0x29,0x61,0x32,0xef,0x6e,0x99,0x46,0xa7,0x26,0xbc,0xf6, + 0x7c,0x82,0x8c,0x10,0x40,0x72,0x10,0x21,0x25,0xa4,0xf9,0x9f,0x96,0xc2,0xc,0xcf, + 0x9a,0x13,0x86,0x10,0xe9,0x58,0x6,0x6d,0x49,0x48,0x53,0xdb,0x3c,0x9a,0xa7,0xd6, + 0x8f,0xa0,0x5f,0xfe,0x92,0x8a,0x7a,0x4f,0xd3,0xa7,0x13,0x2d,0xff,0x79,0xd,0xd, + 0x55,0x56,0xc,0xcc,0xff,0x61,0xdc,0x3,0x80,0x83,0x50,0x27,0x44,0x1,0xee,0xe8, + 0x86,0xe0,0xd6,0x6f,0x19,0xb,0xd9,0xe6,0xd0,0xb7,0xe8,0x6b,0xf2,0xeb,0x6b,0xc9, + 0x2f,0xeb,0xb2,0xbc,0x20,0xa9,0xf0,0xdf,0xa4,0xb7,0x2e,0xe,0xe5,0x14,0xe0,0x98, + 0xa8,0x83,0xd3,0x73,0x37,0x98,0x88,0xba,0x8f,0x8d,0x3f,0x97,0x36,0x6f,0xbb,0x88, + 0x96,0x2d,0x43,0xe6,0x9b,0xd4,0x4b,0xcf,0x4,0x90,0x44,0x8,0x5b,0x62,0x3f,0xf7, + 0xf5,0x83,0xec,0x9c,0x91,0x9b,0x63,0xee,0xdf,0xff,0xc1,0x99,0xf4,0x8f,0x73,0xbc, + 0x41,0xf9,0x68,0x8a,0xfb,0x66,0xbf,0xd4,0x8a,0x56,0x62,0x53,0x3b,0x4f,0x60,0xd6, + 0x0,0x20,0x3,0x25,0x4e,0xf4,0xc3,0x5a,0xfe,0x54,0x2b,0x4d,0x9b,0xfe,0x51,0x6a, + 0x6d,0xa5,0xa2,0xdc,0x13,0x6,0x3,0xd,0x1b,0x7a,0x6,0xfd,0xe4,0x7f,0xfd,0xb3, + 0x3f,0xb6,0xc1,0xbf,0x13,0x1c,0xc4,0xc4,0x97,0xa6,0x7f,0xb6,0xa0,0x1f,0xd1,0x3c, + 0x58,0x38,0x78,0x50,0xb7,0xf7,0xe9,0x50,0x7c,0x60,0x2c,0x3f,0xf,0xe9,0x65,0xf4, + 0x5,0xf9,0x81,0x80,0x4d,0x7c,0xee,0x1d,0x77,0xc4,0x8e,0x20,0x21,0xa8,0x95,0x70, + 0xd2,0x4f,0x6,0x12,0xf0,0x5,0x90,0x76,0x8,0x2,0xfe,0x3c,0x7d,0x27,0x79,0x3e, + 0x80,0x2f,0x5d,0xbc,0x80,0xbe,0xfd,0xb3,0x9f,0xd1,0x7d,0xca,0xa,0xb8,0xf5,0xbe, + 0xfb,0xe9,0x93,0x5f,0xfe,0x30,0x4d,0x9d,0xe,0x77,0xf9,0x21,0x9a,0x3b,0x97,0xe8, + 0xb5,0xd7,0x30,0x5,0x93,0xa7,0xf9,0xee,0xbe,0x3b,0xfb,0x92,0x4d,0xe3,0x30,0xeb, + 0x7d,0xca,0x94,0x1a,0x5a,0x38,0xfe,0x52,0xaa,0x3f,0xd2,0x10,0x30,0xda,0xb5,0x3, + 0xd0,0x3e,0x21,0xc3,0xd4,0x65,0x5a,0x68,0xe9,0x1d,0x9,0x6f,0xf2,0x12,0x75,0xef, + 0x3a,0x8b,0x91,0x6a,0xe6,0x2c,0xfd,0xf4,0x5f,0x7a,0xe7,0x26,0x3d,0x49,0xd9,0x39, + 0x61,0x2,0xb5,0x8d,0x1c,0x46,0x3f,0xed,0x1c,0x40,0x9f,0x6a,0xd9,0x43,0x97,0x5d, + 0xe6,0x4d,0x25,0x76,0xc6,0x19,0x44,0x48,0x1d,0x50,0xc8,0x3d,0xb1,0x72,0x3f,0xe3, + 0xcc,0x29,0x34,0xf5,0xcf,0x2f,0xd0,0xda,0x1f,0xd8,0xc7,0x1,0x40,0x2c,0x25,0x58, + 0xfb,0x87,0x74,0x7,0x6,0xe6,0x25,0xa4,0xd4,0x70,0x66,0x9d,0xb5,0x58,0xcf,0x63, + 0xe0,0x2c,0x80,0xbe,0x82,0x9c,0xbf,0x80,0x23,0x3b,0xed,0x71,0x3,0xbd,0x4d,0x7e, + 0x20,0xaf,0xc9,0x41,0x79,0xb4,0x9c,0x2f,0x4,0x84,0xa0,0xd0,0xc9,0x40,0x95,0x10, + 0x58,0xba,0x75,0x8b,0x9e,0xa8,0x3,0x80,0x15,0x70,0xe3,0x8d,0x37,0x29,0xde,0x27, + 0x69,0x4c,0xed,0xd5,0xb4,0x64,0xd9,0x23,0x6a,0xeb,0x71,0x3a,0xeb,0x2c,0xcf,0x89, + 0x86,0xe2,0x20,0x10,0xde,0x78,0x83,0x8,0xd9,0xc0,0xa1,0xd,0xed,0xf4,0x7d,0x72, + 0x80,0x1e,0x67,0xd0,0x81,0x99,0x8c,0xa0,0x9c,0x89,0x63,0x2f,0xa4,0xb3,0x8f,0x8c, + 0xd3,0x4,0xc6,0x23,0xd5,0xda,0x9f,0xf3,0xed,0x53,0x86,0xc8,0x3f,0xa2,0xe0,0x64, + 0xa1,0x68,0xcc,0xb,0xf3,0x5f,0xef,0x57,0x9f,0x3a,0x41,0x96,0x4,0x52,0x90,0xc3, + 0xa2,0x99,0x35,0x9b,0xd6,0xe2,0xd8,0xf1,0x63,0x69,0xc8,0xdb,0xc7,0xe9,0xe3,0x75, + 0x9d,0x34,0x6e,0xdc,0x73,0x74,0xfc,0xb8,0x27,0x4,0x7a,0x72,0x4f,0xfc,0x58,0x57, + 0xaf,0x26,0x3a,0xef,0xfc,0x89,0xd4,0x70,0xfd,0x5d,0x74,0xf7,0xb9,0xd7,0x68,0x81, + 0x93,0xe6,0xa0,0xc1,0x8c,0x44,0xe3,0x27,0xea,0x5c,0x80,0x7a,0x14,0xa0,0x8,0xda, + 0xf2,0x2a,0x6e,0xda,0xff,0x3b,0x52,0x33,0x37,0xeb,0xa4,0x20,0xf0,0x87,0x98,0x7c, + 0xf6,0xc1,0x38,0x0,0x27,0x10,0x8a,0x85,0xd4,0xcc,0x42,0x17,0xeb,0x65,0xc2,0x72, + 0xe4,0x96,0x2,0xf9,0xf5,0x75,0xc3,0x36,0xb6,0x59,0x5d,0x81,0x3a,0x25,0x18,0x72, + 0x1,0x82,0x5c,0x72,0x44,0xa0,0x99,0x9a,0x5b,0x2f,0xd5,0xa7,0x7e,0x52,0xb3,0x47, + 0x7e,0x75,0xb3,0xb7,0x5d,0x7b,0x2d,0xdd,0xa3,0xac,0x0,0x24,0xed,0x84,0x26,0x3a, + 0xf7,0xc0,0xc9,0x34,0x6a,0xff,0x75,0x74,0xee,0xbb,0x27,0x70,0x9a,0x3e,0x3a,0xf3, + 0x4c,0x2f,0x39,0x26,0xbe,0xaf,0x36,0xc9,0x6b,0x99,0x18,0x72,0xc9,0xe6,0x3e,0x80, + 0xe3,0x66,0xcc,0xec,0x47,0x7f,0xbb,0xe8,0x2f,0xe8,0x81,0x1,0xb3,0xf4,0x36,0x26, + 0xff,0x31,0xa3,0x35,0x33,0xc1,0xcf,0x60,0x2c,0xe6,0x2c,0xf4,0xe7,0x24,0x14,0xda, + 0x7f,0xdd,0xa4,0x89,0xf4,0x9b,0x4b,0x2f,0xa5,0x1d,0xd7,0x7e,0x82,0x76,0x8c,0x1a, + 0xa7,0xc7,0xd4,0x77,0x8e,0xf7,0xa6,0xe9,0x8a,0x8f,0x51,0xf7,0x3d,0x74,0x30,0x3d, + 0x76,0xd6,0x2,0x7a,0x62,0xe4,0x2d,0x74,0xc7,0x9d,0x27,0xeb,0x34,0xe0,0xc8,0xf, + 0x0,0x59,0x82,0x7b,0x82,0x93,0x10,0xbf,0x37,0x77,0xe9,0x85,0xdd,0x93,0x5f,0xa7, + 0x84,0xf7,0x8,0xe7,0xbd,0xeb,0x64,0x3a,0x7e,0xe9,0x6d,0xf4,0x9f,0xef,0xb9,0xc6, + 0x73,0x49,0x90,0x15,0xfe,0xb,0xad,0x8f,0xcc,0x40,0x6a,0x69,0xa7,0x3,0xf3,0x47, + 0x1,0x72,0x1c,0x84,0xec,0x1,0xc0,0x60,0x21,0x23,0x28,0xce,0x9c,0x9c,0x8a,0xdb, + 0x70,0x28,0x1e,0x6c,0xf2,0xdb,0xbe,0xb5,0x52,0x21,0x3f,0x90,0xd9,0x2,0x10,0xd3, + 0x4e,0x5,0xf2,0x2,0x92,0x1c,0x14,0x24,0xe,0xd7,0x93,0x75,0xa6,0xde,0x70,0x90, + 0x1f,0x8e,0x40,0xbd,0xcf,0x7c,0xce,0x3d,0x78,0x32,0xed,0x7f,0xfb,0x6a,0x8a,0xcd, + 0x79,0x95,0x9e,0x7c,0x61,0x85,0x56,0xcc,0xc8,0x80,0x3,0x21,0x80,0x53,0xa1,0xd9, + 0x6d,0xb0,0xe0,0x4,0xf1,0xc1,0xc1,0x69,0xd3,0xa6,0xd3,0x9f,0xcc,0x5d,0x48,0x67, + 0x1d,0x18,0x4d,0xed,0xca,0x1a,0xee,0xc7,0x6d,0x7e,0x55,0x40,0x7f,0xa5,0xa5,0xa1, + 0xfd,0x59,0xf3,0xcb,0x69,0xcb,0xf5,0x68,0x39,0x9e,0x25,0x58,0x9,0x2b,0xcc,0x60, + 0xa4,0x9b,0x2e,0x38,0x16,0xfb,0x6b,0xbc,0xa6,0x40,0xb2,0xb1,0x91,0x3a,0xa7,0x4c, + 0xa1,0xa7,0xbe,0xf4,0x37,0x5e,0xb9,0x33,0x67,0x50,0x4c,0x69,0xfc,0x24,0x48,0x36, + 0x7b,0x86,0x17,0x61,0x8,0x89,0xa5,0xc8,0xf8,0x43,0x1a,0x47,0x8b,0xfe,0xf6,0x3f, + 0xa8,0xdf,0xd7,0xff,0x92,0x7e,0xfe,0xf3,0x97,0xe9,0xcf,0xfe,0xc,0xe3,0xb4,0xbd, + 0xe1,0xc2,0x1c,0x20,0x14,0x36,0xaf,0x8a,0x54,0x6,0x78,0x6,0x7,0x8e,0x9e,0x4a, + 0x5d,0x8b,0xff,0x8d,0x56,0x4c,0x3d,0xdd,0xd7,0xfc,0x9a,0xfc,0xda,0x1,0x10,0xf7, + 0x96,0x48,0x9,0xa6,0x2c,0x80,0xf8,0x21,0x64,0xf6,0x89,0x5,0xf3,0x16,0x60,0x14, + 0xa0,0xcc,0xa,0xcc,0x3d,0x0,0xa2,0xfd,0x7f,0x87,0xaa,0x94,0xcb,0x6,0x54,0x5c, + 0xf0,0xf3,0xc5,0x94,0xe2,0x99,0x66,0x10,0x2a,0x25,0xf2,0x3,0x69,0x57,0x3f,0x6c, + 0xa6,0x5,0xeb,0x67,0x4d,0xa,0xe2,0xd,0xc,0x22,0xbf,0xdd,0xef,0x87,0x6,0x23, + 0x33,0x30,0x4f,0xc4,0x39,0x2a,0x95,0x46,0x5c,0x17,0x6e,0xde,0x74,0x4c,0x31,0xc6, + 0x73,0xfa,0x69,0xef,0x7a,0x4d,0x17,0xfd,0x61,0xd0,0x26,0xfa,0xca,0x7d,0x3f,0xa6, + 0x4b,0x3f,0xe8,0x85,0xa,0xff,0xea,0x57,0xe4,0xcf,0xc5,0x9,0x60,0xf2,0xc,0x5c, + 0x1a,0x72,0x6,0x41,0x31,0xfb,0xb7,0xd6,0xd1,0x3f,0xdc,0x7a,0x3,0xcd,0x3b,0x3c, + 0x99,0xfa,0xff,0x71,0xab,0x8e,0xf3,0x6f,0x54,0x6d,0xdb,0x63,0x93,0x26,0xf9,0xa6, + 0xbf,0xae,0x57,0x6,0xf3,0xdf,0x6e,0xfb,0xfb,0xd3,0x84,0xb7,0x6c,0x4b,0xcd,0x53, + 0xd8,0xd5,0x41,0x6f,0x9c,0x7f,0x1e,0xfd,0xea,0xaa,0xf,0xd0,0x4b,0x1f,0xbd,0xda, + 0xdb,0xa8,0xc8,0x1e,0xdf,0xb8,0xc1,0x2b,0x63,0xfa,0x29,0x81,0x67,0x35,0x72,0x62, + 0x33,0xed,0x51,0xe7,0xf,0x9d,0x30,0x9e,0xae,0x7e,0xe6,0x3f,0xe8,0xd8,0x43,0xdf, + 0xa4,0xce,0x13,0x6b,0x73,0x6a,0x6a,0xc3,0x4a,0x98,0x38,0x75,0xa,0xd,0xb9,0xe6, + 0x66,0x5a,0xfa,0xa1,0x4f,0x53,0x6d,0x7d,0x9d,0x96,0xc,0x1c,0xf0,0xa3,0x5,0x40, + 0x4d,0xdc,0x7f,0xde,0xba,0x50,0xa4,0x5,0xc3,0x30,0x66,0x39,0x35,0x18,0x79,0x6d, + 0x7f,0x39,0x14,0x58,0xa7,0x5,0xe7,0x59,0x8b,0x5e,0x79,0x4d,0x5b,0x60,0xb7,0xcf, + 0x9e,0xdd,0x7d,0xa5,0x1c,0x7a,0x4,0x49,0x7c,0xc0,0x36,0xf7,0x19,0xc5,0x20,0x7f, + 0xa1,0x13,0x85,0xa4,0x59,0x0,0xfe,0x40,0x1a,0x45,0x5a,0x39,0x3a,0x30,0x35,0x15, + 0x58,0x2a,0x30,0x48,0xc2,0xf7,0xac,0xe3,0x25,0x36,0x63,0x8,0x30,0x67,0xdf,0x4d, + 0xca,0xa,0xc0,0xec,0xc2,0xc7,0x8c,0x10,0xd0,0xe6,0x6d,0x57,0x8d,0x6e,0x12,0xac, + 0xf8,0x93,0xbf,0xa7,0x97,0x9b,0x76,0x53,0x6b,0xd3,0x2e,0x7a,0x26,0xfe,0x5f,0x34, + 0xf5,0x9c,0x26,0xa5,0x9c,0xf,0xea,0xb6,0x74,0x5d,0xc3,0x10,0x65,0x6d,0x8c,0x54, + 0xd2,0x64,0x38,0x7d,0xf2,0xcc,0x73,0xe9,0xcc,0x63,0xea,0x7a,0x7,0x3c,0x4b,0x42, + 0x93,0xdf,0x68,0x7e,0xad,0xf5,0x45,0x1b,0x3f,0x40,0x7c,0xf3,0x43,0xc8,0x29,0xc1, + 0x0,0x9f,0xfc,0x5b,0xbc,0xf9,0x0,0xf0,0xc3,0x74,0xaa,0xfb,0xec,0x18,0x30,0x80, + 0xda,0x14,0x51,0x56,0x5f,0xb1,0xd0,0x2b,0xc3,0xdc,0xbb,0xce,0xc7,0x8f,0x4a,0xed, + 0x50,0x5a,0x76,0xbc,0xa7,0x89,0x91,0xa2,0xb,0x24,0xc5,0x10,0x5d,0xf4,0x3e,0x3c, + 0x7a,0xc1,0x35,0xb4,0x7f,0xf2,0xf9,0x74,0xd5,0xb6,0xb5,0x74,0xd9,0xc1,0xc7,0xa8, + 0xbe,0x75,0xb,0x3d,0xf1,0xd8,0xcb,0x94,0xc0,0x34,0x61,0xc9,0xe,0x5a,0xbd,0x26, + 0x46,0x4d,0x4d,0x8d,0x34,0x6c,0xf4,0x68,0x6a,0xbe,0xea,0x23,0x34,0xe7,0xce,0x45, + 0xf4,0xbb,0xa9,0x67,0x7a,0x55,0x35,0x73,0x14,0xf8,0xf1,0xfe,0xfc,0x23,0x6c,0x37, + 0x66,0xff,0xb6,0x2d,0xfe,0x3d,0xf9,0x93,0x82,0x64,0xa,0xed,0x95,0xed,0x7f,0x16, + 0x14,0xea,0x3e,0x32,0x99,0xa3,0xe,0xd1,0x21,0x13,0xf1,0x81,0x52,0xd3,0xfc,0x8c, + 0xd0,0x5a,0xa0,0x27,0x0,0xaf,0x49,0xa3,0x98,0x30,0xc3,0xcf,0x9,0x68,0xd,0xe, + 0xa,0x4c,0xbf,0xc5,0xd9,0x77,0x20,0x2c,0x94,0xe9,0x9d,0x18,0x39,0x42,0x6b,0xa2, + 0xe3,0x13,0x26,0xf8,0xdd,0x73,0xdc,0x4e,0xd7,0x4d,0x89,0x90,0x8a,0xac,0x15,0x2f, + 0xa8,0x1d,0xdb,0xdf,0x28,0xca,0xd0,0xe5,0x19,0x22,0x24,0x2d,0x3b,0x9b,0x13,0x7e, + 0xe8,0x2a,0x99,0xfa,0xc9,0xf9,0xb,0x1,0x3d,0x7b,0xd1,0xd6,0xad,0x3a,0xe7,0x3f, + 0xae,0xbe,0xa4,0x36,0x4e,0xaf,0x9e,0x33,0x8f,0x7e,0xbb,0x68,0x11,0xbd,0xb0,0xf0, + 0x7d,0x5e,0xd9,0x7a,0x7e,0xaf,0x13,0x5e,0xe3,0xbe,0xb6,0x2e,0x95,0xa7,0x5f,0x3a, + 0xd,0xd5,0xfa,0x48,0xd3,0x4f,0xdf,0xc9,0xb3,0xc,0xe7,0x1,0x26,0x3e,0xca,0xdb, + 0x3,0x81,0x84,0xa8,0xca,0x44,0xd2,0xab,0x3f,0x84,0xce,0x9e,0xd4,0x73,0xc7,0xe4, + 0x20,0xba,0x1e,0xe6,0x22,0xac,0xf9,0x79,0x5d,0x36,0x1,0xf4,0x50,0x60,0xf5,0x1d, + 0x89,0x40,0xae,0x18,0x38,0x80,0xbe,0xf0,0xa7,0x7f,0xe6,0x3d,0x4b,0x27,0x0,0x7a, + 0x1d,0xc5,0x24,0x7f,0xe4,0x16,0x0,0x80,0x97,0x24,0x6e,0xcd,0xaa,0x13,0x98,0x15, + 0x28,0xc4,0x2,0xb0,0xc1,0x13,0x71,0xa0,0x19,0xd0,0xb4,0xd9,0x8b,0x62,0x83,0x15, + 0x90,0x49,0x10,0xf0,0x6b,0x79,0xa6,0x3a,0x96,0x87,0xf1,0xca,0x57,0xb5,0xd1,0x38, + 0xf9,0x70,0x7e,0x58,0x37,0x9f,0x6c,0xf7,0xdb,0x5e,0x7f,0x4d,0x7e,0xdd,0x8d,0x56, + 0x13,0x98,0xbb,0xd0,0x9f,0xba,0x2c,0xd9,0x45,0x27,0x94,0x79,0xff,0xd6,0x59,0x67, + 0xd1,0x8b,0xf0,0xe6,0xa1,0x8d,0x8f,0x36,0x88,0x4e,0xbc,0xa1,0xe,0x38,0xa2,0xda, + 0xdd,0x43,0x86,0xa6,0x2,0x86,0x88,0x52,0x42,0x0,0xce,0x39,0x34,0x5,0x94,0xe6, + 0x1e,0x3e,0xa9,0x99,0xe2,0xca,0x64,0xcf,0x3a,0x70,0x87,0x52,0xbf,0x10,0x9e,0x31, + 0xb4,0xc6,0x3e,0x45,0xfc,0x21,0xca,0x32,0xf0,0x53,0x7e,0xe9,0x64,0x0,0x5e,0xd8, + 0x75,0xc0,0xd3,0xaf,0xaf,0x9d,0xf4,0x4b,0x8,0xb4,0xfd,0x71,0x2f,0x3b,0x44,0xb3, + 0x8d,0x5,0xb5,0xfa,0x38,0xf2,0xf7,0x1d,0x4a,0x55,0xf3,0x33,0x42,0x6b,0x73,0xd8, + 0xa4,0x7,0x7,0x41,0xfa,0xa1,0xb,0x29,0x26,0x26,0x9,0x11,0x93,0x83,0x64,0x4, + 0xcf,0xc6,0x63,0x86,0xde,0xc6,0x44,0x54,0x5e,0x60,0xb4,0x9d,0x11,0x2e,0x2c,0x18, + 0x40,0x70,0x1c,0x5,0xb2,0xb3,0x99,0xcf,0xa4,0xd7,0x4b,0x33,0xc5,0x36,0x60,0x6b, + 0x7d,0x20,0x53,0xb7,0x9f,0xad,0xfd,0xb5,0x10,0x50,0xc7,0xb2,0x0,0x58,0x3a,0x64, + 0x10,0xfd,0xfc,0xca,0x2b,0xe8,0x91,0xab,0xaf,0xd6,0xc4,0x4f,0x22,0xe7,0x77,0x63, + 0xa3,0x97,0xe9,0x8,0x53,0x74,0x37,0xd,0xf0,0x4,0xc2,0xce,0x6d,0x5e,0x3f,0xbc, + 0xe9,0x8e,0xf3,0x2d,0x82,0x10,0x70,0xf6,0x9e,0xae,0x10,0xab,0x80,0x85,0xab,0x67, + 0xee,0x7b,0x51,0x87,0x49,0x2e,0xb,0x16,0xc7,0xb1,0x63,0x14,0x6b,0x3d,0xa6,0x2d, + 0x81,0x98,0xb2,0x8,0x12,0x7a,0x64,0x50,0xcc,0x9b,0x24,0x54,0xf4,0xff,0x63,0xe4, + 0x9f,0x9c,0x15,0x98,0x7,0x0,0x25,0x31,0x65,0x98,0x3a,0x6,0xfd,0xff,0x57,0xc, + 0x1a,0xe8,0x4,0x40,0x1f,0x42,0xa7,0xcb,0xc3,0x14,0x76,0x4a,0x0,0xe4,0x9b,0x26, + 0x2c,0x17,0x14,0x6a,0x1,0x64,0x3c,0x98,0x9d,0x81,0xa8,0x71,0x3f,0x13,0x57,0x1f, + 0xc8,0x11,0x28,0xee,0xc4,0x6e,0x6,0xf8,0xa9,0xc4,0xad,0xf1,0xf7,0x4c,0x7e,0xbb, + 0x59,0x60,0xb,0x1,0xb9,0xe4,0xfd,0x38,0x47,0xa,0x12,0x86,0x3f,0xe3,0xf,0x2f, + 0x77,0xa5,0xc2,0x94,0x6d,0xc7,0x1f,0xe0,0xf7,0xfd,0x9b,0xc9,0x4b,0xd1,0xed,0x97, + 0x50,0xe7,0x7d,0xe2,0x9e,0x7b,0xe8,0x44,0x53,0x53,0xaa,0x60,0x5c,0xb3,0xb1,0xc1, + 0xb3,0x34,0xe0,0x88,0x43,0xf2,0x50,0x9c,0x7,0x8d,0xcf,0x9,0x39,0x79,0xb6,0xde, + 0x6e,0x34,0x7e,0xb7,0x40,0x19,0x10,0x9a,0xed,0xad,0x9e,0xf9,0x7f,0xfc,0x98,0xe, + 0x22,0xc0,0xe4,0xa4,0xf8,0x68,0x21,0x84,0x9f,0xaa,0x36,0x38,0xea,0xc8,0x9e,0xf, + 0x50,0x37,0x87,0xf0,0xbb,0x28,0xf3,0x1f,0xa6,0x3f,0xe8,0xfe,0xbb,0x5b,0x6f,0xd5, + 0xfb,0x1d,0xf9,0x7b,0x1f,0xc5,0x26,0x3f,0x50,0xa8,0x0,0x8,0xcf,0x7,0xa0,0x30, + 0xe8,0xf6,0xdb,0x63,0x49,0xce,0x3d,0x7,0xa8,0xa5,0xce,0xa8,0x6b,0x26,0xc,0x95, + 0x2f,0x7d,0x20,0xb4,0xd6,0x74,0xc3,0x49,0x62,0x32,0x92,0x22,0x48,0x87,0x9d,0x77, + 0xfa,0x63,0xba,0xf0,0x70,0x2e,0xb4,0x3c,0xb6,0xb1,0x99,0xcf,0x4d,0x5,0x8c,0x2f, + 0x8,0xd3,0xfa,0xf6,0x75,0x19,0x19,0xc9,0x6f,0x12,0x98,0xf2,0x3d,0xe0,0x69,0xfd, + 0x9f,0xd3,0x4f,0xf7,0xc9,0x9f,0x60,0x13,0x1a,0xfb,0x8e,0xb5,0x52,0xac,0xcb,0x8c, + 0x2e,0xd8,0x6d,0x84,0xdf,0xb8,0xe6,0x94,0x99,0xd,0xe1,0xc0,0x21,0x7d,0x85,0x7c, + 0x0,0x78,0xfc,0x1b,0xfb,0x7b,0x96,0x46,0x43,0x23,0xc5,0xfa,0x35,0x62,0x4a,0x64, + 0x4a,0xe,0x1c,0xa8,0x5,0x11,0xc5,0x63,0xe9,0x82,0x46,0x92,0x5f,0xaf,0xa4,0x84, + 0xb3,0xa4,0xbb,0x23,0x7f,0xdf,0x20,0x9b,0x53,0xb0,0x54,0x90,0x85,0x51,0x5e,0x13, + 0x0,0x2f,0xf,0x7a,0x4,0x0,0x9e,0x29,0xc8,0x9f,0x20,0x34,0xd3,0xd,0x9a,0xe8, + 0x3a,0xdd,0x5c,0x60,0x81,0xb0,0xdd,0xe4,0xe5,0x37,0x24,0x8d,0xf1,0x8,0x43,0xb9, + 0x34,0xc4,0xd2,0xeb,0x26,0x30,0xa7,0x89,0xbb,0x23,0xcd,0x77,0x3e,0x56,0x9a,0xfb, + 0x7a,0x1d,0x64,0x50,0xc7,0x80,0xf8,0xdc,0xe6,0xb7,0xc9,0xef,0x9d,0xac,0x9a,0x33, + 0x66,0xa,0xb3,0xe5,0x89,0x4e,0xda,0x30,0x7c,0x18,0xad,0xba,0xfe,0x7a,0xbd,0xb, + 0xe4,0x8f,0x9b,0x63,0x98,0x98,0xb1,0x43,0x87,0x4d,0x9c,0x2e,0x15,0x39,0x94,0x36, + 0xe6,0x69,0x7f,0x3c,0x6,0x8,0x3,0xae,0x3b,0x2c,0x81,0xd6,0x13,0xe2,0x98,0x84, + 0xd6,0xfc,0xb6,0xd9,0xaf,0x2d,0x16,0x38,0x9,0xe1,0xf9,0x37,0xbf,0xb,0xb4,0xbf, + 0x23,0x7f,0x74,0xc8,0xe7,0x59,0xca,0xb6,0x7f,0xb1,0xb4,0x7f,0x14,0xc8,0x1a,0xa, + 0x3c,0xf0,0x6f,0xff,0x36,0xf6,0xc2,0xd7,0xbe,0x96,0x9c,0x69,0xc2,0xd5,0x98,0xf8, + 0x7e,0x50,0x90,0x8,0xb2,0x1,0xfc,0xa6,0x0,0x6b,0x48,0x4e,0x2f,0x66,0xd6,0xb9, + 0x27,0x1,0xc2,0x20,0x31,0x76,0xac,0x26,0x6e,0x62,0x5c,0x6a,0x99,0xb,0xfc,0x63, + 0x59,0xe3,0xb3,0x16,0x6,0x64,0xf3,0xc4,0x44,0xfb,0xf9,0x3,0x95,0x90,0xf4,0xd3, + 0xec,0x66,0xb,0x0,0xf1,0xfe,0x8f,0x5d,0x76,0x19,0xb5,0x63,0x7a,0x5f,0x9,0x4c, + 0xb8,0xd1,0xd4,0x48,0xf1,0xc3,0x47,0xbd,0xb6,0x37,0x12,0x6f,0x22,0x17,0x22,0x7c, + 0x0,0xb8,0x5f,0xee,0x9a,0x1b,0xef,0x9,0x46,0x5f,0x10,0x66,0x9b,0xa6,0x2b,0xc, + 0xd2,0xa2,0x41,0xdb,0xff,0xe0,0x41,0xaf,0x99,0x84,0xa6,0xc5,0x89,0x76,0xf5,0x31, + 0x4d,0x0,0x34,0x41,0xe0,0x90,0x50,0x2,0x2b,0xb1,0x6b,0x4f,0xba,0xe6,0x97,0xf7, + 0xaf,0xae,0x5b,0xab,0x84,0xa6,0x23,0x7f,0xb4,0xc8,0xf7,0x59,0x96,0xcb,0xb3,0xcf, + 0x49,0x2e,0x1d,0xfd,0xe6,0x37,0x93,0x9,0x13,0xe9,0xd7,0x8f,0x63,0x3,0xb8,0x7b, + 0xd0,0x38,0x5,0x93,0x7b,0xf6,0xf8,0x3d,0x3,0x61,0x91,0x82,0x1,0x64,0x19,0x76, + 0xc,0xa4,0x62,0xe,0x28,0xad,0xf7,0x21,0x55,0xf3,0xd4,0x7a,0xfa,0x5c,0x5,0x1e, + 0xbc,0x9c,0x85,0x94,0x12,0x48,0x5b,0x5b,0xbc,0x29,0xcb,0xbb,0xbc,0xc,0xc2,0xf, + 0x5c,0x7e,0x19,0xfd,0xf6,0x96,0x5b,0xf4,0x21,0xbe,0xf6,0x97,0x75,0x91,0xd7,0x83, + 0xe6,0xe5,0x14,0xdc,0x72,0x72,0xe,0xe9,0x13,0x90,0x53,0x76,0xb1,0x0,0xcc,0x36, + 0x52,0xf,0xe7,0xf2,0x3a,0x8e,0x85,0xb3,0x71,0xdf,0x3e,0x8a,0xb7,0xb6,0x91,0x9c, + 0x8,0x24,0xd9,0xde,0x4e,0xc9,0x83,0x87,0x4c,0x54,0xa0,0x77,0xbc,0x4d,0x7e,0x7d, + 0x65,0xd5,0xf6,0xaf,0x55,0x4d,0x28,0x90,0xdf,0x1e,0x6a,0x1a,0x8e,0xf2,0x78,0x49, + 0xfb,0x1a,0xde,0x4f,0xe1,0x8d,0xa3,0x58,0xb5,0x6a,0x55,0x5e,0xe4,0xe6,0xdf,0xa1, + 0x58,0x16,0x40,0xd1,0x7c,0x0,0x12,0x3,0x94,0x25,0x80,0xa1,0xc2,0x49,0xe,0x5c, + 0x37,0x23,0xcb,0xfc,0xe6,0x0,0xae,0x6a,0x6,0x8,0x79,0x64,0x34,0xfd,0xf7,0xbb, + 0xf7,0x98,0x65,0x70,0x2a,0x71,0x8,0x8b,0x40,0x30,0xb,0xaf,0x9b,0xf,0x8f,0x3c, + 0xf4,0xd7,0x75,0x4d,0x43,0x92,0x5f,0x10,0x5,0x52,0x95,0x31,0x1,0x41,0x7c,0x7c, + 0x74,0xce,0x42,0x5d,0x57,0xf5,0x5f,0x91,0x3f,0xde,0x3c,0xc1,0x7f,0x42,0xf,0x5c, + 0x71,0x79,0x80,0xfc,0x69,0xb0,0xb7,0xa1,0x1f,0xfe,0xc0,0xa1,0x54,0x20,0x8e,0x1c, + 0x9a,0x8b,0x25,0x93,0xd9,0xbe,0xaf,0xb0,0x32,0xe5,0x58,0xfe,0x31,0xe3,0x4d,0xcf, + 0x9e,0x12,0x40,0xca,0xa2,0x89,0xb7,0x9f,0xa0,0x44,0xff,0xc6,0xd4,0xfd,0x74,0x29, + 0x1,0x70,0xac,0x95,0xe2,0xda,0xb1,0x9a,0xd4,0x81,0x3e,0x7e,0x77,0x9f,0x14,0x78, + 0x22,0x3a,0x30,0x37,0xf2,0x3b,0xe4,0x2,0xe6,0x3a,0xf,0xa2,0x2a,0x17,0xcd,0x9e, + 0x2b,0x72,0x1e,0xd,0x88,0xa1,0xc2,0xba,0x39,0x80,0x91,0x71,0x68,0x6f,0xaa,0x6d, + 0xfd,0xc4,0x78,0x81,0x0,0xe2,0x31,0x2f,0xe6,0x3e,0x96,0x22,0xbb,0x1c,0x44,0x94, + 0x4a,0x31,0x3e,0x2a,0x60,0x39,0x4,0xb4,0x61,0xd8,0x3a,0x7,0x6,0xed,0xd9,0x93, + 0xfa,0xae,0xdb,0xbe,0xde,0xb5,0xda,0xdf,0xde,0x64,0x12,0x95,0x7a,0xc4,0x68,0xdf, + 0xb4,0x59,0x13,0x9f,0x28,0x25,0xe9,0xa0,0xfd,0x61,0xfa,0xff,0xf6,0xe6,0x9b,0xf5, + 0xf7,0x84,0xe9,0x86,0xcb,0x49,0x6c,0x1a,0x72,0x43,0x10,0xe8,0x66,0x82,0x6d,0x11, + 0x30,0xb1,0xa5,0x65,0x90,0x29,0x71,0x7,0xb,0x8c,0x5d,0x8a,0xf4,0x7,0x44,0x6e, + 0x7f,0xc4,0x60,0x1c,0x6f,0xf5,0xfd,0x1e,0x7a,0xa9,0x9a,0x4,0x89,0x9d,0xea,0x79, + 0xed,0x14,0x83,0x7e,0xf8,0x59,0xa0,0xdd,0x6f,0x32,0xff,0xd6,0x29,0xeb,0xac,0xe3, + 0xbf,0xfe,0x8b,0x16,0xab,0x8f,0x43,0xb4,0xb8,0xf3,0xce,0x3b,0xfb,0xba,0xa,0x45, + 0x41,0x4e,0x16,0x0,0x3,0x42,0x0,0x96,0xc0,0x1b,0xea,0x85,0xc4,0xeb,0xf7,0x4a, + 0x73,0xb3,0xf6,0x3,0x70,0xd0,0x8f,0x86,0x24,0xae,0xb7,0x81,0x62,0x23,0x47,0xea, + 0xa5,0x16,0x4,0x8a,0xbc,0x9c,0x53,0x10,0x16,0x42,0xd0,0x72,0xb0,0xca,0x10,0xeb, + 0xbc,0x9f,0xcf,0x91,0x1a,0x1f,0x60,0x8d,0x8f,0x8,0x3f,0xdc,0x55,0x72,0x5b,0x8b, + 0x47,0x7e,0x10,0xd6,0x94,0xb1,0x6c,0xd3,0x3b,0xf4,0xdf,0xcd,0xe3,0x69,0x63,0xbf, + 0x6,0x6a,0xda,0xbf,0xdf,0xd7,0xfc,0x99,0xc8,0x6f,0xcf,0xb5,0xc7,0xf7,0xa5,0xc9, + 0xa,0x8b,0x40,0x69,0xdd,0xb8,0x89,0xb8,0xb,0xd4,0x59,0x5a,0x6,0x61,0x60,0x6b, + 0xc2,0x9c,0xaf,0x47,0xf7,0x1d,0x38,0x94,0xba,0x5f,0x2e,0xf,0x61,0xc8,0x68,0xf3, + 0xe3,0x3e,0x79,0x80,0x8f,0x7d,0x2d,0x7c,0x57,0x65,0xd4,0x1b,0xf2,0x3b,0x38,0xe4, + 0x83,0x1e,0xb5,0x4c,0x60,0x9,0xe8,0x93,0xd5,0x8b,0x38,0xb,0x5d,0x78,0x2f,0xbd, + 0xac,0x85,0x40,0xfc,0x8d,0xb5,0xbe,0x53,0xd0,0x37,0xc1,0xc3,0xa0,0xbd,0xea,0x5e, + 0x76,0x61,0x69,0x19,0x64,0x5e,0x87,0xc6,0x4f,0x6,0x34,0x1f,0xc3,0x9f,0x9b,0x0, + 0x56,0xc7,0xd6,0x54,0xb6,0x1c,0x46,0xdc,0x68,0x68,0x68,0xfe,0x75,0xea,0x7a,0xc7, + 0xe7,0xcd,0xa3,0x77,0xdd,0x78,0x23,0xd5,0xd7,0xd7,0xd3,0x65,0x3c,0x2e,0xf9,0xe8, + 0x31,0x22,0xd5,0xc6,0xd6,0x41,0x35,0x86,0xf4,0x3a,0xca,0x8e,0x3,0x6d,0x44,0xc8, + 0xad,0x86,0x11,0x2,0x6c,0x9,0xa4,0x21,0x99,0xf4,0x87,0xec,0xea,0x25,0xcc,0xf3, + 0x2c,0x3e,0xc,0x2e,0xc3,0x2f,0x93,0x44,0x7a,0x6f,0x58,0x28,0xb6,0xb3,0x8f,0x84, + 0xe6,0x57,0x65,0x2f,0x1e,0x3c,0xd8,0xe5,0xfb,0x2f,0x32,0xb8,0x4b,0x4f,0x26,0xf6, + 0xc8,0x5,0x15,0xe1,0x3,0xb0,0x1,0x4b,0xe0,0x79,0x75,0x47,0xcf,0xa9,0xf5,0x75, + 0xea,0xc1,0xbc,0x74,0xe6,0x19,0xda,0x12,0x40,0x3e,0x40,0x49,0x7e,0x98,0xe4,0x5e, + 0x7b,0x7c,0x93,0x3e,0xcf,0x77,0xca,0xc5,0xbd,0x21,0xae,0xda,0x74,0x37,0x61,0xac, + 0x9e,0x19,0xcf,0x26,0xfe,0x5e,0x7f,0xe,0x42,0x2d,0x8,0x62,0x14,0xd4,0x7c,0x8a, + 0x30,0x81,0xb2,0x42,0xc8,0x1f,0xd3,0x4e,0x3d,0x8f,0xfc,0xcb,0xd,0xf9,0xa1,0xf9, + 0x41,0xfe,0x1,0x3,0x7,0x52,0x7d,0x43,0x3,0xad,0x44,0xdf,0xff,0x6f,0x7e,0x43, + 0xb4,0xfe,0xd,0x4f,0xdb,0xa2,0x6b,0xcd,0xd4,0x47,0x13,0x50,0x34,0x3d,0x2,0xd6, + 0x0,0xf7,0xc,0xc,0x1d,0xec,0x1f,0xc3,0x26,0xbc,0x6f,0x1d,0x48,0xf2,0x73,0x19, + 0x62,0x1e,0x3f,0x9c,0xab,0xcf,0x17,0x4d,0x9,0xff,0x58,0xbe,0x8f,0x10,0xf2,0x83, + 0xf8,0x49,0xf3,0xbd,0xf6,0x95,0xd7,0x34,0xf9,0x1d,0x1c,0x7a,0x8a,0x82,0xe5,0x12, + 0xac,0x81,0x7,0x5f,0x7f,0x9d,0xbe,0x37,0x77,0xae,0xb6,0x4,0x74,0xe6,0x99,0x7d, + 0xfb,0xe8,0xc4,0x3b,0x9b,0x3c,0x87,0x49,0x9a,0xa6,0x8b,0x2b,0xe1,0x30,0x29,0xbb, + 0x85,0x90,0x5,0x59,0x35,0xbe,0xf1,0xbc,0x73,0x9b,0x3e,0x36,0x61,0xbc,0x36,0xfb, + 0xd7,0x1a,0xf2,0x7f,0xf2,0x27,0xf,0x9b,0x6a,0xa4,0xb4,0x36,0x4,0xc5,0xfc,0x5f, + 0xfc,0xc2,0xfb,0x82,0xec,0x39,0x63,0x26,0x84,0x5f,0xd8,0xdc,0x8b,0x9e,0x79,0xc7, + 0xb6,0x8,0x72,0x81,0x6d,0x35,0x84,0xa8,0x4,0x3b,0xb2,0xf,0x89,0x3d,0xfc,0xb1, + 0xfd,0xb2,0xcd,0xaf,0xd6,0x6d,0x6f,0xbf,0xb3,0x0,0x8a,0x8b,0x4a,0xb5,0x0,0xf2, + 0x4b,0x9,0x16,0x2,0x58,0x3,0x7f,0x76,0xed,0xb5,0x49,0x58,0x2,0xf,0xbc,0xf0, + 0x3c,0x4d,0x6d,0x6b,0xa7,0x2f,0x9f,0x3a,0x9b,0xea,0x4f,0x9a,0x4c,0x27,0x8c,0xe6, + 0xd7,0xe1,0xa9,0x9a,0xfb,0x1e,0x69,0xdb,0x8d,0x46,0xd7,0xed,0x75,0x31,0x91,0x8, + 0xb,0x84,0x30,0xe1,0x20,0x35,0x7e,0xc3,0xe4,0x49,0xd4,0xf6,0xf4,0xb3,0x14,0x6b, + 0x9e,0xe0,0x9,0x1,0xd3,0x33,0xe1,0x11,0x5f,0x47,0xec,0xd0,0x72,0x4c,0x54,0xaa, + 0xc8,0xff,0x98,0x21,0x6a,0xf2,0x82,0xf7,0x84,0xd6,0x1f,0xc2,0x60,0xe5,0x87,0x3f, + 0x4c,0xff,0xa8,0x2c,0x81,0x25,0x22,0x81,0x6,0x7,0x26,0x61,0x92,0x4d,0x26,0x23, + 0xc0,0x56,0x2,0x9b,0xe8,0xba,0x89,0xc0,0x4d,0x5,0xb3,0xc,0x5,0x3b,0xf,0xcd, + 0x3a,0x23,0x70,0x8e,0xf5,0x96,0x68,0xed,0xcf,0x9a,0x5f,0x64,0x0,0x7a,0xee,0x9a, + 0x6b,0xe8,0xc4,0x89,0x13,0xe4,0xe0,0x50,0x28,0x22,0x93,0x4b,0xdf,0xf9,0xfa,0xd7, + 0x93,0xaf,0xad,0x59,0x43,0x37,0xce,0x99,0x43,0xf,0x3e,0xf8,0x0,0xbd,0x5f,0x69, + 0xb3,0xf,0xce,0x9f,0x4f,0x1d,0xf0,0xc4,0x9b,0x1,0x6c,0x9,0xa9,0xb1,0x39,0xaa, + 0x8f,0x49,0xcc,0x15,0x9a,0x30,0xc1,0x6b,0x1e,0x58,0xdb,0x92,0x2d,0x2d,0xc1,0x63, + 0x6d,0xb2,0x50,0x50,0xeb,0x3,0x92,0xfc,0x37,0x7c,0xe6,0x33,0x7a,0x5d,0xc7,0x33, + 0x64,0x10,0xc7,0xdf,0xfe,0xed,0x6f,0x69,0xc9,0xb1,0x63,0xde,0x17,0x33,0xad,0x96, + 0x7f,0xa4,0xa9,0xaf,0x3d,0xe1,0x46,0xd4,0x8,0x98,0xfc,0xb0,0xa6,0xd0,0x2c,0x40, + 0x5d,0x20,0x0,0x8c,0xb0,0x4a,0x55,0x29,0xe9,0x6b,0x24,0x67,0x1,0x14,0x17,0x95, + 0x6a,0x1,0x44,0x5a,0x2d,0x8,0x1,0xdc,0xe9,0xea,0x7,0xbe,0xaf,0xbf,0xc3,0x1a, + 0x98,0xa5,0xda,0xf3,0x57,0x4c,0x9a,0xac,0x33,0xef,0x50,0x6,0x2,0x17,0xd2,0xb3, + 0xca,0x39,0xfc,0x51,0xa,0x6,0xf6,0x60,0x1d,0xed,0xfd,0xd,0xca,0xe4,0x4f,0xbe, + 0xe7,0x42,0x3a,0xc3,0x4c,0xcb,0xbb,0xaf,0xad,0x4d,0x13,0x66,0xc1,0x82,0x5,0xde, + 0xd1,0x19,0xfa,0x73,0x71,0xfe,0x3f,0xda,0x82,0x20,0xc6,0x76,0x85,0xb1,0xc,0x84, + 0x75,0xa0,0xbd,0xf3,0x66,0x89,0x7d,0xc9,0x6e,0x7e,0x69,0x2e,0x47,0x7e,0x27,0x2e, + 0x5b,0x6c,0xb7,0x89,0x9f,0x29,0xba,0xcf,0x9,0x80,0xde,0x41,0xa5,0xa,0x80,0x82, + 0x9b,0x0,0x12,0x7f,0x7d,0xfb,0xed,0xfa,0xe2,0x5a,0x10,0x28,0xd,0xb6,0xfa,0xfb, + 0xf7,0xd3,0x46,0xa5,0x85,0xd7,0x1e,0x3f,0x4a,0xb3,0xba,0x3a,0xe8,0x3,0xca,0x74, + 0xef,0x30,0x24,0x91,0x82,0x20,0xac,0xc6,0x99,0x84,0x82,0xaf,0xbd,0xcd,0xf,0xc2, + 0x6d,0x71,0x68,0x7d,0xec,0xf1,0xb5,0xbe,0x22,0xff,0x4d,0xb3,0x67,0xd3,0xe3,0x88, + 0xa2,0xa3,0x14,0xe1,0xbb,0xb,0xe4,0xc0,0xde,0x2f,0xbd,0xf7,0xbd,0xf4,0x25,0x32, + 0x16,0x81,0x31,0xbd,0xf5,0x59,0x23,0x86,0x79,0x4,0x8f,0x79,0xe3,0x15,0x62,0xbb, + 0x8c,0x63,0x70,0x67,0xf6,0x7b,0x49,0xbb,0x7,0x79,0x3d,0x55,0x7e,0xc,0xde,0x7c, + 0x38,0xf7,0xc4,0x4c,0xbe,0x1a,0x6a,0x1b,0x13,0x3f,0x97,0xba,0x3b,0x38,0xe4,0x8b, + 0x48,0x5,0x0,0x43,0xa,0x82,0xd5,0xaa,0x39,0xb0,0x41,0x11,0x6a,0xe3,0xd3,0xab, + 0x68,0xdd,0x1b,0xaf,0x6b,0x92,0xcc,0x40,0x5f,0x3e,0xa5,0x48,0x7e,0x95,0xd5,0x54, + 0x48,0x9a,0x90,0xdd,0x50,0xb1,0xe9,0x13,0xdf,0x73,0xd6,0x2d,0x35,0xe6,0xfe,0xfa, + 0x10,0xad,0xff,0x6b,0x68,0x7d,0xe,0xf4,0xe9,0x81,0x8,0xe,0x8,0x2,0x65,0x11, + 0xc0,0xeb,0xde,0x69,0x6,0x46,0x25,0xa1,0x9d,0x45,0x10,0xe,0x51,0x6e,0xa2,0x17, + 0x4e,0xbc,0x98,0x3c,0x7,0x42,0x5,0xe5,0xa8,0xf2,0x74,0xfe,0x3e,0xb3,0xfd,0xfa, + 0x79,0xf3,0xe8,0x4f,0xdf,0xed,0xcd,0xae,0xec,0x88,0xef,0x50,0x2c,0x14,0x45,0x0, + 0x30,0x20,0x8,0xee,0xbc,0xf3,0xce,0xe4,0xb0,0x86,0x6,0x7a,0x55,0xbd,0xc4,0x6f, + 0x99,0xb6,0xff,0x86,0x67,0x9e,0xd6,0x64,0x41,0x13,0x61,0x43,0x63,0x3f,0x5a,0xf, + 0xc1,0x40,0xec,0x2c,0x4c,0xd2,0x4c,0x65,0x2d,0x40,0x28,0x30,0xd0,0xa3,0x0,0xa7, + 0x22,0xf0,0x98,0x32,0xa9,0xb4,0xf0,0x50,0xc4,0x5f,0x3f,0x6a,0x24,0x91,0x20,0xfe, + 0xe9,0x8a,0xf8,0xd8,0x7,0x73,0xdf,0x8f,0xda,0x33,0x65,0x14,0x42,0x21,0x8,0x82, + 0xaf,0xd6,0xd5,0x51,0x47,0x47,0x7,0xbd,0xf7,0x7b,0xdf,0xd3,0xdb,0x74,0x4,0x1, + 0xae,0xc1,0xce,0xb9,0x64,0xd2,0xb7,0x12,0x34,0xb0,0x5d,0xf8,0x11,0xfc,0xeb,0x83, + 0xf0,0xc6,0xac,0xd7,0xe7,0xf,0x1b,0x42,0xb,0x9b,0x9a,0x68,0x89,0x5a,0xef,0x38, + 0x63,0xae,0x16,0x2a,0x2b,0x3e,0xf4,0x21,0x53,0xa4,0x23,0xbe,0x43,0x71,0x51,0x54, + 0x1,0xc0,0xd8,0xaf,0xcc,0xf0,0x89,0x98,0xf0,0x8e,0xbc,0x90,0xca,0xef,0x7d,0xeb, + 0x5b,0xf4,0xea,0x6b,0xaf,0xd1,0x5b,0xd8,0xa0,0x9a,0xa,0x6f,0x21,0xfc,0x55,0x9, + 0x5,0x0,0x42,0xe0,0x8f,0x13,0x27,0x68,0xa1,0x0,0xe1,0x0,0x4c,0x6b,0x6d,0xa3, + 0x8d,0x6f,0x6f,0xa4,0xa9,0x58,0xaa,0x7d,0xdc,0x16,0xd7,0xa6,0x7d,0x6,0xe2,0x3, + 0x51,0x36,0xbb,0x3a,0x4c,0xba,0x62,0x8c,0x1f,0x68,0x6c,0x6c,0xa4,0xd6,0xd6,0x56, + 0x5f,0x18,0xf0,0x75,0x3a,0x60,0x1d,0xb0,0x40,0x40,0xdf,0xbe,0x21,0x7a,0x98,0x5f, + 0xe0,0x5d,0x6a,0xdb,0xff,0x18,0x1,0xb1,0xa4,0x5f,0x7d,0x80,0xf8,0xe,0xe,0xbd, + 0x85,0x5e,0x11,0x0,0xb6,0x83,0xeb,0x16,0x4c,0x8e,0x67,0xf0,0xbd,0x7f,0xf8,0x7, + 0xbd,0xff,0x35,0xd1,0x37,0x1e,0x53,0xc2,0x0,0xfd,0xf6,0x31,0xa3,0x0,0x37,0xf6, + 0xeb,0xa7,0x89,0x84,0x6d,0x9,0xd3,0x9d,0x37,0x57,0x91,0xfe,0x80,0x69,0xdf,0x63, + 0xe9,0x9d,0x18,0x3d,0xf1,0xc3,0x0,0xf2,0x3,0x3c,0x98,0x8,0xb8,0x4c,0x9,0x83, + 0x3a,0x91,0xb2,0x8c,0xe4,0xba,0x40,0x87,0x99,0x74,0xe5,0x7f,0xf0,0x7,0xf7,0xac, + 0x84,0x84,0x23,0xbe,0x43,0x5f,0xa1,0x57,0x4,0x40,0x36,0x42,0x9e,0x66,0xda,0xb9, + 0x73,0xcd,0x52,0xe3,0xd3,0x9f,0x4e,0x2f,0xc3,0x90,0x7b,0x5,0x66,0xde,0xa0,0x14, + 0xe9,0xa5,0x79,0x5d,0x6c,0xe2,0x87,0xd5,0x87,0xf1,0x5b,0xe3,0xa8,0xcb,0x5,0xce, + 0xb4,0x77,0x28,0x15,0xf4,0x8a,0x0,0x28,0x6,0xa4,0x55,0xd1,0x9b,0xc4,0xf7,0xaf, + 0x9f,0xa9,0x1b,0xd1,0x1e,0xae,0x5c,0xe1,0x64,0xbf,0x72,0xe1,0x95,0xbd,0x7a,0xbd, + 0xa5,0x4b,0x96,0xf6,0xea,0xf5,0x2a,0x1d,0x45,0x17,0x0,0x69,0x83,0x3,0x7b,0x88, + 0xb4,0xf9,0xd5,0x4a,0x34,0x99,0x45,0xef,0x13,0xbe,0xef,0x9e,0x43,0x6f,0x93,0x9f, + 0xaf,0xe9,0x84,0x40,0x74,0xe8,0xd1,0x60,0x20,0x7,0x87,0xbe,0x20,0x7f,0x29,0x5c, + 0xbb,0xd2,0xe0,0x4,0x80,0x43,0xde,0x70,0x4,0xac,0x1c,0x94,0xad,0xf,0xc0,0x21, + 0x3f,0xf4,0x6,0x69,0x8b,0x65,0x9a,0x87,0xd5,0x3d,0xea,0xfb,0xa9,0xd6,0x66,0x45, + 0xd9,0x58,0x0,0xec,0x5c,0x2b,0xa4,0x8d,0xcd,0xe7,0xf6,0x24,0x2a,0xb0,0x9c,0x51, + 0xce,0xe4,0xef,0x2d,0x54,0xab,0x55,0x53,0x56,0x16,0x40,0x50,0x8,0xe4,0x47,0xe2, + 0xaa,0x27,0x7f,0xb1,0x7c,0x85,0xb1,0xe2,0x93,0x1f,0xe5,0xf7,0xc6,0x7d,0x5c,0x79, + 0xe5,0x95,0xb4,0x74,0x69,0x79,0xb,0xb2,0x7c,0x51,0x36,0x16,0x0,0x13,0xb8,0xbb, + 0xd1,0x7c,0x51,0x9f,0x5b,0x11,0x28,0xe2,0xed,0xf6,0x96,0xe6,0xd7,0xd7,0x29,0xe6, + 0xcf,0x56,0x65,0xaf,0x4,0xa3,0xac,0x2c,0x0,0x26,0x2e,0xcf,0x75,0xdf,0xd3,0xf3, + 0xab,0x9,0xe7,0x9e,0x73,0x4e,0x51,0xcb,0xef,0x4d,0x8d,0x89,0x6b,0x2d,0x5e,0x1c, + 0x7d,0x76,0x5e,0x7e,0x2d,0xa0,0x20,0xaa,0xcd,0x2,0x28,0x2b,0x1,0xe0,0xd0,0x73, + 0x44,0x2d,0xfb,0xb8,0x25,0x5,0x42,0x86,0x8c,0x49,0x2f,0xa,0x6c,0xf2,0x47,0x75, + 0x4f,0x50,0xc,0xa5,0x36,0x6d,0x77,0x6f,0xa1,0x6c,0x9a,0x0,0xe,0x3d,0x3,0x93, + 0xd3,0x9a,0x7b,0xa5,0xa0,0x4f,0xfa,0x35,0x8a,0x9f,0x33,0x3f,0x8c,0xfc,0x51,0xdd, + 0xb,0xc8,0xff,0x77,0x7f,0x77,0x27,0x5d,0x74,0xd1,0x45,0x45,0xbf,0x8f,0x52,0x83, + 0xb3,0x0,0xaa,0x0,0x10,0x2,0xf9,0x66,0xb2,0xe9,0xe,0x98,0xf4,0x12,0xe8,0xd, + 0x9f,0xaa,0x4d,0xfe,0x44,0x22,0xa9,0x9d,0xb9,0x17,0x5f,0xbc,0x20,0xb2,0x6b,0xc4, + 0xb3,0xcd,0x3c,0x5d,0xc1,0x28,0x2b,0x1,0xc0,0x1e,0xfc,0xf9,0x22,0x57,0x0,0xcf, + 0xd8,0x92,0x53,0xba,0xaf,0x32,0x3f,0xbf,0x10,0x44,0xa9,0xdd,0xc2,0x84,0x49,0x6f, + 0x58,0x1,0x0,0xc8,0xcf,0x1a,0xbb,0x5a,0x49,0x1b,0x25,0xca,0x46,0x0,0x80,0x3c, + 0x20,0x46,0x36,0x7,0x20,0xb4,0x12,0xf6,0xf3,0xb1,0x95,0x74,0x7e,0xa9,0xc1,0x9b, + 0x6f,0x25,0xd5,0x1d,0x5b,0x4c,0x4b,0x20,0x35,0xe7,0xaa,0x23,0x7f,0xd4,0x28,0x9b, + 0xa7,0x98,0x59,0xab,0xf2,0x27,0x96,0xf5,0xd8,0x72,0x3f,0xbf,0x94,0x0,0x6b,0xc2, + 0x23,0x61,0xf1,0xc9,0x2f,0xcb,0x77,0xe4,0x8f,0x1e,0x65,0x63,0x1,0xe4,0x82,0x42, + 0x83,0x7c,0xca,0xfd,0xfc,0xde,0x4,0x48,0x18,0xb5,0x5f,0x21,0xd7,0xeb,0x3a,0x44, + 0x87,0x8a,0x12,0x0,0xe,0x99,0xf1,0xa9,0x37,0x7f,0xa9,0x97,0x3f,0xdc,0x67,0xe6, + 0x15,0x38,0xaf,0x70,0x2b,0xa3,0x1a,0xbd,0xe6,0x95,0x6,0x27,0x4e,0xab,0x0,0x4c, + 0xfe,0x0,0x9e,0x2b,0x1f,0x6b,0xc3,0xa1,0x78,0x70,0x2,0xa0,0xc2,0x11,0x4a,0x7e, + 0x86,0x13,0x2,0x55,0xf,0x27,0x0,0x1c,0x1c,0xaa,0x18,0xce,0x7,0x50,0xe1,0xf0, + 0xdb,0xfc,0x8c,0xdd,0xa5,0xdd,0xc3,0xe0,0xd0,0xbb,0x70,0x16,0x80,0x83,0x43,0x15, + 0xc3,0x9,0x80,0x4a,0x47,0x36,0x6f,0xbf,0x9b,0x8e,0xa0,0xea,0xe1,0x4,0x40,0x35, + 0x20,0x4c,0x8,0x38,0xf2,0x3b,0x90,0xf3,0x1,0x54,0xf,0x22,0xe8,0xf7,0x77,0xa8, + 0x3c,0x94,0x8d,0x5,0x90,0x4b,0x94,0x5c,0xb6,0xb4,0x5f,0xe5,0x7e,0xbe,0x83,0x43, + 0x31,0x50,0x56,0x16,0x40,0x18,0x31,0xe4,0x40,0x91,0x4c,0xc7,0x54,0xca,0xf9,0xe, + 0xe,0x51,0xa3,0x6c,0x2c,0x0,0x26,0xc8,0xca,0x95,0x2b,0x33,0x1e,0x93,0x6d,0x38, + 0x6d,0xb9,0x9f,0xef,0xe0,0x50,0xc,0x14,0x5d,0xdd,0x2c,0x5e,0x7c,0xa7,0x7e,0x9b, + 0xf9,0x9d,0xe6,0xf1,0xef,0x8c,0xbe,0x18,0x50,0x52,0x49,0x78,0xea,0xa9,0x95,0x7a, + 0xd9,0x5b,0x69,0xb9,0xaa,0x15,0x89,0x44,0x42,0x2f,0xf3,0x7d,0x5f,0x59,0xe0,0x17, + 0xcb,0xb0,0xb,0xf9,0xdd,0xf3,0xba,0x52,0xd9,0x58,0x0,0xe,0xe9,0x48,0xa5,0x49, + 0xef,0xe3,0x8a,0x38,0x94,0x2d,0xca,0xca,0x7,0xe0,0x90,0x2,0x93,0xdf,0x4b,0xca, + 0x91,0xd2,0x50,0xe,0xe,0xf9,0xc0,0x59,0x0,0x65,0xc,0xf6,0x15,0x2c,0x5e,0xbc, + 0xb8,0x6f,0x2b,0xe2,0xd0,0x27,0x28,0xd4,0xfc,0x7,0x9c,0x5,0x50,0xa6,0x90,0x73, + 0x24,0xa0,0x5d,0xea,0x1c,0x87,0xbd,0x83,0x4a,0xeb,0xa5,0x29,0x49,0x1,0x10,0xe5, + 0xcb,0x9c,0xcf,0xf,0x96,0xcb,0x75,0xa3,0x2c,0x2f,0x8a,0xb2,0xca,0x21,0x7f,0x60, + 0x25,0x21,0x2c,0xd7,0x63,0x5f,0x20,0xa,0xed,0xf,0xd4,0x14,0x5e,0x95,0xec,0x98, + 0x3f,0x7f,0xfe,0x62,0xeb,0xbb,0xbf,0xe,0xf,0x69,0xb1,0x73,0xe1,0x45,0xfd,0x3, + 0x45,0x59,0x5e,0xd4,0x65,0xe5,0xfa,0xe9,0xcd,0xb2,0x8a,0x51,0x5e,0xa9,0xdd,0x6f, + 0xb6,0x6b,0x6c,0xda,0xb4,0xc9,0x1c,0x93,0xf3,0xad,0xe5,0x84,0x95,0x2b,0xd3,0x7a, + 0x23,0x7a,0xd4,0xd,0xd4,0x67,0x16,0x80,0xec,0xf,0x47,0x9e,0x37,0x90,0x9f,0x1f, + 0xe4,0x85,0x17,0x5e,0x18,0xd9,0x75,0x36,0x6c,0xd8,0x90,0xf3,0xb1,0xd3,0xa6,0x4d, + 0xeb,0xd5,0xf2,0xaa,0xa1,0xac,0x62,0x94,0x17,0x75,0x99,0x85,0x94,0xb5,0x6a,0xd5, + 0x2a,0xe1,0x90,0xed,0x1d,0x47,0x6c,0x54,0xda,0xbf,0xa0,0x13,0x73,0x85,0x1d,0x7, + 0xc0,0x16,0x40,0x98,0x44,0x7d,0xcf,0x7b,0xde,0xe3,0xaf,0x47,0xf1,0x3,0xe7,0x53, + 0x46,0x77,0x65,0x45,0x5d,0x5e,0x35,0x94,0x55,0x8c,0xf2,0xa2,0x2e,0x33,0x8a,0xb2, + 0x9e,0x7e,0xfa,0x69,0xad,0xc0,0xc2,0x2c,0xd8,0xa8,0xe3,0x0,0x32,0xc4,0x7b,0xf4, + 0xb8,0xf4,0xa2,0x5a,0x0,0x4c,0x7e,0x6,0x3f,0x20,0xd6,0xf8,0x52,0xeb,0xe7,0x4a, + 0x7e,0xf9,0x90,0xf9,0xdc,0xb7,0xde,0x7a,0x8b,0xa6,0x4f,0x9f,0xee,0x6f,0xc7,0x77, + 0xde,0xcf,0x65,0x5,0xa7,0x16,0x4f,0xfd,0x88,0xd8,0x7e,0xeb,0xad,0xb7,0xea,0xf5, + 0xef,0x7e,0xf7,0xbb,0xa1,0xd7,0x8c,0xb2,0xbc,0x6a,0x28,0xab,0x18,0xe5,0x95,0xf2, + 0xfd,0x22,0x39,0x2a,0x37,0x67,0x8b,0xe9,0x8f,0x89,0x9a,0xfc,0x40,0xd1,0x4,0x40, + 0x36,0xf2,0x33,0xf8,0x81,0x73,0x76,0xd9,0x37,0xdf,0x7c,0xd3,0xdf,0xd7,0xd3,0x1f, + 0x25,0xdb,0xf,0x6b,0xc3,0xde,0xce,0xe7,0x48,0x9,0x1f,0x65,0x79,0xd5,0x50,0x56, + 0x31,0xca,0x8b,0xba,0xcc,0xa8,0xca,0xb2,0xdf,0xe5,0x62,0x3a,0x8,0x8b,0x41,0x7e, + 0xa0,0x28,0x2,0xc0,0x26,0x3f,0x7,0xab,0x5c,0x72,0xc9,0x25,0x7a,0x29,0x35,0x3f, + 0x93,0x1f,0x3f,0xa,0x3f,0xc0,0x9e,0xfe,0x28,0xf6,0x80,0x9a,0x6c,0xa6,0x24,0x1f, + 0xc3,0x42,0x24,0xc,0xf2,0x45,0x29,0xb4,0xbc,0x6a,0x28,0xab,0x18,0xe5,0x45,0x5d, + 0x66,0x54,0x65,0x75,0x37,0x3f,0x41,0x39,0x90,0x1f,0x88,0x3c,0x10,0xa8,0xa7,0xe4, + 0x97,0xc0,0x8f,0x82,0xcf,0xd4,0xa9,0x53,0xfd,0xf,0x6f,0xeb,0xee,0x7,0xce,0xd5, + 0xeb,0x2b,0xcb,0x88,0xc5,0x53,0xdf,0xb1,0xf,0x81,0x35,0xf8,0x60,0x3d,0x97,0x89, + 0x28,0x72,0x29,0xaf,0x1a,0xca,0x8a,0xb2,0xbc,0xbb,0xee,0xba,0xab,0x24,0x7f,0x87, + 0xcf,0x7d,0xee,0x73,0x69,0xef,0x18,0xcc,0x7f,0xe9,0x3,0xe0,0xfd,0x51,0x4c,0xa0, + 0x5a,0x4c,0xf2,0x3,0x91,0x5a,0x0,0x3d,0x21,0x7f,0x3e,0x8,0xfb,0x51,0x92,0xea, + 0x1a,0xf8,0x8e,0x66,0x0,0x3b,0x16,0x1f,0x7e,0xf8,0xe1,0xc0,0xf1,0xc,0xbe,0xfe, + 0x75,0xd7,0x5d,0xa7,0x7f,0x48,0x2e,0xc3,0xc6,0xf5,0xd7,0x5f,0xef,0x97,0x1,0xfc, + 0xf4,0xa7,0x3f,0x2d,0xa8,0xbc,0x4f,0x7c,0xe2,0x13,0x15,0x5f,0x56,0x31,0x9e,0x99, + 0x2c,0xaf,0xd4,0xee,0x97,0xc1,0x4e,0xbe,0x72,0x24,0x3f,0x10,0x59,0x1c,0x40,0x21, + 0xe4,0xbf,0xe5,0x96,0x5b,0xf4,0x12,0x3f,0xca,0x9a,0x35,0x6b,0xe8,0xf5,0xd7,0x5f, + 0xd7,0x4b,0xfe,0xac,0x5e,0xbd,0x5a,0x6f,0x9b,0x33,0x67,0x4e,0xf0,0x47,0x11,0x57, + 0x5c,0xb8,0x70,0x61,0x56,0xf2,0x4b,0x9c,0x76,0xda,0x69,0xfa,0xf8,0xa5,0x4b,0x97, + 0xea,0x32,0xf4,0xb1,0xa6,0xac,0x7d,0xfb,0xf6,0xe9,0xeb,0xe1,0x85,0x8e,0xaa,0xbc, + 0xb9,0x73,0xe7,0xfa,0xf7,0x57,0xa9,0x65,0xf1,0x33,0x8b,0xa2,0xbc,0xfd,0xfb,0xf7, + 0xeb,0xf2,0xb0,0x2d,0xaa,0x32,0xf9,0x7e,0xb,0xf9,0x4d,0xf5,0xf1,0xea,0xff,0xe7, + 0x6e,0xf5,0xde,0xc1,0xee,0xc8,0x1f,0xcf,0x22,0x38,0xba,0x43,0x6f,0x90,0x1f,0x88, + 0xa4,0x9,0x50,0x8,0xf9,0xd9,0xfc,0xef,0xee,0x47,0xe1,0x87,0x7c,0xdf,0x7d,0xf7, + 0x79,0xdf,0x13,0xf9,0x7b,0x5b,0xf9,0x47,0x4c,0xbb,0x46,0x1,0x8e,0xdb,0x5c,0xca, + 0x93,0xf7,0x9f,0x4b,0x79,0xdd,0x95,0x95,0x4f,0xdd,0x7a,0xab,0xac,0x8c,0xc7,0x15, + 0x50,0x5e,0x3e,0x49,0x52,0xa2,0xfc,0x5d,0x43,0xcb,0x32,0x58,0xba,0x64,0xa9,0x5e, + 0x56,0x2,0xf9,0x23,0x29,0xb4,0xa7,0xe4,0x67,0xe2,0x67,0x7b,0x9,0xf9,0x3c,0x8, + 0x7,0xac,0xb3,0x9,0xc7,0x4d,0x0,0x5f,0x18,0xe4,0x51,0x6,0x80,0x72,0x70,0xe, + 0x5b,0x13,0x8c,0x73,0xce,0x39,0xc7,0xd7,0x38,0xf9,0xd6,0x2b,0x53,0x79,0x40,0x2e, + 0x65,0xda,0xc8,0x54,0x16,0xae,0x15,0xe6,0x71,0xce,0x54,0xcf,0x6c,0xf5,0x8a,0xa2, + 0xac,0x73,0xcf,0x3d,0xd7,0x3f,0x3f,0x8a,0xfb,0x7c,0xd7,0xbb,0xce,0xd5,0x4b,0x7e, + 0x8f,0xb8,0xcc,0x6c,0xa,0x42,0x5e,0xdf,0xae,0x63,0x2e,0xef,0x88,0x2c,0x37,0xec, + 0x37,0x65,0xcd,0x5f,0x69,0xe4,0x2f,0xb8,0xe0,0x62,0x92,0xdf,0xaf,0xa0,0xf8,0x61, + 0xe4,0xf,0x9c,0xeb,0xf,0x6b,0x97,0xc1,0x2f,0x32,0xbf,0x58,0x10,0x26,0x3d,0x21, + 0xaa,0x2c,0x53,0x9e,0x2b,0xcb,0xcb,0xb7,0x4c,0x3e,0x8e,0x35,0x10,0xca,0x2,0xc1, + 0xe4,0xf9,0x3d,0x21,0x59,0x29,0x96,0x15,0x76,0x9f,0xda,0x62,0x4f,0xe6,0x57,0xa6, + 0xfd,0x3b,0xb0,0x50,0x43,0x99,0xf9,0xbc,0x23,0x76,0x59,0x52,0xe1,0xe0,0x7d,0xd3, + 0x4d,0x1,0xaa,0x2c,0xf2,0x3,0x3d,0x76,0x2,0x16,0xea,0xed,0xb7,0xbb,0x63,0xb2, + 0xf5,0xf3,0xf3,0xf,0xc9,0x42,0x80,0xbf,0xe7,0x5b,0x46,0x26,0xb3,0x8e,0x5f,0xb4, + 0x9e,0xd6,0x2b,0xca,0x32,0xed,0x40,0x13,0x9b,0xc,0x85,0x94,0x57,0xaa,0x65,0xa5, + 0xca,0xcc,0x5f,0xa0,0xf0,0x7b,0xc6,0x4e,0x48,0xbe,0xb6,0x2c,0x3f,0x9f,0x98,0x92, + 0xb0,0xdf,0xb4,0x52,0xc9,0xf,0xf4,0xc8,0x7,0x10,0x35,0xf9,0x6d,0x84,0x6d,0xc7, + 0xf,0x2c,0xbd,0xb8,0x3d,0x29,0x83,0xcf,0x67,0x47,0x10,0x3e,0xf2,0x7,0xef,0x69, + 0xbd,0x64,0x79,0xb2,0x19,0xd1,0x93,0x32,0xa5,0x16,0x62,0x2d,0x5b,0x68,0x79,0xf8, + 0x3d,0x4a,0xb1,0x2c,0x80,0xef,0x93,0xbb,0xd1,0x50,0x26,0x97,0x8b,0x32,0x41,0xde, + 0x8d,0x1b,0x37,0xea,0xf,0xd6,0x65,0x94,0x28,0xca,0x80,0x76,0xe,0xeb,0x12,0xe6, + 0xf2,0x7b,0xfa,0x9b,0xa2,0x1b,0x12,0xd1,0xa5,0x1c,0x61,0x5a,0x89,0xe4,0x7,0xf2, + 0xb6,0x0,0xa,0x21,0xbf,0x2d,0x79,0xc3,0xc0,0xe7,0x66,0xea,0xe7,0x2f,0xb4,0xc, + 0x59,0x3f,0x5b,0xcb,0x14,0x52,0x26,0x23,0xaa,0x32,0xa3,0x2e,0x4f,0x36,0x7b,0x4a, + 0xa9,0x2c,0x89,0x42,0x4,0xa,0x9f,0xcf,0x3,0x72,0x78,0x7f,0x14,0xf5,0xaa,0x54, + 0xf2,0x3,0x79,0x59,0x0,0x7d,0xd1,0xcf,0xcf,0xdf,0x73,0xf5,0xa4,0x67,0x2b,0x43, + 0xee,0x8f,0xaa,0x5e,0xbc,0x3f,0xdf,0x72,0xb3,0x95,0x69,0x9b,0xaa,0x51,0x95,0x57, + 0xca,0x65,0x49,0x81,0x82,0x4f,0x5f,0x5,0x83,0xd9,0x4e,0xc9,0x4a,0x26,0x3f,0x90, + 0xb3,0x5,0x10,0x5,0xf9,0xf3,0xe,0xbe,0x8,0x79,0xff,0xa3,0x8,0x6,0xe1,0x32, + 0xf8,0x9c,0x52,0x2c,0x93,0xdb,0xb4,0x51,0x96,0x57,0xaa,0x65,0xd9,0x1,0x3f,0xd9, + 0x10,0x46,0xdc,0xa8,0x82,0xc1,0xf8,0x9d,0x63,0xb3,0x9f,0x33,0x2d,0x55,0x2a,0xf9, + 0x81,0x9c,0x2,0x81,0x7a,0xa3,0x9f,0x1f,0xb0,0x83,0x2f,0x18,0xec,0xc0,0x2b,0x34, + 0x28,0xa7,0x18,0x1,0x26,0xc5,0xa,0x5a,0x89,0x32,0xb0,0x6,0xe5,0x61,0x7f,0xa9, + 0x95,0xc5,0xcf,0xe,0x40,0x90,0x17,0xb,0x94,0xbc,0x82,0xc1,0x0,0x53,0xde,0x95, + 0x57,0x5e,0x59,0x58,0xbd,0x28,0xe5,0xf0,0xab,0x6,0xf2,0x3,0xdd,0x5a,0x0,0x85, + 0xb6,0xf9,0xf9,0x1,0x4a,0x7,0x1e,0x20,0x9d,0x40,0xbc,0x6e,0xff,0x60,0xd9,0xbc, + 0xec,0x36,0x32,0x95,0x51,0x48,0x80,0x49,0x5f,0x97,0x19,0x65,0x79,0xf9,0x34,0xa1, + 0x72,0x29,0x2b,0x57,0x64,0x2b,0xcb,0xf6,0xf8,0xe7,0x13,0xc,0xa6,0x9b,0x85,0x89, + 0xe0,0x3d,0x75,0xff,0xac,0xf4,0xdf,0xb4,0x63,0x7d,0xf2,0x2f,0xa9,0x2e,0xf2,0x3, + 0x59,0x5,0x40,0x14,0xe,0xbf,0x4c,0xc8,0xd4,0x7d,0x93,0x16,0xf1,0x27,0xca,0xc9, + 0x45,0x88,0xd8,0xe7,0xf0,0x3a,0x2,0x4c,0xf2,0x78,0x6f,0xd3,0xee,0xaf,0xb7,0xca, + 0x94,0x81,0x35,0x51,0x94,0xc7,0x31,0x9,0xb9,0xb6,0xdd,0xf9,0xbc,0x6c,0x65,0x71, + 0x79,0xf6,0xef,0xd1,0x5d,0x99,0x72,0x3d,0xdf,0xfb,0xe4,0x6b,0xf6,0xc4,0x87,0x93, + 0xba,0x76,0x7a,0xbd,0xaa,0x99,0xfc,0x59,0x2f,0x9e,0x2f,0xf9,0xb,0xe9,0xe3,0x87, + 0xc9,0x26,0x2d,0x5,0xec,0xef,0x49,0xf0,0x6,0x43,0x6,0xe5,0xf4,0x24,0x60,0xc5, + 0x16,0x2c,0x76,0xe0,0x50,0x31,0xca,0xcc,0x37,0x78,0xa8,0x98,0xe5,0xc9,0x73,0xa2, + 0xe,0x20,0x2a,0xf4,0x3e,0xed,0xa8,0xcb,0x9e,0x46,0x83,0x2,0x2c,0xc0,0xaa,0xa9, + 0xcd,0x9f,0x53,0x5,0xa2,0x24,0x3f,0x1f,0xf,0x84,0x79,0x70,0xed,0x20,0x9f,0x4c, + 0xe5,0xe4,0x23,0x44,0xa2,0x88,0xca,0xcb,0x46,0x88,0x62,0x96,0x59,0x2a,0xe5,0x65, + 0x2b,0xb,0xc8,0x37,0xe8,0xc7,0x16,0x0,0x85,0xdc,0x67,0xbe,0x4a,0xc2,0x2e,0xc3, + 0xb3,0x24,0x88,0xae,0xbb,0xee,0x13,0x55,0x4d,0x7e,0x20,0xad,0x9,0xd0,0x53,0xf2, + 0x17,0xda,0x1f,0x1c,0x55,0x90,0xf,0x7,0xe4,0xe0,0x98,0x42,0x5f,0x5c,0x19,0x3d, + 0xc8,0x8e,0xa5,0xa8,0xcb,0xc4,0xb1,0xdd,0x5,0xf,0xf5,0x45,0x79,0xfc,0xc,0xd9, + 0x54,0x8f,0x22,0x80,0xa8,0xd0,0x7a,0xd9,0xe5,0x63,0x99,0x6f,0x19,0x7f,0xff,0xf7, + 0x7f,0xef,0x97,0xc3,0xc4,0xac,0x56,0xf2,0x3,0x1,0x1,0x50,0xcc,0x7e,0x7e,0x9b, + 0xfc,0x61,0xdd,0x37,0x51,0x6,0x95,0xd8,0xd6,0x0,0xd0,0x53,0xc1,0x22,0xad,0x8b, + 0x62,0x94,0x59,0x8a,0xe5,0xc9,0x2e,0xc8,0xa8,0x82,0x7e,0xa,0x15,0xf2,0xdc,0xfd, + 0x58,0x48,0x19,0x76,0xfe,0xc8,0x6a,0x26,0x3f,0xe0,0xb,0x80,0x9e,0x92,0x3f,0xaa, + 0xfe,0xe0,0x5c,0x90,0x4d,0x88,0xb0,0x86,0xc0,0x4b,0xc2,0x75,0xe1,0x17,0x2e,0x8a, + 0xc8,0x37,0xde,0x1f,0x75,0x99,0xa5,0x5a,0x1e,0xef,0x2f,0x34,0x18,0xa9,0x18,0x42, + 0x3e,0x2a,0x45,0x51,0xed,0xe4,0x7,0x74,0x24,0x60,0xa1,0xa3,0xfa,0xa2,0x1a,0xcb, + 0xf,0xe2,0xe2,0xf3,0xc8,0x23,0x8f,0x4,0x3e,0xbc,0xd,0xe5,0xd8,0x91,0x5b,0x36, + 0xb8,0x2e,0x85,0xbe,0xb8,0x81,0xef,0x21,0x5e,0xf6,0x42,0xcb,0x2c,0xf5,0xf2,0xc2, + 0x7c,0x38,0x51,0xfc,0x3e,0x85,0xd4,0x2b,0x9f,0xae,0x4c,0xbb,0xc,0x7c,0xa0,0x80, + 0xaa,0xbd,0xcd,0x6f,0xa3,0x36,0x2a,0xb3,0x9f,0x1d,0x2b,0x21,0x7b,0xfc,0xfd,0x12, + 0x2c,0x4,0x20,0x14,0x70,0x8d,0x1e,0xf5,0x1,0x9b,0x1f,0x96,0xb5,0x8c,0x37,0xa4, + 0x34,0xf8,0xe2,0x46,0x61,0x9d,0x94,0x4b,0xa4,0x5f,0x94,0xe5,0xf1,0x3d,0xb3,0xd9, + 0xdd,0xd3,0xdf,0xc7,0x46,0x14,0x96,0x62,0x4f,0xcb,0xe0,0x20,0x1f,0x28,0xae,0xed, + 0xdb,0xb7,0x57,0x3d,0xf9,0x81,0x1a,0x39,0x75,0x17,0x2b,0x90,0x5c,0xc9,0x7f,0xf3, + 0xcd,0x37,0xeb,0xfd,0x88,0xd4,0x2,0xb2,0x9,0x67,0x44,0x5e,0xa1,0xbc,0x65,0xcb, + 0x96,0x5,0xb6,0x73,0xf4,0x16,0xca,0x60,0x21,0x62,0x7f,0xf0,0xfc,0xb0,0x8f,0x23, + 0xd0,0xf8,0x87,0xd4,0x26,0x65,0x22,0xd5,0xaf,0xcc,0x75,0x6,0xa2,0x8e,0xf4,0x8b, + 0xb2,0xcc,0x62,0x44,0xfa,0x15,0x23,0x25,0x17,0x1f,0x7,0xf4,0xe4,0xf7,0xe1,0xf2, + 0xd8,0xf2,0xeb,0x49,0xbd,0xa,0x2d,0x23,0x6,0xee,0xc5,0x82,0xfd,0xfc,0x47,0x8e, + 0x1c,0x71,0xe4,0x37,0xf0,0x7d,0x0,0xf9,0x92,0x3f,0x75,0x9e,0x9c,0x11,0x25,0xb3, + 0x76,0x80,0x6,0x81,0x56,0x61,0xd,0xc1,0xde,0xf4,0xf4,0x20,0x91,0xf4,0x32,0xc2, + 0x82,0x53,0xf4,0x77,0x8b,0xfc,0x91,0x21,0xcf,0xe0,0x9e,0x3e,0x29,0xb3,0x97,0xca, + 0x2b,0xe4,0xf7,0xe9,0x6b,0xf0,0xfb,0xcb,0xe4,0xbf,0xe2,0x8a,0x2b,0x2,0x75,0xac, + 0x76,0xf2,0x3,0x59,0x23,0x1,0xf1,0xb0,0x30,0x4f,0x5f,0xd8,0x9c,0x67,0x18,0x9f, + 0x8d,0xfd,0xb9,0x48,0xe4,0x30,0xf0,0x9c,0xf6,0xb9,0x4c,0xcd,0xc4,0xce,0x23,0x5c, + 0x4b,0xa,0x11,0x60,0xc9,0x92,0x25,0xa1,0xe7,0xe4,0x3b,0xe5,0x53,0x58,0xb4,0x9a, + 0x5d,0x76,0xd4,0x65,0x96,0x7a,0x79,0xb9,0x96,0x99,0xe9,0xf7,0xe1,0xb2,0xa,0xa9, + 0x57,0xb6,0x6d,0xb9,0x94,0xc1,0xd6,0x8,0xc8,0xff,0x95,0xaf,0x7c,0x45,0xaf,0xe3, + 0x7d,0xe6,0xd4,0xe0,0xd5,0x4c,0x7e,0x20,0x66,0xcf,0xdd,0xb7,0x60,0xc1,0x2,0x7f, + 0xa7,0x9c,0xae,0xcb,0xc1,0xa1,0xdc,0xc0,0x24,0x87,0xd9,0xf,0x80,0xf8,0x10,0xc, + 0x8e,0xfc,0x29,0xa4,0xe5,0x3,0xe8,0xad,0x19,0x4e,0x1d,0x1c,0x7a,0x3,0xd0,0xfc, + 0x12,0x8e,0xfc,0x41,0x84,0x36,0x1,0xba,0xba,0xba,0xf2,0x36,0xe9,0x1d,0x1c,0x4a, + 0xd,0xac,0xf9,0x1,0x56,0x6c,0xd2,0xb7,0x55,0xc8,0x3b,0x5e,0x9,0xe4,0x7,0x42, + 0x5,0x0,0xcf,0xde,0x8b,0x6c,0x28,0x3c,0x9d,0xb7,0x83,0x43,0x39,0x60,0xd5,0xaa, + 0x55,0xfe,0x7a,0x58,0x48,0x32,0x0,0xed,0x9f,0xb9,0xdb,0xba,0x7b,0x54,0xa,0xf9, + 0x81,0x50,0x1,0x20,0x1d,0x2e,0x9c,0x12,0xc9,0xc1,0xa1,0x1c,0xc0,0x26,0x3e,0x34, + 0x7e,0x4d,0x4d,0x4d,0xa0,0x49,0x9b,0x6b,0x20,0x51,0x36,0x54,0x12,0xf9,0x81,0x40, + 0x1c,0x0,0x30,0x79,0xf2,0x64,0x7f,0xdd,0x35,0x3,0x1c,0xca,0x9,0x6c,0xb9,0x2, + 0x76,0x18,0x33,0xbf,0xcb,0x2b,0x56,0xac,0xe8,0xb1,0xf6,0xaf,0x34,0xf2,0x3,0xdd, + 0x66,0x4,0x72,0x42,0xc0,0xa1,0xd4,0x21,0xb5,0x7e,0x26,0x14,0x1a,0xa3,0x50,0x89, + 0xe4,0x7,0x22,0x9d,0x1d,0xd8,0xc1,0xa1,0xb7,0x1,0xf2,0xe7,0xd3,0x73,0xd5,0x13, + 0x85,0x56,0xa9,0xe4,0x7,0x22,0x99,0x1c,0xd4,0xc1,0xa1,0xaf,0x50,0xec,0x6e,0xeb, + 0x4a,0x26,0x3f,0xe0,0x4,0x80,0x83,0x43,0x6,0x54,0x3a,0xf9,0x1,0x27,0x0,0x1c, + 0x1c,0x42,0x50,0xd,0xe4,0x7,0x9c,0x0,0x70,0x70,0xb0,0x50,0x2d,0xe4,0x7,0x9c, + 0x0,0x70,0x70,0x10,0xa8,0x26,0xf2,0x3,0x4e,0x0,0x38,0x38,0x18,0x54,0x1b,0xf9, + 0x81,0x34,0x1,0xe0,0x5,0x49,0x54,0xf4,0x3d,0x3b,0x54,0x21,0xba,0x7b,0xaf,0xab, + 0x91,0xfc,0x80,0xb3,0x0,0x1c,0xaa,0x1e,0xd5,0x4a,0x7e,0x0,0x37,0x59,0x5a,0x69, + 0x5c,0x1c,0x1c,0xfa,0x1e,0x55,0x41,0x7e,0xc0,0x9,0x0,0x7,0x87,0x20,0xaa,0x86, + 0xfc,0x80,0x13,0x0,0xe,0xe,0x29,0x54,0x15,0xf9,0x1,0x27,0x0,0x1c,0x1c,0x3c, + 0x54,0x1d,0xf9,0x81,0xff,0xf,0xed,0x9e,0x33,0x9f,0x0,0x0,0x0,0x14,0x1a,0xfe, + 0xb8,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,0x28,0x0,0x0, + 0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x40,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0xb1,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xc1,0x7,0xff,0xff,0x80,0x3,0xff, + 0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff,0xff,0x0,0x1,0xff, + 0xff,0x80,0x1,0xff,0xff,0xc0,0x3,0xff,0xff,0x80,0x7,0xff,0xff,0x0,0x7f,0xff, + 0xff,0x0,0x73,0xff,0xff,0x0,0x61,0xff,0xff,0x0,0x1,0xff,0xff,0x80,0x3,0xff, + 0xff,0xc1,0x7,0xff,0xff,0x28,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x30,0x0,0x0, + 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x60,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d,0xff,0x0,0x0,0x0, + 0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x28,0x28,0xe9, + 0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef,0xff,0x47,0x47,0xf0, + 0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa,0xff,0x7b,0x7b,0x3, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x3f,0x3f,0xed, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x98,0x98,0xdf, + 0xff,0x98,0x98,0xdf,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x0,0xdc,0xdc, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff, + 0xff,0x6b,0xff,0xff,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xa0,0xa0,0x69, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0xb1,0xff,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xe3,0xe3,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x67, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x6b,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0,0xff,0xa8,0xa8,0x9, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0, + 0x0,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0xf0,0x8,0x7,0xff,0xe0,0x0,0x3,0xff,0xc0,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1, + 0xff,0x80,0x0,0x1,0xff,0xc0,0x0,0x1,0xff,0xe0,0x0,0x3,0xff,0xe0,0x0,0x7, + 0xff,0xc0,0x0,0xf,0xff,0x80,0x3,0xff,0xff,0x80,0x3,0xff,0xff,0x80,0x3,0xe3, + 0xff,0x80,0x1,0xc1,0xff,0x80,0x0,0x1,0xff,0x80,0x0,0x1,0xff,0xc0,0x0,0x3, + 0xff,0xe0,0x8,0x7,0xff,0xf0,0x1c,0xf,0xff,0xff,0xff,0xff,0xff,0x28,0x0,0x0, + 0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x80,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0xc0,0xc0,0xc0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0xff,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x0,0xb9,0xb9,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x25,0xff,0xff,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff, + 0xff,0x25,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x0,0xb9,0xb9,0xff,0x0,0x50,0x50,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0x50, + 0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x25,0xff,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x48,0x48,0xff,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x7f,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x1f,0x80,0x0,0x0,0xf,0xc0,0x0,0x0,0x7,0xe0,0x0,0x0,0x3,0xe0,0x0,0x0, + 0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0,0x1,0xe0,0x0,0x0, + 0x1,0xc0,0x0,0x0,0x1,0x80,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0xc0,0x0,0x0, + 0x3,0x80,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x80,0x0,0x0,0x3,0xc0,0x0,0x0,0x3,0xf0,0x0,0x0, + 0x3,0xf0,0x0,0x0,0x3,0xf0,0x0,0x0,0x3,0xf8,0x0,0x0,0x3,0xfc,0x0,0x0, + 0x3,0xfe,0x0,0x0,0x7,0x28,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0, + 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x80,0x25,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55, + 0xff,0x55,0x55,0x55,0xff,0x55,0x55,0x55,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0x79, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x75, + 0xff,0xd1,0xd1,0xd1,0xff,0xe0,0xe0,0xe0,0xff,0xfb,0xfb,0xfb,0xff,0xfc,0xfc,0xfc, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x5,0x5,0x5,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8a,0x8a,0x8a,0xff,0xd1,0xd1,0xd1,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x24,0x24,0x24, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x8a,0x8a, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x80,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0, + 0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x1c,0x1c,0x1c,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x77,0x77,0x77,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0xff,0xd1,0xd1,0xd1,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0xe,0xe,0xe, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0x68, + 0xff,0x8a,0x8a,0x8a,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xd1,0xd1,0xd1,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x68,0x68, + 0xff,0x92,0x92,0x92,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xca,0xca,0xca,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x75,0x75,0x75, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x55,0x55,0x55,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x57,0x57,0x57, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x46,0x46,0x46,0xff,0xc7,0xc7,0xcc, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x8f,0x8f,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0xff,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x66,0x68, + 0xff,0x8e,0x8e,0x8f,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc, + 0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0, + 0xff,0x5e,0x5e,0x5e,0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e, + 0xff,0xc7,0xc7,0xcc,0xff,0x0,0x0,0x0,0xff,0x5e,0x5e,0x5e,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8,0xff,0xf8,0xf8,0xf8, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x93,0x93,0x91,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xcc,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xc7,0xc7,0xcc,0xff,0xcb,0xcb,0xd0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x69,0x69, + 0xff,0x99,0x99,0x96,0xff,0xf8,0xf8,0xf8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x74,0x74,0x74,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xf8,0xf8,0xf8,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6d,0x6d,0x6d, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x1,0x1,0x65,0xff,0x4,0x4,0x5d,0xff,0xca,0xca,0xca, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0xca,0xca,0xca,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74,0xff,0x74,0x74,0x74, + 0xff,0x74,0x74,0x74,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x5d,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0xa,0xa,0xdb,0xff,0x0,0x0,0xff,0xff,0x50,0x50,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x50,0x50,0x0,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc, + 0xff,0xc7,0xc7,0xcc,0xff,0xc7,0xc7,0xcc,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6c,0x6c,0x6c, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xff,0x0,0x0,0xff,0xff,0x28,0x28,0xe9, + 0xff,0x36,0x36,0xea,0xff,0x47,0x47,0xf0,0xff,0x43,0x43,0xef,0xff,0x47,0x47,0xf0, + 0xff,0x3f,0x3f,0xed,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0xa6,0xa6,0x11,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa,0xff,0x7b,0x7b,0x3, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf, + 0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xcf,0xcf,0xcf,0xff,0xc3,0xc3,0xc3, + 0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6e,0x6e,0x6e, + 0xff,0xf,0xf,0xf,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x3f,0x3f,0xed, + 0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda,0xff,0x9a,0x9a,0xda, + 0xff,0x98,0x98,0xdf,0xff,0x65,0x65,0xf2,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xa6,0xa6,0x1d,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61,0xff,0x61,0x61,0x61, + 0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a,0xff,0x6a,0x6a,0x6a, + 0xff,0xe,0xe,0xe,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x98,0x98,0xdf, + 0xff,0x98,0x98,0xdf,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x98,0x98,0xdf,0xff,0x98,0x98,0xdf,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x5,0x5,0x5,0xff,0x5,0x5,0x5, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4,0xff,0x4,0x4,0x4, + 0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4,0xff,0x5,0x5,0x5,0xff,0x4,0x4,0x4, + 0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a,0xff,0x60,0x60,0x60, + 0xff,0xc,0xc,0xc,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x32,0x32,0x34,0xff,0x32,0x32,0x32, + 0xff,0x31,0x31,0x31,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31, + 0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31, + 0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x31,0x31,0x31,0xff,0x2f,0x2f,0x2f, + 0xff,0x2f,0x2f,0x2f,0xff,0x2f,0x2f,0x2f,0xff,0x30,0x30,0x30,0xff,0x2f,0x2f,0x2f, + 0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf,0xff,0x6a,0x6a,0x6a, + 0xff,0x14,0x14,0x14,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x0,0xdc,0xdc, + 0xff,0x0,0x96,0x96,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x61,0x61,0x61,0xff,0xcf,0xcf,0xcf, + 0xff,0x1b,0x1b,0x1b,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff, + 0xff,0x48,0xff,0xff,0xff,0x0,0x50,0x50,0xff,0xff,0xff,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa,0xff,0xfa,0xfa,0xfa, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xc7,0xc7,0xc7, + 0xff,0xc8,0xc8,0xc8,0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x4,0x4,0x4,0xff,0x1b,0x1b,0x1b, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0xa0,0xa0,0x69, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0xb1,0xff,0xff,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0xfa,0xfa,0xfa, + 0xff,0xc5,0xc5,0xc5,0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x2f,0x2f,0x2f,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50, + 0xff,0x0,0x0,0x50,0xff,0x22,0x22,0xe8,0xff,0x9f,0x9f,0x77,0xff,0xdc,0xdc,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0xb9,0xb9,0x0,0xff,0xe3,0xe3,0x4, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfa,0xfa,0xfa, + 0xff,0xc6,0xc6,0xc6,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x1,0x1,0x1, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xcd,0xcd,0x4,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0xc8,0xc8,0xc8, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50,0xff,0xff,0xff,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xcc,0xcc,0xcc,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x91,0x91,0xfa,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x9a,0x9a,0xda,0xff,0x99,0x99,0xdc,0xff,0x99,0x99,0xdc,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x50, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc9,0xc9,0xc9,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x9a,0x9a,0xda, + 0xff,0x9a,0x9a,0xda,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50,0xff,0x0,0x50,0x50, + 0xff,0x9a,0x9a,0xda,0xff,0x96,0x96,0xe8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xd8,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x67, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x0,0xdc,0xdc,0xff,0x0,0x96,0x96, + 0xff,0x0,0x50,0x50,0xff,0x99,0x99,0xdc,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xcb,0xcb,0xcb,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff,0xff,0xc8,0xc8,0xc8, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0xb1,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff,0xff,0x48,0xff,0xff, + 0xff,0x0,0x50,0x50,0xff,0x9a,0x9a,0xda,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x65,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0xb1,0xff,0xff, + 0xff,0x0,0x0,0x50,0xff,0x0,0x0,0x50,0xff,0x48,0x48,0xff,0xff,0x0,0x0,0xff, + 0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x50,0x50,0x0, + 0xff,0x50,0x50,0x0,0xff,0x80,0x80,0x0,0xff,0xa5,0xa5,0xa,0xff,0xa5,0xa5,0xa, + 0xff,0x80,0x80,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xca,0xca,0xca,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x65,0xff,0x1,0x1,0x67,0xff,0x1,0x1,0x65, + 0xff,0x1,0x1,0x67,0xff,0x3b,0x3b,0xe8,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xb9,0xb9,0x0,0xff,0x80,0x80,0x0,0xff,0x80,0x80,0x0, + 0xff,0x80,0x80,0x0,0xff,0xca,0xca,0x6,0xff,0xb9,0xb9,0x0,0xff,0xa8,0xa8,0x9, + 0xff,0xdc,0xdc,0x0,0xff,0x50,0x50,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff, + 0xff,0x48,0x48,0xff,0xff,0x48,0x48,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0xdc,0xdc,0x0,0xff,0xd3,0xd3,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0, + 0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb9,0xb9,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8, + 0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0xca,0xca,0xca,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff, + 0xff,0x6b,0x6b,0xff,0xff,0x6b,0x6b,0xff,0xff,0x8e,0x8e,0xff,0xff,0x0,0xb9,0xb9, + 0xff,0xff,0xff,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0, + 0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xdc,0xdc,0x0,0xff,0xff,0xff,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xc8,0xc8,0xc8,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0xff, + 0xff,0x8e,0x8e,0xff,0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x8e,0x8e,0xff, + 0xff,0x91,0x91,0xfa,0xff,0x8e,0x8e,0xff,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0, + 0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0xff,0xff,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfe,0xfe,0xfe, + 0xff,0xc8,0xc8,0xc8,0xff,0xff,0xff,0xff,0xff,0x7c,0x7c,0x7c,0xff,0x7c,0x7c,0x7c, + 0xff,0x7c,0x7c,0x7c,0xff,0x7,0x7,0x7,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x79,0x79,0x88,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0x0,0x0,0x0,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x6e,0x6e,0x6e,0xff,0xfb,0xfb,0xfb, + 0xff,0xc7,0xc7,0xc7,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0x7c,0x7c,0x7c,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x72,0x72,0x67,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x6e,0x6e,0x6e,0xff,0xff,0xff,0xff, + 0xff,0xc5,0xc5,0xc5,0xff,0xf3,0xf3,0xf3,0xff,0xca,0xca,0xca,0xff,0xca,0xca,0xca, + 0xff,0xca,0xca,0xca,0xff,0x0,0x0,0x0,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x76,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e, + 0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0x6e,0x6e,0x6e,0xff,0xf4,0xf4,0xf4, + 0xff,0xc3,0xc3,0xc3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3, + 0xff,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x75,0x75,0x75,0xff,0xf6,0xf6,0xf6,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5, + 0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb6,0xb6,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5,0xff,0xb6,0xb6,0xb6, + 0xff,0xb4,0xb4,0xb4,0xff,0xb1,0xb1,0xb1,0xff,0xbb,0xbb,0xbb,0xff,0xc2,0xc2,0xc2, + 0xff,0xba,0xba,0xba,0xff,0xbd,0xbd,0xbd,0xff,0xc1,0xc1,0xc1,0xff,0xc4,0xc4,0xc4, + 0xff,0xc7,0xc7,0xc7,0xff,0xc8,0xc8,0xc8,0xff,0xc8,0xc8,0xc8,0xff,0x70,0x70,0x70, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x85,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6,0xff,0xf6,0xf6,0xf6, + 0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x85, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8a,0x8a,0x8a,0xff,0xab,0xab,0xab,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xf6,0xf6,0xf6,0xff,0x70,0x70,0x70,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0x87,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd, + 0xff,0xbd,0xbd,0xbd,0xff,0xbd,0xbd,0xbd,0xff,0x4c,0x4c,0x4c,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b, + 0xff,0x7b,0x7b,0x7b,0xff,0x7b,0x7b,0x7b,0xff,0x7c,0x7c,0x7c,0xff,0x77,0x77,0x77, + 0xff,0x75,0x75,0x75,0xff,0x7d,0x7d,0x7d,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x1f,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xfe,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0, + 0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xc0,0x0, + 0x0,0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x1f,0xff,0xff,0x28,0x0,0x0, + 0x0,0x48,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0, + 0x0,0x60,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x3f,0x40,0x40, + 0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xbe,0xbe,0xbe,0xff,0xda,0xda,0xda, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd9,0xd9,0xd9, + 0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8f,0x8f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xff,0xc0,0xc0,0xc0,0xff,0xf8,0xf8,0xf8, + 0xff,0xfe,0xfe,0xfe,0xff,0xe2,0xe2,0xe2,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xdd,0xdd,0xdd,0xff,0xeb,0xeb,0xeb,0xff,0xe2,0xe2,0xe2,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xe7,0xe7,0xe7,0xff,0xdf,0xdf,0xdf,0xff,0xfe,0xfe,0xfe, + 0xff,0xed,0xed,0xed,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xde,0xde,0xde, + 0xff,0xc1,0xc1,0xc1,0xff,0xfe,0xfe,0xfe,0xff,0xe7,0xe7,0xe7,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xde,0xde,0xde,0xff,0xc1,0xc1,0xc1,0xff,0xfa,0xfa,0xfa, + 0xff,0xdb,0xdb,0xdb,0xff,0xd3,0xd3,0xd3,0xff,0xdb,0xdb,0xdb,0xff,0xd1,0xd1,0xd1, + 0xff,0xdf,0xdf,0xdf,0xff,0xf5,0xf5,0xf5,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xe2,0xe2,0xe2,0xff,0xc1,0xc1,0xc1,0xff,0xfe,0xfe,0xfe,0xff,0xed,0xed,0xed, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xdd,0xdd,0xdd,0xff,0xeb,0xeb,0xeb, + 0xff,0xe7,0xe7,0xe7,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xe1,0xe1,0xe1, + 0xff,0xcd,0xcd,0xcd,0xff,0xdd,0xdd,0xdd,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0x84,0x84,0x84,0xff,0x9d,0x9d,0x9d,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40, + 0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0xef,0x9f,0x9f,0x9f,0xff,0x9c,0x9c,0x9c, + 0xff,0x10,0x10,0x10,0xff,0x8c,0x8c,0x8c,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e, + 0xff,0xb3,0xb3,0xb3,0xff,0x57,0x57,0x57,0xff,0xa8,0xa8,0xa8,0xff,0x7e,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0x9c,0x9c,0x9c,0xff,0x4b,0x4b,0x4b,0xff,0x88,0x88,0x88, + 0xff,0xab,0xab,0xab,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x9a,0x9a,0x9a, + 0xff,0x48,0x48,0x48,0xff,0x81,0x81,0x81,0xff,0xbb,0xbb,0xbb,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x9a,0x9a,0x9a,0xff,0x48,0x48,0x48,0xff,0x8c,0x8c,0x8c, + 0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95,0xff,0xa6,0xa6,0xa6,0xff,0x6c,0x6c,0x6c, + 0xff,0x60,0x61,0x60,0xff,0xb3,0xb3,0xb3,0xff,0x9a,0x9a,0x9a,0xff,0x95,0x95,0x95, + 0xff,0xad,0xad,0xad,0xff,0x48,0x48,0x48,0xff,0x83,0x83,0x83,0xff,0xab,0xab,0xab, + 0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0xae,0xae,0xae,0xff,0x48,0x48,0x48, + 0xff,0xb2,0xb2,0xb2,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9c, + 0xff,0x5a,0x5a,0x5a,0xff,0xb3,0xb3,0xb3,0xff,0x95,0x95,0x95,0xff,0x94,0x94,0x94, + 0xff,0x87,0x87,0x87,0xff,0x2a,0x2a,0x2a,0xff,0x9d,0x9d,0x9d,0xff,0xa6,0xa7,0xa7, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7e,0x7f,0x7f,0xff,0x9f,0x9f,0x9f, + 0xff,0xaa,0xaa,0xaa,0xff,0x7c,0x7c,0x7c,0xff,0xba,0xba,0xba,0xff,0xba,0xba,0xba, + 0xff,0xbe,0xbe,0xbe,0xff,0x54,0x54,0x54,0xff,0xc1,0xc1,0xc1,0xff,0xd0,0xd0,0xd0, + 0xff,0xcc,0xcc,0xcc,0xff,0xc5,0xc5,0xc5,0xff,0x6c,0x6c,0x6c,0xff,0xc5,0xc5,0xc5, + 0xff,0x95,0x95,0x95,0xff,0xd5,0xd5,0xd5,0xff,0xc0,0xc0,0xc0,0xff,0xcc,0xcc,0xcc, + 0xff,0x68,0x68,0x68,0xff,0xa4,0xa4,0xa4,0xff,0x9c,0x9c,0x9c,0xff,0xd0,0xd0,0xd0, + 0xff,0xc0,0xc0,0xc0,0xff,0xcc,0xcc,0xcc,0xff,0x68,0x68,0x68,0xff,0xa4,0xa4,0xa4, + 0xff,0xc2,0xc2,0xc2,0xff,0xc4,0xc4,0xc4,0xff,0xc0,0xc0,0xc0,0xff,0xc9,0xc9,0xc9, + 0xff,0x89,0x89,0x89,0xff,0x88,0x88,0x88,0xff,0xce,0xce,0xce,0xff,0xc0,0xc0,0xc0, + 0xff,0xc6,0xc6,0xc6,0xff,0x84,0x84,0x84,0xff,0xb1,0xb1,0xb1,0xff,0xa4,0xa4,0xa4, + 0xff,0xd5,0xd5,0xd5,0xff,0xcc,0xcc,0xcc,0xff,0xd0,0xd0,0xd0,0xff,0x6c,0x6c,0x6c, + 0xff,0xbf,0xbf,0xbf,0xff,0xd0,0xd0,0xd0,0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0, + 0xff,0x84,0x84,0x84,0xff,0xc4,0xc4,0xc4,0xff,0xc9,0xc9,0xc9,0xff,0xc0,0xc0,0xc0, + 0xff,0xc7,0xc7,0xc7,0xff,0x78,0x78,0x78,0xff,0x34,0x34,0x34,0xff,0xaf,0xaf,0xaf, + 0xff,0xa9,0xa9,0xa9,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x80,0x80,0x3f,0x7e,0x7f,0x7f, + 0xef,0x9f,0x9f,0x9f,0xff,0xa9,0xa9,0xa9,0xff,0x8b,0x8b,0x8b,0xff,0xc6,0xc6,0xc6, + 0xff,0xcc,0xcc,0xcc,0xff,0xb4,0xb4,0xb4,0xff,0xa6,0xa6,0xa6,0xff,0xb1,0xb1,0xb1, + 0xff,0xd0,0xd0,0xd0,0xff,0xbf,0xbf,0xbf,0xff,0xaa,0xaa,0xaa,0xff,0x8d,0x8d,0x8d, + 0xff,0x85,0x85,0x85,0xff,0x78,0x78,0x78,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xac,0xac,0xac,0xff,0xa6,0xa6,0xa6,0xff,0x69,0x69,0x69,0xff,0x85,0x85,0x85, + 0xff,0xca,0xca,0xca,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xa6,0xa6,0xa6, + 0xff,0x67,0x67,0x67,0xff,0x9f,0x9f,0x9f,0xff,0xc2,0xc2,0xc2,0xff,0xac,0xac,0xac, + 0xff,0x9a,0x9a,0x9a,0xff,0xb2,0xb2,0xb2,0xff,0x65,0x65,0x65,0xff,0xca,0xca,0xca, + 0xff,0xab,0xab,0xab,0xff,0xab,0xab,0xab,0xff,0xb3,0xb3,0xb3,0xff,0x67,0x67,0x67, + 0xff,0xa7,0xa7,0xa7,0xff,0xbe,0xbe,0xbe,0xff,0xbc,0xbc,0xbc,0xff,0xb5,0xb5,0xb5, + 0xff,0x90,0x90,0x90,0xff,0x7e,0x7e,0x7e,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xa5,0xa5,0xa5,0xff,0xb3,0xb3,0xb3,0xff,0x7e,0x7e,0x7e,0xff,0xc1,0xc1,0xc1, + 0xff,0xab,0xab,0xab,0xff,0xa4,0xa4,0xa4,0xff,0xa0,0xa0,0xa0,0xff,0x48,0x48,0x48, + 0xff,0xaf,0xaf,0xaf,0xff,0xa6,0xa7,0xa7,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xcf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x2f,0x7e,0x7f,0x7f,0xe9,0x97,0x97,0x97,0xff,0xb0,0xb0,0xb0,0xff,0x31,0x31,0x31, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xb7,0xb7,0xb7,0xff,0x78,0x78,0x78, + 0xff,0x7e,0x7e,0x7e,0xff,0xb3,0xb3,0xb3,0xff,0xac,0xac,0xac,0xff,0xba,0xba,0xba, + 0xff,0x6c,0x6d,0x6c,0xff,0x7c,0x7c,0x7c,0xff,0xa0,0xa0,0xa0,0xff,0xb1,0xb1,0xb1, + 0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9,0xff,0x54,0x54,0x54,0xff,0x83,0x83,0x83, + 0xff,0xa4,0xa4,0xa4,0xff,0xb1,0xb1,0xb1,0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9, + 0xff,0x51,0x51,0x51,0xff,0x96,0x96,0x96,0xff,0xb6,0xb6,0xb6,0xff,0xab,0xab,0xab, + 0xff,0xab,0xab,0xab,0xff,0xa8,0xa8,0xa8,0xff,0x51,0x51,0x51,0xff,0xc2,0xc2,0xc2, + 0xff,0xb1,0xb1,0xb1,0xff,0xab,0xab,0xab,0xff,0xbd,0xbd,0xbd,0xff,0x51,0x51,0x51, + 0xff,0x9e,0x9e,0x9e,0xff,0xbc,0xbc,0xbc,0xff,0xac,0xac,0xac,0xff,0xb7,0xb7,0xb7, + 0xff,0x78,0x78,0x78,0xff,0x6f,0x70,0x6f,0xff,0xab,0xab,0xab,0xff,0xbf,0xbf,0xbf, + 0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0x63,0x63,0x63,0xff,0xc0,0xc0,0xc0, + 0xff,0xb1,0xb1,0xb1,0xff,0xac,0xac,0xac,0xff,0xb9,0xb9,0xb9,0xff,0x51,0x51,0x51, + 0xff,0x52,0x52,0x52,0xff,0x9b,0x9b,0x9b,0xff,0xaf,0xaf,0xaf,0xff,0x82,0x83,0x83, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x4f,0x50,0x50, + 0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7e,0x80,0x80,0x1c,0x7e,0x7f,0x7f,0xe9,0x94,0x94,0x94,0xff,0xb0,0xb0,0xb0, + 0xff,0x5d,0x5d,0x5d,0xff,0xb7,0xb7,0xb7,0xff,0xc0,0xc0,0xc0,0xff,0xd9,0xd9,0xd9, + 0xff,0x99,0x99,0x99,0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,0xff,0xc0,0xc0,0xc0, + 0xff,0xc1,0xc1,0xc1,0xff,0xa5,0xa5,0xa5,0xff,0x9c,0x9c,0x9c,0xff,0xae,0xae,0xae, + 0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xb9,0xb9,0xb9,0xff,0x9b,0x9b,0x9b, + 0xff,0x9a,0x9a,0x9a,0xff,0xb8,0xb8,0xb8,0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6, + 0xff,0xa8,0xa8,0xa8,0xff,0xcf,0xcf,0xcf,0xff,0x8c,0x8c,0x8c,0xff,0xc2,0xc2,0xc2, + 0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0,0xff,0xa8,0xa8,0xa8,0xff,0x90,0x90,0x90, + 0xff,0xb8,0xb8,0xb8,0xff,0xc0,0xc0,0xc0,0xff,0xc8,0xc8,0xc8,0xff,0xa8,0xa8,0xa8, + 0xff,0xaf,0xaf,0xaf,0xff,0xa4,0xa4,0xa4,0xff,0xc4,0xc4,0xc4,0xff,0xc0,0xc0,0xc0, + 0xff,0xd9,0xd9,0xd9,0xff,0xa8,0xa8,0xa8,0xff,0x84,0x84,0x84,0xff,0xa6,0xa6,0xa6, + 0xff,0xcc,0xcc,0xcc,0xff,0xd0,0xd0,0xd0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0, + 0xff,0xca,0xca,0xca,0xff,0xc0,0xc0,0xc0,0xff,0xc6,0xc6,0xc6,0xff,0xa8,0xa8,0xa8, + 0xff,0x99,0x99,0x99,0xff,0x5e,0x5e,0x5e,0xff,0xaa,0xaa,0xaa,0xff,0xaf,0xaf,0xaf, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x2f,0x7e,0x7f,0x7f,0xe9,0x97,0x97,0x97, + 0xff,0xb0,0xb0,0xb0,0xff,0x3f,0x3f,0x3f,0xff,0xad,0xad,0xad,0xff,0xab,0xab,0xab, + 0xff,0xa0,0xa0,0xa0,0xff,0x9c,0x9c,0x9c,0xff,0x63,0x63,0x63,0xff,0xca,0xca,0xca, + 0xff,0x94,0x94,0x94,0xff,0x86,0x86,0x86,0xff,0x95,0x95,0x95,0xff,0x4b,0x4b,0x4b, + 0xff,0xb3,0xb3,0xb3,0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95,0xff,0x9a,0x9a,0x9a, + 0xff,0x6c,0x6c,0x6c,0xff,0x5e,0x5e,0x5e,0xff,0xca,0xca,0xca,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x9c,0x9c,0x9c,0xff,0x4b,0x4b,0x4b,0xff,0xc2,0xc2,0xc2, + 0xff,0x9a,0x9a,0x9a,0xff,0x95,0x95,0x95,0xff,0xad,0xad,0xad,0xff,0x48,0x48,0x48, + 0xff,0x82,0x82,0x82,0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95,0xff,0xa6,0xa6,0xa6, + 0xff,0x6c,0x6c,0x6c,0xff,0x5e,0x5e,0x5e,0xff,0xbb,0xbb,0xbb,0xff,0x9a,0x9a,0x9a, + 0xff,0x95,0x95,0x95,0xff,0xad,0xad,0xad,0xff,0x48,0x48,0x48,0xff,0x7f,0x80,0x80, + 0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0xae,0xae,0xae, + 0xff,0x51,0x51,0x51,0xff,0xa5,0xa5,0xa5,0xff,0xab,0xab,0xab,0xff,0x95,0x95,0x95, + 0xff,0x9c,0x9c,0x9c,0xff,0x63,0x64,0x63,0xff,0x40,0x40,0x40,0xff,0x9b,0x9b,0x9b, + 0xff,0xaf,0xaf,0xaf,0xff,0x82,0x83,0x83,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xcf,0x0,0x0,0x0, + 0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x80,0x80,0x1c,0x7e,0x7f,0x7f, + 0xe9,0x94,0x94,0x94,0xff,0xb0,0xb0,0xb0,0xff,0x7c,0x7c,0x7c,0xff,0xcc,0xcc,0xcc, + 0xff,0xc0,0xc0,0xc0,0xff,0xd0,0xd0,0xd0,0xff,0x84,0x84,0x84,0xff,0xe0,0xe0,0xe0, + 0xff,0xd2,0xd2,0xd2,0xff,0xcd,0xcd,0xcd,0xff,0xc6,0xc6,0xc6,0xff,0x6c,0x6c,0x6c, + 0xff,0xd4,0xd4,0xd4,0xff,0xdb,0xdb,0xdb,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xa8,0xa8,0xa8,0xff,0x84,0x84,0x84,0xff,0xda,0xda,0xda,0xff,0xd2,0xd2,0xd2, + 0xff,0xcc,0xcc,0xcc,0xff,0xc5,0xc5,0xc5,0xff,0x6c,0x6c,0x6c,0xff,0xdb,0xdb,0xdb, + 0xff,0xd5,0xd5,0xd5,0xff,0xcc,0xcc,0xcc,0xff,0xcf,0xcf,0xcf,0xff,0x78,0x78,0x78, + 0xff,0xa7,0xa7,0xa7,0xff,0xdb,0xdb,0xdb,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xa8,0xa8,0xa8,0xff,0x84,0x84,0x84,0xff,0xd9,0xd9,0xd9,0xff,0xd5,0xd5,0xd5, + 0xff,0xcc,0xcc,0xcc,0xff,0xcf,0xcf,0xcf,0xff,0x6c,0x6c,0x6c,0xff,0xc7,0xc7,0xc7, + 0xff,0xd8,0xd8,0xd8,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xd0,0xd0,0xd0, + 0xff,0x6c,0x6c,0x6c,0xff,0xc6,0xc6,0xc6,0xff,0xdb,0xdb,0xdb,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0x90,0x91,0x90,0xff,0x99,0x99,0x99,0xff,0x25,0x25,0x25, + 0xff,0xbf,0xbf,0xbf,0xff,0xa9,0xa9,0xa9,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0, + 0xe2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x80,0x80, + 0x4f,0x7e,0x7f,0x7f,0xff,0xd2,0xd2,0xd2,0xff,0xcb,0xcb,0xcb,0xff,0xdf,0xdf,0xdf, + 0xff,0xdb,0xdb,0xdb,0xff,0xdb,0xdb,0xdb,0xff,0xdd,0xdd,0xdd,0xff,0xee,0xee,0xee, + 0xff,0xdb,0xdb,0xdb,0xff,0xc9,0xc9,0xc9,0xff,0xcd,0xcd,0xcd,0xff,0xc2,0xc2,0xc2, + 0xff,0xee,0xee,0xee,0xff,0xe9,0xe9,0xe9,0xff,0xcf,0xcf,0xcf,0xff,0xc9,0xc9,0xc9, + 0xff,0xd2,0xd2,0xd2,0xff,0xc9,0xc9,0xc9,0xff,0xee,0xee,0xee,0xff,0xdb,0xdb,0xdb, + 0xff,0xc9,0xc9,0xc9,0xff,0xcf,0xcf,0xcf,0xff,0xc2,0xc2,0xc2,0xff,0xee,0xee,0xee, + 0xff,0xe4,0xe4,0xe4,0xff,0xc9,0xc9,0xc9,0xff,0xcb,0xcb,0xcb,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0xe9,0xe9,0xe9,0xff,0xcf,0xcf,0xcf,0xff,0xc9,0xc9,0xc9, + 0xff,0xd2,0xd2,0xd2,0xff,0xc9,0xc9,0xc9,0xff,0xee,0xee,0xee,0xff,0xe4,0xe4,0xe4, + 0xff,0xc9,0xc9,0xc9,0xff,0xcb,0xcb,0xcb,0xff,0xc0,0xc0,0xc0,0xff,0xe7,0xe7,0xe7, + 0xff,0xee,0xee,0xee,0xff,0xe1,0xe1,0xe1,0xff,0xc9,0xc9,0xc9,0xff,0xcc,0xcc,0xcc, + 0xff,0xc0,0xc0,0xc0,0xff,0xe7,0xe7,0xe7,0xff,0xe9,0xe9,0xe9,0xff,0xcd,0xcd,0xcd, + 0xff,0xc9,0xc9,0xc9,0xff,0xc9,0xc9,0xc9,0xff,0xd2,0xd2,0xd2,0xff,0xd2,0xd2,0xd2, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xc5,0xc5,0xc5,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x14,0x15,0x15,0xff,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f,0xff,0xb9,0xb9,0xb9, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b, + 0xff,0xb3,0xb3,0xb3,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x3f,0x3f,0x3f,0xff,0x6e,0x6e,0x6e,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x94,0x94,0x94, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7e,0x7e,0x7e, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x94,0x94,0x94,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40,0xff,0x94,0x94,0x94, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40, + 0xff,0x94,0x94,0x94,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x18,0x0,0xff,0x0,0xb5,0x0, + 0xff,0x0,0x8f,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40,0xff,0x94,0x94,0x94, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x40,0x40, + 0xff,0x94,0x94,0x94,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x16,0x1b,0xc,0xff,0xa1,0xc6,0x5b, + 0xff,0x0,0xa0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f,0xff,0x93,0x93,0x93, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x7e,0x7e,0x7e, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f,0xff,0x3f,0x3f,0x3f, + 0xff,0x93,0x93,0x93,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x15,0x15,0x15,0xff,0x8e,0x8f,0x8f,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95, + 0xff,0x95,0x95,0x95,0xff,0x78,0x78,0x78,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f,0xff,0xb9,0xb9,0xb9, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f, + 0xff,0xb9,0xb9,0xb9,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9b,0x9b,0x9b, + 0xff,0xb3,0xb3,0xb3,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x7,0x8,0x8,0xff,0x5f,0x5f,0x5f, + 0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70, + 0xff,0x7f,0x7f,0x7f,0xff,0x77,0x77,0x77,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x37,0x38,0x38,0xff,0x7e,0x7f,0x7f,0xff,0x7b,0x7b,0x7b,0xff,0x6f,0x70,0x70, + 0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x6f,0x70,0x70,0xff,0x5b,0x5b,0x5b, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xa9,0xa9,0xa9,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x9b,0x9b,0x9b,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x16,0x16,0x16,0xff,0x5b,0x5b,0x5b, + 0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b, + 0xff,0x5b,0x5b,0x5b,0xff,0x33,0x33,0x33,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x6,0x6,0x6,0xff,0x4c,0x4d,0x4d,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b, + 0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x5b,0x5b,0x5b,0xff,0x60,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x94,0x94,0x94,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1e,0x1e,0x1e, + 0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24, + 0xff,0x2a,0x2b,0x2a,0xff,0x49,0x4a,0x49,0xff,0x2a,0x2b,0x2a,0xff,0x24,0x25,0x24, + 0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24, + 0xff,0x36,0x37,0x36,0xff,0x49,0x4a,0x49,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24, + 0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x24,0x25,0x24,0xff,0x16,0x17,0x16, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x94,0x94,0x94,0xff,0x7f,0x80,0x7f,0xff,0x7f,0x80,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x1e,0x1e,0x1e,0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30, + 0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30,0xff,0x30,0x31,0x30, + 0xff,0x30,0x31,0x30,0xff,0x18,0x18,0x18,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x6c,0x7c, + 0x4f,0x65,0x65,0x77,0xff,0x6e,0x6e,0xa8,0xff,0x38,0x38,0x8f,0xff,0x1d,0x1d,0xa0, + 0xff,0x1d,0x1c,0xaf,0xff,0x1e,0x1e,0xa3,0xff,0x3a,0x3a,0x92,0xff,0x6a,0x6a,0x7c, + 0xff,0x80,0x80,0x81,0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb5,0xb5,0xac,0xff,0x97,0x97,0x71,0xff,0x86,0x86,0x3c, + 0xff,0x6b,0x6c,0x1,0xff,0x70,0x71,0x1,0xff,0x71,0x72,0x1,0xff,0x75,0x76,0x3, + 0xff,0x89,0x8a,0x34,0xff,0xa1,0xa1,0x87,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x7c,0x91,0x8d,0x2c,0x2b,0x92, + 0xff,0x19,0x18,0xe2,0xff,0xa,0x7,0xf5,0xff,0x9,0x6,0xf5,0xff,0xc,0xa,0xf5, + 0xff,0x9,0x6,0xf5,0xff,0x9,0x6,0xf5,0xff,0xb,0x8,0xf5,0xff,0x9,0x7,0xc6, + 0xff,0x3b,0x3b,0x81,0xff,0x89,0x89,0x8b,0xff,0xbe,0xbe,0xbe,0xff,0xb9,0xb9,0xb5, + 0xff,0x95,0x95,0x5d,0xff,0x79,0x7a,0x6,0xff,0x86,0x87,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0x89,0x89,0x0,0xff,0x89,0x8a,0x0,0xff,0x89,0x8a,0x0,0xff,0x89,0x8a,0x0, + 0xff,0x86,0x87,0x0,0xff,0x7c,0x7d,0x0,0xff,0x7c,0x7c,0x20,0xff,0xb6,0xb6,0xaa, + 0xff,0x9f,0x9f,0x9f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x15,0x78,0x78,0xb4,0xaf,0x4f,0x4e,0xe1,0xff,0x2e,0x2c,0xf9, + 0xff,0x2b,0x29,0xf8,0xff,0x34,0x32,0xfa,0xff,0x3b,0x3a,0xfb,0xff,0x41,0x3f,0xfc, + 0xff,0x3f,0x3e,0xfc,0xff,0x35,0x34,0xfa,0xff,0x1c,0x1a,0xf6,0xff,0x9,0x5,0xf5, + 0xff,0x8,0x6,0xdf,0xff,0x34,0x33,0x93,0xff,0xb5,0xb5,0xad,0xff,0x95,0x95,0x28, + 0xff,0x96,0x95,0x0,0xff,0x9c,0x9b,0x0,0xff,0xaa,0xa9,0x1,0xff,0xb1,0xb1,0x1, + 0xff,0xb4,0xb5,0x1,0xff,0xb7,0xb7,0x1,0xff,0xb6,0xb7,0x1,0xff,0xb6,0xb6,0x1, + 0xff,0xb1,0xb1,0x1,0xff,0x9f,0x9e,0x0,0xff,0x85,0x86,0x0,0xff,0x7f,0x80,0x10, + 0xff,0x83,0x83,0x5c,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x3f,0x3f,0x3f,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe5, + 0x2f,0x7b,0x7b,0xea,0xe9,0x67,0x66,0xf7,0xff,0x47,0x46,0xfd,0xff,0x46,0x45,0xfd, + 0xff,0x4a,0x48,0xfd,0xff,0x4c,0x4b,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x56,0x55,0xfd, + 0xff,0x54,0x53,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x47,0x46,0xfd,0xff,0x38,0x36,0xfb, + 0xff,0x20,0x1d,0xf6,0xff,0x10,0xe,0xf0,0xff,0x45,0x45,0x69,0xff,0xb4,0xb4,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xb3,0xb2,0x1,0xff,0xba,0xbb,0x1,0xff,0xc2,0xc3,0x0, + 0xff,0xcd,0xce,0x0,0xff,0xd2,0xd2,0x0,0xff,0xcf,0xd0,0x0,0xff,0xc8,0xc9,0x0, + 0xff,0xbf,0xc0,0x0,0xff,0xb5,0xb5,0x1,0xff,0xa4,0xa4,0x0,0xff,0x88,0x89,0x0, + 0xff,0x7d,0x7e,0x0,0xff,0x4b,0x4b,0x1,0xff,0x44,0x44,0x44,0xff,0x40,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x66,0x67,0x67,0xff,0xd4,0xd4,0xd4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0xf1, + 0xe9,0x60,0x5f,0xfc,0xff,0x56,0x55,0xfd,0xff,0x52,0x51,0xfd,0xff,0x54,0x53,0xfd, + 0xff,0x5d,0x5c,0xfc,0xff,0x62,0x61,0xfc,0xff,0x67,0x67,0xfb,0xff,0x69,0x69,0xfb, + 0xff,0x6c,0x6c,0xfb,0xff,0x67,0x67,0xfb,0xff,0x5a,0x59,0xfc,0xff,0x4e,0x4d,0xfd, + 0xff,0x3d,0x3d,0xfb,0xff,0x2e,0x2c,0xf8,0xff,0x11,0xf,0xe7,0xff,0x86,0x86,0x26, + 0xff,0xb6,0xb6,0x1,0xff,0xb9,0xba,0x0,0xff,0xd7,0xd6,0x0,0xff,0xdb,0xda,0x0, + 0xff,0xdd,0xdc,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd8,0xd8,0x0,0xff,0xc8,0xc8,0x0,0xff,0xb7,0xb7,0x1,0xff,0xab,0xaa,0x1, + 0xff,0x8f,0x8f,0x0,0xff,0x78,0x7a,0x0,0xff,0x8d,0x8d,0x60,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb4,0xb4,0xb4,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x94,0x6c,0x6c,0xf9, + 0xff,0x55,0x54,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x53,0x52,0xfe,0xff,0x64,0x63,0xfb, + 0xff,0x6d,0x6d,0xf9,0xff,0x75,0x75,0xf7,0xff,0x7d,0x7d,0xf5,0xff,0x7e,0x7e,0xea, + 0xff,0x79,0x79,0xf6,0xff,0x6d,0x6d,0xf9,0xff,0x68,0x68,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x4e,0x4d,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x1c,0x19,0xf6,0xff,0x39,0x38,0x91, + 0xff,0xc2,0xc2,0x5,0xff,0xd2,0xd2,0x0,0xff,0xd5,0xd4,0x0,0xff,0xdc,0xdc,0x2, + 0xff,0xe6,0xe5,0x7,0xff,0xee,0xed,0xc,0xff,0xef,0xef,0xd,0xff,0xee,0xed,0xd, + 0xff,0xe1,0xe1,0x6,0xff,0xcb,0xcc,0x0,0xff,0xbd,0xbe,0x0,0xff,0xb3,0xb3,0x2, + 0xff,0xa7,0xa6,0x0,0xff,0x8b,0x8b,0x0,0xff,0x6c,0x6d,0x12,0xff,0xb7,0xb7,0xb5, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x94,0x94,0x94,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0xf4,0xff,0x66,0x66,0xfb, + 0xff,0x54,0x53,0xfd,0xff,0x49,0x48,0xfd,0xff,0x4c,0x4b,0xfd,0xff,0x5d,0x5d,0xe6, + 0xff,0x83,0x83,0xf3,0xff,0x5a,0x83,0xc4,0xff,0x13,0x54,0x5b,0xff,0x2,0x38,0x38, + 0xff,0x1d,0x46,0x54,0xff,0x62,0x7b,0xc4,0xff,0x72,0x72,0xf8,0xff,0x67,0x67,0xfb, + 0xff,0x56,0x55,0xfd,0xff,0x49,0x49,0xfd,0xff,0x2d,0x2c,0xf9,0xff,0x6,0x4,0xe8, + 0xff,0x89,0x88,0x44,0xff,0xc6,0xc6,0x0,0xff,0xcd,0xcd,0x0,0xff,0xd6,0xda,0x14, + 0xff,0x5f,0x9f,0x56,0xff,0x10,0x68,0x64,0xff,0x1,0x4d,0x4d,0xff,0x34,0x6e,0x4a, + 0xff,0xc5,0xd2,0x27,0xff,0xe7,0xe7,0x9,0xff,0xd5,0xd5,0x0,0xff,0xb9,0xba,0x0, + 0xff,0xb0,0xaf,0x1,0xff,0x9d,0x9c,0x0,0xff,0x74,0x75,0x0,0xff,0x7e,0x7e,0x64, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94, + 0xff,0xa2,0xa2,0xa2,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8f,0x8f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x83,0x83,0xc9,0xf,0x75,0x75,0xf7,0xff,0x63,0x63,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x3f,0x3e,0xfc,0xff,0x33,0x32,0xf4,0xff,0x45,0x46,0xbd, + 0xff,0x42,0xa4,0xc2,0xff,0x1,0x78,0x78,0xff,0x0,0x60,0x60,0xff,0x0,0x69,0x69, + 0xff,0x0,0x5a,0x5a,0xff,0x0,0x46,0x46,0xff,0x4c,0x69,0x9f,0xff,0x77,0x77,0xf6, + 0xff,0x65,0x65,0xfa,0xff,0x52,0x51,0xfd,0xff,0x3d,0x3c,0xfb,0xff,0xb,0x8,0xf5, + 0xff,0xf,0xe,0xb4,0xff,0x71,0x72,0xe,0xff,0x89,0x90,0x19,0xff,0x28,0xa3,0x8c, + 0xff,0x0,0x78,0x78,0xff,0x0,0x66,0x66,0xff,0x0,0x69,0x69,0xff,0x0,0x5d,0x5d, + 0xff,0xc,0x53,0x4e,0xff,0xab,0xc1,0x30,0xff,0xe2,0xe1,0x5,0xff,0xce,0xce,0x0, + 0xff,0xb5,0xb5,0x1,0xff,0xa5,0xa4,0x0,0xff,0x82,0x83,0x0,0xff,0x5c,0x5c,0x20, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x4b,0x4b,0x4b,0xff,0x7f,0x7f,0x7f,0xff,0xaf,0xaf,0xaf, + 0xff,0x8a,0x8b,0x8b,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x3f,0x70,0x70,0xf9,0xff,0x5b,0x5b,0xfc, + 0xff,0x46,0x45,0xfd,0xff,0x36,0x34,0xfa,0xff,0x26,0x24,0xe8,0xff,0x22,0x47,0x8c, + 0xff,0x0,0xc0,0xc0,0xff,0x0,0xab,0xab,0xff,0x0,0xbf,0xbf,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xab,0xab,0xff,0x0,0x7b,0x7b,0xff,0x6,0x45,0x46,0xff,0x83,0x88,0xe8, + 0xff,0x73,0x73,0xf7,0xff,0x5a,0x59,0xfd,0xff,0x47,0x47,0xfd,0xff,0x18,0x16,0xf6, + 0xff,0x5,0x2,0xde,0xff,0x51,0x52,0x20,0xff,0x2d,0x8e,0x75,0xff,0x0,0xb8,0xb8, + 0xff,0x0,0xae,0xae,0xff,0x0,0xbf,0xbf,0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab, + 0xff,0x0,0x72,0x72,0xff,0xf,0x4e,0x4d,0xff,0xdf,0xe1,0x12,0xff,0xd9,0xd8,0x0, + 0xff,0xbf,0xc0,0x1,0xff,0xac,0xab,0x1,0xff,0x89,0x8a,0x0,0xff,0x5d,0x5d,0x3, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x10,0x10,0x10, + 0xff,0xaa,0xaa,0xaa,0xff,0x85,0x85,0x85,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xf3,0x3f,0x6c,0x6c,0xfa,0xff,0x55,0x54,0xfd, + 0xff,0x46,0x45,0xfd,0xff,0x2f,0x2d,0xf8,0xff,0x9,0x7,0xcc,0xff,0x12,0x5c,0x8a, + 0xff,0x0,0xdf,0xdf,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcc,0xcc, + 0xff,0x0,0xcb,0xcb,0xff,0x0,0xbe,0xbe,0xff,0x0,0x64,0x64,0xff,0x63,0x7b,0xbc, + 0xff,0x7d,0x7d,0xf4,0xff,0x66,0x66,0xfb,0xff,0x51,0x50,0xfc,0xff,0x26,0x24,0xf8, + 0xff,0x4,0x2,0xde,0xff,0x54,0x55,0x21,0xff,0xd,0x87,0x86,0xff,0x0,0xd8,0xd8, + 0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcc,0xcc,0xff,0x0,0xcb,0xcb, + 0xff,0x0,0xb2,0xb2,0xff,0x0,0x59,0x59,0xff,0xc0,0xd5,0x29,0xff,0xdd,0xdd,0x1, + 0xff,0xc5,0xc6,0x0,0xff,0xae,0xad,0x1,0xff,0x89,0x89,0x0,0xff,0x5d,0x5d,0x3, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20, + 0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x1f,0x20,0x20,0xff,0x17,0x18,0x18, + 0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa,0xff,0x8a,0x8b,0x8b,0xff,0x7f,0x80,0x80, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x72,0x72,0xf8,0x3f,0x6d,0x6d,0xfa,0xff,0x54,0x53,0xfd, + 0xff,0x46,0x45,0xfd,0xff,0x2e,0x2c,0xf9,0xff,0x6,0x4,0xce,0xff,0xc,0x37,0x74, + 0xff,0x0,0xf1,0xf1,0xff,0x0,0xce,0xce,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcd,0xcd, + 0xff,0x0,0xcf,0xcf,0xff,0x0,0xcd,0xcd,0xff,0x0,0x8e,0x8e,0xff,0x65,0x7e,0xc2, + 0xff,0x77,0x77,0xf6,0xff,0x68,0x68,0xfb,0xff,0x59,0x58,0xfd,0xff,0x2b,0x29,0xf9, + 0xff,0x4,0x2,0xde,0xff,0x5c,0x5e,0x25,0xff,0x7,0x60,0x5f,0xff,0x0,0xe6,0xe6, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcd,0xcd,0xff,0x0,0xcf,0xcf, + 0xff,0x0,0xcb,0xcb,0xff,0x0,0x7d,0x7d,0xff,0xb9,0xd3,0x2a,0xff,0xe1,0xe1,0x4, + 0xff,0xc6,0xc6,0x0,0xff,0xac,0xab,0x1,0xff,0x88,0x88,0x0,0xff,0x5c,0x5c,0x3, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x1f,0x20,0x20,0xff,0x15,0x15,0x15,0xff,0xaa,0xaa,0xaa,0xff,0x85,0x85,0x85, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x3f,0x6e,0x6e,0xf9,0xff,0x59,0x58,0xfd, + 0xff,0x4f,0x4e,0xfd,0xff,0x37,0x36,0xfb,0xff,0xd,0xb,0xea,0xff,0x8,0x12,0x84, + 0xff,0x1,0xb2,0xb2,0xff,0x0,0xef,0xef,0xff,0x0,0xe1,0xe1,0xff,0x0,0xd5,0xd5, + 0xff,0x0,0xdb,0xdb,0xff,0x0,0xde,0xde,0xff,0xd,0xa9,0xa9,0xff,0x82,0x85,0xe1, + 0xff,0x70,0x70,0xf8,0xff,0x64,0x64,0xfb,0xff,0x59,0x58,0xfc,0xff,0x2c,0x2a,0xf9, + 0xff,0x4,0x2,0xde,0xff,0x63,0x65,0x29,0xff,0x21,0x4c,0x34,0xff,0x0,0xc2,0xc2, + 0xff,0x0,0xed,0xed,0xff,0x0,0xe1,0xe1,0xff,0x0,0xd5,0xd5,0xff,0x0,0xdb,0xdb, + 0xff,0x0,0xdd,0xdd,0xff,0xd,0x9c,0x9c,0xff,0xd2,0xd7,0x13,0xff,0xd9,0xd9,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xa5,0xa4,0x0,0xff,0x85,0x85,0x0,0xff,0x65,0x65,0x25, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xa2,0xa3,0xa3,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x77,0x78,0x78,0xff,0x1f,0x1f,0x1f,0xff,0x24,0x24,0x24,0xff,0xaa,0xaa,0xaa, + 0xff,0x55,0x55,0x55,0xdf,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf3,0xff,0x60,0x5f,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x42,0x41,0xfc,0xff,0x21,0x1e,0xf6,0xff,0x8,0x6,0xdd, + 0xff,0xd,0x2b,0x5d,0xff,0x2,0xa1,0xa2,0xff,0x0,0xed,0xed,0xff,0x0,0xee,0xee, + 0xff,0x0,0xea,0xea,0xff,0xb,0xc8,0xc7,0xff,0x56,0x7a,0xa4,0xff,0x7f,0x7f,0xf4, + 0xff,0x62,0x61,0xfc,0xff,0x5c,0x5c,0xfc,0xff,0x51,0x50,0xfd,0xff,0x19,0x16,0xf7, + 0xff,0xa,0x8,0xce,0xff,0x77,0x79,0x1e,0xff,0x56,0x5b,0xd,0xff,0x13,0x4f,0x45, + 0xff,0x0,0xb5,0xb5,0xff,0x0,0xed,0xed,0xff,0x0,0xee,0xee,0xff,0x0,0xea,0xea, + 0xff,0xb,0xbd,0xbd,0xff,0x87,0x9d,0x4d,0xff,0xcd,0xce,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xb6,0xb7,0x1,0xff,0xa1,0x9f,0x0,0xff,0x7c,0x7d,0x0,0xff,0x96,0x96,0x76, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2f,0x30,0x30,0xff,0x10,0x10,0x10, + 0xff,0x5f,0x5f,0x5f,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x79,0xf5,0xc6,0x66,0x66,0xfb, + 0xff,0x68,0x68,0xfb,0xff,0x4d,0x4d,0xfc,0xff,0x3c,0x3b,0xfc,0xff,0x12,0x10,0xf5, + 0xff,0x5,0x3,0xc9,0xff,0x14,0x1a,0x66,0xff,0xc,0x33,0x40,0xff,0x6,0x53,0x56, + 0xff,0x18,0x4d,0x5e,0xff,0x2d,0x32,0x5c,0xff,0x4b,0x4b,0xbb,0xff,0x59,0x58,0xfd, + 0xff,0x53,0x53,0xfd,0xff,0x51,0x51,0xfd,0xff,0x43,0x42,0xfc,0xff,0xa,0x7,0xf5, + 0xff,0x40,0x41,0x86,0xff,0x8d,0x8e,0x9,0xff,0x7a,0x7b,0x0,0xff,0x59,0x5d,0xf, + 0xff,0x27,0x43,0x27,0xff,0x8,0x3a,0x38,0xff,0x0,0x55,0x55,0xff,0x17,0x5d,0x50, + 0xff,0x6b,0x79,0x30,0xff,0xb0,0xb0,0x0,0xff,0xbc,0xbd,0x1,0xff,0xb7,0xb7,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xa1,0x9f,0x0,0xff,0x7f,0x80,0x15,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x7f,0x7f,0x7f,0xff,0xaf,0xaf,0xaf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x1c,0x1c,0x1c, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xe8,0x55,0x74,0x74,0xf7, + 0xff,0x6c,0x6c,0xfa,0xff,0x5d,0x5c,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x30,0x2e,0xf9, + 0xff,0x1c,0x1a,0xf6,0xff,0xe,0xc,0xe8,0xff,0x13,0x12,0xc5,0xff,0x13,0x12,0xa4, + 0xff,0x18,0x17,0xac,0xff,0x1d,0x1c,0xbb,0xff,0x2e,0x2d,0xdb,0xff,0x41,0x40,0xfc, + 0xff,0x46,0x46,0xfc,0xff,0x49,0x48,0xfd,0xff,0x25,0x23,0xf8,0xff,0xe,0xc,0xe6, + 0xff,0xa4,0xa6,0x1b,0xff,0xae,0xae,0x0,0xff,0x87,0x88,0x0,0xff,0x7b,0x7c,0x0, + 0xff,0x6b,0x6b,0x1,0xff,0x63,0x64,0x1,0xff,0x6c,0x6d,0x0,0xff,0x78,0x79,0x0, + 0xff,0x89,0x8a,0x0,0xff,0xa0,0x9f,0x0,0xff,0xad,0xac,0x1,0xff,0xb5,0xb5,0x1, + 0xff,0xb6,0xb6,0x1,0xff,0x9d,0x9b,0x0,0xff,0x52,0x8c,0x39,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x69,0xd5,0xd5,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x63,0x63,0x63,0xff,0x2b,0x2c,0x2c, + 0xff,0x3f,0x3f,0x3f,0xff,0x2f,0x30,0x30,0xff,0x5f,0x5f,0x5f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x81,0xf3, + 0xa9,0x76,0x76,0xf7,0xff,0x64,0x63,0xfb,0xff,0x4e,0x4e,0xfd,0xff,0x41,0x41,0xfc, + 0xff,0x3e,0x3d,0xfc,0xff,0x30,0x2e,0xf9,0xff,0x1f,0x1d,0xf7,0xff,0x11,0xf,0xf6, + 0xff,0x18,0x16,0xf7,0xff,0x28,0x26,0xf8,0xff,0x35,0x33,0xfa,0xff,0x40,0x40,0xfc, + 0xff,0x44,0x44,0xfc,0xff,0x3e,0x3d,0xfb,0xff,0x11,0xe,0xf5,0xff,0x4d,0x4d,0x89, + 0xff,0xc1,0xc3,0x0,0xff,0xbf,0xc1,0x0,0xff,0xb9,0xb9,0x0,0xff,0xb2,0xb2,0x1, + 0xff,0xa6,0xa5,0x1,0xff,0x94,0x93,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0xa5,0xa4,0x0,0xff,0xb3,0xb2,0x1,0xff,0xb5,0xb6,0x1,0xff,0xbb,0xbc,0x0, + 0xff,0xc2,0xc3,0x0,0xff,0xc7,0xc7,0x4,0xff,0x17,0xb1,0x99,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xcc,0xcc,0xcc,0xff,0xce,0xce,0xce,0xff,0xaa,0xaa,0xaa, + 0xff,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0xff,0xe,0xe,0xe,0xff,0x9f,0x9f,0x9f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xe5, + 0x2f,0x83,0x83,0xf3,0xff,0x68,0x68,0xfb,0xff,0x4f,0x4f,0xfd,0xff,0x46,0x46,0xfc, + 0xff,0x40,0x40,0xfc,0xff,0x45,0x45,0xfc,0xff,0x44,0x44,0xfc,0xff,0x42,0x41,0xfc, + 0xff,0x41,0x41,0xfd,0xff,0x3f,0x3f,0xfc,0xff,0x43,0x43,0xfc,0xff,0x44,0x44,0xfd, + 0xff,0x42,0x41,0xfc,0xff,0x38,0x37,0xfa,0xff,0x1b,0x19,0xf5,0xff,0x98,0x98,0x50, + 0xff,0xdd,0xdc,0x5,0xff,0xd9,0xd8,0x0,0xff,0xcb,0xcc,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xbe,0xbf,0x0,0xff,0xba,0xbb,0x0,0xff,0xb6,0xb7,0x1,0xff,0xb6,0xb6,0x1, + 0xff,0xb7,0xb7,0x1,0xff,0xb9,0xba,0x0,0xff,0xc8,0xc9,0x0,0xff,0xd8,0xd7,0x1, + 0xff,0xe8,0xe7,0x8,0xff,0xa2,0xe0,0x48,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe9,0xe9,0xe9,0xff,0xc2,0xc2,0xc2,0xff,0xbb,0xbb,0xbb, + 0xff,0xaa,0xaa,0xaa,0xff,0x9b,0x9b,0x9b,0xff,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xdd, + 0x54,0x79,0x79,0xf6,0xff,0x64,0x64,0xfb,0xff,0x52,0x51,0xfd,0xff,0x44,0x44,0xfc, + 0xff,0x47,0x47,0xfc,0xff,0x4e,0x4d,0xfd,0xff,0x4f,0x4f,0xfd,0xff,0x51,0x50,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x51,0x50,0xfd,0xff,0x50,0x50,0xfd,0xff,0x47,0x46,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x3c,0x3b,0xfc,0xff,0x25,0x23,0xf1,0xff,0x1e,0xb3,0xae, + 0xff,0xdc,0xf1,0x24,0xff,0xeb,0xeb,0xb,0xff,0xdd,0xdc,0x2,0xff,0xd8,0xd7,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xcb,0xcc,0x0,0xff,0xc9,0xca,0x0,0xff,0xcb,0xcc,0x0, + 0xff,0xd0,0xd0,0x0,0xff,0xd8,0xd7,0x0,0xff,0xe4,0xe3,0x6,0xff,0xf4,0xf4,0x11, + 0xff,0xb9,0xe7,0x3b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe1,0xe1,0xe1,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaa,0xaa,0xaa,0xff,0x5c,0x5c,0x5c,0xff,0x6f,0x6f,0x6f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0x9f,0x6e,0x6e,0xf9,0xff,0x58,0x58,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x4e,0x4d,0xfd, + 0xff,0x59,0x59,0xfd,0xff,0x62,0x62,0xfb,0xff,0x67,0x67,0xfb,0xff,0x66,0x66,0xfb, + 0xff,0x65,0x65,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x58,0x57,0xfd,0xff,0x52,0x51,0xfd, + 0xff,0x4b,0x4b,0xfd,0xff,0x42,0x41,0xfc,0xff,0x2f,0x2e,0xf9,0xff,0xc,0x91,0xbd, + 0xff,0x0,0xb9,0xb9,0xff,0x5d,0xd0,0x7a,0xff,0xb9,0xe8,0x3c,0xff,0xee,0xed,0xc, + 0xff,0xe6,0xe5,0x7,0xff,0xe3,0xe2,0x5,0xff,0xe1,0xe1,0x4,0xff,0xe5,0xe4,0x7, + 0xff,0xec,0xeb,0xb,0xff,0xf2,0xf2,0xf,0xff,0xb9,0xe7,0x3b,0xff,0x52,0xcd,0x81, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,0xff,0xf2,0xf2,0xf2,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xca,0xca,0xca,0xff,0x5f,0x5f,0x5f,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf1,0x1c,0x81,0x81,0xf3, + 0xff,0x60,0x5f,0xfc,0xff,0x52,0x51,0xfd,0xff,0x46,0x46,0xfc,0xff,0x53,0x53,0xfd, + 0xff,0x5e,0x5e,0xfc,0xff,0x6b,0x6b,0xf9,0xff,0x7a,0x7a,0xf6,0xff,0x7d,0x7d,0xf5, + 0xff,0x7a,0x7a,0xf6,0xff,0x6f,0x6f,0xf9,0xff,0x66,0x65,0xfb,0xff,0x5d,0x5c,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x3f,0x3e,0xfc,0xff,0x33,0x31,0xf9,0xff,0x1e,0x75,0xd2, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x52,0xcd,0x81,0xff,0x52,0xcd,0x81,0xff,0x52,0xcd,0x81,0xff,0x52,0xcd,0x81, + 0xff,0x52,0xcd,0x81,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc8,0xc8,0xc8,0xff,0xf3,0xf3,0xf3, + 0xff,0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe8,0xaa,0x76,0x76,0xf7, + 0xff,0x56,0x55,0xfd,0xff,0x44,0x44,0xfc,0xff,0x42,0x42,0xfc,0xff,0x51,0x50,0xfc, + 0xff,0x76,0x76,0xf7,0xff,0x7c,0x85,0xe1,0xff,0x4f,0x6a,0x9b,0xff,0x33,0x47,0x69, + 0xff,0x47,0x56,0x87,0xff,0x73,0x75,0xc6,0xff,0x7b,0x7b,0xf5,0xff,0x67,0x67,0xfb, + 0xff,0x58,0x57,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x30,0x2e,0xf9,0xff,0x2d,0x57,0xe1, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xa7,0xa7,0xa7, + 0xff,0x8f,0x8f,0x8f,0xff,0xb2,0xb2,0xb2,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xd7,0x2f,0x81,0x81,0xf3,0xff,0x64,0x64,0xfa, + 0xff,0x50,0x4f,0xfd,0xff,0x3f,0x3e,0xfd,0xff,0x3c,0x3c,0xfc,0xff,0x67,0x66,0xe4, + 0xff,0x61,0x9b,0xba,0xff,0xa,0x75,0x78,0xff,0x0,0x60,0x60,0xff,0x0,0x69,0x69, + 0xff,0x0,0x5a,0x5a,0xff,0x7,0x49,0x49,0xff,0x61,0x6f,0xae,0xff,0x7e,0x7e,0xf4, + 0xff,0x62,0x61,0xfb,0xff,0x48,0x47,0xfd,0xff,0x32,0x30,0xf9,0xff,0x2c,0x33,0xe2, + 0xff,0x4,0x9f,0xaa,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x63,0x63,0x63,0xff,0x2b,0x2c,0x2c, + 0xff,0x3f,0x3f,0x3f,0xff,0x23,0x24,0x24,0xff,0x5f,0x5f,0x5f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x54,0x79,0x79,0xf6,0xff,0x61,0x60,0xfb, + 0xff,0x4f,0x4e,0xfd,0xff,0x3a,0x39,0xfb,0xff,0x34,0x33,0xfa,0xff,0x6e,0x85,0xb8, + 0xff,0x7,0xbc,0xbc,0xff,0x0,0xab,0xab,0xff,0x0,0xbf,0xbf,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xab,0xab,0xff,0x0,0x7b,0x7b,0xff,0x14,0x4e,0x53,0xff,0x86,0x86,0xea, + 0xff,0x70,0x70,0xf8,0xff,0x56,0x55,0xfd,0xff,0x39,0x38,0xfb,0xff,0x30,0x2e,0xf8, + 0xff,0x35,0x5f,0xa2,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xcc,0xcc,0xcc,0xff,0xce,0xce,0xce,0xff,0xa4,0xa4,0xa4, + 0xff,0x94,0x94,0x94,0xff,0x89,0x89,0x89,0xff,0xe,0xe,0xe,0xff,0x9f,0x9f,0x9f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xf3,0x7f,0x71,0x71,0xf8,0xff,0x5e,0x5d,0xfc, + 0xff,0x51,0x50,0xfd,0xff,0x2c,0x2b,0xf9,0xff,0x25,0x23,0xec,0xff,0x39,0x7d,0xa0, + 0xff,0x0,0xdf,0xdf,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcc,0xcc, + 0xff,0x0,0xcb,0xcb,0xff,0x0,0xbe,0xbe,0xff,0x0,0x64,0x64,0xff,0x6c,0x80,0xc5, + 0xff,0x76,0x76,0xf6,0xff,0x5d,0x5c,0xfc,0xff,0x40,0x3f,0xfc,0xff,0x2d,0x2c,0xf8, + 0xff,0x3e,0x3e,0xca,0xff,0x5,0x9b,0xa8,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe9,0xe9,0xe9,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x9b,0x9b,0x9b,0xff,0x54,0x55,0x55,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x7f,0x6e,0x6e,0xfa,0xff,0x61,0x61,0xfb, + 0xff,0x50,0x4f,0xfd,0xff,0x20,0x1f,0xf9,0xff,0xd,0xb,0xdb,0xff,0x13,0x41,0x67, + 0xff,0x0,0xf1,0xf1,0xff,0x0,0xcf,0xcf,0xff,0x0,0xc9,0xc9,0xff,0x0,0xcd,0xcd, + 0xff,0x0,0xcf,0xcf,0xff,0x0,0xcd,0xcd,0xff,0x0,0x8f,0x8f,0xff,0x5d,0x7c,0xb6, + 0xff,0x78,0x78,0xf7,0xff,0x5e,0x5d,0xfc,0xff,0x42,0x42,0xfc,0xff,0x30,0x2f,0xfa, + 0xff,0x34,0x34,0xb7,0xff,0x7,0x92,0xa3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x7,0xb0,0xaa,0xff,0x1c,0x97,0x7d,0xff,0x15,0x9f,0x8c,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xe1,0xe1,0xe1,0xff,0xd3,0xd3,0xd3,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xa4,0xa4,0xa4,0xff,0x4d,0x4e,0x4e,0xff,0x6f,0x6f,0x6f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xf4,0x5f,0x6d,0x6d,0xfa,0xff,0x62,0x62,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x27,0x25,0xf9,0xff,0x6,0x3,0xf1,0xff,0xb,0x16,0x79, + 0xff,0x0,0xb1,0xb1,0xff,0x0,0xf0,0xf0,0xff,0x0,0xe1,0xe1,0xff,0x0,0xd6,0xd6, + 0xff,0x0,0xdb,0xdb,0xff,0x0,0xde,0xde,0xff,0x5,0xaa,0xa9,0xff,0x7e,0x88,0xd4, + 0xff,0x74,0x74,0xf7,0xff,0x58,0x57,0xfd,0xff,0x46,0x46,0xfd,0xff,0x33,0x32,0xfa, + 0xff,0x2c,0x2b,0xc0,0xff,0x7,0x92,0xa3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x7,0xb0,0xaa, + 0xff,0x46,0x68,0x26,0xff,0x68,0x68,0x2,0xff,0x65,0x65,0x2,0xff,0x1c,0x97,0x7d, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xc3,0xc3,0xc3,0xff,0xf2,0xf2,0xf2,0xff,0xca,0xca,0xca, + 0xff,0xbf,0xbf,0xbf,0xff,0xd2,0xd2,0xd2,0xff,0x4f,0x4f,0x4f,0xff,0xb3,0xb3,0xb3, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf3,0x3f,0x7a,0x7a,0xf6,0xff,0x65,0x65,0xfb, + 0xff,0x52,0x51,0xfd,0xff,0x40,0x3f,0xfc,0xff,0x13,0x10,0xf7,0xff,0xb,0xa,0xc2, + 0xff,0x7,0x32,0x46,0xff,0x0,0xc2,0xc2,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf2,0xf2,0xff,0x0,0xe1,0xe1,0xff,0x32,0x76,0x8f,0xff,0x7c,0x7c,0xf1, + 0xff,0x66,0x65,0xfb,0xff,0x4f,0x4e,0xfd,0xff,0x42,0x42,0xfc,0xff,0x26,0x24,0xf8, + 0xff,0x22,0x21,0xc5,0xff,0x12,0x8e,0x8c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0xa0,0x8b,0xff,0x4a,0x5f,0x19, + 0xff,0x63,0x63,0x2,0xff,0x7b,0x7d,0x0,0xff,0x7a,0x7b,0x0,0xff,0x44,0x6d,0x2c, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xce,0xce,0xce,0xff,0xf3,0xf3,0xf3, + 0xff,0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xf4,0xe9,0x6b,0x6b,0xfb, + 0xff,0x5a,0x59,0xfd,0xff,0x48,0x47,0xfd,0xff,0x32,0x31,0xfb,0xff,0x14,0x12,0xf7, + 0xff,0x12,0x12,0xb2,0xff,0xb,0x22,0x4c,0xff,0x2,0x58,0x5a,0xff,0x0,0x70,0x70, + 0xff,0x5,0x6a,0x71,0xff,0x19,0x4a,0x69,0xff,0x42,0x45,0xa9,0xff,0x5c,0x5b,0xfc, + 0xff,0x54,0x53,0xfd,0xff,0x46,0x45,0xfc,0xff,0x37,0x36,0xfb,0xff,0x1e,0x1c,0xf7, + 0xff,0x39,0x38,0x82,0xff,0x57,0x57,0x4,0xff,0x41,0x6f,0x31,0xff,0x2f,0x80,0x53, + 0xff,0x1c,0x97,0x7c,0xff,0x15,0xa0,0x8b,0xff,0x15,0xa0,0x8b,0xff,0x15,0xa0,0x8b, + 0xff,0x1f,0x93,0x75,0xff,0x38,0x76,0x40,0xff,0x5b,0x5b,0x3,0xff,0x64,0x64,0x2, + 0xff,0x7c,0x7d,0x0,0xff,0x93,0x93,0x0,0xff,0x9a,0x99,0x0,0xff,0x5a,0x69,0x12, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x71,0x76,0x76,0xf7, + 0xff,0x65,0x65,0xfb,0xff,0x54,0x53,0xfd,0xff,0x43,0x43,0xfc,0xff,0x30,0x2f,0xfa, + 0xff,0x13,0x10,0xf7,0xff,0x10,0xd,0xf2,0xff,0x16,0x14,0xbb,0xff,0x1b,0x1a,0x9e, + 0xff,0x22,0x21,0xb7,0xff,0x26,0x25,0xc6,0xff,0x46,0x45,0xfc,0xff,0x4a,0x4a,0xfc, + 0xff,0x42,0x41,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x22,0x1f,0xf8,0xff,0x16,0x15,0xe2, + 0xff,0x80,0x80,0x26,0xff,0x80,0x81,0x0,0xff,0x6f,0x6f,0x1,0xff,0x64,0x64,0x2, + 0xff,0x5d,0x5d,0x3,0xff,0x56,0x56,0x4,0xff,0x57,0x57,0x4,0xff,0x54,0x54,0x4, + 0xff,0x56,0x56,0x4,0xff,0x63,0x63,0x2,0xff,0x75,0x76,0x0,0xff,0x8c,0x8d,0x0, + 0xff,0xa3,0xa3,0x0,0xff,0xb5,0xb5,0x2,0xff,0xb0,0xb0,0x1,0xff,0x72,0x9a,0x29, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x82,0xf4, + 0xdf,0x6d,0x6d,0xfa,0xff,0x5f,0x5e,0xfc,0xff,0x52,0x51,0xfd,0xff,0x45,0x45,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x22,0x20,0xf8,0xff,0x14,0x12,0xf7,0xff,0x24,0x22,0xf8, + 0xff,0x33,0x31,0xfa,0xff,0x40,0x3f,0xfd,0xff,0x40,0x40,0xfc,0xff,0x41,0x40,0xfd, + 0xff,0x3e,0x3d,0xfc,0xff,0x2b,0x2a,0xf9,0xff,0x14,0x11,0xf7,0xff,0x55,0x55,0x6f, + 0xff,0xb7,0xb7,0x1,0xff,0xa7,0xa6,0x1,0xff,0x9f,0x9e,0x0,0xff,0x94,0x93,0x0, + 0xff,0x87,0x87,0x0,0xff,0x7f,0x80,0x0,0xff,0x7f,0x80,0x0,0xff,0x7c,0x7d,0x5, + 0xff,0x84,0x83,0x0,0xff,0x8f,0x8e,0x0,0xff,0x9f,0x9f,0x0,0xff,0xb1,0xb1,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xc4,0xc5,0x0,0xff,0xdc,0xdd,0x5,0xff,0x40,0xbc,0x7b, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x2f,0x81,0x81,0xf5,0xe9,0x6c,0x6c,0xfa,0xff,0x61,0x60,0xfc,0xff,0x55,0x54,0xfd, + 0xff,0x4d,0x4c,0xfd,0xff,0x45,0x44,0xfc,0xff,0x3c,0x3b,0xfc,0xff,0x42,0x41,0xfd, + 0xff,0x43,0x42,0xfd,0xff,0x46,0x46,0xfd,0xff,0x48,0x47,0xfd,0xff,0x46,0x45,0xfc, + 0xff,0x3c,0x3a,0xfb,0xff,0x29,0x27,0xf8,0xff,0x40,0x3e,0xae,0xff,0xcb,0xcb,0xd, + 0xff,0xd4,0xd4,0x0,0xff,0xc7,0xc8,0x0,0xff,0xba,0xba,0x1,0xff,0xb4,0xb4,0x1, + 0xff,0xb0,0xb0,0x1,0xff,0xac,0xab,0x1,0xff,0xad,0xac,0x0,0xff,0xb0,0xaf,0x1, + 0xff,0xb4,0xb4,0x1,0xff,0xb7,0xb7,0x1,0xff,0xb8,0xb9,0x1,0xff,0xc4,0xc5,0x0, + 0xff,0xd1,0xd1,0x1,0xff,0xed,0xed,0xc,0xff,0xba,0xe9,0x3e,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x1c,0x84,0x84,0xf4,0xe9,0x6e,0x6e,0xfa,0xff,0x67,0x67,0xfb, + 0xff,0x5c,0x5b,0xfd,0xff,0x58,0x57,0xfd,0xff,0x55,0x54,0xfd,0xff,0x52,0x51,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x57,0x56,0xfd,0xff,0x5c,0x5b,0xfc,0xff,0x57,0x56,0xfd, + 0xff,0x5c,0x5b,0xfc,0xff,0x59,0x58,0xf2,0xff,0x95,0xc3,0x6f,0xff,0xeb,0xeb,0xa, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xd5,0xd5,0x0,0xff,0xc6,0xc7,0x0, + 0xff,0xbf,0xc0,0x0,0xff,0xba,0xbb,0x0,0xff,0xbb,0xbc,0x1,0xff,0xbd,0xbe,0x0, + 0xff,0xc2,0xc3,0x0,0xff,0xc8,0xc9,0x0,0xff,0xd3,0xd3,0x0,0xff,0xe4,0xe3,0x4, + 0xff,0xf6,0xf6,0x13,0xff,0xdd,0xf1,0x27,0xff,0x14,0xbe,0xab,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x2f,0x87,0x87,0xf4,0xaa,0x79,0x79,0xf7, + 0xff,0x6d,0x6d,0xfa,0xff,0x68,0x68,0xfb,0xff,0x68,0x68,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x6a,0x69,0xfa,0xff,0x72,0x72,0xf9,0xff,0x77,0x77,0xf7,0xff,0x79,0x79,0xf7, + 0xff,0x7e,0x7e,0xf0,0xff,0x37,0x94,0xbb,0xff,0x0,0xb9,0xb9,0xff,0x6b,0xd3,0x6f, + 0xff,0xdf,0xee,0x1f,0xff,0xed,0xec,0xb,0xff,0xe7,0xe6,0x7,0xff,0xe1,0xe0,0x2, + 0xff,0xe0,0xdf,0x1,0xff,0xde,0xdd,0x0,0xff,0xdb,0xdb,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xe3,0xe2,0x3,0xff,0xeb,0xeb,0xa,0xff,0xf2,0xf2,0xf,0xff,0xe2,0xf1,0x20, + 0xff,0x7a,0xd7,0x65,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xba,0xba,0xba,0xff,0x5a,0x5a,0x5a,0xff,0x53,0x53,0x53,0xff,0x53,0x53,0x53, + 0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x4f,0x4f,0x4f,0xff,0x77,0x77,0x77, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xe9, + 0x54,0x86,0x86,0xea,0xff,0x82,0x82,0xf5,0xff,0x82,0x82,0xf5,0xff,0x83,0x83,0xf4, + 0xff,0x86,0x86,0xf0,0xff,0x86,0x86,0xef,0xff,0x90,0x90,0xe4,0xff,0x9f,0x9f,0xd3, + 0xff,0x8b,0x8b,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x63,0xcf,0x70,0xff,0xbe,0xe7,0x37,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf6,0xf6,0x13,0xff,0xf6,0xf5,0x12,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xa3,0xe0,0x49,0xff,0x63,0xcf,0x70,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0x9f,0x9f,0x9f,0xff,0x99,0x99,0x99, + 0xff,0x9c,0x9c,0x9c,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf3,0x2f,0x98,0x98,0xb1,0xff,0xd0,0xd0,0xeb, + 0xff,0xb1,0xb1,0xc5,0xff,0xbb,0xbb,0xc4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x27,0xc1,0x9b,0xff,0x3e,0xc9,0x90,0xff,0x3e,0xc9,0x90,0xff,0x2d,0xc3,0x98, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xb7,0xb7,0xb7,0xff,0xa3,0xa3,0xa3, + 0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x7f,0x7f,0x7f,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xb5,0xb5,0xb5, + 0xff,0xa2,0xa2,0xa2,0xff,0x9f,0x9f,0x9f,0xff,0x85,0x86,0x86,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x7b,0x7b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xd0,0xd0,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xba,0xba,0xba,0xff,0xa3,0xa3,0xa3,0xff,0x8e,0x8f,0x8f,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x90,0x90,0x90,0xff,0x0,0x66,0x66,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x54,0xbb,0xcc,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xd4,0xd4,0xd4,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb5,0xb5,0xb5,0xff,0xa3,0xa3,0xa3,0xff,0x5f,0x5f,0x5f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xb8,0xb8,0xb8,0xff,0x4f,0x4f,0x4f,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xff,0x40,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40, + 0xff,0x3f,0x3f,0x3f,0xff,0xa8,0xa8,0xa8,0xff,0xd2,0xd2,0xd2,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xe9,0xe9,0xe9,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xcf,0xcf,0xcf,0xff,0x6f,0x6f,0x6f, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0xff,0xe9,0xe9,0xe9, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x97,0x97,0xef,0xf3,0xf3,0xf3, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xce,0xce,0xce,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x9b,0x9b,0x9b, + 0xff,0xcf,0xcf,0xcf,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4,0xff,0xd4,0xd4,0xd4, + 0xff,0xd4,0xd4,0xd4,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3,0xff,0xd3,0xd3,0xd3, + 0xff,0xd3,0xd3,0xd3,0xff,0xe3,0xe3,0xe3,0xff,0xd3,0xd3,0xd3,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e, + 0x3f,0x8b,0x8b,0x8b,0xef,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xdd,0xdd,0xdd,0xff,0xce,0xce,0xce, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x86,0x86,0x86,0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xde,0xde,0xde, + 0xff,0xbe,0xbe,0xbe,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e,0x3f,0x8b,0x8b,0x8b,0xef,0xba,0xba,0xba, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xe6,0xe6,0xe6,0xff,0xbd,0xbd,0xbd,0xff,0x7e,0x7f,0x7f,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x86,0x86,0x86, + 0xff,0xba,0xba,0xba,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xe8,0xe8,0xe8,0xff,0xbe,0xbe,0xbe,0xff,0x2a,0x2a,0x2a, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e, + 0x3f,0x87,0x87,0x87,0xef,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0xff,0x90,0x90,0x90, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0xa9,0xa9,0xa9,0xef,0x7e,0x7e,0x7e, + 0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1f,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1f,0xff,0xff,0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xf,0xff,0xff,0xff,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff, + 0xff,0xff,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0xff,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1f,0xff,0xff,0xff,0x28,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xdf,0xdf,0xdf,0xff,0xcf,0xcf,0xcf,0xff,0xc1,0xc1,0xc1, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xc0,0xc0,0xc0,0xff,0xdf,0xdf,0xdf,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0x7f,0x7f,0x7f,0xff,0x72,0x72,0x72, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xc1,0xc1,0xc1,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0xa2,0xa2,0xa2,0xff,0x94,0x94,0x94, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0xbe,0xbe,0xbe,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x94,0x94,0x94,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x90,0x90,0x90,0xff,0x48,0x48,0x48,0xff,0x75,0x75,0x75,0xff,0xbe,0xbe,0xbe, + 0xff,0xcb,0xcb,0xcb,0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0,0xff,0xcb,0xcb,0xcb,0xff,0xab,0xab,0xab, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0, + 0xff,0xcb,0xcb,0xcb,0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0xb0,0xb0,0xb0,0xff,0xbe,0xbe,0xbe,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x94,0x94,0x94,0xff,0xb4,0xb4,0xb4,0xff,0x75,0x75,0x75,0xff,0xbe,0xbe,0xbe, + 0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x12,0x12,0x12, + 0xff,0x54,0x54,0x54,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x6c,0x6c,0x6c,0xff,0xab,0xab,0xab, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0x71,0x71,0x71,0xff,0x7e,0x7e,0x7e,0xff,0xc2,0xc2,0xc2,0xff,0x95,0x95,0x95, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xac,0xac,0xac, + 0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0xac,0xac,0xac,0xff,0xc2,0xc2,0xc2, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a, + 0xff,0xac,0xac,0xac,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xb4,0xb4,0xb4,0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x49,0x49,0x49, + 0xff,0x12,0x12,0x12,0xff,0x96,0x96,0x96,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x36,0x36,0x36,0xff,0xc2,0xc2,0xc2, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x90,0x90,0x90, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0xda,0xda,0xda,0xff,0x95,0x95,0x95,0xff,0xac,0xac,0xac,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c,0xff,0xac,0xac,0xac, + 0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5, + 0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48, + 0xff,0xb5,0xb5,0xb5,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x6d,0x6d,0x6d,0xff,0x36,0x36,0x36,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0xda,0xda,0xda, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5, + 0xff,0xd9,0xd9,0xd9,0xff,0xd0,0xd0,0xd0,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91, + 0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3, + 0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xff,0x95,0x95,0x95, + 0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95, + 0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3, + 0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0x95,0x95,0x95, + 0xff,0xd9,0xd9,0xd9,0xff,0xd0,0xd0,0xd0,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91, + 0xff,0xc2,0xc2,0xc2,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4, + 0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0xc3,0xc3,0xc3,0xff,0xc2,0xc2,0xc2,0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91, + 0xff,0x91,0x91,0x91,0xff,0x36,0x36,0x36,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x66,0x66,0x66, + 0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3, + 0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb5,0xb5,0xb5, + 0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0x91,0x91,0x91,0xff,0x7e,0x7e,0x7e, + 0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e, + 0xff,0xda,0xda,0xda,0xff,0x63,0x63,0x63,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0xac,0xac,0xac,0xff,0x91,0x91,0x91, + 0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95, + 0xff,0xac,0xac,0xac,0xff,0x91,0x91,0x91,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda,0xff,0x63,0x63,0x63, + 0xff,0x95,0x95,0x95,0xff,0xc3,0xc3,0xc3,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0x91,0x91,0x91,0xff,0x7e,0x7e,0x7e,0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x90,0x90,0x90,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0x36,0x36,0x36, + 0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80, + 0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x30,0x30,0x30,0xff,0xa3,0xa3,0xa3,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95, + 0xff,0xac,0xac,0xac,0xff,0x90,0x90,0x90,0xff,0xb5,0xb5,0xb5,0xff,0xd9,0xd9,0xd9, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0x95,0x95,0x95, + 0xff,0x7f,0x7f,0x7f,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0x71,0x71,0x71,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac, + 0xff,0x90,0x90,0x90,0xff,0x48,0x48,0x48,0xff,0x55,0x56,0x56,0xff,0x7e,0x7e,0x7e, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70, + 0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0x90,0x90,0x90,0xff,0x48,0x48,0x48, + 0xff,0x55,0x55,0x55,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x70,0x70,0x70,0xff,0xac,0xac,0xac, + 0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0x91,0x91,0x91,0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0xa3,0xa3,0xa3, + 0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48, + 0xff,0x7a,0x7a,0x7a,0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x95,0x95,0x95, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xac,0xac,0xac, + 0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0xac,0xac,0xac,0xff,0xc2,0xc2,0xc2, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4, + 0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x7a,0x7a,0x7a,0xff,0x95,0x95,0x95, + 0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48, + 0xff,0x90,0x90,0x90,0xff,0xc2,0xc2,0xc2,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xb4,0xb4,0xb4,0xff,0x48,0x48,0x48, + 0xff,0x49,0x4a,0x49,0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x6d,0x6d,0x6d, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48, + 0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c,0xff,0xac,0xac,0xac, + 0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5, + 0xff,0xac,0xac,0xac,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x6c,0x6c,0x6c,0xff,0xab,0xab,0xab,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x7e,0x7e,0x7e, + 0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0xda,0xda,0xda,0xff,0xd8,0xd8,0xd8,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x48,0x48,0xff,0xb5,0xb5,0xb5,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30, + 0xff,0xa3,0xa3,0xa3,0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5, + 0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91, + 0xff,0xab,0xab,0xab,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4, + 0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0xc3,0xc3,0xc3,0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0xb5,0xb5,0xb5, + 0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xff,0x95,0x95,0x95, + 0xff,0xac,0xac,0xac,0xff,0x87,0x87,0x87,0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0x87,0x87,0x87,0xff,0x95,0x95,0x95, + 0xff,0xda,0xda,0xda,0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9, + 0xff,0x70,0x70,0x70,0xff,0xc3,0xc3,0xc3,0xff,0xd0,0xd0,0xd0,0xff,0xb4,0xb4,0xb4, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91, + 0xff,0x90,0x90,0x90,0xff,0x9e,0x9e,0x9e,0xff,0x95,0x95,0x95,0xff,0xda,0xda,0xda, + 0xff,0xbd,0xbd,0xbd,0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0x87,0x87,0x87, + 0xff,0x7e,0x7e,0x7e,0xff,0xac,0xac,0xac,0xff,0xd0,0xd0,0xd0,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9,0xff,0x90,0x90,0x90, + 0xff,0xac,0xac,0xac,0xff,0xda,0xda,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xbd,0xbd,0xbd, + 0xff,0xb4,0xb4,0xb4,0xff,0xb4,0xb4,0xb4,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0x56,0x56,0x56,0xff,0x36,0x36,0x36, + 0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80, + 0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x30,0x30,0x30,0xff,0x36,0x36,0x36,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xc3,0xc3,0xc3, + 0xff,0xac,0xac,0xac,0xff,0x90,0x90,0x90,0xff,0xb5,0xb5,0xb5,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0x95,0x95,0x95,0xff,0x95,0x95,0x95,0xff,0xb5,0xb5,0xb5,0xff,0x55,0x55,0x55, + 0xff,0x87,0x87,0x87,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xc3,0xc3,0xc3,0xff,0x95,0x95,0x95, + 0xff,0xb5,0xb5,0xb5,0xff,0x55,0x55,0x55,0xff,0x70,0x70,0x70,0xff,0xc3,0xc3,0xc3, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0x6c,0x6c,0x6c,0xff,0x63,0x63,0x63, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xb4,0xb4,0xb4, + 0xff,0x55,0x55,0x55,0xff,0x70,0x70,0x70,0xff,0xab,0xab,0xab,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x63,0x63,0x63,0xff,0x7e,0x7e,0x7e, + 0xff,0xc3,0xc3,0xc3,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0x6c,0x6c,0x6c, + 0xff,0x63,0x63,0x63,0xff,0x7e,0x7f,0x7f,0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9, + 0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0x95,0x95,0x95,0xff,0xb4,0xb4,0xb4,0xff,0x6c,0x6c,0x6c,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0x95,0x95,0x95,0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c, + 0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0xa3,0xa3,0xa3, + 0xff,0x95,0x95,0x95,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0x7e,0x7e,0x7e,0xff,0xda,0xda,0xda,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab, + 0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xab,0xab,0xab, + 0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0x63,0x63,0x63,0xff,0xd9,0xd9,0xd9,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91, + 0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0xab,0xab,0xab,0xff,0xab,0xab,0xab, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x63,0x63,0x63, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x48,0x48,0x48,0xff,0x63,0x63,0x63,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xab,0xab,0xab,0xff,0x91,0x91,0x91,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48, + 0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e,0xff,0xd9,0xd9,0xd9,0xff,0x48,0x48,0x48, + 0xff,0x49,0x4a,0x49,0xff,0x12,0x12,0x12,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8e,0x8e,0x8e, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30,0xff,0x6d,0x6d,0x6d, + 0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x6c,0x6c,0x6c, + 0xff,0xd8,0xd8,0xd8,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac, + 0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48, + 0xff,0x48,0x48,0x48,0xff,0xc3,0xc3,0xc3,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2, + 0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2, + 0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xc2,0xc2,0xc2, + 0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac, + 0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48, + 0xff,0x91,0x91,0x91,0xff,0xc2,0xc2,0xc2,0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c, + 0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48,0xff,0xc2,0xc2,0xc2,0xff,0xd9,0xd9,0xd9, + 0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0x48,0x49,0x48,0xff,0x91,0x91,0x91, + 0xff,0x95,0x95,0x95,0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x91,0x91,0x91,0xff,0x95,0x95,0x95,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab, + 0xff,0xc2,0xc2,0xc2,0xff,0x6c,0x6c,0x6c,0xff,0x48,0x49,0x48,0xff,0x48,0x48,0x48, + 0xff,0xc2,0xc2,0xc2,0xff,0xd9,0xd9,0xd9,0xff,0xab,0xab,0xab,0xff,0xac,0xac,0xac, + 0xff,0xac,0xac,0xac,0xff,0xab,0xab,0xab,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0x48,0x49,0x48,0xff,0x91,0x91,0x91,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x30,0x30,0x30, + 0xff,0xa2,0xa2,0xa2,0xff,0xcf,0xcf,0xcf,0xff,0xb4,0xb4,0xb4,0xff,0xb5,0xb5,0xb5, + 0xff,0xb4,0xb4,0xb4,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x91,0x91,0xff,0x90,0x90,0x90, + 0xff,0xeb,0xeb,0xeb,0xff,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c, + 0xff,0x91,0x91,0x91,0xff,0xeb,0xeb,0xeb,0xff,0xf4,0xf4,0xf4,0xff,0xd8,0xd8,0xd8, + 0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91,0xff,0xeb,0xeb,0xeb, + 0xff,0xe1,0xe1,0xe1,0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48, + 0xff,0xd9,0xd9,0xd9,0xff,0xf4,0xf4,0xf4,0xff,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf, + 0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91,0xff,0xeb,0xeb,0xeb,0xff,0xe1,0xe1,0xe1, + 0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5,0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9, + 0xff,0xfe,0xfe,0xfe,0xff,0xe1,0xe1,0xe1,0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5, + 0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4, + 0xff,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0x6c,0x6c,0x6c,0xff,0x91,0x91,0x91, + 0xff,0xeb,0xeb,0xeb,0xff,0xe1,0xe1,0xe1,0xff,0xd8,0xd8,0xd8,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xb5,0xb5,0xb5, + 0xff,0x48,0x48,0x48,0xff,0xd9,0xd9,0xd9,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80,0x3f,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xc1,0xc1,0xc1, + 0xff,0xee,0xee,0xee,0xff,0xf4,0xf4,0xf4,0xff,0xd9,0xd9,0xd9,0xff,0xd9,0xd9,0xd9, + 0xff,0xd9,0xd9,0xd9,0xff,0xd8,0xd8,0xd8,0xff,0xd8,0xd8,0xd8,0xff,0xe1,0xe1,0xe1, + 0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4,0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6, + 0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5, + 0xff,0xb4,0xb4,0xb4,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4, + 0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6, + 0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6, + 0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9,0xff,0x90,0x90,0x90, + 0xff,0xeb,0xeb,0xeb,0xff,0xfe,0xfe,0xfe,0xff,0xf4,0xf4,0xf4,0xff,0xe1,0xe1,0xe1, + 0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7,0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9, + 0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf,0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6, + 0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9,0xff,0x90,0x90,0x90,0xff,0xeb,0xeb,0xeb, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9, + 0xff,0x90,0x90,0x90,0xff,0xeb,0xeb,0xeb,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xf4,0xf4,0xf4,0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6,0xff,0xc7,0xc7,0xc7, + 0xff,0xc6,0xc6,0xc6,0xff,0xd9,0xd9,0xd9,0xff,0xb5,0xb5,0xb5,0xff,0xb4,0xb4,0xb4, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xeb,0xeb,0xff,0xcf,0xcf,0xcf, + 0xff,0xc6,0xc6,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xcf,0xcf,0xcf,0xff,0xd9,0xd9,0xd9, + 0xff,0x90,0x90,0x90,0xff,0xeb,0xeb,0xeb,0xff,0xfe,0xfe,0xfe,0xff,0xaf,0xaf,0xaf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xce,0xce,0xce,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xd4,0xd4,0xd4,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xd4,0xd4,0xd4, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xd4,0xd4,0xd4, + 0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc,0xff,0xcc,0xcc,0xcc, + 0xff,0xcc,0xcc,0xcc,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9e,0x9e,0x9e, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x31,0x0, + 0xff,0x1,0xc6,0x0,0xff,0x0,0xb0,0x0,0xff,0x0,0x2c,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1,0xc6,0x0, + 0xff,0x1,0xc6,0x0,0xff,0x0,0xb0,0x0,0xff,0x0,0xb0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xb0,0xd9,0x64, + 0xff,0xb0,0xd9,0x64,0xff,0x1,0xc6,0x0,0xff,0x1,0xc6,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x2c,0x36,0x19, + 0xff,0xb0,0xd9,0x64,0xff,0x1,0xc6,0x0,0xff,0x0,0x31,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x8f,0x8f,0x8f,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x30,0x30,0x30,0xff,0x0,0x0,0x0,0xff,0x7f,0x7f,0x7f, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60,0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0x7e,0x7f,0x7f,0xff,0x9e,0x9f,0x9f,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1f,0x20,0x20, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x1f,0x20,0x20, + 0xff,0x7f,0x80,0x80,0xff,0x7e,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x1f,0x20,0x20,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0xa0,0xa0,0xa0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x8e,0x8e,0x8e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x12,0x12,0x12, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x36,0x37,0x36,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49, + 0xff,0x49,0x49,0x49,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x12,0x12,0x12, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x12,0x12,0x12,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x24,0x25,0x24, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x12,0x12,0x12,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x12,0x12,0x12,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x12,0x12,0x12,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49,0xff,0x49,0x4a,0x49, + 0xff,0x49,0x4a,0x49,0xff,0x12,0x12,0x12,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7e, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xa2,0xa2,0xa7, + 0xff,0x8b,0x8b,0x90,0xff,0x7c,0x7d,0x90,0xff,0x6d,0x6e,0x91,0xff,0x6e,0x6e,0x91, + 0xff,0x6e,0x6e,0x91,0xff,0x6c,0x6c,0x70,0xff,0x81,0x81,0x84,0xff,0x80,0x80,0x7f, + 0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x89,0x89,0x62,0xff,0x89,0x89,0x62,0xff,0x89,0x89,0x62,0xff,0x89,0x89,0x62, + 0xff,0x89,0x89,0x62,0xff,0x97,0x97,0x5f,0xff,0x9b,0x9b,0x5f,0xff,0xab,0xab,0x8f, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x83, + 0xff,0x6c,0x6c,0x70,0xff,0x7e,0x7e,0x94,0xff,0x38,0x38,0x6b,0xff,0x39,0x39,0x6a, + 0xff,0x18,0x19,0x74,0xff,0x14,0x14,0x7e,0xff,0x2d,0x2c,0xb8,0xff,0x25,0x24,0xb7, + 0xff,0x2d,0x2c,0xb9,0xff,0xf,0xf,0x88,0xff,0x13,0x14,0x7e,0xff,0x44,0x44,0x76, + 0xff,0x79,0x79,0x80,0xff,0x81,0x81,0x83,0xff,0x80,0x80,0x7f,0xff,0x80,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0x8a,0x8a,0x63,0xff,0x7c,0x7c,0x30,0xff,0x61,0x61,0x2, + 0xff,0x68,0x68,0x1,0xff,0x78,0x79,0x0,0xff,0x78,0x79,0x0,0xff,0x78,0x79,0x0, + 0xff,0x78,0x79,0x0,0xff,0x74,0x74,0x0,0xff,0x73,0x74,0xe,0xff,0x7e,0x80,0x12, + 0xff,0x8c,0x8d,0x2f,0xff,0xab,0xab,0x8f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0x90,0x3f,0x62,0x62,0x80,0xbf,0x29,0x2a,0x6a, + 0xff,0x1c,0x1c,0xa5,0xff,0x16,0x15,0xc9,0xff,0x3,0x1,0xd2,0xff,0x14,0x12,0xe6, + 0xff,0x14,0x11,0xf6,0xff,0xd,0xa,0xf6,0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf5, + 0xff,0x7,0x4,0xf5,0xff,0x7,0x4,0xf6,0xff,0x14,0x11,0xf7,0xff,0x11,0x10,0xd3, + 0xff,0xc,0xc,0x92,0xff,0x46,0x46,0x6d,0xff,0x79,0x79,0x8f,0xff,0x80,0x80,0x7e, + 0xff,0x7e,0x7e,0x7e,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xad,0xad,0xa1,0xff,0x85,0x85,0x42, + 0xff,0x6c,0x6c,0x1,0xff,0x78,0x79,0x0,0xff,0x7c,0x7d,0x0,0xff,0x80,0x82,0x0, + 0xff,0x80,0x82,0x0,0xff,0x80,0x82,0x1,0xff,0x80,0x82,0x1,0xff,0x80,0x82,0x1, + 0xff,0x80,0x82,0x1,0xff,0x7c,0x7d,0x0,0xff,0x80,0x82,0x1,0xff,0x78,0x79,0x0, + 0xff,0x70,0x71,0x1,0xff,0x69,0x6a,0x2,0xff,0x89,0x89,0x48,0xff,0xa4,0xa4,0x90, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x75,0x75,0x7f,0xbf,0x50,0x51,0x87,0xff,0x1c,0x1c,0xa4,0xff,0x19,0x17,0xe5, + 0xff,0x14,0x11,0xf6,0xff,0x6,0x3,0xf5,0xff,0x6,0x3,0xf5,0xff,0xd,0xa,0xf5, + 0xff,0x6,0x3,0xf5,0xff,0x14,0x11,0xf5,0xff,0x6,0x3,0xf5,0xff,0xd,0xa,0xf5, + 0xff,0xd,0xa,0xf5,0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf5,0xff,0x7,0x4,0xf5, + 0xff,0x5,0x3,0xe4,0xff,0xe,0xd,0xb7,0xff,0x24,0x24,0x75,0xff,0x60,0x61,0x79, + 0xff,0x9f,0x9f,0x9f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xad,0xad,0xa1,0xff,0x85,0x85,0x42,0xff,0x77,0x78,0x0,0xff,0x80,0x82,0x0, + 0xff,0x80,0x82,0x0,0xff,0x8d,0x8d,0x0,0xff,0x95,0x94,0x0,0xff,0x95,0x94,0x0, + 0xff,0x8d,0x8d,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8e,0x8e,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x7f,0x81,0x1,0xff,0x7c,0x7d,0x0,0xff,0x73,0x74,0x0, + 0xff,0x7c,0x7c,0x31,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x66,0x83, + 0xbf,0x5f,0x5f,0xc7,0xff,0x3a,0x39,0xdf,0xff,0x28,0x26,0xf8,0xff,0x21,0x1f,0xf6, + 0xff,0x21,0x1e,0xf6,0xff,0x22,0x20,0xf7,0xff,0x29,0x27,0xf7,0xff,0x30,0x2f,0xf9, + 0xff,0x38,0x37,0xfb,0xff,0x38,0x37,0xfb,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x30,0x2f,0xf9,0xff,0x28,0x27,0xf7,0xff,0x14,0x11,0xf5,0xff,0x6,0x3,0xf5, + 0xff,0x7,0x4,0xf5,0xff,0x7,0x4,0xf6,0xff,0xa,0x9,0xd3,0xff,0x13,0x13,0x7e, + 0xff,0x7d,0x7d,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xab,0xab,0x8f, + 0xff,0x75,0x76,0x12,0xff,0x8e,0x8e,0x0,0xff,0x8d,0x8d,0x0,0xff,0x94,0x93,0x0, + 0xff,0x9b,0x99,0x0,0xff,0xa1,0xa0,0x0,0xff,0xa8,0xa7,0x1,0xff,0xae,0xae,0x1, + 0xff,0xae,0xae,0x1,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xb8,0xb9,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xae,0x1, + 0xff,0xa7,0xa6,0x1,0xff,0x9c,0x9a,0x0,0xff,0x86,0x87,0x0,0xff,0x80,0x82,0x1, + 0xff,0x78,0x79,0x0,0xff,0x85,0x85,0x31,0xff,0xa4,0xa4,0x91,0xff,0x80,0x80,0x80, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xc9,0x3f,0x84,0x84,0xac,0xff,0x79,0x79,0xe2, + 0xff,0x55,0x54,0xfd,0xff,0x38,0x37,0xfb,0xff,0x30,0x2f,0xf9,0xff,0x30,0x2f,0xf9, + 0xff,0x38,0x37,0xfb,0xff,0x40,0x3f,0xfd,0xff,0x46,0x44,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x45,0x44,0xfd,0xff,0x45,0x43,0xfd,0xff,0x44,0x43,0xfd,0xff,0x44,0x43,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb,0xff,0x21,0x1f,0xf6, + 0xff,0xd,0xa,0xf5,0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf5,0xff,0x5,0x2,0xe5, + 0xff,0x11,0x11,0x87,0xff,0x9b,0x9b,0xa9,0xff,0xbb,0xbb,0x8e,0xff,0x93,0x93,0x0, + 0xff,0xa2,0xa0,0x0,0xff,0x9b,0x99,0x0,0xff,0xa1,0xa0,0x0,0xff,0xa7,0xa6,0x1, + 0xff,0xae,0xad,0x1,0xff,0xb4,0xb4,0x2,0xff,0xbc,0xbd,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xb8,0xb8,0x1,0xff,0xb7,0xb8,0x1,0xff,0xbb,0xbc,0x1,0xff,0xb8,0xb8,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xbc,0xbd,0x1,0xff,0xb8,0xb8,0x1, + 0xff,0xb8,0xb8,0x1,0xff,0xb5,0xb5,0x2,0xff,0x9b,0x99,0x0,0xff,0x86,0x87,0x0, + 0xff,0x80,0x82,0x1,0xff,0x7c,0x7e,0x0,0xff,0x6c,0x6d,0x1,0xff,0x7c,0x7c,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x3f,0x85,0x85,0xde,0xff,0x7f,0x7f,0xeb,0xff,0x60,0x5f,0xfc, + 0xff,0x4a,0x49,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd, + 0xff,0x3f,0x3e,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x44,0x43,0xfd,0xff,0x4a,0x49,0xfd, + 0xff,0x4f,0x4e,0xfd,0xff,0x54,0x53,0xfe,0xff,0x55,0x54,0xfe,0xff,0x54,0x53,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x3f,0x3e,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x30,0x2f,0xf9,0xff,0x29,0x27,0xf7,0xff,0x14,0x11,0xf5,0xff,0x6,0x3,0xf5, + 0xff,0xb,0x9,0xe5,0xff,0x13,0x13,0x7e,0xff,0xaf,0xaf,0x4,0xff,0xb5,0xb5,0x0, + 0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xad,0x1,0xff,0xb5,0xb5,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb8,0x1,0xff,0xb7,0xb8,0x1,0xff,0xbf,0xc0,0x0, + 0xff,0xc2,0xc4,0x0,0xff,0xc9,0xca,0x0,0xff,0xc9,0xca,0x0,0xff,0xc2,0xc4,0x0, + 0xff,0xc2,0xc4,0x0,0xff,0xc2,0xc4,0x0,0xff,0xba,0xbb,0x1,0xff,0xbb,0xbc,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb3,0xb3,0x2,0xff,0xa0,0x9f,0x0, + 0xff,0x86,0x87,0x0,0xff,0x80,0x82,0x1,0xff,0x81,0x83,0x1,0xff,0x74,0x74,0x0, + 0xff,0x46,0x46,0x2,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x3f,0x85,0x85,0xe7,0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb,0xff,0x59,0x59,0xfd, + 0xff,0x4a,0x49,0xfd,0xff,0x44,0x43,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x4f,0x4e,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x54,0x53,0xfe,0xff,0x54,0x53,0xfe, + 0xff,0x53,0x52,0xfe,0xff,0x59,0x58,0xfd,0xff,0x53,0x52,0xfe,0xff,0x59,0x59,0xfd, + 0xff,0x53,0x52,0xfe,0xff,0x54,0x53,0xfe,0xff,0x55,0x54,0xfe,0xff,0x4a,0x49,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb,0xff,0x30,0x2f,0xf9,0xff,0x20,0x1e,0xf6, + 0xff,0x14,0x11,0xf6,0xff,0x3,0x1,0xd3,0xff,0x51,0x50,0x4f,0xff,0xb4,0xb4,0x1, + 0xff,0xb5,0xb5,0x1,0xff,0xb5,0xb5,0x2,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xb7,0xb8,0x1,0xff,0xbf,0xc0,0x0,0xff,0xc9,0xca,0x0,0xff,0xc9,0xca,0x0, + 0xff,0xd6,0xd6,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdd,0xdc,0x0, + 0xff,0xdd,0xdc,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd0,0xd0,0x0,0xff,0xc9,0xca,0x0, + 0xff,0xc1,0xc2,0x0,0xff,0xb7,0xb8,0x1,0xff,0xb1,0xb1,0x2,0xff,0xa8,0xa7,0x1, + 0xff,0x9f,0x9e,0x0,0xff,0x8d,0x8d,0x0,0xff,0x7f,0x81,0x1,0xff,0x81,0x83,0x1, + 0xff,0x74,0x74,0x0,0xff,0x79,0x79,0x52,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f, + 0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf3,0x3f,0x85,0x85,0xe7, + 0xff,0x63,0x63,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x4e,0x4e,0xfd,0xff,0x54,0x53,0xfe,0xff,0x53,0x52,0xfe,0xff,0x53,0x52,0xfe, + 0xff,0x58,0x58,0xfd,0xff,0x57,0x56,0xfd,0xff,0x63,0x63,0xfc,0xff,0x63,0x63,0xfc, + 0xff,0x6a,0x6a,0xfc,0xff,0x6a,0x6a,0xfc,0xff,0x6a,0x6a,0xfc,0xff,0x6a,0x6a,0xfc, + 0xff,0x6a,0x6a,0xfc,0xff,0x63,0x63,0xfc,0xff,0x58,0x57,0xfd,0xff,0x53,0x52,0xfe, + 0xff,0x54,0x53,0xfe,0xff,0x3c,0x3c,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x20,0x1d,0xf5,0xff,0x1a,0x18,0xf6,0xff,0xf,0xd,0xc9,0xff,0x72,0x72,0x34, + 0xff,0xb4,0xb4,0x1,0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb4,0xb5,0x1, + 0xff,0xc9,0xca,0x0,0xff,0xd6,0xd6,0x0,0xff,0xd6,0xd6,0x0,0xff,0xdd,0xdc,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd3,0xd2,0x0,0xff,0xc8,0xc8,0x0,0xff,0xbf,0xbf,0x1,0xff,0xb3,0xb2,0x1, + 0xff,0xb2,0xb2,0x2,0xff,0xa0,0x9f,0x0,0xff,0x94,0x93,0x0,0xff,0x7f,0x81,0x1, + 0xff,0x78,0x79,0x0,0xff,0x68,0x68,0x1,0xff,0xa4,0xa4,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf1,0xbf,0x77,0x77,0xf7, + 0xff,0x64,0x64,0xfb,0xff,0x59,0x59,0xfd,0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x59,0x58,0xfd,0xff,0x5e,0x5d,0xfc,0xff,0x64,0x64,0xfb, + 0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x71,0x71,0xf8,0xff,0x69,0x69,0xfb, + 0xff,0x70,0x70,0xf8,0xff,0x70,0x70,0xf8,0xff,0x70,0x70,0xf8,0xff,0x70,0x70,0xf9, + 0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x58,0x57,0xfd,0xff,0x55,0x54,0xfe,0xff,0x42,0x42,0xfc,0xff,0x3f,0x3f,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x19,0x17,0xf5,0xff,0x5,0x2,0xf6,0xff,0x1a,0x19,0x94, + 0xff,0xb1,0xb1,0x3,0xff,0xb4,0xb4,0x1,0xff,0xb6,0xb7,0x1,0xff,0xc1,0xc2,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xd6,0xd6,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xd6,0xd6,0x0,0xff,0xcb,0xcc,0x0,0xff,0xbf,0xc0,0x0,0xff,0xb7,0xb7,0x1, + 0xff,0xb3,0xb3,0x2,0xff,0xb5,0xb5,0x2,0xff,0xa7,0xa6,0x1,0xff,0x94,0x93,0x0, + 0xff,0x7f,0x81,0x1,0xff,0x78,0x79,0x0,0xff,0x52,0x52,0x4,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x7f,0x7f,0x7f,0xf4,0xff,0x69,0x69,0xfb, + 0xff,0x5f,0x5e,0xfc,0xff,0x54,0x53,0xfe,0xff,0x55,0x54,0xfe,0xff,0x4e,0x4e,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x59,0x58,0xfd,0xff,0x64,0x64,0xfb,0xff,0x69,0x69,0xfb, + 0xff,0x71,0x71,0xf8,0xff,0x68,0x68,0xfc,0xff,0x77,0x77,0xf6,0xff,0x7f,0x7f,0xf4, + 0xff,0x7f,0x7f,0xf4,0xff,0x77,0x77,0xf7,0xff,0x7f,0x7f,0xf5,0xff,0x7f,0x7f,0xf4, + 0xff,0x77,0x77,0xf6,0xff,0x68,0x68,0xfc,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x57,0x56,0xfd,0xff,0x59,0x58,0xfd,0xff,0x55,0x54,0xfe,0xff,0x42,0x42,0xfc, + 0xff,0x3f,0x3e,0xfd,0xff,0x27,0x25,0xf7,0xff,0xd,0xa,0xf5,0xff,0x9,0x7,0xd2, + 0xff,0x6b,0x6b,0x56,0xff,0xc4,0xc3,0x1,0xff,0xd5,0xd4,0x0,0xff,0xd1,0xd0,0x0, + 0xff,0xd5,0xd6,0x0,0xff,0xd5,0xd5,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdb,0xdb,0x5, + 0xff,0xe1,0xe0,0x4,0xff,0xe9,0xe8,0x9,0xff,0xf8,0xf8,0x13,0xff,0xf7,0xf7,0x12, + 0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x13,0xff,0xf0,0xf0,0xf,0xff,0xe2,0xe1,0x5, + 0xff,0xdf,0xde,0x4,0xff,0xcf,0xcf,0x0,0xff,0xbd,0xbf,0x0,0xff,0xbd,0xbf,0x0, + 0xff,0xb9,0xba,0x1,0xff,0xb4,0xb4,0x2,0xff,0xae,0xae,0x1,0xff,0xa1,0xa0,0x0, + 0xff,0x8d,0x8d,0x0,0xff,0x7b,0x7d,0x0,0xff,0x69,0x69,0x1,0xff,0x8c,0x8c,0x74, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0xbf,0x77,0x77,0xf6,0xff,0x6a,0x6a,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x48,0x48,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x59,0x58,0xfd,0xff,0x49,0x48,0xe0,0xff,0x78,0x78,0xf6, + 0xff,0x77,0x77,0xf6,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf3,0xff,0x76,0x8f,0xd8, + 0xff,0x49,0x67,0xa1,0xff,0x44,0x71,0x93,0xff,0x51,0x74,0xa0,0xff,0x6e,0x80,0xc3, + 0xff,0x7f,0x7f,0xf5,0xff,0x7f,0x7f,0xf4,0xff,0x67,0x67,0xfc,0xff,0x6a,0x6a,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x57,0x56,0xfd,0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x38,0x37,0xfb,0xff,0x13,0x10,0xf5,0xff,0x6,0x4,0xf6, + 0xff,0x16,0x15,0xb0,0xff,0xaa,0xaa,0x2d,0xff,0xdd,0xdc,0x0,0xff,0xd4,0xd4,0x0, + 0xff,0xcf,0xcf,0x0,0xff,0xd5,0xd4,0x0,0xff,0xda,0xd9,0x0,0xff,0xf1,0xf1,0xe, + 0xff,0xf1,0xf1,0xe,0xff,0xc2,0xd8,0x41,0xff,0x93,0xbc,0x45,0xff,0x7c,0xa6,0x33, + 0xff,0x7e,0x92,0x1f,0xff,0xa0,0xb4,0x32,0xff,0xeb,0xef,0x23,0xff,0xf8,0xf8,0x13, + 0xff,0xf0,0xf0,0xf,0xff,0xd8,0xd8,0x0,0xff,0xd3,0xd2,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xbd,0xbf,0x0,0xff,0xb4,0xb3,0x2,0xff,0xae,0xad,0x1,0xff,0xae,0xad,0x1, + 0xff,0xa1,0xa0,0x0,0xff,0x86,0x87,0x0,0xff,0x74,0x75,0x0,0xff,0x55,0x55,0x16, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x49,0x48,0xfd,0xff,0x44,0x43,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x5b,0x5b,0xdc,0xff,0x7f,0x7f,0xf5, + 0xff,0x87,0x87,0xf2,0xff,0x6f,0x95,0xe0,0xff,0x1a,0x6d,0x79,0xff,0x0,0x66,0x66, + 0xff,0x0,0x27,0x27,0xff,0x0,0x25,0x25,0xff,0x0,0x27,0x27,0xff,0x0,0x33,0x33, + 0xff,0x1a,0x4a,0x56,0xff,0x60,0x79,0xc4,0xff,0x7f,0x7f,0xf5,0xff,0x6f,0x6f,0xf9, + 0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb,0xff,0x57,0x56,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x48,0x48,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x28,0x26,0xf7,0xff,0x6,0x3,0xf5, + 0xff,0x5,0x3,0xe3,0xff,0x43,0x44,0x79,0xff,0xd9,0xd8,0x1,0xff,0xc1,0xc1,0x0, + 0xff,0xbb,0xbb,0x0,0xff,0xce,0xcf,0x0,0xff,0xe4,0xe3,0x5,0xff,0xb5,0xc3,0x30, + 0xff,0x33,0x8b,0x75,0xff,0x0,0x6a,0x6a,0xff,0x0,0x55,0x55,0xff,0x0,0x57,0x57, + 0xff,0x0,0x57,0x57,0xff,0x0,0x56,0x56,0xff,0x8,0x48,0x47,0xff,0x6b,0x8f,0x41, + 0xff,0xec,0xef,0x21,0xff,0xf9,0xf9,0x14,0xff,0xda,0xd9,0x0,0xff,0xdd,0xdc,0x0, + 0xff,0xce,0xcf,0x0,0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xae,0xad,0x1, + 0xff,0xa1,0xa0,0x0,0xff,0x8d,0x8d,0x0,0xff,0x7c,0x7e,0x0,0xff,0x59,0x59,0x3, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7e,0x7e,0x7e, + 0xff,0x8e,0x8e,0x8e,0xff,0xaf,0xaf,0xaf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xf5,0xff,0x6a,0x6a,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x44,0x43,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x36,0x35,0xfa,0xff,0x3f,0x3e,0xe9,0xff,0x3f,0x3f,0xc2,0xff,0x68,0x68,0xba, + 0xff,0x56,0x97,0xc5,0xff,0x7,0x90,0x8f,0xff,0x0,0x77,0x77,0xff,0x0,0x54,0x54, + 0xff,0x0,0x49,0x49,0xff,0x0,0x57,0x57,0xff,0x0,0x57,0x57,0xff,0x0,0x4a,0x4a, + 0xff,0x0,0x3e,0x3e,0xff,0x2,0x3d,0x3d,0xff,0x44,0x69,0x98,0xff,0x87,0x87,0xf2, + 0xff,0x77,0x77,0xf6,0xff,0x6a,0x6a,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x4e,0x4e,0xfd,0xff,0x3e,0x3d,0xfc,0xff,0x30,0x2e,0xf9,0xff,0xd,0xa,0xf5, + 0xff,0x6,0x3,0xf5,0xff,0xa,0x8,0xb7,0xff,0x72,0x73,0x3a,0xff,0x82,0x83,0x6, + 0xff,0x7d,0x7c,0x1,0xff,0xb1,0xb1,0x0,0xff,0x89,0xb1,0x56,0xff,0x8,0x83,0x83, + 0xff,0x0,0x8e,0x8e,0xff,0x0,0x6c,0x6c,0xff,0x0,0x56,0x56,0xff,0x0,0x57,0x57, + 0xff,0x0,0x57,0x57,0xff,0x0,0x57,0x57,0xff,0x0,0x58,0x58,0xff,0x0,0x56,0x56, + 0xff,0x34,0x63,0x4e,0xff,0xe3,0xe9,0x26,0xff,0xf1,0xf1,0xf,0xff,0xda,0xd9,0x0, + 0xff,0xce,0xce,0x0,0xff,0xc5,0xc6,0x0,0xff,0xb8,0xb8,0x1,0xff,0xad,0xad,0x1, + 0xff,0xa8,0xa7,0x1,0xff,0x94,0x93,0x0,0xff,0x80,0x82,0x0,0xff,0x65,0x66,0x2, + 0xff,0x61,0x61,0x35,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x3f,0x77,0x77,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x4a,0x49,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x2f,0x2e,0xf9,0xff,0x38,0x38,0xe0,0xff,0x48,0x48,0xb6,0xff,0x51,0x7a,0xa5, + 0xff,0x3,0xc2,0xc2,0xff,0x0,0x5d,0x5d,0xff,0x0,0x7d,0x7d,0xff,0x0,0x71,0x71, + 0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x72,0x72, + 0xff,0x0,0x56,0x56,0xff,0x0,0x58,0x58,0xff,0x0,0x2c,0x2c,0xff,0x67,0x88,0xc6, + 0xff,0x87,0x87,0xf2,0xff,0x6f,0x6f,0xf9,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd,0xff,0x41,0x40,0xfd,0xff,0x12,0xf,0xf5, + 0xff,0x6,0x3,0xf5,0xff,0x5,0x3,0xe4,0xff,0x2d,0x2d,0x6c,0xff,0x6a,0x6b,0xd, + 0xff,0x59,0x59,0x2,0xff,0x6d,0x84,0x4c,0xff,0xf,0xab,0xaa,0xff,0x0,0xad,0xad, + 0xff,0x0,0x7c,0x7c,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71, + 0xff,0x0,0x71,0x71,0xff,0x0,0x72,0x72,0xff,0x0,0x55,0x55,0xff,0x0,0x58,0x58, + 0xff,0x0,0x3d,0x3d,0xff,0x2f,0x6b,0x5c,0xff,0xf1,0xf1,0xd,0xff,0xe9,0xe9,0x9, + 0xff,0xdc,0xdb,0x0,0xff,0xd0,0xd0,0x0,0xff,0xbb,0xbc,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xae,0xad,0x1,0xff,0x9c,0x9a,0x0,0xff,0x80,0x82,0x0,0xff,0x68,0x68,0x1, + 0xff,0x5a,0x5a,0x29,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x60,0x60,0x60,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0x7f,0x78,0x78,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x4f,0x4e,0xfd,0xff,0x44,0x43,0xfd,0xff,0x41,0x40,0xfd,0xff,0x31,0x2f,0xf9, + 0xff,0x17,0x15,0xe3,0xff,0x30,0x2f,0xc2,0xff,0x34,0x35,0x90,0xff,0x1a,0xa9,0xa8, + 0xff,0x0,0xb5,0xb5,0xff,0x0,0x8d,0x8d,0xff,0x0,0xab,0xab,0xff,0x0,0xab,0xab, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x8d,0x8d, + 0xff,0x0,0x6f,0x6f,0xff,0x0,0x55,0x55,0xff,0x0,0x4a,0x4a,0xff,0x14,0x4a,0x4b, + 0xff,0x85,0x87,0xe9,0xff,0x87,0x87,0xf1,0xff,0x69,0x69,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x59,0x58,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x3f,0x3f,0xfc,0xff,0x28,0x26,0xf7, + 0xff,0x6,0x3,0xf5,0xff,0x7,0x4,0xf6,0xff,0xe,0xe,0x89,0xff,0x6a,0x6c,0xd, + 0xff,0x53,0x53,0x2,0xff,0x2a,0xa6,0x9a,0xff,0x0,0xd3,0xd3,0xff,0x0,0x8d,0x8d, + 0xff,0x0,0x8d,0x8d,0xff,0x0,0xab,0xab,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab,0xff,0x0,0x8d,0x8d,0xff,0x0,0x53,0x53, + 0xff,0x0,0x57,0x57,0xff,0x0,0x3c,0x3c,0xff,0x96,0xb6,0x44,0xff,0xf1,0xf1,0xd, + 0xff,0xda,0xd9,0x0,0xff,0xd6,0xd6,0x0,0xff,0xca,0xcb,0x0,0xff,0xb4,0xb4,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0x9c,0x9a,0x0,0xff,0x7f,0x81,0x1,0xff,0x79,0x7a,0x0, + 0xff,0x53,0x53,0x5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0, + 0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0x7f,0x70,0x70,0xf8,0xff,0x6b,0x6b,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4a,0x49,0xfd,0xff,0x45,0x44,0xfd,0xff,0x41,0x40,0xfd,0xff,0x20,0x1d,0xf5, + 0xff,0x29,0x28,0xf8,0xff,0xa,0x9,0x9d,0xff,0x1d,0x2d,0x5b,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab,0xff,0x0,0x55,0x55,0xff,0x0,0x31,0x31, + 0xff,0x6d,0x85,0xbb,0xff,0x87,0x87,0xf3,0xff,0x77,0x77,0xf6,0xff,0x69,0x69,0xfb, + 0xff,0x5e,0x5d,0xfc,0xff,0x54,0x53,0xfe,0xff,0x44,0x44,0xfc,0xff,0x30,0x2e,0xf9, + 0xff,0xd,0xa,0xf5,0xff,0x6,0x3,0xf5,0xff,0xe,0xe,0x89,0xff,0x6a,0x6c,0xd, + 0xff,0x57,0x69,0x3c,0xff,0x0,0xab,0xab,0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0x70,0x70,0xff,0x0,0x4a,0x4a,0xff,0x2a,0x63,0x5e,0xff,0xf8,0xf8,0x12, + 0xff,0xe9,0xe9,0xa,0xff,0xdd,0xdc,0x0,0xff,0xcf,0xd0,0x0,0xff,0xb7,0xb7,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0x9b,0x99,0x0,0xff,0x86,0x87,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x54,0x54,0x5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30, + 0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0x7f,0x69,0x69,0xfb,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4a,0x49,0xfd,0xff,0x40,0x3e,0xfd,0xff,0x38,0x37,0xfb,0xff,0x21,0x1f,0xf6, + 0xff,0xa,0x8,0xd1,0xff,0xb,0xa,0x9d,0xff,0x1f,0x4e,0x6f,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70,0xff,0x0,0x49,0x49, + 0xff,0x50,0x80,0xab,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf1,0xff,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x59,0x58,0xfd,0xff,0x49,0x49,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x14,0x11,0xf5,0xff,0x5,0x3,0xf5,0xff,0xe,0xe,0x89,0xff,0x6a,0x6c,0xd, + 0xff,0x3a,0x57,0x2b,0xff,0x0,0x8b,0x8b,0xff,0x0,0xde,0xde,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xab,0xab,0xff,0x0,0x54,0x54,0xff,0x18,0x69,0x68,0xff,0xe9,0xe9,0x8, + 0xff,0xe8,0xe8,0x9,0xff,0xdc,0xdb,0x0,0xff,0xcf,0xd0,0x0,0xff,0xbb,0xbc,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xa1,0xa0,0x0,0xff,0x89,0x89,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x53,0x53,0x5,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x77,0x77,0xf7,0x7f,0x6a,0x6a,0xfb,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4a,0x49,0xfd,0xff,0x45,0x43,0xfd,0xff,0x41,0x40,0xfd,0xff,0x1a,0x17,0xf6, + 0xff,0xa,0x8,0xd2,0xff,0xb,0xa,0x9d,0xff,0x10,0x47,0x69,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xc6,0xc6,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd4,0xd4, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xab,0xab,0xff,0x0,0x54,0x54, + 0xff,0x46,0x6f,0xa4,0xff,0x87,0x87,0xf2,0xff,0x7f,0x7f,0xf4,0xff,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x4e,0x4e,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x13,0x10,0xf5,0xff,0x6,0x4,0xf5,0xff,0xe,0xe,0x89,0xff,0x82,0x84,0x18, + 0xff,0x2b,0x57,0x2e,0xff,0x0,0x93,0x93,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde, + 0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xdf,0xdf,0xff,0x0,0xc7,0xc7, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70,0xff,0x1,0x5c,0x5c,0xff,0xe9,0xe9,0x8, + 0xff,0xf0,0xf0,0xf,0xff,0xdc,0xdb,0x0,0xff,0xcf,0xd0,0x0,0xff,0xbb,0xbc,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0x9b,0x99,0x0,0xff,0x82,0x82,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x53,0x53,0x4,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x77,0x77,0xf6,0x7f,0x71,0x71,0xf8,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x44,0x43,0xfd,0xff,0x41,0x40,0xfd,0xff,0x21,0x1e,0xf6, + 0xff,0x4,0x2,0xe3,0xff,0x1,0x0,0xaf,0xff,0x17,0x29,0x58,0xff,0x0,0x98,0x98, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xde,0xde,0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70, + 0xff,0x5b,0x75,0xa1,0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf7,0xff,0x69,0x69,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x55,0x54,0xfe,0xff,0x3f,0x3f,0xfd, + 0xff,0x19,0x16,0xf5,0xff,0x6,0x4,0xf5,0xff,0xe,0xe,0x89,0xff,0x82,0x84,0x18, + 0xff,0x3a,0x57,0x2b,0xff,0x0,0x52,0x52,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde, + 0xff,0x0,0xdf,0xdf,0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9,0xff,0x0,0xd4,0xd4, + 0xff,0x0,0xc7,0xc7,0xff,0x0,0xd4,0xd4,0xff,0x0,0xc6,0xc6,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xc8,0xc8,0xff,0x0,0xab,0xab,0xff,0x1a,0x78,0x78,0xff,0xe9,0xe9,0x8, + 0xff,0xf1,0xf1,0xf,0xff,0xdc,0xdb,0x0,0xff,0xd6,0xd6,0x0,0xff,0xb7,0xb7,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0x9c,0x9a,0x0,0xff,0x7f,0x81,0x1,0xff,0x79,0x7a,0x0, + 0xff,0x52,0x52,0x4,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0, + 0xff,0xaf,0xaf,0xaf,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf2,0x7f,0x70,0x70,0xf8,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x41,0x40,0xfd,0xff,0x27,0x26,0xf7, + 0xff,0x13,0x11,0xf6,0xff,0x2,0x0,0xc0,0xff,0xf,0x12,0x6c,0xff,0x1,0x69,0x69, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xdd,0xdd,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc6,0xc6,0xff,0x0,0xd3,0xd3,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xde,0xde,0xff,0x0,0xde,0xde,0xff,0x0,0xc8,0xc8,0xff,0x5,0x9a,0x99, + 0xff,0x79,0x82,0xbe,0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf7,0xff,0x6a,0x6a,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x5e,0x5e,0xfc,0xff,0x4e,0x4d,0xfd,0xff,0x45,0x44,0xfd, + 0xff,0x1a,0x18,0xf7,0xff,0x6,0x4,0xf5,0xff,0xe,0xe,0x89,0xff,0x82,0x84,0x18, + 0xff,0x51,0x59,0x1b,0xff,0x0,0x45,0x45,0xff,0x0,0xc1,0xc1,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xea,0xea,0xff,0x0,0xdd,0xdd,0xff,0x0,0xc6,0xc6,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc6,0xc6,0xff,0x0,0xde,0xde,0xff,0x0,0xde,0xde, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x4c,0x99,0x7e,0xff,0xe2,0xe2,0x5, + 0xff,0xda,0xd9,0x0,0xff,0xdc,0xdb,0x0,0xff,0xc9,0xca,0x0,0xff,0xbc,0xbd,0x1, + 0xff,0xae,0xad,0x1,0xff,0x9c,0x9a,0x0,0xff,0x80,0x82,0x0,0xff,0x6c,0x6d,0x1, + 0xff,0x64,0x65,0x27,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x8e,0x8e,0x8e,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30, + 0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x7f,0x7f,0x7f,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0x7f,0x70,0x70,0xf8,0xff,0x65,0x64,0xfb,0xff,0x59,0x58,0xfd, + 0xff,0x5a,0x59,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x3e,0x3e,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0xb,0x8,0xe3,0xff,0xc,0xa,0xe5,0xff,0x5,0x5,0xa6,0xff,0xd,0x32,0x41, + 0xff,0x0,0xb6,0xb6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xe9,0xe9,0xff,0x0,0xea,0xea,0xff,0x0,0xdd,0xdd,0xff,0x0,0xd1,0xd1, + 0xff,0x0,0xea,0xea,0xff,0x0,0xdd,0xdd,0xff,0x0,0xdf,0xdf,0xff,0x31,0x63,0x65, + 0xff,0x86,0x86,0xf3,0xff,0x7f,0x7f,0xf4,0xff,0x68,0x68,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x64,0x64,0xfb,0xff,0x65,0x64,0xfb,0xff,0x55,0x54,0xfe,0xff,0x40,0x3f,0xfd, + 0xff,0x13,0x10,0xf5,0xff,0x5,0x3,0xf5,0xff,0xf,0xf,0x88,0xff,0x82,0x84,0x18, + 0xff,0x6a,0x6c,0xe,0xff,0x1a,0x4c,0x41,0xff,0x0,0x67,0x67,0xff,0x0,0xea,0xea, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xdd,0xdd, + 0xff,0x0,0xdd,0xdd,0xff,0x0,0xde,0xde,0xff,0x0,0xe9,0xe9,0xff,0x0,0xea,0xea, + 0xff,0x0,0xdd,0xdd,0xff,0x0,0x98,0x98,0xff,0x97,0xac,0x3e,0xff,0xdb,0xda,0x0, + 0xff,0xd4,0xd4,0x0,0xff,0xd6,0xd6,0x0,0xff,0xc2,0xc4,0x0,0xff,0xb4,0xb4,0x2, + 0xff,0xa7,0xa6,0x1,0xff,0x9c,0x9a,0x0,0xff,0x80,0x82,0x0,0xff,0x65,0x66,0x2, + 0xff,0x71,0x71,0x45,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x30,0x30,0x30,0xff,0xc0,0xc0,0xc0,0xff,0xaf,0xaf,0xaf,0xff,0x0,0x0,0x0, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x77,0xf6,0xff,0x64,0x64,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x44,0x43,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x22,0x20,0xf7,0xff,0xc,0x9,0xf6,0xff,0x4,0x2,0xd2,0xff,0xf,0x11,0x6c, + 0xff,0x3,0x58,0x58,0xff,0x0,0xcd,0xcd,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xdc,0xdc,0xff,0x0,0xea,0xea,0xff,0x17,0x99,0x99,0xff,0x71,0x75,0xa6, + 0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x64,0x64,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x4e,0x4e,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x5,0x2,0xf5,0xff,0x7,0x4,0xf6,0xff,0x1f,0x20,0x76,0xff,0x82,0x84,0x19, + 0xff,0x6a,0x6b,0xf,0xff,0x4a,0x57,0x21,0xff,0x8,0x2d,0x2d,0xff,0x0,0x98,0x98, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xe9,0xe9,0xff,0x0,0xe9,0xe9, + 0xff,0x0,0xd5,0xd5,0xff,0x3a,0x72,0x73,0xff,0xcf,0xcf,0x2f,0xff,0xd5,0xd5,0x0, + 0xff,0xce,0xce,0x0,0xff,0xc9,0xca,0x0,0xff,0xbb,0xbc,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xa8,0xa7,0x1,0xff,0x9c,0x9a,0x0,0xff,0x7b,0x7d,0x0,0xff,0x61,0x61,0x2, + 0xff,0xa7,0xa7,0xa2,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf,0xbf,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe7,0xff,0x69,0x69,0xfb,0xff,0x65,0x64,0xfb, + 0xff,0x5f,0x5e,0xfc,0xff,0x59,0x58,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x3f,0x3f,0xfc, + 0xff,0x27,0x25,0xf7,0xff,0x1a,0x17,0xf5,0xff,0xd,0xa,0xf6,0xff,0x8,0x6,0xb7, + 0xff,0x15,0x18,0x54,0xff,0x8,0x35,0x36,0xff,0x0,0x8e,0x8e,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xea,0xea, + 0xff,0x0,0xdf,0xdf,0xff,0x23,0x90,0x8f,0xff,0x69,0x70,0x84,0xff,0x69,0x69,0xce, + 0xff,0x7f,0x7f,0xf4,0xff,0x69,0x69,0xfb,0xff,0x5e,0x5e,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x59,0x58,0xfd,0xff,0x53,0x52,0xfe,0xff,0x43,0x43,0xfc,0xff,0x21,0x1f,0xf7, + 0xff,0x6,0x3,0xf5,0xff,0x5,0x3,0xe4,0xff,0x4c,0x4d,0x51,0xff,0x81,0x83,0x19, + 0xff,0x78,0x7a,0x8,0xff,0x59,0x59,0x3,0xff,0x3f,0x52,0x29,0xff,0x8,0x27,0x26, + 0xff,0x0,0x68,0x68,0xff,0x0,0xb6,0xb6,0xff,0x0,0xdf,0xdf,0xff,0x0,0xea,0xea, + 0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xea,0xea,0xff,0x0,0xb7,0xb7, + 0xff,0x2d,0x7e,0x7f,0xff,0x9b,0xa2,0x47,0xff,0xc1,0xc3,0x0,0xff,0xcf,0xcf,0x0, + 0xff,0xc4,0xc4,0x0,0xff,0xbf,0xc0,0x0,0xff,0xb7,0xb8,0x1,0xff,0xb5,0xb5,0x2, + 0xff,0xa1,0xa0,0x0,0xff,0x94,0x93,0x0,0xff,0x83,0x84,0x0,0xff,0x5d,0x5e,0x3, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x5f,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xbf,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7b,0x7b,0xf5,0xbf,0x6a,0x6a,0xf9,0xff,0x64,0x64,0xfb, + 0xff,0x65,0x64,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x54,0x53,0xfe,0xff,0x42,0x42,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x28,0x26,0xf7,0xff,0xc,0xa,0xf5,0xff,0x5,0x2,0xe4, + 0xff,0x6,0x5,0xa5,0xff,0x19,0x1a,0x58,0xff,0x1a,0x2b,0x3e,0xff,0x4,0x25,0x28, + 0xff,0x2,0x58,0x58,0xff,0x0,0x70,0x70,0xff,0x7,0x82,0x81,0xff,0x15,0x66,0x66, + 0xff,0x2e,0x46,0x52,0xff,0x39,0x3a,0x58,0xff,0x4f,0x4f,0xb5,0xff,0x4d,0x4d,0xbe, + 0xff,0x5f,0x5e,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x4d,0x4c,0xfd,0xff,0x55,0x54,0xfe, + 0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x13,0x10,0xf5, + 0xff,0x5,0x2,0xf5,0xff,0x16,0x15,0xc7,0xff,0x75,0x77,0x25,0xff,0x86,0x87,0x11, + 0xff,0x7c,0x7e,0x0,0xff,0x74,0x75,0x0,0xff,0x59,0x59,0x3,0xff,0x4b,0x57,0x2b, + 0xff,0x1b,0x44,0x39,0xff,0x0,0x23,0x23,0xff,0x0,0x2e,0x2e,0xff,0x0,0x6f,0x6f, + 0xff,0x0,0x7b,0x7b,0xff,0x0,0x81,0x81,0xff,0x8,0x4e,0x4e,0xff,0x3d,0x64,0x53, + 0xff,0x81,0x84,0x3d,0xff,0xaa,0xaa,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc5,0xc5,0x0, + 0xff,0xbb,0xbc,0x1,0xff,0xb7,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xa1,0xa0,0x0,0xff,0x95,0x94,0x0,0xff,0x73,0x74,0x0,0xff,0xb4,0xb5,0x80, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x5f,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x7f,0x77,0x77,0xf6,0xff,0x6a,0x6a,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x58,0x57,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x3e,0x3d,0xfd,0xff,0x30,0x2e,0xf9,0xff,0x1a,0x17,0xf5,0xff,0x13,0x11,0xf5, + 0xff,0xd,0xa,0xf7,0xff,0x2,0x0,0xc1,0xff,0xa,0xa,0x9d,0xff,0x18,0x18,0x74, + 0xff,0x1e,0x1f,0x45,0xff,0x16,0x16,0x3c,0xff,0x19,0x19,0x41,0xff,0x1c,0x1d,0x5f, + 0xff,0x18,0x18,0x77,0xff,0x17,0x18,0x76,0xff,0x46,0x46,0xc0,0xff,0x3f,0x3f,0xc2, + 0xff,0x55,0x54,0xfe,0xff,0x4e,0x4d,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x4e,0x4e,0xfd,0xff,0x44,0x44,0xfd,0xff,0x28,0x26,0xf7,0xff,0x5,0x2,0xf5, + 0xff,0xa,0x7,0xf5,0xff,0x51,0x52,0x78,0xff,0xbf,0xc1,0x0,0xff,0xa9,0xa9,0x0, + 0xff,0x85,0x87,0x0,0xff,0x7b,0x7c,0x0,0xff,0x74,0x74,0x0,0xff,0x69,0x69,0x1, + 0xff,0x52,0x52,0x4,0xff,0x4b,0x52,0x17,0xff,0x33,0x45,0x1c,0xff,0x29,0x36,0xe, + 0xff,0x32,0x3d,0xe,0xff,0x3f,0x4b,0x1c,0xff,0x6b,0x6d,0x7,0xff,0x7c,0x7e,0x0, + 0xff,0x8d,0x8d,0x0,0xff,0xae,0xae,0x1,0xff,0xb3,0xb2,0x2,0xff,0xb3,0xb3,0x2, + 0xff,0xb3,0xb3,0x2,0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2, + 0xff,0xa1,0xa0,0x0,0xff,0x8e,0x8e,0x0,0xff,0x60,0x60,0x2,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb,0xff,0x7f,0xdb,0xdb, + 0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x60,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0xe9,0xff,0x70,0x70,0xf9, + 0xff,0x6a,0x6a,0xfb,0xff,0x72,0x72,0xf8,0xff,0x6b,0x6b,0xfb,0xff,0x53,0x52,0xfe, + 0xff,0x42,0x42,0xfc,0xff,0x3f,0x3f,0xfd,0xff,0x30,0x2e,0xf9,0xff,0x20,0x1e,0xf5, + 0xff,0x13,0x11,0xf5,0xff,0xc,0x9,0xf5,0xff,0x1a,0x18,0xf7,0xff,0x11,0xf,0xd3, + 0xff,0x19,0x18,0xd5,0xff,0xb,0xa,0x9c,0xff,0xa,0xa,0x9d,0xff,0x1a,0x1a,0xb0, + 0xff,0x1a,0x1a,0xb0,0xff,0x1a,0x1a,0xaf,0xff,0x25,0x24,0xcc,0xff,0x2d,0x2c,0xe7, + 0xff,0x3e,0x3e,0xfd,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x55,0x54,0xfe, + 0xff,0x43,0x42,0xfc,0xff,0x37,0x36,0xfb,0xff,0x12,0x10,0xf5,0xff,0x6,0x3,0xf5, + 0xff,0x9,0x6,0xe4,0xff,0x94,0x96,0x28,0xff,0xbe,0xc0,0x0,0xff,0xae,0xaf,0x1, + 0xff,0x8f,0x90,0x0,0xff,0x7f,0x81,0x0,0xff,0x80,0x81,0x1,0xff,0x77,0x78,0x0, + 0xff,0x70,0x70,0x0,0xff,0x69,0x69,0x1,0xff,0x62,0x62,0x2,0xff,0x61,0x61,0x2, + 0xff,0x75,0x75,0x0,0xff,0x74,0x74,0x0,0xff,0x7b,0x7d,0x0,0xff,0x86,0x87,0x0, + 0xff,0x94,0x93,0x0,0xff,0x99,0x97,0x0,0xff,0xae,0xad,0x1,0xff,0xa6,0xa5,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb8,0x1, + 0xff,0xa1,0xa0,0x0,0xff,0x82,0x83,0x0,0xff,0x7d,0x7e,0x0,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x8f,0x8f,0x8f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x3f,0x40,0x40,0xff,0x3f,0x40,0x40,0xff,0x3f,0x3f,0x3f,0xff,0x30,0x30,0x30, + 0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x7f,0x86,0x86,0xf2, + 0xff,0x70,0x70,0xf8,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x58,0x57,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x42,0x42,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x27,0x25,0xf7,0xff,0x21,0x1f,0xf5,0xff,0x13,0x10,0xf5,0xff,0xc,0x9,0xf5, + 0xff,0x5,0x2,0xf5,0xff,0xc,0xa,0xf6,0xff,0x13,0x11,0xf6,0xff,0x13,0x11,0xf6, + 0xff,0x13,0x11,0xf6,0xff,0x21,0x1f,0xf6,0xff,0x20,0x1e,0xf6,0xff,0x30,0x2e,0xf9, + 0xff,0x37,0x36,0xfb,0xff,0x3e,0x3e,0xfc,0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd, + 0xff,0x3f,0x3f,0xfc,0xff,0x28,0x26,0xf7,0xff,0x6,0x3,0xf5,0xff,0x5,0x2,0xf5, + 0xff,0x52,0x52,0x7c,0xff,0xc2,0xc4,0x0,0xff,0xbf,0xc1,0x0,0xff,0xba,0xbb,0x0, + 0xff,0xb0,0xb0,0x0,0xff,0xac,0xac,0x0,0xff,0x99,0x9a,0x1,0xff,0x94,0x94,0x1, + 0xff,0x8e,0x8e,0x0,0xff,0x7a,0x7b,0x0,0xff,0x77,0x78,0x0,0xff,0x7b,0x7d,0x0, + 0xff,0x7b,0x7c,0x0,0xff,0x7f,0x81,0x1,0xff,0x85,0x86,0x0,0xff,0x8d,0x8d,0x0, + 0xff,0x93,0x92,0x0,0xff,0x99,0x98,0x0,0xff,0xa7,0xa6,0x1,0xff,0xac,0xac,0x1, + 0xff,0xb7,0xb8,0x1,0xff,0xb7,0xb7,0x1,0xff,0xbf,0xc1,0x0,0xff,0xb8,0xb8,0x1, + 0xff,0xa7,0xa6,0x1,0xff,0x8d,0x8d,0x0,0xff,0x20,0xab,0x8a,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0x30,0x30,0x30,0xff,0x6f,0x70,0x70, + 0xff,0xb0,0xb0,0xb0,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x7f,0x7f,0xff,0x5f,0x5f,0x5f, + 0xff,0x1f,0x20,0x20,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf3, + 0x7f,0x86,0x86,0xf2,0xff,0x70,0x70,0xf8,0xff,0x6a,0x6a,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd, + 0xff,0x3f,0x3e,0xfc,0xff,0x38,0x37,0xfb,0xff,0x38,0x37,0xfb,0xff,0x30,0x2f,0xf9, + 0xff,0x29,0x26,0xf7,0xff,0x1a,0x18,0xf7,0xff,0x1a,0x18,0xf7,0xff,0x21,0x1f,0xf7, + 0xff,0x2a,0x28,0xf9,0xff,0x30,0x2e,0xf9,0xff,0x38,0x37,0xfb,0xff,0x3f,0x3e,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x3d,0x3d,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x1a,0x17,0xf5,0xff,0x6,0x3,0xf5,0xff,0xb,0x8,0xe5, + 0xff,0xaa,0xac,0x12,0xff,0xc1,0xc3,0x0,0xff,0xc1,0xc3,0x0,0xff,0xc5,0xc7,0x0, + 0xff,0xbe,0xc0,0x0,0xff,0xb5,0xb6,0x1,0xff,0xb6,0xb7,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0xa8,0xa7,0x1,0xff,0xa0,0xa0,0x1,0xff,0x9b,0x99,0x0, + 0xff,0x94,0x93,0x0,0xff,0x94,0x93,0x0,0xff,0x99,0x99,0x0,0xff,0xa8,0xa7,0x1, + 0xff,0xae,0xad,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb2,0xb2,0x2, + 0xff,0xba,0xbb,0x1,0xff,0xbe,0xc0,0x0,0xff,0xc2,0xc4,0x0,0xff,0xc5,0xc5,0x0, + 0xff,0xd2,0xd3,0x4,0xff,0x9c,0xc9,0x32,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xde,0xde,0xde,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x6f,0x6f,0x6f,0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf3,0xff,0x7f,0x7f,0xf4,0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x42,0x42,0xfc,0xff,0x43,0x42,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd, + 0xff,0x45,0x44,0xfd,0xff,0x3f,0x3f,0xfc,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x3d,0x3d,0xfc,0xff,0x48,0x48,0xfd,0xff,0x3d,0x3d,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x43,0x42,0xfd,0xff,0x43,0x43,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x38,0x37,0xfb,0xff,0x21,0x1e,0xf6,0xff,0xc,0x9,0xf5,0xff,0x42,0x41,0x92, + 0xff,0xd1,0xd2,0x5,0xff,0xcf,0xcf,0x0,0xff,0xd9,0xd8,0x0,0xff,0xd5,0xd5,0x0, + 0xff,0xce,0xce,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc1,0xc3,0x0,0xff,0xbd,0xbf,0x0, + 0xff,0xb5,0xb6,0x1,0xff,0xbb,0xbc,0x1,0xff,0xb2,0xb2,0x2,0xff,0xb4,0xb4,0x2, + 0xff,0xb8,0xb8,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb7,0xb8,0x1,0xff,0xb3,0xb3,0x2, + 0xff,0xb7,0xb8,0x1,0xff,0xb6,0xb7,0x1,0xff,0xb5,0xb5,0x1,0xff,0xc2,0xc4,0x0, + 0xff,0xc7,0xc8,0x0,0xff,0xd0,0xd0,0x0,0xff,0xdc,0xdb,0x0,0xff,0xe3,0xe2,0x5, + 0xff,0xf7,0xf7,0x12,0xff,0x37,0xc2,0x8a,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xaf,0xaf,0xaf,0xff,0x8e,0x8e,0x8e,0xff,0xb0,0xb0,0xb0,0xff,0x8e,0x8e,0x8e, + 0xff,0x7e,0x7e,0x7e,0xff,0x4f,0x50,0x50,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xe4,0xbf,0x86,0x86,0xf2,0xff,0x69,0x69,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x53,0x52,0xfe,0xff,0x55,0x54,0xfe,0xff,0x3c,0x3c,0xfc,0xff,0x49,0x48,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc,0xff,0x43,0x43,0xfd,0xff,0x43,0x43,0xfd, + 0xff,0x43,0x43,0xfd,0xff,0x42,0x42,0xfc,0xff,0x48,0x48,0xfd,0xff,0x42,0x42,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x43,0x42,0xfc,0xff,0x3d,0x3d,0xfc,0xff,0x41,0x40,0xfd, + 0xff,0x30,0x2e,0xf9,0xff,0x20,0x1d,0xf5,0xff,0x21,0x1f,0xf7,0xff,0x74,0x74,0x8c, + 0xff,0xdc,0xdc,0x1d,0xff,0xf1,0xf1,0xe,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xdb,0xda,0x0,0xff,0xd5,0xd5,0x0,0xff,0xce,0xce,0x0,0xff,0xcf,0xcf,0x0, + 0xff,0xc8,0xc9,0x0,0xff,0xc0,0xc2,0x0,0xff,0xbe,0xbf,0x0,0xff,0xbe,0xc0,0x0, + 0xff,0xb5,0xb6,0x1,0xff,0xb2,0xb2,0x2,0xff,0xb7,0xb7,0x1,0xff,0xb5,0xb6,0x1, + 0xff,0xbd,0xbf,0x0,0xff,0xbc,0xbd,0x0,0xff,0xc8,0xc9,0x0,0xff,0xce,0xcf,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xe3,0xe2,0x5,0xff,0xea,0xe9,0xa,0xff,0xf7,0xf7,0x12, + 0xff,0xba,0xe8,0x3c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xb0,0xb0,0xb0,0xff,0xaf,0xaf,0xaf,0xff,0x9f,0x9f,0x9f, + 0xff,0xb0,0xb0,0xb0,0xff,0x3f,0x3f,0x3f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xe8,0xff,0x78,0x78,0xf6,0xff,0x6a,0x6a,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x55,0x54,0xfe,0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd,0xff,0x3c,0x3c,0xfc, + 0xff,0x43,0x43,0xfd,0xff,0x48,0x48,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x4e,0x4d,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x42,0x42,0xfc,0xff,0x3e,0x3e,0xfc, + 0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7,0xff,0x20,0x1f,0xe6,0xff,0x2,0xab,0xb3, + 0xff,0x3e,0xc9,0x8f,0xff,0xf8,0xf8,0x11,0xff,0xf8,0xf8,0x14,0xff,0xe1,0xe1,0x5, + 0xff,0xe1,0xe1,0x5,0xff,0xda,0xd9,0x0,0xff,0xdb,0xda,0x0,0xff,0xd4,0xd3,0x0, + 0xff,0xd5,0xd5,0x0,0xff,0xcf,0xcf,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc0,0xc2,0x0, + 0xff,0xc0,0xc2,0x0,0xff,0xc0,0xc2,0x0,0xff,0xc7,0xc8,0x0,0xff,0xc7,0xc8,0x0, + 0xff,0xce,0xcf,0x0,0xff,0xd5,0xd5,0x0,0xff,0xdb,0xda,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xe9,0xe9,0xa,0xff,0xf8,0xf8,0x14,0xff,0xf7,0xf7,0x12,0xff,0xba,0xe8,0x3c, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xaf,0xaf,0xaf,0xff,0xb0,0xb0,0xb0, + 0xff,0x9f,0x9f,0x9f,0xff,0x60,0x60,0x60,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xdd, + 0x7f,0x86,0x86,0xf2,0xff,0x69,0x69,0xfb,0xff,0x65,0x64,0xfb,0xff,0x5e,0x5d,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd,0xff,0x4e,0x4d,0xfd, + 0xff,0x59,0x58,0xfd,0xff,0x53,0x52,0xfe,0xff,0x59,0x58,0xfd,0xff,0x59,0x58,0xfd, + 0xff,0x5f,0x5e,0xfc,0xff,0x5f,0x5f,0xfc,0xff,0x58,0x57,0xfd,0xff,0x58,0x57,0xfd, + 0xff,0x52,0x51,0xfe,0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x54,0x53,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x43,0x43,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x27,0x25,0xf7,0xff,0x28,0x26,0xf8,0xff,0x1e,0x93,0xc2, + 0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x8f,0xff,0xba,0xe8,0x3b,0xff,0xf8,0xf8,0x12, + 0xff,0xef,0xef,0xe,0xff,0xe9,0xe9,0xa,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xdb,0xda,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0, + 0xff,0xdc,0xdb,0x0,0xff,0xdc,0xdb,0x0,0xff,0xdb,0xda,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xe9,0xe9,0xa,0xff,0xf8,0xf8,0x13, + 0xff,0xf7,0xf7,0x11,0xff,0xf7,0xf7,0x12,0xff,0x7c,0xd8,0x65,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee,0xff,0xcf,0xcf,0xcf,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x6f,0x6f,0x6f,0xff,0x0,0x0,0x0,0xff,0x60,0x60,0x60,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2, + 0xbf,0x7f,0x7f,0xf4,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x4e,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x55,0x54,0xfe,0xff,0x53,0x52,0xfe, + 0xff,0x57,0x56,0xfd,0xff,0x64,0x64,0xfb,0xff,0x64,0x64,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x64,0x64,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x51,0x50,0xfe,0xff,0x59,0x58,0xfd, + 0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x4e,0x4e,0xfd,0xff,0x42,0x42,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7,0xff,0x0,0x5c,0xb4, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x8f, + 0xff,0xba,0xe8,0x3b,0xff,0xf7,0xf7,0x11,0xff,0xf7,0xf7,0x13,0xff,0xf0,0xf0,0xe, + 0xff,0xe9,0xe8,0xa,0xff,0xe1,0xe1,0x5,0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0, + 0xff,0xda,0xd9,0x0,0xff,0xda,0xd9,0x0,0xff,0xe9,0xe9,0xa,0xff,0xf0,0xf0,0xd, + 0xff,0xef,0xef,0xd,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x11, + 0xff,0x7c,0xd8,0x65,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xee,0xee,0xee,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf, + 0xff,0xdf,0xdf,0xdf,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf2,0x3f,0x85,0x85,0xf2, + 0xff,0x78,0x78,0xf7,0xff,0x65,0x64,0xfb,0xff,0x53,0x52,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x4f,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x54,0x53,0xfe,0xff,0x5e,0x5d,0xfc, + 0xff,0x5e,0x5d,0xfc,0xff,0x64,0x64,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb, + 0xff,0x69,0x69,0xfc,0xff,0x69,0x69,0xfb,0xff,0x69,0x69,0xfc,0xff,0x69,0x69,0xfb, + 0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb,0xff,0x64,0x64,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x52,0x51,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x48,0x48,0xfd,0xff,0x4e,0x4e,0xfd, + 0xff,0x3e,0x3d,0xfd,0xff,0x41,0x40,0xfd,0xff,0x27,0x25,0xf7,0xff,0x45,0x44,0xe9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x7c,0xd8,0x65,0xff,0x7b,0xd8,0x65, + 0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12, + 0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12,0xff,0xf7,0xf7,0x12, + 0xff,0xf7,0xf7,0x11,0xff,0x7b,0xd8,0x65,0xff,0x7c,0xd8,0x65,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xdf,0xdf,0xdf, + 0xff,0xde,0xde,0xde,0xff,0xdf,0xdf,0xdf,0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee, + 0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xf1,0xbf,0x86,0x86,0xf3, + 0xff,0x6a,0x6a,0xfb,0xff,0x59,0x58,0xfd,0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd, + 0xff,0x48,0x48,0xfd,0xff,0x48,0x48,0xfd,0xff,0x54,0x53,0xfe,0xff,0x58,0x57,0xfd, + 0xff,0x64,0x63,0xfb,0xff,0x68,0x68,0xfb,0xff,0x77,0x77,0xf6,0xff,0x7f,0x7f,0xf4, + 0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf2,0xff,0x87,0x87,0xf2, + 0xff,0x77,0x77,0xf7,0xff,0x70,0x70,0xf9,0xff,0x69,0x69,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x52,0x51,0xfe,0xff,0x48,0x48,0xfd,0xff,0x3d,0x3d,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x28,0x26,0xf7,0xff,0x44,0x44,0xfd, + 0xff,0x2,0xab,0xb3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xde,0xde,0xde, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x84,0x84,0xc9,0x3f,0x85,0x85,0xf2,0xff,0x78,0x78,0xf7, + 0xff,0x6b,0x6b,0xfb,0xff,0x4e,0x4d,0xfd,0xff,0x49,0x48,0xfd,0xff,0x42,0x42,0xfc, + 0xff,0x48,0x48,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x4e,0x4d,0xfd,0xff,0x57,0x56,0xfd, + 0xff,0x71,0x71,0xf8,0xff,0x7f,0x7f,0xf4,0xff,0x87,0x87,0xf3,0xff,0x7e,0x7e,0xe0, + 0xff,0x86,0x86,0xdf,0xff,0x60,0x60,0xaa,0xff,0x7b,0x7b,0xc4,0xff,0x6c,0x6c,0xc4, + 0xff,0x86,0x86,0xe9,0xff,0x87,0x87,0xf2,0xff,0x7f,0x7f,0xf3,0xff,0x68,0x68,0xfb, + 0xff,0x64,0x64,0xfb,0xff,0x65,0x64,0xfb,0xff,0x54,0x53,0xfe,0xff,0x3c,0x3c,0xfc, + 0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x29,0x26,0xf8,0xff,0x25,0x24,0xdd, + 0xff,0x35,0x92,0xda,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x85,0x85,0xe4,0xbf,0x86,0x86,0xf2,0xff,0x71,0x71,0xf9, + 0xff,0x5f,0x5e,0xfc,0xff,0x54,0x53,0xfe,0xff,0x43,0x43,0xfd,0xff,0x44,0x44,0xfd, + 0xff,0x3e,0x3e,0xfd,0xff,0x3c,0x3c,0xfc,0xff,0x53,0x52,0xfe,0xff,0x72,0x72,0xf9, + 0xff,0x87,0x87,0xf2,0xff,0x86,0x87,0xe9,0xff,0x65,0x88,0xb4,0xff,0x32,0x74,0x80, + 0xff,0x7,0x2e,0x2e,0xff,0x0,0x26,0x26,0xff,0x7,0x2f,0x2e,0xff,0x1c,0x3b,0x3b, + 0xff,0x39,0x4b,0x6d,0xff,0x5f,0x60,0xa0,0xff,0x87,0x87,0xf3,0xff,0x7f,0x7f,0xf3, + 0xff,0x68,0x68,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x4e,0x4e,0xfd, + 0xff,0x3f,0x3e,0xfd,0xff,0x38,0x37,0xfb,0xff,0x20,0x1d,0xf5,0xff,0x36,0x35,0xfa, + 0xff,0x25,0x71,0xd3,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f,0xff,0x5f,0x5f,0x5f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x84,0x84,0xc9,0x3f,0x85,0x85,0xf2,0xff,0x78,0x78,0xf6,0xff,0x6a,0x6a,0xfb, + 0xff,0x53,0x52,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x3f,0x3e,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x5f,0x5e,0xfc,0xff,0x86,0x86,0xde, + 0xff,0x7c,0x86,0xb5,0xff,0x2b,0x85,0x8f,0xff,0x0,0x77,0x77,0xff,0x0,0x54,0x54, + 0xff,0x0,0x49,0x49,0xff,0x0,0x57,0x57,0xff,0x0,0x57,0x57,0xff,0x0,0x4a,0x4a, + 0xff,0x0,0x3e,0x3e,0xff,0x16,0x46,0x46,0xff,0x72,0x78,0xb6,0xff,0x87,0x87,0xf3, + 0xff,0x7f,0x7f,0xf3,0xff,0x69,0x69,0xfb,0xff,0x5e,0x5d,0xfc,0xff,0x5a,0x59,0xfd, + 0xff,0x3d,0x3d,0xfc,0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7,0xff,0x28,0x26,0xf7, + 0xff,0x1a,0x38,0xbc,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x60,0x60,0x60,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x60,0x60,0x60,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xde,0x7f,0x86,0x86,0xf2,0xff,0x71,0x71,0xf8,0xff,0x65,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x37,0x36,0xfb,0xff,0x4a,0x49,0xfd,0xff,0x62,0x62,0xd0,0xff,0x8a,0x95,0xab, + 0xff,0x1f,0xb7,0xb7,0xff,0x0,0x5d,0x5d,0xff,0x0,0x7d,0x7d,0xff,0x0,0x71,0x71, + 0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x71,0x71,0xff,0x0,0x72,0x72, + 0xff,0x0,0x56,0x56,0xff,0x0,0x58,0x58,0xff,0xe,0x33,0x33,0xff,0x80,0x8a,0xdc, + 0xff,0x87,0x87,0xf2,0xff,0x77,0x77,0xf6,0xff,0x64,0x63,0xfc,0xff,0x58,0x57,0xfd, + 0xff,0x48,0x48,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x28,0x26,0xf7,0xff,0x21,0x1f,0xf6, + 0xff,0x4f,0x4f,0xdf,0xff,0xe,0x6b,0x8d,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0x6f,0x6f,0x6f,0xff,0x0,0x0,0x0,0xff,0x1f,0x20,0x20, + 0xff,0x8f,0x90,0x90,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20, + 0xff,0x0,0x0,0x0,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0x7f,0x7e,0x7e,0xf4,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x2f,0x2e,0xf9,0xff,0x3e,0x3e,0xdf,0xff,0x86,0x86,0xb8,0xff,0x55,0xbb,0xb3, + 0xff,0x0,0xb4,0xb4,0xff,0x0,0x8d,0x8d,0xff,0x0,0xab,0xab,0xff,0x0,0xab,0xab, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x8d,0x8d, + 0xff,0x0,0x6f,0x6f,0xff,0x0,0x55,0x55,0xff,0x0,0x4a,0x4a,0xff,0x3b,0x60,0x70, + 0xff,0x86,0x86,0xe9,0xff,0x87,0x87,0xf1,0xff,0x68,0x68,0xfb,0xff,0x64,0x64,0xfb, + 0xff,0x4e,0x4d,0xfd,0xff,0x3e,0x3d,0xfd,0xff,0x38,0x37,0xfb,0xff,0x1f,0x1d,0xf6, + 0xff,0x40,0x3f,0xf9,0xff,0x36,0x37,0x86,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0x90,0x90,0x90,0xff,0xb0,0xb0,0xb0, + 0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f, + 0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xff,0x90,0x90,0x90,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x85,0x85,0xf2,0xff,0x7f,0x7f,0xf4,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x30,0x2e,0xf9, + 0xff,0x30,0x2e,0xf9,0xff,0x36,0x35,0xc9,0xff,0x79,0x81,0x91,0xff,0xe,0xcc,0xcc, + 0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xab,0xab,0xff,0x0,0x55,0x55,0xff,0x1,0x35,0x34, + 0xff,0x7e,0x8b,0xdc,0xff,0x87,0x87,0xf2,0xff,0x6f,0x6f,0xf9,0xff,0x64,0x63,0xfc, + 0xff,0x5a,0x59,0xfd,0xff,0x3e,0x3d,0xfd,0xff,0x38,0x37,0xfb,0xff,0x28,0x26,0xf7, + 0xff,0x30,0x2f,0xf9,0xff,0x4d,0x4c,0xed,0xff,0x28,0x85,0xa7,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0x9f,0x9f,0x9f,0xff,0x8e,0x8e,0x8e,0xff,0x9f,0x9f,0x9f,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x1f,0x20,0x20,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x86,0xf3,0xff,0x70,0x70,0xf9,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x38,0x37,0xfb,0xff,0x19,0x17,0xf6, + 0xff,0x20,0x1e,0xf7,0xff,0x34,0x34,0xcc,0xff,0x5a,0x82,0x93,0xff,0x0,0xde,0xde, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9,0xff,0x0,0x70,0x70,0xff,0x0,0x49,0x49, + 0xff,0x5f,0x87,0xb0,0xff,0x87,0x87,0xf3,0xff,0x78,0x78,0xf6,0xff,0x64,0x64,0xfb, + 0xff,0x5a,0x59,0xfd,0xff,0x3d,0x3d,0xfc,0xff,0x41,0x40,0xfd,0xff,0x30,0x2f,0xf9, + 0xff,0x29,0x27,0xf8,0xff,0x20,0x1f,0xd1,0xff,0x36,0x37,0x7d,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x8e,0x8e,0x8e,0xff,0x9f,0x9f,0x9f,0xff,0xc1,0xc1,0xc1, + 0xff,0x7f,0x7f,0x7f,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0xff,0x72,0x72,0xf9,0xff,0x65,0x65,0xfb,0xff,0x60,0x5f,0xfc, + 0xff,0x5a,0x59,0xfd,0xff,0x4b,0x4a,0xfd,0xff,0x39,0x38,0xfb,0xff,0x14,0x12,0xf7, + 0xff,0x1b,0x19,0xf7,0xff,0x22,0x22,0x9d,0xff,0x30,0x64,0x68,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xc7,0xc7,0xff,0x0,0xc9,0xc9,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd4,0xd4,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd4,0xd4, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xac,0xac,0xff,0x0,0x57,0x57, + 0xff,0x43,0x70,0x93,0xff,0x87,0x87,0xf4,0xff,0x78,0x78,0xf7,0xff,0x6a,0x6a,0xfb, + 0xff,0x5a,0x59,0xfd,0xff,0x44,0x43,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x31,0x2f,0xfa, + 0xff,0x36,0x35,0xfa,0xff,0x2d,0x2d,0xc2,0xff,0x38,0x38,0x7d,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xb0,0xb0,0xb0,0xff,0x9f,0x9f,0x9f, + 0xff,0x7e,0x7e,0x7e,0xff,0x3f,0x40,0x40,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0xff,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x50,0x4f,0xfd,0xff,0x32,0x31,0xfb,0xff,0xd,0xb,0xf7, + 0xff,0xd,0xb,0xf7,0xff,0xc,0xa,0x9d,0xff,0x13,0x29,0x4b,0xff,0x0,0x9a,0x9a, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xde,0xde,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9, + 0xff,0x0,0xc9,0xc9,0xff,0x0,0xd3,0xd3,0xff,0x0,0xc8,0xc8,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xd2,0xd2,0xff,0x0,0xc8,0xc8,0xff,0x0,0xc9,0xc9,0xff,0x0,0x73,0x73, + 0xff,0x4c,0x6f,0x8f,0xff,0x87,0x87,0xf4,0xff,0x78,0x78,0xf7,0xff,0x6b,0x6b,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x44,0x43,0xfc,0xff,0x44,0x44,0xfc,0xff,0x38,0x37,0xfb, + 0xff,0x29,0x28,0xf8,0xff,0x3a,0x3a,0xc3,0xff,0x35,0x36,0x92,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0x9f,0x8c, + 0xff,0x2a,0x86,0x5f,0xff,0x2a,0x86,0x5f,0xff,0x2a,0x86,0x5f,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xee,0xee,0xee,0xff,0xee,0xee,0xee,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x1f,0x20,0x20,0xff,0x30,0x30,0x30,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x4b,0x4a,0xfd,0xff,0x39,0x38,0xfb,0xff,0xe,0xb,0xf7, + 0xff,0x7,0x4,0xf7,0xff,0x4,0x1,0xc1,0xff,0x15,0x1f,0x56,0xff,0x0,0x67,0x67, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xde,0xde,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xd3,0xd3,0xff,0x0,0xc7,0xc7,0xff,0x0,0xd3,0xd3,0xff,0x0,0xd3,0xd3, + 0xff,0x0,0xde,0xde,0xff,0x0,0xde,0xde,0xff,0x0,0xc8,0xc8,0xff,0x0,0x9b,0x9b, + 0xff,0x6e,0x8b,0xab,0xff,0x87,0x87,0xf4,0xff,0x78,0x78,0xf7,0xff,0x65,0x64,0xfb, + 0xff,0x54,0x53,0xfe,0xff,0x49,0x49,0xfd,0xff,0x44,0x44,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x36,0x34,0xfa,0xff,0x36,0x34,0xcc,0xff,0x19,0x1a,0x77,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0x9f,0x8c,0xff,0x54,0x54,0x6, + 0xff,0x5b,0x5b,0x4,0xff,0x62,0x62,0x3,0xff,0x5b,0x5b,0x4,0xff,0x3f,0x6d,0x32, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0x5f,0x5f,0x5f,0xff,0x0,0x0,0x0,0xff,0x8f,0x8f,0x8f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x7f,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x4b,0x4a,0xfd,0xff,0x41,0x40,0xfd,0xff,0x15,0x13,0xf8, + 0xff,0x7,0x4,0xf7,0xff,0x8,0x5,0xf7,0xff,0xe,0xd,0x93,0xff,0x3,0x2a,0x2b, + 0xff,0x0,0xb7,0xb7,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xea,0xea,0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xd2,0xd2, + 0xff,0x0,0xea,0xea,0xff,0x0,0xde,0xde,0xff,0x0,0xdf,0xdf,0xff,0x16,0x67,0x64, + 0xff,0x85,0x87,0xde,0xff,0x87,0x87,0xf3,0xff,0x70,0x70,0xf9,0xff,0x65,0x64,0xfb, + 0xff,0x4f,0x4e,0xfd,0xff,0x49,0x49,0xfd,0xff,0x44,0x44,0xfd,0xff,0x31,0x2f,0xfa, + 0xff,0x29,0x28,0xf8,0xff,0x3b,0x3a,0xea,0xff,0x19,0x1a,0x78,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x15,0x9f,0x8c,0xff,0x54,0x54,0x6,0xff,0x5b,0x5b,0x4, + 0xff,0x71,0x71,0x0,0xff,0x75,0x75,0x0,0xff,0x75,0x75,0x0,0xff,0x5b,0x5b,0x4, + 0xff,0x15,0x9f,0x8c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xee,0xee,0xee,0xff,0xfe,0xfe,0xfe,0xff,0xee,0xee,0xee, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xee,0xee,0xee, + 0xff,0xfe,0xfe,0xfe,0xff,0x6f,0x6f,0x6f,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x7f,0x80,0x80,0xf5,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x55,0x54,0xfe,0xff,0x50,0x4f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0xd,0xb,0xf7,0xff,0x7,0x4,0xf7,0xff,0x9,0x6,0xb7,0xff,0x13,0x1c,0x4f, + 0xff,0x0,0x53,0x53,0xff,0x0,0xce,0xce,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6,0xff,0x0,0xf6,0xf6, + 0xff,0x0,0xde,0xde,0xff,0x0,0xea,0xea,0xff,0x1,0x9a,0x9a,0xff,0x5e,0x75,0x94, + 0xff,0x86,0x86,0xe9,0xff,0x70,0x70,0xfa,0xff,0x64,0x64,0xfc,0xff,0x5f,0x5f,0xfc, + 0xff,0x4f,0x4e,0xfd,0xff,0x49,0x49,0xfd,0xff,0x3f,0x3f,0xfd,0xff,0x29,0x27,0xf8, + 0xff,0x22,0x20,0xf8,0xff,0x27,0x25,0xd6,0xff,0x19,0x1a,0x78,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x2a,0x87,0x5e,0xff,0x54,0x54,0x6,0xff,0x54,0x54,0x6,0xff,0x69,0x69,0x1, + 0xff,0x79,0x7a,0x0,0xff,0x79,0x7a,0x0,0xff,0x7d,0x7e,0x0,0xff,0x69,0x69,0x1, + 0xff,0x2a,0x86,0x5f,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xee,0xee,0xee,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xde,0xde,0xde,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x60,0x5f,0xfc,0xff,0x55,0x54,0xfe,0xff,0x4a,0x49,0xfd,0xff,0x40,0x3f,0xfd, + 0xff,0x2a,0x29,0xfa,0xff,0x7,0x4,0xf7,0xff,0x7,0x4,0xf7,0xff,0x20,0x20,0xa6, + 0xff,0x11,0x1d,0x3c,0xff,0x0,0x2a,0x2a,0xff,0x0,0x90,0x90,0xff,0x0,0xdf,0xdf, + 0xff,0x0,0xea,0xea,0xff,0x0,0xea,0xea,0xff,0x0,0xdf,0xdf,0xff,0x0,0xea,0xea, + 0xff,0x0,0xdf,0xdf,0xff,0x2,0x92,0x92,0xff,0x3b,0x64,0x64,0xff,0x65,0x65,0xc7, + 0xff,0x73,0x72,0xf8,0xff,0x6a,0x6a,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x54,0x53,0xfe, + 0xff,0x49,0x49,0xfd,0xff,0x43,0x43,0xfc,0xff,0x41,0x40,0xfd,0xff,0x21,0x1f,0xf7, + 0xff,0x29,0x28,0xf9,0xff,0x19,0x17,0xd4,0xff,0x36,0x36,0x3e,0xff,0x3f,0x6d,0x31, + 0xff,0x15,0xa0,0x8b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x15,0xa0,0x8b,0xff,0x3f,0x6e,0x31, + 0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x6,0xff,0x69,0x69,0x1,0xff,0x79,0x7a,0x0, + 0xff,0x7d,0x7e,0x0,0xff,0x87,0x88,0x0,0xff,0x87,0x88,0x0,0xff,0x69,0x69,0x1, + 0xff,0x54,0x54,0x6,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7,0xff,0x6b,0x6b,0xfb, + 0xff,0x60,0x5f,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x43,0x43,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x21,0x1f,0xf7,0xff,0x7,0x4,0xf7,0xff,0x6,0x3,0xe5, + 0xff,0x1d,0x1d,0xa6,0xff,0x16,0x1f,0x49,0xff,0x5,0x22,0x28,0xff,0x0,0x20,0x20, + 0xff,0x0,0x52,0x52,0xff,0x0,0x6f,0x6f,0xff,0x0,0x78,0x78,0xff,0x0,0x5b,0x5b, + 0xff,0xf,0x4d,0x4c,0xff,0x29,0x41,0x60,0xff,0x3f,0x40,0x89,0xff,0x41,0x41,0xc1, + 0xff,0x5a,0x59,0xfd,0xff,0x53,0x52,0xfe,0xff,0x54,0x53,0xfe,0xff,0x49,0x49,0xfd, + 0xff,0x44,0x43,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x29,0x27,0xf8,0xff,0x22,0x20,0xf8, + 0xff,0x21,0x1f,0xf7,0xff,0x1f,0x1c,0xd5,0xff,0x5e,0x5f,0x4,0xff,0x54,0x54,0x4, + 0xff,0x54,0x54,0x4,0xff,0x54,0x55,0x4,0xff,0x3f,0x6e,0x31,0xff,0x2a,0x87,0x5e, + 0xff,0x15,0xa0,0x8b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x2a,0x87,0x5e,0xff,0x3f,0x6e,0x31,0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x5, + 0xff,0x62,0x62,0x2,0xff,0x69,0x69,0x1,0xff,0x7d,0x7e,0x0,0xff,0x7d,0x7e,0x0, + 0xff,0x8e,0x8e,0x0,0xff,0x9c,0x9a,0x0,0xff,0x9c,0x9a,0x0,0xff,0x7f,0x7f,0x0, + 0xff,0x5b,0x5b,0x4,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x7f,0x80,0x80,0xf5,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x41,0x40,0xfd,0xff,0x21,0x1f,0xf7,0xff,0x7,0x4,0xf7, + 0xff,0x7,0x4,0xf7,0xff,0x18,0x16,0xcb,0xff,0x1d,0x1d,0xa7,0xff,0x14,0x1b,0x60, + 0xff,0xe,0x15,0x45,0xff,0xc,0xf,0x3e,0xff,0xe,0x15,0x45,0xff,0x14,0x1b,0x60, + 0xff,0x19,0x1a,0x78,0xff,0x17,0x17,0x81,0xff,0x2a,0x2a,0xc4,0xff,0x40,0x3f,0xea, + 0xff,0x54,0x53,0xfe,0xff,0x4f,0x4e,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x44,0x44,0xfd, + 0xff,0x40,0x3f,0xfc,0xff,0x39,0x37,0xfb,0xff,0x21,0x1f,0xf7,0xff,0x14,0x12,0xf7, + 0xff,0x13,0x11,0xe5,0xff,0x54,0x55,0x62,0xff,0x7b,0x7c,0x0,0xff,0x69,0x69,0x1, + 0xff,0x69,0x69,0x1,0xff,0x54,0x54,0x6,0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x4, + 0xff,0x54,0x54,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4, + 0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4,0xff,0x54,0x55,0x4, + 0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x4,0xff,0x5b,0x5b,0x4,0xff,0x70,0x70,0x0, + 0xff,0x74,0x75,0x0,0xff,0x79,0x7a,0x0,0xff,0x83,0x84,0x0,0xff,0x95,0x94,0x0, + 0xff,0xae,0xae,0x1,0xff,0xb5,0xb5,0x2,0xff,0xae,0xae,0x1,0xff,0x95,0x94,0x0, + 0xff,0x4d,0x7b,0x2f,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7, + 0xff,0x65,0x65,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5a,0x59,0xfd,0xff,0x54,0x53,0xfe, + 0xff,0x49,0x49,0xfd,0xff,0x3e,0x3e,0xfc,0xff,0x41,0x40,0xfd,0xff,0x29,0x27,0xf9, + 0xff,0xd,0xb,0xf7,0xff,0x7,0x4,0xf7,0xff,0x7,0x4,0xf7,0xff,0x13,0x11,0xe5, + 0xff,0x18,0x16,0xcb,0xff,0x23,0x23,0xc1,0xff,0x1c,0x1a,0xba,0xff,0x26,0x24,0xcd, + 0xff,0x26,0x25,0xcd,0xff,0x36,0x35,0xea,0xff,0x44,0x44,0xfc,0xff,0x43,0x43,0xfc, + 0xff,0x49,0x49,0xfd,0xff,0x43,0x43,0xfc,0xff,0x3f,0x3e,0xfc,0xff,0x40,0x3f,0xfd, + 0xff,0x41,0x40,0xfd,0xff,0x29,0x27,0xf8,0xff,0x14,0x12,0xf7,0xff,0x1b,0x19,0xf7, + 0xff,0x16,0x15,0xca,0xff,0x95,0x94,0x32,0xff,0x8d,0x8d,0x0,0xff,0x7f,0x81,0x1, + 0xff,0x83,0x83,0x0,0xff,0x78,0x79,0x0,0xff,0x70,0x70,0x0,0xff,0x69,0x69,0x1, + 0xff,0x62,0x62,0x2,0xff,0x5b,0x5b,0x4,0xff,0x5b,0x5b,0x4,0xff,0x54,0x54,0x5, + 0xff,0x5b,0x5b,0x4,0xff,0x54,0x54,0x4,0xff,0x54,0x54,0x5,0xff,0x54,0x54,0x5, + 0xff,0x5b,0x5b,0x4,0xff,0x69,0x69,0x1,0xff,0x70,0x70,0x0,0xff,0x7c,0x7d,0x0, + 0xff,0x83,0x83,0x0,0xff,0x95,0x94,0x0,0xff,0xa2,0xa0,0x0,0xff,0xb5,0xb5,0x2, + 0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xae,0x1, + 0xff,0x4e,0xa9,0x5c,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x7f,0x80,0x80,0xf5, + 0xff,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x53,0x52,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd,0xff,0x44,0x44,0xfd,0xff,0x38,0x37,0xfb, + 0xff,0x31,0x2f,0xfa,0xff,0x1a,0x18,0xf7,0xff,0xd,0xb,0xf7,0xff,0x7,0x4,0xf7, + 0xff,0xd,0xb,0xf7,0xff,0x1b,0x19,0xf7,0xff,0x29,0x27,0xf8,0xff,0x39,0x37,0xfb, + 0xff,0x39,0x37,0xfb,0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd,0xff,0x3f,0x3f,0xfc, + 0xff,0x45,0x44,0xfd,0xff,0x3f,0x3f,0xfd,0xff,0x41,0x40,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0x29,0x27,0xf8,0xff,0x1a,0x18,0xf7,0xff,0xe,0xb,0xf7,0xff,0x1a,0x18,0xe6, + 0xff,0x5a,0x59,0x3b,0xff,0xae,0xae,0x1,0xff,0xae,0xae,0x1,0xff,0x93,0x92,0x0, + 0xff,0x94,0x93,0x0,0xff,0x95,0x94,0x0,0xff,0x8d,0x8d,0x0,0xff,0x87,0x88,0x0, + 0xff,0x7f,0x7f,0x0,0xff,0x78,0x79,0x0,0xff,0x74,0x74,0x0,0xff,0x79,0x7a,0x0, + 0xff,0x74,0x75,0x0,0xff,0x70,0x71,0x14,0xff,0x75,0x75,0x0,0xff,0x70,0x70,0x0, + 0xff,0x78,0x79,0x0,0xff,0x77,0x78,0x0,0xff,0x8e,0x8e,0x0,0xff,0x8d,0x8d,0x0, + 0xff,0xa2,0xa0,0x0,0xff,0xae,0xae,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb5,0xb5,0x2, + 0xff,0xbc,0xbd,0x1,0xff,0xbc,0xbd,0x1,0xff,0xd1,0xd1,0x0,0xff,0xcd,0xcd,0x0, + 0xff,0x2d,0xb8,0x8b,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0xff,0x80,0x80,0xf5,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x5f,0x5e,0xfc, + 0xff,0x54,0x53,0xfe,0xff,0x4e,0x4e,0xfd,0xff,0x49,0x49,0xfd,0xff,0x3f,0x3f,0xfc, + 0xff,0x40,0x3f,0xfd,0xff,0x39,0x37,0xfb,0xff,0x29,0x27,0xf8,0xff,0x1b,0x19,0xf7, + 0xff,0x22,0x20,0xf8,0xff,0x1a,0x18,0xf7,0xff,0x31,0x2f,0xfa,0xff,0x39,0x37,0xfb, + 0xff,0x41,0x40,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x3f,0x3f,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0x21,0x1f,0xf7,0xff,0xd,0xb,0xf7,0xff,0x1b,0x19,0xf7,0xff,0x21,0x22,0x9d, + 0xff,0xc1,0xc1,0x1,0xff,0xbe,0xc0,0x0,0xff,0xb7,0xb7,0x1,0xff,0xb4,0xb4,0x2, + 0xff,0xae,0xae,0x1,0xff,0xae,0xae,0x1,0xff,0xa1,0x9f,0x0,0xff,0x9b,0x99,0x0, + 0xff,0x94,0x93,0x0,0xff,0x8d,0x8d,0x0,0xff,0x8d,0x8d,0x0,0xff,0x86,0x87,0x0, + 0xff,0x87,0x88,0x0,0xff,0x87,0x88,0x0,0xff,0x86,0x87,0x0,0xff,0x95,0x94,0x0, + 0xff,0x94,0x93,0x0,0xff,0xa2,0xa0,0x0,0xff,0xa1,0x9f,0x0,0xff,0xae,0xae,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xca,0xcb,0x0,0xff,0xd7,0xd7,0x0,0xff,0xf2,0xf2,0xf,0xff,0xad,0xdb,0x33, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x3f,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7,0xff,0x6a,0x6a,0xfb,0xff,0x6a,0x6a,0xfb, + 0xff,0x59,0x58,0xfd,0xff,0x59,0x58,0xfd,0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd, + 0xff,0x43,0x43,0xfc,0xff,0x45,0x44,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x39,0x37,0xfb, + 0xff,0x39,0x37,0xfb,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd,0xff,0x3e,0x3e,0xfc,0xff,0x49,0x49,0xfd, + 0xff,0x3e,0x3e,0xfc,0xff,0x40,0x3f,0xfd,0xff,0x41,0x40,0xfd,0xff,0x21,0x1f,0xf7, + 0xff,0x22,0x20,0xf8,0xff,0x1a,0x18,0xe5,0xff,0x31,0x31,0xba,0xff,0xa7,0xa7,0x34, + 0xff,0xd7,0xd7,0x0,0xff,0xd7,0xd7,0x0,0xff,0xc2,0xc4,0x0,0xff,0xbf,0xc0,0x0, + 0xff,0xbb,0xbc,0x1,0xff,0xb3,0xb3,0x2,0xff,0xb5,0xb5,0x2,0xff,0xae,0xad,0x1, + 0xff,0xae,0xae,0x1,0xff,0xa1,0xa0,0x0,0xff,0xa1,0xa0,0x0,0xff,0xa2,0xa0,0x0, + 0xff,0xa2,0xa0,0x0,0xff,0xa8,0xa7,0x1,0xff,0xa8,0xa7,0x1,0xff,0xae,0xad,0x1, + 0xff,0xb5,0xb5,0x2,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb8,0x1,0xff,0xb7,0xb8,0x1, + 0xff,0xbb,0xbc,0x1,0xff,0xb8,0xb9,0x1,0xff,0xc0,0xc1,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xf2,0xf2,0xf,0xff,0xf9,0xf9,0x15,0xff,0x3e,0xc9,0x90, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0xff,0x71,0x71,0xf9,0xff,0x6a,0x6a,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x5f,0x5e,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x49,0x49,0xfd,0xff,0x46,0x45,0xfd,0xff,0x41,0x40,0xfd, + 0xff,0x40,0x3f,0xfd,0xff,0x45,0x44,0xfd,0xff,0x40,0x3f,0xfd,0xff,0x46,0x45,0xfd, + 0xff,0x4b,0x4a,0xfd,0xff,0x49,0x49,0xfd,0xff,0x4f,0x4e,0xfd,0xff,0x49,0x49,0xfd, + 0xff,0x4a,0x49,0xfd,0xff,0x4a,0x49,0xfd,0xff,0x45,0x44,0xfd,0xff,0x39,0x38,0xfb, + 0xff,0x29,0x28,0xf8,0xff,0x1f,0x1d,0xdb,0xff,0x95,0x95,0x40,0xff,0xd3,0xd2,0x0, + 0xff,0xdd,0xdc,0x0,0xff,0xd7,0xd6,0x0,0xff,0xde,0xdd,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xc3,0xc5,0x0,0xff,0xbf,0xc1,0x0,0xff,0xb8,0xb8,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xb4,0xb4,0x2,0xff,0xb5,0xb5,0x2,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xb8,0xb9,0x1,0xff,0xb5,0xb5,0x2,0xff,0xbb,0xbc,0x1,0xff,0xb8,0xb8,0x1, + 0xff,0xb8,0xb8,0x1,0xff,0xb4,0xb4,0x2,0xff,0xb8,0xb9,0x1,0xff,0xbf,0xc1,0x0, + 0xff,0xbf,0xc1,0x0,0xff,0xd1,0xd1,0x0,0xff,0xd7,0xd7,0x0,0xff,0xe4,0xe4,0x5, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xba,0xe9,0x3e,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0xff,0x80,0x80,0xf5, + 0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x60,0x5f,0xfc, + 0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x50,0x4f,0xfd,0xff,0x50,0x4f,0xfd,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe, + 0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe,0xff,0x55,0x54,0xfe,0xff,0x5a,0x59,0xfd, + 0xff,0x55,0x54,0xfe,0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe,0xff,0x48,0x47,0xfc, + 0xff,0x4d,0x4c,0xf7,0xff,0x89,0x89,0xa8,0xff,0xf9,0xf9,0x15,0xff,0xf2,0xf2,0xf, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xd1,0xd1,0x0,0xff,0xca,0xcb,0x0,0xff,0xc0,0xc1,0x0, + 0xff,0xb8,0xb9,0x1,0xff,0xbc,0xbd,0x1,0xff,0xb8,0xb9,0x1,0xff,0xb8,0xb9,0x1, + 0xff,0xb8,0xb9,0x1,0xff,0xbc,0xbd,0x1,0xff,0xb8,0xb9,0x1,0xff,0xbc,0xbd,0x1, + 0xff,0xc0,0xc1,0x0,0xff,0xc4,0xc6,0x0,0xff,0xc6,0xc7,0x0,0xff,0xca,0xcb,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xde,0xdd,0x0,0xff,0xf2,0xf2,0xf,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xba,0xe9,0x3e,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4, + 0xff,0x80,0x80,0xf5,0xff,0x72,0x72,0xf9,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x65,0x65,0xfb,0xff,0x60,0x5f,0xfc,0xff,0x60,0x5f,0xfc,0xff,0x5a,0x59,0xfd, + 0xff,0x60,0x5f,0xfc,0xff,0x5a,0x59,0xfd,0xff,0x55,0x54,0xfe,0xff,0x5a,0x59,0xfd, + 0xff,0x60,0x5f,0xfc,0xff,0x65,0x65,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb, + 0xff,0x65,0x65,0xfb,0xff,0x65,0x65,0xfb,0xff,0x65,0x65,0xfb,0xff,0x72,0x72,0xf9, + 0xff,0x86,0x86,0xdf,0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x90,0xff,0xf9,0xf9,0x15, + 0xff,0xf2,0xf2,0xf,0xff,0xe4,0xe4,0x5,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xd7,0xd7,0x0,0xff,0xd1,0xd1,0x0, + 0xff,0xd1,0xd1,0x0,0xff,0xd1,0xd1,0x0,0xff,0xcd,0xcd,0x0,0xff,0xd1,0xd1,0x0, + 0xff,0xca,0xcb,0x0,0xff,0xd1,0xd1,0x0,0xff,0xd1,0xd1,0x0,0xff,0xd1,0xd1,0x0, + 0xff,0xd7,0xd7,0x0,0xff,0xd7,0xd7,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xeb,0xeb,0xa,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0x7c,0xd9,0x67,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4, + 0x3f,0x87,0x87,0xf3,0xbf,0x87,0x87,0xf4,0xff,0x79,0x79,0xf7,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x65,0x65,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb, + 0xff,0x6b,0x6b,0xfb,0xff,0x6b,0x6b,0xfb,0xff,0x72,0x72,0xf9,0xff,0x79,0x79,0xf7, + 0xff,0x79,0x79,0xf7,0xff,0x79,0x79,0xf7,0xff,0x87,0x87,0xf4,0xff,0x86,0x86,0xe9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0xb4,0xe2,0x38,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xeb,0xeb,0xa, + 0xff,0xeb,0xeb,0xa,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0,0xff,0xde,0xdd,0x0, + 0xff,0xde,0xdd,0x0,0xff,0xeb,0xeb,0xa,0xff,0xeb,0xeb,0xa,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xb4,0xe2,0x38,0xff,0x3e,0xc9,0x90, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x3f,0x3f,0x3f, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x86,0x86,0xe9,0xff,0x87,0x87,0xf4, + 0xff,0x79,0x79,0xf7,0xff,0x72,0x72,0xf9,0xff,0x72,0x72,0xf9,0xff,0x72,0x72,0xf9, + 0xff,0x72,0x72,0xf9,0xff,0x72,0x72,0xf9,0xff,0x79,0x79,0xf7,0xff,0x79,0x79,0xf7, + 0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4, + 0xff,0x86,0x86,0xe9,0xff,0x86,0x86,0xe9,0xff,0xa3,0xa3,0xcf,0xff,0x21,0x21,0x32, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x3e,0xc9,0x90,0xff,0xb4,0xe2,0x38,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf2,0xf2,0xf,0xff,0xf2,0xf2,0xf, + 0xff,0xf2,0xf2,0xf,0xff,0xeb,0xeb,0xa,0xff,0xeb,0xeb,0xa,0xff,0xe4,0xe4,0x5, + 0xff,0xe4,0xe4,0x5,0xff,0xeb,0xeb,0xa,0xff,0xeb,0xeb,0xa,0xff,0xf2,0xf2,0xf, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf2,0xf2,0xf, + 0xff,0xba,0xe9,0x3e,0xff,0x37,0xc2,0x8a,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0x9f,0x9f,0x9f,0xff,0x7f,0x7f,0x7f,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0x7f,0x7f,0x7f,0xff,0x8f,0x90,0x90,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x86,0xe6, + 0xbf,0x86,0x86,0xe9,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4, + 0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x87,0x87,0xf4,0xff,0x86,0x86,0xe9, + 0xff,0x87,0x87,0xf4,0xff,0x86,0x86,0xe9,0xff,0x86,0x86,0xe9,0xff,0xa3,0xa3,0xcf, + 0xff,0xa3,0xa3,0xcf,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x75,0xd2,0x61,0xff,0xb4,0xe2,0x38,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15,0xff,0xf9,0xf9,0x15, + 0xff,0xf9,0xf9,0x15,0xff,0x75,0xd2,0x61,0xff,0x75,0xd2,0x61,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f,0xff,0xb0,0xb0,0xb0,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x87,0x87,0xf4,0x3f,0x87,0x87,0xf4,0x7f,0x83,0x83,0xaf, + 0xff,0xa3,0xa3,0xd9,0xff,0xc2,0xc2,0xf9,0xff,0xa3,0xa3,0xcf,0xff,0xa3,0xa3,0xc5, + 0xff,0xa3,0xa3,0xda,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x37,0xc2,0x8a,0xff,0x7c,0xd9,0x67,0xff,0x7c,0xd9,0x67,0xff,0x7c,0xd9,0x67, + 0xff,0x7c,0xd9,0x67,0xff,0x7c,0xd9,0x67,0xff,0x37,0xc2,0x8a,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x9f,0x9f,0x9f,0xff,0x8e,0x8e,0x8e, + 0xff,0x9f,0x9f,0x9f,0xff,0xc1,0xc1,0xc1,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f, + 0xff,0x7e,0x7f,0x7f,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0, + 0xff,0xb0,0xb0,0xb0,0xff,0x8e,0x8e,0x8e,0xff,0x7e,0x7e,0x7e,0xff,0x8f,0x8f,0x8f, + 0xff,0x8f,0x8f,0x8f,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x8f,0x8f,0x8f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0x8f,0x8f,0x8f,0xff,0xb0,0xb0,0xb0, + 0xff,0x9f,0x9f,0x9f,0xff,0x7f,0x7f,0x7f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0,0xff,0xb0,0xb0,0xb0, + 0xff,0x8f,0x8f,0x8f,0xff,0x8f,0x8f,0x8f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xdb,0xdb,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x9f,0x9f,0x9f, + 0xff,0x8e,0x8e,0x8e,0xff,0xc1,0xc1,0xc1,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x8a,0x8a,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9,0xff,0x0,0xb9,0xb9, + 0xff,0x0,0xb9,0xb9,0xff,0x7f,0xad,0xd2,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0x9f,0x9f,0x9f,0xff,0xa0,0xa0,0xa0,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0x60,0x60,0x60, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0xff,0x0,0x0,0x0,0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0x8f,0x8f,0x8f,0xff,0x0,0x0,0x0,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xb0,0xb0,0xb0, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x7f,0x7f,0xff,0xfe,0xfe,0xfe,0xff,0xce,0xce,0xce,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0x3f,0x3f,0x3f,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x80,0x80, + 0xff,0xbf,0xbf,0xbf,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbf,0xbf,0xbf,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0xff,0xbe,0xbe,0xbe,0xff,0xfe,0xfe,0xfe,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf, + 0xff,0xdf,0xdf,0xdf,0xff,0xdf,0xdf,0xdf,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde, + 0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0xde,0xde,0xde,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe, + 0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe, + 0xff,0xbe,0xbe,0xbe,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe, + 0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f, + 0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe, + 0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce, + 0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e,0xff,0x7f,0x80,0x80, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f, + 0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbe,0xbe,0xbe, + 0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde,0xff,0x7e,0x7e,0x7e, + 0xff,0x7f,0x80,0x80,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f, + 0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0, + 0xff,0xc0,0xc0,0xc0,0xff,0xc0,0xc0,0xc0,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf,0xff,0xbf,0xbf,0xbf, + 0xff,0xbe,0xbe,0xbe,0xff,0xce,0xce,0xce,0xff,0xfe,0xfe,0xfe,0xff,0xde,0xde,0xde, + 0xff,0x7e,0x7f,0x7f,0xff,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x3f,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x8f,0x8f,0x8f,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0, + 0xff,0xa0,0xa0,0xa0,0xff,0xa0,0xa0,0xa0,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f, + 0xff,0x9f,0x9f,0x9f,0xff,0x9f,0x9f,0x9f,0xff,0xae,0xae,0xae,0xff,0xde,0xde,0xde, + 0xff,0x9e,0x9e,0x9e,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7f,0x7f,0x7f,0x3f,0x7f,0x7f,0x7f,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80, + 0xff,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f,0xff,0x7f,0x7f,0x7f, + 0xff,0x7f,0x7f,0x7f,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xff,0xfe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xff,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0xff,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xe0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x80,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x80,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfc,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xfe,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xfc,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0x80, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xc0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xe0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xfc, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0xff,0xff,0xff, + 0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_disabled.ico + 0x0,0x0,0x4,0x1e, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x57,0xb1,0x4e,0x1c,0x31,0x10,0x1d,0xe0,0x0,0xa1, + 0x14,0x5c,0x41,0x24,0x3a,0xae,0x4c,0x99,0x3f,0xc8,0xa1,0x44,0x69,0xb9,0x82,0xed, + 0x22,0x25,0x55,0x94,0xaf,0x0,0x87,0x8a,0x2e,0xf9,0x84,0x53,0x2a,0x64,0xa4,0xa4, + 0x4d,0xc5,0xf1,0x13,0xfb,0x13,0x57,0x44,0x34,0xd7,0x20,0xc1,0xc4,0xdc,0x32,0xac, + 0x77,0xd6,0x63,0x8f,0xf7,0x16,0x2c,0x59,0xef,0xbc,0x67,0xcf,0xbc,0x19,0x8f,0x67, + 0x6c,0x80,0x35,0x18,0xc0,0x70,0x8,0xe,0x47,0xf0,0x6d,0x0,0xf0,0x11,0x0,0xf6, + 0xf6,0xaa,0xf1,0xdf,0x2d,0x80,0xdf,0xee,0xdb,0xfe,0x7e,0x35,0x3e,0xdf,0x1,0xf8, + 0xfa,0xa,0x60,0x34,0xaa,0xc6,0x17,0x6e,0xdd,0x3f,0x37,0xf7,0x8d,0x5b,0xe3,0x7e, + 0xba,0x2f,0xd5,0xf7,0x87,0x36,0x1e,0x40,0x4e,0xc3,0x0,0xfa,0x5d,0x5c,0x73,0x7a, + 0x7a,0xba,0xc4,0x93,0x93,0x13,0x7f,0xec,0x3a,0x7a,0xbd,0x29,0x83,0xe6,0x12,0x5e, + 0x5f,0x5f,0x2f,0x71,0x36,0x9b,0x39,0x34,0x4f,0xeb,0xe8,0x7f,0x5f,0x6,0x7d,0x43, + 0xc4,0x20,0xd2,0xfa,0x4a,0x16,0xc9,0x68,0x72,0xa0,0xb9,0x24,0xab,0x9a,0xb,0x70, + 0x75,0x75,0xe5,0xe9,0xa7,0xef,0x4d,0x1b,0xe2,0x6b,0xb9,0xc,0xea,0x66,0xb9,0x9e, + 0xaf,0x9,0xaf,0xf5,0x65,0x54,0x9d,0x7c,0xac,0xd7,0x5f,0x23,0xfd,0x1f,0xd3,0x2f, + 0x21,0xd7,0xd5,0xb7,0x7e,0x1e,0x7,0x1c,0xf9,0x3c,0x5f,0x3f,0xd7,0x9b,0xb2,0xc5, + 0xd7,0x4f,0x6b,0xa4,0x18,0x22,0xa4,0x79,0x31,0xfb,0x29,0x76,0x21,0x7c,0x86,0x1a, + 0xff,0x4b,0xfe,0x97,0xec,0xf,0xf9,0x5f,0x9a,0x4b,0x31,0xc2,0xd1,0x5f,0x7b,0xf7, + 0x1e,0x71,0xfe,0x1d,0xb1,0x1c,0x20,0x5a,0xe3,0x70,0x58,0x61,0x71,0xe8,0xd0,0x3a, + 0x2c,0x22,0x78,0x89,0xf8,0x90,0x67,0x5c,0xba,0x59,0xe6,0x1b,0xca,0x33,0x3f,0xb7, + 0xa0,0x4b,0xb,0xf9,0x2a,0xd4,0x93,0x32,0x74,0xf9,0x27,0x9c,0x87,0xa8,0x69,0xf3, + 0x91,0x77,0xe,0x45,0x99,0x3c,0x3e,0xdb,0x71,0x58,0xc9,0xab,0x74,0x84,0x64,0xd6, + 0xf2,0xc2,0x7c,0x78,0x9c,0xd6,0xf9,0xaa,0x8a,0x57,0x5f,0x66,0x3b,0x6f,0xa6,0xce, + 0x2b,0xc9,0x6b,0x9e,0x1,0x92,0x19,0xce,0xa3,0xe9,0x3c,0x86,0xd,0x99,0x64,0x7b, + 0x28,0xaf,0x4a,0xbc,0xe2,0xf9,0x35,0x9e,0x67,0x75,0xb6,0x9b,0x56,0xf,0xe5,0x5d, + 0x1d,0xbf,0x76,0x8e,0xd1,0xe4,0xc1,0xd4,0xde,0xf0,0x5c,0x17,0xca,0x4b,0xda,0x7c, + 0xc8,0x63,0xe9,0xa5,0xf9,0xa5,0x72,0xbf,0x94,0x2b,0x43,0xfc,0x72,0x6b,0x81,0xcf, + 0xef,0xe6,0xe6,0x26,0x18,0x7f,0xa9,0xda,0x20,0xf9,0x5b,0xe3,0x3f,0x10,0x6a,0x5, + 0xa1,0xa6,0xee,0x69,0x6b,0x68,0xf3,0xcc,0x35,0x74,0x89,0xb5,0x9c,0xd7,0x10,0x63, + 0x4c,0x92,0x1f,0x35,0xed,0xbe,0x4a,0xb8,0x54,0x32,0x79,0x87,0xb7,0xd3,0x3,0x5c, + 0x1c,0xee,0xe2,0x7c,0xfa,0x3,0xcb,0xf,0x47,0x68,0x7f,0xed,0x62,0xe9,0xc6,0x76, + 0xba,0x8b,0xc5,0xe4,0xc0,0xd5,0xa5,0x3f,0xae,0x2e,0x7d,0x66,0x78,0xd4,0x18,0x97, + 0xe,0xe7,0x76,0xb6,0xac,0x5b,0xee,0xa,0xd,0x6f,0xa1,0xae,0x5b,0x5f,0x76,0x38, + 0xf3,0xac,0x16,0xdb,0x3f,0xde,0xb3,0x64,0x92,0xaf,0x39,0x42,0x66,0x4d,0xf3,0x1b, + 0x97,0x45,0xb1,0x50,0xc7,0x44,0x33,0x47,0x53,0xd3,0xe8,0xe0,0xf1,0x15,0x93,0xed, + 0xe5,0x68,0x5a,0x1a,0xd5,0x91,0x92,0x5d,0xa1,0x79,0x92,0x5b,0xcb,0x33,0xf8,0x68, + 0xab,0xf7,0x2d,0x5c,0xa7,0xb9,0x4c,0xe9,0x3d,0x41,0xbc,0x7d,0x1d,0xcd,0x71,0xfb, + 0x5c,0x71,0xd9,0x61,0xff,0xd7,0xf2,0x9b,0x1c,0xb8,0x4d,0x10,0x91,0xa1,0xdb,0xdb, + 0xb0,0x8e,0x34,0x7f,0x49,0xb6,0xa4,0xa3,0xee,0x7a,0xd9,0xf9,0x71,0xd4,0x8e,0x27, + 0x89,0x27,0xdf,0xd3,0xb8,0xe,0xde,0x1b,0x67,0x30,0xc9,0x5f,0x17,0xb3,0x21,0xdd, + 0x32,0xff,0x5c,0x3b,0x24,0x8e,0x9a,0xbd,0xed,0x6a,0x87,0x86,0xbf,0x56,0xc7,0x2a, + 0xfc,0xbb,0xda,0x11,0xe3,0x2f,0xe5,0x64,0x9,0xa5,0xf5,0x5d,0xfc,0xfa,0x1c,0xfe, + 0xcf,0x45,0xd,0x7f,0xed,0x7d,0x49,0x5a,0x9f,0xc3,0x1f,0x12,0xf7,0xa7,0x55,0xe2, + 0x27,0xb5,0xb7,0xa4,0x23,0xc2,0x29,0xb9,0xc7,0x29,0x1d,0x31,0xfe,0xd4,0x72,0x63, + 0x52,0x61,0x17,0x60,0xb9,0x8d,0xf7,0x76,0x3,0xef,0x8e,0xd7,0xf0,0xf6,0x62,0x84, + 0x8b,0x9,0xe0,0xfc,0xe2,0x1c,0xcb,0xc9,0x18,0xad,0x1b,0x97,0xee,0xbb,0xb5,0xeb, + 0xee,0x7e,0xb5,0xe9,0xd0,0x3a,0x2c,0x54,0x58,0x3a,0x9c,0xdb,0xcb,0xe5,0x3d,0x6c, + 0xe4,0xfa,0x18,0xea,0x7b,0x98,0x19,0x72,0xcb,0x3a,0xb5,0x54,0x5c,0xf8,0xf3,0x78, + 0xef,0x45,0x67,0xc2,0xbf,0x8f,0xdd,0x4,0x7a,0x27,0x1e,0xd1,0x7c,0xc3,0xd0,0xd3, + 0x25,0xd5,0x4f,0xa3,0xe6,0x90,0x97,0x63,0xfc,0xfb,0xb,0x6,0x1b,0xab,0xe3,0x51, + 0xe,0xf9,0x35,0xc9,0x84,0x74,0x34,0xce,0x2c,0xbb,0xcf,0x89,0xfa,0x57,0xd3,0x6d, + 0xb8,0x9e,0x2c,0xe,0xda,0x7a,0xdf,0xc4,0xb6,0x4e,0x89,0x43,0x4c,0x7f,0xee,0x5d, + 0x23,0x6e,0x7f,0x98,0x83,0xa4,0x7f,0xb5,0x7a,0x26,0xd9,0xdf,0xe6,0x10,0xd2,0xbf, + 0x6a,0x2d,0xe5,0xfa,0xc3,0x7b,0x15,0xdc,0xa7,0x27,0xfb,0xb5,0xf7,0xa3,0xd5,0x39, + 0xe8,0x7d,0xaf,0xbd,0xaf,0x87,0xce,0x7f,0x38,0xff,0xe9,0x7d,0xdf,0xed,0xae,0x6d, + 0x2,0xb9,0xa6,0x9d,0x93,0xbc,0x37,0xa3,0xca,0xf7,0xb9,0x1c,0x7c,0x1e,0x7e,0xa3, + 0xff,0xfc,0x7c,0x90,0x6b,0x7f,0x4e,0x3c,0x84,0xde,0x37,0x5c,0xbe,0x46,0x66,0x57, + 0xe,0xe9,0xbc,0x91,0xb6,0xbf,0x2f,0xe,0x92,0xfc,0x1c,0x59,0x5d,0x39,0xf4,0x61, + 0x7f,0xdf,0x7e,0x58,0xe5,0x9d,0x92,0xcb,0xa1,0x4f,0xfb,0xfb,0xf2,0x43,0x1f,0xef, + 0x34,0x2d,0x87,0xe7,0xb0,0x7f,0x55,0x3f,0x68,0xec,0xef,0xeb,0xbd,0x21,0x71,0x88, + 0xd9,0xff,0xdc,0xf8,0x12,0xef,0xf4,0x14,0x6a,0xec,0x97,0xf6,0x37,0x17,0xfb,0xb0, + 0x1f,0xea,0x3b,0x43,0x16,0xf6,0x19,0xff,0x1d,0xde,0xba,0xbd,0xd9,0xdf,0x35,0xfe, + 0x63,0xf6,0x4b,0x1c,0x5e,0xd2,0x7e,0x6a,0x7d,0x9d,0xf7,0xc,0x6e,0x80,0x8b,0x4f, + 0x7,0x68,0xa7,0xdb,0x58,0x8c,0x37,0xee,0xad,0x59,0xbb,0x2b,0xe,0xf,0x6f,0xad, + 0x99,0x2e,0x8a,0xc1,0x64,0x6e,0xcf,0x46,0x65,0xb1,0x39,0xb4,0xf6,0xcc,0x94,0xee, + 0xbb,0x75,0xff,0x17,0xc5,0x78,0xcd,0xda,0xe9,0x7a,0x51,0x1c,0xbf,0xb6,0xae,0x15, + 0xae,0x75,0xc1,0xd2,0xe1,0xdc,0xda,0xcb,0xff,0x9d,0xc4,0xbb,0x8, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty_active.ico + 0x0,0x0,0x3,0xb1, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x57,0xb1,0x4e,0x1c,0x31,0x10,0x9d,0x3,0x2,0x42, + 0x29,0xa0,0x20,0x12,0x1d,0x57,0xa6,0xcc,0x1f,0xe4,0xa2,0x48,0x69,0x43,0xc1,0x76, + 0x91,0x92,0xa,0xe5,0x2b,0x60,0xd3,0xa5,0xcc,0x27,0x5c,0x89,0x8c,0x94,0xb4,0xa9, + 0x38,0x7e,0x62,0x7f,0x62,0x8b,0x88,0xe6,0x1a,0x24,0x70,0xe6,0x7c,0x18,0x7c,0x83, + 0xc7,0x33,0xf6,0xfa,0x18,0xb4,0x7a,0xec,0x9e,0x3d,0xf3,0xc6,0x1e,0xcf,0x8c,0x1, + 0x46,0xb0,0x5,0xfb,0xfb,0x80,0x38,0x86,0xef,0x5b,0x0,0x9f,0x0,0xe0,0xe0,0x60, + 0xf9,0xfe,0x77,0x1b,0xe0,0x37,0x7e,0x3b,0x3c,0x5c,0xbe,0xff,0xdc,0x5,0x38,0x7d, + 0xd,0x30,0x1e,0x2f,0xdf,0x2f,0x70,0xde,0x3f,0x1c,0xfb,0x16,0xe7,0xe0,0xbf,0xf8, + 0x65,0xf9,0x7d,0x21,0x93,0x2d,0xc8,0x11,0x1b,0xc1,0xf0,0x61,0xe7,0x9c,0x9f,0x9f, + 0x3b,0x3c,0x3b,0x3b,0xb,0xdf,0x2d,0xb4,0xc1,0x43,0x74,0xf8,0xb1,0x1e,0xaf,0xaf, + 0xaf,0x1d,0xce,0x66,0x33,0x37,0x7e,0x21,0x10,0xfe,0x5,0x3a,0xfc,0x1c,0x37,0x26, + 0x82,0xd2,0xfc,0x70,0xac,0xd7,0xe5,0xec,0xa2,0x5c,0x5d,0x5d,0x89,0xf6,0x93,0x73, + 0x89,0xe,0x2f,0x7e,0x3e,0x9d,0x13,0x9d,0x1b,0xe8,0xf0,0x8f,0x5f,0x63,0xb5,0xfd, + 0x0,0xfd,0xef,0x29,0xfb,0x1c,0x52,0x5b,0xb5,0xed,0xd3,0x38,0xa0,0x48,0xc7,0x85, + 0xf6,0xa9,0x5d,0xc9,0x97,0xd0,0xbe,0x9f,0xc3,0xc5,0x90,0x47,0x3f,0x2e,0xe5,0xbf, + 0x8f,0x5d,0x88,0x9f,0xa1,0x95,0xdf,0xb9,0xf5,0xe7,0xfc,0x8f,0xad,0x3f,0x37,0xd6, + 0xc7,0x8,0xc5,0x70,0xee,0xdd,0x47,0x6b,0xfb,0x1f,0xd6,0x76,0xa8,0xd9,0xb4,0x4f, + 0xd8,0x7c,0x40,0x34,0x88,0x4d,0x2,0x2f,0xad,0x5d,0xe4,0x19,0x4c,0x37,0x2e,0xdf, + 0xf8,0x3c,0xf3,0x6b,0x1b,0x4a,0x44,0xca,0x37,0xa9,0xbc,0xb3,0xa2,0x43,0x95,0x7f, + 0x98,0x3c,0xe4,0x25,0x3b,0x1f,0x31,0x79,0xc5,0x91,0x22,0xf1,0xf9,0x2c,0xe,0x33, + 0xf4,0x45,0xf9,0x0,0x89,0x53,0xa5,0x3e,0xed,0x79,0xcd,0xe1,0xc7,0x9d,0xc5,0x58, + 0x2e,0x94,0xf4,0xd1,0x33,0x97,0x44,0x92,0x5f,0xa5,0x3c,0xab,0xf2,0x3d,0x12,0x2f, + 0xb1,0xbc,0xab,0xe2,0x7,0xcf,0x73,0x8c,0x26,0xf,0x4a,0x7b,0x43,0x73,0x5d,0x2c, + 0x2f,0x69,0xf3,0x21,0x8d,0xa5,0x97,0xe6,0x27,0xe5,0x7e,0x2e,0x57,0xc6,0xf8,0xe5, + 0xd6,0x82,0x90,0xdf,0xcd,0xcd,0x4d,0x34,0xfe,0xa4,0xda,0xc0,0xad,0xb7,0x66,0xfd, + 0x80,0xa9,0x15,0x1e,0x35,0x75,0x4f,0x5b,0x43,0xfd,0xbc,0x48,0x9d,0x62,0x6b,0x39, + 0xad,0x21,0x6d,0xdb,0x8a,0xfc,0xbc,0x68,0xf7,0x95,0x43,0x67,0xe4,0xf8,0xbd,0xbd, + 0x9d,0x1e,0xd9,0xf9,0x64,0xcf,0xf6,0xd3,0x3d,0xdb,0x21,0x9a,0x0,0x9b,0xe3,0x23, + 0xac,0x4b,0x7f,0xb0,0x2e,0x7d,0x25,0xf8,0x79,0xe5,0xbd,0x43,0xec,0xcd,0xcc,0xd5, + 0x2d,0x6c,0xa1,0xe1,0x1d,0x3c,0xd5,0xad,0x6f,0xbb,0x94,0x79,0x96,0xa4,0xf6,0x8f, + 0x3e,0x59,0x3a,0xfd,0x5a,0x53,0x84,0xcc,0x9a,0x16,0xa,0xd5,0xe5,0x63,0xe1,0x31, + 0x26,0xbc,0x2e,0x65,0x8d,0x5b,0x21,0x4d,0xe2,0x2b,0xa6,0x9b,0xcd,0xff,0x82,0xd, + 0x49,0xb7,0xc3,0x42,0xfd,0x9c,0x6e,0x7a,0xbe,0x4b,0xf4,0x73,0xba,0xa3,0xeb,0x9f, + 0xa9,0x9f,0xdb,0xc3,0xd4,0xde,0xe,0xe5,0xcf,0xe9,0xd6,0xd8,0x78,0xd0,0x25,0xea, + 0xd6,0xc6,0x11,0x53,0xf3,0x9d,0xa,0x8e,0x27,0xdd,0xd3,0x94,0x8d,0xc8,0xf9,0xa, + 0xcf,0xa0,0xc8,0x5f,0x15,0xb3,0x31,0xdb,0x9,0xfe,0xb9,0x7e,0x70,0x1c,0x35,0x7b, + 0x5b,0xea,0x87,0x86,0xbf,0xd6,0xc6,0x10,0xfe,0xa5,0x7e,0xa4,0xf8,0x73,0x39,0x99, + 0x43,0x6e,0x7e,0xc9,0xba,0xae,0x63,0xfd,0x73,0x51,0xc3,0x5f,0xdb,0x2f,0x71,0xf3, + 0x73,0xf8,0x83,0xd0,0x3f,0xd,0x89,0x1f,0x69,0x6f,0xbd,0x8d,0x4,0x27,0x71,0x8f, + 0x25,0x1b,0x29,0xfe,0x5e,0x72,0x63,0x52,0xe1,0x17,0xd8,0x6e,0xc7,0xde,0x9b,0x4d, + 0x7b,0x77,0x32,0xb2,0xb7,0x17,0x60,0xe7,0xc7,0x60,0x7b,0xc4,0xe,0xd1,0x2c,0x10, + 0xbf,0x1b,0xb3,0x81,0xfd,0xd5,0x2b,0x44,0x83,0xd8,0xa8,0xb0,0x43,0xec,0xcd,0xa5, + 0xeb,0xc3,0xc6,0xf8,0x4c,0xe0,0xa9,0xf,0x6b,0xf7,0xa9,0x67,0x45,0x22,0xc5,0x45, + 0x38,0x8e,0x3e,0x55,0x6c,0xa,0xeb,0xbb,0x7c,0xf8,0xfe,0x2d,0x97,0x47,0x32,0xdf, + 0x10,0xb4,0x62,0x7f,0xa7,0xec,0x23,0x33,0x6c,0x2e,0x51,0xd3,0x7b,0x28,0xfb,0x4c, + 0xe7,0x74,0x6e,0x4d,0xaa,0x68,0x7f,0xad,0xb6,0x5,0xe,0xda,0x7a,0xbf,0x82,0x95, + 0xec,0xe7,0xf6,0x1a,0x35,0xfd,0x1f,0x54,0xcf,0x6,0xda,0x1f,0x5a,0x4b,0x6b,0xf8, + 0xaf,0xed,0x8f,0xd6,0x11,0xff,0x52,0x2f,0xa3,0xe2,0x50,0x68,0x5f,0x6b,0x3b,0x87, + 0x3,0xc7,0x23,0xbc,0x47,0xc,0xe9,0x73,0x24,0xe,0xc9,0xfb,0xb,0x3e,0x8f,0x7b, + 0xa6,0xe8,0x43,0x8b,0x38,0x3c,0xc4,0x43,0xec,0x7e,0x43,0xf5,0x6b,0x74,0x96,0x72, + 0x10,0xf3,0x86,0xc2,0xff,0x5a,0x1c,0x38,0xfd,0x39,0xba,0x4a,0x39,0xd4,0xf0,0xbf, + 0xf6,0x3a,0xc,0xb9,0xa7,0xe4,0x72,0xa8,0xe9,0x7f,0xad,0x75,0xa8,0x71,0x4f,0xd3, + 0x72,0x58,0x87,0xff,0x43,0xd7,0x41,0xe3,0x7f,0xad,0xfb,0x6,0xc7,0x21,0xe5,0xff, + 0xba,0xf1,0x25,0xee,0xe9,0x12,0x6a,0xfc,0xe7,0xf6,0x37,0x17,0x6b,0xf8,0xf,0xe4, + 0x1e,0xa4,0xc5,0x9a,0xf1,0x5f,0x70,0xd7,0xad,0xe6,0x7f,0x69,0xfc,0xa7,0xfc,0xe7, + 0x38,0xbc,0xa4,0xff,0x5e,0x6a,0x9d,0xf7,0xc,0x6e,0x60,0xe7,0x5f,0x8e,0xac,0x99, + 0xee,0xd8,0x66,0xb2,0x79,0x6f,0xda,0xd1,0x5d,0x33,0x19,0xdd,0x9a,0x16,0xe6,0xd, + 0x40,0x8f,0xd8,0x21,0x1a,0x87,0x93,0x11,0xe2,0xa8,0x71,0x38,0xdd,0x68,0x9a,0x93, + 0x37,0x6,0xa5,0x41,0x29,0xc1,0xe,0xb1,0x37,0xe6,0xf2,0x3f,0xce,0xed,0xd5,0xd6, + + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_525_empty.ico + 0x0,0x0,0x2,0x4e, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x6e,0xc2,0x30,0x10,0xbd,0x4a,0x8,0x9, + 0x75,0x61,0x60,0x60,0xcc,0xd8,0xb1,0x9f,0xc0,0xd4,0x3f,0x88,0x3a,0xb6,0x53,0xd5, + 0x1f,0xe8,0xdc,0x8c,0x1d,0xfb,0x9,0xc,0x1d,0x2a,0x23,0xc1,0x5a,0x75,0xa8,0xf8, + 0x9,0x7e,0x82,0x4a,0xdd,0xba,0xb0,0xb8,0x17,0x42,0x4a,0x70,0x6d,0xe7,0x6c,0x1f, + 0xe,0xd0,0x9c,0x84,0x1e,0x76,0xf0,0xdd,0xbb,0xc4,0x7e,0x77,0x1,0xe0,0xc,0x3a, + 0xd0,0xef,0x3,0x62,0x2,0xf7,0x1d,0x80,0x2b,0x0,0x18,0xc,0x8a,0xf1,0x5b,0x17, + 0x60,0x8a,0x73,0xc3,0x61,0x31,0x7e,0xea,0x1,0xdc,0x9d,0x3,0x24,0x49,0x31,0x7e, + 0xc5,0x75,0x5f,0xf8,0xdb,0xb,0x5c,0x83,0x5f,0x71,0xa6,0x98,0xcf,0x6d,0xd4,0x1, + 0x9d,0xc9,0x40,0x84,0x2c,0xcb,0xa4,0xf,0xe6,0x3e,0xca,0xef,0x2f,0xe3,0xb1,0x15, + 0x25,0x5a,0x15,0x2b,0x3e,0x80,0xea,0x63,0x3e,0x9f,0xef,0x20,0x57,0xfc,0xd2,0x9f, + 0xba,0x46,0xcd,0x57,0xbd,0x6e,0x8b,0x5f,0xbd,0xbf,0x3a,0x1f,0x94,0xf8,0xaa,0x35, + 0x10,0x7f,0x7,0x5d,0xe2,0xd7,0x21,0x25,0x7e,0x1d,0x52,0xe2,0x9b,0xae,0xbb,0x3c, + 0x7f,0xdb,0xfd,0xa9,0xf3,0x6f,0xda,0x43,0xba,0xfd,0xef,0x83,0x69,0x2a,0xa5,0x10, + 0xf2,0x2f,0x2e,0xa4,0x9c,0x2c,0xb,0xd4,0x5e,0xdf,0x60,0xae,0x33,0x28,0x37,0x6b, + 0xbd,0x29,0x75,0xe6,0xb9,0xb,0x3a,0xb,0xd5,0x19,0x36,0xdd,0x9,0xd1,0x21,0x93, + 0x96,0x94,0x18,0xb2,0x2f,0x55,0x8d,0x29,0xb1,0x9a,0x33,0xd5,0x67,0x6c,0x7e,0xbe, + 0xe7,0x38,0xe4,0x5c,0xd7,0xe9,0xab,0xcb,0x39,0x87,0x1a,0xbd,0xf3,0xe1,0xa7,0xda, + 0x1,0xf2,0xdb,0xc1,0x10,0x7e,0x31,0x75,0x3b,0x84,0x1f,0x55,0xef,0x29,0xfc,0xea, + 0xf4,0xfd,0x94,0xf9,0x51,0xf6,0x9f,0x45,0x6f,0xad,0xd7,0xf5,0x75,0xea,0x6,0xeb, + 0xcd,0xec,0x17,0x17,0xca,0x38,0x7d,0x40,0x5c,0x6d,0xb0,0x3a,0xaf,0xc1,0x9,0x62, + 0x5e,0xaf,0xb0,0x85,0x86,0x4b,0xd8,0xd6,0xad,0xdb,0x1e,0xe8,0x4c,0x7b,0x56,0x18, + 0x91,0xad,0x8e,0x71,0xd4,0x35,0xaa,0xe6,0x73,0x9c,0x63,0x53,0x8d,0xf2,0xe9,0xcf, + 0x43,0xf8,0xfb,0xc6,0x38,0x14,0xfe,0x5c,0x3a,0xca,0xa1,0xfb,0xae,0x3a,0xe2,0xc2, + 0x5f,0x35,0x4e,0xfe,0x26,0xe3,0xe0,0xf,0x4a,0xed,0x2e,0x8d,0xa3,0x6f,0x89,0xc1, + 0x3f,0xc6,0xfd,0x57,0xef,0xd5,0x3e,0xf6,0x4f,0x8c,0xfd,0x4f,0xe5,0xe2,0xc3,0x9f, + 0xda,0xef,0xfa,0xf0,0x57,0x7d,0x53,0x7b,0x8b,0x96,0x7f,0xf3,0xfa,0x49,0xe8,0x3, + 0xb4,0xbf,0xa3,0xac,0x4f,0xf1,0x45,0x5f,0xe0,0x8b,0xbe,0x15,0x3f,0x10,0x1f,0x15, + 0xa4,0xac,0xfb,0x14,0xeb,0x3e,0x2c,0xc1,0xcf,0x8,0xb6,0x7d,0x58,0xd6,0x7,0x9d, + 0xc9,0x86,0x71,0x6f,0x7d,0x5a,0x8c,0x3e,0xce,0xa4,0x53,0x75,0xb8,0xf,0x9d,0x35, + 0xf5,0x34,0x31,0xfe,0x5f,0x68,0xf3,0xf7,0xcf,0x9f,0x8b,0xc3,0xb1,0xe6,0x7f,0x4a, + 0xcf,0xdf,0xb5,0x1e,0x85,0xe4,0xef,0x5a,0x37,0x39,0xea,0xa8,0x8e,0xbf,0xf,0x87, + 0x90,0xfc,0xc1,0xb3,0xef,0xe7,0xc8,0xdf,0x14,0xdb,0x95,0x43,0x60,0xfe,0x56,0xfb, + 0x7,0xf9,0x37,0xf6,0xfc,0x2d,0x1c,0xa2,0x9f,0xff,0xa,0x87,0xe8,0xe7,0xff,0x10, + 0xf4,0x2f,0x14,0x39,0xf2,0xe7,0xd0,0xcf,0x63,0xd6,0x7f,0xea,0x7b,0x61,0x9b,0x7f, + 0x9b,0xff,0x29,0xe5,0xcf,0x79,0xfe,0x3d,0xde,0x5b,0xb5,0xeb,0x7c,0xfc,0xa5,0x68, + 0x2,0x8d,0x8e,0x8b,0x54,0x4c,0x96,0x22,0xbd,0xfe,0x4e,0xc5,0x6c,0x55,0x60,0x3e, + 0xce,0xe7,0x9d,0xfc,0x20,0x4e,0xdf,0xc5,0xf,0x12,0x27,0x59,0xe6, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_and_cdrom_drives.ico + 0x0,0x0,0x5,0xec, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xbd,0x6e,0x1b,0x47,0x10,0x1e,0x42,0x82,0x5, + 0x23,0x5,0x55,0xb8,0x70,0x27,0x95,0x29,0xfd,0x6,0x72,0x15,0xe4,0x31,0x52,0x5, + 0x11,0xd9,0x2b,0x54,0xc3,0x3b,0xaa,0x4a,0x99,0xc7,0x48,0x15,0x38,0x85,0x44,0xba, + 0x21,0x9,0xe8,0xe7,0x39,0xc,0x3f,0x40,0x90,0xd2,0x85,0xe1,0xc9,0xce,0xfe,0xdd, + 0xec,0xee,0xcc,0xde,0x9d,0x7e,0x92,0x25,0x6,0xc7,0xe3,0xdd,0x7c,0xdf,0xec,0xf2, + 0xf6,0x9b,0xd9,0x3d,0x80,0x9,0x1c,0xc2,0xf1,0x31,0x98,0xe3,0x29,0xfc,0x72,0x8, + 0xf0,0x3,0x0,0xbc,0x79,0xe3,0xce,0x37,0xaf,0x0,0xfe,0x34,0xbf,0xbd,0x7d,0xeb, + 0xce,0x7f,0x7b,0xd,0xf0,0xf3,0x77,0x0,0xa7,0xa7,0xee,0xfc,0xf,0xe3,0xf7,0xb7, + 0xb9,0xf7,0x7b,0xe3,0x63,0xbe,0x9a,0x5f,0xdc,0xef,0xd4,0xde,0x1f,0xc2,0x63,0x1a, + 0x66,0x36,0xac,0xb5,0x2d,0x5a,0xc3,0xae,0x1,0xe,0xc4,0x31,0x7e,0xee,0xfe,0xce, + 0xa2,0x3f,0x7d,0xd9,0xfc,0x58,0xc7,0xf0,0xdc,0xc8,0x7c,0xe3,0x77,0xe3,0x2b,0xf8, + 0x77,0x71,0xb1,0xb8,0x23,0x46,0xc0,0xb,0xbe,0x21,0x2e,0x73,0xff,0xc7,0x4b,0xc0, + 0xcd,0x2,0x70,0xd9,0x34,0xd6,0xa2,0x6f,0x88,0x93,0xce,0x39,0x36,0xef,0x97,0xf7, + 0xc7,0xcf,0x1f,0x70,0xb7,0xdf,0xe3,0xde,0x58,0x1c,0xb3,0xc0,0x23,0xf9,0x87,0xa3, + 0xf9,0x6d,0x73,0xe9,0xae,0xc5,0x3e,0xfa,0x38,0xc1,0x8f,0x57,0x8c,0x81,0xf7,0x85, + 0xe1,0x52,0xec,0xf8,0xf9,0x2f,0xdc,0x6e,0x77,0xde,0xb6,0xfe,0x1e,0x88,0xfe,0xfc, + 0xbf,0xc0,0x34,0x26,0xd8,0x5c,0x3a,0x7f,0xbc,0x3b,0x4f,0x62,0x88,0xbe,0x99,0x7f, + 0xc4,0xc8,0xfd,0xef,0x67,0x6,0x63,0xe6,0x8e,0xc6,0x78,0xcc,0x89,0x7f,0xf6,0xfc, + 0x24,0xfe,0x74,0xcc,0x2c,0xfe,0x9f,0xc1,0xb2,0x16,0xfc,0x69,0x1c,0xa0,0x7c,0xd6, + 0x23,0x76,0x18,0x67,0xcd,0x7f,0x6d,0xfc,0xdb,0xd5,0xa,0x97,0xcb,0x25,0x36,0x4d, + 0x6b,0x8f,0x43,0xfc,0xd7,0x7e,0xfc,0xe9,0xfa,0xd5,0xd5,0x95,0xf3,0x79,0x98,0x63, + 0xeb,0xc7,0xb8,0xcf,0xdf,0xc6,0xb0,0x70,0xcf,0xd1,0xca,0xf8,0x13,0xc6,0x6a,0x75, + 0x85,0x8d,0xf1,0xa7,0x73,0xba,0x46,0xbe,0xde,0xbf,0x68,0x38,0x45,0xfc,0x7a,0x80, + 0xf8,0x65,0xe2,0xac,0x5,0x1a,0x63,0x66,0x13,0x6f,0xe6,0x1e,0x98,0xa6,0xd6,0x9e, + 0x20,0x92,0xce,0x18,0xb9,0xb1,0x7a,0x13,0x74,0xe6,0xf7,0x57,0x12,0xd3,0xa0,0x26, + 0xfe,0x7,0xa3,0x51,0x34,0xed,0xf1,0xfa,0x31,0xa,0xb7,0xaa,0x45,0x9d,0x1e,0xf5, + 0x6a,0x52,0x86,0x55,0x6a,0x53,0x86,0x95,0x3e,0xef,0xf2,0xf8,0x8,0x3a,0x27,0x6a, + 0x65,0x39,0x7f,0x20,0xe8,0x16,0x1d,0xa3,0x6e,0xe5,0xba,0xc7,0xe7,0x73,0xa2,0x2b, + 0x58,0x60,0xba,0xe7,0xf8,0x83,0x9b,0x87,0xb9,0xce,0x70,0xcc,0x9a,0x1e,0x32,0xbc, + 0x8f,0x7e,0x5e,0xd1,0xf7,0x5d,0xd0,0x45,0x1,0xd3,0x5e,0xdf,0xed,0xdd,0x3d,0x5c, + 0xbf,0x73,0x9d,0xbb,0x54,0xe2,0xb,0xfd,0x64,0x5a,0x1d,0xff,0x13,0x21,0x1f,0x44, + 0xdd,0xf5,0xf3,0x16,0x1f,0x66,0x56,0x37,0xb9,0x6e,0x27,0xe3,0x94,0xf5,0x37,0x62, + 0x6b,0xf1,0xdd,0x75,0xf1,0x15,0x58,0xe1,0x7f,0xcd,0x9e,0x6f,0xc8,0x31,0x23,0x9e, + 0xd3,0x8e,0xed,0x76,0x6f,0xad,0x1c,0xef,0x8a,0xc6,0xf3,0x31,0x0,0xae,0xf3,0xb3, + 0xa8,0xf5,0x12,0x5e,0x55,0xf3,0x25,0xbc,0xfb,0x79,0xa2,0xfd,0x1d,0x66,0x1a,0x5b, + 0x8e,0x97,0xcf,0x8d,0x2,0x4f,0xc8,0x1,0x3c,0x36,0x2c,0x71,0x92,0xb9,0xcb,0xf1, + 0xec,0x7f,0x4d,0xb1,0x29,0xf3,0x4f,0xc8,0x31,0x6a,0x9e,0x20,0xbc,0xb5,0xc7,0xa3, + 0x7c,0xd1,0xb6,0x5a,0xce,0x98,0x3b,0xee,0x9e,0xbc,0x41,0xb9,0xc2,0x62,0x9b,0x63, + 0xd0,0x7e,0x90,0x72,0x88,0x39,0xf,0xf7,0x8a,0xf1,0xf5,0xe2,0xcd,0x46,0xe1,0x5, + 0xcc,0xf5,0xa2,0xab,0x91,0x28,0x1f,0xa9,0x39,0x8a,0xdd,0x2b,0x61,0xe1,0xa,0xf1, + 0x1b,0x34,0xf8,0x15,0xce,0xf0,0xb,0x9c,0x98,0x3c,0x75,0x62,0xee,0x9b,0x2a,0x76, + 0xe2,0xed,0xcc,0x58,0x93,0xe6,0x33,0x63,0xed,0xc4,0xe5,0x2d,0x53,0x42,0xc3,0x3b, + 0xe8,0xf2,0xd6,0x4f,0xaf,0x25,0xe6,0x51,0xed,0x79,0xf2,0x57,0xde,0xb8,0x6,0xb1, + 0xf9,0x84,0x61,0x9e,0x3c,0x43,0x9e,0x94,0xb0,0x23,0x7e,0xd0,0xc7,0x27,0xe6,0xcd, + 0x21,0x39,0x54,0xc9,0xa3,0xf2,0xdc,0x53,0x74,0x41,0x8a,0x5d,0xc3,0x5f,0x5f,0x0, + 0xde,0x5c,0xb8,0x67,0x2f,0xa9,0xe1,0x85,0xbc,0x2a,0xea,0x59,0x1e,0x7b,0xa6,0x4d, + 0xd7,0x17,0x9d,0xe,0xdb,0x3c,0xb5,0xdb,0x27,0xda,0x5f,0x70,0x64,0x5a,0x22,0x62, + 0x33,0xfc,0xa0,0x3,0xe0,0xf3,0x96,0x9a,0x77,0xc3,0x6f,0xc2,0x38,0xd6,0xf2,0xfa, + 0xcd,0xaf,0x3c,0x8f,0xec,0xf4,0x3c,0xec,0xb1,0x69,0xfd,0xd0,0xd9,0xae,0x37,0xcf, + 0x3b,0xfc,0x34,0xef,0x15,0xd8,0x2c,0xf6,0xbc,0xd,0xc3,0x77,0x79,0x8b,0xe7,0xe9, + 0xc2,0x9e,0x1a,0xff,0xad,0x5c,0x57,0xc4,0xb9,0x33,0x24,0x7e,0xa1,0xce,0xa8,0xc5, + 0x5f,0xad,0x35,0xb2,0x9a,0x43,0x1b,0xcf,0x3c,0xfe,0x70,0x6f,0xf9,0xcc,0xf9,0x4f, + 0x9e,0xeb,0x78,0x5f,0x32,0x6c,0x7a,0x3e,0xd3,0xf8,0xbb,0x3a,0x24,0xc7,0x56,0x73, + 0x33,0x3b,0x4f,0x38,0x72,0x7c,0x8a,0xff,0x36,0x5f,0x83,0x66,0x75,0x44,0xa5,0x96, + 0x48,0x38,0x98,0x3e,0x74,0xf1,0xcf,0xdd,0x33,0x7a,0xeb,0xac,0x58,0x23,0x33,0x6c, + 0x9,0x3f,0x99,0xe3,0x35,0xfc,0x1,0x75,0x8b,0x86,0x2f,0xe9,0x33,0xc7,0xb7,0x5a, + 0x74,0xe7,0x6a,0xad,0x42,0x4b,0x59,0x6d,0x5a,0xe0,0x57,0x72,0x99,0x86,0xbf,0x5c, + 0x36,0xd6,0x9a,0xc6,0x59,0xab,0xd5,0x4a,0xc4,0x6b,0x7c,0x9,0xa7,0xf,0xdf,0x7e, + 0xb7,0xe3,0x34,0xb7,0xf5,0x12,0x19,0xe1,0xd2,0xd1,0xce,0x2d,0xbb,0x77,0x30,0xef, + 0xce,0xe3,0xb8,0xea,0xf8,0x9d,0x3e,0x7b,0x7c,0x5f,0x77,0xc9,0xf8,0xe7,0x96,0x23, + 0xc1,0xf7,0xf7,0x13,0x8e,0x18,0xff,0x0,0xfc,0x36,0x9b,0xb7,0xe9,0xda,0xdf,0x3d, + 0x17,0x37,0x17,0x7a,0xde,0xa5,0x6b,0xd7,0x3e,0x87,0x11,0x7,0x19,0xd5,0x56,0x4d, + 0xdb,0xe1,0x87,0x7e,0x58,0xf3,0xd7,0x6e,0x7c,0xee,0xbb,0xae,0x60,0xe3,0xa7,0xc6, + 0x2e,0xf4,0xbf,0xc1,0x91,0xa9,0xbd,0xe,0x4c,0xdd,0x75,0x60,0xee,0x9d,0x78,0x13, + 0xf2,0xb2,0xb5,0x70,0xfd,0xc0,0xdb,0x91,0x58,0xa3,0xb5,0xa6,0x3e,0xa3,0x3a,0xec, + 0xd4,0xd8,0x7b,0xe8,0xea,0xb0,0xf6,0x58,0x8b,0xe6,0xc9,0xed,0x65,0xea,0xb3,0x5a, + 0x53,0xb4,0x12,0xb9,0xa6,0xbe,0x54,0x2c,0x4a,0xde,0x4a,0xf9,0xb1,0xaf,0xf6,0x7a, + 0x11,0x6e,0x95,0x3f,0xd3,0xc7,0xe7,0xe4,0x4e,0x75,0x58,0xe1,0x16,0x34,0xfa,0x31, + 0xdc,0xb5,0x1c,0x20,0xf1,0x57,0xf4,0x7c,0x1c,0x77,0x4f,0xdd,0x9a,0xe4,0xba,0x1a, + 0xf7,0x63,0x62,0xa8,0xd5,0xb5,0xc1,0x84,0xfa,0x61,0x4,0x7f,0x45,0x73,0x20,0xc5, + 0xcc,0x63,0x48,0xd7,0xe6,0xb2,0x4f,0x85,0x9f,0xef,0x97,0xf1,0xfd,0xfe,0x90,0xdf, + 0xb4,0xba,0x18,0x79,0xbf,0xa1,0xf3,0xb,0xfb,0xb2,0x31,0x86,0x9e,0x31,0x88,0xeb, + 0x7d,0xbf,0x3f,0x9e,0xb7,0x6a,0xdd,0x2c,0xd5,0x9e,0x84,0xf1,0x30,0x1b,0x16,0x3, + 0xa4,0xfb,0x71,0xe4,0x47,0xef,0x2a,0xdc,0x7a,0x66,0x67,0xad,0xea,0xef,0xf9,0xdd, + 0xbd,0xce,0x2f,0xee,0x1f,0x2c,0x86,0xf1,0x17,0xef,0x9,0xb4,0xfe,0x57,0xf8,0x93, + 0xe6,0xf7,0x9b,0x86,0xf6,0x9f,0xef,0x8f,0x84,0x5a,0x3c,0xbc,0x2f,0xe9,0xde,0x99, + 0x8,0x73,0x8d,0xd5,0xfe,0x61,0x4d,0x41,0x56,0xec,0xef,0x68,0xeb,0xaa,0xbc,0xff, + 0x77,0xc3,0xfb,0x2f,0xad,0xd,0xf2,0xfe,0x7,0xee,0xea,0x73,0x94,0x8c,0xbf,0xdc, + 0x7f,0x3e,0x6,0xa2,0xae,0xf4,0xcc,0x3f,0xc,0x31,0xb,0xdc,0x34,0xff,0xfa,0xfa, + 0x1f,0xfc,0xd4,0x3d,0x53,0xfa,0xc6,0xde,0x85,0x49,0xf3,0x5e,0x8c,0x21,0xe7,0xef, + 0xe9,0x7f,0x8d,0xbb,0xba,0x97,0xa9,0xc5,0x30,0xa2,0xff,0xe5,0x73,0x0,0xa3,0xf9, + 0x79,0xc,0x5c,0x7b,0xcb,0xfe,0xef,0xbd,0xed,0xa,0xe3,0x6b,0xa3,0x84,0x7b,0x20, + 0x7f,0xce,0x2d,0xf1,0xf3,0xf7,0x8d,0xfa,0x38,0xc8,0x7d,0xef,0xe5,0x17,0x72,0x5e, + 0xc9,0xdf,0x6f,0xc9,0xda,0x6d,0x28,0xbf,0x92,0x6f,0xb,0x7e,0x1e,0xc7,0xbd,0x6e, + 0xc9,0x3a,0x4b,0xe3,0x1f,0x50,0x7f,0x96,0xfc,0xf2,0xfb,0xd6,0x9a,0x69,0xeb,0xbf, + 0x1a,0xaf,0xc6,0x1f,0xf6,0xd0,0xc5,0x7d,0xf9,0x8a,0xf1,0x35,0x5b,0x6d,0x7f,0x7d, + 0xc,0x7f,0xbe,0xd6,0xd,0xeb,0xdd,0xb8,0xde,0xa2,0x9c,0x2f,0xec,0xed,0x3f,0x85, + 0xdf,0x9e,0x2b,0x6b,0xc9,0xb8,0x3e,0x7d,0x98,0xd9,0x7c,0xd5,0xf0,0xdf,0xfe,0x53, + 0xfe,0x73,0x1b,0xc3,0xff,0xc7,0xff,0x7c,0xfd,0xe7,0xef,0x5b,0x42,0xdd,0x10,0x6a, + 0x98,0xd1,0xfc,0xde,0x8f,0x6c,0xbd,0x18,0xd8,0xff,0x11,0xfc,0xd2,0x7e,0x42,0xb2, + 0xa7,0x10,0xf8,0x9,0x67,0xd1,0xcf,0xcd,0x63,0x58,0x2f,0xd2,0x3a,0x98,0x4c,0xda, + 0x6b,0xe0,0xcf,0x7f,0xdb,0x76,0x7b,0xe,0xfc,0x5d,0xcf,0x7a,0x4,0x37,0xd2,0xb, + 0xa0,0xf0,0xf2,0xe7,0x1f,0x98,0xe2,0x27,0x38,0xc2,0xbd,0xdd,0x90,0x98,0x90,0xb5, + 0xb4,0x7d,0xa0,0xb7,0x9,0xb3,0x3,0x63,0x47,0xc6,0xa6,0xc6,0x4e,0x8c,0x9d,0x41, + 0x55,0x33,0x26,0x76,0xcf,0xe3,0x5f,0x22,0xb4,0x2f,0xcf, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/storage_controllers.ico + 0x0,0x0,0x2,0x7c, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xbd,0x4e,0x3,0x31,0xc,0x76,0x45,0xd5,0xaa, + 0x62,0x68,0x87,0xe,0xdd,0xe8,0xc8,0xc8,0x1b,0xd0,0x89,0xe7,0x60,0x42,0x3c,0x45, + 0xef,0x46,0x46,0x1e,0x83,0x89,0x99,0xad,0x7d,0x94,0x3e,0x1,0xe2,0x1,0x10,0x25, + 0x1f,0xc5,0xaa,0xeb,0xe6,0xee,0x9c,0xbb,0xdc,0xb5,0x82,0x58,0xb2,0x42,0x7c,0x89, + 0x3f,0x27,0xfe,0x89,0xb,0x51,0x8f,0xfa,0x34,0x99,0x90,0x1b,0xe7,0xf4,0xd8,0x27, + 0xba,0x23,0xa2,0xe9,0x74,0x37,0x7f,0x1b,0x10,0xbd,0x3a,0xd9,0x6c,0xb6,0x9b,0x3f, + 0x8d,0x88,0x1e,0x2e,0x89,0xe6,0xf3,0xdd,0xfc,0xc5,0xed,0x7b,0x77,0x6b,0xaf,0xdd, + 0x1e,0xf7,0xa7,0x93,0xec,0xe4,0xa0,0x45,0x9f,0xaa,0x68,0x6b,0x64,0xef,0xbe,0x3c, + 0xcf,0x4d,0x2c,0xf5,0x48,0xf9,0x7a,0xbd,0x36,0xb1,0xd4,0x83,0x11,0x4,0xb9,0x95, + 0x58,0x87,0xdc,0xf,0xb2,0x9e,0x5f,0xad,0x4f,0xe7,0xff,0x23,0xe7,0xb7,0xda,0x2f, + 0xcf,0xaf,0xed,0x97,0xb6,0x14,0x8d,0xea,0x1e,0x88,0xcf,0x15,0x62,0x3f,0x58,0x27, + 0xa1,0xf5,0xfe,0xe4,0x9e,0xcd,0xd0,0xd9,0xd3,0xc3,0x59,0xf6,0x5c,0x35,0x67,0x19, + 0xf6,0xa2,0xce,0xb8,0x72,0xf3,0x53,0x6f,0xb8,0xce,0x3c,0xf,0x3c,0x15,0xa2,0x5d, + 0x32,0xc7,0xae,0x62,0xaf,0x9e,0xe5,0x72,0xb9,0xcd,0xb2,0x2c,0x98,0xa5,0x5e,0x96, + 0x41,0x97,0xbc,0xfb,0xd5,0x6a,0x55,0xc9,0xbc,0x96,0xf7,0xb3,0x4d,0x52,0x87,0xd5, + 0xd7,0x9a,0xd9,0x4e,0xa9,0xaf,0x2e,0x69,0x7d,0x32,0x2f,0xea,0xb0,0xda,0x9f,0xfc, + 0x91,0xfc,0x71,0x32,0x7f,0x60,0x8c,0xe1,0xf,0x69,0x1f,0x13,0x6a,0x3f,0xe6,0xd6, + 0x7b,0xe4,0xb5,0xd2,0x1f,0xfa,0xfe,0x18,0xf,0x84,0xf3,0x97,0x8d,0xbc,0x4e,0xde, + 0x1f,0x7c,0x12,0xe3,0xbc,0x4d,0xde,0xa5,0xb2,0x77,0xa,0xfa,0x37,0x94,0x6d,0x73, + 0xba,0x72,0xf2,0xf1,0x1,0x5b,0x65,0x2c,0x87,0x1e,0xbc,0x57,0xae,0x85,0xa6,0x1b, + 0xda,0xbf,0x5b,0xf7,0x23,0xcf,0x8b,0x70,0x3a,0x6a,0xfa,0x96,0x95,0xea,0xb4,0xf6, + 0x3a,0x9e,0x9e,0xad,0xf0,0xdd,0xac,0xd3,0xcb,0x31,0xc7,0xec,0xf,0xad,0x58,0x6c, + 0xb3,0x8c,0xdd,0xba,0x39,0xe0,0xc3,0xd0,0xfa,0x25,0x85,0xde,0xbf,0xc6,0xaa,0xea, + 0x5f,0x43,0xe3,0xa7,0xa8,0xbf,0x95,0x3e,0x88,0x15,0x3f,0x42,0x96,0xe2,0x27,0xc5, + 0x4f,0x8a,0x9f,0x13,0xc4,0x4f,0xa8,0xcd,0x96,0xf8,0xd1,0xeb,0x43,0x46,0x1f,0x16, + 0xf4,0xfb,0xb0,0x63,0x8c,0xac,0x1f,0x3e,0x2e,0xba,0xf3,0x3a,0x3a,0xe5,0x79,0xf4, + 0x23,0x19,0xcb,0xbf,0x9e,0xf7,0xf7,0x88,0x42,0xfd,0x5b,0xa4,0x7,0xd8,0x9f,0x74, + 0xeb,0x7a,0xa6,0xa1,0xeb,0x9d,0x7a,0xc7,0x79,0xef,0x64,0x21,0x72,0xfe,0x6,0x7d, + 0xd0,0x8b,0x3e,0x6c,0xee,0x78,0x41,0xfb,0x3e,0x2c,0x9f,0x58,0x4e,0x78,0x68,0x66, + 0x24,0xae,0x85,0x19,0x5a,0xcb,0x2c,0x35,0xae,0xa,0xb7,0xcd,0xba,0xa4,0x6b,0xa0, + 0xc4,0x8e,0x8d,0x69,0xa9,0x91,0x0,0xee,0xa,0xd7,0x67,0x7,0x9f,0x5b,0xe7,0xe1, + 0xb9,0xe0,0xc7,0xa2,0x10,0x7c,0x49,0xb1,0xe2,0xdf,0x67,0x8b,0xef,0x9d,0xd1,0x98, + 0xb1,0xf2,0xdf,0x67,0x8b,0xc6,0x8f,0xd1,0xcb,0x84,0xf4,0x38,0x20,0x99,0x3,0x5d, + 0xe7,0xbf,0xee,0xb3,0x52,0xfe,0x9f,0x1f,0x7e,0xca,0xff,0x94,0xff,0x29,0xff,0x53, + 0xfe,0xff,0xd7,0xfc,0x6f,0x23,0xfe,0xab,0xf2,0xdf,0xe7,0x83,0x18,0xa3,0xb6,0x5, + 0x44,0xbf,0xbf,0x83,0x35,0x6e,0x2c,0xcc,0x32,0x5b,0xf8,0xfc,0xd2,0xe7,0x5d,0x60, + 0xeb,0x11,0x35,0xa0,0x4b,0x1b,0x24,0x8e,0xfc,0x1,0xe4,0x8b,0xff,0xd8,0x98,0x2c, + 0xd3,0xd8,0x3e,0x3b,0xda,0xca,0xff,0x22,0xdc,0x2a,0x5b,0x9a,0x70,0x19,0xc6,0x17, + 0x51,0xf6,0x41,0x34,0x5e,0x13,0x5d,0xe4,0xf8,0x57,0x41,0x1,0xe1,0x5b,0x93,0xef, + 0x72,0x1d,0xb0,0x80,0x9,0xec,0x6f,0x83,0xa,0xb0,0x25, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/cdrom_disabled.ico + 0x0,0x0,0x4,0xa2, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x5a,0xb1,0x8e,0x13,0x31,0x10,0xf5,0x71,0x81,0x13, + 0xa2,0xb8,0x14,0x20,0xd1,0x5d,0x4a,0x4a,0xfe,0x80,0x3b,0x81,0x68,0xb9,0x2,0x2b, + 0xd,0x52,0xa8,0x10,0x3f,0x81,0x6e,0xb9,0x8a,0xe,0x3e,0x21,0x42,0x14,0x27,0x47, + 0x22,0x2d,0x15,0x77,0x3f,0xb1,0x3d,0x75,0xa,0x44,0xc1,0x36,0x2b,0x25,0xc3,0x24, + 0x8b,0xb3,0xb6,0x77,0xc6,0x63,0x6f,0x2,0x23,0x59,0x73,0xeb,0xac,0xe7,0xbd,0xf1, + 0xda,0xcf,0xb3,0xab,0x53,0xea,0x40,0xd,0xd4,0x70,0xa8,0xd0,0x8f,0xd4,0xdb,0x81, + 0x52,0xcf,0x95,0x52,0xf7,0xef,0x37,0xd7,0xdf,0xee,0x28,0xf5,0x15,0xfb,0x1e,0x3e, + 0x6c,0xae,0x3f,0xdc,0x55,0xea,0xcd,0x3d,0xa5,0x46,0xa3,0xe6,0xfa,0xa,0xc7,0xfd, + 0xc4,0x7b,0x1f,0xe1,0x18,0xfc,0x13,0x7b,0x9a,0xfe,0xb5,0x9d,0xe,0x54,0x8e,0x1, + 0xe1,0xdd,0xd6,0xb1,0xa2,0x28,0x36,0xfd,0x37,0x37,0x37,0x1b,0xf,0x68,0x6b,0xff, + 0x65,0x3a,0xfd,0x3b,0x6,0x9c,0xe6,0xc7,0x8,0xc7,0x5a,0xdf,0x8c,0x2d,0xb6,0xe3, + 0xec,0x7d,0x6e,0xc,0x6e,0xac,0xc5,0xb7,0xe3,0x9b,0xfb,0x0,0x9a,0xdf,0x7d,0xe, + 0x69,0xf8,0xb6,0xdf,0xcf,0xc1,0x8e,0xd,0x63,0xf8,0xfd,0x5,0xf8,0xf9,0x6f,0x7e, + 0x83,0x70,0x6c,0xe8,0x2d,0x46,0x13,0xb3,0xd8,0x36,0x8b,0x21,0x8c,0x55,0x6e,0x8c, + 0x90,0x9f,0x8b,0x1f,0x72,0x4e,0x7d,0x3e,0xd4,0x58,0x37,0xbe,0xdb,0x6f,0x9f,0x7, + 0x85,0x1f,0x8e,0xfd,0xbb,0x66,0x3a,0x63,0x89,0x18,0xe2,0xd8,0x70,0x3d,0xb4,0xeb, + 0xa2,0xb5,0x30,0x2f,0x8e,0xb3,0x33,0x96,0x8d,0x61,0xf1,0xc3,0xb1,0xe1,0xbc,0x50, + 0x16,0xce,0x7,0x35,0x67,0xdc,0x58,0x2e,0x6,0xb1,0x1e,0xb6,0xb6,0x7c,0xa,0xb0, + 0x78,0xf,0x50,0xe,0x0,0x4c,0x81,0x7e,0xd8,0x78,0x7d,0x6,0x30,0x33,0xe8,0x4b, + 0xbc,0x5e,0x7b,0x8d,0x7e,0x86,0xbf,0xa3,0x5f,0xa0,0xaf,0xc6,0x0,0xf5,0x35,0xc0, + 0x5a,0x67,0x50,0x6e,0x36,0x7a,0x63,0x75,0xe6,0xd3,0x1d,0x89,0x21,0x69,0x92,0xde, + 0xb0,0xba,0x13,0xe6,0xcd,0xe8,0x40,0xb0,0xff,0x68,0x1d,0x4a,0x8b,0x45,0xe9,0x91, + 0x62,0x63,0x72,0xeb,0xa0,0x7d,0xa6,0xbe,0x2e,0x75,0x63,0x76,0x75,0x8a,0x8b,0xe9, + 0xf3,0xb3,0xf7,0xc7,0x75,0x93,0xdb,0x5b,0x21,0x3f,0x7f,0x3d,0xd1,0x3a,0xca,0xed, + 0x35,0x4e,0xb,0xfd,0x79,0xf6,0xe7,0x8f,0xd3,0x73,0x42,0xa3,0xbc,0x98,0x31,0x9d, + 0xe5,0xf6,0x39,0x61,0xe0,0xea,0x2d,0xa5,0xbb,0xfc,0xf3,0xcc,0x5b,0x53,0xfd,0xf9, + 0x45,0x39,0xc4,0x62,0x45,0xf9,0x51,0x67,0x10,0x77,0x4e,0x10,0x39,0x93,0x31,0x28, + 0x2d,0x4a,0xd5,0xfe,0x70,0x9d,0xc6,0x74,0x8d,0xe3,0x29,0xed,0xc1,0xd8,0xdc,0x48, + 0x67,0x52,0xce,0x3a,0xb0,0x63,0x73,0x63,0xb9,0xcf,0x95,0x8b,0x99,0xbe,0x9f,0xe3, + 0x3a,0x4a,0xc5,0xde,0x47,0x2c,0x8e,0x6f,0xec,0x7c,0xb2,0x6,0xe7,0x4f,0xa0,0x9e, + 0x9e,0x40,0x75,0x76,0xc,0x8b,0xe9,0x47,0x28,0x9f,0xbd,0x0,0xf3,0xf9,0x18,0x4a, + 0xbc,0x36,0xd3,0x63,0xd0,0xbf,0x4e,0xc0,0xd4,0x73,0xd0,0xd5,0xa4,0xf1,0x1a,0xbd, + 0xb9,0xc6,0xf3,0x6a,0x2,0x8b,0x8d,0xbf,0x40,0xf,0xb0,0xc4,0xf3,0x6b,0x35,0x6f, + 0xce,0x2d,0x2c,0xa1,0xd5,0x63,0xd5,0x9e,0x5b,0xaf,0xef,0xe6,0x66,0xe2,0x53,0x8c, + 0xf8,0xb0,0x25,0x19,0x57,0xbf,0xd8,0xb5,0xa3,0x32,0xcf,0x34,0xd7,0xb8,0xf5,0x15, + 0xd6,0xcc,0x4d,0x4f,0x6b,0x29,0x18,0x39,0xb1,0x1d,0x8d,0xb6,0xb7,0x44,0x31,0xa4, + 0xfd,0xe1,0xd7,0xeb,0x85,0x13,0x8f,0xc2,0xf0,0xe3,0x4b,0xb1,0xbb,0xfc,0xdd,0xbd, + 0x41,0x5d,0xb7,0xf1,0x39,0x7d,0xa7,0x7d,0x1b,0xdf,0xc7,0xe,0x73,0xa2,0xb5,0x56, + 0xd6,0x38,0x77,0xfe,0x29,0xc,0x9e,0x3f,0xa7,0xaf,0xce,0xbd,0x24,0x46,0xdb,0xe4, + 0xd8,0x91,0xb3,0x25,0xb0,0x70,0x1d,0x75,0x9f,0x75,0xc2,0x39,0x24,0xec,0x95,0x2, + 0xba,0x2d,0x7e,0xce,0x26,0x9c,0xdd,0xd6,0xa2,0xcf,0xcb,0xe5,0x9f,0x5b,0x6b,0x6c, + 0xd9,0xcb,0xe3,0x77,0xe6,0x9f,0x53,0x37,0x64,0x60,0x78,0x7b,0xae,0x4f,0x1d,0x21, + 0xad,0x51,0x6e,0x2d,0xa7,0xd4,0x15,0x5c,0x4d,0x90,0x91,0xaf,0xa8,0xd,0x7d,0x6b, + 0x84,0x14,0xfe,0x7d,0x63,0xbb,0xeb,0x86,0xc3,0x90,0xea,0xb7,0x3e,0xb1,0x25,0x8c, + 0x7d,0xc4,0xe,0x31,0x52,0xeb,0xa9,0x9c,0xd8,0x12,0x46,0xee,0xfe,0xee,0x83,0x95, + 0x52,0x6f,0x59,0x83,0xf2,0x8,0x56,0xe6,0x10,0x96,0x2f,0xf,0xa0,0xbe,0x1a,0x41, + 0x75,0x3e,0x84,0xc5,0xd5,0x7,0x28,0xcf,0x4f,0xc1,0xe0,0x75,0x89,0xfd,0xe6,0xfb, + 0x2d,0xd0,0x17,0xb7,0xc1,0xac,0xc,0x7a,0xdd,0xf8,0x77,0xe8,0xcd,0xc,0xeb,0x2e, + 0xeb,0xc7,0x58,0x7f,0xcd,0xa1,0xc2,0x7a,0xac,0xc6,0x7a,0x6c,0x89,0xf5,0x18,0xcc, + 0x9a,0x3a,0x6c,0x84,0xed,0x54,0xb5,0x75,0x58,0x31,0xdc,0x35,0xe3,0x86,0xba,0xe0, + 0xdd,0xfb,0xc2,0xd6,0xcb,0x24,0xd,0xe8,0x7e,0xf,0x5d,0x37,0xf2,0x7c,0xc9,0xe6, + 0x21,0xe9,0x4e,0x17,0xdb,0x62,0x71,0xe7,0x67,0x91,0xcc,0x21,0x55,0x33,0xec,0xb7, + 0x9,0xb7,0xce,0xa0,0x2c,0x38,0xc7,0xa3,0x1c,0xf2,0xb0,0x37,0x33,0x45,0x61,0x78, + 0xba,0x1c,0xd4,0x73,0x2c,0x7e,0x2a,0x76,0xbb,0x97,0xfd,0x7a,0x34,0xac,0x1b,0xdd, + 0x3d,0x2f,0x71,0xc8,0xd5,0xeb,0xee,0xdc,0xbb,0xba,0xd3,0xe5,0x10,0xc3,0x4f,0xd5, + 0x43,0x29,0x7f,0x5f,0xfb,0x7c,0xe,0x1c,0x7e,0xae,0x26,0x4b,0xf9,0x33,0xf9,0x92, + 0xf9,0x73,0xef,0x63,0xe9,0x67,0x8f,0x8f,0x4f,0x73,0x24,0x79,0x6e,0xf3,0xe7,0xd6, + 0x35,0xc7,0xa1,0xab,0xf9,0xa9,0x1c,0xf8,0xb9,0x4f,0xe5,0x40,0xd7,0x5d,0xd4,0xfe, + 0xb,0x9b,0x3c,0xf7,0x12,0x7,0x97,0x77,0x60,0x5b,0xe,0x3e,0x8f,0xae,0x26,0xb9, + 0xf3,0x93,0xf2,0x7c,0x2d,0x76,0x5a,0xdd,0x5c,0x78,0x3c,0x7c,0xfd,0x2b,0x42,0x6c, + 0xb1,0x8e,0x26,0xe6,0x5c,0xb2,0xed,0x7a,0x88,0xbd,0xdf,0xe4,0xe4,0xef,0xf2,0x4d, + 0x21,0x90,0x9a,0xd3,0xbf,0xcc,0x3f,0x23,0xa7,0x1c,0xec,0xff,0x9e,0x7f,0xfa,0x3b, + 0xb3,0x8f,0x9d,0xae,0x5d,0xe9,0xd8,0xd2,0x3c,0xf4,0xa8,0xab,0x59,0xe,0xbb,0xbe, + 0xf3,0x49,0x1c,0x5c,0x6c,0x2e,0x4f,0x8e,0x77,0xea,0xbb,0x61,0x2,0x87,0xce,0xdc, + 0xa5,0x62,0xe7,0x9d,0x8f,0xdd,0xfb,0x15,0xf1,0xc,0x73,0xf3,0xee,0xcb,0xe1,0x7f, + 0x62,0x47,0x38,0x74,0x4c,0x7a,0x5f,0xdf,0x17,0x87,0x98,0x71,0xef,0xf3,0xbb,0x62, + 0x53,0x6b,0x4e,0xe2,0x20,0x61,0xe7,0x72,0xc8,0xb1,0x7d,0x7d,0x73,0xe8,0x83,0x2d, + 0x71,0xe8,0xa3,0x6f,0xbb,0x5a,0x8f,0xef,0xa,0x7b,0xc3,0x96,0xb8,0xf4,0xf9,0xfe, + 0x60,0xd,0xaa,0x57,0x27,0x60,0xa6,0x47,0xa0,0x4f,0xf,0x57,0xa6,0x38,0x58,0xea, + 0xb3,0xb3,0xda,0x14,0xd3,0x4a,0xf,0xce,0x17,0xe6,0x72,0x54,0xea,0xdb,0x43,0x63, + 0x2e,0x8b,0x12,0xfb,0xd,0xfe,0xae,0xc7,0x37,0x7,0x66,0xfe,0xe3,0x96,0x9e,0xfc, + 0x7e,0x60,0xe6,0xb5,0xd1,0x93,0x4a,0x6f,0xfc,0x18,0xfd,0x6c,0x61,0x4a,0xad,0xb5, + 0x31,0x66,0xb6,0xf6,0x8b,0xc6,0x8f,0xd1,0xcf,0x2b,0xad,0x27,0xb5,0x31,0xd7,0x4b, + 0xad,0x2f,0x56,0xeb,0x7f,0x7c,0x58,0xff,0xc3,0x43,0x3d,0x87,0x3f,0xfd,0xeb,0x8e, + 0x6f, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/floppy_35_empty.ico + 0x0,0x0,0x2,0x99, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xb1,0x4e,0xc3,0x30,0x10,0x3d,0xa4,0xaa,0x52, + 0xc5,0xd2,0x81,0x81,0xb1,0x23,0x23,0x9f,0xc0,0xc4,0x1f,0x64,0x86,0x9,0xf1,0x15, + 0x49,0xda,0x89,0x91,0x4f,0xe8,0xc0,0x80,0x5a,0x9,0x56,0xa6,0x26,0x3f,0xc1,0x6f, + 0xf0,0xb,0xc1,0x4d,0x73,0x4d,0x73,0xc9,0xd9,0x67,0xc7,0x69,0xa9,0xb0,0xa5,0xea, + 0xd9,0x89,0xed,0x7b,0x97,0x26,0x77,0xef,0xc,0x70,0x1,0x23,0x98,0x4e,0x41,0xe1, + 0xc,0x9e,0x47,0x0,0xf7,0x0,0x70,0x75,0xb5,0x1b,0x7f,0x8d,0x1,0x3e,0xd4,0xb5, + 0xeb,0xeb,0xdd,0xf8,0x65,0x2,0xf0,0x74,0x9,0x30,0x9b,0xed,0xc6,0xef,0x6a,0xdd, + 0x8f,0x9a,0x7b,0xa3,0xd6,0xa8,0xae,0xba,0xb2,0xbb,0xbe,0x6d,0x77,0x23,0xd0,0xb5, + 0xc2,0x11,0x21,0x4d,0xd3,0xb2,0x1f,0x27,0x49,0x89,0x9,0x83,0x78,0x1f,0xe7,0x6f, + 0xf7,0xc0,0xfe,0xdb,0x72,0x59,0x62,0xa1,0x9a,0x4,0xf,0xf6,0x80,0x3c,0xcf,0xcb, + 0x7e,0x86,0x98,0x65,0xc,0xe6,0xd,0x5b,0xbe,0xed,0x6f,0x36,0x59,0x85,0x1b,0x6, + 0xb3,0x81,0xed,0x53,0x1e,0x14,0xfb,0xfb,0x8f,0xf3,0xba,0xec,0xe3,0x3d,0x29,0x76, + 0xd9,0xc7,0xbd,0x38,0xd4,0xd9,0x3f,0x7c,0xaf,0xba,0x90,0xee,0xd1,0x65,0xbf,0xde, + 0x7f,0x5e,0xbd,0xbb,0xcd,0x3d,0x25,0xf6,0x17,0x8b,0x45,0x63,0xd,0x5e,0xb7,0xb1, + 0x3f,0x9f,0x2f,0x5a,0x73,0x39,0xfb,0xd8,0x47,0x9c,0x57,0xf6,0x91,0x47,0x42,0xee, + 0x1f,0xae,0xfd,0x8e,0x8a,0x62,0xb5,0x2a,0x8a,0xc8,0x5,0xd7,0x45,0xb1,0x8d,0x33, + 0x2a,0xdc,0x94,0xf1,0x6,0xe3,0xcc,0xeb,0x18,0x74,0xcd,0x35,0xce,0x38,0xc7,0x1d, + 0x97,0x38,0x84,0xb1,0x82,0x8f,0x25,0x4,0xdb,0xef,0xe0,0xfe,0xff,0x96,0x7e,0xd3, + 0xdc,0xb7,0xd6,0xc5,0xcf,0x1c,0x6b,0x8,0x56,0x3c,0x3,0xbf,0x73,0xe1,0x67,0x8a, + 0xe5,0x4,0x33,0xfe,0xfd,0xb3,0xcd,0x2d,0x12,0x7e,0xae,0xa8,0xe3,0x67,0x8a,0xfd, + 0x5c,0x9e,0xd1,0xf1,0x3,0x61,0x3c,0x91,0xc4,0x75,0x9c,0x13,0xc7,0x34,0xae,0x54, + 0x71,0x28,0x8e,0x3b,0x79,0xea,0xf8,0xe1,0x5a,0x9a,0xbb,0x24,0x71,0x9f,0xe3,0x87, + 0x7b,0x22,0xd2,0xeb,0x3e,0xf8,0x49,0x9e,0x1f,0xcd,0x37,0x88,0x34,0x1f,0xed,0xf9, + 0x6a,0xf3,0xd4,0x83,0xca,0x3b,0x9f,0x2a,0xef,0xf8,0xc0,0xac,0xcc,0x5b,0x4a,0x42, + 0xc3,0x2d,0xd4,0x79,0xeb,0x71,0x2,0xba,0x66,0xf5,0x3e,0x59,0x60,0xcb,0x5f,0xdb, + 0x7c,0x36,0x84,0xbe,0xee,0xa3,0xff,0xac,0x73,0xe7,0x0,0xfa,0xbc,0xf,0x7f,0xeb, + 0xdc,0x30,0x80,0xbe,0xf,0xfc,0xcf,0x99,0x7f,0x4e,0xfc,0x90,0xa2,0x3c,0x2e,0xf, + 0xc9,0xdf,0x17,0xea,0xf8,0xff,0x5,0x1d,0xe1,0xa2,0x2b,0xe8,0x18,0x84,0x71,0x5e, + 0x52,0xbf,0x52,0xfb,0x6d,0x9d,0xd1,0xd4,0x1b,0x38,0x46,0x1b,0x2e,0xfc,0x4d,0xfa, + 0x83,0xd3,0xc,0x12,0xfe,0x74,0xef,0x96,0x1e,0x61,0x6c,0x6,0xfe,0x35,0x72,0x67, + 0x7,0x2e,0x3a,0x8b,0xfa,0x61,0x9a,0xb7,0x6d,0xdf,0xaa,0xd0,0x5f,0xa9,0x82,0x3f, + 0x1a,0x4,0xd7,0xa5,0xe,0x9b,0xa9,0xdf,0x1d,0xd4,0x3a,0x2c,0x9d,0x82,0xae,0x59, + 0x7d,0x77,0x1e,0xd1,0x9b,0x4e,0x93,0xea,0x37,0x9d,0x8e,0xeb,0xaf,0xb5,0x64,0x1a, + 0x4c,0x57,0x6f,0xf4,0xcd,0xa5,0xa6,0x1c,0xd5,0xf5,0x1d,0x1,0xf9,0xd6,0xdc,0xb5, + 0x82,0x4c,0x43,0xf8,0xac,0xa7,0x7d,0xf8,0x4f,0xef,0x5,0xff,0x83,0xff,0xc1,0xff, + 0xe0,0xff,0xff,0xf5,0x3f,0x27,0xcf,0xa1,0x2f,0xda,0xeb,0xc4,0x53,0xfa,0x3f,0x34, + 0x1e,0xa3,0x4e,0x3c,0x65,0x1d,0xe9,0xc3,0x7f,0xd7,0x7a,0xd3,0x54,0x7f,0xba,0xf8, + 0xf,0x8e,0xfa,0x96,0xe3,0xa0,0xf3,0x9f,0x72,0xe2,0xeb,0x55,0xc4,0x94,0x60,0xd2, + 0xe0,0xe0,0xc3,0x7f,0x5a,0xdb,0x98,0xea,0x42,0xe4,0xe0,0xc3,0x7f,0xce,0x36,0xad, + 0x1b,0x3b,0xf6,0xe,0xfe,0x7,0xff,0x8f,0xe2,0x3f,0x62,0xcd,0x4d,0xee,0x3f,0x77, + 0xce,0x60,0x3a,0x47,0xa0,0xcf,0x41,0x7a,0xfe,0x40,0xce,0x21,0xa2,0x95,0x6a,0xd1, + 0x69,0x70,0xfd,0xb,0x11,0x29,0x56,0x33, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_active.ico + 0x0,0x0,0x3,0x67, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xd5,0x58,0x3b,0x6e,0xdb,0x40,0x10,0x1d,0x42,0x82,0xd, + 0x23,0x1,0xa2,0xc2,0x85,0x3b,0xab,0x9,0x90,0x32,0x37,0x88,0xab,0x9c,0x23,0x55, + 0x90,0x63,0x6c,0xba,0x54,0x41,0x8e,0x11,0xa4,0x70,0x9d,0x92,0x87,0xf0,0x1,0x74, + 0x82,0x40,0xa5,0xa,0xc3,0xcc,0x2c,0xc9,0xa5,0x97,0xcb,0x9d,0xdf,0x6a,0x19,0x38, + 0x1b,0x3c,0x44,0xa2,0x39,0xef,0x8d,0x65,0xee,0x7b,0xb3,0x2,0x68,0x60,0xb,0xbb, + 0x1d,0xe0,0xff,0x7b,0xf8,0xb2,0x5,0xf8,0x8,0x0,0xd7,0xd7,0xc3,0xfb,0xdf,0x17, + 0x0,0xf7,0x78,0xed,0xe6,0x66,0x78,0xff,0xed,0xa,0xe0,0xf3,0x2b,0x80,0xfd,0x7e, + 0x78,0xff,0x13,0xeb,0xfe,0xe0,0xbd,0xef,0xb0,0x6,0x5f,0xe2,0x95,0xe1,0xba,0x5f, + 0x77,0x5b,0xd0,0xae,0x4e,0x1,0xb2,0xae,0x7b,0xfb,0x6b,0x81,0xfe,0x67,0x2e,0x42, + 0xc2,0x31,0xbb,0xff,0xfb,0xc3,0xc,0xfe,0x7e,0xbf,0x20,0xfe,0x17,0x71,0xf4,0x35, + 0xf,0xc7,0x1,0xbe,0x26,0xbc,0x1e,0xa1,0xae,0xf7,0xb5,0xfe,0x35,0xae,0xb6,0x6d, + 0x27,0x70,0xf5,0x54,0x2d,0xc5,0x11,0x16,0x55,0x1f,0xd7,0xe6,0x38,0x2,0xc2,0x67, + 0x2a,0xe9,0xa7,0x1c,0xf1,0xbd,0x5a,0xfd,0x98,0x43,0x53,0xcf,0x71,0xb0,0xf5,0xe1, + 0x77,0xe0,0x10,0xdd,0x97,0xad,0xd7,0x82,0xaa,0x4f,0x9e,0x9d,0x5,0xb8,0xfa,0xa8, + 0x3f,0x6a,0xdf,0x48,0x9f,0x5f,0xa8,0x77,0xce,0x2d,0x90,0xab,0x5f,0xec,0x9d,0x11, + 0xb9,0x7a,0x8f,0x64,0x4f,0xc2,0x69,0xd3,0x75,0x87,0x6,0xff,0x36,0x48,0xed,0x46, + 0x80,0x12,0xe,0xeb,0xbc,0xcf,0xa0,0xdd,0xf4,0x7e,0x13,0x7c,0xe6,0xc7,0x85,0xda, + 0x67,0x2c,0x7e,0xc3,0xf9,0xce,0x8c,0x47,0xe5,0x3f,0x84,0xf,0x65,0x3f,0x4f,0x8d, + 0x1f,0x65,0x7c,0x65,0xe2,0x4a,0x9f,0x9d,0x1a,0x7c,0x31,0x87,0xc6,0xef,0x24,0xdf, + 0x8b,0x9e,0xeb,0xd8,0x2f,0x48,0xff,0xd3,0xf0,0x25,0x7e,0x62,0xe1,0x93,0xb8,0x24, + 0x7f,0x65,0x7d,0x56,0xe9,0x95,0xb9,0xe7,0x85,0xf3,0x2d,0xc9,0x3b,0x17,0x1e,0x2a, + 0xf8,0xa0,0xe4,0xa5,0xa5,0x7c,0x6a,0x8f,0x37,0xf0,0xa9,0x3c,0x5f,0xf2,0x6d,0xc9, + 0xfb,0x73,0xfb,0xf1,0xdc,0x1c,0xd0,0xe6,0x82,0x26,0x1b,0x72,0xfb,0x9c,0xcb,0x39, + 0x21,0x2b,0x26,0x3f,0x53,0xfe,0x3d,0xb8,0xec,0xc8,0x66,0x48,0x2e,0x47,0x94,0x59, + 0x24,0xf0,0xd1,0x5e,0xca,0x64,0x13,0x95,0x51,0x7e,0x3d,0xc1,0x87,0xee,0x4,0xb7, + 0xdd,0x1,0xde,0x60,0x56,0xd,0x70,0x23,0xc0,0x0,0x87,0x1c,0x2d,0x72,0xf9,0xbc, + 0xc2,0x11,0x1a,0xde,0xc3,0x73,0x6e,0x7d,0xba,0x12,0xd2,0x85,0x5e,0x5c,0x56,0x59, + 0x33,0x6c,0xc1,0x49,0xed,0x3,0x30,0x64,0xda,0x8c,0x58,0xc8,0xb7,0x90,0x49,0x3d, + 0x14,0x99,0xb4,0xe0,0x16,0xf6,0x21,0xeb,0xff,0x8c,0x86,0x76,0x8f,0x97,0xf0,0xb3, + 0xdc,0x96,0x7c,0xd5,0xe6,0x6c,0x69,0xde,0x5a,0xf8,0x33,0x67,0x99,0x6a,0xfc,0xcc, + 0x59,0x47,0xd2,0xe8,0xaf,0x2b,0x66,0x90,0xb0,0x24,0x8d,0x5c,0xe6,0x8b,0x39,0x13, + 0xf1,0x4a,0x1a,0x8b,0x19,0x40,0x91,0x63,0x69,0xe,0x72,0x1a,0x8b,0x8c,0x54,0xf2, + 0x5b,0x34,0x4a,0xf9,0xb5,0x1a,0xe7,0xf0,0x6b,0x34,0xce,0xe5,0x97,0x34,0x4c,0xfc, + 0x96,0x59,0x85,0xf2,0xd8,0xda,0x73,0xcb,0x4b,0xe3,0xd7,0xce,0x4a,0xd4,0xd9,0x48, + 0xda,0xbf,0xb1,0xdf,0xb,0xf3,0x13,0xa4,0x33,0x8a,0x91,0x5f,0x9a,0x57,0x38,0xfe, + 0xac,0xc7,0xd5,0xe3,0xa7,0x33,0xdd,0x30,0x6f,0xa5,0x33,0x57,0xcc,0xdd,0x7d,0xbd, + 0xec,0x1e,0x61,0x83,0xb3,0x57,0xd3,0x1d,0xf1,0xed,0x1,0xd1,0x22,0xdc,0x84,0xc6, + 0x72,0x76,0x9f,0xe0,0xeb,0x5a,0xe4,0xf5,0x73,0xd8,0x1e,0x71,0x7,0xcf,0x73,0x98, + 0xdb,0xe5,0x26,0xb,0xf3,0xd2,0x7e,0x8f,0x50,0x3a,0x9f,0xb1,0x9a,0x92,0x1f,0x4c, + 0xf7,0xd2,0xf3,0x9b,0xa5,0x8f,0xa5,0x26,0xb3,0x77,0x67,0xba,0x54,0xf6,0x2b,0xe6, + 0xc8,0x5e,0x58,0xa9,0x39,0x69,0x6b,0x66,0xf,0xc5,0x9c,0x39,0x69,0x1b,0xbd,0xad, + 0x96,0xfe,0xea,0xda,0x4c,0xf,0x2a,0xed,0x8c,0xc7,0xd6,0xd0,0x17,0xb5,0x47,0xad, + 0x5c,0xfe,0xae,0xae,0x4f,0xe4,0x7e,0x2d,0x7d,0x8d,0x36,0x35,0xdf,0xad,0xaa,0x3f, + 0xce,0xb3,0xd2,0x8c,0x69,0xee,0x41,0xfb,0xd9,0x47,0xfa,0x52,0xf,0xa5,0xfa,0x9c, + 0x76,0x3c,0xd3,0x59,0x7a,0xa0,0xfa,0x98,0x7e,0x26,0x9d,0x23,0xa2,0xdf,0xbd,0xa4, + 0x7,0xf6,0x3b,0x4b,0xcd,0x39,0x23,0xf3,0xdc,0x59,0x7a,0x60,0xcf,0x37,0xda,0x39, + 0x8f,0x39,0x8b,0x68,0x7b,0x20,0x67,0x7c,0xa3,0xfe,0xb9,0x3d,0xd4,0xd0,0x3f,0xa7, + 0x87,0x5a,0xfa,0xa5,0x3d,0xd4,0xd4,0x2f,0xe9,0xa1,0xb6,0xbe,0xb5,0x87,0x35,0xf4, + 0x2d,0x3d,0xac,0xa5,0xaf,0xed,0xa1,0x48,0x3f,0x78,0x60,0xd,0x10,0xdc,0xa2,0xfe, + 0x9a,0xf8,0x1f,0xf4,0xad,0x67,0x6d,0xed,0x19,0x5c,0xf9,0xfc,0xa5,0xd7,0xa0,0xe0, + 0x3c,0xd8,0x6b,0x14,0x3e,0xff,0xe9,0x35,0xcd,0x79,0x57,0x75,0xc6,0x7e,0x41,0xfa, + 0xe4,0xc,0xf4,0x6f,0xf4,0xe7,0x67,0xf,0x1,0x25,0xfa,0xb9,0xef,0x20,0x66,0xdf, + 0x43,0x1c,0x5f,0xdf,0x76,0xe,0x2e,0x9f,0x0,0x36,0x8f,0x0,0xcd,0x9,0x71,0xc4, + 0xeb,0x7,0x44,0x3b,0xc2,0xd,0x68,0x3c,0x72,0x67,0xb6,0x92,0xe5,0xb9,0x90,0x7b, + 0xf3,0x17,0xf3,0xb7,0x3,0x2b, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/network_empty.ico + 0x0,0x0,0x3,0x76, + 0x0, + 0x0,0x1b,0x26,0x78,0x9c,0xed,0x58,0x3d,0x6f,0xdb,0x30,0x10,0x7d,0xb2,0x6c,0x4a, + 0x6e,0x62,0x20,0x29,0x32,0x64,0xcc,0xd8,0xb1,0x3f,0xa1,0x53,0xa7,0xc,0x5d,0x84, + 0x8c,0x5e,0x8b,0xfc,0x8,0x2b,0x40,0xfe,0x48,0xc6,0x42,0x2,0xea,0x4e,0xce,0xe8, + 0x8c,0x9d,0x3,0x18,0x99,0x8a,0xee,0x1e,0x5a,0x2f,0x5e,0x2,0x4,0xec,0xf1,0x8e, + 0x14,0x49,0x49,0x49,0xd1,0x6e,0x45,0x75,0x7,0xe7,0x74,0x9f,0xa4,0x84,0xe0,0x3d, + 0x4a,0x40,0x82,0x31,0x8e,0x8e,0x40,0x36,0xc7,0xc7,0x9,0xf0,0x1e,0xc0,0xc9,0x89, + 0xf8,0xb9,0x2,0x3e,0x53,0xec,0xf4,0x54,0xfc,0xaf,0xe4,0xaf,0xe,0x80,0xb3,0x33, + 0xf1,0x3f,0xe5,0xc0,0xe2,0x35,0xf0,0x86,0x7a,0x68,0x4,0x28,0xcc,0xf1,0x97,0xe4, + 0x88,0x16,0x3b,0x3e,0x3e,0xc6,0xf9,0xf9,0x39,0x2e,0x2f,0x2f,0xb1,0x58,0x2c,0x50, + 0x96,0x25,0xae,0xae,0xae,0x70,0x7d,0x7d,0x8d,0xd5,0x6a,0x85,0xf5,0x7a,0x8d,0xbb, + 0xbb,0x3b,0x6c,0x36,0x1b,0x68,0xad,0x5f,0x9c,0x37,0xc8,0x20,0x83,0xfc,0x2b,0x92, + 0xb4,0xdd,0x31,0x87,0xc6,0x48,0x8d,0x3b,0xc1,0x21,0xb9,0x19,0xbb,0xa9,0xab,0xc8, + 0x28,0x68,0xdc,0xb1,0x54,0x80,0x2e,0x25,0x90,0x99,0xac,0xe4,0xc7,0x32,0x41,0x91, + 0x4a,0xf9,0x58,0xf2,0x33,0x2a,0x97,0xc0,0xa1,0xe4,0x67,0xa4,0x26,0x70,0x28,0xf3, + 0x13,0x3b,0xc1,0x34,0x64,0x26,0x7f,0x80,0x57,0xf4,0xcb,0x58,0x61,0xfa,0x9,0x4, + 0x29,0x60,0x45,0x51,0xf1,0x94,0x2,0x23,0x17,0x98,0x71,0x7f,0x90,0x9f,0xb1,0x26, + 0x3e,0x60,0x74,0xe2,0xdc,0xef,0x17,0x40,0x55,0x3,0x45,0x1,0x6c,0x2b,0xe0,0x1b, + 0xd9,0xaa,0x12,0xbf,0xb1,0x26,0x6f,0xea,0x8,0xf6,0x8a,0x32,0xb6,0x6,0x67,0x9, + 0x9a,0xd9,0xfe,0xe,0x67,0x1d,0xbe,0x86,0xb8,0x6a,0x30,0xf5,0xfe,0xfe,0x7e,0xc0, + 0xd5,0x41,0x6,0xf9,0x7f,0x65,0xc4,0xca,0x32,0xe5,0xb,0x83,0xa6,0x4d,0x70,0xc4, + 0xc0,0xa2,0xe8,0xaf,0xc1,0xb6,0x91,0x1,0x4a,0xc9,0xa6,0x16,0x2e,0x13,0xf6,0xb9, + 0xc6,0xa4,0x5c,0x9d,0x5,0x3d,0x83,0xab,0xb9,0xd5,0x91,0x47,0xca,0xd4,0xba,0x1c, + 0x4a,0xad,0xe6,0xdc,0x68,0xeb,0xa6,0xb6,0xce,0x2d,0xc2,0x75,0x53,0xd6,0x94,0xd1, + 0x2e,0x91,0x69,0x69,0xa3,0x23,0xb7,0x3f,0x2f,0xca,0x33,0x87,0xaf,0x53,0x3e,0x3f, + 0x65,0xaa,0x18,0x87,0x4d,0x42,0x25,0x93,0x78,0x8e,0x6c,0xa6,0x53,0x97,0xfa,0xf1, + 0x2e,0xe8,0x76,0x88,0x6e,0x65,0x23,0x7a,0xbf,0x43,0x5d,0x7d,0x21,0x7c,0xff,0x40, + 0x38,0x2f,0xf6,0x47,0x75,0x83,0x7,0xf6,0x6f,0xa2,0xb8,0xb1,0x9b,0x62,0x87,0x6a, + 0xb9,0xc3,0x66,0xde,0xb5,0xdb,0xf5,0x8e,0xf1,0x9f,0x8e,0xe4,0x78,0x8b,0xbf,0xe7, + 0x81,0x81,0x3,0x6,0x19,0x64,0x10,0xb,0xee,0x56,0xdc,0xd9,0x36,0x62,0x4,0xc3, + 0x9,0xe6,0x38,0xac,0x18,0x29,0x1d,0x5,0xc0,0xf3,0x82,0xf,0x37,0x70,0x2c,0x98, + 0x9b,0x4,0x6a,0xc1,0x5b,0xc2,0x59,0x10,0xe,0x38,0x22,0xb3,0x9,0x25,0x2b,0x38, + 0x20,0xcd,0xb8,0x2e,0xe3,0x4,0xd7,0xe7,0x7c,0xae,0x76,0x89,0x11,0xd7,0x33,0x5f, + 0x28,0xfb,0xe,0xe0,0x66,0x27,0xae,0x5e,0x34,0xeb,0xee,0xc7,0xad,0x90,0x75,0xb7, + 0x89,0x28,0x81,0xb0,0x3e,0xe5,0x7b,0x8,0x48,0xcf,0xad,0xe0,0x12,0xa9,0x7b,0x9e, + 0xc2,0x37,0xca,0xf6,0xc2,0x8f,0x99,0x90,0x4a,0x47,0x20,0x6,0xcb,0x27,0x5c,0xaf, + 0xda,0xdc,0xe3,0xd2,0xad,0x7a,0xc7,0xa4,0x9d,0x84,0xdf,0x51,0x24,0xaa,0xd1,0x56, + 0xa2,0x87,0xdf,0xf4,0x53,0x89,0x7a,0xbb,0x24,0x5e,0xba,0x20,0x5e,0xaa,0xc9,0x16, + 0xf8,0x49,0xf6,0x81,0x6c,0x45,0x2f,0x2c,0x45,0x64,0x6b,0xe2,0x2d,0x67,0x4d,0xfd, + 0x92,0x6c,0x49,0x56,0x93,0xd5,0x8d,0xdd,0x92,0xdd,0x93,0x7d,0xac,0x35,0xf3,0xd8, + 0x19,0xfd,0xde,0xe1,0xcf,0x79,0xec,0xf6,0xf6,0x76,0xe0,0xb1,0x41,0x6,0x19,0xa4, + 0x4f,0x52,0x8f,0xd9,0x5d,0x51,0xcc,0x23,0xad,0x97,0x7,0xff,0x59,0x47,0x48,0x46, + 0x78,0x28,0xf5,0xf5,0x19,0x1c,0x7a,0x7a,0xa,0x69,0x50,0xb4,0x4b,0x85,0xad,0x2, + 0x47,0x89,0xdd,0x82,0x66,0xc7,0x7e,0xdf,0x2f,0xf4,0xc7,0xdc,0xa9,0xfc,0x3d,0xb8, + 0xfe,0x3c,0xe0,0xd0,0x86,0xd0,0x7c,0x7f,0x6e,0xbf,0x6e,0x85,0xcb,0x44,0xcf,0x2d, + 0xb7,0xc4,0xe9,0x67,0x4,0xd4,0x20,0x44,0x97,0x44,0xbb,0x48,0x1c,0x1f,0xb,0xa9, + 0xe4,0xd1,0x68,0xdb,0x1f,0xb2,0x4e,0x27,0x8d,0x0,0xfa,0xfd,0x2,0xad,0xfe,0x34, + 0x58,0x20,0x6f,0x36,0xd8,0xf4,0xc7,0x9a,0x4,0x33,0xec,0xd8,0xf8,0x1e,0xdc,0x87, + 0xbf,0xe0,0xa5,0xb5,0xfd,0xdf,0x93,0xf1,0x77,0x41,0xf4,0xf5,0x77,0xa8,0x32,0xbc, + 0x41,0xd5,0x33,0x2f,0xd8,0x9a,0xe2,0x5f,0xf,0xf7,0xca,0x41,0xc1,0x9d,0x6c,0x3a, + 0xfd,0xe0,0x3,0x83,0x9c,0x24,0x7a,0xfb,0x27,0xf6,0x44,0xf1,0xcc,0xfa,0xbe,0xff, + 0x19,0xee,0xf7,0x85,0xbd,0xfd,0xfe,0x65,0x3a,0xed,0xdf,0x60,0xa8,0x9d,0x34,0xa2, + 0x7,0xd4,0xd3,0xdf,0x7e,0xc4,0x91,0x68,0xbd,0x29,0xb5,0xae,0xd6,0xfb,0xb2,0x98, + 0x6f,0xe9,0x60,0x41,0xe7,0x8d,0xb,0xb2,0xf5,0xd3,0xbe,0x28,0x1e,0xe9,0x22,0xb4, + 0x74,0x1e,0xa9,0x28,0x1f,0xda,0xda,0xd4,0x93,0x5d,0xd2,0xf9,0x64,0x4e,0x76,0x4d, + 0xb6,0x24,0x57,0x6f,0x8a,0xb9,0x7e,0xce,0x6e,0xc9,0xee,0xc9,0x3e,0x56,0x6b,0xfd, + 0xb,0xb9,0x67,0x10,0x20, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_disk_active.ico + 0x0,0x0,0x3,0xd6, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0xbb,0x6e,0x53,0x41,0x10,0x1d,0x2b,0x56,0xa2, + 0x88,0x2,0x17,0x29,0xd2,0xd9,0xd,0x12,0x25,0x7f,0x40,0x2a,0xbe,0x3,0xb9,0x40, + 0x48,0xfc,0x1,0xd5,0x2d,0x29,0xf9,0x84,0x14,0x14,0x11,0x5,0x35,0x74,0xa6,0xe1, + 0x3b,0x22,0x21,0xb9,0x44,0x29,0x29,0x22,0x86,0xdd,0x6b,0x26,0x3e,0x3e,0xcc,0x3e, + 0xee,0xc3,0x89,0x91,0xd8,0x68,0x14,0xfb,0xfa,0xce,0x39,0x73,0xf7,0xee,0x9e,0x99, + 0x59,0x91,0x89,0x4c,0x65,0x36,0x93,0xf0,0x7f,0x21,0xaf,0xa7,0x22,0x2f,0x44,0xe4, + 0xec,0x6c,0xf3,0xfd,0xf3,0xb1,0xc8,0xa7,0x70,0xed,0xfc,0x7c,0xf3,0xfd,0xdd,0xa9, + 0xc8,0xab,0x47,0x22,0x8b,0xc5,0xe6,0xfb,0x55,0xf0,0xfb,0x11,0xee,0x7d,0x1a,0x7c, + 0xc2,0xc7,0x70,0x65,0x73,0x3d,0x8e,0x8b,0xa9,0xc,0x1d,0xa,0xd6,0xdd,0xb7,0x1, + 0xdb,0xc5,0xd0,0xac,0x85,0xfb,0xe3,0x10,0xfc,0xfb,0x83,0xb1,0x5c,0x2e,0x8b,0x56, + 0xf2,0xff,0x70,0x79,0xa9,0x4d,0xd3,0xb4,0x16,0x3f,0xb3,0xd5,0xfa,0xc7,0xff,0xeb, + 0xf5,0xba,0xbd,0x77,0xb5,0x5a,0xdd,0x7d,0x8f,0x9f,0xd,0xc3,0x6,0xfb,0xc7,0x7b, + 0xa2,0xd9,0x88,0xd7,0x10,0x27,0xe2,0xe3,0xfc,0xb5,0xcf,0x45,0xfe,0xc6,0x65,0x3e, + 0x76,0xcd,0xfc,0xe3,0xbd,0x16,0x67,0xc9,0xdf,0xac,0x8b,0xbf,0xc5,0x6f,0x7e,0x7f, + 0xc5,0xff,0xf6,0x4b,0xd2,0x3f,0x5e,0x67,0x5e,0x8b,0x27,0xfe,0xf6,0xe4,0xa3,0xea, + 0x9b,0x6f,0xda,0x62,0xa4,0xfc,0x19,0xc3,0x7c,0xcd,0x22,0x86,0x3d,0x3,0xfb,0xf7, + 0x31,0x5b,0xc3,0x35,0x6b,0xd0,0x5d,0x97,0x7,0x30,0xf4,0x7b,0x78,0x49,0x5f,0x55, + 0xe3,0xf2,0x94,0x4a,0x6b,0x26,0xdb,0x75,0x1c,0x75,0x26,0xc8,0x4d,0xab,0x37,0xa6, + 0x33,0xef,0x8f,0xc7,0xb,0xcf,0xb1,0xfe,0x58,0x8d,0x63,0x5d,0x74,0x28,0xa7,0x47, + 0x3d,0x74,0x29,0xab,0x4f,0x5,0x9d,0x4a,0x69,0x55,0x52,0xaf,0x2a,0x74,0xcf,0xf6, + 0x6c,0x1c,0xb6,0xf7,0xfa,0xe0,0x99,0xe,0xd8,0x1e,0xb6,0xcf,0xc6,0xd1,0x5,0xf, + 0x75,0x9,0x7,0xea,0xab,0xe9,0xa9,0x37,0x52,0x3a,0xcb,0x98,0x9e,0x76,0x7b,0xeb, + 0x25,0xa7,0x9b,0xac,0xbf,0xa8,0x85,0xa8,0xa1,0xa8,0x41,0x29,0x3c,0x9c,0x3b,0xc6, + 0x42,0x4d,0x65,0x4d,0xce,0xe1,0xe1,0xdc,0xb1,0x56,0xd7,0xe2,0xe1,0xfb,0xc5,0x77, + 0xcc,0xf1,0xa2,0xde,0x97,0xf0,0xc,0x93,0xb1,0x52,0xfa,0x5f,0x83,0xe7,0xe5,0x82, + 0x54,0x3e,0xc8,0xbd,0x8f,0xa1,0x66,0x78,0x51,0x5c,0x8c,0x67,0xa8,0xa1,0x66,0xf5, + 0xcd,0x3d,0x87,0x96,0x87,0x4a,0x43,0x7f,0x3e,0x57,0xbd,0x99,0x87,0x3c,0xf5,0x38, + 0xc4,0xdb,0xdd,0xa2,0xdf,0x4a,0xe6,0x3b,0x79,0x2b,0x94,0xd0,0xf2,0x4c,0xb6,0x79, + 0xeb,0xe5,0xe9,0x7e,0x42,0x77,0x6c,0x3c,0xec,0x72,0x4e,0xeb,0x37,0xc,0x2b,0xa3, + 0xd1,0x3b,0x71,0x74,0xb1,0x9c,0xfe,0xf,0xc8,0xa3,0x55,0xf9,0x94,0xf0,0x4d,0x4b, + 0x78,0x8f,0xf1,0x3e,0xde,0xd9,0x7f,0x3,0xf0,0xb9,0xce,0xc7,0x7c,0x81,0x75,0x7e, + 0x1f,0x7c,0xac,0xbb,0x31,0x97,0x71,0xde,0x18,0x82,0x8f,0xd8,0x9c,0x93,0x30,0x27, + 0xe7,0x38,0xda,0xeb,0xb2,0x8b,0xcf,0x39,0x99,0xe3,0x47,0xec,0x9a,0x9c,0x6f,0xba, + 0xcb,0xf8,0xc8,0xe1,0xf5,0x39,0xc8,0x6b,0x6b,0xc9,0xab,0x1,0x72,0xf8,0x5e,0x9e, + 0x65,0x6c,0xcc,0xb5,0x9c,0x17,0x72,0xf8,0x98,0x77,0x71,0xae,0xbc,0x7e,0x11,0x71, + 0x53,0x79,0xce,0x5b,0x3f,0x18,0x37,0xae,0x27,0xf,0x3b,0xe6,0xe3,0x5c,0x9e,0x67, + 0x7c,0x34,0xac,0x1f,0xbc,0x3a,0xc4,0x72,0x7e,0x2e,0xef,0x97,0xf6,0x97,0xe1,0xe3, + 0xfe,0xc2,0x79,0x89,0x1c,0xd1,0x6a,0xe2,0xcf,0xd5,0x16,0xfc,0x7b,0x4a,0x9b,0x52, + 0xf3,0x3f,0xa6,0x71,0x1d,0x33,0x46,0xcd,0xe1,0x3d,0x9f,0xe5,0x80,0x7d,0x71,0x60, + 0x8e,0x19,0xa3,0xce,0xf9,0x17,0xeb,0x9e,0x87,0x1e,0xaa,0x27,0xaa,0xbf,0x8e,0x54, + 0x6f,0x27,0xa1,0x86,0xea,0x98,0xe7,0xc9,0xa2,0xff,0x4a,0xe0,0xf0,0x40,0x37,0x75, + 0xd8,0x22,0xd8,0x85,0x6c,0xeb,0xb0,0x66,0x76,0x5f,0x4f,0xd7,0x8e,0x7d,0xd6,0x67, + 0x65,0xde,0x74,0xfd,0xb6,0xcf,0x38,0xb4,0x58,0xdf,0xf9,0x75,0xe4,0xa0,0xf7,0x6f, + 0xbc,0xc5,0xda,0xc3,0xa9,0x33,0x47,0xdb,0xf3,0x3,0xf8,0xbd,0x3c,0x90,0xab,0x19, + 0xb9,0x76,0xec,0xc4,0x4d,0x31,0xe4,0xf8,0xf9,0xcc,0x94,0x6b,0xb3,0xaa,0x73,0xa1, + 0x9e,0xfc,0xde,0x79,0x45,0xaa,0x36,0x1c,0x9b,0x9f,0x6b,0x8,0x8c,0xc1,0x3b,0xcf, + 0x1e,0x93,0xdf,0xab,0x8f,0x72,0x75,0x71,0xf1,0xdc,0xab,0x3,0x7f,0xaa,0x56,0xe6, + 0xf3,0x36,0x5e,0x17,0x9d,0x63,0x0,0x2d,0xf2,0xf8,0x4b,0xf5,0xba,0x77,0xa6,0x33, + 0x94,0x9f,0xfb,0x19,0xae,0xe7,0x79,0xef,0x71,0xc,0xb8,0xe,0x52,0x71,0xdc,0xfd, + 0x6,0x7d,0x4,0xf2,0x33,0x37,0xd7,0xc6,0xac,0x9,0xde,0x7c,0x99,0xc6,0x7a,0xc3, + 0xeb,0x33,0x98,0xdf,0x3b,0x27,0x2b,0xf1,0x7b,0xf3,0xe4,0xe5,0x1f,0xaf,0xf,0x19, + 0x8b,0x1f,0xfb,0x38,0xae,0xc7,0x73,0x7d,0xd0,0x50,0x7e,0xe4,0x4e,0x9d,0x79,0xe6, + 0xfa,0xa4,0x1c,0x3f,0xee,0x37,0x6f,0xfd,0xe1,0x9c,0xe7,0xce,0x70,0x39,0x6e,0x8f, + 0x1f,0xf7,0x9f,0x8d,0x54,0x4f,0xcb,0xeb,0xae,0x96,0xbb,0x86,0x1f,0xb9,0xf9,0x2c, + 0xdd,0x7b,0x3f,0xac,0xcb,0xc8,0x8f,0xfd,0x63,0xd,0x7f,0x4a,0x83,0x72,0xdc,0xde, + 0xf9,0x34,0xf6,0x98,0x1c,0x43,0xd7,0xf3,0xe5,0x1a,0xfe,0x14,0x37,0xf7,0xb8,0xb5, + 0xfc,0x18,0x43,0xcd,0xb3,0xa7,0xb8,0xb9,0x7,0xee,0xc2,0xef,0xd5,0x1f,0x1e,0x6f, + 0x4d,0xef,0xdd,0x97,0xdf,0x7b,0x1f,0x7d,0x7a,0xf3,0x5c,0x9f,0x6e,0xfc,0xf7,0x69, + 0xc8,0x6f,0x35,0x68,0x9f,0x3e,0x7a,0x88,0x21,0xff,0x43,0xc5,0xc0,0x7d,0xc8,0x3e, + 0xce,0x2,0xfe,0x9f,0x13,0x1c,0xf6,0x50,0xbd,0x9d,0xab,0xde,0x9c,0xa8,0x5e,0x1f, + 0x35,0xf1,0xa8,0x60,0x63,0xa3,0x8f,0x80,0x2d,0xab,0x60,0xd7,0xb2,0x7b,0x50,0xf1, + 0x1b,0x84,0xda,0xd9,0x3, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/mo_empty_active.ico + 0x0,0x0,0x4,0xe, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x59,0xbd,0x6e,0x14,0x31,0x10,0x9e,0x44,0x21,0x52, + 0x44,0x91,0x14,0x41,0x4a,0xc7,0x95,0x94,0x3c,0xc2,0xd1,0x50,0x53,0xc4,0x35,0x54, + 0x88,0xa7,0xc8,0x6d,0x49,0x99,0x47,0xb8,0x82,0x22,0xda,0x48,0xd0,0x45,0x74,0xbc, + 0x41,0xba,0x7d,0x85,0x94,0xbc,0xc2,0xe2,0xdd,0xbd,0xe1,0xec,0x39,0x7f,0x33,0xe3, + 0xbd,0x23,0x38,0xb2,0xbe,0x78,0x6d,0xcf,0x8f,0x7f,0xe6,0xc7,0x47,0x74,0x44,0x27, + 0x74,0x71,0x41,0x11,0x17,0xf4,0xe5,0x84,0xe8,0x3d,0x11,0x5d,0x5e,0x4e,0xed,0x9f, + 0xa7,0x44,0xdf,0xe3,0xb7,0xab,0xab,0xa9,0xfd,0xf5,0x8c,0xe8,0xf3,0x4b,0xa2,0xc5, + 0x62,0x6a,0xdf,0xc5,0x79,0xbf,0xe3,0xd8,0x37,0x71,0x4e,0xfc,0x37,0x7e,0x99,0xbe, + 0xf,0x65,0x79,0x42,0x5a,0xe9,0x1d,0x28,0xeb,0x58,0x9a,0xa6,0xc9,0xc6,0x72,0x5b, + 0x60,0x4f,0x4d,0x52,0x37,0x34,0x78,0xcc,0xe3,0xe3,0x63,0x86,0xdf,0xd6,0xeb,0x2d, + 0xc6,0xf1,0x43,0xa1,0xf4,0x6f,0x4b,0x63,0xec,0x4c,0xf9,0x3d,0x3c,0x3c,0x8c,0xf8, + 0xf4,0xf4,0x34,0xc9,0x65,0xcc,0x4f,0x69,0x48,0x39,0x46,0x5a,0x95,0xfc,0x79,0x2e, + 0xf3,0x1f,0xdb,0x1b,0x1a,0x5c,0x78,0xbe,0x94,0x99,0x31,0xe3,0x9f,0xc8,0xc1,0x35, + 0x59,0x73,0xa8,0x3f,0xa2,0xc9,0x6b,0x5b,0xe2,0xf,0xf6,0x6e,0x87,0x76,0x89,0xbf, + 0xd4,0x1b,0xe9,0x52,0xe2,0xcf,0x63,0x98,0x16,0x42,0x9e,0x5b,0xe2,0x2f,0xf9,0x25, + 0xfb,0x9b,0xd1,0x48,0xfb,0x91,0x7e,0xac,0xc3,0x6a,0xb5,0xca,0x68,0xf0,0xdc,0x94, + 0x3f,0x3a,0xc3,0x3c,0x97,0x51,0xee,0x53,0x69,0x7d,0x25,0xd,0x79,0xb7,0x34,0xfe, + 0x12,0x57,0x2,0x65,0xff,0x50,0xba,0x77,0x7d,0xdf,0x36,0x7d,0x1f,0x68,0xc2,0x6e, + 0x83,0x61,0xf8,0xde,0x46,0xc,0x5,0xbc,0xdf,0xe2,0x60,0x67,0xa2,0xb9,0x19,0xed, + 0xd,0xdb,0x99,0xdb,0x53,0xd2,0x8a,0xc7,0xce,0x30,0xa2,0x9a,0xe9,0xcd,0xdf,0x8c, + 0xb3,0x9b,0xdb,0x1f,0xa7,0x1d,0x72,0xdb,0xa3,0xa,0xbb,0xe0,0xb2,0x4f,0x95,0x76, + 0x2a,0xbb,0x7b,0x7b,0xca,0x27,0xef,0xb1,0x87,0x1e,0xd2,0xf1,0x90,0xf2,0x21,0x7b, + 0x52,0xb2,0xaf,0x5e,0x3b,0x2b,0x91,0xf7,0x59,0xda,0xdb,0x39,0x76,0x57,0x9e,0x1d, + 0x74,0xa6,0x4a,0xf2,0xa1,0xb1,0x68,0x7d,0x4b,0xb6,0x45,0x9e,0x15,0xcb,0xb6,0x4b, + 0xd4,0xec,0x74,0xe6,0xdb,0xa,0xba,0xcb,0x7e,0xcd,0x6e,0x7b,0x51,0xd2,0xac,0xb1, + 0xe3,0x4,0xec,0x8c,0xa4,0xa9,0xad,0x9f,0xa4,0x79,0x73,0x73,0x93,0x21,0xba,0x9b, + 0x25,0xf9,0x24,0x4d,0xf6,0x11,0xc8,0xde,0xd7,0xf8,0x1d,0xcb,0xff,0x78,0x7c,0x8, + 0xa2,0x35,0x47,0xbe,0xb9,0xfe,0x29,0xf3,0x53,0x1f,0x5e,0xf7,0xed,0xfa,0xbc,0xf, + 0xcb,0xf3,0x11,0xbb,0xd,0x72,0x3b,0xc,0xfd,0xed,0x8f,0xe8,0x97,0x3e,0x2a,0xf8, + 0xeb,0x2f,0xe,0xfe,0x2a,0x86,0xd0,0xf4,0x96,0xb6,0x7e,0xeb,0xd3,0x19,0x69,0x45, + 0x3d,0x47,0x6,0xca,0x9a,0xf6,0x57,0xdf,0xcb,0x6c,0xf,0xb0,0x4f,0x1b,0xfb,0xe5, + 0x7e,0xa2,0xfd,0xcd,0xfc,0xdb,0x38,0x70,0x43,0x6b,0xf,0x9f,0x24,0x6d,0x94,0xcb, + 0x9f,0x18,0x7e,0x5,0xd9,0x49,0xa6,0x6d,0xfa,0x97,0x82,0xe,0x55,0xbe,0xeb,0x40, + 0xf2,0x23,0xda,0x30,0xdf,0x70,0xf8,0x49,0xe4,0x7f,0x9e,0x63,0xfd,0x25,0x6f,0x8d, + 0xc7,0x46,0xde,0x9d,0xf3,0xe3,0xf5,0xcd,0xe9,0x19,0x55,0x7c,0x3e,0xa5,0xf2,0xcb, + 0xbc,0xc5,0x5a,0xab,0x9d,0x7b,0x90,0xdf,0x2f,0xd5,0x4f,0x58,0xbe,0xdb,0xf2,0xe1, + 0x9e,0xb8,0x60,0xae,0xcd,0xf0,0xf8,0xb9,0x5a,0xf9,0xd1,0x3e,0x69,0xf2,0x5b,0xf6, + 0xc7,0x3a,0xb,0x25,0xf9,0xb9,0xaf,0x36,0xae,0x40,0x67,0x81,0xa,0xe7,0x1f,0xc5, + 0x3d,0x4,0xec,0xbf,0xe4,0xa1,0xc5,0x41,0x56,0x9e,0xc0,0x71,0x6,0xca,0x49,0xe5, + 0x3e,0x95,0xe4,0x47,0xb4,0xa5,0x7f,0x97,0x31,0x83,0xa4,0x5d,0x23,0xbf,0x15,0x43, + 0xa0,0xf3,0x95,0xac,0xa5,0xe9,0x63,0x2c,0xf9,0x3d,0xb4,0xad,0xb5,0xf2,0xc6,0x40, + 0x9e,0xf5,0xb7,0xe2,0x2b,0x4b,0xfe,0x9a,0x38,0x4b,0xc6,0x5b,0xa8,0x5d,0x8c,0xbb, + 0xc2,0x8b,0x18,0x2f,0x1d,0xf7,0xe1,0xfa,0xa8,0x6f,0xef,0x28,0xc6,0x59,0x94,0xe3, + 0xf0,0x7d,0xe8,0x1f,0xc7,0xb5,0x11,0x83,0x8a,0x5d,0xd6,0xbe,0x1f,0xe3,0xb0,0x45, + 0xac,0x4b,0xda,0xc6,0x61,0xcd,0x5,0x69,0x45,0xbd,0x6f,0x33,0x51,0xd6,0xd2,0xb8, + 0x72,0xfc,0xa5,0xac,0x9f,0x81,0x53,0xc5,0xf1,0x5b,0x9a,0x6b,0xba,0xcf,0x11,0xb2, + 0xa7,0x2,0x7b,0x33,0xbe,0x6b,0x76,0x64,0x80,0xf9,0x3,0xf2,0x7,0xd5,0xb9,0x3f, + 0x8e,0x71,0x4c,0xfd,0x2d,0xff,0x52,0x15,0xfb,0x38,0xe3,0xdc,0xda,0x3d,0xa9,0xe2, + 0xed,0x94,0xc1,0x8b,0xd5,0x6b,0xaf,0xc4,0x99,0xff,0x43,0x7f,0xcb,0x37,0x3e,0xa7, + 0xfe,0x32,0x6,0xf1,0xca,0x70,0x48,0xfd,0x8b,0x79,0x8f,0x72,0x2f,0x3c,0x71,0xb9, + 0xf7,0xec,0x21,0xfd,0x51,0x6c,0xe4,0x7e,0x3b,0xc5,0xfc,0xcd,0x38,0x52,0xca,0xa0, + 0xbe,0xb9,0x25,0x79,0x43,0x89,0x6f,0x9a,0x47,0xd4,0xd8,0x3f,0xf4,0xbb,0x7,0x92, + 0x41,0xcd,0x5f,0x62,0x9d,0x13,0x47,0x5b,0xfd,0xde,0xfc,0xc6,0x93,0x27,0x58,0x6f, + 0x9,0x96,0xc,0xde,0x9c,0xe0,0x5f,0xea,0x2f,0xbf,0x23,0x1d,0x4b,0x7d,0xfb,0xe6, + 0x62,0x56,0x8e,0x36,0x47,0x7f,0xeb,0xfc,0xd7,0xae,0x53,0x4d,0x9e,0x28,0xcf,0xbf, + 0xf5,0xee,0xed,0x3e,0xa3,0xe,0xff,0xef,0xb2,0x3d,0xb4,0xeb,0x37,0x90,0xdd,0xf4, + 0xfc,0xce,0x58,0x9b,0x67,0x4a,0xb4,0x64,0xd0,0xf2,0x8,0xcb,0xf7,0x58,0x79,0x29, + 0x23,0x92,0x41,0xd3,0x1f,0xad,0xb9,0xe4,0x2d,0xf3,0x55,0x46,0xf9,0x5e,0x6e,0xd9, + 0x6e,0x4d,0x7f,0xc4,0x1b,0xe5,0xb5,0x28,0x77,0x43,0xeb,0xa0,0xe9,0x6f,0xbd,0x81, + 0x21,0xde,0x28,0xb7,0xf3,0xfc,0xbe,0x21,0xe5,0x42,0xef,0x23,0xb5,0xfa,0xef,0x73, + 0xff,0x6b,0x79,0x5b,0x6f,0xb,0x25,0xfd,0xa5,0xc,0x87,0xda,0xff,0x39,0xbc,0xbd, + 0xf1,0x6e,0xed,0xfe,0xcf,0xb9,0xff,0x73,0x65,0xa0,0x19,0xfb,0x5f,0xeb,0xc7,0xd0, + 0xfb,0x82,0xf5,0xee,0x50,0x90,0x95,0xba,0x70,0xfd,0xaa,0x6d,0xd7,0xc7,0x21,0x2c, + 0x8f,0xda,0xb6,0x21,0xc6,0x2e,0x10,0x4d,0x6d,0xc6,0xb4,0x7f,0x18,0x3f,0xcc,0x6b, + 0xdb,0x10,0x4b,0xd,0x76,0x79,0xfb,0xfe,0xf,0x46,0x43,0x54,0x4d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/zip_empty.ico + 0x0,0x0,0x3,0x4b, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x5a,0xbd,0x6e,0x1b,0x31,0xc,0x66,0x81,0x20,0x40, + 0xd0,0xc5,0x43,0x86,0x8c,0x1e,0x3b,0xf6,0x11,0x32,0xb5,0x63,0x27,0x21,0xa3,0x3b, + 0x15,0x7d,0xa,0x9f,0xc7,0x8e,0x7d,0x8c,0x42,0x6,0xea,0x35,0x93,0xed,0x97,0xf0, + 0x4b,0x78,0x28,0xbc,0x78,0x31,0xe0,0xa8,0x94,0xaf,0x44,0xce,0xac,0x28,0x51,0x3f, + 0x17,0x1,0xc1,0x97,0xbb,0x88,0xe4,0xc7,0x1f,0x51,0x3c,0x20,0x0,0xef,0xe0,0x6, + 0x26,0x13,0x40,0x9c,0xc2,0xf7,0x1b,0x80,0x4f,0x0,0x70,0x7f,0xdf,0x3f,0x3f,0xdf, + 0x2,0xfc,0xc6,0x77,0xf,0xf,0xfd,0xf3,0x8f,0x3b,0x80,0x6f,0xef,0x1,0xa6,0xd3, + 0xfe,0xf9,0x17,0xca,0xfd,0xc1,0xbd,0x1f,0x50,0x6,0x7f,0xc5,0x37,0xfd,0x7b,0xbf, + 0x1e,0x6f,0x20,0x67,0x39,0x1,0x93,0x32,0x5d,0xd7,0x5d,0x70,0x3e,0x9f,0x5f,0x3d, + 0xc7,0x74,0xd0,0x5e,0xc2,0xed,0x76,0x7b,0xc1,0xcd,0x66,0x73,0xf5,0x4c,0x7f,0xf, + 0xc9,0x3a,0x5c,0x31,0x24,0x5d,0x21,0x1d,0xb4,0x87,0xfe,0x46,0x7b,0xd7,0xeb,0xf5, + 0x15,0xd2,0xfb,0xa1,0x2f,0x5a,0x59,0x42,0xf2,0xc5,0x8b,0x72,0x99,0x94,0x2c,0xd9, + 0x1a,0xc4,0x34,0xdb,0xfe,0xd0,0x7,0xc9,0xbe,0x84,0xdc,0x56,0x6b,0xfb,0xbc,0xe, + 0x38,0x86,0x72,0xc8,0xf3,0xcb,0xed,0x48,0x38,0xb4,0xcf,0xe3,0x2b,0x21,0xed,0x8b, + 0xf9,0x3f,0xcc,0x6f,0x8,0x35,0xf9,0x97,0xfc,0xf,0xc5,0x5f,0xda,0x4b,0x35,0xc2, + 0x71,0x28,0x7b,0x9e,0x39,0xb7,0x5f,0x39,0xb7,0x7b,0x72,0xce,0x2e,0x11,0xd,0xa2, + 0x75,0xce,0x68,0x10,0xf7,0xfb,0x3e,0x83,0xed,0xe6,0xd2,0x6f,0xa8,0xcf,0xfc,0xbc, + 0x85,0x92,0x55,0xd2,0x6f,0x82,0x3a,0x4a,0xfa,0xf,0x5f,0xda,0x7e,0xa4,0xd1,0xcd, + 0xeb,0x53,0x42,0x8d,0x4e,0x89,0x4f,0xaa,0x5e,0x87,0xfd,0x82,0xeb,0x4a,0x9d,0x57, + 0x7e,0x36,0x62,0x3a,0xa5,0xb3,0x98,0xd2,0x19,0x38,0x33,0xff,0xd9,0xd3,0x62,0x48, + 0xa7,0xd4,0x3f,0xb4,0x3c,0x69,0x5f,0xa8,0xef,0x96,0xf2,0xd3,0xf4,0xc1,0x5c,0x7e, + 0xa1,0xbe,0xa4,0xed,0x87,0xbc,0x96,0xde,0x9a,0x5f,0xaa,0xf7,0x4b,0xbd,0x32,0xc4, + 0x2f,0xf7,0x2e,0x18,0xf2,0x3b,0x1c,0xe,0xc1,0x7a,0x4f,0xdd,0xd,0x52,0xbc,0x35, + 0xf1,0x3,0xb9,0xff,0x25,0xe3,0xa7,0xbd,0x3b,0xf8,0x1d,0x12,0x3b,0x73,0x9c,0x1f, + 0xbf,0x43,0x16,0x8b,0x45,0x92,0x1f,0x2d,0x6d,0x5e,0x25,0xbc,0x18,0xc1,0xfb,0xe9, + 0x84,0xf7,0xcd,0xd1,0x74,0x6e,0x6f,0x37,0x78,0x4f,0x75,0x78,0xf,0x79,0x9c,0x21, + 0xae,0xf0,0x3e,0x92,0xf0,0xcb,0xd5,0xb3,0xdf,0xef,0xe5,0xfd,0x7d,0x85,0x23,0x34, + 0x7c,0x84,0xd7,0x7b,0xeb,0xeb,0x1d,0x67,0x9e,0xb5,0xa4,0xfc,0x55,0xeb,0xa4,0x58, + 0x73,0xac,0xb1,0xc5,0x75,0x51,0x2d,0x70,0xc,0xd8,0x4a,0x93,0x66,0xf5,0xa5,0x45, + 0x8d,0x8d,0x52,0xdd,0x1e,0xff,0xf9,0x22,0xda,0x90,0x74,0x4b,0xe7,0x3c,0xc7,0xf, + 0x49,0x26,0x15,0x7f,0x8d,0xd,0x49,0x47,0xa9,0xee,0x41,0xce,0x45,0xfe,0xa5,0xba, + 0x63,0x3d,0x87,0xeb,0xae,0xc9,0x35,0xa9,0x96,0x78,0x6a,0x73,0xc9,0xf7,0x87,0x62, + 0x94,0xe2,0x5f,0x73,0x1e,0x52,0x71,0xd6,0xda,0x28,0xe1,0x5f,0x1a,0xab,0x1c,0xfe, + 0x5a,0x1b,0x35,0xfc,0x4b,0xfd,0x88,0xf1,0x97,0x7a,0xb2,0x84,0xb1,0x33,0x56,0x5b, + 0xe7,0x2d,0xe2,0x9f,0x8b,0x1a,0xfe,0xda,0x79,0x49,0x92,0xcf,0xe1,0xf,0x89,0xf9, + 0xa9,0xa6,0x7e,0x52,0xb9,0x25,0x1b,0x11,0x4e,0xc9,0x1c,0xa7,0x6c,0xc4,0xf8,0xd3, + 0xca,0xad,0x49,0x85,0x5f,0xe0,0x76,0xce,0xbd,0xe0,0xbc,0x74,0xc6,0xb9,0xe9,0x84, + 0xf3,0xd3,0xd1,0x7c,0xc6,0xf9,0x69,0x89,0x73,0x94,0xc1,0x79,0x8a,0xd0,0xe2,0x7c, + 0x95,0x87,0x5e,0xce,0xeb,0xf1,0x73,0xd8,0x14,0x7f,0x1e,0xe1,0x75,0xe,0x5b,0x4c, + 0xb8,0x67,0x45,0x2b,0x55,0x17,0x63,0xac,0x2b,0x1b,0xda,0xba,0x69,0x69,0x5b,0x7b, + 0x5e,0x5a,0x72,0xa9,0xed,0x31,0x35,0x1c,0x5a,0xf7,0xce,0x1c,0xe,0x63,0xf6,0xed, + 0x5a,0xdb,0xb9,0xbd,0x36,0x87,0x43,0xee,0xac,0x51,0xba,0x2f,0xc4,0xa1,0xf5,0x7d, + 0x96,0x9a,0xcb,0xc7,0xb4,0x5d,0xc2,0x41,0x3b,0x1f,0xb5,0xe2,0x30,0xcc,0x41,0x6a, + 0x96,0x69,0x7d,0x1e,0x86,0xfe,0x6b,0x6d,0x8f,0xc9,0xa1,0xd5,0xf7,0x61,0x49,0xe, + 0x72,0xfd,0x6f,0x15,0x87,0x9c,0x39,0xb5,0x96,0x43,0x8d,0xff,0xad,0x73,0x51,0xe2, + 0x7f,0x2d,0x87,0x16,0xfe,0xb7,0x8e,0x43,0xcd,0x77,0x4a,0x2e,0x87,0x96,0xfe,0xb7, + 0x8a,0x43,0x8b,0xef,0x34,0x2d,0x87,0x31,0xfc,0xaf,0x8d,0x83,0xc6,0xff,0x56,0xdf, + 0x1b,0x12,0x87,0x98,0xff,0x63,0x63,0x8b,0xfc,0xd7,0xa2,0xc6,0xff,0xd4,0xbc,0xa7, + 0xc5,0x16,0xfe,0x43,0xfa,0xdb,0x2b,0x88,0x2d,0xeb,0xbf,0xe0,0x5b,0xb7,0x99,0xff, + 0xa5,0xf5,0xaf,0x99,0xc1,0xf8,0x9e,0xb7,0xf4,0x9f,0x56,0xab,0xf3,0x9e,0xc1,0xd, + 0xdc,0x71,0xd6,0xff,0xc3,0x81,0x31,0xdd,0x8b,0xb5,0x9b,0xb3,0x31,0xb3,0x93,0xb5, + 0xab,0xa3,0x31,0x4f,0x7b,0x6b,0x97,0x3b,0x44,0xdb,0xa3,0xf1,0x68,0x7a,0xb4,0xb5, + 0xe8,0xf5,0x79,0xfd,0x7f,0x1,0x3e,0x2f,0xae,0x2a, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/acpi_shutdown.ico + 0x0,0x0,0x3,0x74, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x5a,0x3b,0x6e,0x1b,0x41,0xc,0x7d,0x82,0x5,0xb, + 0x46,0xa,0xa9,0x70,0xe1,0x4e,0x2a,0x53,0xe6,0x6,0x76,0x95,0x73,0xa4,0xa,0x2, + 0xf8,0x10,0x56,0xba,0x94,0x39,0x46,0xaa,0xd4,0x49,0xa7,0xa3,0xe8,0x4,0x81,0x4a, + 0x1,0x31,0x3c,0x99,0xd1,0x7a,0xbd,0xf3,0x21,0x39,0xe4,0xec,0x2a,0x71,0x11,0x2, + 0x84,0xad,0x5d,0xf2,0x3d,0xee,0xcc,0xf0,0xb3,0xb2,0x81,0x19,0xe6,0x58,0xad,0xe0, + 0x7f,0x6e,0xf0,0x69,0xe,0xbc,0x7,0x70,0x7d,0xdd,0x7d,0xfe,0x71,0x9,0x7c,0xf7, + 0xd7,0x6e,0x6e,0xba,0xcf,0x5f,0xae,0x80,0x8f,0x6f,0x80,0xcd,0xa6,0xfb,0xfc,0xcd, + 0xfb,0xfd,0xf2,0xb6,0x6f,0xbd,0x8f,0xff,0xd5,0x5f,0xe9,0xae,0x7,0xb9,0x9b,0x43, + 0x2b,0x8e,0x51,0xa5,0xdf,0x4f,0x46,0x25,0x9c,0xd8,0xce,0x31,0x9a,0xe0,0x24,0xbe, + 0xf7,0xf7,0x9c,0x2d,0x85,0x99,0x63,0xc4,0xfe,0x9d,0x7d,0x2e,0x29,0x4e,0xec,0x9f, + 0x73,0xe3,0xd9,0x3e,0x5d,0xbb,0x1,0x23,0x8f,0x21,0xf6,0xa7,0xec,0xb8,0x7b,0x35, + 0xff,0x72,0xed,0x6d,0xfe,0xc8,0x9e,0xfd,0x6f,0xf8,0xbb,0x97,0x6b,0xa5,0x7f,0xbe, + 0x8f,0xdc,0x1e,0xa4,0x6b,0x1e,0xf3,0x77,0x5a,0xdb,0xff,0xf4,0x59,0xe8,0xfd,0xe0, + 0xcf,0x20,0x15,0x47,0xcf,0x3b,0xdc,0x97,0x73,0xa0,0xb7,0xcb,0x35,0xda,0xcb,0x8a, + 0xb0,0xf9,0x57,0xc8,0x71,0xed,0xdc,0x7e,0xe1,0xdc,0xee,0xc2,0xb9,0xed,0xac,0x53, + 0x2e,0xff,0xfa,0xfb,0xc1,0x36,0xf8,0x4,0xdf,0x50,0x67,0x7c,0xb9,0x39,0xd5,0x9b, + 0xbe,0xce,0x7c,0xbd,0xac,0x47,0x98,0x9,0xb1,0x5e,0xaa,0x7a,0xc3,0xe0,0xb4,0xd4, + 0x1f,0x9,0x47,0x55,0x8f,0xc4,0x3d,0x2d,0xcf,0x2e,0xa5,0xb5,0x3a,0xd7,0xe1,0xe5, + 0xf9,0x72,0xf8,0xed,0x48,0xe5,0xf3,0xa5,0x8e,0x85,0x6c,0x2f,0x74,0x98,0x69,0x1e, + 0xe,0xf6,0x74,0x3d,0x4b,0x6d,0xe4,0x9c,0xa6,0xf9,0x4b,0xcc,0xd2,0x8e,0xae,0x53, + 0x75,0x2c,0xce,0x56,0x8b,0xc7,0xed,0x6d,0x2b,0x1e,0x57,0x8f,0xfe,0x1d,0x5e,0x6a, + 0x47,0xe1,0x49,0xfb,0x21,0x9d,0x17,0x19,0x8f,0xc6,0xa2,0xcf,0x73,0xd,0xaf,0x25, + 0x47,0x64,0x3c,0x9,0x6b,0xc0,0xb3,0xf4,0x1b,0x6b,0xdf,0x88,0xf3,0x6b,0xd0,0xf6, + 0x3e,0x32,0xbe,0x1f,0xd1,0xb8,0x9a,0xfe,0xd4,0xcb,0x53,0xe8,0x37,0xbe,0xf7,0xec, + 0xf1,0xe0,0x76,0xb8,0x3d,0xe9,0x16,0xeb,0x93,0x2,0x4b,0x52,0xfb,0xfb,0xbd,0x7d, + 0xf0,0xd,0x18,0x1,0x2b,0xf4,0x2b,0x3f,0x42,0xe3,0x1d,0x86,0xbe,0xf5,0xe1,0xca, + 0xfe,0x24,0xcf,0x42,0xac,0x77,0x53,0xff,0x62,0x30,0xab,0xfd,0xcc,0xc8,0xc5,0xd5, + 0xa6,0x5c,0xb,0x2e,0x15,0x76,0x7d,0x16,0xa7,0x78,0x35,0x1c,0x39,0x76,0x87,0xc3, + 0x9,0xdd,0x57,0xf9,0x1c,0xa2,0xe6,0x78,0x8d,0xb4,0xd4,0x90,0x12,0xa3,0x7c,0x5f, + 0xd0,0x73,0x94,0x33,0x78,0x89,0x4b,0x9f,0x1d,0x9a,0x43,0x87,0x2f,0x9f,0xa1,0x81, + 0x47,0xc6,0xe7,0xb1,0xcb,0x73,0xc4,0x9d,0x51,0x89,0xe3,0xb5,0xe0,0x4b,0xb3,0xde, + 0x14,0xf8,0x5c,0xff,0x78,0x4d,0xf8,0x12,0x47,0x89,0xd1,0xf7,0x3c,0x89,0xb7,0x7e, + 0xfe,0xe5,0xfe,0x4f,0xdb,0xd6,0xe7,0xa,0x2b,0xbe,0x3e,0x7f,0x53,0xe,0xd,0xbe, + 0xae,0x96,0xd2,0x1c,0xb6,0xf9,0x88,0xc3,0xae,0x71,0x48,0xf8,0x5a,0x6c,0x89,0x43, + 0x5a,0x6b,0xb,0x76,0xca,0xa1,0x9d,0xa7,0xe4,0xd9,0x8c,0xe7,0xd0,0xcf,0x57,0x2d, + 0x33,0x16,0xcd,0x65,0xc5,0x74,0x9f,0x9d,0x7b,0xf4,0xb3,0xd3,0xd1,0xcf,0x51,0x7, + 0x3f,0x53,0xed,0xb1,0xf0,0xb3,0xd4,0x85,0x9f,0xab,0x66,0x2f,0x8a,0x62,0x6d,0x3a, + 0x8d,0x6d,0x82,0x4f,0xf0,0xd,0x18,0x1,0x2b,0x60,0x6,0xec,0x30,0x87,0x6d,0xbc, + 0xde,0x61,0x98,0xc3,0xb6,0xab,0x71,0x4f,0xdb,0x87,0x5e,0xd1,0x73,0x48,0x84,0xcf, + 0xad,0xf9,0xd8,0xd9,0x4d,0xe2,0xd5,0xcc,0x74,0x54,0x3f,0x1a,0x13,0x7,0xcf,0xc9, + 0x9f,0x6b,0x2e,0x16,0x7b,0xe,0xe5,0x78,0x7c,0xfe,0xd0,0xf9,0x36,0xb6,0x46,0xe4, + 0xdc,0x31,0xf,0x27,0x79,0x2c,0xd3,0xd4,0xc0,0xb4,0xf,0x6b,0xc5,0x1e,0xc3,0x74, + 0xdc,0x6d,0x31,0x50,0x73,0x15,0xcd,0xd,0x26,0xf7,0x75,0x31,0x68,0x7a,0x28,0xcd, + 0x3d,0x70,0xc9,0xb9,0x6f,0x8f,0x21,0xff,0x3b,0x85,0x6,0x43,0xce,0x37,0xd9,0xdf, + 0xc6,0xaf,0xe3,0x96,0xd7,0x8f,0xe7,0xaf,0xaf,0xfd,0xf4,0xfc,0x71,0xc,0x53,0x3f, + 0xbb,0x75,0xd,0xda,0xf8,0x75,0xb5,0xf7,0x3c,0xfc,0x54,0xd,0xd6,0xd4,0x8e,0xe9, + 0x9e,0xbf,0x7c,0x37,0xf9,0xcf,0x3f,0x5,0xbf,0x2d,0x77,0xb4,0xf7,0x25,0x9b,0xb6, + 0xfa,0x33,0x96,0x7f,0x6c,0xfd,0x95,0xf8,0xc7,0xd6,0x5f,0x7d,0xfc,0x5a,0xfe,0x29, + 0x7a,0x60,0x2b,0xbf,0x8e,0x9b,0xe2,0x4f,0xb1,0x5a,0xf8,0x6d,0xf3,0x87,0x1c,0x83, + 0x95,0xdf,0xce,0xad,0x8b,0xc1,0xc2,0x6f,0xe7,0xae,0xc5,0x60,0xd9,0xe3,0x56,0xee, + 0x34,0x6,0xa9,0xb7,0xa5,0xca,0xbf,0xa7,0xd8,0xb9,0x87,0x18,0xe2,0x38,0x34,0xdf, + 0xfb,0xd1,0xef,0x29,0x63,0x85,0x7e,0xc7,0x39,0xef,0x77,0xb,0xf5,0x58,0x68,0xb5, + 0x89,0x3b,0x2c,0x4f,0xff,0x7c,0xf0,0x4,0x3c,0x3c,0x2,0xb7,0x47,0x60,0x7d,0x0, + 0x96,0x7b,0x60,0xb1,0x3,0x2e,0x82,0x6e,0x81,0x59,0xaf,0x35,0xbc,0xd8,0xb6,0xf7, + 0xf,0x58,0x1,0x33,0x60,0x7,0x8e,0xc0,0x75,0xfa,0x87,0x7,0xcf,0xfd,0x7,0xbd, + 0x87,0xe1,0x91, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cad.ico + 0x0,0x0,0x3,0xf6, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x40,0xc,0xa6,0xe1,0x20,0x46, + 0xd0,0xc1,0x1e,0x32,0x64,0xb3,0xc7,0x8e,0x7d,0x83,0x64,0xea,0x73,0x64,0x2a,0xfa, + 0x16,0xb9,0x0,0x45,0xd1,0xb1,0x8f,0xd1,0xa9,0x73,0xb2,0xf9,0x51,0x82,0x3e,0x40, + 0xe0,0x4e,0xd,0x50,0xc7,0x57,0x9e,0x54,0x46,0x14,0x45,0x9e,0x78,0x92,0xdc,0x2e, + 0x21,0x40,0xc4,0x3a,0x91,0xdf,0x77,0xba,0x3b,0xf1,0x27,0x2,0x98,0xc1,0x9,0xac, + 0x56,0x80,0x7f,0x37,0xf0,0xf1,0x4,0xe0,0x3d,0x0,0x9c,0x9f,0xd7,0xd7,0x77,0xa7, + 0x0,0xdf,0x71,0xec,0xe2,0xa2,0xbe,0xfe,0x72,0x6,0xf0,0xe1,0xd,0xc0,0x66,0x53, + 0x5f,0x7f,0x43,0xbf,0x47,0xb4,0x7d,0x8b,0x3e,0xf8,0x13,0x47,0xea,0xf1,0x24,0x57, + 0x27,0x30,0x44,0xa2,0xd0,0x22,0xbf,0x10,0xda,0xea,0xc1,0xe1,0xf6,0xf7,0xf7,0x6d, + 0x15,0x38,0xa6,0x7f,0x8c,0x8d,0xf,0x17,0xc2,0xb0,0xfc,0x35,0x5f,0x89,0x63,0x61, + 0x84,0x10,0xa2,0xf4,0x97,0x5a,0xe2,0xcf,0xf9,0xc6,0xf8,0x93,0x8f,0x67,0xfe,0xdb, + 0xed,0xf6,0x5,0x43,0xfa,0xf9,0xd6,0x2f,0x30,0x7f,0xed,0xf9,0x6b,0x15,0xfe,0x9d, + 0x33,0x46,0xfb,0x4c,0xf6,0xa4,0x6c,0xff,0x5f,0xf8,0xa0,0x3a,0x67,0x21,0xd2,0x6f, + 0xba,0x6,0xfd,0xfc,0x75,0xe6,0x9b,0x24,0x3d,0x77,0xfd,0xec,0xd,0x9e,0x36,0x7e, + 0xc,0xff,0x74,0x9f,0x24,0xfd,0x26,0x7f,0x6d,0xdc,0x5e,0xf3,0xc0,0xd7,0x20,0x3b, + 0xce,0x25,0x2e,0x63,0xdc,0xcf,0x63,0x7c,0x9a,0xd5,0xba,0xc3,0x65,0x7e,0xe0,0x9a, + 0xc6,0x50,0x3f,0xa1,0xd,0x2c,0xdb,0xfa,0x79,0x1d,0x63,0x8a,0x33,0x18,0x6e,0xaa, + 0x78,0x43,0x71,0xe6,0xeb,0xa9,0xc6,0xe4,0x12,0x79,0xe,0x4a,0x63,0x4e,0xb,0x47, + 0xee,0x7d,0x49,0xc,0x22,0x91,0xb1,0x48,0x9e,0x47,0x71,0x26,0x7b,0xe3,0x5a,0x3b, + 0xb6,0xe8,0xf3,0x23,0x9b,0x92,0x38,0x47,0x58,0x9a,0x90,0x9d,0x37,0xee,0x91,0x5d, + 0x12,0xb6,0x56,0x2f,0x63,0x1e,0x4c,0xf9,0xac,0x64,0xa7,0xed,0x45,0x29,0x9e,0x5c, + 0x7f,0xc9,0x51,0x82,0xa7,0xed,0x81,0xb6,0xe,0x5e,0x3c,0xee,0xc3,0xfd,0x78,0xdc, + 0x1b,0x83,0x47,0xbe,0xcd,0x5c,0xcb,0xf7,0x98,0xef,0xad,0x26,0x7c,0x9f,0x4,0x56, + 0xeb,0x2c,0x48,0x4e,0xf1,0x6e,0xb5,0xec,0xe4,0x79,0x96,0x71,0xbb,0xd1,0xf6,0xbe, + 0x5a,0xef,0x87,0xcc,0x21,0x32,0xde,0xf2,0xb8,0x6b,0xe5,0x12,0x2b,0xa7,0xf4,0xe1, + 0x35,0xf3,0xce,0xc6,0x17,0x28,0xc5,0xcb,0xdd,0xff,0x17,0x78,0x3c,0xdf,0x90,0x58, + 0xf9,0x48,0xde,0xd7,0xcf,0x9b,0xdc,0xdb,0x7c,0x7e,0xca,0xe6,0xa9,0xdb,0x18,0xf, + 0x70,0x13,0xf7,0x70,0x19,0x9f,0x60,0x5d,0xe9,0xe,0x93,0x90,0xa6,0xe9,0x5e,0x40, + 0x5,0xb4,0x5,0xf4,0x49,0xc7,0x9c,0xeb,0xed,0x6d,0x9d,0xb7,0xb0,0x84,0x86,0x77, + 0xd0,0xe4,0xad,0xeb,0x33,0x8d,0xb9,0x48,0xa6,0xca,0x5f,0x2a,0xee,0x14,0xf9,0x2c, + 0x87,0x6b,0xd5,0xac,0x53,0xe4,0x4d,0x2b,0x77,0xca,0xf8,0xed,0xc9,0xa3,0x84,0xef, + 0xc9,0xa5,0x56,0x1e,0x1a,0x82,0x6d,0x49,0x29,0x87,0x65,0xcf,0xe3,0x2f,0xa9,0xc6, + 0xe1,0xcd,0xe3,0x72,0xf,0x9,0x53,0xcb,0xbf,0x5e,0xe,0xb,0x9f,0xef,0x9f,0xc6, + 0x3b,0x14,0x3f,0x77,0x5e,0xc6,0xe2,0xf7,0xd5,0x5f,0x63,0xf1,0xad,0xdc,0x2d,0x9f, + 0x6f,0x2a,0x7c,0x2d,0xcf,0x69,0x35,0x82,0xf7,0xc,0x71,0x7c,0x8d,0xa7,0x0,0x3b, + 0x5b,0x37,0xd0,0x98,0x5c,0x2b,0xfe,0x3e,0xf0,0x73,0x55,0x52,0x47,0xf0,0x33,0xd9, + 0x57,0x9f,0x68,0x73,0xa7,0x3c,0xda,0xe5,0xb0,0xcf,0xa3,0xd4,0x5c,0xef,0x4b,0xf8, + 0x49,0xba,0xb9,0x1a,0x4c,0x1e,0xad,0xa7,0xce,0xd5,0x31,0x3a,0x7e,0xf3,0x2c,0xce, + 0xfa,0xc8,0xac,0x43,0x72,0xf8,0xcd,0xda,0x59,0x31,0xba,0xb1,0x1b,0x83,0xef,0xb1, + 0xb3,0xf0,0xad,0xda,0x46,0xab,0xa7,0x72,0x76,0x1a,0xbe,0xe6,0xc3,0x7d,0x9,0xdf, + 0x63,0x27,0xf1,0x89,0x23,0xa7,0xa5,0x76,0x5c,0xe2,0xc3,0xd,0xbe,0xdc,0x6b,0xac, + 0xbd,0x16,0x58,0x7b,0xcd,0x2b,0x7d,0x82,0x59,0xa5,0x3b,0xbc,0xad,0x69,0xba,0x17, + 0x50,0x1,0x6d,0x6b,0x5d,0xa0,0x2e,0x3b,0x1a,0xae,0xd7,0x55,0x1d,0xb6,0x41,0xbd, + 0x82,0xa6,0xe,0xb,0x2b,0x6d,0x26,0x93,0xc8,0xb1,0xea,0x33,0x17,0xa7,0xa3,0x7e, + 0x9b,0x74,0x2e,0x56,0x1c,0xb2,0xf2,0xb6,0xb7,0xf6,0xf2,0x72,0x5b,0x31,0xcb,0xca, + 0xe5,0xde,0xfa,0x6c,0x28,0xb7,0xd6,0xef,0xe7,0x6a,0x8a,0xa9,0xb9,0x65,0xce,0x3c, + 0x1c,0xe,0x6a,0xcd,0x31,0x74,0xe,0x7d,0xdc,0x39,0x99,0x62,0xe,0x39,0x8c,0x24, + 0xcf,0xbf,0x1e,0xd5,0xf7,0xcf,0x9a,0x43,0x1,0x7f,0xab,0xae,0xf0,0xd6,0xbe,0xed, + 0x1a,0xf8,0xd0,0x99,0x83,0xaf,0x57,0x8,0x59,0xee,0x5c,0x6d,0xdc,0x57,0x63,0xfa, + 0x7a,0x89,0x60,0xee,0x9f,0x57,0x8f,0xc5,0xdf,0xd7,0xef,0x1d,0x93,0xdf,0xdb,0xf, + 0x1e,0x8b,0xdf,0xaa,0x67,0xff,0x27,0x7f,0x9e,0xfb,0x79,0x14,0xbf,0xf5,0xee,0x70, + 0xd9,0xff,0xfc,0xd1,0xa9,0x33,0xab,0xeb,0xe7,0xdf,0x83,0xdf,0x7f,0xf,0x3f,0x28, + 0x71,0x26,0xd7,0xbf,0xc,0xe1,0xe7,0xdf,0xcd,0xac,0x98,0x23,0xe7,0xc1,0xe7,0xa6, + 0xc5,0x6,0x2f,0x3f,0xaf,0x1b,0xe5,0x1c,0x64,0x6f,0x23,0xeb,0xd,0x2b,0x2e,0x95, + 0xc4,0x7e,0xab,0xf7,0xf2,0xd4,0x1b,0xb9,0x78,0xa4,0x50,0x59,0xf5,0x5b,0xa7,0x86, + 0x1a,0x1a,0xf,0x73,0x7d,0x4e,0xbd,0x5e,0xbd,0x35,0x74,0xab,0xdf,0xc9,0xc5,0x3d, + 0x2d,0x4e,0x5a,0x6b,0x6e,0xf7,0xa1,0x6d,0x6e,0xd9,0xaf,0x68,0xb5,0x8e,0xd5,0xdf, + 0xfd,0x7d,0x76,0x73,0x8f,0x49,0x64,0x7f,0xe5,0xed,0xc7,0x7a,0xea,0xdf,0xde,0x33, + 0x36,0x96,0xbf,0xa4,0x2f,0x7c,0xe5,0x7f,0xe5,0xd7,0xf8,0xfb,0x7a,0x74,0xcf,0xff, + 0xb,0x34,0x7b,0xf,0x7f,0xe,0x8b,0x63,0x12,0x7f,0x89,0x7d,0x1f,0x3f,0xcd,0xc1, + 0xa3,0x43,0xed,0x73,0x12,0xd3,0x7,0x20,0xfa,0xf8,0x93,0x3e,0xf2,0x3c,0xc0,0x22, + 0x6e,0x61,0x5e,0xfd,0xa3,0x1,0xf5,0x0,0x30,0xdb,0xa3,0x9d,0xa1,0x33,0xa6,0x73, + 0xb4,0x5d,0x84,0x15,0x2c,0xf1,0xd6,0x1a,0xf5,0x12,0x7a,0xf2,0x49,0xb8,0x98,0xc5, + 0x3f,0x90,0xe1,0x92,0xe0, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/run.ico + 0x0,0x0,0x2,0x9f, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x57,0x31,0x6e,0xdc,0x30,0x10,0x5c,0x41,0x7,0xb, + 0x86,0x8b,0xbb,0xc2,0x85,0x3b,0x5d,0x99,0xd2,0x3f,0x90,0xab,0xbc,0x23,0x55,0xe0, + 0x5f,0x48,0xae,0x92,0x32,0x3f,0x48,0x9b,0x2a,0xb5,0xdd,0x5,0xc8,0x3,0xfc,0x84, + 0xfb,0x41,0x9e,0x10,0x65,0x64,0xf1,0x7c,0x4,0x41,0x51,0xbb,0xe4,0xae,0x42,0x63, + 0x70,0x16,0xa1,0x99,0xe1,0x91,0x87,0x9d,0x25,0x51,0x45,0x3b,0x3a,0x1c,0x8,0x9f, + 0x47,0x7a,0xdc,0x11,0x7d,0x24,0xa2,0xdb,0xdb,0xf9,0xf9,0xf9,0x8a,0xe8,0x27,0xe6, + 0xee,0xee,0xe6,0xe7,0xaf,0xd7,0x44,0x9f,0x6f,0x88,0x8e,0xc7,0xf9,0xf9,0x7,0x78, + 0x7f,0xf0,0xee,0x7,0x70,0xf0,0x2f,0x66,0xe6,0xf9,0x69,0x3c,0xec,0x68,0x69,0x8c, + 0xe,0x79,0x63,0x0,0x77,0x78,0xd7,0x90,0xeb,0x4c,0xdc,0xd1,0x69,0xe4,0xe8,0x9c, + 0xf9,0x2f,0xe,0x52,0x9d,0x90,0x1f,0xd7,0x91,0xf3,0x7d,0x9d,0xd4,0x5a,0xd6,0xf8, + 0x6b,0xdf,0x89,0xc3,0x4f,0x7d,0x27,0x9,0xff,0xfc,0x37,0x8,0xf9,0x3e,0xcf,0xe7, + 0x72,0xf8,0x4b,0xbc,0x35,0x7e,0x6c,0xad,0x1c,0x7e,0x6a,0xad,0x29,0xbe,0x94,0x17, + 0xf2,0xa5,0x3c,0x9f,0x9f,0xc3,0xc3,0xf8,0x3e,0x8e,0xe3,0x17,0xe0,0x9,0x18,0x7a, + 0xa0,0x3,0xf6,0x40,0xd,0x54,0xe,0xb5,0x9b,0xeb,0xe6,0x77,0x9e,0x1c,0x67,0xe2, + 0x4e,0x75,0x6,0xe5,0xe6,0xad,0xde,0x9c,0xeb,0xcc,0xb7,0xab,0x45,0xbb,0xb2,0x3a, + 0x13,0x8e,0xd2,0xba,0x13,0xd3,0x2b,0xa9,0x43,0x4b,0x7a,0xb9,0x75,0x69,0x4d,0xaf, + 0x54,0x97,0x53,0xb7,0x38,0xf5,0x8f,0xab,0xc7,0xad,0x87,0x52,0x3d,0xee,0x1e,0x48, + 0xf4,0x38,0x7b,0x90,0xa3,0x97,0xda,0x83,0x12,0xbd,0x58,0xfd,0xc8,0xd1,0x4b,0xd5, + 0xcc,0xdc,0x9c,0x90,0xd6,0x6d,0x69,0xfd,0xe7,0xea,0x71,0xf3,0x60,0x4d,0xaf,0xb4, + 0xce,0x97,0xea,0x84,0x7a,0xa5,0x3a,0xa1,0x5e,0xa9,0x8e,0xaf,0xa7,0xa1,0x43,0x91, + 0x9c,0x6a,0xbd,0x9c,0xa2,0x9,0x3d,0xd0,0x3a,0xf4,0xf3,0xdc,0x39,0xb7,0xda,0x78, + 0x6e,0xa1,0x85,0xa6,0x7b,0xba,0xe4,0xd6,0xa7,0xeb,0x45,0x7b,0xdd,0xdc,0xa,0x87, + 0x76,0x8e,0xc5,0xf4,0x35,0x73,0x6d,0x49,0x5f,0x2b,0xe7,0xd6,0xf4,0xb5,0x7d,0x64, + 0x39,0xa8,0x97,0xdb,0xa5,0x79,0x2b,0xd5,0x97,0xe6,0x6f,0xae,0xbe,0x74,0xcf,0x4a, + 0x73,0xd4,0x22,0xf7,0x25,0x67,0xa3,0xa1,0x9f,0x3a,0x1b,0x4d,0x7d,0xad,0x3e,0x41, + 0x92,0xad,0xa5,0x7d,0x8d,0x56,0x1f,0x21,0xd5,0xcd,0xd5,0x97,0x66,0xa8,0xa4,0xf, + 0x92,0xf4,0x2f,0x5c,0x7d,0xad,0x3e,0x44,0x5b,0x77,0x49,0x5f,0x4b,0x37,0xd4,0xd7, + 0xd6,0xd,0xf5,0xb5,0x75,0x7d,0x7d,0x3,0xdd,0xd3,0xe9,0x34,0x46,0xfb,0xae,0xc6, + 0xef,0xbb,0x3a,0x60,0xf,0x34,0x40,0xe5,0xd0,0xb8,0xb9,0xee,0xd2,0x87,0x35,0xb1, + 0x3e,0xec,0xef,0x5b,0x1f,0x76,0x4,0x1e,0xe8,0xd2,0x87,0xd,0x87,0xe4,0xb2,0x6c, + 0x7b,0xb1,0xb5,0x61,0xdd,0xab,0x71,0xfc,0x2d,0x7b,0x39,0xae,0xbf,0x24,0x7f,0x2d, + 0xfd,0x39,0xf9,0xbc,0x85,0x7f,0x2a,0xbf,0xb7,0xf4,0xb7,0x3e,0x13,0x49,0x16,0x5a, + 0xac,0xc3,0xba,0x17,0xb5,0xf0,0xd7,0xfc,0x8d,0x6a,0xf5,0xb2,0xd6,0x77,0x19,0xab, + 0x33,0xd1,0xec,0x85,0x73,0xce,0x44,0xdb,0x5f,0x7a,0x26,0x56,0xfe,0xdc,0x33,0xb1, + 0xf4,0xe7,0x9c,0xc9,0x16,0xfe,0x56,0x77,0x19,0x89,0xaf,0xe6,0x5d,0x87,0xeb,0x6d, + 0x71,0x17,0x2a,0xd9,0x6b,0x4b,0xff,0xdc,0x5e,0x5f,0xeb,0xae,0xac,0x7d,0xd7,0xb2, + 0xd8,0x6b,0x2d,0x7f,0xcd,0x7b,0x95,0xc4,0xdf,0xe2,0x3e,0xc7,0xf1,0xb7,0xba,0x47, + 0x72,0xfc,0x2d,0xef,0x99,0x29,0x7f,0x8d,0xdf,0x56,0x8e,0xbf,0xe5,0x5e,0xa7,0xfc, + 0xb7,0xf6,0xd,0xfd,0xb7,0xf6,0xf5,0xfd,0xff,0x83,0xef,0xeb,0x38,0x8e,0xbf,0x81, + 0x5f,0x13,0x3a,0xa0,0x5,0x1a,0xa0,0x2,0xa8,0x7,0x5a,0x60,0xf,0xd4,0x0,0x4d, + 0xe8,0x81,0x16,0x68,0x80,0xda,0xa1,0x71,0x73,0xfd,0xfc,0x4e,0xed,0x38,0xed,0xac, + 0x51,0x39,0xcd,0xd6,0x79,0x38,0xcf,0xc9,0xfb,0x1f,0xb,0x8d,0x4a,0x30, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/hard_reset.ico + 0x0,0x0,0x3,0xbd, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xc5,0x5a,0x3d,0x4e,0x5b,0x41,0x10,0x1e,0xcb,0x8,0x84, + 0x52,0x40,0x41,0x41,0x67,0x97,0x29,0x73,0x3,0xa8,0x72,0x8e,0x54,0x51,0x6e,0x81, + 0xd3,0xa5,0xcc,0x31,0x52,0xa5,0xe,0x1d,0x47,0xb1,0x72,0x0,0x44,0xaa,0x20,0x5, + 0xfc,0xb2,0x63,0x6b,0xf1,0x30,0xfe,0xe6,0x67,0xf7,0xd9,0x62,0xa5,0x11,0xd8,0x6f, + 0xe7,0xfb,0xe6,0xed,0x9b,0xf9,0x66,0x6c,0x99,0x68,0x42,0x47,0x74,0x7e,0x4e,0xe5, + 0xef,0x9c,0xbe,0x1c,0x11,0x7d,0x24,0xa2,0x8b,0x8b,0xcd,0xeb,0x5f,0xc7,0x44,0x3f, + 0xcb,0x7b,0x97,0x97,0x9b,0xd7,0xdf,0x4e,0x89,0x3e,0xbf,0x23,0x9a,0xcf,0x37,0xaf, + 0x7f,0x14,0xbf,0xfb,0xb2,0xf7,0x7d,0xf1,0x29,0xff,0x96,0x77,0x36,0xef,0xf3,0xba, + 0x3e,0xa2,0xec,0x1a,0xc,0x4b,0xf9,0x2d,0x16,0xd8,0x3c,0x1c,0xb9,0xef,0xf6,0x96, + 0x86,0x61,0xd8,0x35,0x85,0xf3,0xca,0x97,0xaf,0xb3,0x5f,0xf5,0x45,0xfc,0x75,0x8f, + 0xc6,0x90,0xd7,0xaa,0x2f,0x5a,0x75,0x9f,0xf4,0x47,0xb8,0xbc,0xf4,0xd9,0x59,0x18, + 0x3a,0x76,0xf9,0xbe,0x3e,0xbb,0xc8,0x5f,0x9f,0x97,0xc6,0xf4,0xfc,0xd1,0x99,0xa1, + 0xfb,0xb2,0xfc,0xe5,0x1e,0xb9,0xaf,0x5a,0xab,0x7f,0xdd,0xbb,0x8d,0x25,0x7e,0x6, + 0xf2,0xec,0xd1,0x92,0xe7,0x8a,0x9e,0xbf,0x8c,0x9,0xe5,0x7f,0xcd,0x4d,0x2f,0x7, + 0xe5,0x99,0xa1,0xf3,0xac,0x71,0x7a,0x35,0x80,0x72,0x5f,0xe5,0xbf,0xbb,0x9c,0xfa, + 0xdb,0x59,0x8f,0xb3,0x61,0x58,0x9e,0xc,0xc3,0xdd,0xb4,0x9c,0xed,0x64,0x63,0x7c, + 0x7c,0xc8,0xea,0x75,0xde,0xcb,0x3e,0xec,0xcb,0x3a,0x53,0xe4,0x66,0xad,0x37,0x55, + 0x67,0xbe,0x1f,0x47,0x11,0xee,0xac,0x5e,0xbd,0x81,0x38,0x3d,0xfa,0xe3,0xe1,0xd4, + 0x3a,0xd2,0xd6,0xa3,0x6b,0x96,0xb6,0xe9,0x7a,0x45,0x39,0x56,0xf1,0x32,0x5a,0x67, + 0xe9,0x4a,0x6,0xcb,0x5a,0x11,0xa6,0x75,0x5d,0xd6,0x5f,0x35,0x84,0x69,0xe9,0xaa, + 0x3e,0x73,0xf4,0x9c,0x23,0x4c,0xb,0x4f,0x9e,0x37,0xe2,0xc9,0xe2,0x79,0xcf,0xb3, + 0x15,0x2f,0xea,0x5f,0xad,0x78,0x96,0xb6,0xea,0xf8,0x7b,0xf1,0x90,0x6e,0x21,0xcd, + 0xb6,0x9e,0xb1,0xc4,0x43,0xb8,0x19,0x2c,0x84,0x57,0xe3,0xd6,0xf7,0x2e,0xf3,0x51, + 0x3e,0x77,0xaf,0x46,0x64,0x8e,0x44,0xfd,0xc1,0xc2,0x92,0x78,0x28,0x3f,0xb4,0xe9, + 0xdc,0x8a,0x34,0x6,0xe1,0x4a,0xeb,0xed,0x23,0x63,0xfb,0x91,0x85,0x9b,0xe9,0x4f, + 0x75,0xad,0xb8,0xdf,0x94,0xde,0xb3,0xa4,0x9b,0xe1,0x8e,0xae,0xd6,0xb6,0xa0,0xd9, + 0xda,0x88,0xce,0xa0,0xd5,0xeb,0x75,0x3f,0xfb,0x32,0x6,0x63,0x71,0xbf,0x2a,0x23, + 0x34,0x7d,0xa0,0x6d,0xdf,0xfa,0x74,0xda,0x7a,0x27,0x2f,0x6b,0x5f,0xfd,0xb,0x62, + 0x26,0xfa,0x59,0x13,0x97,0x95,0x67,0x96,0x2e,0x5a,0xb9,0x6c,0x61,0x5b,0x39,0x68, + 0x69,0xa3,0x57,0x2f,0x19,0x6c,0x34,0xbf,0x7a,0x1a,0xdc,0x8a,0xad,0x35,0x68,0xb5, + 0x5a,0x41,0x4d,0xce,0xf6,0xd9,0x6c,0xbf,0x45,0x3a,0x9d,0xe9,0xbb,0x5a,0xa3,0x9f, + 0xff,0xde,0xc3,0xfc,0xb4,0x38,0x32,0xf8,0x5e,0x2f,0x7e,0xdd,0x93,0x57,0xa9,0x1e, + 0x10,0xe5,0xa0,0x75,0xad,0xde,0x87,0x75,0xf,0x11,0xbe,0x67,0xbd,0xf8,0xd1,0x7c, + 0x37,0x6,0x3f,0x3b,0xef,0xf5,0xe2,0x5b,0xfd,0xf2,0x90,0xf8,0x3e,0xf6,0x73,0x98, + 0xa3,0xde,0x6c,0xc2,0xeb,0xe9,0xcf,0x6f,0x3c,0x9f,0x3c,0xff,0x6b,0xce,0x7f,0x3d, + 0xab,0xe8,0x3a,0xf2,0xe6,0x95,0x16,0x7c,0x59,0x53,0x9a,0x47,0x72,0xa3,0xda,0x88, + 0x34,0x48,0xd7,0x14,0xea,0x27,0x56,0xdd,0xf5,0x68,0x28,0xea,0x27,0x5e,0xbd,0x21, + 0xec,0x2c,0x47,0x54,0xcb,0x1e,0xb6,0xe6,0xc8,0xce,0x53,0xde,0x6c,0xe6,0x71,0x64, + 0xe7,0xab,0x9e,0x19,0xcb,0xe2,0x6a,0xc5,0x1c,0xbe,0x96,0xfa,0x29,0xb3,0xd3,0x63, + 0x99,0xa3,0x1e,0xca,0x4c,0xb5,0xa4,0x93,0x32,0x4b,0x4d,0xcb,0x5c,0x35,0x79,0x31, + 0x22,0x82,0x26,0xf7,0xb0,0xf,0xfb,0x32,0x6,0x63,0x31,0x26,0x63,0xf3,0x1c,0x36, + 0x2f,0x76,0x4d,0xdb,0x39,0x6c,0x71,0x3e,0xe6,0x6e,0xb7,0xa1,0x7,0x76,0x88,0x15, + 0xce,0x6c,0x63,0x67,0x37,0x8f,0x37,0x33,0xd3,0xa1,0x5a,0x1c,0x13,0x47,0xb,0x67, + 0x14,0x4b,0x6b,0xc,0x63,0x7a,0xfb,0xbe,0x34,0xc2,0xc3,0xb3,0xea,0x3a,0xd2,0xc8, + 0x28,0x86,0x88,0x1b,0xe9,0x7,0x9a,0x15,0xbc,0xef,0x43,0xac,0x18,0x32,0xdc,0xba, + 0x7,0xa2,0x65,0xcd,0x2c,0x51,0xc,0x91,0x4f,0xc4,0x8b,0xe2,0xc8,0x7e,0x1e,0xc9, + 0xc4,0x8b,0x16,0x89,0x5a,0x1f,0x13,0x43,0x2b,0x7f,0xe5,0x44,0xb5,0x9e,0x89,0xa1, + 0x85,0x5f,0xed,0x37,0x67,0x8,0x19,0x47,0xb,0x7f,0xb6,0xd6,0xb3,0x7a,0xd4,0x1a, + 0xc3,0xa1,0xb4,0xe6,0xad,0xf8,0x51,0xc,0xbd,0xfc,0x3d,0x3a,0xb7,0x2f,0xfe,0x8c, + 0xce,0x1d,0x92,0xdf,0xab,0xfb,0xd6,0x7a,0x7d,0x4b,0xfe,0x8,0xbf,0x95,0xdf,0xea, + 0x31,0xf5,0x79,0x65,0xee,0x3d,0xa3,0x1,0xd1,0xfd,0xeb,0xf9,0x1a,0xf5,0x88,0x31, + 0xfa,0xeb,0xf1,0xeb,0x38,0x50,0x6f,0x6a,0xe9,0x81,0x19,0xfe,0x28,0x96,0x2c,0x37, + 0xe2,0x47,0x31,0x20,0xcd,0xf7,0x7a,0x5d,0x8d,0xb1,0xee,0x6d,0xe1,0xf6,0xce,0x40, + 0x6a,0x3e,0x98,0x6b,0x53,0x9f,0x6d,0x33,0xfc,0xbd,0xbd,0x28,0xdb,0x97,0x22,0xee, + 0xd6,0x18,0x5a,0x2d,0xc3,0x7d,0xa8,0x18,0x5a,0xb8,0x75,0xc,0x63,0xe2,0xe8,0xfd, + 0xc,0x2f,0x63,0xd0,0x3a,0x93,0xe5,0x94,0x9a,0xd4,0xc3,0x8d,0xe2,0xd0,0xb1,0x1c, + 0xf2,0xbb,0x85,0x4c,0x2c,0xc8,0x5a,0xf1,0x86,0x87,0xb3,0xf5,0x8f,0xf,0x56,0x44, + 0x37,0x4f,0x44,0x57,0x8f,0x44,0xb3,0x7,0xa2,0xb3,0x25,0xd1,0xc9,0x1d,0xd1,0x94, + 0x6d,0x41,0x34,0xa9,0x16,0xc6,0x27,0xf6,0x56,0x7f,0xc6,0x62,0x4c,0xc6,0x66,0xe, + 0xe6,0x5a,0xff,0xe0,0xa1,0x70,0xff,0x7,0xb6,0x51,0x38,0xcc, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/pause.ico + 0x0,0x0,0x1,0x66, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x58,0x3b,0x4e,0x3,0x31,0x10,0x7d,0x11,0xab,0xa0, + 0x88,0x66,0x8b,0x14,0xe9,0xd8,0x92,0x92,0x1b,0x90,0x8a,0x73,0x50,0x45,0x9c,0x21, + 0x55,0x24,0x1a,0x2a,0xc4,0x31,0x10,0x5,0x35,0xe9,0xc8,0x1d,0x38,0x0,0x27,0xa0, + 0x4e,0x37,0x99,0xc5,0x8a,0x62,0x60,0xd6,0xf6,0x64,0xf9,0x8,0xf4,0x2c,0x8d,0x12, + 0x7b,0xe6,0xbd,0xe7,0xcd,0x7a,0x67,0x26,0xb,0xc,0x50,0xa1,0xae,0xa1,0x9f,0xd, + 0x2e,0x2b,0xe0,0x1c,0xc0,0x78,0x1c,0xe6,0x8f,0x43,0xe0,0x41,0xd7,0x26,0x93,0x30, + 0xbf,0x1e,0x1,0xb3,0x23,0xa0,0x69,0xc2,0xfc,0x4e,0x71,0xaf,0x1a,0x7b,0xa2,0x18, + 0xfd,0xaa,0x2b,0x61,0xbd,0x1d,0xd3,0xa,0xa9,0x21,0x86,0x95,0xf8,0xc2,0x98,0x2f, + 0xe5,0x9d,0xc5,0x31,0x29,0x5f,0x14,0x73,0xf3,0x2c,0x82,0x7b,0x31,0xf1,0x9d,0x3e, + 0xe2,0x89,0xff,0x47,0xf8,0xad,0x59,0x78,0xd3,0x17,0xc5,0x18,0xcf,0x59,0xd6,0xb7, + 0xba,0x12,0xe9,0x63,0x6d,0x9e,0xd1,0x74,0xf3,0x96,0x6f,0xb6,0x79,0xe6,0x76,0xf8, + 0x69,0x77,0xf1,0xc8,0xe7,0x12,0x4f,0x6c,0x49,0x6e,0xf1,0xc4,0x96,0xdc,0x2b,0x4f, + 0x2c,0xf9,0xc8,0x47,0x3e,0xf2,0xfd,0x31,0xbe,0x64,0xad,0xf1,0xc4,0xa6,0xea,0x92, + 0x23,0x76,0xb5,0x3e,0x93,0xaf,0xb4,0xb6,0x5e,0x69,0xb,0x8d,0x53,0xec,0xea,0xd6, + 0xc5,0xa8,0x73,0x67,0x80,0x5d,0x8b,0x52,0xb5,0xcb,0x87,0xb3,0xaf,0x3d,0xcf,0x5f, + 0x8a,0x8b,0xef,0x7d,0xc9,0x59,0xf1,0xe2,0xc8,0x4f,0x7e,0xf2,0x93,0x9f,0xfc,0xe4, + 0x27,0x7f,0xb6,0xaf,0xca,0xf6,0x56,0x5e,0x9c,0xd5,0x7,0xa4,0x7a,0xad,0x42,0xdc, + 0x93,0x1c,0xc8,0x77,0x5a,0xdb,0x87,0x35,0x6a,0x53,0xec,0xfa,0xb0,0x45,0x9d,0xdd, + 0x75,0x57,0x4f,0x55,0xda,0x93,0xf5,0xe3,0xe9,0xfa,0xcd,0x4a,0xcf,0x4c,0x5f,0x9e, + 0x8f,0x67,0xce,0x7b,0x66,0xfb,0xf2,0x50,0x9f,0xfa,0xd4,0xa7,0x3e,0xf5,0xa9,0x4f, + 0x7d,0xea,0x53,0x9f,0xfa,0xd4,0xa7,0x3e,0xf5,0x7f,0x54,0xdf,0xb2,0x7d,0xf4,0xdd, + 0x3c,0xa9,0xff,0xad,0xf3,0x82,0x77,0xe,0x7b,0xf0,0xbc,0x1c,0xaf,0xf,0x7f,0xd3, + 0x36,0x70,0xc3,0x6a,0x9c, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/settings.ico + 0x0,0x0,0x4,0x53, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xbd,0x59,0xbd,0x6e,0x1b,0x31,0xc,0xa6,0x7b,0x41,0x8c, + 0x20,0x1,0x9c,0x21,0x83,0x87,0x0,0xf6,0xd8,0xb1,0x40,0x1f,0xc0,0x99,0xfa,0x1c, + 0x99,0x8a,0x3e,0x45,0xad,0x14,0x5,0xda,0xb1,0x8f,0xd1,0xa9,0x73,0xc7,0x7b,0x80, + 0x3e,0x40,0xb7,0x5e,0x5f,0xa0,0xf0,0xe8,0xc1,0x30,0x4b,0xf9,0x2c,0x9b,0x47,0x53, + 0x12,0x75,0xe7,0x84,0x0,0x71,0x27,0xdd,0xf1,0xe3,0x8f,0x4e,0x24,0x65,0x3,0x8c, + 0xe0,0x2,0x6e,0x6f,0x81,0xae,0x73,0xf8,0x70,0x1,0xf0,0xe,0x0,0xee,0xee,0xda, + 0xf1,0xcf,0x4b,0x80,0x1f,0x34,0x37,0x9d,0xb6,0xe3,0xaf,0x57,0x0,0xef,0xaf,0x1, + 0xe6,0xf3,0x76,0xfc,0x9d,0xe4,0xfe,0xd1,0xbb,0xaf,0x49,0x86,0x6e,0x69,0xa6,0x9d, + 0xf7,0xf4,0x70,0x1,0xa5,0x84,0xec,0xca,0x39,0x4f,0xce,0xe1,0x8e,0xfd,0xfb,0xe1, + 0x9e,0xcf,0x65,0x64,0x3d,0x81,0xe7,0xfd,0xfd,0x61,0xbc,0x9f,0x4b,0x62,0x30,0x79, + 0xc,0xef,0x4b,0x9c,0x14,0x46,0x90,0x97,0xef,0x8,0xbb,0x14,0x79,0x4c,0xbe,0x93, + 0x78,0xe6,0x68,0xec,0x98,0x9d,0x8a,0xaf,0xed,0x7d,0x44,0xd6,0x53,0x5d,0xd7,0xf1, + 0x78,0x5,0xd9,0x8c,0x7c,0xf0,0xfb,0x4,0x23,0x11,0xbb,0x20,0xef,0xf8,0x3c,0xc3, + 0x38,0x60,0x5,0xdf,0x22,0xba,0x9d,0x12,0xaf,0x93,0xef,0xa6,0xbd,0x2,0x97,0xf7, + 0xb2,0x81,0x19,0x6,0x86,0x67,0x27,0xb8,0x42,0x3e,0xe8,0xe7,0x18,0x1c,0x37,0x25, + 0x1f,0xc3,0x8,0xb1,0xb4,0xc8,0x73,0xc,0x4e,0x4e,0x89,0x57,0xe,0x83,0x73,0x98, + 0x4b,0xc9,0x6c,0xbf,0x20,0x6e,0x2a,0xc4,0xf5,0x88,0x98,0x16,0x77,0xfd,0x88,0xd8, + 0x10,0xd7,0x34,0x76,0x7b,0xfe,0x4c,0xcf,0x2f,0xc7,0x64,0xc7,0xac,0x65,0x47,0x5c, + 0x2f,0x10,0xff,0x2e,0x11,0x7d,0x9e,0xa1,0x74,0xb3,0xcb,0x37,0x21,0xcf,0x7c,0xbb, + 0xb4,0x58,0x9b,0xa5,0xf2,0x9c,0x93,0x92,0x2f,0xcd,0x41,0x9c,0xa4,0x2c,0xdf,0x4b, + 0xb9,0x5c,0xa2,0x60,0xc9,0x7d,0xc5,0xf7,0x96,0xb2,0xc7,0xcc,0xb9,0x92,0x5f,0x31, + 0x86,0x59,0x9a,0x7f,0xd9,0xde,0xd5,0x74,0x95,0xe4,0xe2,0x6c,0x4e,0x8c,0xe3,0x1d, + 0xd6,0x30,0xab,0x3f,0x93,0xa3,0x3b,0xfb,0x43,0xe4,0x39,0x35,0xf6,0x91,0x9c,0x1b, + 0xb0,0xc2,0x1e,0x97,0xb9,0x37,0x1a,0xfb,0x84,0xaf,0x5a,0x1e,0xd1,0x6a,0x57,0x27, + 0x5e,0x99,0xb5,0x90,0x98,0x9e,0x62,0xbe,0x63,0x21,0x96,0x25,0xdf,0x6b,0x39,0x3f, + 0xe6,0xab,0x29,0xff,0x87,0xf9,0x93,0xcf,0x4c,0xcf,0xc1,0xa5,0xf5,0x40,0xe2,0xc5, + 0x30,0x13,0x75,0x27,0x89,0x19,0xb3,0x33,0x61,0x77,0x96,0x34,0x4c,0x6e,0x7b,0x9, + 0x96,0xf4,0x3d,0x10,0xb7,0xbd,0x4,0x4b,0xfa,0xce,0x6b,0x53,0x98,0xb7,0xc8,0xe3, + 0xca,0x2b,0x5e,0xe2,0x96,0x78,0x43,0x45,0x68,0x3,0x13,0xba,0x9f,0xe0,0xe6,0x66, + 0x82,0xcd,0xcd,0xc,0x6b,0x58,0xa0,0xa3,0x79,0xcf,0xfe,0xfe,0x89,0xde,0x1b,0x7d, + 0x22,0x11,0x5f,0xb7,0xa8,0x7e,0x39,0xe2,0x86,0xee,0x9b,0x9,0xe2,0xea,0x4f,0x5b, + 0xb7,0xa8,0x85,0x86,0x37,0x70,0xac,0x5b,0x8f,0x57,0xa5,0x5e,0xe5,0xcd,0x16,0x7c, + 0xe,0xac,0xe3,0x78,0x48,0x4d,0xe3,0x74,0x8a,0x31,0xac,0xc6,0x9,0x6c,0x94,0x38, + 0xc,0x3b,0x95,0x6f,0xac,0xd8,0x28,0xb1,0xc4,0x58,0xd1,0x61,0xd3,0x15,0xa9,0xad, + 0xa6,0x1a,0x6b,0xf5,0x27,0xa6,0x83,0xe1,0xa8,0xfe,0x15,0xd6,0xf1,0x64,0x9c,0xcb, + 0xea,0x7a,0xbc,0x16,0x67,0xf0,0x73,0xef,0x15,0xd6,0x66,0xd5,0xfe,0xd2,0x5a,0x6d, + 0xfa,0x4e,0xf8,0x5e,0x30,0x60,0x6b,0xbd,0x40,0xf2,0x3b,0xc9,0xc4,0x26,0x56,0x33, + 0xe4,0x37,0xa2,0xae,0x87,0x31,0x86,0xb1,0x1a,0x92,0x5b,0xf,0xe9,0x9f,0x15,0x5b, + 0xab,0xf5,0xea,0x7a,0x48,0xdd,0x6,0xec,0x14,0x7e,0xc7,0xde,0x63,0x2d,0xe2,0x7b, + 0x16,0x7a,0xe1,0xef,0x75,0x70,0x2e,0xe9,0x33,0x32,0x3d,0x40,0xa7,0x7f,0x29,0xa9, + 0xe9,0xb2,0x96,0xc7,0x7a,0x19,0xd9,0xcf,0x94,0xea,0x28,0xe9,0x6d,0xfa,0xf4,0x38, + 0xb9,0x78,0x49,0xff,0xfa,0x60,0xc7,0xf0,0xf9,0x3e,0x88,0x7d,0x87,0xa5,0xf8,0x9c, + 0x64,0x3f,0x64,0xed,0x89,0x52,0x3a,0xb4,0x5e,0xab,0xf,0xe1,0x76,0x86,0xf8,0x8b, + 0x9a,0x26,0x47,0xbc,0xeb,0xb9,0x46,0xc4,0xe0,0x3,0x80,0xdb,0xca,0xe1,0x8a,0xb8, + 0xa9,0x9e,0xa8,0xe7,0xaa,0xa8,0xf7,0x1a,0xed,0x78,0x77,0x5f,0x8f,0x11,0xea,0x9, + 0x42,0xb3,0xc4,0xf6,0xf5,0x25,0x3d,0x5b,0xe2,0x8a,0xee,0x57,0x23,0xe2,0xb7,0x88, + 0xeb,0x65,0xdb,0x87,0xcd,0x89,0x1f,0xe0,0xd8,0x87,0xb9,0xdb,0x21,0x16,0xdb,0x5d, + 0x53,0xf8,0xa5,0xe8,0xb4,0x77,0x1b,0xd2,0xbf,0xe5,0x74,0xc5,0x7a,0x47,0xec,0xd6, + 0x89,0x33,0xdb,0xd0,0xcd,0xab,0x91,0xde,0x12,0x9f,0x43,0xbf,0xa8,0xad,0xb9,0xde, + 0x33,0x55,0xbb,0xfa,0xe8,0xe6,0x3e,0x9d,0xe8,0x88,0xcc,0x47,0x6c,0x18,0xd4,0x6f, + 0xf7,0xbd,0x1e,0x6c,0x38,0x63,0x4f,0xde,0xcb,0x86,0xbe,0x6b,0x62,0xb0,0xc1,0x62, + 0xe3,0x50,0xfd,0x51,0xec,0x44,0x6f,0x1f,0x5d,0xb,0xa3,0x5e,0x63,0x5f,0x6b,0xb2, + 0xd5,0xa8,0xbf,0x73,0x1e,0x28,0xc6,0x4a,0xf5,0xae,0xe9,0xbc,0x78,0xe8,0x89,0xdc, + 0x90,0x58,0xe6,0xcf,0x31,0x6a,0x4f,0x28,0x7b,0x26,0xeb,0x77,0x2f,0x70,0x4d,0xfd, + 0xbf,0xd4,0xed,0x49,0x3b,0xb,0xe4,0x74,0x77,0x6c,0x50,0xce,0x1e,0xc9,0x38,0x19, + 0xf4,0xcb,0x1e,0x3b,0xbb,0xb7,0x4a,0xd7,0x2a,0xa1,0xbf,0x13,0x3,0xe3,0xf7,0x60, + 0x8a,0x53,0x4f,0x1b,0x82,0x1d,0xe7,0xd6,0x9d,0xd3,0xef,0xa9,0xd3,0xfb,0x65,0x6c, + 0x40,0x65,0x3e,0xe5,0xb7,0xf1,0xbc,0x12,0x4,0xd2,0x7e,0xca,0xb3,0x9d,0x21,0xe6, + 0x31,0xdd,0xb9,0x33,0x9f,0xaa,0x5b,0xf9,0xed,0xba,0x4f,0xcc,0x73,0x67,0x42,0x8d, + 0x4e,0xfc,0x3c,0xe6,0x3a,0x95,0x2c,0xfa,0x63,0x67,0x46,0xb5,0xd7,0x2c,0x3c,0x17, + 0x58,0xf5,0xe7,0xce,0x94,0x43,0xce,0x7d,0x1f,0x9f,0xba,0xb1,0xb4,0x9e,0x33,0xcf, + 0x7d,0xf6,0xcc,0xed,0x83,0xe7,0xb6,0x41,0xda,0xf3,0x52,0xba,0x53,0x31,0x89,0xe5, + 0x22,0xed,0xd9,0x4b,0xe9,0xd6,0xd6,0xe9,0x5c,0xba,0x73,0xfa,0xb9,0x1e,0x9e,0xbb, + 0xce,0xa5,0x5b,0xda,0x20,0x49,0xfa,0x79,0xa8,0x7,0xcf,0x40,0x7c,0xbf,0x77,0x6a, + 0xcf,0x19,0x9,0x71,0xb5,0x44,0x6c,0x16,0xb8,0x79,0x9c,0xe1,0xa,0x66,0xd8,0xec, + 0xfe,0xe8,0xb9,0x26,0xf6,0x3f,0x38,0x0,0x8d,0x5b,0x76,0xf7,0xb0,0x81,0x7b,0x58, + 0xc1,0xfd,0x88,0x86,0xe3,0xba,0xe5,0x8a,0xd8,0x8f,0x2b,0x3f,0xe7,0xa6,0x30,0x81, + 0xe9,0xab,0x19,0xdc,0x57,0xb,0x1a,0x62,0xcb,0xed,0xef,0x17,0xbf,0xe9,0xba,0xa1, + 0xf1,0x1a,0x26,0xb8,0x7e,0x35,0xc3,0x4d,0xb5,0xc0,0xed,0x18,0xf1,0x3f,0xa2,0xa8, + 0xec,0x3d, + // K:/emu_dev/86Box_clean_ex_k/src/win/icons/send_cae.ico + 0x0,0x0,0x3,0xeb, + 0x0, + 0x0,0x25,0x96,0x78,0x9c,0xed,0x59,0xbd,0x6e,0xdb,0x40,0xc,0xa6,0x90,0x20,0x41, + 0x90,0x2,0xce,0x10,0xa0,0x1e,0xa,0xc8,0x63,0xc7,0xbe,0x41,0x32,0xf5,0x39,0x3c, + 0x15,0x7d,0x8b,0xc8,0x4b,0xda,0xb1,0x8f,0xd1,0xa9,0x73,0x47,0x3f,0x40,0x1f,0x22, + 0x4f,0x50,0x78,0xcc,0x60,0x98,0xe5,0x49,0x3e,0x99,0xa2,0x78,0x3c,0x9e,0xec,0x14, + 0x5,0x1a,0x2,0xc4,0x49,0x27,0xf2,0x23,0xef,0x8f,0xe4,0xd9,0x0,0x15,0x9c,0xc3, + 0xcd,0xd,0x50,0xbb,0x80,0xcf,0xe7,0x0,0x1f,0x1,0xe0,0xf6,0xb6,0x7b,0xff,0x79, + 0x1,0xf0,0x83,0xfa,0xe6,0xf3,0xee,0xfd,0xeb,0x15,0xc0,0xa7,0x6b,0x80,0xc5,0xa2, + 0x7b,0xff,0x4e,0x7a,0xbf,0x49,0xf6,0x3d,0xe9,0xd0,0x23,0xf5,0x74,0xfd,0x81,0xee, + 0xcf,0xa1,0x94,0x90,0xb5,0x9c,0xf3,0xd4,0x34,0xd8,0x72,0x90,0x8f,0xcf,0xbc,0x2f, + 0xa3,0x1b,0x8,0x2,0xef,0x9f,0xfb,0xf7,0x7d,0x9f,0x89,0xc1,0xf4,0x31,0xca,0x4b, + 0x9c,0x34,0x46,0x2f,0x3b,0x92,0x11,0x7e,0x49,0xfd,0x86,0xd9,0x51,0x65,0x4a,0xf5, + 0x87,0x72,0xdd,0xb3,0xe1,0x7b,0xa3,0x8d,0x93,0x8d,0x3f,0x37,0x7f,0x41,0x7f,0xbd, + 0x5e,0xeb,0x18,0xbe,0xb9,0x6b,0x31,0xa4,0x1f,0x3d,0x56,0x1c,0xdb,0x58,0x57,0xdf, + 0x5f,0xe3,0x7d,0x3,0x7d,0xcb,0xc7,0x4c,0x3a,0xbd,0xdd,0x3d,0x46,0xaa,0x5f,0xf3, + 0x37,0x50,0x18,0x77,0x60,0xae,0xa7,0xf5,0xbf,0x84,0x7e,0xf8,0x1e,0xa9,0x9d,0xff, + 0xbd,0xbe,0xd6,0x6f,0xcd,0x39,0x1b,0xab,0xd9,0xcf,0x69,0xf7,0x5,0x71,0x7b,0x86, + 0xf8,0x5c,0x11,0xd3,0xe2,0x6e,0x96,0x88,0x4f,0x81,0xab,0x3,0x6f,0xe8,0xfb,0xe3, + 0x5b,0x5a,0xb7,0xd9,0x90,0x1f,0x6b,0xc4,0x10,0x67,0x28,0xdc,0xb4,0xf1,0x26,0xc6, + 0x99,0x6f,0x17,0x9a,0xa5,0x62,0x2a,0x8f,0x39,0x96,0x7e,0x69,0xc,0xe2,0x24,0x75, + 0xf9,0x59,0xf2,0xc4,0x23,0x81,0x25,0xcf,0x15,0x3f,0x5b,0xca,0x19,0xb3,0x70,0x7, + 0xf1,0x82,0xb7,0x98,0xc2,0xb4,0x62,0x47,0x3c,0x37,0xc2,0x47,0x64,0xba,0x86,0x9f, + 0x23,0xbc,0xc1,0x99,0x4f,0xc9,0xe7,0xbe,0x73,0xff,0x3c,0xf6,0x33,0x31,0x56,0xc3, + 0x33,0xe7,0x3e,0x13,0x73,0x53,0x78,0xc9,0xb9,0x77,0xee,0x1b,0x1e,0x8b,0x93,0x7e, + 0x3a,0xd7,0x82,0x63,0x6a,0xf1,0x59,0xdb,0x33,0x9,0x2c,0x79,0x26,0xf,0x32,0x89, + 0x78,0x9f,0x8a,0xf9,0x32,0x3e,0xab,0xf1,0x5b,0x70,0xff,0x5d,0x89,0x65,0x32,0xde, + 0xe6,0xe2,0x71,0x69,0x5c,0xff,0x1f,0xf0,0x78,0xbe,0x89,0x94,0xca,0x47,0xf2,0xbb, + 0xc4,0x8b,0x98,0x1a,0x7b,0xbf,0x73,0xc2,0x4d,0xd8,0x44,0xf,0xb8,0x23,0xde,0x42, + 0x4d,0xb9,0x6a,0x86,0x9b,0xc0,0x6f,0x2,0xd7,0xf4,0x7c,0x47,0x5c,0xb7,0xfc,0x4c, + 0xcf,0x2b,0x92,0x23,0x2d,0x95,0x57,0xab,0x2e,0x6f,0x51,0x9,0xd,0x1f,0xe0,0x90, + 0xb7,0x96,0x57,0x9a,0xe5,0xa3,0xe8,0xd8,0x1c,0xa6,0x61,0x1d,0xde,0x8f,0xc9,0x69, + 0x9c,0xc6,0x18,0xc7,0xe5,0x38,0x81,0x8d,0x12,0x87,0x61,0x7b,0x63,0x97,0x42,0xee, + 0xb8,0xa8,0xd8,0xc8,0xc7,0x72,0x23,0xb7,0xba,0x72,0x6c,0x26,0xb6,0xb7,0xf2,0x96, + 0xd,0x86,0xa3,0x8e,0xcf,0x83,0x6f,0xe7,0x4b,0x35,0x67,0x7a,0xd6,0x23,0x99,0x8b, + 0x33,0xf8,0x25,0xfe,0xbb,0x72,0xb3,0xe2,0x7f,0x69,0xae,0x76,0xed,0x13,0x7e,0x16, + 0x1c,0xfb,0x54,0xab,0x5,0xcc,0x7d,0x52,0x30,0x37,0x11,0x9f,0xd7,0x6,0x47,0x9c, + 0x3,0x73,0xc,0xb9,0x7a,0xe1,0x4,0x75,0xc3,0xa8,0x7e,0x48,0x9d,0x83,0xde,0x86, + 0xb3,0x8e,0x90,0xf5,0x84,0xba,0x1e,0x62,0x7c,0x56,0x5d,0xa1,0xd9,0x88,0x7d,0x7d, + 0xab,0xd4,0x2b,0x52,0x2e,0x85,0x1f,0x48,0xcb,0xd5,0x32,0x9f,0xe7,0xe4,0x5e,0xf1, + 0xa7,0xe1,0xa7,0x6a,0x1b,0x89,0x9f,0x93,0xd3,0xf0,0x35,0x1d,0xae,0x1b,0xf1,0x3d, + 0x72,0x12,0x3f,0xda,0xb0,0xb8,0x54,0x8e,0x13,0xee,0x6a,0xc4,0x5f,0x74,0xd9,0x6f, + 0xba,0x4b,0xff,0x16,0x2a,0xaa,0xaf,0xa0,0xe3,0xaa,0xd9,0xf3,0x8a,0xde,0xcf,0x88, + 0xab,0x96,0xb7,0xf4,0xdc,0xdc,0x5f,0x12,0xde,0xcc,0xe4,0x66,0x59,0xb7,0x75,0xd8, + 0x82,0xf8,0x1e,0xe,0x75,0x58,0x73,0xa3,0x79,0x72,0x72,0xd2,0xe3,0xd0,0xdf,0xa1, + 0x71,0xed,0xe6,0x88,0xc9,0x93,0x6d,0xa5,0x6a,0x47,0x1c,0xe6,0x89,0x13,0xfb,0x70, + 0xc8,0x9d,0xc3,0xf1,0xe9,0xf5,0xdf,0x29,0xed,0x8b,0xdc,0x9a,0xab,0x3d,0xf1,0x94, + 0xf6,0x45,0x2d,0x32,0xb2,0x91,0xe8,0x4f,0xf8,0x70,0x54,0xbd,0x3d,0xb5,0xed,0x7d, + 0x98,0x32,0x1f,0x46,0x9d,0x50,0xec,0x83,0x7f,0x4d,0x46,0xf5,0x5a,0xce,0x7,0x8f, + 0x8f,0xee,0x5a,0x52,0xd4,0x6,0xd9,0x35,0x10,0x75,0x5b,0xc1,0x7e,0x50,0xed,0xb7, + 0xb2,0xec,0xac,0x15,0x61,0x59,0xf2,0x25,0xf6,0x33,0x73,0x9e,0xb3,0x9f,0x94,0x2f, + 0xb4,0x5f,0x3c,0x97,0x8a,0x9e,0x90,0xcd,0xd6,0xc9,0x9e,0xf1,0x2b,0x3e,0xc,0x62, + 0x61,0xc9,0x9c,0x4f,0x1d,0xff,0xc0,0x7,0x16,0xb,0x5d,0xf3,0xe4,0xb0,0xcf,0xe7, + 0x20,0xeb,0xc3,0x94,0xb5,0x32,0xec,0xf,0xe6,0xc0,0x79,0xb6,0x5c,0xf3,0xe4,0x5c, + 0xff,0x58,0xbb,0x81,0xe6,0xcf,0xb,0xd9,0x8e,0xf6,0xad,0xba,0x31,0xe7,0x3,0x2a, + 0xfd,0xa5,0x71,0x3f,0x59,0x4f,0x3a,0xe3,0x20,0xfa,0x6d,0xe7,0xee,0x91,0x43,0x5d, + 0xeb,0x4c,0x8a,0x7a,0xa4,0x97,0xb3,0x7e,0x93,0x30,0xee,0x99,0xac,0x86,0x1e,0xde, + 0xf7,0xc4,0x99,0xe0,0xeb,0xd2,0x8,0x1f,0x20,0x51,0x83,0x47,0xfb,0xd1,0x3f,0xcb, + 0x36,0x6f,0xfb,0xf1,0x68,0xb5,0xa6,0x90,0xf7,0xac,0x71,0x24,0x79,0xbf,0x2a,0xbd, + 0x8f,0x79,0xee,0x65,0xaf,0xf6,0x5f,0xed,0xff,0x8b,0xf6,0x73,0x77,0x74,0x69,0xdf, + 0x2b,0xef,0xb1,0x6f,0x61,0x71,0xcc,0x68,0xbf,0x44,0x3e,0x67,0x3f,0xfa,0xe0,0xe1, + 0xa9,0xf2,0x16,0x21,0x6e,0x1e,0x10,0x9f,0xee,0x70,0xbb,0xec,0xfe,0xe4,0x79,0x22, + 0x5e,0xc3,0x35,0x71,0x45,0xc,0x3b,0x92,0xd9,0xb6,0xfc,0x2e,0x72,0x45,0xef,0x97, + 0x7b,0x3e,0x23,0xae,0xf6,0xed,0x25,0xc9,0xce,0x9a,0x39,0xd4,0x24,0x7e,0x7,0x8e, + 0x7c,0xd2,0xcc,0x2b,0xfc,0x3,0x9d,0x56,0xff,0xba, + +}; + +static const unsigned char qt_resource_name[] = { + // texture_vert.spv + 0x0,0x10, + 0xb,0x18,0x84,0x16, + 0x0,0x74, + 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x5f,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x2e,0x0,0x73,0x0,0x70,0x0,0x76, + // menuicons + 0x0,0x9, + 0x5,0xbf,0x85,0xd3, + 0x0,0x6d, + 0x0,0x65,0x0,0x6e,0x0,0x75,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73, + // settings + 0x0,0x8, + 0xc,0xbb,0xb,0xc3, + 0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73, + // texture_frag.spv + 0x0,0x10, + 0xf,0xf9,0x82,0x36, + 0x0,0x74, + 0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x75,0x0,0x72,0x0,0x65,0x0,0x5f,0x0,0x66,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x2e,0x0,0x73,0x0,0x70,0x0,0x76, + // win + 0x0,0x3, + 0x0,0x0,0x7d,0xfe, + 0x0,0x77, + 0x0,0x69,0x0,0x6e, + // icons + 0x0,0x5, + 0x0,0x6f,0xa6,0x53, + 0x0,0x69, + 0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73, + // cdrom.ico + 0x0,0x9, + 0x9,0x60,0x9c,0xff, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cartridge_empty.ico + 0x0,0x13, + 0x4,0x2c,0x17,0xbf, + 0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // ports.ico + 0x0,0x9, + 0x9,0xb6,0xa1,0x5f, + 0x0,0x70, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // network_active.ico + 0x0,0x12, + 0xf,0xe0,0x43,0x7f, + 0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63, + 0x0,0x6f, + // mo_disabled.ico + 0x0,0xf, + 0x9,0xd7,0xb1,0xff, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cartridge.ico + 0x0,0xd, + 0x9,0xc7,0x3f,0xdf, + 0x0,0x63, + 0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x72,0x0,0x69,0x0,0x64,0x0,0x67,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette.ico + 0x0,0xc, + 0x6,0x99,0x1c,0x1f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525.ico + 0x0,0xe, + 0xe,0x9a,0xaa,0x9f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // hard_disk.ico + 0x0,0xd, + 0xd,0x8f,0x5,0x5f, + 0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette_empty_active.ico + 0x0,0x19, + 0x1,0xb0,0x48,0x5f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63, + 0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-green.ico + 0x0,0xf, + 0x9,0x97,0xdc,0x3f, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // network.ico + 0x0,0xb, + 0x6,0x67,0xd8,0x5f, + 0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_35_empty_active.ico + 0x0,0x1a, + 0x6,0xc3,0x3f,0x1f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61, + 0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-red.ico + 0x0,0xd, + 0xf,0xe5,0x99,0xff, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x72,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cdrom_empty.ico + 0x0,0xf, + 0x5,0x7f,0x59,0xff, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-gray.ico + 0x0,0xe, + 0xd,0xa9,0x26,0xbf, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525_empty_active.ico + 0x0,0x1b, + 0x2,0x5e,0xec,0x5f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // mo.ico + 0x0,0x6, + 0x7,0x42,0x4f,0x9f, + 0x0,0x6d, + 0x0,0x6f,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // mo_active.ico + 0x0,0xd, + 0x8,0x6e,0xbb,0x3f, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // sound.ico + 0x0,0x9, + 0xc,0x47,0xbb,0x5f, + 0x0,0x73, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_disabled.ico + 0x0,0x13, + 0xd,0xf,0xbc,0x1f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // other_peripherals.ico + 0x0,0x15, + 0x1,0x1d,0xb8,0xff, + 0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x5f,0x0,0x70,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x73, + 0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette_active.ico + 0x0,0x13, + 0x3,0x88,0xcb,0x5f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // input_devices.ico + 0x0,0x11, + 0xc,0xb2,0x89,0x5f, + 0x0,0x69, + 0x0,0x6e,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x5f,0x0,0x64,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + + // other_removable_devices.ico + 0x0,0x1b, + 0x8,0x86,0x3,0xdf, + 0x0,0x6f, + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x72,0x0,0x5f,0x0,0x72,0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x5f,0x0,0x64, + 0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x63,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cdrom_active.ico + 0x0,0x10, + 0xc,0xb8,0xd4,0xbf, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cassette_empty.ico + 0x0,0x12, + 0xa,0x90,0x58,0x1f, + 0x0,0x63, + 0x0,0x61,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x65,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63, + 0x0,0x6f, + // cdrom_empty_active.ico + 0x0,0x16, + 0xf,0xd0,0x77,0xbf, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76, + 0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_35_active.ico + 0x0,0x14, + 0x0,0x33,0x70,0xff, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // display.ico + 0x0,0xb, + 0x2,0x5e,0x5b,0x7f, + 0x0,0x64, + 0x0,0x69,0x0,0x73,0x0,0x70,0x0,0x6c,0x0,0x61,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // mo_empty.ico + 0x0,0xc, + 0x9,0x32,0xf7,0x1f, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // zip.ico + 0x0,0x7, + 0x1,0x3,0x4e,0x9f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_35.ico + 0x0,0xd, + 0x8,0xc,0xa1,0xdf, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525_active.ico + 0x0,0x15, + 0x2,0x72,0x19,0x5f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65, + 0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // machine.ico + 0x0,0xb, + 0x0,0xa2,0xbc,0x7f, + 0x0,0x6d, + 0x0,0x61,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // 86Box-yellow.ico + 0x0,0x10, + 0xe,0x11,0x6d,0xbf, + 0x0,0x38, + 0x0,0x36,0x0,0x42,0x0,0x6f,0x0,0x78,0x0,0x2d,0x0,0x79,0x0,0x65,0x0,0x6c,0x0,0x6c,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // zip_disabled.ico + 0x0,0x10, + 0x9,0xf6,0x21,0x3f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // zip_empty_active.ico + 0x0,0x14, + 0x6,0xbd,0xeb,0x9f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_525_empty.ico + 0x0,0x14, + 0xa,0x93,0xcd,0x3f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x35,0x0,0x32,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // floppy_and_cdrom_drives.ico + 0x0,0x1b, + 0x2,0x82,0x2a,0x9f, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x5f,0x0,0x63,0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f, + 0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // storage_controllers.ico + 0x0,0x17, + 0xb,0x60,0xd4,0x7f, + 0x0,0x73, + 0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x5f,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x6f,0x0,0x6c,0x0,0x6c,0x0,0x65, + 0x0,0x72,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // cdrom_disabled.ico + 0x0,0x12, + 0x3,0xb8,0x38,0x5f, + 0x0,0x63, + 0x0,0x64,0x0,0x72,0x0,0x6f,0x0,0x6d,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x65,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63, + 0x0,0x6f, + // floppy_35_empty.ico + 0x0,0x13, + 0x7,0xb7,0x23,0xbf, + 0x0,0x66, + 0x0,0x6c,0x0,0x6f,0x0,0x70,0x0,0x70,0x0,0x79,0x0,0x5f,0x0,0x33,0x0,0x35,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // zip_active.ico + 0x0,0xe, + 0x0,0xe,0x9a,0xbf, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // network_empty.ico + 0x0,0x11, + 0xb,0x4d,0xd0,0x9f, + 0x0,0x6e, + 0x0,0x65,0x0,0x74,0x0,0x77,0x0,0x6f,0x0,0x72,0x0,0x6b,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + + // hard_disk_active.ico + 0x0,0x14, + 0x6,0xc7,0xe1,0x9f, + 0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x6b,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e, + 0x0,0x69,0x0,0x63,0x0,0x6f, + // mo_empty_active.ico + 0x0,0x13, + 0x6,0x7d,0xa8,0xbf, + 0x0,0x6d, + 0x0,0x6f,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x5f,0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x2e,0x0,0x69, + 0x0,0x63,0x0,0x6f, + // zip_empty.ico + 0x0,0xd, + 0x5,0xb8,0xf5,0x1f, + 0x0,0x7a, + 0x0,0x69,0x0,0x70,0x0,0x5f,0x0,0x65,0x0,0x6d,0x0,0x70,0x0,0x74,0x0,0x79,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // acpi_shutdown.ico + 0x0,0x11, + 0xa,0x80,0x41,0x3f, + 0x0,0x61, + 0x0,0x63,0x0,0x70,0x0,0x69,0x0,0x5f,0x0,0x73,0x0,0x68,0x0,0x75,0x0,0x74,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + + // send_cad.ico + 0x0,0xc, + 0x6,0x4f,0xdb,0x3f, + 0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x5f,0x0,0x63,0x0,0x61,0x0,0x64,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // run.ico + 0x0,0x7, + 0x9,0xc1,0x4f,0x7f, + 0x0,0x72, + 0x0,0x75,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // hard_reset.ico + 0x0,0xe, + 0x8,0xd3,0x85,0xbf, + 0x0,0x68, + 0x0,0x61,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x65,0x0,0x74,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // pause.ico + 0x0,0x9, + 0xc,0x98,0xa2,0x9f, + 0x0,0x70, + 0x0,0x61,0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // settings.ico + 0x0,0xc, + 0xb,0xdf,0x39,0x9f, + 0x0,0x73, + 0x0,0x65,0x0,0x74,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + // send_cae.ico + 0x0,0xc, + 0x6,0x50,0xdb,0x3f, + 0x0,0x73, + 0x0,0x65,0x0,0x6e,0x0,0x64,0x0,0x5f,0x0,0x63,0x0,0x61,0x0,0x65,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f, + +}; + +static const unsigned char qt_resource_struct[] = { + // : + 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/menuicons + 0x0,0x0,0x0,0x26,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/texture_vert.spv + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, +0x0,0x0,0x1,0x86,0xdc,0x87,0x70,0xa1, + // :/settings + 0x0,0x0,0x0,0x3e,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/texture_frag.spv + 0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0xcc, +0x0,0x0,0x1,0x86,0xdc,0x87,0x70,0x9f, + // :/settings/win + 0x0,0x0,0x0,0x7a,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/settings/win/icons + 0x0,0x0,0x0,0x86,0x0,0x2,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x7, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/settings/win/icons/zip_active.ico + 0x0,0x0,0x7,0x22,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xf0,0x72, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x57, + // :/settings/win/icons/floppy_35_active.ico + 0x0,0x0,0x4,0xcc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc6,0xdd, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4b, + // :/settings/win/icons/machine.ico + 0x0,0x0,0x5,0x98,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xd7,0xe8, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x51, + // :/settings/win/icons/zip.ico + 0x0,0x0,0x5,0x34,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xcf,0xfc, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x57, + // :/settings/win/icons/other_peripherals.ico + 0x0,0x0,0x3,0x8a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xad,0x80, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x54, + // :/settings/win/icons/cassette_empty_active.ico + 0x0,0x0,0x1,0xc0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x24,0xd6, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/display.ico + 0x0,0x0,0x4,0xfa,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc9,0x7c, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4b, + // :/settings/win/icons/floppy_525_empty_active.ico + 0x0,0x0,0x2,0xd8,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x98,0x96, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4e, + // :/settings/win/icons/floppy_525_active.ico + 0x0,0x0,0x5,0x68,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xd5,0x52, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4d, + // :/settings/win/icons/floppy_and_cdrom_drives.ico + 0x0,0x0,0x6,0x5c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xe0,0xbf, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4e, + // :/settings/win/icons/cassette_active.ico + 0x0,0x0,0x3,0xba,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xb0,0x1b, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x48, + // :/settings/win/icons/cdrom_disabled.ico + 0x0,0x0,0x6,0xcc,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xe9,0x2f, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4a, + // :/settings/win/icons/cartridge_empty.ico + 0x0,0x0,0x0,0xae,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x13, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x48, + // :/settings/win/icons/cdrom_empty.ico + 0x0,0x0,0x2,0x92,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x4,0x5e, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4a, + // :/settings/win/icons/zip_empty.ico + 0x0,0x0,0x7,0xc6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xff,0x43, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x58, + // :/settings/win/icons/network.ico + 0x0,0x0,0x2,0x1c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xb9,0x6b, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/mo_empty_active.ico + 0x0,0x0,0x7,0x9a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xfb,0x31, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/cassette.ico + 0x0,0x0,0x1,0x60,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1c,0x34, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x48, + // :/settings/win/icons/zip_empty_active.ico + 0x0,0x0,0x6,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xda,0xb8, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x58, + // :/settings/win/icons/floppy_35_empty_active.ico + 0x0,0x0,0x2,0x38,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xbe,0x59, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4c, + // :/settings/win/icons/hard_disk_active.ico + 0x0,0x0,0x7,0x6c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xf7,0x57, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x50, + // :/settings/win/icons/mo.ico + 0x0,0x0,0x3,0x14,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x9b,0x8c, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x51, + // :/settings/win/icons/floppy_35_empty.ico + 0x0,0x0,0x6,0xf6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xed,0xd5, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4c, + // :/settings/win/icons/floppy_35.ico + 0x0,0x0,0x5,0x48,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xd3,0x34, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4b, + // :/settings/win/icons/mo_active.ico + 0x0,0x0,0x3,0x26,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xa0,0x87, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x51, + // :/settings/win/icons/other_removable_devices.ico + 0x0,0x0,0x4,0xe,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xb7,0x4d, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x54, + // :/settings/win/icons/mo_empty.ico + 0x0,0x0,0x5,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xcc,0x76, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/cdrom.ico + 0x0,0x0,0x0,0x96,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xfc, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/86Box-green.ico + 0x0,0x0,0x1,0xf8,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x28,0x9, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x44, + // :/settings/win/icons/ports.ico + 0x0,0x0,0x0,0xda,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xb,0xee, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x55, + // :/settings/win/icons/cartridge.ico + 0x0,0x0,0x1,0x40,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1a,0x65, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x47, + // :/settings/win/icons/mo_disabled.ico + 0x0,0x0,0x1,0x1c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x15,0xdb, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x52, + // :/settings/win/icons/zip_disabled.ico + 0x0,0x0,0x5,0xda,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xd6,0x96, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x58, + // :/settings/win/icons/cassette_empty.ico + 0x0,0x0,0x4,0x70,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc0,0x37, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/floppy_525_empty.ico + 0x0,0x0,0x6,0x2e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xde,0x6d, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4d, + // :/settings/win/icons/network_empty.ico + 0x0,0x0,0x7,0x44,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xf3,0xdd, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x53, + // :/settings/win/icons/storage_controllers.ico + 0x0,0x0,0x6,0x98,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x5,0xe6,0xaf, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/settings/win/icons/sound.ico + 0x0,0x0,0x3,0x46,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xa5,0x7f, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/settings/win/icons/input_devices.ico + 0x0,0x0,0x3,0xe6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xb3,0x69, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x50, + // :/settings/win/icons/cdrom_active.ico + 0x0,0x0,0x4,0x4a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xbb,0xd6, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x49, + // :/settings/win/icons/floppy_disabled.ico + 0x0,0x0,0x3,0x5e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xa9,0xf, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4e, + // :/settings/win/icons/hard_disk.ico + 0x0,0x0,0x1,0xa0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x21,0x43, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4f, + // :/settings/win/icons/86Box-gray.ico + 0x0,0x0,0x2,0xb6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0x8,0x1f, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x44, + // :/settings/win/icons/86Box-yellow.ico + 0x0,0x0,0x5,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xdb,0xd4, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x47, + // :/settings/win/icons/floppy_525.ico + 0x0,0x0,0x1,0x7e,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x1e,0xf9, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4d, + // :/settings/win/icons/cdrom_empty_active.ico + 0x0,0x0,0x4,0x9a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x3,0xc2,0xa5, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x4a, + // :/settings/win/icons/network_active.ico + 0x0,0x0,0x0,0xf2,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x11,0x24, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x53, + // :/settings/win/icons/86Box-red.ico + 0x0,0x0,0x2,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc1,0xc0, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x45, + // :/menuicons/win + 0x0,0x0,0x0,0x7a,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/menuicons/win/icons + 0x0,0x0,0x0,0x86,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x39, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + // :/menuicons/win/icons/send_cad.ico + 0x0,0x0,0x8,0xe,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x6,0xa, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x55, + // :/menuicons/win/icons/send_cae.ico + 0x0,0x0,0x8,0x98,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x16,0x29, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/menuicons/win/icons/hard_reset.ico + 0x0,0x0,0x8,0x40,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0xc,0xa7, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x50, + // :/menuicons/win/icons/run.ico + 0x0,0x0,0x8,0x2c,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0xa,0x4, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x55, + // :/menuicons/win/icons/acpi_shutdown.ico + 0x0,0x0,0x7,0xe6,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x2,0x92, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x47, + // :/menuicons/win/icons/settings.ico + 0x0,0x0,0x8,0x7a,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x11,0xd2, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x56, + // :/menuicons/win/icons/pause.ico + 0x0,0x0,0x8,0x62,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x6,0x10,0x68, +0x0,0x0,0x1,0x86,0xdc,0x87,0x71,0x54, + +}; + +#ifdef QT_NAMESPACE +# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name +# define QT_RCC_MANGLE_NAMESPACE0(x) x +# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b +# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) +# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ + QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) +#else +# define QT_RCC_PREPEND_NAMESPACE(name) name +# define QT_RCC_MANGLE_NAMESPACE(name) name +#endif + +#ifdef QT_NAMESPACE +namespace QT_NAMESPACE { +#endif + +bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); +bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); + +#if defined(__ELF__) || defined(__APPLE__) +static inline unsigned char qResourceFeatureZlib() +{ + extern const unsigned char qt_resourceFeatureZlib; + return qt_resourceFeatureZlib; +} +#else +unsigned char qResourceFeatureZlib(); +#endif + +#ifdef QT_NAMESPACE +} +#endif + +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_resources)(); +int QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_resources)() +{ + int version = 3; + QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_resources)(); +int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_resources)() +{ + int version = 3; + version += QT_RCC_PREPEND_NAMESPACE(qResourceFeatureZlib()); + QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) + (version, qt_resource_struct, qt_resource_name, qt_resource_data); + return 1; +} + +namespace { + struct initializer { + initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qt_resources)(); } + ~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qt_resources)(); } + } dummy; +} diff --git a/src/build64/src/qt/ui_autogen/deps b/src/build64/src/qt/ui_autogen/deps new file mode 100644 index 000000000..b168d20d5 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/deps @@ -0,0 +1,821 @@ +ui_autogen/timestamp: \ + C:/msys64/mingw64/include/GL/gl.h \ + C:/msys64/mingw64/include/QtCore/QAbstractNativeEventFilter \ + C:/msys64/mingw64/include/QtCore/QByteArray \ + C:/msys64/mingw64/include/QtCore/QEvent \ + C:/msys64/mingw64/include/QtCore/QList \ + C:/msys64/mingw64/include/QtCore/QMap \ + C:/msys64/mingw64/include/QtCore/QMargins \ + C:/msys64/mingw64/include/QtCore/QMimeData \ + C:/msys64/mingw64/include/QtCore/QObject \ + C:/msys64/mingw64/include/QtCore/QRect \ + C:/msys64/mingw64/include/QtCore/QScopedPointer \ + C:/msys64/mingw64/include/QtCore/QSharedDataPointer \ + C:/msys64/mingw64/include/QtCore/QString \ + C:/msys64/mingw64/include/QtCore/QTimer \ + C:/msys64/mingw64/include/QtCore/QTranslator \ + C:/msys64/mingw64/include/QtCore/QVector \ + C:/msys64/mingw64/include/QtCore/qabstractnativeeventfilter.h \ + C:/msys64/mingw64/include/QtCore/qalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qarraydata.h \ + C:/msys64/mingw64/include/QtCore/qatomic.h \ + C:/msys64/mingw64/include/QtCore/qatomic_cxx11.h \ + C:/msys64/mingw64/include/QtCore/qbasicatomic.h \ + C:/msys64/mingw64/include/QtCore/qbasictimer.h \ + C:/msys64/mingw64/include/QtCore/qbytearray.h \ + C:/msys64/mingw64/include/QtCore/qbytearraylist.h \ + C:/msys64/mingw64/include/QtCore/qchar.h \ + C:/msys64/mingw64/include/QtCore/qcompilerdetection.h \ + C:/msys64/mingw64/include/QtCore/qconfig.h \ + C:/msys64/mingw64/include/QtCore/qcontainerfwd.h \ + C:/msys64/mingw64/include/QtCore/qcontainertools_impl.h \ + C:/msys64/mingw64/include/QtCore/qcontiguouscache.h \ + C:/msys64/mingw64/include/QtCore/qcoreapplication.h \ + C:/msys64/mingw64/include/QtCore/qcoreevent.h \ + C:/msys64/mingw64/include/QtCore/qdatastream.h \ + C:/msys64/mingw64/include/QtCore/qdebug.h \ + C:/msys64/mingw64/include/QtCore/qeventloop.h \ + C:/msys64/mingw64/include/QtCore/qfile.h \ + C:/msys64/mingw64/include/QtCore/qfiledevice.h \ + C:/msys64/mingw64/include/QtCore/qflags.h \ + C:/msys64/mingw64/include/QtCore/qgenericatomic.h \ + C:/msys64/mingw64/include/QtCore/qglobal.h \ + C:/msys64/mingw64/include/QtCore/qglobalstatic.h \ + C:/msys64/mingw64/include/QtCore/qhash.h \ + C:/msys64/mingw64/include/QtCore/qhashfunctions.h \ + C:/msys64/mingw64/include/QtCore/qiodevice.h \ + C:/msys64/mingw64/include/QtCore/qiterator.h \ + C:/msys64/mingw64/include/QtCore/qline.h \ + C:/msys64/mingw64/include/QtCore/qlist.h \ + C:/msys64/mingw64/include/QtCore/qlocale.h \ + C:/msys64/mingw64/include/QtCore/qlogging.h \ + C:/msys64/mingw64/include/QtCore/qmap.h \ + C:/msys64/mingw64/include/QtCore/qmargins.h \ + C:/msys64/mingw64/include/QtCore/qmetatype.h \ + C:/msys64/mingw64/include/QtCore/qmimedata.h \ + C:/msys64/mingw64/include/QtCore/qnamespace.h \ + C:/msys64/mingw64/include/QtCore/qnumeric.h \ + C:/msys64/mingw64/include/QtCore/qobject.h \ + C:/msys64/mingw64/include/QtCore/qobject_impl.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs.h \ + C:/msys64/mingw64/include/QtCore/qobjectdefs_impl.h \ + C:/msys64/mingw64/include/QtCore/qpair.h \ + C:/msys64/mingw64/include/QtCore/qpoint.h \ + C:/msys64/mingw64/include/QtCore/qprocessordetection.h \ + C:/msys64/mingw64/include/QtCore/qrect.h \ + C:/msys64/mingw64/include/QtCore/qrefcount.h \ + C:/msys64/mingw64/include/QtCore/qregexp.h \ + C:/msys64/mingw64/include/QtCore/qscopedpointer.h \ + C:/msys64/mingw64/include/QtCore/qset.h \ + C:/msys64/mingw64/include/QtCore/qshareddata.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer.h \ + C:/msys64/mingw64/include/QtCore/qsharedpointer_impl.h \ + C:/msys64/mingw64/include/QtCore/qsize.h \ + C:/msys64/mingw64/include/QtCore/qstring.h \ + C:/msys64/mingw64/include/QtCore/qstringalgorithms.h \ + C:/msys64/mingw64/include/QtCore/qstringlist.h \ + C:/msys64/mingw64/include/QtCore/qstringliteral.h \ + C:/msys64/mingw64/include/QtCore/qstringmatcher.h \ + C:/msys64/mingw64/include/QtCore/qstringview.h \ + C:/msys64/mingw64/include/QtCore/qsysinfo.h \ + C:/msys64/mingw64/include/QtCore/qsystemdetection.h \ + C:/msys64/mingw64/include/QtCore/qt_windows.h \ + C:/msys64/mingw64/include/QtCore/qtcore-config.h \ + C:/msys64/mingw64/include/QtCore/qtextstream.h \ + C:/msys64/mingw64/include/QtCore/qtimer.h \ + C:/msys64/mingw64/include/QtCore/qtranslator.h \ + C:/msys64/mingw64/include/QtCore/qtypeinfo.h \ + C:/msys64/mingw64/include/QtCore/qurl.h \ + C:/msys64/mingw64/include/QtCore/qvariant.h \ + C:/msys64/mingw64/include/QtCore/qvarlengtharray.h \ + C:/msys64/mingw64/include/QtCore/qvector.h \ + C:/msys64/mingw64/include/QtCore/qversionnumber.h \ + C:/msys64/mingw64/include/QtCore/qversiontagging.h \ + C:/msys64/mingw64/include/QtGui/QCursor \ + C:/msys64/mingw64/include/QtGui/QFocusEvent \ + C:/msys64/mingw64/include/QtGui/QImage \ + C:/msys64/mingw64/include/QtGui/QKeyEvent \ + C:/msys64/mingw64/include/QtGui/QMatrix3x3 \ + C:/msys64/mingw64/include/QtGui/QMatrix4x4 \ + C:/msys64/mingw64/include/QtGui/QMouseEvent \ + C:/msys64/mingw64/include/QtGui/QOpenGLBuffer \ + C:/msys64/mingw64/include/QtGui/QOpenGLContext \ + C:/msys64/mingw64/include/QtGui/QOpenGLExtraFunctions \ + C:/msys64/mingw64/include/QtGui/QOpenGLFunctions \ + C:/msys64/mingw64/include/QtGui/QOpenGLPixelTransferOptions \ + C:/msys64/mingw64/include/QtGui/QOpenGLShader \ + C:/msys64/mingw64/include/QtGui/QOpenGLShaderProgram \ + C:/msys64/mingw64/include/QtGui/QOpenGLTexture \ + C:/msys64/mingw64/include/QtGui/QOpenGLTextureBlitter \ + C:/msys64/mingw64/include/QtGui/QOpenGLVertexArrayObject \ + C:/msys64/mingw64/include/QtGui/QOpenGLWindow \ + C:/msys64/mingw64/include/QtGui/QPaintDevice \ + C:/msys64/mingw64/include/QtGui/QPaintDeviceWindow \ + C:/msys64/mingw64/include/QtGui/QPainter \ + C:/msys64/mingw64/include/QtGui/QRasterWindow \ + C:/msys64/mingw64/include/QtGui/QResizeEvent \ + C:/msys64/mingw64/include/QtGui/QSurfaceFormat \ + C:/msys64/mingw64/include/QtGui/QVulkanWindow \ + C:/msys64/mingw64/include/QtGui/QWindow \ + C:/msys64/mingw64/include/QtGui/qbrush.h \ + C:/msys64/mingw64/include/QtGui/qcolor.h \ + C:/msys64/mingw64/include/QtGui/qcursor.h \ + C:/msys64/mingw64/include/QtGui/qevent.h \ + C:/msys64/mingw64/include/QtGui/qfont.h \ + C:/msys64/mingw64/include/QtGui/qfontinfo.h \ + C:/msys64/mingw64/include/QtGui/qfontmetrics.h \ + C:/msys64/mingw64/include/QtGui/qgenericmatrix.h \ + C:/msys64/mingw64/include/QtGui/qguiapplication.h \ + C:/msys64/mingw64/include/QtGui/qicon.h \ + C:/msys64/mingw64/include/QtGui/qimage.h \ + C:/msys64/mingw64/include/QtGui/qinputmethod.h \ + C:/msys64/mingw64/include/QtGui/qkeysequence.h \ + C:/msys64/mingw64/include/QtGui/qmatrix.h \ + C:/msys64/mingw64/include/QtGui/qmatrix4x4.h \ + C:/msys64/mingw64/include/QtGui/qopengl.h \ + C:/msys64/mingw64/include/QtGui/qopenglbuffer.h \ + C:/msys64/mingw64/include/QtGui/qopenglcontext.h \ + C:/msys64/mingw64/include/QtGui/qopenglext.h \ + C:/msys64/mingw64/include/QtGui/qopenglextrafunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglfunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglpixeltransferoptions.h \ + C:/msys64/mingw64/include/QtGui/qopenglshaderprogram.h \ + C:/msys64/mingw64/include/QtGui/qopengltexture.h \ + C:/msys64/mingw64/include/QtGui/qopengltextureblitter.h \ + C:/msys64/mingw64/include/QtGui/qopenglversionfunctions.h \ + C:/msys64/mingw64/include/QtGui/qopenglvertexarrayobject.h \ + C:/msys64/mingw64/include/QtGui/qopenglwindow.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevice.h \ + C:/msys64/mingw64/include/QtGui/qpaintdevicewindow.h \ + C:/msys64/mingw64/include/QtGui/qpainter.h \ + C:/msys64/mingw64/include/QtGui/qpalette.h \ + C:/msys64/mingw64/include/QtGui/qpen.h \ + C:/msys64/mingw64/include/QtGui/qpixelformat.h \ + C:/msys64/mingw64/include/QtGui/qpixmap.h \ + C:/msys64/mingw64/include/QtGui/qpolygon.h \ + C:/msys64/mingw64/include/QtGui/qquaternion.h \ + C:/msys64/mingw64/include/QtGui/qrasterwindow.h \ + C:/msys64/mingw64/include/QtGui/qregion.h \ + C:/msys64/mingw64/include/QtGui/qrgb.h \ + C:/msys64/mingw64/include/QtGui/qrgba64.h \ + C:/msys64/mingw64/include/QtGui/qsurface.h \ + C:/msys64/mingw64/include/QtGui/qsurfaceformat.h \ + C:/msys64/mingw64/include/QtGui/qtextoption.h \ + C:/msys64/mingw64/include/QtGui/qtgui-config.h \ + C:/msys64/mingw64/include/QtGui/qtguiglobal.h \ + C:/msys64/mingw64/include/QtGui/qtouchdevice.h \ + C:/msys64/mingw64/include/QtGui/qtransform.h \ + C:/msys64/mingw64/include/QtGui/qvector2d.h \ + C:/msys64/mingw64/include/QtGui/qvector3d.h \ + C:/msys64/mingw64/include/QtGui/qvector4d.h \ + C:/msys64/mingw64/include/QtGui/qvulkaninstance.h \ + C:/msys64/mingw64/include/QtGui/qvulkanwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindow.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs.h \ + C:/msys64/mingw64/include/QtGui/qwindowdefs_win.h \ + C:/msys64/mingw64/include/QtNetwork/QLocalSocket \ + C:/msys64/mingw64/include/QtNetwork/qabstractsocket.h \ + C:/msys64/mingw64/include/QtNetwork/qlocalsocket.h \ + C:/msys64/mingw64/include/QtNetwork/qtnetwork-config.h \ + C:/msys64/mingw64/include/QtNetwork/qtnetworkglobal.h \ + C:/msys64/mingw64/include/QtOpenGLExtensions/QOpenGLExtensions \ + C:/msys64/mingw64/include/QtOpenGLExtensions/qopenglextensions.h \ + C:/msys64/mingw64/include/QtWidgets/QApplication \ + C:/msys64/mingw64/include/QtWidgets/QDialog \ + C:/msys64/mingw64/include/QtWidgets/QLabel \ + C:/msys64/mingw64/include/QtWidgets/QMainWindow \ + C:/msys64/mingw64/include/QtWidgets/QStackedWidget \ + C:/msys64/mingw64/include/QtWidgets/QWidget \ + C:/msys64/mingw64/include/QtWidgets/qapplication.h \ + C:/msys64/mingw64/include/QtWidgets/qdialog.h \ + C:/msys64/mingw64/include/QtWidgets/qframe.h \ + C:/msys64/mingw64/include/QtWidgets/qlabel.h \ + C:/msys64/mingw64/include/QtWidgets/qmainwindow.h \ + C:/msys64/mingw64/include/QtWidgets/qsizepolicy.h \ + C:/msys64/mingw64/include/QtWidgets/qstackedwidget.h \ + C:/msys64/mingw64/include/QtWidgets/qtabwidget.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgets-config.h \ + C:/msys64/mingw64/include/QtWidgets/qtwidgetsglobal.h \ + C:/msys64/mingw64/include/QtWidgets/qwidget.h \ + C:/msys64/mingw64/include/_bsd_types.h \ + C:/msys64/mingw64/include/_mingw.h \ + C:/msys64/mingw64/include/_mingw_mac.h \ + C:/msys64/mingw64/include/_mingw_off_t.h \ + C:/msys64/mingw64/include/_mingw_secapi.h \ + C:/msys64/mingw64/include/_mingw_stat64.h \ + C:/msys64/mingw64/include/_mingw_stdarg.h \ + C:/msys64/mingw64/include/_mingw_unicode.h \ + C:/msys64/mingw64/include/_timeval.h \ + C:/msys64/mingw64/include/apiset.h \ + C:/msys64/mingw64/include/apisetcconv.h \ + C:/msys64/mingw64/include/assert.h \ + C:/msys64/mingw64/include/basetsd.h \ + C:/msys64/mingw64/include/bcrypt.h \ + C:/msys64/mingw64/include/bemapiset.h \ + C:/msys64/mingw64/include/c++/13.2.0/algorithm \ + C:/msys64/mingw64/include/c++/13.2.0/array \ + C:/msys64/mingw64/include/c++/13.2.0/atomic \ + C:/msys64/mingw64/include/c++/13.2.0/backward/auto_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/backward/binders.h \ + C:/msys64/mingw64/include/c++/13.2.0/bit \ + C:/msys64/mingw64/include/c++/13.2.0/bits/algorithmfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/align.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocated_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_lockfree_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/atomic_wait.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_ios.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/basic_string.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/c++0x_warning.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/char_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/charconv.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/concept_check.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cpp_type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_forced.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/cxxabi_init_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/enable_special_members.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/erase_if.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/exception_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functexcept.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/functional_hash.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/hash_bytes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/invoke.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ios_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/iterator_concepts.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/list.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_classes.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/locale_facets.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/localefwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/max_size_type.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memory_resource.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/memoryfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/mofunc_impl.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/move_only_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/nested_exception.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/new_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/node_handle.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ostream_insert.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/postypes.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/predefined_ops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ptr_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/range_access.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_cmp.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/ranges_util.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/refwrap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/requires_hosted.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_atomic.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/shared_ptr_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_abs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/std_mutex.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algo.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_algobase.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_bvector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_construct.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_function.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_heap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_funcs.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_iterator_base_types.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_list.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_map.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_multimap.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_numeric.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_pair.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_raw_storage_iter.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_relops.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tempbuf.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_tree.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_uninitialized.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stl_vector.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stream_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/streambuf_iterator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/string_view.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/bits/stringfwd.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uniform_int_dist.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/unique_ptr.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/uses_allocator_args.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/utility.h \ + C:/msys64/mingw64/include/c++/13.2.0/bits/vector.tcc \ + C:/msys64/mingw64/include/c++/13.2.0/cctype \ + C:/msys64/mingw64/include/c++/13.2.0/clocale \ + C:/msys64/mingw64/include/c++/13.2.0/compare \ + C:/msys64/mingw64/include/c++/13.2.0/concepts \ + C:/msys64/mingw64/include/c++/13.2.0/cstddef \ + C:/msys64/mingw64/include/c++/13.2.0/cstdint \ + C:/msys64/mingw64/include/c++/13.2.0/cstdlib \ + C:/msys64/mingw64/include/c++/13.2.0/cwchar \ + C:/msys64/mingw64/include/c++/13.2.0/cwctype \ + C:/msys64/mingw64/include/c++/13.2.0/debug/assertions.h \ + C:/msys64/mingw64/include/c++/13.2.0/debug/debug.h \ + C:/msys64/mingw64/include/c++/13.2.0/exception \ + C:/msys64/mingw64/include/c++/13.2.0/ext/aligned_buffer.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/alloc_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/atomicity.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/concurrence.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/numeric_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/string_conversions.h \ + C:/msys64/mingw64/include/c++/13.2.0/ext/type_traits.h \ + C:/msys64/mingw64/include/c++/13.2.0/functional \ + C:/msys64/mingw64/include/c++/13.2.0/initializer_list \ + C:/msys64/mingw64/include/c++/13.2.0/ios \ + C:/msys64/mingw64/include/c++/13.2.0/iosfwd \ + C:/msys64/mingw64/include/c++/13.2.0/iterator \ + C:/msys64/mingw64/include/c++/13.2.0/limits \ + C:/msys64/mingw64/include/c++/13.2.0/list \ + C:/msys64/mingw64/include/c++/13.2.0/map \ + C:/msys64/mingw64/include/c++/13.2.0/memory \ + C:/msys64/mingw64/include/c++/13.2.0/mutex \ + C:/msys64/mingw64/include/c++/13.2.0/new \ + C:/msys64/mingw64/include/c++/13.2.0/numbers \ + C:/msys64/mingw64/include/c++/13.2.0/numeric \ + C:/msys64/mingw64/include/c++/13.2.0/optional \ + C:/msys64/mingw64/include/c++/13.2.0/ostream \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/execution_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_algorithm_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_memory_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/pstl/glue_numeric_defs.h \ + C:/msys64/mingw64/include/c++/13.2.0/stdexcept \ + C:/msys64/mingw64/include/c++/13.2.0/streambuf \ + C:/msys64/mingw64/include/c++/13.2.0/string \ + C:/msys64/mingw64/include/c++/13.2.0/string_view \ + C:/msys64/mingw64/include/c++/13.2.0/tuple \ + C:/msys64/mingw64/include/c++/13.2.0/type_traits \ + C:/msys64/mingw64/include/c++/13.2.0/typeinfo \ + C:/msys64/mingw64/include/c++/13.2.0/unordered_map \ + C:/msys64/mingw64/include/c++/13.2.0/utility \ + C:/msys64/mingw64/include/c++/13.2.0/vector \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++config.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/c++locale.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_base.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/ctype_inline.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/gthr.h \ + C:/msys64/mingw64/include/c++/13.2.0/x86_64-w64-mingw32/bits/os_defines.h \ + C:/msys64/mingw64/include/cderr.h \ + C:/msys64/mingw64/include/cguid.h \ + C:/msys64/mingw64/include/combaseapi.h \ + C:/msys64/mingw64/include/commdlg.h \ + C:/msys64/mingw64/include/concurrencysal.h \ + C:/msys64/mingw64/include/corecrt.h \ + C:/msys64/mingw64/include/corecrt_startup.h \ + C:/msys64/mingw64/include/corecrt_stdio_config.h \ + C:/msys64/mingw64/include/corecrt_wstdlib.h \ + C:/msys64/mingw64/include/crtdefs.h \ + C:/msys64/mingw64/include/ctype.h \ + C:/msys64/mingw64/include/d3d9.h \ + C:/msys64/mingw64/include/d3d9caps.h \ + C:/msys64/mingw64/include/d3d9types.h \ + C:/msys64/mingw64/include/datetimeapi.h \ + C:/msys64/mingw64/include/dde.h \ + C:/msys64/mingw64/include/ddeml.h \ + C:/msys64/mingw64/include/debugapi.h \ + C:/msys64/mingw64/include/dlgs.h \ + C:/msys64/mingw64/include/dpapi.h \ + C:/msys64/mingw64/include/driverspecs.h \ + C:/msys64/mingw64/include/errhandlingapi.h \ + C:/msys64/mingw64/include/errno.h \ + C:/msys64/mingw64/include/excpt.h \ + C:/msys64/mingw64/include/fibersapi.h \ + C:/msys64/mingw64/include/fileapi.h \ + C:/msys64/mingw64/include/fltwinerror.h \ + C:/msys64/mingw64/include/guiddef.h \ + C:/msys64/mingw64/include/handleapi.h \ + C:/msys64/mingw64/include/heapapi.h \ + C:/msys64/mingw64/include/imm.h \ + C:/msys64/mingw64/include/inaddr.h \ + C:/msys64/mingw64/include/interlockedapi.h \ + C:/msys64/mingw64/include/ioapiset.h \ + C:/msys64/mingw64/include/jobapi.h \ + C:/msys64/mingw64/include/joystickapi.h \ + C:/msys64/mingw64/include/ktmtypes.h \ + C:/msys64/mingw64/include/libloaderapi.h \ + C:/msys64/mingw64/include/limits.h \ + C:/msys64/mingw64/include/locale.h \ + C:/msys64/mingw64/include/lzexpand.h \ + C:/msys64/mingw64/include/malloc.h \ + C:/msys64/mingw64/include/mciapi.h \ + C:/msys64/mingw64/include/mcx.h \ + C:/msys64/mingw64/include/memoryapi.h \ + C:/msys64/mingw64/include/minwinbase.h \ + C:/msys64/mingw64/include/minwindef.h \ + C:/msys64/mingw64/include/mmeapi.h \ + C:/msys64/mingw64/include/mmiscapi.h \ + C:/msys64/mingw64/include/mmiscapi2.h \ + C:/msys64/mingw64/include/mmsyscom.h \ + C:/msys64/mingw64/include/mmsystem.h \ + C:/msys64/mingw64/include/msxml.h \ + C:/msys64/mingw64/include/namedpipeapi.h \ + C:/msys64/mingw64/include/namespaceapi.h \ + C:/msys64/mingw64/include/nb30.h \ + C:/msys64/mingw64/include/ncrypt.h \ + C:/msys64/mingw64/include/oaidl.h \ + C:/msys64/mingw64/include/objbase.h \ + C:/msys64/mingw64/include/objidl.h \ + C:/msys64/mingw64/include/objidlbase.h \ + C:/msys64/mingw64/include/ole2.h \ + C:/msys64/mingw64/include/oleauto.h \ + C:/msys64/mingw64/include/oleidl.h \ + C:/msys64/mingw64/include/playsoundapi.h \ + C:/msys64/mingw64/include/poppack.h \ + C:/msys64/mingw64/include/process.h \ + C:/msys64/mingw64/include/processenv.h \ + C:/msys64/mingw64/include/processthreadsapi.h \ + C:/msys64/mingw64/include/processtopologyapi.h \ + C:/msys64/mingw64/include/profileapi.h \ + C:/msys64/mingw64/include/propidl.h \ + C:/msys64/mingw64/include/prsht.h \ + C:/msys64/mingw64/include/psdk_inc/_fd_types.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_mreq1.h \ + C:/msys64/mingw64/include/psdk_inc/_ip_types.h \ + C:/msys64/mingw64/include/psdk_inc/_socket_types.h \ + C:/msys64/mingw64/include/psdk_inc/_wsa_errnos.h \ + C:/msys64/mingw64/include/psdk_inc/_wsadata.h \ + C:/msys64/mingw64/include/psdk_inc/_xmitfile.h \ + C:/msys64/mingw64/include/psdk_inc/intrin-impl.h \ + C:/msys64/mingw64/include/pshpack1.h \ + C:/msys64/mingw64/include/pshpack2.h \ + C:/msys64/mingw64/include/pshpack4.h \ + C:/msys64/mingw64/include/pshpack8.h \ + C:/msys64/mingw64/include/pthread.h \ + C:/msys64/mingw64/include/pthread_compat.h \ + C:/msys64/mingw64/include/pthread_signal.h \ + C:/msys64/mingw64/include/pthread_time.h \ + C:/msys64/mingw64/include/pthread_unistd.h \ + C:/msys64/mingw64/include/realtimeapiset.h \ + C:/msys64/mingw64/include/reason.h \ + C:/msys64/mingw64/include/rpc.h \ + C:/msys64/mingw64/include/rpcasync.h \ + C:/msys64/mingw64/include/rpcdce.h \ + C:/msys64/mingw64/include/rpcdcep.h \ + C:/msys64/mingw64/include/rpcndr.h \ + C:/msys64/mingw64/include/rpcnsi.h \ + C:/msys64/mingw64/include/rpcnsip.h \ + C:/msys64/mingw64/include/rpcnterr.h \ + C:/msys64/mingw64/include/rpcsal.h \ + C:/msys64/mingw64/include/sal.h \ + C:/msys64/mingw64/include/sdkddkver.h \ + C:/msys64/mingw64/include/sdks/_mingw_ddk.h \ + C:/msys64/mingw64/include/sec_api/stdio_s.h \ + C:/msys64/mingw64/include/sec_api/stdlib_s.h \ + C:/msys64/mingw64/include/sec_api/stralign_s.h \ + C:/msys64/mingw64/include/sec_api/string_s.h \ + C:/msys64/mingw64/include/sec_api/sys/timeb_s.h \ + C:/msys64/mingw64/include/sec_api/wchar_s.h \ + C:/msys64/mingw64/include/securityappcontainer.h \ + C:/msys64/mingw64/include/securitybaseapi.h \ + C:/msys64/mingw64/include/servprov.h \ + C:/msys64/mingw64/include/shellapi.h \ + C:/msys64/mingw64/include/signal.h \ + C:/msys64/mingw64/include/specstrings.h \ + C:/msys64/mingw64/include/stdarg.h \ + C:/msys64/mingw64/include/stddef.h \ + C:/msys64/mingw64/include/stdint.h \ + C:/msys64/mingw64/include/stdio.h \ + C:/msys64/mingw64/include/stdlib.h \ + C:/msys64/mingw64/include/stralign.h \ + C:/msys64/mingw64/include/string.h \ + C:/msys64/mingw64/include/stringapiset.h \ + C:/msys64/mingw64/include/swprintf.inl \ + C:/msys64/mingw64/include/synchapi.h \ + C:/msys64/mingw64/include/sys/timeb.h \ + C:/msys64/mingw64/include/sys/types.h \ + C:/msys64/mingw64/include/sysinfoapi.h \ + C:/msys64/mingw64/include/systemtopologyapi.h \ + C:/msys64/mingw64/include/threadpoolapiset.h \ + C:/msys64/mingw64/include/threadpoollegacyapiset.h \ + C:/msys64/mingw64/include/time.h \ + C:/msys64/mingw64/include/timeapi.h \ + C:/msys64/mingw64/include/timezoneapi.h \ + C:/msys64/mingw64/include/tvout.h \ + C:/msys64/mingw64/include/unknwn.h \ + C:/msys64/mingw64/include/unknwnbase.h \ + C:/msys64/mingw64/include/urlmon.h \ + C:/msys64/mingw64/include/utilapiset.h \ + C:/msys64/mingw64/include/vadefs.h \ + C:/msys64/mingw64/include/virtdisk.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h264std.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h264std_decode.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h265std.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codec_h265std_decode.h \ + C:/msys64/mingw64/include/vk_video/vulkan_video_codecs_common.h \ + C:/msys64/mingw64/include/vulkan/vk_platform.h \ + C:/msys64/mingw64/include/vulkan/vulkan.h \ + C:/msys64/mingw64/include/vulkan/vulkan_core.h \ + C:/msys64/mingw64/include/wchar.h \ + C:/msys64/mingw64/include/wctype.h \ + C:/msys64/mingw64/include/winapifamily.h \ + C:/msys64/mingw64/include/winbase.h \ + C:/msys64/mingw64/include/wincon.h \ + C:/msys64/mingw64/include/wincrypt.h \ + C:/msys64/mingw64/include/windef.h \ + C:/msys64/mingw64/include/windows.h \ + C:/msys64/mingw64/include/winefs.h \ + C:/msys64/mingw64/include/winerror.h \ + C:/msys64/mingw64/include/wingdi.h \ + C:/msys64/mingw64/include/winioctl.h \ + C:/msys64/mingw64/include/winnetwk.h \ + C:/msys64/mingw64/include/winnls.h \ + C:/msys64/mingw64/include/winnt.h \ + C:/msys64/mingw64/include/winperf.h \ + C:/msys64/mingw64/include/winreg.h \ + C:/msys64/mingw64/include/winscard.h \ + C:/msys64/mingw64/include/winsmcrd.h \ + C:/msys64/mingw64/include/winsock.h \ + C:/msys64/mingw64/include/winspool.h \ + C:/msys64/mingw64/include/winsvc.h \ + C:/msys64/mingw64/include/winuser.h \ + C:/msys64/mingw64/include/winver.h \ + C:/msys64/mingw64/include/wnnc.h \ + C:/msys64/mingw64/include/wow64apiset.h \ + C:/msys64/mingw64/include/wtypes.h \ + C:/msys64/mingw64/include/wtypesbase.h \ + C:/msys64/mingw64/lib/cmake/Qt5/Qt5Config.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5/Qt5ConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5/Qt5ModuleLocation.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJp2Plugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QMngPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake \ + C:/msys64/mingw64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/adxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ammintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxbf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxcomplexintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxfp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/amxtileintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124fmapsintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx5124vnniwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bf16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bitalgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512bwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512cdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512dqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512erintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512fp16vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512ifmavlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512pfintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmi2vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vbmivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlbwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vldqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vnnivlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vp2intersectvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avx512vpopcntdqvlintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxifmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxneconvertintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniint8intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/avxvnniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmi2intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/bmiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cldemoteintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clflushoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clwbintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/clzerointrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/cmpccxaddintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/emmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/enqcmdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/f16cintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fma4intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fmaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/fxsrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/gfniintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/hresetintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/ia32intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/immintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/keylockerintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lwpintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/lzcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm3dnow.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mm_malloc.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/movdirintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/mwaitxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pconfigintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pkuintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/pmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/popcntintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchiintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/prfchwintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/raointintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rdseedintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/rtmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/serializeintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/sgxintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/shaintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/smmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tbmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/tsxldtrkintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/uintrintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vaesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/vpclmulqdqintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/waitpkgintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wbnoinvdintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/wmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86gprintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/x86intrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xmmintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xopintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavecintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsaveoptintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xsavesintrin.h \ + C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.2.0/include/xtestintrin.h \ + C:/msys64/mingw64/share/cmake/Modules/CMakeParseArguments.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CheckCSourceCompiles.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CheckIncludeFile.cmake \ + C:/msys64/mingw64/share/cmake/Modules/CheckLibraryExists.cmake \ + C:/msys64/mingw64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \ + C:/msys64/mingw64/share/cmake/Modules/FindPackageMessage.cmake \ + C:/msys64/mingw64/share/cmake/Modules/FindThreads.cmake \ + C:/msys64/mingw64/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/build64/src/qt/ui_autogen/moc_predefs.h \ + K:/emu_dev/86Box_clean_ex_k/src/include/86box/86box.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/CMakeLists.txt \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_cdrom.c \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_d3d9renderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddrive_common.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddrive_common.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_hardwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_machinestatus.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediahistorymanager.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mediamenu.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_models_common.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_models_common.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptions.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_openglrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_renderercommon.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings_bus_tracking.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings_bus_tracking.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_softwarerenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.h \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_styleoverride.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_styleoverride.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_translations.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_ui.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_unixmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_util.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_util.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_vulkanwindowrenderer.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winmanagerfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.cpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_winrawinputfilter.hpp \ + K:/emu_dev/86Box_clean_ex_k/src/qt_resources.qrc \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_deviceconfig.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_filefield.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_harddiskdialog.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_joystickconfiguration.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mainwindow.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_mcadevicelist.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_newfloppydialog.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_opengloptionsdialog.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_progsettings.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_rendererstack.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settings.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsdisplay.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsfloppycdrom.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsharddisks.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsinput.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsmachine.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsnetwork.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherperipherals.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsotherremovable.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsports.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingssound.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_settingsstoragecontrollers.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_soundgain.ui \ + K:/emu_dev/86Box_clean_ex_k/src/qt/qt_specifydimensions.ui \ + C:/msys64/mingw64/bin/cmake.exe diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_deviceconfig.h b/src/build64/src/qt/ui_autogen/include/ui_qt_deviceconfig.h new file mode 100644 index 000000000..abb1be4a1 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_deviceconfig.h @@ -0,0 +1,77 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_deviceconfig.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_DEVICECONFIG_H +#define UI_QT_DEVICECONFIG_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_DeviceConfig +{ +public: + QVBoxLayout *verticalLayout; + QFormLayout *formLayout; + QFrame *line; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *DeviceConfig) + { + if (DeviceConfig->objectName().isEmpty()) + DeviceConfig->setObjectName(QString::fromUtf8("DeviceConfig")); + DeviceConfig->resize(400, 300); + verticalLayout = new QVBoxLayout(DeviceConfig); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + formLayout = new QFormLayout(); + formLayout->setObjectName(QString::fromUtf8("formLayout")); + + verticalLayout->addLayout(formLayout); + + line = new QFrame(DeviceConfig); + line->setObjectName(QString::fromUtf8("line")); + line->setFrameShape(QFrame::HLine); + line->setFrameShadow(QFrame::Sunken); + + verticalLayout->addWidget(line); + + buttonBox = new QDialogButtonBox(DeviceConfig); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + + retranslateUi(DeviceConfig); + QObject::connect(buttonBox, SIGNAL(accepted()), DeviceConfig, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), DeviceConfig, SLOT(reject())); + + QMetaObject::connectSlotsByName(DeviceConfig); + } // setupUi + + void retranslateUi(QDialog *DeviceConfig) + { + DeviceConfig->setWindowTitle(QCoreApplication::translate("DeviceConfig", "Dialog", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class DeviceConfig: public Ui_DeviceConfig {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_DEVICECONFIG_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_filefield.h b/src/build64/src/qt/ui_autogen/include/ui_qt_filefield.h new file mode 100644 index 000000000..ee09d8ee7 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_filefield.h @@ -0,0 +1,80 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_filefield.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_FILEFIELD_H +#define UI_QT_FILEFIELD_H + +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_FileField +{ +public: + QHBoxLayout *horizontalLayout; + QLineEdit *label; + QPushButton *pushButton; + + void setupUi(QWidget *FileField) + { + if (FileField->objectName().isEmpty()) + FileField->setObjectName(QString::fromUtf8("FileField")); + FileField->resize(354, 25); + QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(FileField->sizePolicy().hasHeightForWidth()); + FileField->setSizePolicy(sizePolicy); + horizontalLayout = new QHBoxLayout(FileField); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + horizontalLayout->setContentsMargins(0, 0, 0, 0); + label = new QLineEdit(FileField); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy1); + + horizontalLayout->addWidget(label); + + pushButton = new QPushButton(FileField); + pushButton->setObjectName(QString::fromUtf8("pushButton")); + sizePolicy.setHeightForWidth(pushButton->sizePolicy().hasHeightForWidth()); + pushButton->setSizePolicy(sizePolicy); + + horizontalLayout->addWidget(pushButton); + + horizontalLayout->setStretch(0, 3); + horizontalLayout->setStretch(1, 1); + + retranslateUi(FileField); + + QMetaObject::connectSlotsByName(FileField); + } // setupUi + + void retranslateUi(QWidget *FileField) + { + FileField->setWindowTitle(QCoreApplication::translate("FileField", "Form", nullptr)); + pushButton->setText(QCoreApplication::translate("FileField", "&Specify...", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class FileField: public Ui_FileField {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_FILEFIELD_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_harddiskdialog.h b/src/build64/src/qt/ui_autogen/include/ui_qt_harddiskdialog.h new file mode 100644 index 000000000..5d3bf9013 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_harddiskdialog.h @@ -0,0 +1,259 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_harddiskdialog.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_HARDDISKDIALOG_H +#define UI_QT_HARDDISKDIALOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "qt_filefield.hpp" + +QT_BEGIN_NAMESPACE + +class Ui_HarddiskDialog +{ +public: + QGridLayout *gridLayout; + FileField *fileField; + QLabel *label_7; + QLabel *label_9; + QComboBox *comboBoxSpeed; + QLabel *label_5; + QLabel *label_6; + QLineEdit *lineEditCylinders; + QLineEdit *lineEditSize; + QLabel *label_3; + QComboBox *comboBoxChannel; + QDialogButtonBox *buttonBox; + QSpacerItem *verticalSpacer; + QLabel *label_2; + QLineEdit *lineEditSectors; + QLabel *labelFormat; + QLabel *label_4; + QComboBox *comboBoxType; + QLabel *label_8; + QComboBox *comboBoxFormat; + QComboBox *comboBoxBlockSize; + QLineEdit *lineEditHeads; + QComboBox *comboBoxBus; + QLabel *labelBlockSize; + QLabel *label; + QProgressBar *progressBar; + + void setupUi(QDialog *HarddiskDialog) + { + if (HarddiskDialog->objectName().isEmpty()) + HarddiskDialog->setObjectName(QString::fromUtf8("HarddiskDialog")); + HarddiskDialog->resize(421, 269); + QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(HarddiskDialog->sizePolicy().hasHeightForWidth()); + HarddiskDialog->setSizePolicy(sizePolicy); + HarddiskDialog->setMinimumSize(QSize(421, 269)); + HarddiskDialog->setMaximumSize(QSize(421, 269)); + gridLayout = new QGridLayout(HarddiskDialog); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + fileField = new FileField(HarddiskDialog); + fileField->setObjectName(QString::fromUtf8("fileField")); + + gridLayout->addWidget(fileField, 0, 1, 1, 5); + + label_7 = new QLabel(HarddiskDialog); + label_7->setObjectName(QString::fromUtf8("label_7")); + + gridLayout->addWidget(label_7, 5, 4, 1, 1); + + label_9 = new QLabel(HarddiskDialog); + label_9->setObjectName(QString::fromUtf8("label_9")); + + gridLayout->addWidget(label_9, 6, 4, 1, 1); + + comboBoxSpeed = new QComboBox(HarddiskDialog); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxSpeed, 6, 5, 1, 1); + + label_5 = new QLabel(HarddiskDialog); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 3, 4, 1, 1); + + label_6 = new QLabel(HarddiskDialog); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout->addWidget(label_6, 4, 2, 1, 1); + + lineEditCylinders = new QLineEdit(HarddiskDialog); + lineEditCylinders->setObjectName(QString::fromUtf8("lineEditCylinders")); + sizePolicy.setHeightForWidth(lineEditCylinders->sizePolicy().hasHeightForWidth()); + lineEditCylinders->setSizePolicy(sizePolicy); + lineEditCylinders->setMaximumSize(QSize(64, 16777215)); + + gridLayout->addWidget(lineEditCylinders, 3, 1, 1, 1); + + lineEditSize = new QLineEdit(HarddiskDialog); + lineEditSize->setObjectName(QString::fromUtf8("lineEditSize")); + sizePolicy.setHeightForWidth(lineEditSize->sizePolicy().hasHeightForWidth()); + lineEditSize->setSizePolicy(sizePolicy); + lineEditSize->setMaximumSize(QSize(64, 16777215)); + + gridLayout->addWidget(lineEditSize, 4, 1, 1, 1); + + label_3 = new QLabel(HarddiskDialog); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 4, 0, 1, 1); + + comboBoxChannel = new QComboBox(HarddiskDialog); + comboBoxChannel->setObjectName(QString::fromUtf8("comboBoxChannel")); + comboBoxChannel->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxChannel, 5, 5, 1, 1); + + buttonBox = new QDialogButtonBox(HarddiskDialog); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 11, 0, 1, 6); + + verticalSpacer = new QSpacerItem(20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 9, 0, 1, 6); + + label_2 = new QLabel(HarddiskDialog); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 3, 0, 1, 1); + + lineEditSectors = new QLineEdit(HarddiskDialog); + lineEditSectors->setObjectName(QString::fromUtf8("lineEditSectors")); + sizePolicy.setHeightForWidth(lineEditSectors->sizePolicy().hasHeightForWidth()); + lineEditSectors->setSizePolicy(sizePolicy); + lineEditSectors->setMaximumSize(QSize(64, 16777215)); + lineEditSectors->setMaxLength(32767); + + gridLayout->addWidget(lineEditSectors, 3, 5, 1, 1); + + labelFormat = new QLabel(HarddiskDialog); + labelFormat->setObjectName(QString::fromUtf8("labelFormat")); + + gridLayout->addWidget(labelFormat, 6, 0, 1, 1); + + label_4 = new QLabel(HarddiskDialog); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 3, 2, 1, 1); + + comboBoxType = new QComboBox(HarddiskDialog); + comboBoxType->setObjectName(QString::fromUtf8("comboBoxType")); + comboBoxType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxType, 4, 3, 1, 3); + + label_8 = new QLabel(HarddiskDialog); + label_8->setObjectName(QString::fromUtf8("label_8")); + + gridLayout->addWidget(label_8, 5, 0, 1, 1); + + comboBoxFormat = new QComboBox(HarddiskDialog); + comboBoxFormat->setObjectName(QString::fromUtf8("comboBoxFormat")); + comboBoxFormat->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxFormat, 6, 1, 1, 3); + + comboBoxBlockSize = new QComboBox(HarddiskDialog); + comboBoxBlockSize->setObjectName(QString::fromUtf8("comboBoxBlockSize")); + comboBoxBlockSize->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxBlockSize, 7, 1, 1, 3); + + lineEditHeads = new QLineEdit(HarddiskDialog); + lineEditHeads->setObjectName(QString::fromUtf8("lineEditHeads")); + sizePolicy.setHeightForWidth(lineEditHeads->sizePolicy().hasHeightForWidth()); + lineEditHeads->setSizePolicy(sizePolicy); + lineEditHeads->setMaximumSize(QSize(64, 16777215)); + lineEditHeads->setMaxLength(32767); + + gridLayout->addWidget(lineEditHeads, 3, 3, 1, 1); + + comboBoxBus = new QComboBox(HarddiskDialog); + comboBoxBus->setObjectName(QString::fromUtf8("comboBoxBus")); + comboBoxBus->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxBus, 5, 1, 1, 3); + + labelBlockSize = new QLabel(HarddiskDialog); + labelBlockSize->setObjectName(QString::fromUtf8("labelBlockSize")); + + gridLayout->addWidget(labelBlockSize, 7, 0, 1, 1); + + label = new QLabel(HarddiskDialog); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + progressBar = new QProgressBar(HarddiskDialog); + progressBar->setObjectName(QString::fromUtf8("progressBar")); + progressBar->setVisible(false); + progressBar->setValue(0); + progressBar->setTextVisible(true); + + gridLayout->addWidget(progressBar, 8, 0, 1, 6); + + QWidget::setTabOrder(lineEditCylinders, lineEditHeads); + QWidget::setTabOrder(lineEditHeads, lineEditSectors); + QWidget::setTabOrder(lineEditSectors, lineEditSize); + QWidget::setTabOrder(lineEditSize, comboBoxType); + QWidget::setTabOrder(comboBoxType, comboBoxBus); + QWidget::setTabOrder(comboBoxBus, comboBoxChannel); + QWidget::setTabOrder(comboBoxChannel, comboBoxFormat); + QWidget::setTabOrder(comboBoxFormat, comboBoxBlockSize); + + retranslateUi(HarddiskDialog); + QObject::connect(buttonBox, SIGNAL(accepted()), HarddiskDialog, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), HarddiskDialog, SLOT(reject())); + + QMetaObject::connectSlotsByName(HarddiskDialog); + } // setupUi + + void retranslateUi(QDialog *HarddiskDialog) + { + HarddiskDialog->setWindowTitle(QCoreApplication::translate("HarddiskDialog", "Dialog", nullptr)); + label_7->setText(QCoreApplication::translate("HarddiskDialog", "Channel:", nullptr)); + label_9->setText(QCoreApplication::translate("HarddiskDialog", "Speed:", nullptr)); + label_5->setText(QCoreApplication::translate("HarddiskDialog", "Sectors:", nullptr)); + label_6->setText(QCoreApplication::translate("HarddiskDialog", "Type:", nullptr)); + label_3->setText(QCoreApplication::translate("HarddiskDialog", "Size (MB):", nullptr)); + label_2->setText(QCoreApplication::translate("HarddiskDialog", "Cylinders:", nullptr)); + labelFormat->setText(QCoreApplication::translate("HarddiskDialog", "Image Format:", nullptr)); + label_4->setText(QCoreApplication::translate("HarddiskDialog", "Heads:", nullptr)); + label_8->setText(QCoreApplication::translate("HarddiskDialog", "Bus:", nullptr)); + labelBlockSize->setText(QCoreApplication::translate("HarddiskDialog", "Block Size:", nullptr)); + label->setText(QCoreApplication::translate("HarddiskDialog", "File name:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class HarddiskDialog: public Ui_HarddiskDialog {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_HARDDISKDIALOG_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h b/src/build64/src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h new file mode 100644 index 000000000..21d8c240a --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_joystickconfiguration.h @@ -0,0 +1,88 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_joystickconfiguration.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_JOYSTICKCONFIGURATION_H +#define UI_QT_JOYSTICKCONFIGURATION_H + +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_JoystickConfiguration +{ +public: + QGridLayout *gridLayout; + QGridLayout *ct; + QDialogButtonBox *buttonBox; + QComboBox *comboBoxDevice; + QLabel *label_2; + QSpacerItem *verticalSpacer; + + void setupUi(QDialog *JoystickConfiguration) + { + if (JoystickConfiguration->objectName().isEmpty()) + JoystickConfiguration->setObjectName(QString::fromUtf8("JoystickConfiguration")); + JoystickConfiguration->resize(400, 300); + gridLayout = new QGridLayout(JoystickConfiguration); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + ct = new QGridLayout(); + ct->setObjectName(QString::fromUtf8("ct")); + + gridLayout->addLayout(ct, 1, 0, 1, 2); + + buttonBox = new QDialogButtonBox(JoystickConfiguration); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 3, 1, 1, 1); + + comboBoxDevice = new QComboBox(JoystickConfiguration); + comboBoxDevice->setObjectName(QString::fromUtf8("comboBoxDevice")); + comboBoxDevice->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxDevice, 0, 1, 1, 1); + + label_2 = new QLabel(JoystickConfiguration); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 0, 0, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 2, 1, 1, 1); + + + retranslateUi(JoystickConfiguration); + QObject::connect(buttonBox, SIGNAL(accepted()), JoystickConfiguration, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), JoystickConfiguration, SLOT(reject())); + + QMetaObject::connectSlotsByName(JoystickConfiguration); + } // setupUi + + void retranslateUi(QDialog *JoystickConfiguration) + { + JoystickConfiguration->setWindowTitle(QCoreApplication::translate("JoystickConfiguration", "Joystick configuration", nullptr)); + label_2->setText(QCoreApplication::translate("JoystickConfiguration", "Device", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class JoystickConfiguration: public Ui_JoystickConfiguration {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_JOYSTICKCONFIGURATION_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_mainwindow.h b/src/build64/src/qt/ui_autogen/include/ui_qt_mainwindow.h new file mode 100644 index 000000000..3e42fe443 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_mainwindow.h @@ -0,0 +1,652 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_mainwindow.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_MAINWINDOW_H +#define UI_QT_MAINWINDOW_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "qt_rendererstack.hpp" + +QT_BEGIN_NAMESPACE + +class Ui_MainWindow +{ +public: + QAction *actionAuto_pause; + QAction *actionKeyboard_requires_capture; + QAction *actionRight_CTRL_is_left_ALT; + QAction *actionHard_Reset; + QAction *actionCtrl_Alt_Del; + QAction *actionCtrl_Alt_Esc; + QAction *actionPause; + QAction *actionExit; + QAction *actionSettings; + QAction *actionFullscreen; + QAction *actionSoftware_Renderer; + QAction *actionHardware_Renderer_OpenGL; + QAction *actionHardware_Renderer_OpenGL_ES; + QAction *actionHide_status_bar; + QAction *actionResizable_window; + QAction *actionRemember_size_and_position; + QAction *actionSpecify_dimensions; + QAction *actionForce_4_3_display_ratio; + QAction *actionHiDPI_scaling; + QAction *actionCGA_PCjr_Tandy_EGA_S_VGA_overscan; + QAction *actionChange_contrast_for_monochrome_display; + QAction *action0_5x; + QAction *action1x; + QAction *action1_5x; + QAction *action2x; + QAction *action3x; + QAction *action4x; + QAction *action5x; + QAction *action6x; + QAction *action7x; + QAction *action8x; + QAction *actionNearest; + QAction *actionLinear; + QAction *actionFullScreen_stretch; + QAction *actionFullScreen_43; + QAction *actionFullScreen_keepRatio; + QAction *actionFullScreen_int; + QAction *actionFullScreen_int43; + QAction *actionInverted_VGA_monitor; + QAction *actionRGB_Color; + QAction *actionRGB_Grayscale; + QAction *actionAmber_monitor; + QAction *actionGreen_monitor; + QAction *actionWhite_monitor; + QAction *actionBT601_NTSC_PAL; + QAction *actionBT709_HDTV; + QAction *actionAverage; + QAction *actionAbout_Qt; + QAction *actionAbout_86Box; + QAction *actionDocumentation; + QAction *actionUpdate_status_bar_icons; + QAction *actionTake_screenshot; + QAction *actionSound_gain; + QAction *actionOpenGL_3_0_Core; + QAction *actionPreferences; + QAction *actionEnable_Discord_integration; + QAction *actionHide_tool_bar; + QAction *actionACPI_Shutdown; + QAction *actionBegin_trace; + QAction *actionEnd_trace; + QAction *actionRenderer_options; + QAction *actionVulkan; + QAction *actionMCA_devices; + QAction *actionDirect3D_9; + QAction *actionShow_non_primary_monitors; + QAction *actionVNC; + QAction *actionOpen_screenshots_folder; + QAction *actionApply_fullscreen_stretch_mode_when_maximized; + QAction *actionCursor_Puck; + QAction *actionPen; + QWidget *centralwidget; + QVBoxLayout *verticalLayout; + RendererStack *stackedWidget; + QMenuBar *menubar; + QMenu *menuAction; + QMenu *menuTablet_tool; + QMenu *menuTools; + QMenu *menuView; + QMenu *menuRenderer; + QMenu *menuWindow_scale_factor; + QMenu *menuFilter_method; + QMenu *menuFullscreen_stretch_mode; + QMenu *menuEGA_S_VGA_settings; + QMenu *menuVGA_screen_type; + QMenu *menuGrayscale_conversion_type; + QMenu *menuMedia; + QMenu *menuAbout; + QStatusBar *statusbar; + QToolBar *toolBar; + + void setupUi(QMainWindow *MainWindow) + { + if (MainWindow->objectName().isEmpty()) + MainWindow->setObjectName(QString::fromUtf8("MainWindow")); + MainWindow->resize(724, 427); + actionAuto_pause = new QAction(MainWindow); + actionAuto_pause->setObjectName(QString::fromUtf8("actionAuto_pause")); + actionAuto_pause->setCheckable(true); + actionKeyboard_requires_capture = new QAction(MainWindow); + actionKeyboard_requires_capture->setObjectName(QString::fromUtf8("actionKeyboard_requires_capture")); + actionKeyboard_requires_capture->setCheckable(true); + actionRight_CTRL_is_left_ALT = new QAction(MainWindow); + actionRight_CTRL_is_left_ALT->setObjectName(QString::fromUtf8("actionRight_CTRL_is_left_ALT")); + actionRight_CTRL_is_left_ALT->setCheckable(true); + actionHard_Reset = new QAction(MainWindow); + actionHard_Reset->setObjectName(QString::fromUtf8("actionHard_Reset")); + QIcon icon; + icon.addFile(QString::fromUtf8(":/menuicons/win/icons/hard_reset.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionHard_Reset->setIcon(icon); + actionHard_Reset->setIconVisibleInMenu(false); + actionCtrl_Alt_Del = new QAction(MainWindow); + actionCtrl_Alt_Del->setObjectName(QString::fromUtf8("actionCtrl_Alt_Del")); + QIcon icon1; + icon1.addFile(QString::fromUtf8(":/menuicons/win/icons/send_cad.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionCtrl_Alt_Del->setIcon(icon1); + actionCtrl_Alt_Del->setIconVisibleInMenu(false); + actionCtrl_Alt_Del->setShortcutVisibleInContextMenu(false); + actionCtrl_Alt_Esc = new QAction(MainWindow); + actionCtrl_Alt_Esc->setObjectName(QString::fromUtf8("actionCtrl_Alt_Esc")); + QIcon icon2; + icon2.addFile(QString::fromUtf8(":/menuicons/win/icons/send_cae.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionCtrl_Alt_Esc->setIcon(icon2); + actionCtrl_Alt_Esc->setIconVisibleInMenu(false); + actionPause = new QAction(MainWindow); + actionPause->setObjectName(QString::fromUtf8("actionPause")); + actionPause->setCheckable(true); + QIcon icon3; + icon3.addFile(QString::fromUtf8(":/menuicons/win/icons/pause.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionPause->setIcon(icon3); + actionPause->setIconVisibleInMenu(false); + actionExit = new QAction(MainWindow); + actionExit->setObjectName(QString::fromUtf8("actionExit")); + actionSettings = new QAction(MainWindow); + actionSettings->setObjectName(QString::fromUtf8("actionSettings")); + QIcon icon4; + icon4.addFile(QString::fromUtf8(":/menuicons/win/icons/settings.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionSettings->setIcon(icon4); + actionSettings->setMenuRole(QAction::NoRole); + actionSettings->setIconVisibleInMenu(false); + actionFullscreen = new QAction(MainWindow); + actionFullscreen->setObjectName(QString::fromUtf8("actionFullscreen")); + actionSoftware_Renderer = new QAction(MainWindow); + actionSoftware_Renderer->setObjectName(QString::fromUtf8("actionSoftware_Renderer")); + actionSoftware_Renderer->setCheckable(true); + actionSoftware_Renderer->setProperty("vid_api", QVariant(0)); + actionHardware_Renderer_OpenGL = new QAction(MainWindow); + actionHardware_Renderer_OpenGL->setObjectName(QString::fromUtf8("actionHardware_Renderer_OpenGL")); + actionHardware_Renderer_OpenGL->setCheckable(true); + actionHardware_Renderer_OpenGL->setProperty("vid_api", QVariant(1)); + actionHardware_Renderer_OpenGL_ES = new QAction(MainWindow); + actionHardware_Renderer_OpenGL_ES->setObjectName(QString::fromUtf8("actionHardware_Renderer_OpenGL_ES")); + actionHardware_Renderer_OpenGL_ES->setCheckable(true); + actionHardware_Renderer_OpenGL_ES->setProperty("vid_api", QVariant(2)); + actionHide_status_bar = new QAction(MainWindow); + actionHide_status_bar->setObjectName(QString::fromUtf8("actionHide_status_bar")); + actionHide_status_bar->setCheckable(true); + actionResizable_window = new QAction(MainWindow); + actionResizable_window->setObjectName(QString::fromUtf8("actionResizable_window")); + actionResizable_window->setCheckable(true); + actionRemember_size_and_position = new QAction(MainWindow); + actionRemember_size_and_position->setObjectName(QString::fromUtf8("actionRemember_size_and_position")); + actionRemember_size_and_position->setCheckable(true); + actionSpecify_dimensions = new QAction(MainWindow); + actionSpecify_dimensions->setObjectName(QString::fromUtf8("actionSpecify_dimensions")); + actionForce_4_3_display_ratio = new QAction(MainWindow); + actionForce_4_3_display_ratio->setObjectName(QString::fromUtf8("actionForce_4_3_display_ratio")); + actionForce_4_3_display_ratio->setCheckable(true); + actionHiDPI_scaling = new QAction(MainWindow); + actionHiDPI_scaling->setObjectName(QString::fromUtf8("actionHiDPI_scaling")); + actionHiDPI_scaling->setCheckable(true); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan = new QAction(MainWindow); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan->setObjectName(QString::fromUtf8("actionCGA_PCjr_Tandy_EGA_S_VGA_overscan")); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan->setCheckable(true); + actionChange_contrast_for_monochrome_display = new QAction(MainWindow); + actionChange_contrast_for_monochrome_display->setObjectName(QString::fromUtf8("actionChange_contrast_for_monochrome_display")); + actionChange_contrast_for_monochrome_display->setCheckable(true); + action0_5x = new QAction(MainWindow); + action0_5x->setObjectName(QString::fromUtf8("action0_5x")); + action0_5x->setCheckable(true); + action1x = new QAction(MainWindow); + action1x->setObjectName(QString::fromUtf8("action1x")); + action1x->setCheckable(true); + action1_5x = new QAction(MainWindow); + action1_5x->setObjectName(QString::fromUtf8("action1_5x")); + action1_5x->setCheckable(true); + action2x = new QAction(MainWindow); + action2x->setObjectName(QString::fromUtf8("action2x")); + action2x->setCheckable(true); + action3x = new QAction(MainWindow); + action3x->setObjectName(QString::fromUtf8("action3x")); + action3x->setCheckable(true); + action4x = new QAction(MainWindow); + action4x->setObjectName(QString::fromUtf8("action4x")); + action4x->setCheckable(true); + action5x = new QAction(MainWindow); + action5x->setObjectName(QString::fromUtf8("action5x")); + action5x->setCheckable(true); + action6x = new QAction(MainWindow); + action6x->setObjectName(QString::fromUtf8("action6x")); + action6x->setCheckable(true); + action7x = new QAction(MainWindow); + action7x->setObjectName(QString::fromUtf8("action7x")); + action7x->setCheckable(true); + action8x = new QAction(MainWindow); + action8x->setObjectName(QString::fromUtf8("action8x")); + action8x->setCheckable(true); + actionNearest = new QAction(MainWindow); + actionNearest->setObjectName(QString::fromUtf8("actionNearest")); + actionNearest->setCheckable(true); + actionLinear = new QAction(MainWindow); + actionLinear->setObjectName(QString::fromUtf8("actionLinear")); + actionLinear->setCheckable(true); + actionFullScreen_stretch = new QAction(MainWindow); + actionFullScreen_stretch->setObjectName(QString::fromUtf8("actionFullScreen_stretch")); + actionFullScreen_stretch->setCheckable(true); + actionFullScreen_43 = new QAction(MainWindow); + actionFullScreen_43->setObjectName(QString::fromUtf8("actionFullScreen_43")); + actionFullScreen_43->setCheckable(true); + actionFullScreen_keepRatio = new QAction(MainWindow); + actionFullScreen_keepRatio->setObjectName(QString::fromUtf8("actionFullScreen_keepRatio")); + actionFullScreen_keepRatio->setCheckable(true); + actionFullScreen_int = new QAction(MainWindow); + actionFullScreen_int->setObjectName(QString::fromUtf8("actionFullScreen_int")); + actionFullScreen_int->setCheckable(true); + actionFullScreen_int43 = new QAction(MainWindow); + actionFullScreen_int43->setObjectName(QString::fromUtf8("actionFullScreen_int43")); + actionFullScreen_int43->setCheckable(true); + actionInverted_VGA_monitor = new QAction(MainWindow); + actionInverted_VGA_monitor->setObjectName(QString::fromUtf8("actionInverted_VGA_monitor")); + actionInverted_VGA_monitor->setCheckable(true); + actionRGB_Color = new QAction(MainWindow); + actionRGB_Color->setObjectName(QString::fromUtf8("actionRGB_Color")); + actionRGB_Color->setCheckable(true); + actionRGB_Grayscale = new QAction(MainWindow); + actionRGB_Grayscale->setObjectName(QString::fromUtf8("actionRGB_Grayscale")); + actionRGB_Grayscale->setCheckable(true); + actionAmber_monitor = new QAction(MainWindow); + actionAmber_monitor->setObjectName(QString::fromUtf8("actionAmber_monitor")); + actionAmber_monitor->setCheckable(true); + actionGreen_monitor = new QAction(MainWindow); + actionGreen_monitor->setObjectName(QString::fromUtf8("actionGreen_monitor")); + actionGreen_monitor->setCheckable(true); + actionWhite_monitor = new QAction(MainWindow); + actionWhite_monitor->setObjectName(QString::fromUtf8("actionWhite_monitor")); + actionWhite_monitor->setCheckable(true); + actionBT601_NTSC_PAL = new QAction(MainWindow); + actionBT601_NTSC_PAL->setObjectName(QString::fromUtf8("actionBT601_NTSC_PAL")); + actionBT601_NTSC_PAL->setCheckable(true); + actionBT709_HDTV = new QAction(MainWindow); + actionBT709_HDTV->setObjectName(QString::fromUtf8("actionBT709_HDTV")); + actionBT709_HDTV->setCheckable(true); + actionAverage = new QAction(MainWindow); + actionAverage->setObjectName(QString::fromUtf8("actionAverage")); + actionAverage->setCheckable(true); + actionAbout_Qt = new QAction(MainWindow); + actionAbout_Qt->setObjectName(QString::fromUtf8("actionAbout_Qt")); + actionAbout_Qt->setVisible(false); + actionAbout_Qt->setMenuRole(QAction::AboutQtRole); + actionAbout_86Box = new QAction(MainWindow); + actionAbout_86Box->setObjectName(QString::fromUtf8("actionAbout_86Box")); + actionAbout_86Box->setMenuRole(QAction::AboutRole); + actionDocumentation = new QAction(MainWindow); + actionDocumentation->setObjectName(QString::fromUtf8("actionDocumentation")); + actionUpdate_status_bar_icons = new QAction(MainWindow); + actionUpdate_status_bar_icons->setObjectName(QString::fromUtf8("actionUpdate_status_bar_icons")); + actionUpdate_status_bar_icons->setCheckable(true); + actionTake_screenshot = new QAction(MainWindow); + actionTake_screenshot->setObjectName(QString::fromUtf8("actionTake_screenshot")); + actionTake_screenshot->setShortcutVisibleInContextMenu(false); + actionSound_gain = new QAction(MainWindow); + actionSound_gain->setObjectName(QString::fromUtf8("actionSound_gain")); + actionOpenGL_3_0_Core = new QAction(MainWindow); + actionOpenGL_3_0_Core->setObjectName(QString::fromUtf8("actionOpenGL_3_0_Core")); + actionOpenGL_3_0_Core->setCheckable(true); + actionOpenGL_3_0_Core->setProperty("vid_api", QVariant(3)); + actionPreferences = new QAction(MainWindow); + actionPreferences->setObjectName(QString::fromUtf8("actionPreferences")); + actionPreferences->setMenuRole(QAction::PreferencesRole); + actionEnable_Discord_integration = new QAction(MainWindow); + actionEnable_Discord_integration->setObjectName(QString::fromUtf8("actionEnable_Discord_integration")); + actionEnable_Discord_integration->setCheckable(true); + actionHide_tool_bar = new QAction(MainWindow); + actionHide_tool_bar->setObjectName(QString::fromUtf8("actionHide_tool_bar")); + actionHide_tool_bar->setCheckable(true); + actionACPI_Shutdown = new QAction(MainWindow); + actionACPI_Shutdown->setObjectName(QString::fromUtf8("actionACPI_Shutdown")); + actionACPI_Shutdown->setEnabled(true); + QIcon icon5; + icon5.addFile(QString::fromUtf8(":/menuicons/win/icons/acpi_shutdown.ico"), QSize(), QIcon::Normal, QIcon::Off); + actionACPI_Shutdown->setIcon(icon5); + actionACPI_Shutdown->setVisible(true); + actionBegin_trace = new QAction(MainWindow); + actionBegin_trace->setObjectName(QString::fromUtf8("actionBegin_trace")); + actionBegin_trace->setVisible(false); + actionBegin_trace->setShortcutVisibleInContextMenu(false); + actionEnd_trace = new QAction(MainWindow); + actionEnd_trace->setObjectName(QString::fromUtf8("actionEnd_trace")); + actionEnd_trace->setVisible(false); + actionEnd_trace->setShortcutVisibleInContextMenu(false); + actionRenderer_options = new QAction(MainWindow); + actionRenderer_options->setObjectName(QString::fromUtf8("actionRenderer_options")); + actionVulkan = new QAction(MainWindow); + actionVulkan->setObjectName(QString::fromUtf8("actionVulkan")); + actionVulkan->setCheckable(true); + actionVulkan->setProperty("vid_api", QVariant(4)); + actionMCA_devices = new QAction(MainWindow); + actionMCA_devices->setObjectName(QString::fromUtf8("actionMCA_devices")); + actionDirect3D_9 = new QAction(MainWindow); + actionDirect3D_9->setObjectName(QString::fromUtf8("actionDirect3D_9")); + actionDirect3D_9->setCheckable(true); + actionDirect3D_9->setProperty("vid_api", QVariant(5)); + actionShow_non_primary_monitors = new QAction(MainWindow); + actionShow_non_primary_monitors->setObjectName(QString::fromUtf8("actionShow_non_primary_monitors")); + actionShow_non_primary_monitors->setCheckable(true); + actionVNC = new QAction(MainWindow); + actionVNC->setObjectName(QString::fromUtf8("actionVNC")); + actionVNC->setCheckable(true); + actionVNC->setProperty("vid_api", QVariant(6)); + actionOpen_screenshots_folder = new QAction(MainWindow); + actionOpen_screenshots_folder->setObjectName(QString::fromUtf8("actionOpen_screenshots_folder")); + actionApply_fullscreen_stretch_mode_when_maximized = new QAction(MainWindow); + actionApply_fullscreen_stretch_mode_when_maximized->setObjectName(QString::fromUtf8("actionApply_fullscreen_stretch_mode_when_maximized")); + actionApply_fullscreen_stretch_mode_when_maximized->setCheckable(true); + actionCursor_Puck = new QAction(MainWindow); + actionCursor_Puck->setObjectName(QString::fromUtf8("actionCursor_Puck")); + actionCursor_Puck->setCheckable(true); + actionPen = new QAction(MainWindow); + actionPen->setObjectName(QString::fromUtf8("actionPen")); + actionPen->setCheckable(true); + centralwidget = new QWidget(MainWindow); + centralwidget->setObjectName(QString::fromUtf8("centralwidget")); + QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(centralwidget->sizePolicy().hasHeightForWidth()); + centralwidget->setSizePolicy(sizePolicy); + verticalLayout = new QVBoxLayout(centralwidget); + verticalLayout->setSpacing(0); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + stackedWidget = new RendererStack(centralwidget); + stackedWidget->setObjectName(QString::fromUtf8("stackedWidget")); + sizePolicy.setHeightForWidth(stackedWidget->sizePolicy().hasHeightForWidth()); + stackedWidget->setSizePolicy(sizePolicy); + + verticalLayout->addWidget(stackedWidget); + + MainWindow->setCentralWidget(centralwidget); + menubar = new QMenuBar(MainWindow); + menubar->setObjectName(QString::fromUtf8("menubar")); + menubar->setGeometry(QRect(0, 0, 724, 23)); + menuAction = new QMenu(menubar); + menuAction->setObjectName(QString::fromUtf8("menuAction")); + menuTablet_tool = new QMenu(menuAction); + menuTablet_tool->setObjectName(QString::fromUtf8("menuTablet_tool")); + menuTools = new QMenu(menubar); + menuTools->setObjectName(QString::fromUtf8("menuTools")); + menuView = new QMenu(menubar); + menuView->setObjectName(QString::fromUtf8("menuView")); + menuRenderer = new QMenu(menuView); + menuRenderer->setObjectName(QString::fromUtf8("menuRenderer")); + menuWindow_scale_factor = new QMenu(menuView); + menuWindow_scale_factor->setObjectName(QString::fromUtf8("menuWindow_scale_factor")); + menuFilter_method = new QMenu(menuView); + menuFilter_method->setObjectName(QString::fromUtf8("menuFilter_method")); + menuFullscreen_stretch_mode = new QMenu(menuView); + menuFullscreen_stretch_mode->setObjectName(QString::fromUtf8("menuFullscreen_stretch_mode")); + menuEGA_S_VGA_settings = new QMenu(menuView); + menuEGA_S_VGA_settings->setObjectName(QString::fromUtf8("menuEGA_S_VGA_settings")); + menuVGA_screen_type = new QMenu(menuEGA_S_VGA_settings); + menuVGA_screen_type->setObjectName(QString::fromUtf8("menuVGA_screen_type")); + menuGrayscale_conversion_type = new QMenu(menuEGA_S_VGA_settings); + menuGrayscale_conversion_type->setObjectName(QString::fromUtf8("menuGrayscale_conversion_type")); + menuMedia = new QMenu(menubar); + menuMedia->setObjectName(QString::fromUtf8("menuMedia")); + menuAbout = new QMenu(menubar); + menuAbout->setObjectName(QString::fromUtf8("menuAbout")); + MainWindow->setMenuBar(menubar); + statusbar = new QStatusBar(MainWindow); + statusbar->setObjectName(QString::fromUtf8("statusbar")); + MainWindow->setStatusBar(statusbar); + toolBar = new QToolBar(MainWindow); + toolBar->setObjectName(QString::fromUtf8("toolBar")); + toolBar->setContextMenuPolicy(Qt::PreventContextMenu); + toolBar->setWindowTitle(QString::fromUtf8("toolBar")); + toolBar->setAutoFillBackground(true); + toolBar->setMovable(false); + toolBar->setAllowedAreas(Qt::TopToolBarArea); + toolBar->setIconSize(QSize(16, 16)); + toolBar->setToolButtonStyle(Qt::ToolButtonIconOnly); + toolBar->setFloatable(false); + MainWindow->addToolBar(Qt::TopToolBarArea, toolBar); + + menubar->addAction(menuAction->menuAction()); + menubar->addAction(menuView->menuAction()); + menubar->addAction(menuMedia->menuAction()); + menubar->addAction(menuTools->menuAction()); + menubar->addAction(menuAbout->menuAction()); + menuAction->addAction(actionAuto_pause); + menuAction->addSeparator(); + menuAction->addAction(actionKeyboard_requires_capture); + menuAction->addAction(actionRight_CTRL_is_left_ALT); + menuAction->addAction(menuTablet_tool->menuAction()); + menuAction->addSeparator(); + menuAction->addAction(actionPause); + menuAction->addSeparator(); + menuAction->addAction(actionHard_Reset); + menuAction->addAction(actionCtrl_Alt_Del); + menuAction->addSeparator(); + menuAction->addAction(actionCtrl_Alt_Esc); + menuAction->addSeparator(); + menuAction->addAction(actionExit); + menuTablet_tool->addAction(actionPen); + menuTablet_tool->addAction(actionCursor_Puck); + menuTools->addAction(actionSettings); + menuTools->addAction(actionUpdate_status_bar_icons); + menuTools->addSeparator(); + menuTools->addAction(actionEnable_Discord_integration); + menuTools->addSeparator(); + menuTools->addAction(actionTake_screenshot); + menuTools->addAction(actionSound_gain); + menuTools->addSeparator(); + menuTools->addAction(actionPreferences); + menuTools->addSeparator(); + menuTools->addAction(actionBegin_trace); + menuTools->addAction(actionEnd_trace); + menuTools->addSeparator(); + menuTools->addAction(actionMCA_devices); + menuTools->addSeparator(); + menuTools->addAction(actionOpen_screenshots_folder); + menuView->addAction(actionHide_tool_bar); + menuView->addAction(actionHide_status_bar); + menuView->addSeparator(); + menuView->addAction(actionShow_non_primary_monitors); + menuView->addAction(actionResizable_window); + menuView->addAction(actionRemember_size_and_position); + menuView->addSeparator(); + menuView->addAction(menuRenderer->menuAction()); + menuView->addAction(actionRenderer_options); + menuView->addSeparator(); + menuView->addAction(actionSpecify_dimensions); + menuView->addAction(actionForce_4_3_display_ratio); + menuView->addAction(menuWindow_scale_factor->menuAction()); + menuView->addAction(menuFilter_method->menuAction()); + menuView->addAction(actionHiDPI_scaling); + menuView->addSeparator(); + menuView->addAction(actionFullscreen); + menuView->addAction(menuFullscreen_stretch_mode->menuAction()); + menuView->addAction(actionApply_fullscreen_stretch_mode_when_maximized); + menuView->addAction(menuEGA_S_VGA_settings->menuAction()); + menuView->addSeparator(); + menuView->addAction(actionCGA_PCjr_Tandy_EGA_S_VGA_overscan); + menuView->addAction(actionChange_contrast_for_monochrome_display); + menuRenderer->addAction(actionSoftware_Renderer); + menuRenderer->addAction(actionHardware_Renderer_OpenGL); + menuRenderer->addAction(actionHardware_Renderer_OpenGL_ES); + menuRenderer->addAction(actionOpenGL_3_0_Core); + menuRenderer->addAction(actionVulkan); + menuRenderer->addAction(actionDirect3D_9); + menuRenderer->addAction(actionVNC); + menuWindow_scale_factor->addAction(action0_5x); + menuWindow_scale_factor->addAction(action1x); + menuWindow_scale_factor->addAction(action1_5x); + menuWindow_scale_factor->addAction(action2x); + menuWindow_scale_factor->addAction(action3x); + menuWindow_scale_factor->addAction(action4x); + menuWindow_scale_factor->addAction(action5x); + menuWindow_scale_factor->addAction(action6x); + menuWindow_scale_factor->addAction(action7x); + menuWindow_scale_factor->addAction(action8x); + menuFilter_method->addAction(actionNearest); + menuFilter_method->addAction(actionLinear); + menuFullscreen_stretch_mode->addAction(actionFullScreen_stretch); + menuFullscreen_stretch_mode->addAction(actionFullScreen_43); + menuFullscreen_stretch_mode->addAction(actionFullScreen_keepRatio); + menuFullscreen_stretch_mode->addAction(actionFullScreen_int); + menuFullscreen_stretch_mode->addAction(actionFullScreen_int43); + menuEGA_S_VGA_settings->addAction(actionInverted_VGA_monitor); + menuEGA_S_VGA_settings->addAction(menuVGA_screen_type->menuAction()); + menuEGA_S_VGA_settings->addAction(menuGrayscale_conversion_type->menuAction()); + menuVGA_screen_type->addAction(actionRGB_Color); + menuVGA_screen_type->addAction(actionRGB_Grayscale); + menuVGA_screen_type->addAction(actionAmber_monitor); + menuVGA_screen_type->addAction(actionGreen_monitor); + menuVGA_screen_type->addAction(actionWhite_monitor); + menuGrayscale_conversion_type->addAction(actionBT601_NTSC_PAL); + menuGrayscale_conversion_type->addAction(actionBT709_HDTV); + menuGrayscale_conversion_type->addAction(actionAverage); + menuAbout->addAction(actionDocumentation); + menuAbout->addAction(actionAbout_86Box); + menuAbout->addAction(actionAbout_Qt); + toolBar->addAction(actionPause); + toolBar->addAction(actionHard_Reset); + toolBar->addSeparator(); + toolBar->addAction(actionACPI_Shutdown); + toolBar->addSeparator(); + toolBar->addAction(actionCtrl_Alt_Del); + toolBar->addAction(actionCtrl_Alt_Esc); + toolBar->addSeparator(); + toolBar->addAction(actionSettings); + + retranslateUi(MainWindow); + + QMetaObject::connectSlotsByName(MainWindow); + } // setupUi + + void retranslateUi(QMainWindow *MainWindow) + { + MainWindow->setWindowTitle(QCoreApplication::translate("MainWindow", "86Box", nullptr)); + actionAuto_pause->setText(QCoreApplication::translate("MainWindow", "&Auto-pause on focus loss", nullptr)); + actionKeyboard_requires_capture->setText(QCoreApplication::translate("MainWindow", "&Keyboard requires capture", nullptr)); + actionRight_CTRL_is_left_ALT->setText(QCoreApplication::translate("MainWindow", "&Right CTRL is left ALT", nullptr)); + actionHard_Reset->setText(QCoreApplication::translate("MainWindow", "&Hard Reset...", nullptr)); + actionCtrl_Alt_Del->setText(QCoreApplication::translate("MainWindow", "&Ctrl+Alt+Del", nullptr)); +#if QT_CONFIG(tooltip) + actionCtrl_Alt_Del->setToolTip(QCoreApplication::translate("MainWindow", "Ctrl+Alt+Del", nullptr)); +#endif // QT_CONFIG(tooltip) +#if QT_CONFIG(shortcut) + actionCtrl_Alt_Del->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+F12", nullptr)); +#endif // QT_CONFIG(shortcut) + actionCtrl_Alt_Esc->setText(QCoreApplication::translate("MainWindow", "Ctrl+Alt+&Esc", nullptr)); + actionPause->setText(QCoreApplication::translate("MainWindow", "&Pause", nullptr)); + actionExit->setText(QCoreApplication::translate("MainWindow", "Exit", nullptr)); + actionSettings->setText(QCoreApplication::translate("MainWindow", "&Settings...", nullptr)); + actionFullscreen->setText(QCoreApplication::translate("MainWindow", "&Fullscreen", nullptr)); + actionSoftware_Renderer->setText(QCoreApplication::translate("MainWindow", "&Qt (Software)", nullptr)); + actionHardware_Renderer_OpenGL->setText(QCoreApplication::translate("MainWindow", "Qt (&OpenGL)", nullptr)); + actionHardware_Renderer_OpenGL_ES->setText(QCoreApplication::translate("MainWindow", "Qt (OpenGL &ES)", nullptr)); + actionHide_status_bar->setText(QCoreApplication::translate("MainWindow", "&Hide status bar", nullptr)); + actionResizable_window->setText(QCoreApplication::translate("MainWindow", "&Resizeable window", nullptr)); + actionRemember_size_and_position->setText(QCoreApplication::translate("MainWindow", "R&emember size && position", nullptr)); + actionSpecify_dimensions->setText(QCoreApplication::translate("MainWindow", "Specify dimensions...", nullptr)); + actionForce_4_3_display_ratio->setText(QCoreApplication::translate("MainWindow", "F&orce 4:3 display ratio", nullptr)); + actionHiDPI_scaling->setText(QCoreApplication::translate("MainWindow", "Hi&DPI scaling", nullptr)); + actionCGA_PCjr_Tandy_EGA_S_VGA_overscan->setText(QCoreApplication::translate("MainWindow", "CGA/PCjr/Tandy/E&GA/(S)VGA overscan", nullptr)); + actionChange_contrast_for_monochrome_display->setText(QCoreApplication::translate("MainWindow", "Change contrast for &monochrome display", nullptr)); + action0_5x->setText(QCoreApplication::translate("MainWindow", "&0.5x", nullptr)); + action1x->setText(QCoreApplication::translate("MainWindow", "&1x", nullptr)); + action1_5x->setText(QCoreApplication::translate("MainWindow", "1.&5x", nullptr)); + action2x->setText(QCoreApplication::translate("MainWindow", "&2x", nullptr)); + action3x->setText(QCoreApplication::translate("MainWindow", "&3x", nullptr)); + action4x->setText(QCoreApplication::translate("MainWindow", "&4x", nullptr)); + action5x->setText(QCoreApplication::translate("MainWindow", "&5x", nullptr)); + action6x->setText(QCoreApplication::translate("MainWindow", "&6x", nullptr)); + action7x->setText(QCoreApplication::translate("MainWindow", "&7x", nullptr)); + action8x->setText(QCoreApplication::translate("MainWindow", "&8x", nullptr)); + actionNearest->setText(QCoreApplication::translate("MainWindow", "&Nearest", nullptr)); + actionLinear->setText(QCoreApplication::translate("MainWindow", "&Linear", nullptr)); + actionFullScreen_stretch->setText(QCoreApplication::translate("MainWindow", "&Full screen stretch", nullptr)); + actionFullScreen_43->setText(QCoreApplication::translate("MainWindow", "&4:3", nullptr)); + actionFullScreen_keepRatio->setText(QCoreApplication::translate("MainWindow", "&Square pixels (Keep ratio)", nullptr)); + actionFullScreen_int->setText(QCoreApplication::translate("MainWindow", "&Integer scale", nullptr)); + actionFullScreen_int43->setText(QCoreApplication::translate("MainWindow", "4:&3 Integer scale", nullptr)); + actionInverted_VGA_monitor->setText(QCoreApplication::translate("MainWindow", "&Inverted VGA monitor", nullptr)); + actionRGB_Color->setText(QCoreApplication::translate("MainWindow", "RGB &Color", nullptr)); + actionRGB_Grayscale->setText(QCoreApplication::translate("MainWindow", "&RGB Grayscale", nullptr)); + actionAmber_monitor->setText(QCoreApplication::translate("MainWindow", "&Amber monitor", nullptr)); + actionGreen_monitor->setText(QCoreApplication::translate("MainWindow", "&Green monitor", nullptr)); + actionWhite_monitor->setText(QCoreApplication::translate("MainWindow", "&White monitor", nullptr)); + actionBT601_NTSC_PAL->setText(QCoreApplication::translate("MainWindow", "BT&601 (NTSC/PAL)", nullptr)); + actionBT709_HDTV->setText(QCoreApplication::translate("MainWindow", "BT&709 (HDTV)", nullptr)); + actionAverage->setText(QCoreApplication::translate("MainWindow", "&Average", nullptr)); + actionAbout_Qt->setText(QCoreApplication::translate("MainWindow", "About Qt", nullptr)); + actionAbout_86Box->setText(QCoreApplication::translate("MainWindow", "&About 86Box...", nullptr)); + actionDocumentation->setText(QCoreApplication::translate("MainWindow", "&Documentation...", nullptr)); + actionUpdate_status_bar_icons->setText(QCoreApplication::translate("MainWindow", "&Update status bar icons", nullptr)); + actionTake_screenshot->setText(QCoreApplication::translate("MainWindow", "Take s&creenshot", nullptr)); +#if QT_CONFIG(shortcut) + actionTake_screenshot->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+F11", nullptr)); +#endif // QT_CONFIG(shortcut) + actionSound_gain->setText(QCoreApplication::translate("MainWindow", "Sound &gain...", nullptr)); + actionOpenGL_3_0_Core->setText(QCoreApplication::translate("MainWindow", "Open&GL (3.0 Core)", nullptr)); + actionPreferences->setText(QCoreApplication::translate("MainWindow", "&Preferences...", nullptr)); + actionEnable_Discord_integration->setText(QCoreApplication::translate("MainWindow", "Enable &Discord integration", nullptr)); + actionHide_tool_bar->setText(QCoreApplication::translate("MainWindow", "Hide &toolbar", nullptr)); +#if QT_CONFIG(tooltip) + actionHide_tool_bar->setToolTip(QCoreApplication::translate("MainWindow", "Hide tool bar", nullptr)); +#endif // QT_CONFIG(tooltip) + actionACPI_Shutdown->setText(QCoreApplication::translate("MainWindow", "ACPI Shutdown", nullptr)); +#if QT_CONFIG(tooltip) + actionACPI_Shutdown->setToolTip(QCoreApplication::translate("MainWindow", "ACPI Shutdown", nullptr)); +#endif // QT_CONFIG(tooltip) + actionBegin_trace->setText(QCoreApplication::translate("MainWindow", "Begin trace", nullptr)); +#if QT_CONFIG(shortcut) + actionBegin_trace->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+T", nullptr)); +#endif // QT_CONFIG(shortcut) + actionEnd_trace->setText(QCoreApplication::translate("MainWindow", "End trace", nullptr)); +#if QT_CONFIG(shortcut) + actionEnd_trace->setShortcut(QCoreApplication::translate("MainWindow", "Ctrl+T", nullptr)); +#endif // QT_CONFIG(shortcut) + actionRenderer_options->setText(QCoreApplication::translate("MainWindow", "Renderer options...", nullptr)); + actionVulkan->setText(QCoreApplication::translate("MainWindow", "&Vulkan", nullptr)); + actionMCA_devices->setText(QCoreApplication::translate("MainWindow", "MCA devices...", nullptr)); + actionDirect3D_9->setText(QCoreApplication::translate("MainWindow", "Direct3D 9", nullptr)); + actionShow_non_primary_monitors->setText(QCoreApplication::translate("MainWindow", "Show non-primary monitors", nullptr)); + actionVNC->setText(QCoreApplication::translate("MainWindow", "VNC", nullptr)); + actionOpen_screenshots_folder->setText(QCoreApplication::translate("MainWindow", "Open screenshots folder...", nullptr)); + actionApply_fullscreen_stretch_mode_when_maximized->setText(QCoreApplication::translate("MainWindow", "Apply fullscreen stretch mode when maximized", nullptr)); + actionCursor_Puck->setText(QCoreApplication::translate("MainWindow", "Cursor/Puck", nullptr)); + actionPen->setText(QCoreApplication::translate("MainWindow", "Pen", nullptr)); + menuAction->setTitle(QCoreApplication::translate("MainWindow", "&Action", nullptr)); + menuTablet_tool->setTitle(QCoreApplication::translate("MainWindow", "Tablet tool", nullptr)); + menuTools->setTitle(QCoreApplication::translate("MainWindow", "&Tools", nullptr)); + menuView->setTitle(QCoreApplication::translate("MainWindow", "&View", nullptr)); + menuRenderer->setTitle(QCoreApplication::translate("MainWindow", "Re&nderer", nullptr)); + menuWindow_scale_factor->setTitle(QCoreApplication::translate("MainWindow", "&Window scale factor", nullptr)); + menuFilter_method->setTitle(QCoreApplication::translate("MainWindow", "Filter method", nullptr)); + menuFullscreen_stretch_mode->setTitle(QCoreApplication::translate("MainWindow", "Fullscreen &stretch mode", nullptr)); + menuEGA_S_VGA_settings->setTitle(QCoreApplication::translate("MainWindow", "E&GA/(S)VGA settings", nullptr)); + menuVGA_screen_type->setTitle(QCoreApplication::translate("MainWindow", "VGA screen &type", nullptr)); + menuGrayscale_conversion_type->setTitle(QCoreApplication::translate("MainWindow", "Grayscale &conversion type", nullptr)); + menuMedia->setTitle(QCoreApplication::translate("MainWindow", "&Media", nullptr)); + menuAbout->setTitle(QCoreApplication::translate("MainWindow", "&Help", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class MainWindow: public Ui_MainWindow {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_MAINWINDOW_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_mcadevicelist.h b/src/build64/src/qt/ui_autogen/include/ui_qt_mcadevicelist.h new file mode 100644 index 000000000..cda6f618f --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_mcadevicelist.h @@ -0,0 +1,76 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_mcadevicelist.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_MCADEVICELIST_H +#define UI_QT_MCADEVICELIST_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_MCADeviceList +{ +public: + QVBoxLayout *verticalLayout; + QLabel *label; + QListWidget *listWidget; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *MCADeviceList) + { + if (MCADeviceList->objectName().isEmpty()) + MCADeviceList->setObjectName(QString::fromUtf8("MCADeviceList")); + MCADeviceList->resize(400, 300); + verticalLayout = new QVBoxLayout(MCADeviceList); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + label = new QLabel(MCADeviceList); + label->setObjectName(QString::fromUtf8("label")); + + verticalLayout->addWidget(label); + + listWidget = new QListWidget(MCADeviceList); + listWidget->setObjectName(QString::fromUtf8("listWidget")); + + verticalLayout->addWidget(listWidget); + + buttonBox = new QDialogButtonBox(MCADeviceList); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + + retranslateUi(MCADeviceList); + QObject::connect(buttonBox, SIGNAL(accepted()), MCADeviceList, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), MCADeviceList, SLOT(reject())); + + QMetaObject::connectSlotsByName(MCADeviceList); + } // setupUi + + void retranslateUi(QDialog *MCADeviceList) + { + MCADeviceList->setWindowTitle(QCoreApplication::translate("MCADeviceList", "MCA devices", nullptr)); + label->setText(QCoreApplication::translate("MCADeviceList", "List of MCA devices:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class MCADeviceList: public Ui_MCADeviceList {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_MCADEVICELIST_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_newfloppydialog.h b/src/build64/src/qt/ui_autogen/include/ui_qt_newfloppydialog.h new file mode 100644 index 000000000..5574cb6ca --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_newfloppydialog.h @@ -0,0 +1,125 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_newfloppydialog.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_NEWFLOPPYDIALOG_H +#define UI_QT_NEWFLOPPYDIALOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include "qt_filefield.hpp" + +QT_BEGIN_NAMESPACE + +class Ui_NewFloppyDialog +{ +public: + QFormLayout *formLayout; + QLabel *label_2; + FileField *fileField; + QLabel *label; + QComboBox *comboBoxSize; + QLabel *labelRpm; + QComboBox *comboBoxRpm; + QSpacerItem *verticalSpacer; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *NewFloppyDialog) + { + if (NewFloppyDialog->objectName().isEmpty()) + NewFloppyDialog->setObjectName(QString::fromUtf8("NewFloppyDialog")); + NewFloppyDialog->resize(327, 200); + NewFloppyDialog->setMinimumSize(QSize(327, 200)); + NewFloppyDialog->setMaximumSize(QSize(327, 200)); + formLayout = new QFormLayout(NewFloppyDialog); + formLayout->setObjectName(QString::fromUtf8("formLayout")); + label_2 = new QLabel(NewFloppyDialog); + label_2->setObjectName(QString::fromUtf8("label_2")); + + formLayout->setWidget(0, QFormLayout::LabelRole, label_2); + + fileField = new FileField(NewFloppyDialog); + fileField->setObjectName(QString::fromUtf8("fileField")); + QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(fileField->sizePolicy().hasHeightForWidth()); + fileField->setSizePolicy(sizePolicy); + + formLayout->setWidget(0, QFormLayout::FieldRole, fileField); + + label = new QLabel(NewFloppyDialog); + label->setObjectName(QString::fromUtf8("label")); + + formLayout->setWidget(1, QFormLayout::LabelRole, label); + + comboBoxSize = new QComboBox(NewFloppyDialog); + comboBoxSize->setObjectName(QString::fromUtf8("comboBoxSize")); + comboBoxSize->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSize->sizePolicy().hasHeightForWidth()); + comboBoxSize->setSizePolicy(sizePolicy); + + formLayout->setWidget(1, QFormLayout::FieldRole, comboBoxSize); + + labelRpm = new QLabel(NewFloppyDialog); + labelRpm->setObjectName(QString::fromUtf8("labelRpm")); + + formLayout->setWidget(2, QFormLayout::LabelRole, labelRpm); + + comboBoxRpm = new QComboBox(NewFloppyDialog); + comboBoxRpm->setObjectName(QString::fromUtf8("comboBoxRpm")); + comboBoxRpm->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxRpm->sizePolicy().hasHeightForWidth()); + comboBoxRpm->setSizePolicy(sizePolicy1); + + formLayout->setWidget(2, QFormLayout::FieldRole, comboBoxRpm); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + formLayout->setItem(3, QFormLayout::LabelRole, verticalSpacer); + + buttonBox = new QDialogButtonBox(NewFloppyDialog); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + formLayout->setWidget(4, QFormLayout::SpanningRole, buttonBox); + + + retranslateUi(NewFloppyDialog); + QObject::connect(buttonBox, SIGNAL(accepted()), NewFloppyDialog, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), NewFloppyDialog, SLOT(reject())); + + QMetaObject::connectSlotsByName(NewFloppyDialog); + } // setupUi + + void retranslateUi(QDialog *NewFloppyDialog) + { + NewFloppyDialog->setWindowTitle(QCoreApplication::translate("NewFloppyDialog", "New Image", nullptr)); + label_2->setText(QCoreApplication::translate("NewFloppyDialog", "File name:", nullptr)); + label->setText(QCoreApplication::translate("NewFloppyDialog", "Disk size:", nullptr)); + labelRpm->setText(QCoreApplication::translate("NewFloppyDialog", "RPM mode:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class NewFloppyDialog: public Ui_NewFloppyDialog {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_NEWFLOPPYDIALOG_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h b/src/build64/src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h new file mode 100644 index 000000000..a42e22f3e --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_opengloptionsdialog.h @@ -0,0 +1,182 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_opengloptionsdialog.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_OPENGLOPTIONSDIALOG_H +#define UI_QT_OPENGLOPTIONSDIALOG_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_OpenGLOptionsDialog +{ +public: + QVBoxLayout *verticalLayout; + QGroupBox *groupBox; + QGridLayout *gridLayout_2; + QRadioButton *syncToFramerate; + QSpinBox *targetFps; + QCheckBox *vsync; + QRadioButton *syncWithVideo; + QSlider *fpsSlider; + QGroupBox *groupBox_2; + QGridLayout *gridLayout; + QPushButton *removeShader; + QSpacerItem *verticalSpacer; + QTextEdit *shader; + QPushButton *addShader; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *OpenGLOptionsDialog) + { + if (OpenGLOptionsDialog->objectName().isEmpty()) + OpenGLOptionsDialog->setObjectName(QString::fromUtf8("OpenGLOptionsDialog")); + OpenGLOptionsDialog->resize(400, 320); + verticalLayout = new QVBoxLayout(OpenGLOptionsDialog); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + groupBox = new QGroupBox(OpenGLOptionsDialog); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + gridLayout_2 = new QGridLayout(groupBox); + gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2")); + syncToFramerate = new QRadioButton(groupBox); + syncToFramerate->setObjectName(QString::fromUtf8("syncToFramerate")); + + gridLayout_2->addWidget(syncToFramerate, 1, 0, 1, 1); + + targetFps = new QSpinBox(groupBox); + targetFps->setObjectName(QString::fromUtf8("targetFps")); + targetFps->setEnabled(false); + targetFps->setMinimum(15); + targetFps->setMaximum(240); + targetFps->setValue(60); + + gridLayout_2->addWidget(targetFps, 2, 1, 1, 1); + + vsync = new QCheckBox(groupBox); + vsync->setObjectName(QString::fromUtf8("vsync")); + + gridLayout_2->addWidget(vsync, 3, 0, 1, 1); + + syncWithVideo = new QRadioButton(groupBox); + syncWithVideo->setObjectName(QString::fromUtf8("syncWithVideo")); + syncWithVideo->setChecked(true); + + gridLayout_2->addWidget(syncWithVideo, 0, 0, 1, 1); + + fpsSlider = new QSlider(groupBox); + fpsSlider->setObjectName(QString::fromUtf8("fpsSlider")); + fpsSlider->setEnabled(false); + fpsSlider->setMinimum(15); + fpsSlider->setMaximum(240); + fpsSlider->setValue(60); + fpsSlider->setOrientation(Qt::Horizontal); + fpsSlider->setInvertedAppearance(false); + fpsSlider->setTickPosition(QSlider::NoTicks); + + gridLayout_2->addWidget(fpsSlider, 2, 0, 1, 1); + + gridLayout_2->setColumnStretch(0, 3); + gridLayout_2->setColumnStretch(1, 1); + + verticalLayout->addWidget(groupBox); + + groupBox_2 = new QGroupBox(OpenGLOptionsDialog); + groupBox_2->setObjectName(QString::fromUtf8("groupBox_2")); + gridLayout = new QGridLayout(groupBox_2); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + removeShader = new QPushButton(groupBox_2); + removeShader->setObjectName(QString::fromUtf8("removeShader")); + + gridLayout->addWidget(removeShader, 2, 1, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 3, 1, 1, 1); + + shader = new QTextEdit(groupBox_2); + shader->setObjectName(QString::fromUtf8("shader")); + shader->setReadOnly(true); + + gridLayout->addWidget(shader, 1, 0, 3, 1); + + addShader = new QPushButton(groupBox_2); + addShader->setObjectName(QString::fromUtf8("addShader")); + + gridLayout->addWidget(addShader, 1, 1, 1, 1, Qt::AlignTop); + + gridLayout->setColumnStretch(0, 3); + gridLayout->setColumnStretch(1, 1); + + verticalLayout->addWidget(groupBox_2); + + buttonBox = new QDialogButtonBox(OpenGLOptionsDialog); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + QWidget::setTabOrder(syncWithVideo, syncToFramerate); + QWidget::setTabOrder(syncToFramerate, fpsSlider); + QWidget::setTabOrder(fpsSlider, targetFps); + QWidget::setTabOrder(targetFps, vsync); + QWidget::setTabOrder(vsync, shader); + QWidget::setTabOrder(shader, addShader); + QWidget::setTabOrder(addShader, removeShader); + + retranslateUi(OpenGLOptionsDialog); + QObject::connect(buttonBox, SIGNAL(accepted()), OpenGLOptionsDialog, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), OpenGLOptionsDialog, SLOT(reject())); + QObject::connect(syncToFramerate, SIGNAL(toggled(bool)), targetFps, SLOT(setEnabled(bool))); + QObject::connect(syncToFramerate, SIGNAL(toggled(bool)), fpsSlider, SLOT(setEnabled(bool))); + QObject::connect(fpsSlider, SIGNAL(valueChanged(int)), targetFps, SLOT(setValue(int))); + QObject::connect(targetFps, SIGNAL(valueChanged(int)), fpsSlider, SLOT(setValue(int))); + QObject::connect(removeShader, SIGNAL(clicked()), shader, SLOT(clear())); + + QMetaObject::connectSlotsByName(OpenGLOptionsDialog); + } // setupUi + + void retranslateUi(QDialog *OpenGLOptionsDialog) + { + OpenGLOptionsDialog->setWindowTitle(QCoreApplication::translate("OpenGLOptionsDialog", "OpenGL 3.0 renderer options", nullptr)); + groupBox->setTitle(QCoreApplication::translate("OpenGLOptionsDialog", "Render behavior", nullptr)); + syncToFramerate->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Use target framerate:", nullptr)); + targetFps->setSuffix(QCoreApplication::translate("OpenGLOptionsDialog", " fps", nullptr)); + vsync->setText(QCoreApplication::translate("OpenGLOptionsDialog", "VSync", nullptr)); +#if QT_CONFIG(tooltip) + syncWithVideo->setToolTip(QCoreApplication::translate("OpenGLOptionsDialog", "

Render each frame immediately, in sync with the emulated display.

This is the recommended option if the shaders in use don't utilize frametime for animated effects.

", nullptr)); +#endif // QT_CONFIG(tooltip) + syncWithVideo->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Synchronize with video", nullptr)); + groupBox_2->setTitle(QCoreApplication::translate("OpenGLOptionsDialog", "Shaders", nullptr)); + removeShader->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Remove", nullptr)); + shader->setPlaceholderText(QCoreApplication::translate("OpenGLOptionsDialog", "No shader selected", nullptr)); + addShader->setText(QCoreApplication::translate("OpenGLOptionsDialog", "Browse...", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class OpenGLOptionsDialog: public Ui_OpenGLOptionsDialog {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_OPENGLOPTIONSDIALOG_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_progsettings.h b/src/build64/src/qt/ui_autogen/include/ui_qt_progsettings.h new file mode 100644 index 000000000..05658f848 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_progsettings.h @@ -0,0 +1,170 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_progsettings.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_PROGSETTINGS_H +#define UI_QT_PROGSETTINGS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_ProgSettings +{ +public: + QGridLayout *gridLayout; + QComboBox *comboBox; + QLabel *label_3; + QLabel *label; + QPushButton *pushButton; + QSpacerItem *horizontalSpacer_3; + QDialogButtonBox *buttonBox; + QSlider *horizontalSlider; + QComboBox *comboBoxLanguage; + QLabel *label_2; + QPushButton *pushButtonLanguage; + QPushButton *pushButton_2; + QSpacerItem *horizontalSpacer_2; + QSpacerItem *horizontalSpacer; + QCheckBox *openDirUsrPath; + + void setupUi(QDialog *ProgSettings) + { + if (ProgSettings->objectName().isEmpty()) + ProgSettings->setObjectName(QString::fromUtf8("ProgSettings")); + ProgSettings->resize(458, 374); + ProgSettings->setMinimumSize(QSize(0, 0)); + ProgSettings->setMaximumSize(QSize(16777215, 16777215)); + gridLayout = new QGridLayout(ProgSettings); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setSizeConstraint(QLayout::SetFixedSize); + comboBox = new QComboBox(ProgSettings); + comboBox->addItem(QString()); + comboBox->setObjectName(QString::fromUtf8("comboBox")); + comboBox->setEditable(false); + comboBox->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBox, 1, 0, 1, 2); + + label_3 = new QLabel(ProgSettings); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 6, 0, 1, 1); + + label = new QLabel(ProgSettings); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 2); + + pushButton = new QPushButton(ProgSettings); + pushButton->setObjectName(QString::fromUtf8("pushButton")); + + gridLayout->addWidget(pushButton, 2, 1, 1, 1); + + horizontalSpacer_3 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout->addItem(horizontalSpacer_3, 8, 0, 1, 1); + + buttonBox = new QDialogButtonBox(ProgSettings); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 12, 0, 1, 2); + + horizontalSlider = new QSlider(ProgSettings); + horizontalSlider->setObjectName(QString::fromUtf8("horizontalSlider")); + horizontalSlider->setMinimum(10); + horizontalSlider->setMaximum(200); + horizontalSlider->setSingleStep(10); + horizontalSlider->setPageStep(20); + horizontalSlider->setValue(100); + horizontalSlider->setOrientation(Qt::Horizontal); + + gridLayout->addWidget(horizontalSlider, 7, 0, 1, 2); + + comboBoxLanguage = new QComboBox(ProgSettings); + comboBoxLanguage->addItem(QString()); + comboBoxLanguage->setObjectName(QString::fromUtf8("comboBoxLanguage")); + comboBoxLanguage->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxLanguage, 4, 0, 1, 2); + + label_2 = new QLabel(ProgSettings); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 3, 0, 1, 2); + + pushButtonLanguage = new QPushButton(ProgSettings); + pushButtonLanguage->setObjectName(QString::fromUtf8("pushButtonLanguage")); + + gridLayout->addWidget(pushButtonLanguage, 5, 1, 1, 1); + + pushButton_2 = new QPushButton(ProgSettings); + pushButton_2->setObjectName(QString::fromUtf8("pushButton_2")); + + gridLayout->addWidget(pushButton_2, 8, 1, 1, 1); + + horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout->addItem(horizontalSpacer_2, 5, 0, 1, 1); + + horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout->addItem(horizontalSpacer, 2, 0, 1, 1); + + openDirUsrPath = new QCheckBox(ProgSettings); + openDirUsrPath->setObjectName(QString::fromUtf8("openDirUsrPath")); + + gridLayout->addWidget(openDirUsrPath, 9, 0, 1, 1); + + + retranslateUi(ProgSettings); + QObject::connect(buttonBox, SIGNAL(accepted()), ProgSettings, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), ProgSettings, SLOT(reject())); + + QMetaObject::connectSlotsByName(ProgSettings); + } // setupUi + + void retranslateUi(QDialog *ProgSettings) + { + ProgSettings->setWindowTitle(QCoreApplication::translate("ProgSettings", "Preferences", nullptr)); + comboBox->setItemText(0, QCoreApplication::translate("ProgSettings", "(Default)", nullptr)); + + label_3->setText(QCoreApplication::translate("ProgSettings", "Mouse sensitivity:", nullptr)); + label->setText(QCoreApplication::translate("ProgSettings", "Icon set:", nullptr)); + pushButton->setText(QCoreApplication::translate("ProgSettings", "Default", nullptr)); + comboBoxLanguage->setItemText(0, QCoreApplication::translate("ProgSettings", "(System Default)", nullptr)); + + label_2->setText(QCoreApplication::translate("ProgSettings", "Language:", nullptr)); + pushButtonLanguage->setText(QCoreApplication::translate("ProgSettings", "Default", nullptr)); + pushButton_2->setText(QCoreApplication::translate("ProgSettings", "Default", nullptr)); +#if QT_CONFIG(tooltip) + openDirUsrPath->setToolTip(QCoreApplication::translate("ProgSettings", "

When selecting media images (CD-ROM, floppy, etc.) the open dialog will start in the same directory as the 86Box configuration file. This setting will likely only make a difference on macOS.

", nullptr)); +#endif // QT_CONFIG(tooltip) + openDirUsrPath->setText(QCoreApplication::translate("ProgSettings", "Select media images from program working directory", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class ProgSettings: public Ui_ProgSettings {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_PROGSETTINGS_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_rendererstack.h b/src/build64/src/qt/ui_autogen/include/ui_qt_rendererstack.h new file mode 100644 index 000000000..c457d1ec9 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_rendererstack.h @@ -0,0 +1,46 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_rendererstack.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_RENDERERSTACK_H +#define UI_QT_RENDERERSTACK_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_RendererStack +{ +public: + + void setupUi(QStackedWidget *RendererStack) + { + if (RendererStack->objectName().isEmpty()) + RendererStack->setObjectName(QString::fromUtf8("RendererStack")); + RendererStack->resize(400, 300); + + retranslateUi(RendererStack); + + QMetaObject::connectSlotsByName(RendererStack); + } // setupUi + + void retranslateUi(QStackedWidget *RendererStack) + { + RendererStack->setWindowTitle(QCoreApplication::translate("RendererStack", "StackedWidget", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class RendererStack: public Ui_RendererStack {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_RENDERERSTACK_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settings.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settings.h new file mode 100644 index 000000000..4cb3c2344 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settings.h @@ -0,0 +1,104 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settings.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGS_H +#define UI_QT_SETTINGS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_Settings +{ +public: + QVBoxLayout *verticalLayout; + QWidget *widget; + QHBoxLayout *horizontalLayout; + QListView *listView; + QStackedWidget *stackedWidget; + QFrame *line; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *Settings) + { + if (Settings->objectName().isEmpty()) + Settings->setObjectName(QString::fromUtf8("Settings")); + Settings->resize(800, 570); + Settings->setMinimumSize(QSize(800, 570)); + Settings->setMaximumSize(QSize(800, 570)); + verticalLayout = new QVBoxLayout(Settings); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + widget = new QWidget(Settings); + widget->setObjectName(QString::fromUtf8("widget")); + horizontalLayout = new QHBoxLayout(widget); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + horizontalLayout->setContentsMargins(0, -1, 0, -1); + listView = new QListView(widget); + listView->setObjectName(QString::fromUtf8("listView")); + listView->setViewMode(QListView::ListMode); + + horizontalLayout->addWidget(listView); + + stackedWidget = new QStackedWidget(widget); + stackedWidget->setObjectName(QString::fromUtf8("stackedWidget")); + + horizontalLayout->addWidget(stackedWidget); + + horizontalLayout->setStretch(0, 1); + horizontalLayout->setStretch(1, 3); + + verticalLayout->addWidget(widget); + + line = new QFrame(Settings); + line->setObjectName(QString::fromUtf8("line")); + line->setFrameShape(QFrame::HLine); + line->setFrameShadow(QFrame::Sunken); + + verticalLayout->addWidget(line); + + buttonBox = new QDialogButtonBox(Settings); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + verticalLayout->addWidget(buttonBox); + + + retranslateUi(Settings); + QObject::connect(buttonBox, SIGNAL(accepted()), Settings, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), Settings, SLOT(reject())); + + stackedWidget->setCurrentIndex(-1); + + + QMetaObject::connectSlotsByName(Settings); + } // setupUi + + void retranslateUi(QDialog *Settings) + { + Settings->setWindowTitle(QCoreApplication::translate("Settings", "Settings", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class Settings: public Ui_Settings {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGS_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsdisplay.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsdisplay.h new file mode 100644 index 000000000..63a75217d --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsdisplay.h @@ -0,0 +1,160 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsdisplay.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSDISPLAY_H +#define UI_QT_SETTINGSDISPLAY_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsDisplay +{ +public: + QGridLayout *gridLayout; + QPushButton *pushButtonConfigure; + QCheckBox *checkBoxXga; + QLabel *label; + QComboBox *comboBoxVideo; + QPushButton *pushButtonConfigureVoodoo; + QLabel *label_2; + QCheckBox *checkBox8514; + QCheckBox *checkBoxVoodoo; + QPushButton *pushButtonConfigureXga; + QPushButton *pushButtonConfigureSecondary; + QComboBox *comboBoxVideoSecondary; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsDisplay) + { + if (SettingsDisplay->objectName().isEmpty()) + SettingsDisplay->setObjectName(QString::fromUtf8("SettingsDisplay")); + SettingsDisplay->resize(400, 300); + gridLayout = new QGridLayout(SettingsDisplay); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, 0); + pushButtonConfigure = new QPushButton(SettingsDisplay); + pushButtonConfigure->setObjectName(QString::fromUtf8("pushButtonConfigure")); + QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(pushButtonConfigure->sizePolicy().hasHeightForWidth()); + pushButtonConfigure->setSizePolicy(sizePolicy); + + gridLayout->addWidget(pushButtonConfigure, 1, 2, 1, 1); + + checkBoxXga = new QCheckBox(SettingsDisplay); + checkBoxXga->setObjectName(QString::fromUtf8("checkBoxXga")); + + gridLayout->addWidget(checkBoxXga, 6, 0, 1, 2); + + label = new QLabel(SettingsDisplay); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + comboBoxVideo = new QComboBox(SettingsDisplay); + comboBoxVideo->setObjectName(QString::fromUtf8("comboBoxVideo")); + comboBoxVideo->setMaxVisibleItems(30); + QSizePolicy sizePolicy2(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(comboBoxVideo->sizePolicy().hasHeightForWidth()); + comboBoxVideo->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxVideo, 1, 0, 1, 2); + + pushButtonConfigureVoodoo = new QPushButton(SettingsDisplay); + pushButtonConfigureVoodoo->setObjectName(QString::fromUtf8("pushButtonConfigureVoodoo")); + + gridLayout->addWidget(pushButtonConfigureVoodoo, 4, 2, 1, 1); + + label_2 = new QLabel(SettingsDisplay); + label_2->setObjectName(QString::fromUtf8("label_2")); + sizePolicy1.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth()); + label_2->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(label_2, 2, 0, 1, 1); + + checkBox8514 = new QCheckBox(SettingsDisplay); + checkBox8514->setObjectName(QString::fromUtf8("checkBox8514")); + + gridLayout->addWidget(checkBox8514, 5, 0, 1, 2); + + checkBoxVoodoo = new QCheckBox(SettingsDisplay); + checkBoxVoodoo->setObjectName(QString::fromUtf8("checkBoxVoodoo")); + + gridLayout->addWidget(checkBoxVoodoo, 4, 0, 1, 2); + + pushButtonConfigureXga = new QPushButton(SettingsDisplay); + pushButtonConfigureXga->setObjectName(QString::fromUtf8("pushButtonConfigureXga")); + + gridLayout->addWidget(pushButtonConfigureXga, 6, 2, 1, 1); + + pushButtonConfigureSecondary = new QPushButton(SettingsDisplay); + pushButtonConfigureSecondary->setObjectName(QString::fromUtf8("pushButtonConfigureSecondary")); + + gridLayout->addWidget(pushButtonConfigureSecondary, 3, 2, 1, 1); + + comboBoxVideoSecondary = new QComboBox(SettingsDisplay); + comboBoxVideoSecondary->setObjectName(QString::fromUtf8("comboBoxVideoSecondary")); + comboBoxVideoSecondary->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxVideoSecondary->sizePolicy().hasHeightForWidth()); + comboBoxVideoSecondary->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxVideoSecondary, 3, 0, 1, 2); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 7, 0, 1, 3); + + gridLayout->setColumnStretch(0, 2); + gridLayout->setColumnStretch(1, 1); + gridLayout->setColumnStretch(2, 1); + + retranslateUi(SettingsDisplay); + + QMetaObject::connectSlotsByName(SettingsDisplay); + } // setupUi + + void retranslateUi(QWidget *SettingsDisplay) + { + SettingsDisplay->setWindowTitle(QCoreApplication::translate("SettingsDisplay", "Form", nullptr)); + pushButtonConfigure->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + checkBoxXga->setText(QCoreApplication::translate("SettingsDisplay", "XGA", nullptr)); + label->setText(QCoreApplication::translate("SettingsDisplay", "Video:", nullptr)); + pushButtonConfigureVoodoo->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsDisplay", "Video #2:", nullptr)); + checkBox8514->setText(QCoreApplication::translate("SettingsDisplay", "8514/A", nullptr)); + checkBoxVoodoo->setText(QCoreApplication::translate("SettingsDisplay", "Voodoo Graphics", nullptr)); + pushButtonConfigureXga->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + pushButtonConfigureSecondary->setText(QCoreApplication::translate("SettingsDisplay", "Configure", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsDisplay: public Ui_SettingsDisplay {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSDISPLAY_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h new file mode 100644 index 000000000..79ffcead3 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsfloppycdrom.h @@ -0,0 +1,196 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsfloppycdrom.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSFLOPPYCDROM_H +#define UI_QT_SETTINGSFLOPPYCDROM_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsFloppyCDROM +{ +public: + QVBoxLayout *verticalLayout; + QLabel *label; + QTableView *tableViewFloppy; + QHBoxLayout *horizontalLayout; + QLabel *label_2; + QComboBox *comboBoxFloppyType; + QCheckBox *checkBoxTurboTimings; + QCheckBox *checkBoxCheckBPB; + QSpacerItem *verticalSpacer; + QLabel *label_6; + QTableView *tableViewCDROM; + QGridLayout *gridLayout; + QLabel *label_3; + QLabel *label_7; + QLabel *label_4; + QLabel *label_5; + QComboBox *comboBoxBus; + QComboBox *comboBoxChannel; + QComboBox *comboBoxSpeed; + QComboBox *comboBoxCDROMType; + + void setupUi(QWidget *SettingsFloppyCDROM) + { + if (SettingsFloppyCDROM->objectName().isEmpty()) + SettingsFloppyCDROM->setObjectName(QString::fromUtf8("SettingsFloppyCDROM")); + SettingsFloppyCDROM->resize(544, 617); + verticalLayout = new QVBoxLayout(SettingsFloppyCDROM); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + label = new QLabel(SettingsFloppyCDROM); + label->setObjectName(QString::fromUtf8("label")); + + verticalLayout->addWidget(label); + + tableViewFloppy = new QTableView(SettingsFloppyCDROM); + tableViewFloppy->setObjectName(QString::fromUtf8("tableViewFloppy")); + tableViewFloppy->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewFloppy->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewFloppy->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewFloppy->setShowGrid(false); + tableViewFloppy->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewFloppy); + + horizontalLayout = new QHBoxLayout(); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + label_2 = new QLabel(SettingsFloppyCDROM); + label_2->setObjectName(QString::fromUtf8("label_2")); + + horizontalLayout->addWidget(label_2); + + comboBoxFloppyType = new QComboBox(SettingsFloppyCDROM); + comboBoxFloppyType->setObjectName(QString::fromUtf8("comboBoxFloppyType")); + comboBoxFloppyType->setMaxVisibleItems(30); + + horizontalLayout->addWidget(comboBoxFloppyType); + + checkBoxTurboTimings = new QCheckBox(SettingsFloppyCDROM); + checkBoxTurboTimings->setObjectName(QString::fromUtf8("checkBoxTurboTimings")); + + horizontalLayout->addWidget(checkBoxTurboTimings); + + checkBoxCheckBPB = new QCheckBox(SettingsFloppyCDROM); + checkBoxCheckBPB->setObjectName(QString::fromUtf8("checkBoxCheckBPB")); + + horizontalLayout->addWidget(checkBoxCheckBPB); + + + verticalLayout->addLayout(horizontalLayout); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + label_6 = new QLabel(SettingsFloppyCDROM); + label_6->setObjectName(QString::fromUtf8("label_6")); + + verticalLayout->addWidget(label_6); + + tableViewCDROM = new QTableView(SettingsFloppyCDROM); + tableViewCDROM->setObjectName(QString::fromUtf8("tableViewCDROM")); + tableViewCDROM->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewCDROM->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewCDROM->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewCDROM->setShowGrid(false); + tableViewCDROM->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewCDROM); + + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label_3 = new QLabel(SettingsFloppyCDROM); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 0, 0, 1, 1); + + label_7 = new QLabel(SettingsFloppyCDROM); + label_7->setObjectName(QString::fromUtf8("label_7")); + + gridLayout->addWidget(label_7, 0, 2, 1, 1); + + label_4 = new QLabel(SettingsFloppyCDROM); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 1, 0, 1, 1); + + label_5 = new QLabel(SettingsFloppyCDROM); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 2, 0, 1, 1); + + comboBoxBus = new QComboBox(SettingsFloppyCDROM); + comboBoxBus->setObjectName(QString::fromUtf8("comboBoxBus")); + comboBoxBus->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxBus, 0, 1, 1, 1); + + comboBoxChannel = new QComboBox(SettingsFloppyCDROM); + comboBoxChannel->setObjectName(QString::fromUtf8("comboBoxChannel")); + comboBoxChannel->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxChannel, 0, 3, 1, 1); + + comboBoxSpeed = new QComboBox(SettingsFloppyCDROM); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxSpeed, 1, 1, 1, 1); + + comboBoxCDROMType = new QComboBox(SettingsFloppyCDROM); + comboBoxCDROMType->setObjectName(QString::fromUtf8("comboBoxCDROMType")); + comboBoxCDROMType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxCDROMType, 2, 1, 1, 3); + + + verticalLayout->addLayout(gridLayout); + + + retranslateUi(SettingsFloppyCDROM); + + QMetaObject::connectSlotsByName(SettingsFloppyCDROM); + } // setupUi + + void retranslateUi(QWidget *SettingsFloppyCDROM) + { + SettingsFloppyCDROM->setWindowTitle(QCoreApplication::translate("SettingsFloppyCDROM", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Floppy drives:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Type:", nullptr)); + checkBoxTurboTimings->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Turbo timings", nullptr)); + checkBoxCheckBPB->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Check BPB", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsFloppyCDROM", "CD-ROM drives:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Bus:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Channel:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Speed:", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsFloppyCDROM", "Type:", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsFloppyCDROM: public Ui_SettingsFloppyCDROM {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSFLOPPYCDROM_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsharddisks.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsharddisks.h new file mode 100644 index 000000000..280e18844 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsharddisks.h @@ -0,0 +1,143 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsharddisks.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSHARDDISKS_H +#define UI_QT_SETTINGSHARDDISKS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsHarddisks +{ +public: + QVBoxLayout *verticalLayout; + QTableView *tableView; + QHBoxLayout *horizontalLayout_2; + QLabel *labelBus; + QComboBox *comboBoxBus; + QLabel *labelChannel; + QComboBox *comboBoxChannel; + QLabel *labelSpeed; + QComboBox *comboBoxSpeed; + QHBoxLayout *horizontalLayout; + QPushButton *pushButtonNew; + QPushButton *pushButtonExisting; + QPushButton *pushButtonRemove; + + void setupUi(QWidget *SettingsHarddisks) + { + if (SettingsHarddisks->objectName().isEmpty()) + SettingsHarddisks->setObjectName(QString::fromUtf8("SettingsHarddisks")); + SettingsHarddisks->resize(400, 300); + verticalLayout = new QVBoxLayout(SettingsHarddisks); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + tableView = new QTableView(SettingsHarddisks); + tableView->setObjectName(QString::fromUtf8("tableView")); + tableView->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableView->setSelectionMode(QAbstractItemView::SingleSelection); + tableView->setSelectionBehavior(QAbstractItemView::SelectRows); + tableView->setShowGrid(false); + tableView->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableView); + + horizontalLayout_2 = new QHBoxLayout(); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + labelBus = new QLabel(SettingsHarddisks); + labelBus->setObjectName(QString::fromUtf8("labelBus")); + + horizontalLayout_2->addWidget(labelBus); + + comboBoxBus = new QComboBox(SettingsHarddisks); + comboBoxBus->setObjectName(QString::fromUtf8("comboBoxBus")); + comboBoxBus->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxBus); + + labelChannel = new QLabel(SettingsHarddisks); + labelChannel->setObjectName(QString::fromUtf8("labelChannel")); + + horizontalLayout_2->addWidget(labelChannel); + + comboBoxChannel = new QComboBox(SettingsHarddisks); + comboBoxChannel->setObjectName(QString::fromUtf8("comboBoxChannel")); + comboBoxChannel->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxChannel); + + labelSpeed = new QLabel(SettingsHarddisks); + labelSpeed->setObjectName(QString::fromUtf8("labelSpeed")); + + horizontalLayout_2->addWidget(labelSpeed); + + comboBoxSpeed = new QComboBox(SettingsHarddisks); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxSpeed); + + + verticalLayout->addLayout(horizontalLayout_2); + + horizontalLayout = new QHBoxLayout(); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + pushButtonNew = new QPushButton(SettingsHarddisks); + pushButtonNew->setObjectName(QString::fromUtf8("pushButtonNew")); + + horizontalLayout->addWidget(pushButtonNew); + + pushButtonExisting = new QPushButton(SettingsHarddisks); + pushButtonExisting->setObjectName(QString::fromUtf8("pushButtonExisting")); + + horizontalLayout->addWidget(pushButtonExisting); + + pushButtonRemove = new QPushButton(SettingsHarddisks); + pushButtonRemove->setObjectName(QString::fromUtf8("pushButtonRemove")); + + horizontalLayout->addWidget(pushButtonRemove); + + + verticalLayout->addLayout(horizontalLayout); + + + retranslateUi(SettingsHarddisks); + + QMetaObject::connectSlotsByName(SettingsHarddisks); + } // setupUi + + void retranslateUi(QWidget *SettingsHarddisks) + { + SettingsHarddisks->setWindowTitle(QCoreApplication::translate("SettingsHarddisks", "Form", nullptr)); + labelBus->setText(QCoreApplication::translate("SettingsHarddisks", "Bus:", nullptr)); + labelChannel->setText(QCoreApplication::translate("SettingsHarddisks", "ID:", nullptr)); + labelSpeed->setText(QCoreApplication::translate("SettingsHarddisks", "Speed:", nullptr)); + pushButtonNew->setText(QCoreApplication::translate("SettingsHarddisks", "&New...", nullptr)); + pushButtonExisting->setText(QCoreApplication::translate("SettingsHarddisks", "&Existing...", nullptr)); + pushButtonRemove->setText(QCoreApplication::translate("SettingsHarddisks", "&Remove", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsHarddisks: public Ui_SettingsHarddisks {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSHARDDISKS_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsinput.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsinput.h new file mode 100644 index 000000000..8a00559cc --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsinput.h @@ -0,0 +1,133 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsinput.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSINPUT_H +#define UI_QT_SETTINGSINPUT_H + +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsInput +{ +public: + QGridLayout *gridLayout; + QPushButton *pushButtonJoystick2; + QLabel *label_2; + QPushButton *pushButtonJoystick4; + QLabel *label; + QPushButton *pushButtonJoystick3; + QSpacerItem *verticalSpacer; + QPushButton *pushButtonJoystick1; + QPushButton *pushButtonConfigureMouse; + QComboBox *comboBoxMouse; + QComboBox *comboBoxJoystick; + + void setupUi(QWidget *SettingsInput) + { + if (SettingsInput->objectName().isEmpty()) + SettingsInput->setObjectName(QString::fromUtf8("SettingsInput")); + SettingsInput->resize(400, 300); + gridLayout = new QGridLayout(SettingsInput); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, -1); + pushButtonJoystick2 = new QPushButton(SettingsInput); + pushButtonJoystick2->setObjectName(QString::fromUtf8("pushButtonJoystick2")); + + gridLayout->addWidget(pushButtonJoystick2, 2, 1, 1, 1); + + label_2 = new QLabel(SettingsInput); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 1, 0, 1, 1); + + pushButtonJoystick4 = new QPushButton(SettingsInput); + pushButtonJoystick4->setObjectName(QString::fromUtf8("pushButtonJoystick4")); + + gridLayout->addWidget(pushButtonJoystick4, 2, 3, 1, 1); + + label = new QLabel(SettingsInput); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + pushButtonJoystick3 = new QPushButton(SettingsInput); + pushButtonJoystick3->setObjectName(QString::fromUtf8("pushButtonJoystick3")); + + gridLayout->addWidget(pushButtonJoystick3, 2, 2, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 3, 0, 1, 1); + + pushButtonJoystick1 = new QPushButton(SettingsInput); + pushButtonJoystick1->setObjectName(QString::fromUtf8("pushButtonJoystick1")); + + gridLayout->addWidget(pushButtonJoystick1, 2, 0, 1, 1); + + pushButtonConfigureMouse = new QPushButton(SettingsInput); + pushButtonConfigureMouse->setObjectName(QString::fromUtf8("pushButtonConfigureMouse")); + QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(pushButtonConfigureMouse->sizePolicy().hasHeightForWidth()); + pushButtonConfigureMouse->setSizePolicy(sizePolicy); + + gridLayout->addWidget(pushButtonConfigureMouse, 0, 3, 1, 1); + + comboBoxMouse = new QComboBox(SettingsInput); + comboBoxMouse->setObjectName(QString::fromUtf8("comboBoxMouse")); + comboBoxMouse->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxMouse->sizePolicy().hasHeightForWidth()); + comboBoxMouse->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(comboBoxMouse, 0, 1, 1, 2); + + comboBoxJoystick = new QComboBox(SettingsInput); + comboBoxJoystick->setObjectName(QString::fromUtf8("comboBoxJoystick")); + comboBoxJoystick->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxJoystick, 1, 1, 1, 2); + + + retranslateUi(SettingsInput); + + QMetaObject::connectSlotsByName(SettingsInput); + } // setupUi + + void retranslateUi(QWidget *SettingsInput) + { + SettingsInput->setWindowTitle(QCoreApplication::translate("SettingsInput", "Form", nullptr)); + pushButtonJoystick2->setText(QCoreApplication::translate("SettingsInput", "Joystick 2...", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsInput", "Joystick:", nullptr)); + pushButtonJoystick4->setText(QCoreApplication::translate("SettingsInput", "Joystick 4...", nullptr)); + label->setText(QCoreApplication::translate("SettingsInput", "Mouse:", nullptr)); + pushButtonJoystick3->setText(QCoreApplication::translate("SettingsInput", "Joystick 3...", nullptr)); + pushButtonJoystick1->setText(QCoreApplication::translate("SettingsInput", "Joystick 1...", nullptr)); + pushButtonConfigureMouse->setText(QCoreApplication::translate("SettingsInput", "Configure", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsInput: public Ui_SettingsInput {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSINPUT_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsmachine.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsmachine.h new file mode 100644 index 000000000..bc9b1b390 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsmachine.h @@ -0,0 +1,306 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsmachine.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSMACHINE_H +#define UI_QT_SETTINGSMACHINE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsMachine +{ +public: + QVBoxLayout *vboxLayout; + QWidget *widget; + QGridLayout *gridLayout; + QLabel *label_5; + QComboBox *comboBoxMachineType; + QLabel *label_6; + QComboBox *comboBoxFPU; + QWidget *widget_4; + QHBoxLayout *horizontalLayout_3; + QComboBox *comboBoxWaitStates; + QLabel *label_8; + QComboBox *comboBoxPitMode; + QLabel *label_3; + QWidget *widget_2; + QHBoxLayout *horizontalLayout; + QComboBox *comboBoxCPU; + QLabel *label_7; + QComboBox *comboBoxSpeed; + QSpinBox *spinBoxRAM; + QWidget *widget_3; + QHBoxLayout *horizontalLayout_2; + QComboBox *comboBoxMachine; + QPushButton *pushButtonConfigure; + QLabel *label; + QLabel *label_2; + QLabel *label_4; + QCheckBox *checkBoxDynamicRecompiler; + QCheckBox *checkBoxFPUSoftfloat; + QGroupBox *groupBox; + QVBoxLayout *verticalLayout_2; + QRadioButton *radioButtonDisabled; + QRadioButton *radioButtonLocalTime; + QRadioButton *radioButtonUTC; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsMachine) + { + if (SettingsMachine->objectName().isEmpty()) + SettingsMachine->setObjectName(QString::fromUtf8("SettingsMachine")); + SettingsMachine->resize(458, 434); + vboxLayout = new QVBoxLayout(SettingsMachine); + vboxLayout->setObjectName(QString::fromUtf8("vboxLayout")); + vboxLayout->setContentsMargins(0, 0, 0, 0); + widget = new QWidget(SettingsMachine); + widget->setObjectName(QString::fromUtf8("widget")); + gridLayout = new QGridLayout(widget); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, 0); + label_5 = new QLabel(widget); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 4, 0, 1, 1); + + comboBoxMachineType = new QComboBox(widget); + comboBoxMachineType->setObjectName(QString::fromUtf8("comboBoxMachineType")); + comboBoxMachineType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMachineType, 0, 1, 1, 1); + + label_6 = new QLabel(widget); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout->addWidget(label_6, 5, 0, 1, 1); + + comboBoxFPU = new QComboBox(widget); + comboBoxFPU->setObjectName(QString::fromUtf8("comboBoxFPU")); + comboBoxFPU->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxFPU, 3, 1, 1, 1); + + widget_4 = new QWidget(widget); + widget_4->setObjectName(QString::fromUtf8("widget_4")); + horizontalLayout_3 = new QHBoxLayout(widget_4); + horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3")); + horizontalLayout_3->setContentsMargins(0, 0, 0, 0); + comboBoxWaitStates = new QComboBox(widget_4); + comboBoxWaitStates->setObjectName(QString::fromUtf8("comboBoxWaitStates")); + comboBoxWaitStates->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxWaitStates->sizePolicy().hasHeightForWidth()); + comboBoxWaitStates->setSizePolicy(sizePolicy); + + horizontalLayout_3->addWidget(comboBoxWaitStates); + + label_8 = new QLabel(widget_4); + label_8->setObjectName(QString::fromUtf8("label_8")); + + horizontalLayout_3->addWidget(label_8); + + comboBoxPitMode = new QComboBox(widget_4); + comboBoxPitMode->setObjectName(QString::fromUtf8("comboBoxPitMode")); + comboBoxPitMode->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxPitMode->sizePolicy().hasHeightForWidth()); + comboBoxPitMode->setSizePolicy(sizePolicy1); + + horizontalLayout_3->addWidget(comboBoxPitMode); + + + gridLayout->addWidget(widget_4, 4, 1, 1, 1); + + label_3 = new QLabel(widget); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 2, 0, 1, 1); + + widget_2 = new QWidget(widget); + widget_2->setObjectName(QString::fromUtf8("widget_2")); + horizontalLayout = new QHBoxLayout(widget_2); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + horizontalLayout->setContentsMargins(0, 0, 0, 0); + comboBoxCPU = new QComboBox(widget_2); + comboBoxCPU->setObjectName(QString::fromUtf8("comboBoxCPU")); + comboBoxCPU->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCPU->sizePolicy().hasHeightForWidth()); + comboBoxCPU->setSizePolicy(sizePolicy); + + horizontalLayout->addWidget(comboBoxCPU); + + label_7 = new QLabel(widget_2); + label_7->setObjectName(QString::fromUtf8("label_7")); + label_7->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter); + + horizontalLayout->addWidget(label_7); + + comboBoxSpeed = new QComboBox(widget_2); + comboBoxSpeed->setObjectName(QString::fromUtf8("comboBoxSpeed")); + comboBoxSpeed->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxSpeed->sizePolicy().hasHeightForWidth()); + comboBoxSpeed->setSizePolicy(sizePolicy1); + + horizontalLayout->addWidget(comboBoxSpeed); + + + gridLayout->addWidget(widget_2, 2, 1, 1, 1); + + spinBoxRAM = new QSpinBox(widget); + spinBoxRAM->setObjectName(QString::fromUtf8("spinBoxRAM")); + QSizePolicy sizePolicy2(QSizePolicy::Maximum, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(spinBoxRAM->sizePolicy().hasHeightForWidth()); + spinBoxRAM->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(spinBoxRAM, 5, 1, 1, 1); + + widget_3 = new QWidget(widget); + widget_3->setObjectName(QString::fromUtf8("widget_3")); + horizontalLayout_2 = new QHBoxLayout(widget_3); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + horizontalLayout_2->setContentsMargins(0, 0, 0, 0); + comboBoxMachine = new QComboBox(widget_3); + comboBoxMachine->setObjectName(QString::fromUtf8("comboBoxMachine")); + comboBoxMachine->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxMachine); + + pushButtonConfigure = new QPushButton(widget_3); + pushButtonConfigure->setObjectName(QString::fromUtf8("pushButtonConfigure")); + sizePolicy2.setHeightForWidth(pushButtonConfigure->sizePolicy().hasHeightForWidth()); + pushButtonConfigure->setSizePolicy(sizePolicy2); + + horizontalLayout_2->addWidget(pushButtonConfigure); + + + gridLayout->addWidget(widget_3, 1, 1, 1, 1); + + label = new QLabel(widget); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + label_2 = new QLabel(widget); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 1, 0, 1, 1); + + label_4 = new QLabel(widget); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 3, 0, 1, 1); + + + vboxLayout->addWidget(widget); + + checkBoxDynamicRecompiler = new QCheckBox(SettingsMachine); + checkBoxDynamicRecompiler->setObjectName(QString::fromUtf8("checkBoxDynamicRecompiler")); + QSizePolicy sizePolicy3(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy3.setHorizontalStretch(2); + sizePolicy3.setVerticalStretch(2); + sizePolicy3.setHeightForWidth(checkBoxDynamicRecompiler->sizePolicy().hasHeightForWidth()); + checkBoxDynamicRecompiler->setSizePolicy(sizePolicy3); + + vboxLayout->addWidget(checkBoxDynamicRecompiler); + + checkBoxFPUSoftfloat = new QCheckBox(SettingsMachine); + checkBoxFPUSoftfloat->setObjectName(QString::fromUtf8("checkBoxFPUSoftfloat")); + QSizePolicy sizePolicy4(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy4.setHorizontalStretch(3); + sizePolicy4.setVerticalStretch(3); + sizePolicy4.setHeightForWidth(checkBoxFPUSoftfloat->sizePolicy().hasHeightForWidth()); + checkBoxFPUSoftfloat->setSizePolicy(sizePolicy4); + + vboxLayout->addWidget(checkBoxFPUSoftfloat); + + groupBox = new QGroupBox(SettingsMachine); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + QSizePolicy sizePolicy5(QSizePolicy::Maximum, QSizePolicy::Preferred); + sizePolicy5.setHorizontalStretch(0); + sizePolicy5.setVerticalStretch(0); + sizePolicy5.setHeightForWidth(groupBox->sizePolicy().hasHeightForWidth()); + groupBox->setSizePolicy(sizePolicy5); + verticalLayout_2 = new QVBoxLayout(groupBox); + verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2")); + radioButtonDisabled = new QRadioButton(groupBox); + radioButtonDisabled->setObjectName(QString::fromUtf8("radioButtonDisabled")); + + verticalLayout_2->addWidget(radioButtonDisabled); + + radioButtonLocalTime = new QRadioButton(groupBox); + radioButtonLocalTime->setObjectName(QString::fromUtf8("radioButtonLocalTime")); + + verticalLayout_2->addWidget(radioButtonLocalTime); + + radioButtonUTC = new QRadioButton(groupBox); + radioButtonUTC->setObjectName(QString::fromUtf8("radioButtonUTC")); + + verticalLayout_2->addWidget(radioButtonUTC); + + + vboxLayout->addWidget(groupBox); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + vboxLayout->addItem(verticalSpacer); + + + retranslateUi(SettingsMachine); + + QMetaObject::connectSlotsByName(SettingsMachine); + } // setupUi + + void retranslateUi(QWidget *SettingsMachine) + { + SettingsMachine->setWindowTitle(QCoreApplication::translate("SettingsMachine", "Form", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsMachine", "Wait states:", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsMachine", "Memory:", nullptr)); + label_8->setText(QCoreApplication::translate("SettingsMachine", "PIT Mode:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsMachine", "CPU type:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsMachine", "Speed:", nullptr)); + pushButtonConfigure->setText(QCoreApplication::translate("SettingsMachine", "Configure", nullptr)); + label->setText(QCoreApplication::translate("SettingsMachine", "Machine type:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsMachine", "Machine:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsMachine", "FPU:", nullptr)); + checkBoxDynamicRecompiler->setText(QCoreApplication::translate("SettingsMachine", "Dynamic Recompiler", nullptr)); + checkBoxFPUSoftfloat->setText(QCoreApplication::translate("SettingsMachine", "Softfloat FPU", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsMachine", "Time synchronization", nullptr)); + radioButtonDisabled->setText(QCoreApplication::translate("SettingsMachine", "Disabled", nullptr)); + radioButtonLocalTime->setText(QCoreApplication::translate("SettingsMachine", "Enabled (local time)", nullptr)); + radioButtonUTC->setText(QCoreApplication::translate("SettingsMachine", "Enabled (UTC)", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsMachine: public Ui_SettingsMachine {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSMACHINE_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsnetwork.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsnetwork.h new file mode 100644 index 000000000..d072e0866 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsnetwork.h @@ -0,0 +1,438 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsnetwork.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSNETWORK_H +#define UI_QT_SETTINGSNETWORK_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsNetwork +{ +public: + QVBoxLayout *verticalLayout; + QTabWidget *tabWidget; + QWidget *tab_1; + QGridLayout *gridLayout_3; + QLabel *label; + QComboBox *comboBoxNet1; + QLabel *label_2; + QComboBox *comboBoxIntf1; + QLabel *label_7; + QComboBox *comboBoxNIC1; + QPushButton *pushButtonConf1; + QLabel *label_3; + QLineEdit *socketVDENIC1; + QSpacerItem *verticalSpacer; + QWidget *tab_2; + QGridLayout *gridLayout; + QLabel *label_8; + QComboBox *comboBoxNet2; + QLabel *label_9; + QComboBox *comboBoxIntf2; + QLabel *label_10; + QComboBox *comboBoxNIC2; + QPushButton *pushButtonConf2; + QLabel *label_4; + QLineEdit *socketVDENIC2; + QSpacerItem *verticalSpacer_2; + QWidget *tab_3; + QGridLayout *gridLayout_2; + QLabel *label_11; + QComboBox *comboBoxNet3; + QLabel *label_12; + QComboBox *comboBoxIntf3; + QLabel *label_13; + QComboBox *comboBoxNIC3; + QPushButton *pushButtonConf3; + QLabel *label_5; + QLineEdit *socketVDENIC3; + QSpacerItem *verticalSpacer_3; + QWidget *tab_4; + QGridLayout *gridLayout_4; + QLabel *label_14; + QComboBox *comboBoxNet4; + QLabel *label_15; + QComboBox *comboBoxIntf4; + QLabel *label_16; + QComboBox *comboBoxNIC4; + QPushButton *pushButtonConf4; + QLineEdit *socketVDENIC4; + QLabel *label_6; + QSpacerItem *verticalSpacer_4; + + void setupUi(QWidget *SettingsNetwork) + { + if (SettingsNetwork->objectName().isEmpty()) + SettingsNetwork->setObjectName(QString::fromUtf8("SettingsNetwork")); + SettingsNetwork->resize(548, 488); + verticalLayout = new QVBoxLayout(SettingsNetwork); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + tabWidget = new QTabWidget(SettingsNetwork); + tabWidget->setObjectName(QString::fromUtf8("tabWidget")); + tab_1 = new QWidget(); + tab_1->setObjectName(QString::fromUtf8("tab_1")); + gridLayout_3 = new QGridLayout(tab_1); + gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3")); + label = new QLabel(tab_1); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(label, 0, 0, 1, 1); + + comboBoxNet1 = new QComboBox(tab_1); + comboBoxNet1->setObjectName(QString::fromUtf8("comboBoxNet1")); + comboBoxNet1->setMaxVisibleItems(30); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(comboBoxNet1->sizePolicy().hasHeightForWidth()); + comboBoxNet1->setSizePolicy(sizePolicy1); + + gridLayout_3->addWidget(comboBoxNet1, 0, 1, 1, 2); + + label_2 = new QLabel(tab_1); + label_2->setObjectName(QString::fromUtf8("label_2")); + sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth()); + label_2->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(label_2, 1, 0, 1, 1); + + comboBoxIntf1 = new QComboBox(tab_1); + comboBoxIntf1->setObjectName(QString::fromUtf8("comboBoxIntf1")); + comboBoxIntf1->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf1->sizePolicy().hasHeightForWidth()); + comboBoxIntf1->setSizePolicy(sizePolicy1); + + gridLayout_3->addWidget(comboBoxIntf1, 1, 1, 1, 2); + + label_7 = new QLabel(tab_1); + label_7->setObjectName(QString::fromUtf8("label_7")); + sizePolicy.setHeightForWidth(label_7->sizePolicy().hasHeightForWidth()); + label_7->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(label_7, 2, 0, 1, 1); + + comboBoxNIC1 = new QComboBox(tab_1); + comboBoxNIC1->setObjectName(QString::fromUtf8("comboBoxNIC1")); + comboBoxNIC1->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC1->sizePolicy().hasHeightForWidth()); + comboBoxNIC1->setSizePolicy(sizePolicy1); + comboBoxNIC1->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout_3->addWidget(comboBoxNIC1, 2, 1, 1, 1); + + pushButtonConf1 = new QPushButton(tab_1); + pushButtonConf1->setObjectName(QString::fromUtf8("pushButtonConf1")); + QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(pushButtonConf1->sizePolicy().hasHeightForWidth()); + pushButtonConf1->setSizePolicy(sizePolicy2); + + gridLayout_3->addWidget(pushButtonConf1, 2, 2, 1, 1); + + label_3 = new QLabel(tab_1); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout_3->addWidget(label_3, 3, 0, 1, 1); + + socketVDENIC1 = new QLineEdit(tab_1); + socketVDENIC1->setObjectName(QString::fromUtf8("socketVDENIC1")); + socketVDENIC1->setMaxLength(127); + + gridLayout_3->addWidget(socketVDENIC1, 3, 1, 1, 2); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_3->addItem(verticalSpacer, 4, 1, 1, 1); + + tabWidget->addTab(tab_1, QString()); + tab_2 = new QWidget(); + tab_2->setObjectName(QString::fromUtf8("tab_2")); + gridLayout = new QGridLayout(tab_2); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label_8 = new QLabel(tab_2); + label_8->setObjectName(QString::fromUtf8("label_8")); + sizePolicy.setHeightForWidth(label_8->sizePolicy().hasHeightForWidth()); + label_8->setSizePolicy(sizePolicy); + + gridLayout->addWidget(label_8, 0, 0, 1, 1); + + comboBoxNet2 = new QComboBox(tab_2); + comboBoxNet2->setObjectName(QString::fromUtf8("comboBoxNet2")); + comboBoxNet2->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNet2->sizePolicy().hasHeightForWidth()); + comboBoxNet2->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(comboBoxNet2, 0, 1, 1, 2); + + label_9 = new QLabel(tab_2); + label_9->setObjectName(QString::fromUtf8("label_9")); + sizePolicy.setHeightForWidth(label_9->sizePolicy().hasHeightForWidth()); + label_9->setSizePolicy(sizePolicy); + + gridLayout->addWidget(label_9, 1, 0, 1, 1); + + comboBoxIntf2 = new QComboBox(tab_2); + comboBoxIntf2->setObjectName(QString::fromUtf8("comboBoxIntf2")); + comboBoxIntf2->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf2->sizePolicy().hasHeightForWidth()); + comboBoxIntf2->setSizePolicy(sizePolicy1); + + gridLayout->addWidget(comboBoxIntf2, 1, 1, 1, 2); + + label_10 = new QLabel(tab_2); + label_10->setObjectName(QString::fromUtf8("label_10")); + sizePolicy.setHeightForWidth(label_10->sizePolicy().hasHeightForWidth()); + label_10->setSizePolicy(sizePolicy); + + gridLayout->addWidget(label_10, 2, 0, 1, 1); + + comboBoxNIC2 = new QComboBox(tab_2); + comboBoxNIC2->setObjectName(QString::fromUtf8("comboBoxNIC2")); + comboBoxNIC2->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC2->sizePolicy().hasHeightForWidth()); + comboBoxNIC2->setSizePolicy(sizePolicy1); + comboBoxNIC2->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout->addWidget(comboBoxNIC2, 2, 1, 1, 1); + + pushButtonConf2 = new QPushButton(tab_2); + pushButtonConf2->setObjectName(QString::fromUtf8("pushButtonConf2")); + + gridLayout->addWidget(pushButtonConf2, 2, 2, 1, 1); + + label_4 = new QLabel(tab_2); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 3, 0, 1, 1); + + socketVDENIC2 = new QLineEdit(tab_2); + socketVDENIC2->setObjectName(QString::fromUtf8("socketVDENIC2")); + socketVDENIC2->setMaxLength(127); + + gridLayout->addWidget(socketVDENIC2, 3, 1, 1, 2); + + verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer_2, 4, 1, 1, 1); + + tabWidget->addTab(tab_2, QString()); + tab_3 = new QWidget(); + tab_3->setObjectName(QString::fromUtf8("tab_3")); + gridLayout_2 = new QGridLayout(tab_3); + gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2")); + label_11 = new QLabel(tab_3); + label_11->setObjectName(QString::fromUtf8("label_11")); + sizePolicy.setHeightForWidth(label_11->sizePolicy().hasHeightForWidth()); + label_11->setSizePolicy(sizePolicy); + + gridLayout_2->addWidget(label_11, 0, 0, 1, 1); + + comboBoxNet3 = new QComboBox(tab_3); + comboBoxNet3->setObjectName(QString::fromUtf8("comboBoxNet3")); + comboBoxNet3->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNet3->sizePolicy().hasHeightForWidth()); + comboBoxNet3->setSizePolicy(sizePolicy1); + + gridLayout_2->addWidget(comboBoxNet3, 0, 1, 1, 2); + + label_12 = new QLabel(tab_3); + label_12->setObjectName(QString::fromUtf8("label_12")); + sizePolicy.setHeightForWidth(label_12->sizePolicy().hasHeightForWidth()); + label_12->setSizePolicy(sizePolicy); + + gridLayout_2->addWidget(label_12, 1, 0, 1, 1); + + comboBoxIntf3 = new QComboBox(tab_3); + comboBoxIntf3->setObjectName(QString::fromUtf8("comboBoxIntf3")); + comboBoxIntf3->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf3->sizePolicy().hasHeightForWidth()); + comboBoxIntf3->setSizePolicy(sizePolicy1); + + gridLayout_2->addWidget(comboBoxIntf3, 1, 1, 1, 2); + + label_13 = new QLabel(tab_3); + label_13->setObjectName(QString::fromUtf8("label_13")); + sizePolicy.setHeightForWidth(label_13->sizePolicy().hasHeightForWidth()); + label_13->setSizePolicy(sizePolicy); + + gridLayout_2->addWidget(label_13, 2, 0, 1, 1); + + comboBoxNIC3 = new QComboBox(tab_3); + comboBoxNIC3->setObjectName(QString::fromUtf8("comboBoxNIC3")); + comboBoxNIC3->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC3->sizePolicy().hasHeightForWidth()); + comboBoxNIC3->setSizePolicy(sizePolicy1); + comboBoxNIC3->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout_2->addWidget(comboBoxNIC3, 2, 1, 1, 1); + + pushButtonConf3 = new QPushButton(tab_3); + pushButtonConf3->setObjectName(QString::fromUtf8("pushButtonConf3")); + sizePolicy2.setHeightForWidth(pushButtonConf3->sizePolicy().hasHeightForWidth()); + pushButtonConf3->setSizePolicy(sizePolicy2); + + gridLayout_2->addWidget(pushButtonConf3, 2, 2, 1, 1); + + label_5 = new QLabel(tab_3); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout_2->addWidget(label_5, 3, 0, 1, 1); + + socketVDENIC3 = new QLineEdit(tab_3); + socketVDENIC3->setObjectName(QString::fromUtf8("socketVDENIC3")); + socketVDENIC3->setMaxLength(127); + + gridLayout_2->addWidget(socketVDENIC3, 3, 1, 1, 2); + + verticalSpacer_3 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_2->addItem(verticalSpacer_3, 4, 1, 1, 1); + + tabWidget->addTab(tab_3, QString()); + tab_4 = new QWidget(); + tab_4->setObjectName(QString::fromUtf8("tab_4")); + gridLayout_4 = new QGridLayout(tab_4); + gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4")); + label_14 = new QLabel(tab_4); + label_14->setObjectName(QString::fromUtf8("label_14")); + sizePolicy.setHeightForWidth(label_14->sizePolicy().hasHeightForWidth()); + label_14->setSizePolicy(sizePolicy); + + gridLayout_4->addWidget(label_14, 0, 0, 1, 1); + + comboBoxNet4 = new QComboBox(tab_4); + comboBoxNet4->setObjectName(QString::fromUtf8("comboBoxNet4")); + comboBoxNet4->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNet4->sizePolicy().hasHeightForWidth()); + comboBoxNet4->setSizePolicy(sizePolicy1); + + gridLayout_4->addWidget(comboBoxNet4, 0, 1, 1, 2); + + label_15 = new QLabel(tab_4); + label_15->setObjectName(QString::fromUtf8("label_15")); + sizePolicy.setHeightForWidth(label_15->sizePolicy().hasHeightForWidth()); + label_15->setSizePolicy(sizePolicy); + + gridLayout_4->addWidget(label_15, 1, 0, 1, 1); + + comboBoxIntf4 = new QComboBox(tab_4); + comboBoxIntf4->setObjectName(QString::fromUtf8("comboBoxIntf4")); + comboBoxIntf4->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxIntf4->sizePolicy().hasHeightForWidth()); + comboBoxIntf4->setSizePolicy(sizePolicy1); + + gridLayout_4->addWidget(comboBoxIntf4, 1, 1, 1, 2); + + label_16 = new QLabel(tab_4); + label_16->setObjectName(QString::fromUtf8("label_16")); + sizePolicy.setHeightForWidth(label_16->sizePolicy().hasHeightForWidth()); + label_16->setSizePolicy(sizePolicy); + + gridLayout_4->addWidget(label_16, 2, 0, 1, 1); + + comboBoxNIC4 = new QComboBox(tab_4); + comboBoxNIC4->setObjectName(QString::fromUtf8("comboBoxNIC4")); + comboBoxNIC4->setMaxVisibleItems(30); + sizePolicy1.setHeightForWidth(comboBoxNIC4->sizePolicy().hasHeightForWidth()); + comboBoxNIC4->setSizePolicy(sizePolicy1); + comboBoxNIC4->setSizeAdjustPolicy(QComboBox::AdjustToContents); + + gridLayout_4->addWidget(comboBoxNIC4, 2, 1, 1, 1); + + pushButtonConf4 = new QPushButton(tab_4); + pushButtonConf4->setObjectName(QString::fromUtf8("pushButtonConf4")); + sizePolicy2.setHeightForWidth(pushButtonConf4->sizePolicy().hasHeightForWidth()); + pushButtonConf4->setSizePolicy(sizePolicy2); + + gridLayout_4->addWidget(pushButtonConf4, 2, 2, 1, 1); + + socketVDENIC4 = new QLineEdit(tab_4); + socketVDENIC4->setObjectName(QString::fromUtf8("socketVDENIC4")); + socketVDENIC4->setMaxLength(127); + + gridLayout_4->addWidget(socketVDENIC4, 3, 1, 1, 2); + + label_6 = new QLabel(tab_4); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout_4->addWidget(label_6, 3, 0, 1, 1); + + verticalSpacer_4 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_4->addItem(verticalSpacer_4, 4, 1, 1, 1); + + tabWidget->addTab(tab_4, QString()); + + verticalLayout->addWidget(tabWidget); + + + retranslateUi(SettingsNetwork); + + tabWidget->setCurrentIndex(0); + + + QMetaObject::connectSlotsByName(SettingsNetwork); + } // setupUi + + void retranslateUi(QWidget *SettingsNetwork) + { + SettingsNetwork->setWindowTitle(QCoreApplication::translate("SettingsNetwork", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf1->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_1), QCoreApplication::translate("SettingsNetwork", "Network Card #1", nullptr)); + label_8->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_9->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_10->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf2->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_2), QCoreApplication::translate("SettingsNetwork", "Network Card #2", nullptr)); + label_11->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_12->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_13->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf3->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_3), QCoreApplication::translate("SettingsNetwork", "Network Card #3", nullptr)); + label_14->setText(QCoreApplication::translate("SettingsNetwork", "Mode", nullptr)); + label_15->setText(QCoreApplication::translate("SettingsNetwork", "Interface", nullptr)); + label_16->setText(QCoreApplication::translate("SettingsNetwork", "Adapter", nullptr)); + pushButtonConf4->setText(QCoreApplication::translate("SettingsNetwork", "Configure", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsNetwork", "VDE Socket", nullptr)); + tabWidget->setTabText(tabWidget->indexOf(tab_4), QCoreApplication::translate("SettingsNetwork", "Network Card #4", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsNetwork: public Ui_SettingsNetwork {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSNETWORK_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h new file mode 100644 index 000000000..d81dbd722 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsotherperipherals.h @@ -0,0 +1,218 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsotherperipherals.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSOTHERPERIPHERALS_H +#define UI_QT_SETTINGSOTHERPERIPHERALS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsOtherPeripherals +{ +public: + QVBoxLayout *verticalLayout; + QHBoxLayout *horizontalLayout; + QLabel *label; + QComboBox *comboBoxRTC; + QPushButton *pushButtonConfigureRTC; + QGroupBox *groupBox; + QGridLayout *gridLayout; + QPushButton *pushButtonConfigureCard2; + QComboBox *comboBoxCard2; + QPushButton *pushButtonConfigureCard3; + QLabel *label_3; + QLabel *label_4; + QPushButton *pushButtonConfigureCard1; + QComboBox *comboBoxCard1; + QLabel *label_2; + QComboBox *comboBoxCard3; + QComboBox *comboBoxCard4; + QPushButton *pushButtonConfigureCard4; + QLabel *label_5; + QHBoxLayout *horizontalLayout_2; + QCheckBox *checkBoxISABugger; + QCheckBox *checkBoxPOSTCard; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsOtherPeripherals) + { + if (SettingsOtherPeripherals->objectName().isEmpty()) + SettingsOtherPeripherals->setObjectName(QString::fromUtf8("SettingsOtherPeripherals")); + SettingsOtherPeripherals->resize(421, 458); + verticalLayout = new QVBoxLayout(SettingsOtherPeripherals); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + horizontalLayout = new QHBoxLayout(); + horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); + label = new QLabel(SettingsOtherPeripherals); + label->setObjectName(QString::fromUtf8("label")); + + horizontalLayout->addWidget(label); + + comboBoxRTC = new QComboBox(SettingsOtherPeripherals); + comboBoxRTC->setObjectName(QString::fromUtf8("comboBoxRTC")); + comboBoxRTC->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxRTC->sizePolicy().hasHeightForWidth()); + comboBoxRTC->setSizePolicy(sizePolicy); + + horizontalLayout->addWidget(comboBoxRTC); + + pushButtonConfigureRTC = new QPushButton(SettingsOtherPeripherals); + pushButtonConfigureRTC->setObjectName(QString::fromUtf8("pushButtonConfigureRTC")); + + horizontalLayout->addWidget(pushButtonConfigureRTC); + + + verticalLayout->addLayout(horizontalLayout); + + groupBox = new QGroupBox(SettingsOtherPeripherals); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + gridLayout = new QGridLayout(groupBox); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + pushButtonConfigureCard2 = new QPushButton(groupBox); + pushButtonConfigureCard2->setObjectName(QString::fromUtf8("pushButtonConfigureCard2")); + + gridLayout->addWidget(pushButtonConfigureCard2, 1, 2, 1, 1); + + comboBoxCard2 = new QComboBox(groupBox); + comboBoxCard2->setObjectName(QString::fromUtf8("comboBoxCard2")); + comboBoxCard2->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard2->sizePolicy().hasHeightForWidth()); + comboBoxCard2->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard2, 1, 1, 1, 1); + + pushButtonConfigureCard3 = new QPushButton(groupBox); + pushButtonConfigureCard3->setObjectName(QString::fromUtf8("pushButtonConfigureCard3")); + + gridLayout->addWidget(pushButtonConfigureCard3, 2, 2, 1, 1); + + label_3 = new QLabel(groupBox); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 1, 0, 1, 1); + + label_4 = new QLabel(groupBox); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 2, 0, 1, 1); + + pushButtonConfigureCard1 = new QPushButton(groupBox); + pushButtonConfigureCard1->setObjectName(QString::fromUtf8("pushButtonConfigureCard1")); + + gridLayout->addWidget(pushButtonConfigureCard1, 0, 2, 1, 1); + + comboBoxCard1 = new QComboBox(groupBox); + comboBoxCard1->setObjectName(QString::fromUtf8("comboBoxCard1")); + comboBoxCard1->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard1->sizePolicy().hasHeightForWidth()); + comboBoxCard1->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard1, 0, 1, 1, 1); + + label_2 = new QLabel(groupBox); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 0, 0, 1, 1); + + comboBoxCard3 = new QComboBox(groupBox); + comboBoxCard3->setObjectName(QString::fromUtf8("comboBoxCard3")); + comboBoxCard3->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard3->sizePolicy().hasHeightForWidth()); + comboBoxCard3->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard3, 2, 1, 1, 1); + + comboBoxCard4 = new QComboBox(groupBox); + comboBoxCard4->setObjectName(QString::fromUtf8("comboBoxCard4")); + comboBoxCard4->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxCard4->sizePolicy().hasHeightForWidth()); + comboBoxCard4->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxCard4, 3, 1, 1, 1); + + pushButtonConfigureCard4 = new QPushButton(groupBox); + pushButtonConfigureCard4->setObjectName(QString::fromUtf8("pushButtonConfigureCard4")); + + gridLayout->addWidget(pushButtonConfigureCard4, 3, 2, 1, 1); + + label_5 = new QLabel(groupBox); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 3, 0, 1, 1); + + + verticalLayout->addWidget(groupBox); + + horizontalLayout_2 = new QHBoxLayout(); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + checkBoxISABugger = new QCheckBox(SettingsOtherPeripherals); + checkBoxISABugger->setObjectName(QString::fromUtf8("checkBoxISABugger")); + + horizontalLayout_2->addWidget(checkBoxISABugger); + + checkBoxPOSTCard = new QCheckBox(SettingsOtherPeripherals); + checkBoxPOSTCard->setObjectName(QString::fromUtf8("checkBoxPOSTCard")); + + horizontalLayout_2->addWidget(checkBoxPOSTCard); + + + verticalLayout->addLayout(horizontalLayout_2); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + + retranslateUi(SettingsOtherPeripherals); + + QMetaObject::connectSlotsByName(SettingsOtherPeripherals); + } // setupUi + + void retranslateUi(QWidget *SettingsOtherPeripherals) + { + SettingsOtherPeripherals->setWindowTitle(QCoreApplication::translate("SettingsOtherPeripherals", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsOtherPeripherals", "ISA RTC:", nullptr)); + pushButtonConfigureRTC->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsOtherPeripherals", "ISA Memory Expansion", nullptr)); + pushButtonConfigureCard2->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + pushButtonConfigureCard3->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 2:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 3:", nullptr)); + pushButtonConfigureCard1->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 1:", nullptr)); + pushButtonConfigureCard4->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Configure", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsOtherPeripherals", "Card 4:", nullptr)); + checkBoxISABugger->setText(QCoreApplication::translate("SettingsOtherPeripherals", "ISABugger device", nullptr)); + checkBoxPOSTCard->setText(QCoreApplication::translate("SettingsOtherPeripherals", "POST card", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsOtherPeripherals: public Ui_SettingsOtherPeripherals {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSOTHERPERIPHERALS_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h new file mode 100644 index 000000000..00005c783 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsotherremovable.h @@ -0,0 +1,189 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsotherremovable.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSOTHERREMOVABLE_H +#define UI_QT_SETTINGSOTHERREMOVABLE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsOtherRemovable +{ +public: + QVBoxLayout *verticalLayout; + QLabel *label; + QTableView *tableViewMO; + QGridLayout *gridLayout; + QLabel *label_2; + QLabel *label_7; + QComboBox *comboBoxMOBus; + QComboBox *comboBoxMOChannel; + QLabel *label_4; + QComboBox *comboBoxMOType; + QSpacerItem *verticalSpacer; + QLabel *label_6; + QTableView *tableViewZIP; + QHBoxLayout *horizontalLayout_2; + QLabel *label_3; + QComboBox *comboBoxZIPBus; + QLabel *label_5; + QComboBox *comboBoxZIPChannel; + QCheckBox *checkBoxZIP250; + + void setupUi(QWidget *SettingsOtherRemovable) + { + if (SettingsOtherRemovable->objectName().isEmpty()) + SettingsOtherRemovable->setObjectName(QString::fromUtf8("SettingsOtherRemovable")); + SettingsOtherRemovable->resize(418, 433); + verticalLayout = new QVBoxLayout(SettingsOtherRemovable); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + label = new QLabel(SettingsOtherRemovable); + label->setObjectName(QString::fromUtf8("label")); + + verticalLayout->addWidget(label); + + tableViewMO = new QTableView(SettingsOtherRemovable); + tableViewMO->setObjectName(QString::fromUtf8("tableViewMO")); + tableViewMO->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewMO->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewMO->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewMO->setShowGrid(false); + tableViewMO->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewMO); + + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label_2 = new QLabel(SettingsOtherRemovable); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 0, 0, 1, 1); + + label_7 = new QLabel(SettingsOtherRemovable); + label_7->setObjectName(QString::fromUtf8("label_7")); + + gridLayout->addWidget(label_7, 0, 2, 1, 1); + + comboBoxMOBus = new QComboBox(SettingsOtherRemovable); + comboBoxMOBus->setObjectName(QString::fromUtf8("comboBoxMOBus")); + comboBoxMOBus->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMOBus, 0, 1, 1, 1); + + comboBoxMOChannel = new QComboBox(SettingsOtherRemovable); + comboBoxMOChannel->setObjectName(QString::fromUtf8("comboBoxMOChannel")); + comboBoxMOChannel->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMOChannel, 0, 3, 1, 1); + + label_4 = new QLabel(SettingsOtherRemovable); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 1, 0, 1, 1); + + comboBoxMOType = new QComboBox(SettingsOtherRemovable); + comboBoxMOType->setObjectName(QString::fromUtf8("comboBoxMOType")); + comboBoxMOType->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxMOType, 1, 1, 1, 3); + + + verticalLayout->addLayout(gridLayout); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + label_6 = new QLabel(SettingsOtherRemovable); + label_6->setObjectName(QString::fromUtf8("label_6")); + + verticalLayout->addWidget(label_6); + + tableViewZIP = new QTableView(SettingsOtherRemovable); + tableViewZIP->setObjectName(QString::fromUtf8("tableViewZIP")); + tableViewZIP->setEditTriggers(QAbstractItemView::NoEditTriggers); + tableViewZIP->setSelectionMode(QAbstractItemView::SingleSelection); + tableViewZIP->setSelectionBehavior(QAbstractItemView::SelectRows); + tableViewZIP->setShowGrid(false); + tableViewZIP->verticalHeader()->setVisible(false); + + verticalLayout->addWidget(tableViewZIP); + + horizontalLayout_2 = new QHBoxLayout(); + horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); + label_3 = new QLabel(SettingsOtherRemovable); + label_3->setObjectName(QString::fromUtf8("label_3")); + + horizontalLayout_2->addWidget(label_3); + + comboBoxZIPBus = new QComboBox(SettingsOtherRemovable); + comboBoxZIPBus->setObjectName(QString::fromUtf8("comboBoxZIPBus")); + comboBoxZIPBus->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxZIPBus); + + label_5 = new QLabel(SettingsOtherRemovable); + label_5->setObjectName(QString::fromUtf8("label_5")); + + horizontalLayout_2->addWidget(label_5); + + comboBoxZIPChannel = new QComboBox(SettingsOtherRemovable); + comboBoxZIPChannel->setObjectName(QString::fromUtf8("comboBoxZIPChannel")); + comboBoxZIPChannel->setMaxVisibleItems(30); + + horizontalLayout_2->addWidget(comboBoxZIPChannel); + + checkBoxZIP250 = new QCheckBox(SettingsOtherRemovable); + checkBoxZIP250->setObjectName(QString::fromUtf8("checkBoxZIP250")); + + horizontalLayout_2->addWidget(checkBoxZIP250); + + + verticalLayout->addLayout(horizontalLayout_2); + + + retranslateUi(SettingsOtherRemovable); + + QMetaObject::connectSlotsByName(SettingsOtherRemovable); + } // setupUi + + void retranslateUi(QWidget *SettingsOtherRemovable) + { + SettingsOtherRemovable->setWindowTitle(QCoreApplication::translate("SettingsOtherRemovable", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsOtherRemovable", "MO drives:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsOtherRemovable", "Bus:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsOtherRemovable", "Channel:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsOtherRemovable", "Type:", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsOtherRemovable", "ZIP drives:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsOtherRemovable", "Bus:", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsOtherRemovable", "Channel:", nullptr)); + checkBoxZIP250->setText(QCoreApplication::translate("SettingsOtherRemovable", "ZIP 250", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsOtherRemovable: public Ui_SettingsOtherRemovable {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSOTHERREMOVABLE_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsports.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsports.h new file mode 100644 index 000000000..b4cbfaa2e --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsports.h @@ -0,0 +1,254 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsports.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSPORTS_H +#define UI_QT_SETTINGSPORTS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsPorts +{ +public: + QGridLayout *gridLayout_4; + QFormLayout *formLayout; + QLabel *label; + QComboBox *comboBoxLpt1; + QLabel *label_2; + QComboBox *comboBoxLpt2; + QLabel *label_3; + QComboBox *comboBoxLpt3; + QLabel *label_4; + QComboBox *comboBoxLpt4; + QGridLayout *gridLayout; + QCheckBox *checkBoxParallel2; + QCheckBox *checkBoxParallel3; + QCheckBox *checkBoxSerial3; + QCheckBox *checkBoxSerial1; + QCheckBox *checkBoxParallel4; + QCheckBox *checkBoxSerial2; + QCheckBox *checkBoxParallel1; + QCheckBox *checkBoxSerial4; + QGridLayout *gridLayout_5; + QSpacerItem *horizontalSpacer; + QCheckBox *checkBoxSerialPassThru3; + QSpacerItem *verticalSpacer; + QPushButton *pushButtonSerialPassThru1; + QCheckBox *checkBoxSerialPassThru1; + QCheckBox *checkBoxSerialPassThru2; + QCheckBox *checkBoxSerialPassThru4; + QPushButton *pushButtonSerialPassThru2; + QPushButton *pushButtonSerialPassThru3; + QPushButton *pushButtonSerialPassThru4; + + void setupUi(QWidget *SettingsPorts) + { + if (SettingsPorts->objectName().isEmpty()) + SettingsPorts->setObjectName(QString::fromUtf8("SettingsPorts")); + SettingsPorts->resize(398, 341); + gridLayout_4 = new QGridLayout(SettingsPorts); + gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4")); + gridLayout_4->setContentsMargins(0, 0, 0, 0); + formLayout = new QFormLayout(); + formLayout->setObjectName(QString::fromUtf8("formLayout")); + label = new QLabel(SettingsPorts); + label->setObjectName(QString::fromUtf8("label")); + + formLayout->setWidget(0, QFormLayout::LabelRole, label); + + comboBoxLpt1 = new QComboBox(SettingsPorts); + comboBoxLpt1->setObjectName(QString::fromUtf8("comboBoxLpt1")); + comboBoxLpt1->setMaxVisibleItems(30); + + formLayout->setWidget(0, QFormLayout::FieldRole, comboBoxLpt1); + + label_2 = new QLabel(SettingsPorts); + label_2->setObjectName(QString::fromUtf8("label_2")); + + formLayout->setWidget(1, QFormLayout::LabelRole, label_2); + + comboBoxLpt2 = new QComboBox(SettingsPorts); + comboBoxLpt2->setObjectName(QString::fromUtf8("comboBoxLpt2")); + comboBoxLpt2->setMaxVisibleItems(30); + + formLayout->setWidget(1, QFormLayout::FieldRole, comboBoxLpt2); + + label_3 = new QLabel(SettingsPorts); + label_3->setObjectName(QString::fromUtf8("label_3")); + + formLayout->setWidget(2, QFormLayout::LabelRole, label_3); + + comboBoxLpt3 = new QComboBox(SettingsPorts); + comboBoxLpt3->setObjectName(QString::fromUtf8("comboBoxLpt3")); + comboBoxLpt3->setMaxVisibleItems(30); + + formLayout->setWidget(2, QFormLayout::FieldRole, comboBoxLpt3); + + label_4 = new QLabel(SettingsPorts); + label_4->setObjectName(QString::fromUtf8("label_4")); + + formLayout->setWidget(3, QFormLayout::LabelRole, label_4); + + comboBoxLpt4 = new QComboBox(SettingsPorts); + comboBoxLpt4->setObjectName(QString::fromUtf8("comboBoxLpt4")); + comboBoxLpt4->setMaxVisibleItems(30); + + formLayout->setWidget(3, QFormLayout::FieldRole, comboBoxLpt4); + + + gridLayout_4->addLayout(formLayout, 0, 0, 1, 1); + + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + checkBoxParallel2 = new QCheckBox(SettingsPorts); + checkBoxParallel2->setObjectName(QString::fromUtf8("checkBoxParallel2")); + + gridLayout->addWidget(checkBoxParallel2, 1, 1, 1, 1); + + checkBoxParallel3 = new QCheckBox(SettingsPorts); + checkBoxParallel3->setObjectName(QString::fromUtf8("checkBoxParallel3")); + + gridLayout->addWidget(checkBoxParallel3, 2, 1, 1, 1); + + checkBoxSerial3 = new QCheckBox(SettingsPorts); + checkBoxSerial3->setObjectName(QString::fromUtf8("checkBoxSerial3")); + + gridLayout->addWidget(checkBoxSerial3, 2, 0, 1, 1); + + checkBoxSerial1 = new QCheckBox(SettingsPorts); + checkBoxSerial1->setObjectName(QString::fromUtf8("checkBoxSerial1")); + + gridLayout->addWidget(checkBoxSerial1, 0, 0, 1, 1); + + checkBoxParallel4 = new QCheckBox(SettingsPorts); + checkBoxParallel4->setObjectName(QString::fromUtf8("checkBoxParallel4")); + + gridLayout->addWidget(checkBoxParallel4, 3, 1, 1, 1); + + checkBoxSerial2 = new QCheckBox(SettingsPorts); + checkBoxSerial2->setObjectName(QString::fromUtf8("checkBoxSerial2")); + + gridLayout->addWidget(checkBoxSerial2, 1, 0, 1, 1); + + checkBoxParallel1 = new QCheckBox(SettingsPorts); + checkBoxParallel1->setObjectName(QString::fromUtf8("checkBoxParallel1")); + + gridLayout->addWidget(checkBoxParallel1, 0, 1, 1, 1); + + checkBoxSerial4 = new QCheckBox(SettingsPorts); + checkBoxSerial4->setObjectName(QString::fromUtf8("checkBoxSerial4")); + + gridLayout->addWidget(checkBoxSerial4, 3, 0, 1, 1); + + + gridLayout_4->addLayout(gridLayout, 1, 0, 1, 1); + + gridLayout_5 = new QGridLayout(); + gridLayout_5->setObjectName(QString::fromUtf8("gridLayout_5")); + gridLayout_5->setSizeConstraint(QLayout::SetDefaultConstraint); + horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); + + gridLayout_5->addItem(horizontalSpacer, 4, 0, 1, 1); + + checkBoxSerialPassThru3 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru3->setObjectName(QString::fromUtf8("checkBoxSerialPassThru3")); + + gridLayout_5->addWidget(checkBoxSerialPassThru3, 2, 0, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout_5->addItem(verticalSpacer, 5, 0, 1, 2); + + pushButtonSerialPassThru1 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru1->setObjectName(QString::fromUtf8("pushButtonSerialPassThru1")); + + gridLayout_5->addWidget(pushButtonSerialPassThru1, 0, 1, 1, 1); + + checkBoxSerialPassThru1 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru1->setObjectName(QString::fromUtf8("checkBoxSerialPassThru1")); + + gridLayout_5->addWidget(checkBoxSerialPassThru1, 0, 0, 1, 1); + + checkBoxSerialPassThru2 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru2->setObjectName(QString::fromUtf8("checkBoxSerialPassThru2")); + + gridLayout_5->addWidget(checkBoxSerialPassThru2, 1, 0, 1, 1); + + checkBoxSerialPassThru4 = new QCheckBox(SettingsPorts); + checkBoxSerialPassThru4->setObjectName(QString::fromUtf8("checkBoxSerialPassThru4")); + + gridLayout_5->addWidget(checkBoxSerialPassThru4, 3, 0, 1, 1); + + pushButtonSerialPassThru2 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru2->setObjectName(QString::fromUtf8("pushButtonSerialPassThru2")); + + gridLayout_5->addWidget(pushButtonSerialPassThru2, 1, 1, 1, 1); + + pushButtonSerialPassThru3 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru3->setObjectName(QString::fromUtf8("pushButtonSerialPassThru3")); + + gridLayout_5->addWidget(pushButtonSerialPassThru3, 2, 1, 1, 1); + + pushButtonSerialPassThru4 = new QPushButton(SettingsPorts); + pushButtonSerialPassThru4->setObjectName(QString::fromUtf8("pushButtonSerialPassThru4")); + + gridLayout_5->addWidget(pushButtonSerialPassThru4, 3, 1, 1, 1); + + + gridLayout_4->addLayout(gridLayout_5, 3, 0, 1, 1); + + + retranslateUi(SettingsPorts); + + QMetaObject::connectSlotsByName(SettingsPorts); + } // setupUi + + void retranslateUi(QWidget *SettingsPorts) + { + SettingsPorts->setWindowTitle(QCoreApplication::translate("SettingsPorts", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsPorts", "LPT1 Device:", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsPorts", "LPT2 Device:", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsPorts", "LPT3 Device:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsPorts", "LPT4 Device:", nullptr)); + checkBoxParallel2->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 2", nullptr)); + checkBoxParallel3->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 3", nullptr)); + checkBoxSerial3->setText(QCoreApplication::translate("SettingsPorts", "Serial port 3", nullptr)); + checkBoxSerial1->setText(QCoreApplication::translate("SettingsPorts", "Serial port 1", nullptr)); + checkBoxParallel4->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 4", nullptr)); + checkBoxSerial2->setText(QCoreApplication::translate("SettingsPorts", "Serial port 2", nullptr)); + checkBoxParallel1->setText(QCoreApplication::translate("SettingsPorts", "Parallel port 1", nullptr)); + checkBoxSerial4->setText(QCoreApplication::translate("SettingsPorts", "Serial port 4", nullptr)); + checkBoxSerialPassThru3->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 3", nullptr)); + pushButtonSerialPassThru1->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + checkBoxSerialPassThru1->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 1", nullptr)); + checkBoxSerialPassThru2->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 2", nullptr)); + checkBoxSerialPassThru4->setText(QCoreApplication::translate("SettingsPorts", "Serial port passthrough 4", nullptr)); + pushButtonSerialPassThru2->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + pushButtonSerialPassThru3->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + pushButtonSerialPassThru4->setText(QCoreApplication::translate("SettingsPorts", "Configure", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsPorts: public Ui_SettingsPorts {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSPORTS_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingssound.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingssound.h new file mode 100644 index 000000000..146dd60ce --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingssound.h @@ -0,0 +1,258 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingssound.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSSOUND_H +#define UI_QT_SETTINGSSOUND_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsSound +{ +public: + QGridLayout *gridLayout; + QLabel *label_3; + QLabel *label; + QPushButton *pushButtonConfigureSoundCard1; + QLabel *label_4; + QPushButton *pushButtonConfigureSoundCard2; + QLabel *label_5; + QPushButton *pushButtonConfigureSoundCard3; + QLabel *label_6; + QPushButton *pushButtonConfigureSoundCard4; + QComboBox *comboBoxMidiIn; + QLabel *label_2; + QCheckBox *checkBoxMPU401; + QPushButton *pushButtonConfigureMPU401; + QPushButton *pushButtonConfigureMidiIn; + QComboBox *comboBoxMidiOut; + QPushButton *pushButtonConfigureMidiOut; + QCheckBox *checkBoxFloat32; + QGroupBox *groupBox; + QVBoxLayout *verticalLayout_1; + QRadioButton *radioButtonNuked; + QRadioButton *radioButtonYMFM; + QSpacerItem *verticalSpacer; + QComboBox *comboBoxSoundCard1; + QComboBox *comboBoxSoundCard2; + QComboBox *comboBoxSoundCard3; + QComboBox *comboBoxSoundCard4; + + void setupUi(QWidget *SettingsSound) + { + if (SettingsSound->objectName().isEmpty()) + SettingsSound->setObjectName(QString::fromUtf8("SettingsSound")); + SettingsSound->resize(387, 332); + gridLayout = new QGridLayout(SettingsSound); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + gridLayout->setContentsMargins(0, 0, 0, 0); + label_3 = new QLabel(SettingsSound); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout->addWidget(label_3, 5, 0, 1, 1); + + label = new QLabel(SettingsSound); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + pushButtonConfigureSoundCard1 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard1->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard1")); + + gridLayout->addWidget(pushButtonConfigureSoundCard1, 0, 3, 1, 1); + + label_4 = new QLabel(SettingsSound); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout->addWidget(label_4, 1, 0, 1, 1); + + pushButtonConfigureSoundCard2 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard2->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard2")); + + gridLayout->addWidget(pushButtonConfigureSoundCard2, 1, 3, 1, 1); + + label_5 = new QLabel(SettingsSound); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout->addWidget(label_5, 2, 0, 1, 1); + + pushButtonConfigureSoundCard3 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard3->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard3")); + + gridLayout->addWidget(pushButtonConfigureSoundCard3, 2, 3, 1, 1); + + label_6 = new QLabel(SettingsSound); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout->addWidget(label_6, 3, 0, 1, 1); + + pushButtonConfigureSoundCard4 = new QPushButton(SettingsSound); + pushButtonConfigureSoundCard4->setObjectName(QString::fromUtf8("pushButtonConfigureSoundCard4")); + + gridLayout->addWidget(pushButtonConfigureSoundCard4, 3, 3, 1, 1); + + comboBoxMidiIn = new QComboBox(SettingsSound); + comboBoxMidiIn->setObjectName(QString::fromUtf8("comboBoxMidiIn")); + comboBoxMidiIn->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxMidiIn->sizePolicy().hasHeightForWidth()); + comboBoxMidiIn->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxMidiIn, 5, 1, 1, 1); + + label_2 = new QLabel(SettingsSound); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 4, 0, 1, 1); + + checkBoxMPU401 = new QCheckBox(SettingsSound); + checkBoxMPU401->setObjectName(QString::fromUtf8("checkBoxMPU401")); + + gridLayout->addWidget(checkBoxMPU401, 6, 0, 1, 1); + + pushButtonConfigureMPU401 = new QPushButton(SettingsSound); + pushButtonConfigureMPU401->setObjectName(QString::fromUtf8("pushButtonConfigureMPU401")); + + gridLayout->addWidget(pushButtonConfigureMPU401, 6, 3, 1, 1); + + pushButtonConfigureMidiIn = new QPushButton(SettingsSound); + pushButtonConfigureMidiIn->setObjectName(QString::fromUtf8("pushButtonConfigureMidiIn")); + + gridLayout->addWidget(pushButtonConfigureMidiIn, 5, 3, 1, 1); + + comboBoxMidiOut = new QComboBox(SettingsSound); + comboBoxMidiOut->setObjectName(QString::fromUtf8("comboBoxMidiOut")); + comboBoxMidiOut->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxMidiOut->sizePolicy().hasHeightForWidth()); + comboBoxMidiOut->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxMidiOut, 4, 1, 1, 1); + + pushButtonConfigureMidiOut = new QPushButton(SettingsSound); + pushButtonConfigureMidiOut->setObjectName(QString::fromUtf8("pushButtonConfigureMidiOut")); + + gridLayout->addWidget(pushButtonConfigureMidiOut, 4, 3, 1, 1); + + checkBoxFloat32 = new QCheckBox(SettingsSound); + checkBoxFloat32->setObjectName(QString::fromUtf8("checkBoxFloat32")); + + gridLayout->addWidget(checkBoxFloat32, 10, 0, 1, 1); + + groupBox = new QGroupBox(SettingsSound); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + QSizePolicy sizePolicy1(QSizePolicy::Maximum, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(groupBox->sizePolicy().hasHeightForWidth()); + groupBox->setSizePolicy(sizePolicy1); + verticalLayout_1 = new QVBoxLayout(groupBox); + verticalLayout_1->setObjectName(QString::fromUtf8("verticalLayout_1")); + radioButtonNuked = new QRadioButton(groupBox); + radioButtonNuked->setObjectName(QString::fromUtf8("radioButtonNuked")); + + verticalLayout_1->addWidget(radioButtonNuked); + + radioButtonYMFM = new QRadioButton(groupBox); + radioButtonYMFM->setObjectName(QString::fromUtf8("radioButtonYMFM")); + + verticalLayout_1->addWidget(radioButtonYMFM); + + + gridLayout->addWidget(groupBox, 11, 0, 1, 1); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + gridLayout->addItem(verticalSpacer, 12, 0, 1, 1); + + comboBoxSoundCard1 = new QComboBox(SettingsSound); + comboBoxSoundCard1->setObjectName(QString::fromUtf8("comboBoxSoundCard1")); + comboBoxSoundCard1->setMaxVisibleItems(30); + QSizePolicy sizePolicy2(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(comboBoxSoundCard1->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard1->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard1, 0, 1, 1, 1); + + comboBoxSoundCard2 = new QComboBox(SettingsSound); + comboBoxSoundCard2->setObjectName(QString::fromUtf8("comboBoxSoundCard2")); + comboBoxSoundCard2->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxSoundCard2->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard2->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard2, 1, 1, 1, 1); + + comboBoxSoundCard3 = new QComboBox(SettingsSound); + comboBoxSoundCard3->setObjectName(QString::fromUtf8("comboBoxSoundCard3")); + comboBoxSoundCard3->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxSoundCard3->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard3->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard3, 2, 1, 1, 1); + + comboBoxSoundCard4 = new QComboBox(SettingsSound); + comboBoxSoundCard4->setObjectName(QString::fromUtf8("comboBoxSoundCard4")); + comboBoxSoundCard4->setMaxVisibleItems(30); + sizePolicy2.setHeightForWidth(comboBoxSoundCard4->sizePolicy().hasHeightForWidth()); + comboBoxSoundCard4->setSizePolicy(sizePolicy2); + + gridLayout->addWidget(comboBoxSoundCard4, 3, 1, 1, 1); + + + retranslateUi(SettingsSound); + + QMetaObject::connectSlotsByName(SettingsSound); + } // setupUi + + void retranslateUi(QWidget *SettingsSound) + { + SettingsSound->setWindowTitle(QCoreApplication::translate("SettingsSound", "Form", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsSound", "MIDI In Device:", nullptr)); + label->setText(QCoreApplication::translate("SettingsSound", "Sound card #1:", nullptr)); + pushButtonConfigureSoundCard1->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsSound", "Sound card #2:", nullptr)); + pushButtonConfigureSoundCard2->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsSound", "Sound card #3:", nullptr)); + pushButtonConfigureSoundCard3->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsSound", "Sound card #4:", nullptr)); + pushButtonConfigureSoundCard4->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsSound", "MIDI Out Device:", nullptr)); + checkBoxMPU401->setText(QCoreApplication::translate("SettingsSound", "Standalone MPU-401", nullptr)); + pushButtonConfigureMPU401->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + pushButtonConfigureMidiIn->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + pushButtonConfigureMidiOut->setText(QCoreApplication::translate("SettingsSound", "Configure", nullptr)); + checkBoxFloat32->setText(QCoreApplication::translate("SettingsSound", "Use FLOAT32 sound", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsSound", "FM synth driver", nullptr)); + radioButtonNuked->setText(QCoreApplication::translate("SettingsSound", "Nuked (more accurate)", nullptr)); + radioButtonYMFM->setText(QCoreApplication::translate("SettingsSound", "YMFM (faster)", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsSound: public Ui_SettingsSound {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSSOUND_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h new file mode 100644 index 000000000..96d3be419 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_settingsstoragecontrollers.h @@ -0,0 +1,279 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_settingsstoragecontrollers.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SETTINGSSTORAGECONTROLLERS_H +#define UI_QT_SETTINGSSTORAGECONTROLLERS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SettingsStorageControllers +{ +public: + QVBoxLayout *verticalLayout; + QGridLayout *gridLayout; + QLabel *label; + QPushButton *pushButtonFD; + QLabel *label_2; + QLabel *label_7; + QComboBox *comboBoxCDInterface; + QPushButton *pushButtonCDInterface; + QComboBox *comboBoxHD; + QPushButton *pushButtonHD; + QComboBox *comboBoxFD; + QCheckBox *checkBoxTertiaryIDE; + QCheckBox *checkBoxQuaternaryIDE; + QPushButton *pushButtonTertiaryIDE; + QPushButton *pushButtonQuaternaryIDE; + QGroupBox *groupBox; + QGridLayout *gridLayout_3; + QPushButton *pushButtonSCSI2; + QPushButton *pushButtonSCSI4; + QLabel *label_6; + QComboBox *comboBoxSCSI1; + QPushButton *pushButtonSCSI1; + QComboBox *comboBoxSCSI2; + QComboBox *comboBoxSCSI3; + QComboBox *comboBoxSCSI4; + QLabel *label_3; + QLabel *label_4; + QLabel *label_5; + QPushButton *pushButtonSCSI3; + QCheckBox *checkBoxCassette; + QSpacerItem *verticalSpacer; + + void setupUi(QWidget *SettingsStorageControllers) + { + if (SettingsStorageControllers->objectName().isEmpty()) + SettingsStorageControllers->setObjectName(QString::fromUtf8("SettingsStorageControllers")); + SettingsStorageControllers->resize(496, 449); + verticalLayout = new QVBoxLayout(SettingsStorageControllers); + verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); + verticalLayout->setContentsMargins(0, 0, 0, 0); + gridLayout = new QGridLayout(); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label = new QLabel(SettingsStorageControllers); + label->setObjectName(QString::fromUtf8("label")); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + pushButtonFD = new QPushButton(SettingsStorageControllers); + pushButtonFD->setObjectName(QString::fromUtf8("pushButtonFD")); + + gridLayout->addWidget(pushButtonFD, 1, 2, 1, 1); + + label_2 = new QLabel(SettingsStorageControllers); + label_2->setObjectName(QString::fromUtf8("label_2")); + + gridLayout->addWidget(label_2, 1, 0, 1, 1); + + label_7 = new QLabel(SettingsStorageControllers); + label_7->setObjectName(QString::fromUtf8("label_7")); + label_7->setVisible(false); + + gridLayout->addWidget(label_7, 2, 0, 1, 1); + + comboBoxCDInterface = new QComboBox(SettingsStorageControllers); + comboBoxCDInterface->setObjectName(QString::fromUtf8("comboBoxCDInterface")); + comboBoxCDInterface->setMaxVisibleItems(30); + comboBoxCDInterface->setVisible(false); + + gridLayout->addWidget(comboBoxCDInterface, 2, 1, 1, 1); + + pushButtonCDInterface = new QPushButton(SettingsStorageControllers); + pushButtonCDInterface->setObjectName(QString::fromUtf8("pushButtonCDInterface")); + pushButtonCDInterface->setVisible(false); + + gridLayout->addWidget(pushButtonCDInterface, 2, 2, 1, 1); + + comboBoxHD = new QComboBox(SettingsStorageControllers); + comboBoxHD->setObjectName(QString::fromUtf8("comboBoxHD")); + comboBoxHD->setMaxVisibleItems(30); + QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(comboBoxHD->sizePolicy().hasHeightForWidth()); + comboBoxHD->setSizePolicy(sizePolicy); + + gridLayout->addWidget(comboBoxHD, 0, 1, 1, 1); + + pushButtonHD = new QPushButton(SettingsStorageControllers); + pushButtonHD->setObjectName(QString::fromUtf8("pushButtonHD")); + + gridLayout->addWidget(pushButtonHD, 0, 2, 1, 1); + + comboBoxFD = new QComboBox(SettingsStorageControllers); + comboBoxFD->setObjectName(QString::fromUtf8("comboBoxFD")); + comboBoxFD->setMaxVisibleItems(30); + + gridLayout->addWidget(comboBoxFD, 1, 1, 1, 1); + + checkBoxTertiaryIDE = new QCheckBox(SettingsStorageControllers); + checkBoxTertiaryIDE->setObjectName(QString::fromUtf8("checkBoxTertiaryIDE")); + + gridLayout->addWidget(checkBoxTertiaryIDE, 3, 0, 1, 1); + + checkBoxQuaternaryIDE = new QCheckBox(SettingsStorageControllers); + checkBoxQuaternaryIDE->setObjectName(QString::fromUtf8("checkBoxQuaternaryIDE")); + + gridLayout->addWidget(checkBoxQuaternaryIDE, 4, 0, 1, 1); + + pushButtonTertiaryIDE = new QPushButton(SettingsStorageControllers); + pushButtonTertiaryIDE->setObjectName(QString::fromUtf8("pushButtonTertiaryIDE")); + pushButtonTertiaryIDE->setEnabled(false); + + gridLayout->addWidget(pushButtonTertiaryIDE, 3, 2, 1, 1); + + pushButtonQuaternaryIDE = new QPushButton(SettingsStorageControllers); + pushButtonQuaternaryIDE->setObjectName(QString::fromUtf8("pushButtonQuaternaryIDE")); + pushButtonQuaternaryIDE->setEnabled(false); + + gridLayout->addWidget(pushButtonQuaternaryIDE, 4, 2, 1, 1); + + + verticalLayout->addLayout(gridLayout); + + groupBox = new QGroupBox(SettingsStorageControllers); + groupBox->setObjectName(QString::fromUtf8("groupBox")); + gridLayout_3 = new QGridLayout(groupBox); + gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3")); + pushButtonSCSI2 = new QPushButton(groupBox); + pushButtonSCSI2->setObjectName(QString::fromUtf8("pushButtonSCSI2")); + + gridLayout_3->addWidget(pushButtonSCSI2, 1, 3, 1, 1); + + pushButtonSCSI4 = new QPushButton(groupBox); + pushButtonSCSI4->setObjectName(QString::fromUtf8("pushButtonSCSI4")); + + gridLayout_3->addWidget(pushButtonSCSI4, 3, 3, 1, 1); + + label_6 = new QLabel(groupBox); + label_6->setObjectName(QString::fromUtf8("label_6")); + + gridLayout_3->addWidget(label_6, 2, 0, 1, 1); + + comboBoxSCSI1 = new QComboBox(groupBox); + comboBoxSCSI1->setObjectName(QString::fromUtf8("comboBoxSCSI1")); + comboBoxSCSI1->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI1->sizePolicy().hasHeightForWidth()); + comboBoxSCSI1->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI1, 0, 2, 1, 1); + + pushButtonSCSI1 = new QPushButton(groupBox); + pushButtonSCSI1->setObjectName(QString::fromUtf8("pushButtonSCSI1")); + + gridLayout_3->addWidget(pushButtonSCSI1, 0, 3, 1, 1); + + comboBoxSCSI2 = new QComboBox(groupBox); + comboBoxSCSI2->setObjectName(QString::fromUtf8("comboBoxSCSI2")); + comboBoxSCSI2->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI2->sizePolicy().hasHeightForWidth()); + comboBoxSCSI2->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI2, 1, 2, 1, 1); + + comboBoxSCSI3 = new QComboBox(groupBox); + comboBoxSCSI3->setObjectName(QString::fromUtf8("comboBoxSCSI3")); + comboBoxSCSI3->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI3->sizePolicy().hasHeightForWidth()); + comboBoxSCSI3->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI3, 2, 2, 1, 1); + + comboBoxSCSI4 = new QComboBox(groupBox); + comboBoxSCSI4->setObjectName(QString::fromUtf8("comboBoxSCSI4")); + comboBoxSCSI4->setMaxVisibleItems(30); + sizePolicy.setHeightForWidth(comboBoxSCSI4->sizePolicy().hasHeightForWidth()); + comboBoxSCSI4->setSizePolicy(sizePolicy); + + gridLayout_3->addWidget(comboBoxSCSI4, 3, 2, 1, 1); + + label_3 = new QLabel(groupBox); + label_3->setObjectName(QString::fromUtf8("label_3")); + + gridLayout_3->addWidget(label_3, 0, 0, 1, 1); + + label_4 = new QLabel(groupBox); + label_4->setObjectName(QString::fromUtf8("label_4")); + + gridLayout_3->addWidget(label_4, 1, 0, 1, 1); + + label_5 = new QLabel(groupBox); + label_5->setObjectName(QString::fromUtf8("label_5")); + + gridLayout_3->addWidget(label_5, 3, 0, 1, 1); + + pushButtonSCSI3 = new QPushButton(groupBox); + pushButtonSCSI3->setObjectName(QString::fromUtf8("pushButtonSCSI3")); + + gridLayout_3->addWidget(pushButtonSCSI3, 2, 3, 1, 1); + + + verticalLayout->addWidget(groupBox); + + checkBoxCassette = new QCheckBox(SettingsStorageControllers); + checkBoxCassette->setObjectName(QString::fromUtf8("checkBoxCassette")); + + verticalLayout->addWidget(checkBoxCassette); + + verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); + + verticalLayout->addItem(verticalSpacer); + + + retranslateUi(SettingsStorageControllers); + + QMetaObject::connectSlotsByName(SettingsStorageControllers); + } // setupUi + + void retranslateUi(QWidget *SettingsStorageControllers) + { + SettingsStorageControllers->setWindowTitle(QCoreApplication::translate("SettingsStorageControllers", "Form", nullptr)); + label->setText(QCoreApplication::translate("SettingsStorageControllers", "HD Controller:", nullptr)); + pushButtonFD->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + label_2->setText(QCoreApplication::translate("SettingsStorageControllers", "FD Controller:", nullptr)); + label_7->setText(QCoreApplication::translate("SettingsStorageControllers", "CD-ROM Controller:", nullptr)); + pushButtonCDInterface->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + pushButtonHD->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + checkBoxTertiaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Tertiary IDE Controller", nullptr)); + checkBoxQuaternaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Quaternary IDE Controller", nullptr)); + pushButtonTertiaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + pushButtonQuaternaryIDE->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + groupBox->setTitle(QCoreApplication::translate("SettingsStorageControllers", "SCSI", nullptr)); + pushButtonSCSI2->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + pushButtonSCSI4->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + label_6->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 3:", nullptr)); + pushButtonSCSI1->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + label_3->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 1:", nullptr)); + label_4->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 2:", nullptr)); + label_5->setText(QCoreApplication::translate("SettingsStorageControllers", "Controller 4:", nullptr)); + pushButtonSCSI3->setText(QCoreApplication::translate("SettingsStorageControllers", "Configure", nullptr)); + checkBoxCassette->setText(QCoreApplication::translate("SettingsStorageControllers", "Cassette", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SettingsStorageControllers: public Ui_SettingsStorageControllers {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SETTINGSSTORAGECONTROLLERS_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_soundgain.h b/src/build64/src/qt/ui_autogen/include/ui_qt_soundgain.h new file mode 100644 index 000000000..150e377c4 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_soundgain.h @@ -0,0 +1,102 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_soundgain.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SOUNDGAIN_H +#define UI_QT_SOUNDGAIN_H + +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SoundGain +{ +public: + QGridLayout *gridLayout; + QLabel *label; + QSlider *verticalSlider; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *SoundGain) + { + if (SoundGain->objectName().isEmpty()) + SoundGain->setObjectName(QString::fromUtf8("SoundGain")); + SoundGain->resize(200, 250); + QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); + sizePolicy.setHorizontalStretch(0); + sizePolicy.setVerticalStretch(0); + sizePolicy.setHeightForWidth(SoundGain->sizePolicy().hasHeightForWidth()); + SoundGain->setSizePolicy(sizePolicy); + SoundGain->setMinimumSize(QSize(200, 250)); + SoundGain->setMaximumSize(QSize(200, 250)); + gridLayout = new QGridLayout(SoundGain); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + label = new QLabel(SoundGain); + label->setObjectName(QString::fromUtf8("label")); + QSizePolicy sizePolicy1(QSizePolicy::Expanding, QSizePolicy::Preferred); + sizePolicy1.setHorizontalStretch(0); + sizePolicy1.setVerticalStretch(0); + sizePolicy1.setHeightForWidth(label->sizePolicy().hasHeightForWidth()); + label->setSizePolicy(sizePolicy1); + label->setAlignment(Qt::AlignCenter); + + gridLayout->addWidget(label, 0, 0, 1, 1); + + verticalSlider = new QSlider(SoundGain); + verticalSlider->setObjectName(QString::fromUtf8("verticalSlider")); + verticalSlider->setMaximum(18); + verticalSlider->setSingleStep(2); + verticalSlider->setPageStep(4); + verticalSlider->setOrientation(Qt::Vertical); + verticalSlider->setInvertedAppearance(false); + verticalSlider->setTickPosition(QSlider::TicksBothSides); + + gridLayout->addWidget(verticalSlider, 1, 0, 1, 1, Qt::AlignHCenter); + + buttonBox = new QDialogButtonBox(SoundGain); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + QSizePolicy sizePolicy2(QSizePolicy::Minimum, QSizePolicy::Expanding); + sizePolicy2.setHorizontalStretch(0); + sizePolicy2.setVerticalStretch(0); + sizePolicy2.setHeightForWidth(buttonBox->sizePolicy().hasHeightForWidth()); + buttonBox->setSizePolicy(sizePolicy2); + buttonBox->setOrientation(Qt::Vertical); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 0, 1, 2, 1); + + gridLayout->setColumnStretch(0, 1); + gridLayout->setColumnStretch(1, 1); + + retranslateUi(SoundGain); + QObject::connect(buttonBox, SIGNAL(accepted()), SoundGain, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), SoundGain, SLOT(reject())); + + QMetaObject::connectSlotsByName(SoundGain); + } // setupUi + + void retranslateUi(QDialog *SoundGain) + { + SoundGain->setWindowTitle(QCoreApplication::translate("SoundGain", "Sound Gain", nullptr)); + label->setText(QCoreApplication::translate("SoundGain", "Gain", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SoundGain: public Ui_SoundGain {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SOUNDGAIN_H diff --git a/src/build64/src/qt/ui_autogen/include/ui_qt_specifydimensions.h b/src/build64/src/qt/ui_autogen/include/ui_qt_specifydimensions.h new file mode 100644 index 000000000..dc5bf1cfd --- /dev/null +++ b/src/build64/src/qt/ui_autogen/include/ui_qt_specifydimensions.h @@ -0,0 +1,97 @@ +/******************************************************************************** +** Form generated from reading UI file 'qt_specifydimensions.ui' +** +** Created by: Qt User Interface Compiler version 5.15.10 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_QT_SPECIFYDIMENSIONS_H +#define UI_QT_SPECIFYDIMENSIONS_H + +#include +#include +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_SpecifyDimensions +{ +public: + QGridLayout *gridLayout; + QLabel *labelWidth; + QSpinBox *spinBoxWidth; + QLabel *labelHeight; + QSpinBox *spinBoxHeight; + QCheckBox *checkBox; + QDialogButtonBox *buttonBox; + + void setupUi(QDialog *SpecifyDimensions) + { + if (SpecifyDimensions->objectName().isEmpty()) + SpecifyDimensions->setObjectName(QString::fromUtf8("SpecifyDimensions")); + SpecifyDimensions->resize(388, 158); + gridLayout = new QGridLayout(SpecifyDimensions); + gridLayout->setObjectName(QString::fromUtf8("gridLayout")); + labelWidth = new QLabel(SpecifyDimensions); + labelWidth->setObjectName(QString::fromUtf8("labelWidth")); + + gridLayout->addWidget(labelWidth, 0, 0, 1, 1); + + spinBoxWidth = new QSpinBox(SpecifyDimensions); + spinBoxWidth->setObjectName(QString::fromUtf8("spinBoxWidth")); + + gridLayout->addWidget(spinBoxWidth, 0, 1, 1, 1); + + labelHeight = new QLabel(SpecifyDimensions); + labelHeight->setObjectName(QString::fromUtf8("labelHeight")); + + gridLayout->addWidget(labelHeight, 0, 2, 1, 1); + + spinBoxHeight = new QSpinBox(SpecifyDimensions); + spinBoxHeight->setObjectName(QString::fromUtf8("spinBoxHeight")); + + gridLayout->addWidget(spinBoxHeight, 0, 3, 1, 1); + + checkBox = new QCheckBox(SpecifyDimensions); + checkBox->setObjectName(QString::fromUtf8("checkBox")); + + gridLayout->addWidget(checkBox, 1, 0, 1, 2); + + buttonBox = new QDialogButtonBox(SpecifyDimensions); + buttonBox->setObjectName(QString::fromUtf8("buttonBox")); + buttonBox->setOrientation(Qt::Horizontal); + buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); + + gridLayout->addWidget(buttonBox, 2, 0, 1, 4); + + + retranslateUi(SpecifyDimensions); + QObject::connect(buttonBox, SIGNAL(accepted()), SpecifyDimensions, SLOT(accept())); + QObject::connect(buttonBox, SIGNAL(rejected()), SpecifyDimensions, SLOT(reject())); + + QMetaObject::connectSlotsByName(SpecifyDimensions); + } // setupUi + + void retranslateUi(QDialog *SpecifyDimensions) + { + SpecifyDimensions->setWindowTitle(QCoreApplication::translate("SpecifyDimensions", "Specify Main Window Dimensions", nullptr)); + labelWidth->setText(QCoreApplication::translate("SpecifyDimensions", "Width:", nullptr)); + labelHeight->setText(QCoreApplication::translate("SpecifyDimensions", "Height:", nullptr)); + checkBox->setText(QCoreApplication::translate("SpecifyDimensions", "Lock to this size", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class SpecifyDimensions: public Ui_SpecifyDimensions {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_QT_SPECIFYDIMENSIONS_H diff --git a/src/build64/src/qt/ui_autogen/moc_predefs.h b/src/build64/src/qt/ui_autogen/moc_predefs.h new file mode 100644 index 000000000..645c33d48 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/moc_predefs.h @@ -0,0 +1,481 @@ +#define __DBL_MIN_EXP__ (-1021) +#define __cpp_nontype_template_parameter_auto 201606L +#define __UINT_LEAST16_MAX__ 0xffff +#define __FLT16_HAS_QUIET_NAN__ 1 +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __cpp_aggregate_nsdmi 201304L +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 16 +#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16 +#define __INTMAX_C(c) c ## LL +#define __CHAR_BIT__ 8 +#define __MINGW32__ 1 +#define __UINT8_MAX__ 0xff +#define __SCHAR_WIDTH__ 8 +#define _WIN64 1 +#define __WINT_MAX__ 0xffff +#define __FLT32_MIN_EXP__ (-125) +#define __cpp_static_assert 201411L +#define __BFLT16_MIN_10_EXP__ (-37) +#define QT_GUI_LIB 1 +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __WCHAR_MAX__ 0xffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define __cpp_binary_literals 201304L +#define __FLT64_DECIMAL_DIG__ 17 +#define __cpp_noexcept_function_type 201510L +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __cpp_variadic_templates 200704L +#define __UINT_FAST64_MAX__ 0xffffffffffffffffULL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __cpp_variable_templates 201304L +#define __FLT32X_MAX_EXP__ 1024 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define QT_OPENGL_LIB 1 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __cpp_rvalue_reference 200610L +#define __cpp_nested_namespace_definitions 201411L +#define __DEC64_MAX_EXP__ 385 +#define __INT8_C(c) c +#define __LDBL_HAS_INFINITY__ 1 +#define __INT_LEAST8_WIDTH__ 8 +#define __cpp_variadic_using 201611L +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL +#define __INT_LEAST8_MAX__ 0x7f +#define __cpp_attributes 200809L +#define __cpp_capture_star_this 201603L +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __cpp_if_constexpr 201606L +#define __BFLT16_MAX_10_EXP__ 38 +#define __BFLT16_MAX_EXP__ 128 +#define __LDBL_IS_IEC_60559__ 1 +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define __UINTMAX_TYPE__ long long unsigned int +#define __cpp_nsdmi 200809L +#define __BFLT16_DECIMAL_DIG__ 4 +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define __UINT32_MAX__ 0xffffffffU +#define __GXX_EXPERIMENTAL_CXX0X__ 1 +#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __FLT32X_IS_IEC_60559__ 1 +#define _CRT_SECURE_NO_WARNINGS 1 +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ 0 +#define __INT64_C(c) c ## LL +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __ATOMIC_SEQ_CST 5 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL +#define __FLT32X_MANT_DIG__ 53 +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __cpp_aligned_new 201606L +#define CMAKE 1 +#define __FLT32_MAX_10_EXP__ 38 +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __DEC64_MIN_EXP__ (-382) +#define __WIN64 1 +#define __cpp_decltype_auto 201304L +#define __DBL_DIG__ 15 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __GXX_WEAK__ 1 +#define __SHRT_WIDTH__ 16 +#define __FLT32_IS_IEC_60559__ 1 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __DBL_IS_IEC_60559__ 1 +#define __DEC32_MAX__ 9.999999E96DF +#define __cpp_threadsafe_static_init 200806L +#define __cpp_enumerator_attributes 201411L +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT_WIDTH__ 32 +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __INT16_MAX__ 0x7fff +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __cpp_return_type_deduction 201304L +#define __FLT16_MIN_EXP__ (-13) +#define __FLT64_MANT_DIG__ 53 +#define _REENTRANT 1 +#define __FLT64X_MANT_DIG__ 64 +#define __BFLT16_DIG__ 2 +#define __GNUC__ 13 +#define __GXX_RTTI 1 +#define __MMX__ 1 +#define NTDDI_VERSION 0x06010000 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 16 +#define __BIGGEST_ALIGNMENT__ 16 +#define __STDC_UTF_16__ 1 +#define __SIZE_TYPE__ long long unsigned int +#define __FLT64_MAX_10_EXP__ 308 +#define __BFLT16_IS_IEC_60559__ 0 +#define __FLT16_MAX_10_EXP__ 4 +#define __cpp_delegating_constructors 200604L +#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __cpp_raw_strings 200710L +#define __INT_FAST32_MAX__ 0x7fffffff +#define __DBL_HAS_INFINITY__ 1 +#define __INT64_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_FLOAT__ 4 +#define __WINNT__ 1 +#define __HAVE_SPECULATION_SAFE_VALUE 1 +#define __cpp_fold_expressions 201603L +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 64 +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ short int +#define __STRICT_ANSI__ 1 +#define __MMX_WITH_SSE__ 1 +#define __LDBL_HAS_DENORM__ 1 +#define QT_WIDGETS_LIB 1 +#define __SEG_GS 1 +#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16 +#define __cplusplus 201703L +#define __cpp_ref_qualifiers 200710L +#define __DEC32_MIN__ 1E-95DF +#define __DEPRECATED 1 +#define __cpp_rvalue_references 200610L +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 16 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __FLT16_DECIMAL_DIG__ 5 +#define __SSE2_MATH__ 1 +#define __ATOMIC_HLE_RELEASE 131072 +#define __WIN32__ 1 +#define __PTRDIFF_MAX__ 0x7fffffffffffffffLL +#define __amd64 1 +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __GNUG__ 13 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 8 +#define __BFLT16_HAS_INFINITY__ 1 +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 2 +#define __FLT32X_DIG__ 15 +#define __LONG_LONG_WIDTH__ 64 +#define __cpp_initializer_lists 200806L +#define DEV_BRANCH 1 +#define __FLT32_MAX_EXP__ 128 +#define DISCORD 1 +#define __cpp_hex_float 201603L +#define __GXX_ABI_VERSION 1018 +#define __FLT_MIN_EXP__ (-125) +#define __x86_64 1 +#define __cpp_lambdas 200907L +#define __INT_FAST64_TYPE__ long long int +#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __cpp_template_auto 201606L +#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIZEOF_POINTER__ 8 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __LDBL_MAX_EXP__ 16384 +#define __DECIMAL_BID_FORMAT__ 1 +#define __GXX_TYPEINFO_EQUALITY_INLINE 0 +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT16_MIN_10_EXP__ (-4) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __cdecl __attribute__((__cdecl__)) +#define __FLT128_HAS_INFINITY__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __FLT_DIG__ 6 +#define __NO_INLINE__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "13.2.0" +#define __UINT64_C(c) c ## ULL +#define __cpp_unicode_characters 201411L +#define _WIN32 1 +#define __SEH__ 1 +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define SIZEOF_DPTR (sizeof(void*)) +#define __FLT32X_MIN_EXP__ (-1021) +#define __cpp_aggregate_bases 201603L +#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16 +#define __FLT128_HAS_DENORM__ 1 +#define __FLT32_DECIMAL_DIG__ 9 +#define __FLT128_DIG__ 33 +#define _INTEGRAL_MAX_BITS 64 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __INT_FAST32_TYPE__ int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __DEC128_MAX_EXP__ 6145 +#define __DBL_HAS_DENORM__ 1 +#define __cpp_rtti 199711L +#define __UINT64_MAX__ 0xffffffffffffffffULL +#define __FLT_IS_IEC_60559__ 1 +#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" +#define DEBUG 1 +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __cpp_digit_separators 201309L +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __UINT32_TYPE__ unsigned int +#define __BFLT16_HAS_QUIET_NAN__ 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## ULL +#define __FLT16_DIG__ 3 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __cpp_constexpr 201603L +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __USER_LABEL_PREFIX__ +#define __SIZEOF_PTRDIFF_T__ 8 +#define __FLT64X_HAS_INFINITY__ 1 +#define __SIZEOF_LONG__ 4 +#define __LDBL_DIG__ 18 +#define __FLT64_IS_IEC_60559__ 1 +#define __x86_64__ 1 +#define __FLT16_IS_IEC_60559__ 1 +#define __FLT16_MAX_EXP__ 16 +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __MSVCRT__ 1 +#define __INT_FAST16_MAX__ 0x7fff +#define __GCC_CONSTRUCTIVE_SIZE 64 +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffU +#define __UINT_LEAST64_TYPE__ long long unsigned int +#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" +#define __cpp_unicode_literals 200710L +#define __UINT_FAST16_TYPE__ short unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 32 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 64 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __DEC64_MANT_DIG__ 16 +#define QT_NETWORK_LIB 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 +#define __nocona__ 1 +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define __cpp_structured_bindings 201606L +#define __SIZEOF_INT__ 4 +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffffffffffffLL +#define __cpp_sized_deallocation 201309L +#define __cpp_guaranteed_copy_elision 201606L +#define __WIN64__ 1 +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __stdcall __attribute__((__stdcall__)) +#define __FLT32_MIN_10_EXP__ (-37) +#define __EXCEPTIONS 1 +#define __GXX_MERGED_TYPEINFO_NAMES 0 +#define __UINT16_C(c) c +#define __PTRDIFF_WIDTH__ 64 +#define __LDBL_MANT_DIG__ 64 +#define __cpp_range_based_for 201603L +#define __INT_FAST16_WIDTH__ 16 +#define _WINSOCK_DEPRECATED_NO_WARNINGS 1 +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __FLT16_HAS_INFINITY__ 1 +#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __cpp_nontype_template_args 201411L +#define __DEC32_MANT_DIG__ 7 +#define __INTPTR_TYPE__ long long int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ short unsigned int +#define __pic__ 1 +#define __UINTPTR_MAX__ 0xffffffffffffffffULL +#define __INT_FAST64_WIDTH__ 64 +#define __cpp_decltype 200707L +#define __INT_FAST64_MAX__ 0x7fffffffffffffffLL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F +#define __FLT32_HAS_INFINITY__ 1 +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long long unsigned int +#define __cpp_inline_variables 201606L +#define __BFLT16_MIN_EXP__ (-125) +#define __INT_MAX__ 0x7fffffff +#define __nocona 1 +#define __code_model_medium__ 1 +#define __INT64_TYPE__ long long int +#define __FLT_MAX_EXP__ 128 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __DBL_MANT_DIG__ 53 +#define __cpp_inheriting_constructors 201511L +#define QT_CORE_LIB 1 +#define __SIZEOF_FLOAT128__ 16 +#define __BFLT16_MANT_DIG__ 8 +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ short unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __amd64__ 1 +#define __WINT_WIDTH__ 16 +#define __INT_LEAST64_WIDTH__ 64 +#define __FLT32X_MAX_10_EXP__ 308 +#define __cpp_namespace_attributes 201411L +#define __WIN32 1 +#define __SIZEOF_INT128__ 16 +#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 +#define __FLT64X_IS_IEC_60559__ 1 +#define __WCHAR_UNSIGNED__ 1 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) +#define __INT_LEAST32_TYPE__ int +#define __thiscall __attribute__((__thiscall__)) +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __SIZEOF_WCHAR_T__ 2 +#define __GNUC_PATCHLEVEL__ 0 +#define __WINNT 1 +#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INTMAX_MAX__ 0x7fffffffffffffffLL +#define __SSE3__ 1 +#define __INT_FAST8_TYPE__ signed char +#define __fastcall __attribute__((__fastcall__)) +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __STDCPP_THREADS__ 1 +#define __BFLT16_HAS_DENORM__ 1 +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __FLT16_HAS_DENORM__ 1 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __MINGW64__ 1 +#define __GCC_DESTRUCTIVE_SIZE 64 +#define __INTMAX_WIDTH__ 64 +#define __cpp_runtime_arrays 198712L +#define __FLT32_DIG__ 6 +#define __UINT64_TYPE__ long long unsigned int +#define __UINT32_C(c) c ## U +#define __cpp_alias_templates 200704L +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define USE_DYNAREC 1 +#define __FLT128_IS_IEC_60559__ 1 +#define USE_NEW_DYNAREC 1 +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 32 +#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) +#define __PIC__ 1 +#define __INT32_MAX__ 0x7fffffff +#define __UINT_FAST32_TYPE__ unsigned int +#define __FLT16_MANT_DIG__ 11 +#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define USE_RTMIDI 1 +#define __SSE2__ 1 +#define __cpp_deduction_guides 201703L +#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16 +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __cpp_exceptions 199711L +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long long int +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 2 +#define __UINTMAX_MAX__ 0xffffffffffffffffULL +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __cpp_template_template_args 201611L +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define _CRT_NONSTDC_NO_WARNINGS 1 +#define __INT16_C(c) c +#define __STDC__ 1 +#define __PTRDIFF_TYPE__ long long int +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 1 +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ long long unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __cpp_generic_lambdas 201304L +#define __SSE_MATH__ 1 +#define __SIZEOF_LONG_LONG__ 8 +#define __cpp_user_defined_literals 200809L +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffff +#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __SIZE_MAX__ 0xffffffffffffffffULL +#define __UINT_FAST8_TYPE__ unsigned char +#define __cpp_init_captures 201304L +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 +#define __declspec(x) __attribute__((x)) diff --git a/src/build64/src/qt/ui_autogen/mocs_compilation.cpp b/src/build64/src/qt/ui_autogen/mocs_compilation.cpp new file mode 100644 index 000000000..1d54728c8 --- /dev/null +++ b/src/build64/src/qt/ui_autogen/mocs_compilation.cpp @@ -0,0 +1,37 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_qt_d3d9renderer.cpp" +#include "EWIEGA46WW/moc_qt_deviceconfig.cpp" +#include "EWIEGA46WW/moc_qt_filefield.cpp" +#include "EWIEGA46WW/moc_qt_harddiskdialog.cpp" +#include "EWIEGA46WW/moc_qt_hardwarerenderer.cpp" +#include "EWIEGA46WW/moc_qt_joystickconfiguration.cpp" +#include "EWIEGA46WW/moc_qt_machinestatus.cpp" +#include "EWIEGA46WW/moc_qt_mainwindow.cpp" +#include "EWIEGA46WW/moc_qt_mcadevicelist.cpp" +#include "EWIEGA46WW/moc_qt_mediahistorymanager.cpp" +#include "EWIEGA46WW/moc_qt_mediamenu.cpp" +#include "EWIEGA46WW/moc_qt_newfloppydialog.cpp" +#include "EWIEGA46WW/moc_qt_opengloptions.cpp" +#include "EWIEGA46WW/moc_qt_opengloptionsdialog.cpp" +#include "EWIEGA46WW/moc_qt_openglrenderer.cpp" +#include "EWIEGA46WW/moc_qt_progsettings.cpp" +#include "EWIEGA46WW/moc_qt_rendererstack.cpp" +#include "EWIEGA46WW/moc_qt_settings.cpp" +#include "EWIEGA46WW/moc_qt_settingsdisplay.cpp" +#include "EWIEGA46WW/moc_qt_settingsfloppycdrom.cpp" +#include "EWIEGA46WW/moc_qt_settingsharddisks.cpp" +#include "EWIEGA46WW/moc_qt_settingsinput.cpp" +#include "EWIEGA46WW/moc_qt_settingsmachine.cpp" +#include "EWIEGA46WW/moc_qt_settingsnetwork.cpp" +#include "EWIEGA46WW/moc_qt_settingsotherperipherals.cpp" +#include "EWIEGA46WW/moc_qt_settingsotherremovable.cpp" +#include "EWIEGA46WW/moc_qt_settingsports.cpp" +#include "EWIEGA46WW/moc_qt_settingssound.cpp" +#include "EWIEGA46WW/moc_qt_settingsstoragecontrollers.cpp" +#include "EWIEGA46WW/moc_qt_softwarerenderer.cpp" +#include "EWIEGA46WW/moc_qt_soundgain.cpp" +#include "EWIEGA46WW/moc_qt_specifydimensions.cpp" +#include "EWIEGA46WW/moc_qt_unixmanagerfilter.cpp" +#include "EWIEGA46WW/moc_qt_vulkanwindowrenderer.cpp" +#include "EWIEGA46WW/moc_qt_winmanagerfilter.cpp" +#include "EWIEGA46WW/moc_qt_winrawinputfilter.cpp" diff --git a/src/build64/src/qt/ui_autogen/timestamp b/src/build64/src/qt/ui_autogen/timestamp new file mode 100644 index 000000000..e69de29bb diff --git a/src/build64/src/scsi/cmake_install.cmake b/src/build64/src/scsi/cmake_install.cmake new file mode 100644 index 000000000..4ebde866d --- /dev/null +++ b/src/build64/src/scsi/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/scsi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/sio/cmake_install.cmake b/src/build64/src/sio/cmake_install.cmake new file mode 100644 index 000000000..295b2663d --- /dev/null +++ b/src/build64/src/sio/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/sound/cmake_install.cmake b/src/build64/src/sound/cmake_install.cmake new file mode 100644 index 000000000..9a4cdf30f --- /dev/null +++ b/src/build64/src/sound/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/munt/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/ymfm/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("K:/emu_dev/86Box_clean_ex_k/src/build64/src/sound/resid-fp/cmake_install.cmake") +endif() + diff --git a/src/build64/src/sound/munt/cmake_install.cmake b/src/build64/src/sound/munt/cmake_install.cmake new file mode 100644 index 000000000..b37389c58 --- /dev/null +++ b/src/build64/src/sound/munt/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound/munt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/sound/resid-fp/cmake_install.cmake b/src/build64/src/sound/resid-fp/cmake_install.cmake new file mode 100644 index 000000000..17134af27 --- /dev/null +++ b/src/build64/src/sound/resid-fp/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound/resid-fp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/sound/ymfm/cmake_install.cmake b/src/build64/src/sound/ymfm/cmake_install.cmake new file mode 100644 index 000000000..7021b6477 --- /dev/null +++ b/src/build64/src/sound/ymfm/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/sound/ymfm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/build64/src/video/cmake_install.cmake b/src/build64/src/video/cmake_install.cmake new file mode 100644 index 000000000..096ee97cf --- /dev/null +++ b/src/build64/src/video/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: K:/emu_dev/86Box_clean_ex_k/src/video + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "K:/emu_dev/86Box_clean_ex_k/build/artifacts") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/msys64/mingw64/bin/objdump.exe") +endif() + diff --git a/src/codegen/codegen_ops_x86-64 - Cópia.h b/src/codegen/codegen_ops_x86-64 - Cópia.h new file mode 100644 index 000000000..63c0a5c35 --- /dev/null +++ b/src/codegen/codegen_ops_x86-64 - Cópia.h @@ -0,0 +1,5963 @@ +/*Register allocation : + R8-R15 - emulated registers +*/ +#include + +#define HOST_REG_XMM_START 0 +#define HOST_REG_XMM_END 7 + +#define IS_32_ADDR(x) !(((uintptr_t) x) & 0xffffffff00000000) + +static __inline int +find_host_xmm_reg(void) +{ + int c; + for (c = HOST_REG_XMM_START; c < HOST_REG_XMM_END; c++) { + if (host_reg_xmm_mapping[c] == -1) + break; + } + + if (c == HOST_REG_XMM_END) + fatal("Out of host XMM regs!\n"); + return c; +} +static __inline void +call(codeblock_t *block, uintptr_t func) +{ + intptr_t diff = (intptr_t) (func - (uintptr_t) &block->data[block_pos + 5]); + + codegen_reg_loaded[0] = codegen_reg_loaded[1] = codegen_reg_loaded[2] = codegen_reg_loaded[3] = 0; + codegen_reg_loaded[4] = codegen_reg_loaded[5] = codegen_reg_loaded[6] = codegen_reg_loaded[7] = 0; + + if (diff >= -0x80000000LL && diff < 0x7fffffffLL) { + addbyte(0xE8); /*CALL*/ + addlong((uint32_t) diff); + } else { + addbyte(0x48); /*MOV RAX, func*/ + addbyte(0xb8); + addquad(func); + addbyte(0xff); /*CALL RAX*/ + addbyte(0xd0); + } +} + +static __inline void +call_long(uintptr_t func) +{ + codegen_reg_loaded[0] = codegen_reg_loaded[1] = codegen_reg_loaded[2] = codegen_reg_loaded[3] = 0; + codegen_reg_loaded[4] = codegen_reg_loaded[5] = codegen_reg_loaded[6] = codegen_reg_loaded[7] = 0; + + addbyte(0x48); /*MOV RAX, func*/ + addbyte(0xb8); + addquad(func); + addbyte(0xff); /*CALL RAX*/ + addbyte(0xd0); +} + +static __inline void +load_param_1_32(codeblock_t *block, uint32_t param) +{ +#if _WIN64 + addbyte(0xb9); /*MOVL $fetchdat,%ecx*/ +#else + addbyte(0xbf); /*MOVL $fetchdat,%edi*/ +#endif + addlong(param); +} +static __inline void +load_param_1_reg_32(int reg) +{ +#if _WIN64 + if (reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOV ECX, EAX*/ + addbyte(0xc0 | REG_ECX | (reg << 3)); +#else + if (reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOV EDI, EAX*/ + addbyte(0xc0 | REG_EDI | (reg << 3)); +#endif +} +#if 0 +static __inline void load_param_1_64(codeblock_t *block, uint64_t param) +{ + addbyte(0x48); +# if _WIN64 + addbyte(0xb9); /*MOVL $fetchdat,%ecx*/ +# else + addbyte(0xbf); /*MOVL $fetchdat,%edi*/ +# endif + addquad(param); +} +#endif + +static __inline void +load_param_2_32(codeblock_t *block, uint32_t param) +{ +#if _WIN64 + addbyte(0xba); /*MOVL $fetchdat,%edx*/ +#else + addbyte(0xbe); /*MOVL $fetchdat,%esi*/ +#endif + addlong(param); +} +static __inline void +load_param_2_reg_32(int reg) +{ +#if _WIN64 + if (reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOV EDX, EAX*/ + addbyte(0xc0 | REG_EDX | (reg << 3)); +#else + if (reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOV ESI, EAX*/ + addbyte(0xc0 | REG_ESI | (reg << 3)); +#endif +} +static __inline void +load_param_2_64(codeblock_t *block, uint64_t param) +{ + addbyte(0x48); +#if _WIN64 + addbyte(0xba); /*MOVL $fetchdat,%edx*/ +#else + addbyte(0xbe); /*MOVL $fetchdat,%esi*/ +#endif + addquad(param); +} +static __inline void +load_param_2_reg_64(int reg) +{ + if (reg & 8) { +#if _WIN64 + addbyte(0x4c); /*MOVL EDX,reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EDX | ((reg & 7) << 3)); +#else + addbyte(0x4c); /*MOVL ESI,reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_ESI | ((reg & 7) << 3)); +#endif + } else { +#if _WIN64 + addbyte(0x48); /*MOVL EDX,reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EDX | ((reg & 7) << 3)); +#else + addbyte(0x48); /*MOVL ESI,reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_ESI | ((reg & 7) << 3)); +#endif + } +} + +static __inline void +load_param_3_reg_32(int reg) +{ + if (reg & 8) { +#if _WIN64 + addbyte(0x45); /*MOVL R8,reg*/ + addbyte(0x89); + addbyte(0xc0 | ((reg & 7) << 3)); +#else + addbyte(0x44); /*MOV EDX, reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EDX | (reg << 3)); +#endif + } else { +#if _WIN64 + addbyte(0x41); /*MOVL R8,reg*/ + addbyte(0x89); + addbyte(0xc0 | ((reg & 7) << 3)); +#else + addbyte(0x90); + addbyte(0x89); /*MOV EDX, reg*/ + addbyte(0xc0 | REG_EDX | (reg << 3)); +#endif + } +} +static __inline void +load_param_3_reg_64(int reg) +{ + if (reg & 8) { +#if _WIN64 + addbyte(0x4d); /*MOVL R8,reg*/ + addbyte(0x89); + addbyte(0xc0 | ((reg & 7) << 3)); +#else + addbyte(0x4c); /*MOVL EDX,reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EDX | ((reg & 7) << 3)); +#endif + } else { +#if _WIN64 + addbyte(0x49); /*MOVL R8,reg*/ + addbyte(0x89); + addbyte(0xc0 | ((reg & 7) << 3)); +#else + addbyte(0x48); /*MOVL EDX,reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EDX | ((reg & 7) << 3)); +#endif + } +} + +static __inline void +CALL_FUNC(uintptr_t func) +{ + codegen_reg_loaded[0] = codegen_reg_loaded[1] = codegen_reg_loaded[2] = codegen_reg_loaded[3] = 0; + codegen_reg_loaded[4] = codegen_reg_loaded[5] = codegen_reg_loaded[6] = codegen_reg_loaded[7] = 0; + + addbyte(0x48); /*MOV RAX, func*/ + addbyte(0xb8); + addquad(func); + addbyte(0xff); /*CALL RAX*/ + addbyte(0xd0); +} + +static __inline void +RELEASE_REG(int host_reg) +{ +} + +static __inline int +LOAD_REG_B(int reg) +{ + int host_reg = reg & 3; + + if (!codegen_reg_loaded[reg & 3]) { + addbyte(0x44); /*MOVZX W[reg],host_reg*/ + addbyte(0x8b); + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[host_reg & 3].b)); + } + + codegen_reg_loaded[reg & 3] = 1; + + if (reg & 4) + return host_reg | 0x18; + + return host_reg | 8; +} +static __inline int +LOAD_REG_W(int reg) +{ + int host_reg = reg; + + if (!codegen_reg_loaded[reg & 7]) { + addbyte(0x44); /*MOVZX W[reg],host_reg*/ + addbyte(0x8b); + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[reg & 7].w)); + } + + codegen_reg_loaded[reg & 7] = 1; + + return host_reg | 8; +} +static __inline int +LOAD_REG_L(int reg) +{ + int host_reg = reg; + + if (!codegen_reg_loaded[reg & 7]) { + addbyte(0x44); /*MOVZX W[reg],host_reg*/ + addbyte(0x8b); + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[reg & 7].l)); + } + + codegen_reg_loaded[reg & 7] = 1; + + return host_reg | 8; +} + +static __inline int +LOAD_REG_IMM(uint32_t imm) +{ + int host_reg = REG_EBX; + + addbyte(0xb8 | REG_EBX); /*MOVL EBX, imm*/ + addlong(imm); + + return host_reg; +} + +static __inline void +STORE_REG_TARGET_B_RELEASE(int host_reg, int guest_reg) +{ + int dest_reg = LOAD_REG_L(guest_reg & 3) & 7; + + if (guest_reg & 4) { + if (host_reg & 8) { + addbyte(0x66); /*MOV AX, host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 3) << 3)); + } else if (host_reg & 3) { + addbyte(0x66); /*MOV AX, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 3) << 3)); + } + if (host_reg & 0x10) { + addbyte(0x66); /*AND AX, 0xff00*/ + addbyte(0x25); + addword(0xff00); + } else { + addbyte(0x66); /*SHL AX, 8*/ + addbyte(0xc1); + addbyte(0xe0); + addbyte(0x08); + } + addbyte(0x66); /*AND dest_reg, 0x00ff*/ + addbyte(0x41); + addbyte(0x81); + addbyte(0xe0 | dest_reg); + addword(0x00ff); + addbyte(0x66); /*OR dest_reg, AX*/ + addbyte(0x41); + addbyte(0x09); + addbyte(0xc0 | dest_reg); + addbyte(0x66); /*MOVW regs[guest_reg].w, dest_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | (dest_reg << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 3].w)); + } else { + if (host_reg & 8) { + if (host_reg & 0x10) { + addbyte(0x66); /*MOV AX, host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 3) << 3)); + addbyte(0x88); /*MOV AL, AH*/ + addbyte(0xe0); + addbyte(0x41); /*MOV dest_reg, AL*/ + addbyte(0x88); + addbyte(0xc0 | (dest_reg & 7)); + addbyte(0x88); /*MOVB regs[reg].b, AH*/ + addbyte(0x65); + addbyte(cpu_state_offset(regs[guest_reg & 3].b)); + } else { + addbyte(0x45); /*MOVB dest_reg, host_reg*/ + addbyte(0x88); + addbyte(0xc0 | (dest_reg & 7) | ((host_reg & 7) << 3)); + addbyte(0x44); /*MOVB regs[guest_reg].b, host_reg*/ + addbyte(0x88); + addbyte(0x45 | ((host_reg & 3) << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 3].b)); + } + } else { + if (host_reg & 0x10) { + addbyte(0xc1); /*SHR host_reg, 8*/ + addbyte(0xe8 | (host_reg & 7)); + addbyte(8); + } + addbyte(0x41); /*MOVB dest_reg, host_reg*/ + addbyte(0x88); + addbyte(0xc0 | (dest_reg & 7) | ((host_reg & 7) << 3)); + addbyte(0x88); /*MOVB regs[guest_reg].b, host_reg*/ + addbyte(0x45 | ((host_reg & 3) << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 3].b)); + } + } +} +static __inline void +STORE_REG_TARGET_W_RELEASE(int host_reg, int guest_reg) +{ + int dest_reg = LOAD_REG_L(guest_reg & 7) & 7; + + if (host_reg & 8) { + addbyte(0x66); /*MOVW guest_reg, host_reg*/ + addbyte(0x45); + addbyte(0x89); + addbyte(0xc0 | dest_reg | ((host_reg & 7) << 3)); + addbyte(0x66); /*MOVW regs[guest_reg].w, host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 7].w)); + } else { + addbyte(0x66); /*MOVW guest_reg, host_reg*/ + addbyte(0x41); + addbyte(0x89); + addbyte(0xc0 | dest_reg | (host_reg << 3)); + addbyte(0x66); /*MOVW regs[guest_reg].w, host_reg*/ + addbyte(0x89); + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 7].w)); + } +} +static __inline void +STORE_REG_TARGET_L_RELEASE(int host_reg, int guest_reg) +{ + if (host_reg & 8) { + addbyte(0x45); /*MOVL guest_reg, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | guest_reg | (host_reg << 3)); + addbyte(0x44); /*MOVL regs[guest_reg].l, host_reg*/ + addbyte(0x89); + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 7].l)); + } else { + addbyte(0x41); /*MOVL guest_reg, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | guest_reg | (host_reg << 3)); + addbyte(0x89); /*MOVL regs[guest_reg].l, host_reg*/ + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[guest_reg & 7].l)); + } +} + +static __inline void +STORE_REG_B_RELEASE(int host_reg) +{ + if (host_reg & 0x10) { + addbyte(0x66); /*MOVW [reg],host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte(cpu_state_offset(regs[host_reg & 7].w)); + } else { + addbyte(0x44); /*MOVB [reg],host_reg*/ + addbyte(0x88); + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte(cpu_state_offset(regs[host_reg & 7].b)); + } +} +static __inline void +STORE_REG_W_RELEASE(int host_reg) +{ + addbyte(0x66); /*MOVW [reg],host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte(cpu_state_offset(regs[host_reg & 7].w)); +} +static __inline void +STORE_REG_L_RELEASE(int host_reg) +{ + addbyte(0x44); /*MOVL [reg],host_reg*/ + addbyte(0x89); + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte(cpu_state_offset(regs[host_reg & 7].l)); +} + +static __inline void +STORE_IMM_REG_B(int reg, uint8_t val) +{ + if (reg & 4) { + int host_reg = LOAD_REG_W(reg & 3) & 7; + addbyte(0x66); /*AND host_reg, 0x00ff*/ + addbyte(0x41); + addbyte(0x81); + addbyte(0xe0 | host_reg); + addword(0x00ff); + addbyte(0x66); /*OR host_reg, val << 8*/ + addbyte(0x41); + addbyte(0x81); + addbyte(0xc8 | host_reg); + addword(val << 8); + addbyte(0x66); /*MOVW host_reg, regs[host_reg].w*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | (host_reg << 3)); + addbyte(cpu_state_offset(regs[reg & 3].w)); + } else { + addbyte(0x41); /*MOVB reg, imm*/ + addbyte(0xb0 | reg); + addbyte(val); + addbyte(0x44); /*MOVB reg, regs[reg].b*/ + addbyte(0x88); + addbyte(0x45 | (reg << 3)); + addbyte(cpu_state_offset(regs[reg & 7].b)); + } +} +static __inline void +STORE_IMM_REG_W(int reg, uint16_t val) +{ + addbyte(0x66); /*MOVW reg, imm*/ + addbyte(0x41); + addbyte(0xb8 | reg); + addword(val); + addbyte(0x66); /*MOVW reg, regs[reg].w*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | (reg << 3)); + addbyte(cpu_state_offset(regs[reg & 7].w)); +} +static __inline void +STORE_IMM_REG_L(int reg, uint32_t val) +{ + addbyte(0x41); /*MOVL reg, imm*/ + addbyte(0xb8 | reg); + addlong(val); + addbyte(0x44); /*MOVL reg, regs[reg].l*/ + addbyte(0x89); + addbyte(0x45 | (reg << 3)); + addbyte(cpu_state_offset(regs[reg & 7].l)); +} + +static __inline void +STORE_IMM_ADDR_L(uintptr_t addr, uint32_t val) +{ + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + addbyte(0xC7); /*MOVL [addr],val*/ + addbyte(0x45); + addbyte(addr - (uintptr_t) &cpu_state - 128); + addlong(val); + } else if (addr < 0x100000000) { + addbyte(0xC7); /*MOVL [addr],val*/ + addbyte(0x04); + addbyte(0x25); + addlong(addr); + addlong(val); + } else { + addbyte(0x48); /*MOV ESI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad(addr); + addbyte(0xc7); /*MOVL [ESI], val*/ + addbyte(0x00 | REG_ESI); + addlong(val); + } +} + +static x86seg * +FETCH_EA_16(x86seg *op_ea_seg, uint32_t fetchdat, int op_ssegs, uint32_t *op_pc) +{ + int mod = (fetchdat >> 6) & 3; + int rm = fetchdat & 7; + + if (!mod && rm == 6) { + addbyte(0xb8); /*MOVL EAX, imm*/ + addlong((fetchdat >> 8) & 0xffff); + (*op_pc) += 2; + } else { + int base_reg = 0; + int index_reg = 0; + + switch (rm) { + case 0: + case 1: + case 7: + base_reg = LOAD_REG_W(REG_BX); + break; + case 2: + case 3: + case 6: + base_reg = LOAD_REG_W(REG_BP); + break; + case 4: + base_reg = LOAD_REG_W(REG_SI); + break; + case 5: + base_reg = LOAD_REG_W(REG_DI); + break; + } + if (!(rm & 4)) { + if (rm & 1) + index_reg = LOAD_REG_W(REG_DI); + else + index_reg = LOAD_REG_W(REG_SI); + } + base_reg &= 7; + index_reg &= 7; + + switch (mod) { + case 0: + if (rm & 4) { + addbyte(0x41); /*MOVZX EAX, base_reg*/ + addbyte(0x0f); + addbyte(0xb7); + addbyte(0xc0 | base_reg); + } else { + addbyte(0x67); /*LEA EAX, base_reg+index_reg*/ + addbyte(0x43); + addbyte(0x8d); + if (base_reg == 5) { + addbyte(0x44); + addbyte(base_reg | (index_reg << 3)); + addbyte(0); + } else { + addbyte(0x04); + addbyte(base_reg | (index_reg << 3)); + } + } + break; + case 1: + if (rm & 4) { + addbyte(0x67); /*LEA EAX, base_reg+imm8*/ + addbyte(0x41); + addbyte(0x8d); + addbyte(0x40 | base_reg); + addbyte((fetchdat >> 8) & 0xff); + } else { + addbyte(0x67); /*LEA EAX, base_reg+index_reg+imm8*/ + addbyte(0x43); + addbyte(0x8d); + addbyte(0x44); + addbyte(base_reg | (index_reg << 3)); + addbyte((fetchdat >> 8) & 0xff); + } + (*op_pc)++; + break; + case 2: + if (rm & 4) { + addbyte(0x67); /*LEA EAX, base_reg+imm8*/ + addbyte(0x41); + addbyte(0x8d); + addbyte(0x80 | base_reg); + addlong((fetchdat >> 8) & 0xffff); + } else { + addbyte(0x67); /*LEA EAX, base_reg+index_reg+imm16*/ + addbyte(0x43); + addbyte(0x8d); + addbyte(0x84); + addbyte(base_reg | (index_reg << 3)); + addlong((fetchdat >> 8) & 0xffff); + } + (*op_pc) += 2; + break; + } + if (mod || !(rm & 4)) { + addbyte(0x25); /*ANDL $0xffff, %eax*/ + addlong(0xffff); + } + + if (mod1seg[rm] == &ss && !op_ssegs) + op_ea_seg = &cpu_state.seg_ss; + } + return op_ea_seg; +} +static x86seg * +FETCH_EA_32(x86seg *op_ea_seg, uint32_t fetchdat, int op_ssegs, uint32_t *op_pc, int stack_offset) +{ + int mod = (fetchdat >> 6) & 3; + int rm = fetchdat & 7; + uint32_t new_eaaddr; + + if (rm == 4) { + uint8_t sib = fetchdat >> 8; + int base_reg = -1; + int index_reg = -1; + + (*op_pc)++; + + if (mod || (sib & 7) != 5) + base_reg = LOAD_REG_L(sib & 7) & 7; + + if (((sib >> 3) & 7) != 4) + index_reg = LOAD_REG_L((sib >> 3) & 7) & 7; + + if (index_reg == -1) { + switch (mod) { + case 0: + if ((sib & 7) == 5) { + new_eaaddr = fastreadl(cs + (*op_pc) + 1); + addbyte(0xb8); /*MOV EAX, imm32*/ + addlong(new_eaaddr); + (*op_pc) += 4; + } else { + addbyte(0x44); /*MOV EAX, base_reg*/ + addbyte(0x89); + addbyte(0xc0 | (base_reg << 3)); + } + break; + case 1: + addbyte(0x67); /*LEA EAX, imm8+base_reg*/ + addbyte(0x41); + addbyte(0x8d); + if (base_reg == 4) { + addbyte(0x44); + addbyte(0x24); + } else { + addbyte(0x40 | base_reg); + } + addbyte((fetchdat >> 16) & 0xff); + (*op_pc)++; + break; + case 2: + new_eaaddr = fastreadl(cs + (*op_pc) + 1); + addbyte(0x67); /*LEA EAX, imm32+base_reg*/ + addbyte(0x41); + addbyte(0x8d); + if (base_reg == 4) { + addbyte(0x84); + addbyte(0x24); + } else { + addbyte(0x80 | base_reg); + } + addlong(new_eaaddr); + (*op_pc) += 4; + break; + } + } else { + switch (mod) { + case 0: + if ((sib & 7) == 5) { + new_eaaddr = fastreadl(cs + (*op_pc) + 1); + if (sib >> 6) { + addbyte(0x67); /*LEA EAX, imm32+index_reg*scale*/ + addbyte(0x42); + addbyte(0x8d); + addbyte(0x04); + addbyte(0x05 | (sib & 0xc0) | (index_reg << 3)); + addlong(new_eaaddr); + } else { + addbyte(0x67); /*LEA EAX, imm32+index_reg*/ + addbyte(0x41); + addbyte(0x8d); + addbyte(0x80 | index_reg); + addlong(new_eaaddr); + } + (*op_pc) += 4; + } else { + addbyte(0x67); /*LEA EAX, base_reg+index_reg*scale*/ + addbyte(0x43); + addbyte(0x8d); + if (base_reg == 5) { + addbyte(0x44); + addbyte(base_reg | (index_reg << 3) | (sib & 0xc0)); + addbyte(0); + } else { + addbyte(0x04); + addbyte(base_reg | (index_reg << 3) | (sib & 0xc0)); + } + } + break; + case 1: + addbyte(0x67); /*LEA EAX, imm8+base_reg+index_reg*scale*/ + addbyte(0x43); + addbyte(0x8d); + addbyte(0x44); + addbyte(base_reg | (index_reg << 3) | (sib & 0xc0)); + addbyte((fetchdat >> 16) & 0xff); + (*op_pc)++; + break; + case 2: + new_eaaddr = fastreadl(cs + (*op_pc) + 1); + addbyte(0x67); /*LEA EAX, imm32+base_reg+index_reg*scale*/ + addbyte(0x43); + addbyte(0x8d); + addbyte(0x84); + addbyte(base_reg | (index_reg << 3) | (sib & 0xc0)); + addlong(new_eaaddr); + (*op_pc) += 4; + break; + } + } + if (stack_offset && (sib & 7) == 4 && (mod || (sib & 7) != 5)) /*ESP*/ + { + addbyte(0x05); + addlong(stack_offset); + } + if (((sib & 7) == 4 || (mod && (sib & 7) == 5)) && !op_ssegs) + op_ea_seg = &cpu_state.seg_ss; + } else { + int base_reg; + + if (!mod && rm == 5) { + new_eaaddr = fastreadl(cs + (*op_pc) + 1); + addbyte(0xb8); /*MOVL EAX, new_eaaddr*/ + addlong(new_eaaddr); + (*op_pc) += 4; + return op_ea_seg; + } + base_reg = LOAD_REG_L(rm) & 7; + if (mod) { + if (rm == 5 && !op_ssegs) + op_ea_seg = &cpu_state.seg_ss; + if (mod == 1) { + addbyte(0x67); /*LEA EAX, base_reg+imm8*/ + addbyte(0x41); + addbyte(0x8d); + addbyte(0x40 | base_reg); + addbyte((fetchdat >> 8) & 0xff); + (*op_pc)++; + } else { + new_eaaddr = fastreadl(cs + (*op_pc) + 1); + addbyte(0x67); /*LEA EAX, base_reg+imm32*/ + addbyte(0x41); + addbyte(0x8d); + addbyte(0x80 | base_reg); + addlong(new_eaaddr); + (*op_pc) += 4; + } + } else { + addbyte(0x44); /*MOV EAX, base_reg*/ + addbyte(0x89); + addbyte(0xc0 | (base_reg << 3)); + } + } + return op_ea_seg; +} + +static __inline x86seg * +FETCH_EA(x86seg *op_ea_seg, uint32_t fetchdat, int op_ssegs, uint32_t *op_pc, uint32_t op_32) +{ + if (op_32 & 0x200) + return FETCH_EA_32(op_ea_seg, fetchdat, op_ssegs, op_pc, 0); + return FETCH_EA_16(op_ea_seg, fetchdat, op_ssegs, op_pc); +} + +static __inline void +CHECK_SEG_READ(x86seg *seg) +{ + /*Segments always valid in real/V86 mode*/ + if (!(cr0 & 1) || (cpu_state.eflags & VM_FLAG)) + return; + /*CS and SS must always be valid*/ + if (seg == &cpu_state.seg_cs || seg == &cpu_state.seg_ss) + return; + if (seg->checked) + return; + if (seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) + return; + + if (IS_32_ADDR(&seg->base)) { + addbyte(0x83); /*CMP seg->base, -1*/ + addbyte(0x3c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + addbyte(-1); + } else { + addbyte(0x48); /*MOV RSI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x83); /*CMP RSI, -1*/ + addbyte(0xe8 | REG_ESI); + addbyte(0xff); + } + addbyte(0x0f); /*JE GPF_BLOCK_OFFSET*/ + addbyte(0x84); + addlong(BLOCK_GPF_OFFSET - (block_pos + 4)); + + seg->checked = 1; +} +static __inline void +CHECK_SEG_WRITE(x86seg *seg) +{ + /*Segments always valid in real/V86 mode*/ + if (!(cr0 & 1) || (cpu_state.eflags & VM_FLAG)) + return; + /*CS and SS must always be valid*/ + if (seg == &cpu_state.seg_cs || seg == &cpu_state.seg_ss) + return; + if (seg->checked) + return; + if (seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) + return; + + if (IS_32_ADDR(&seg->base)) { + addbyte(0x83); /*CMP seg->base, -1*/ + addbyte(0x3c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + addbyte(-1); + } else { + addbyte(0x48); /*MOV RSI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x83); /*CMP RSI, -1*/ + addbyte(0xe8 | REG_ESI); + addbyte(0xff); + } + addbyte(0x0f); /*JE GPF_BLOCK_OFFSET*/ + addbyte(0x84); + addlong(BLOCK_GPF_OFFSET - (block_pos + 4)); + + seg->checked = 1; +} +static __inline void +CHECK_SEG_LIMITS(x86seg *seg, int end_offset) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) + return; + + if (IS_32_ADDR(&seg->base)) { + addbyte(0xb8 | REG_ESI); /*MOV ESI, &addr*/ + addlong((uint32_t) (uintptr_t) seg); + } else { + addbyte(0x48); /*MOV RSI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) seg); + } + addbyte(0x3b); /*CMP EAX, seg->limit_low*/ + addbyte(0x46); + addbyte((uintptr_t) &seg->limit_low - (uintptr_t) seg); + addbyte(0x0f); /*JB BLOCK_GPF_OFFSET*/ + addbyte(0x82); + addlong(BLOCK_GPF_OFFSET - (block_pos + 4)); + if (end_offset) { + addbyte(0x83); /*ADD EAX, end_offset*/ + addbyte(0xc0); + addbyte(end_offset); + addbyte(0x3b); /*CMP EAX, seg->limit_high*/ + addbyte(0x46); + addbyte((uintptr_t) &seg->limit_high - (uintptr_t) seg); + addbyte(0x0f); /*JNBE BLOCK_GPF_OFFSET*/ + addbyte(0x87); + addlong(BLOCK_GPF_OFFSET - (block_pos + 4)); + addbyte(0x83); /*SUB EAX, end_offset*/ + addbyte(0xe8); + addbyte(end_offset); + } +} + +static __inline void +MEM_LOAD_ADDR_EA_B(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(3 + 2); + addbyte(0x8b); /*MOV AL,[RDI+RSI]*/ + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12 + 4 + 6); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmembl); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} +static __inline void +MEM_LOAD_ADDR_EA_W(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 1*/ + addbyte(0xc7); + addlong(1); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + 4 + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(4 + 2); + addbyte(0x66); /*MOV AX,[RDI+RSI]*/ + addbyte(0x8b); + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12 + 4 + 6); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmemwl); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} +static __inline void +MEM_LOAD_ADDR_EA_W_OFFSET(x86seg *seg, int offset) +{ + addbyte(0x83); /*ADD EAX, offset*/ + addbyte(0xc0); + addbyte(offset); + MEM_LOAD_ADDR_EA_W(seg); +} +static __inline void +MEM_LOAD_ADDR_EA_L(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 3*/ + addbyte(0xc7); + addlong(3); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + 3 + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(3 + 2); + addbyte(0x8b); /*MOV EAX,[RDI+RSI]*/ + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12 + 4 + 6); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmemll); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} +static __inline void +MEM_LOAD_ADDR_EA_Q(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 7*/ + addbyte(0xc7); + addlong(7); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + 4 + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(4 + 2); + addbyte(0x48); /*MOV RAX,[RDI+RSI]*/ + addbyte(0x8b); + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12 + 4 + 6); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmemql); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} + +static __inline void +MEM_LOAD_ADDR_IMM_B(x86seg *seg, uint32_t addr) +{ + addbyte(0xb8); /*MOV EAX, addr*/ + addlong(addr); + MEM_LOAD_ADDR_EA_B(seg); +} +static __inline void +MEM_LOAD_ADDR_IMM_W(x86seg *seg, uint32_t addr) +{ + addbyte(0xb8); /*MOV EAX, addr*/ + addlong(addr); + MEM_LOAD_ADDR_EA_W(seg); +} +static __inline void +MEM_LOAD_ADDR_IMM_L(x86seg *seg, uint32_t addr) +{ + addbyte(0xb8); /*MOV EAX, addr*/ + addlong(addr); + MEM_LOAD_ADDR_EA_L(seg); +} + +static __inline void +MEM_STORE_ADDR_EA_B(x86seg *seg, int host_reg) +{ + if (host_reg & 0x10) { + /*Handle high byte of register*/ + if (host_reg & 8) { + addbyte(0x45); /*MOVL R8, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3)); + } else { + addbyte(0x41); /*MOVL R8, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3)); + } + addbyte(0x66); /*SHR R8, 8*/ + addbyte(0x41); + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + host_reg = 8; + } + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(((host_reg & 8) ? 4 : 3) + 2); + if (host_reg & 8) { + addbyte(0x44); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x88); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x88); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + if (host_reg & 8) { + addbyte(2 + 2 + 3 + 12 + 4 + 6); + } else { + addbyte(2 + 2 + 2 + 12 + 4 + 6); + } + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + load_param_2_reg_32(host_reg); + call_long((uintptr_t) writemembl); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} +static __inline void +MEM_STORE_ADDR_EA_W(x86seg *seg, int host_reg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 1*/ + addbyte(0xc7); + addlong(1); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + ((host_reg & 8) ? 5 : 4) + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(((host_reg & 8) ? 5 : 4) + 2); + if (host_reg & 8) { + addbyte(0x66); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x66); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x89); + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + if (host_reg & 8) { + addbyte(2 + 2 + 3 + 12 + 4 + 6); + } else { + addbyte(2 + 2 + 2 + 12 + 4 + 6); + } + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + load_param_2_reg_32(host_reg); + call_long((uintptr_t) writememwl); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} +static __inline void +MEM_STORE_ADDR_EA_L(x86seg *seg, int host_reg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 3*/ + addbyte(0xc7); + addlong(3); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + ((host_reg & 8) ? 4 : 3) + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(((host_reg & 8) ? 4 : 3) + 2); + if (host_reg & 8) { + addbyte(0x44); /*MOV -3[RDI+RSI],host_reg*/ + addbyte(0x89); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x89); /*MOV -3[RDI+RSI],host_reg*/ + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + if (host_reg & 8) { + addbyte(2 + 2 + 3 + 12 + 4 + 6); + } else { + addbyte(2 + 2 + 2 + 12 + 4 + 6); + } + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + load_param_2_reg_32(host_reg); + call_long((uintptr_t) writememll); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} +static __inline void +MEM_STORE_ADDR_EA_Q(x86seg *seg, int host_reg, int host_reg2) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 7*/ + addbyte(0xc7); + addlong(7); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + 4 + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(4 + 2); + if (host_reg & 8) { + addbyte(0x4c); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x89); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x48); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x89); + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 3 + 12 + 4 + 6); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + load_param_2_reg_64(host_reg); + call_long((uintptr_t) writememql); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + /*done:*/ +} + +static __inline void +MEM_STORE_ADDR_IMM_B(x86seg *seg, uint32_t addr, int host_reg) +{ + addbyte(0xb8); /*MOV EAX, addr*/ + addlong(addr); + MEM_STORE_ADDR_EA_B(seg, host_reg); +} +static __inline void +MEM_STORE_ADDR_IMM_W(x86seg *seg, uint32_t addr, int host_reg) +{ + addbyte(0xb8); /*MOV EAX, addr*/ + addlong(addr); + MEM_STORE_ADDR_EA_W(seg, host_reg); +} +static __inline void +MEM_STORE_ADDR_IMM_L(x86seg *seg, uint32_t addr, int host_reg) +{ + addbyte(0xb8); /*MOV EAX, addr*/ + addlong(addr); + MEM_STORE_ADDR_EA_L(seg, host_reg); +} + +static __inline void +STORE_HOST_REG_ADDR_BL(uintptr_t addr, int host_reg) +{ + int temp_reg = REG_ECX; + + if (host_reg_mapping[REG_ECX] != -1) + temp_reg = REG_EBX; + + if (host_reg & 0x10) { + if (host_reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVZX temp_reg, host_reg*/ + addbyte(0xb7); + addbyte(0xc0 | (temp_reg << 3) | (host_reg & 7)); + addbyte(0xc1); /*SHR temp_reg, 8*/ + addbyte(0xe8 | temp_reg); + addbyte(8); + } else { + if (host_reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVZX temp_reg, host_reg*/ + addbyte(0xb6); + addbyte(0xc0 | (temp_reg << 3) | (host_reg & 7)); + } + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + addbyte(0x89); /*MOV addr, temp_reg*/ + addbyte(0x45 | (temp_reg << 3)); + addbyte((uint32_t) addr - (uint32_t) (uintptr_t) &cpu_state - 128); + } else if (IS_32_ADDR(addr)) { + addbyte(0x89); /*MOV addr, temp_reg*/ + addbyte(0x04 | (temp_reg << 3)); + addbyte(0x25); + addlong(addr); + } else { + addbyte(0x48); /*MOV RSI, addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) addr); + addbyte(0x89); /*MOV [RSI], temp_reg*/ + addbyte(0x06 | (temp_reg << 3)); + } +} +static __inline void +STORE_HOST_REG_ADDR_WL(uintptr_t addr, int host_reg) +{ + int temp_reg = REG_ECX; + + if (host_reg_mapping[REG_ECX] != -1) + temp_reg = REG_EBX; + + if (host_reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVZX temp_reg, host_reg*/ + addbyte(0xb7); + addbyte(0xc0 | (temp_reg << 3) | (host_reg & 7)); + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + addbyte(0x89); /*MOV addr, temp_reg*/ + addbyte(0x45 | (temp_reg << 3)); + addbyte((uint32_t) addr - (uint32_t) (uintptr_t) &cpu_state - 128); + } else if (IS_32_ADDR(addr)) { + addbyte(0x89); /*MOV addr, temp_reg*/ + addbyte(0x04 | (temp_reg << 3)); + addbyte(0x25); + addlong(addr); + } else { + addbyte(0x48); /*MOV RSI, addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) addr); + addbyte(0x89); /*MOV [RSI], temp_reg*/ + addbyte(0x06 | (temp_reg << 3)); + } +} +static __inline void +STORE_HOST_REG_ADDR_W(uintptr_t addr, int host_reg) +{ + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + addbyte(0x66); /*MOVW [addr],host_reg*/ + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte((uint32_t) addr - (uint32_t) (uintptr_t) &cpu_state - 128); + } else if (IS_32_ADDR(addr)) { + addbyte(0x66); + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOVW addr,host_reg*/ + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(0x25); + addlong(addr); + } else { + addbyte(0x48); /*MOV RSI, addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) addr); + + addbyte(0x66); + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOVW [RSI],host_reg*/ + addbyte(0x06 | ((host_reg & 7) << 3)); + } +} +static __inline void +STORE_HOST_REG_ADDR(uintptr_t addr, int host_reg) +{ + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOVL [addr],host_reg*/ + addbyte(0x45 | ((host_reg & 7) << 3)); + addbyte((uint32_t) addr - (uint32_t) (uintptr_t) &cpu_state - 128); + } else if (IS_32_ADDR(addr)) { + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOVL addr,host_reg*/ + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(0x25); + addlong(addr); + } else { + addbyte(0x48); /*MOV RSI, addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) addr); + + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOVL [RSI],host_reg*/ + addbyte(0x06 | ((host_reg & 7) << 3)); + } +} + +static __inline void +AND_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + if (!(src_reg & 0x10)) { + addbyte(0x66); /*SHL AX, 8*/ + addbyte(0xc1); + addbyte(0xe0); + addbyte(8); + } + addbyte(0x66); /*OR AX, 0x00ff*/ + addbyte(0x0d); + addword(0xff); + addbyte(0x66); /*ANDW dst_reg, AX*/ + addbyte(0x41); + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7)); + } else if (src_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + addbyte(0x66); /*SHR AX, 8*/ + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + addbyte(0x41); /*ANDB dst_reg, AL*/ + addbyte(0x20); + addbyte(0xc0 | (dst_reg & 7)); + } else { + addbyte(0x45); /*ANDB dst_reg, src_reg*/ + addbyte(0x20); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (dst_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*SHL src_reg, 8*/ + addbyte(0xc1); + addbyte(0xe0 | src_reg); + addbyte(0x08); + addbyte(0x66); /*OR src_reg, 0xff*/ + addbyte(0x81); + addbyte(0xc8 | src_reg); + addword(0xff); + addbyte(0x66); /*ANDW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x41); /*ANDB dst_reg, src_reg*/ + addbyte(0x20); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x41); /*MOVZX EBX, src_reg*/ + addbyte(0x0f); + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x20); /*ANDB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x44); /*ANDB dst_reg, src_reg*/ + addbyte(0x20); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x0f); /*MOVZX EBX, src_reg*/ + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x20); /*ANDB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x20); /*ANDB dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } +} +static __inline void +AND_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x66); /*ANDW dst_reg, src_reg*/ + addbyte(0x45); + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x66); /*ANDW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x66); /*ANDW dst_reg, src_reg*/ + addbyte(0x44); + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x66); /*ANDW dst_reg, src_reg*/ + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +AND_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x45); /*ANDL dst_reg, src_reg*/ + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x41); /*ANDL dst_reg, src_reg*/ + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x44); /*ANDL dst_reg, src_reg*/ + addbyte(0x21); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x21); /*ANDL dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +AND_HOST_REG_IMM(int host_reg, uint32_t imm) +{ + if (host_reg & 0x10) { + addbyte(0x66); /*ANDW host_reg, imm<<8*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); + addbyte(0xe0 | (host_reg & 7)); + addword((imm << 8) | 0xff); + } else { + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); /*ANDL host_reg, imm*/ + addbyte(0xe0 | (host_reg & 7)); + addlong(imm); + } +} + +static __inline int +TEST_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((dst_reg & 7) << 3) | REG_EDX); + + dst_reg = (dst_reg & 0x10) | REG_EDX; + } + + AND_HOST_REG_B(dst_reg, src_reg); + + return dst_reg & ~0x10; +} +static __inline int +TEST_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((dst_reg & 7) << 3) | REG_EDX); + + dst_reg = REG_EDX; + } + + AND_HOST_REG_W(dst_reg, src_reg); + + return dst_reg; +} +static __inline int +TEST_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((dst_reg & 7) << 3) | REG_EDX); + + dst_reg = REG_EDX; + } + + AND_HOST_REG_L(dst_reg, src_reg); + + return dst_reg; +} +static __inline int +TEST_HOST_REG_IMM(int host_reg, uint32_t imm) +{ + if (host_reg & 8) { + addbyte(0x44); /*MOV EDX, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EDX | ((host_reg & 7) << 3)); + host_reg = REG_EDX | (host_reg & 0x10); + } + if (host_reg & 0x10) { + addbyte(0x66); /*ANDW host_reg, imm<<8*/ + addbyte(0x81); + addbyte(0xe0 | (host_reg & 7)); + addword((imm << 8) | 0xff); + } else { + addbyte(0x81); /*ANDL host_reg, imm*/ + addbyte(0xe0 | (host_reg & 7)); + addlong(imm); + } + + return host_reg; +} + +static __inline void +OR_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + if (!(src_reg & 0x10)) { + addbyte(0x66); /*SHL AX, 8*/ + addbyte(0xc1); + addbyte(0xe0); + addbyte(8); + } else { + addbyte(0x66); /*AND AX, 0xff00*/ + addbyte(0x25); + addword(0xff00); + } + addbyte(0x66); /*ORW dst_reg, AX*/ + addbyte(0x41); + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7)); + } else if (src_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + addbyte(0x66); /*SHR AX, 8*/ + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + addbyte(0x41); /*ORB dst_reg, AL*/ + addbyte(0x08); + addbyte(0xc0 | (dst_reg & 7)); + } else { + addbyte(0x45); /*ORB dst_reg, src_reg*/ + addbyte(0x08); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (dst_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*SHL src_reg, 8*/ + addbyte(0xc1); + addbyte(0xe0 | src_reg); + addbyte(0x08); + addbyte(0x66); /*ORW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x41); /*ORB dst_reg, src_reg*/ + addbyte(0x08); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x41); /*MOVZX EBX, src_reg*/ + addbyte(0x0f); + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x08); /*ORB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x44); /*ORB dst_reg, src_reg*/ + addbyte(0x08); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x0f); /*MOVZX EBX, src_reg*/ + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x08); /*ORB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x08); /*ORB dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } +} +static __inline void +OR_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x66); /*ORW dst_reg, src_reg*/ + addbyte(0x45); + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x66); /*ORW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x66); /*ORW dst_reg, src_reg*/ + addbyte(0x44); + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x66); /*ORW dst_reg, src_reg*/ + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +OR_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x45); /*ORL dst_reg, src_reg*/ + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x41); /*ORL dst_reg, src_reg*/ + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x44); /*ORL dst_reg, src_reg*/ + addbyte(0x09); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x09); /*ORW dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +OR_HOST_REG_IMM(int host_reg, uint32_t imm) +{ + if (host_reg & 0x10) { + addbyte(0x66); /*ORW host_reg, imm<<8*/ + addbyte(0x41); + addbyte(0x81); + addbyte(0xc8 | (host_reg & 7)); + addword(imm << 8); + } else if (host_reg & 8) { + addbyte(0x41); /*ORL host_reg, imm*/ + addbyte(0x81); + addbyte(0xc8 | (host_reg & 7)); + addlong(imm); + } else { + addbyte(0x81); /*ORL host_reg, imm*/ + addbyte(0xc8 | (host_reg & 7)); + addlong(imm); + } +} + +static __inline void +XOR_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + if (!(src_reg & 0x10)) { + addbyte(0x66); /*SHL AX, 8*/ + addbyte(0xc1); + addbyte(0xe0); + addbyte(8); + } else { + addbyte(0x66); /*AND AX, 0xff00*/ + addbyte(0x25); + addword(0xff00); + } + addbyte(0x66); /*XORW dst_reg, AX*/ + addbyte(0x41); + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7)); + } else if (src_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + addbyte(0x66); /*SHR AX, 8*/ + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + addbyte(0x41); /*XORB dst_reg, AL*/ + addbyte(0x30); + addbyte(0xc0 | (dst_reg & 7)); + } else { + addbyte(0x45); /*XORB dst_reg, src_reg*/ + addbyte(0x30); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (dst_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*SHL src_reg, 8*/ + addbyte(0xc1); + addbyte(0xe0 | src_reg); + addbyte(0x08); + addbyte(0x66); /*XORW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x41); /*XORB dst_reg, src_reg*/ + addbyte(0x30); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x41); /*MOVZX EBX, src_reg*/ + addbyte(0x0f); + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x30); /*XORB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x44); /*XORB dst_reg, src_reg*/ + addbyte(0x30); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x0f); /*MOVZX EBX, src_reg*/ + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x30); /*XORB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x30); /*XORB dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } +} +static __inline void +XOR_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x66); /*XORW dst_reg, src_reg*/ + addbyte(0x45); + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x66); /*XORW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x66); /*XORW dst_reg, src_reg*/ + addbyte(0x44); + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x66); /*XORW dst_reg, src_reg*/ + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +XOR_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x45); /*XORL dst_reg, src_reg*/ + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x41); /*XORL dst_reg, src_reg*/ + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x44); /*XORW dst_reg, src_reg*/ + addbyte(0x31); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x31); /*XORW dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +XOR_HOST_REG_IMM(int host_reg, uint32_t imm) +{ + if (host_reg & 0x10) { + addbyte(0x66); /*ORW host_reg, imm<<8*/ + addbyte(0x41); + addbyte(0x81); + addbyte(0xf0 | (host_reg & 7)); + addword(imm << 8); + } else if (host_reg & 8) { + addbyte(0x41); /*ORL host_reg, imm*/ + addbyte(0x81); + addbyte(0xf0 | (host_reg & 7)); + addlong(imm); + } else { + addbyte(0x81); /*ORL host_reg, imm*/ + addbyte(0xf0 | (host_reg & 7)); + addlong(imm); + } +} + +static __inline void +ADD_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + if (!(src_reg & 0x10)) { + addbyte(0x66); /*SHL AX, 8*/ + addbyte(0xc1); + addbyte(0xe0); + addbyte(8); + } else { + addbyte(0x66); /*AND AX, 0xff00*/ + addbyte(0x25); + addword(0xff00); + } + addbyte(0x66); /*ADDW dst_reg, AX*/ + addbyte(0x41); + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7)); + } else if (src_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + addbyte(0x66); /*SHR AX, 8*/ + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + addbyte(0x41); /*ADDB dst_reg, AL*/ + addbyte(0x00); + addbyte(0xc0 | (dst_reg & 7)); + } else { + addbyte(0x45); /*ADDB dst_reg, src_reg*/ + addbyte(0x00); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (dst_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*SHL src_reg, 8*/ + addbyte(0xc1); + addbyte(0xe0 | src_reg); + addbyte(0x08); + addbyte(0x66); /*ADDW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x41); /*ADDB dst_reg, src_reg*/ + addbyte(0x00); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (src_reg & 8) { + if (src_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + addbyte(0x66); /*SHR AX, 8*/ + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + addbyte(0x00); /*ADDB dst_reg, AL*/ + addbyte(0xc0 | (dst_reg & 7)); + } else { + addbyte(0x44); /*ADDB dst_reg, src_reg*/ + addbyte(0x00); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else + fatal("!(dst_reg & src_reg & 8)\n"); +} +static __inline void +ADD_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x66); /*ADDW dst_reg, src_reg*/ + addbyte(0x45); + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x66); /*ADDW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x66); /*ADDW dst_reg, src_reg*/ + addbyte(0x44); + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else + fatal("!(dst_reg & src_reg & 8)\n"); +} +static __inline void +ADD_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x45); /*ADDL dst_reg, src_reg*/ + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x41); /*ADDL dst_reg, src_reg*/ + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x44); /*ADDL dst_reg, src_reg*/ + addbyte(0x01); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else + fatal("!(dst_reg & src_reg & 8)\n"); +} + +static __inline void +SUB_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + if (!(src_reg & 0x10)) { + addbyte(0x66); /*SHL AX, 8*/ + addbyte(0xc1); + addbyte(0xe0); + addbyte(8); + } else { + addbyte(0x66); /*AND AX, 0xff00*/ + addbyte(0x25); + addword(0xff00); + } + addbyte(0x66); /*SUBW dst_reg, AX*/ + addbyte(0x41); + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7)); + } else if (src_reg & 0x10) { + addbyte(0x66); /*MOVW AX, src_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | ((src_reg & 7) << 3)); + addbyte(0x66); /*SHR AX, 8*/ + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + addbyte(0x41); /*SUBB dst_reg, AL*/ + addbyte(0x28); + addbyte(0xc0 | (dst_reg & 7)); + } else { + addbyte(0x45); /*SUBB dst_reg, src_reg*/ + addbyte(0x28); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (dst_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0x66); /*SHL src_reg, 8*/ + addbyte(0xc1); + addbyte(0xe0 | src_reg); + addbyte(0x08); + addbyte(0x66); /*SUBW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x41); /*SUBB dst_reg, src_reg*/ + addbyte(0x28); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else if (src_reg & 8) { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x41); /*MOVZX EBX, src_reg*/ + addbyte(0x0f); + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x28); /*SUBB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x44); /*SUBB dst_reg, src_reg*/ + addbyte(0x28); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } else { + if (dst_reg & 0x10) { + addbyte(0xc1); /*SHR dst_reg, 8*/ + addbyte(0xe8 | (dst_reg & 7)); + addbyte(8); + } + if (src_reg & 0x10) { + addbyte(0x0f); /*MOVZX EBX, src_reg*/ + addbyte(0xb7); + addbyte(0xd8 | (src_reg & 7)); + addbyte(0xc1); /*SHR EBX, 8*/ + addbyte(0xeb); + addbyte(8); + addbyte(0x28); /*SUBB dst_reg, EBX*/ + addbyte(0xd8 | (dst_reg & 7)); + } else { + addbyte(0x28); /*SUBB dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } + } +} +static __inline void +SUB_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x66); /*SUBW dst_reg, src_reg*/ + addbyte(0x45); + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x66); /*SUBW dst_reg, src_reg*/ + addbyte(0x41); + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x66); /*SUBW dst_reg, src_reg*/ + addbyte(0x44); + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x66); /*SUBW dst_reg, src_reg*/ + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} +static __inline void +SUB_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & src_reg & 8) { + addbyte(0x45); /*SUBL dst_reg, src_reg*/ + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (dst_reg & 8) { + addbyte(0x41); /*SUBL dst_reg, src_reg*/ + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else if (src_reg & 8) { + addbyte(0x44); /*SUBL dst_reg, src_reg*/ + addbyte(0x29); + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } else { + addbyte(0x29); /*SUBL dst_reg, src_reg*/ + addbyte(0xc0 | (dst_reg & 7) | ((src_reg & 7) << 3)); + } +} + +static __inline int +CMP_HOST_REG_B(int dst_reg, int src_reg) +{ + if (dst_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((dst_reg & 7) << 3) | REG_EDX); + + dst_reg = (dst_reg & 0x10) | REG_EDX; + } + + SUB_HOST_REG_B(dst_reg, src_reg); + + return dst_reg & ~0x10; +} +static __inline int +CMP_HOST_REG_W(int dst_reg, int src_reg) +{ + if (dst_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((dst_reg & 7) << 3) | REG_EDX); + + dst_reg = REG_EDX; + } + + SUB_HOST_REG_W(dst_reg, src_reg); + + return dst_reg; +} +static __inline int +CMP_HOST_REG_L(int dst_reg, int src_reg) +{ + if (dst_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((dst_reg & 7) << 3) | REG_EDX); + + dst_reg = REG_EDX; + } + + SUB_HOST_REG_L(dst_reg, src_reg); + + return dst_reg; +} + +static __inline void +ADD_HOST_REG_IMM_B(int host_reg, uint8_t imm) +{ + if (host_reg & 0x10) { + addbyte(0x66); /*ADDW host_reg, imm*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); + addbyte(0xC0 | (host_reg & 7)); + addword(imm << 8); + } else { + if (host_reg & 8) + addbyte(0x41); + addbyte(0x80); /*ADDB host_reg, imm*/ + addbyte(0xC0 | (host_reg & 7)); + addbyte(imm); + } +} +static __inline void +ADD_HOST_REG_IMM_W(int host_reg, uint16_t imm) +{ + addbyte(0x66); /*ADDW host_reg, imm*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); + addbyte(0xC0 | (host_reg & 7)); + addword(imm); +} +static __inline void +ADD_HOST_REG_IMM(int host_reg, uint32_t imm) +{ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); /*ADDL host_reg, imm*/ + addbyte(0xC0 | (host_reg & 7)); + addlong(imm); +} + +static __inline void +SUB_HOST_REG_IMM_B(int host_reg, uint8_t imm) +{ + if (host_reg & 0x10) { + addbyte(0x66); /*SUBW host_reg, imm*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); + addbyte(0xE8 | (host_reg & 7)); + addword(imm << 8); + } else { + if (host_reg & 8) + addbyte(0x41); + addbyte(0x80); /*SUBB host_reg, imm*/ + addbyte(0xE8 | (host_reg & 7)); + addbyte(imm); + } +} +static __inline void +SUB_HOST_REG_IMM_W(int host_reg, uint16_t imm) +{ + addbyte(0x66); /*SUBW host_reg, imm*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); + addbyte(0xE8 | (host_reg & 7)); + addword(imm); +} +static __inline void +SUB_HOST_REG_IMM(int host_reg, uint32_t imm) +{ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x81); /*SUBL host_reg, imm*/ + addbyte(0xE8 | (host_reg & 7)); + addlong(imm); +} + +static __inline void +INC_HOST_REG_W(int host_reg) +{ + addbyte(0x66); /*INCW host_reg*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0xff); + addbyte(0xc0 | (host_reg & 7)); +} +static __inline void +INC_HOST_REG(int host_reg) +{ + if (host_reg & 8) + addbyte(0x41); + addbyte(0xff); /*INCL host_reg*/ + addbyte(0xc0 | (host_reg & 7)); +} +static __inline void +DEC_HOST_REG_W(int host_reg) +{ + addbyte(0x66); /*DECW host_reg*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0xff); + addbyte(0xc8 | (host_reg & 7)); +} +static __inline void +DEC_HOST_REG(int host_reg) +{ + if (host_reg & 8) + addbyte(0x41); + addbyte(0xff); /*DECL host_reg*/ + addbyte(0xc8 | (host_reg & 7)); +} + +static __inline int +CMP_HOST_REG_IMM_B(int host_reg, uint8_t imm) +{ + if (host_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3) | REG_EDX); + + host_reg = (host_reg & 0x10) | REG_EDX; + } + + SUB_HOST_REG_IMM_B(host_reg, imm); + + return host_reg; +} +static __inline int +CMP_HOST_REG_IMM_W(int host_reg, uint16_t imm) +{ + if (host_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3) | REG_EDX); + + host_reg = REG_EDX; + } + + SUB_HOST_REG_IMM_W(host_reg, imm); + + return host_reg; +} +static __inline int +CMP_HOST_REG_IMM_L(int host_reg, uint32_t imm) +{ + if (host_reg & 8) { + addbyte(0x44); /*MOV EDX, dst_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3) | REG_EDX); + + host_reg = REG_EDX; + } + + SUB_HOST_REG_IMM(host_reg, imm); + + return host_reg; +} + +static __inline void +LOAD_STACK_TO_EA(int off) +{ + if (stack32) { + addbyte(0x8b); /*MOVL EAX,[ESP]*/ + addbyte(0x45 | (REG_EAX << 3)); + addbyte((uint8_t) cpu_state_offset(regs[REG_ESP].l)); + if (off) { + addbyte(0x83); /*ADD EAX, off*/ + addbyte(0xc0 | (0 << 3) | REG_EAX); + addbyte(off); + } + } else { + addbyte(0x0f); /*MOVZX EAX,W[ESP]*/ + addbyte(0xb7); + addbyte(0x45 | (REG_EAX << 3)); + addbyte((uint8_t) cpu_state_offset(regs[REG_ESP].w)); + if (off) { + addbyte(0x66); /*ADD AX, off*/ + addbyte(0x05); + addword(off); + } + } +} +static __inline void +LOAD_EBP_TO_EA(int off) +{ + if (stack32) { + addbyte(0x8b); /*MOVL EAX,[EBP]*/ + addbyte(0x45 | (REG_EAX << 3)); + addbyte((uint8_t) cpu_state_offset(regs[REG_EBP].l)); + if (off) { + addbyte(0x83); /*ADD EAX, off*/ + addbyte(0xc0 | (0 << 3) | REG_EAX); + addbyte(off); + } + } else { + addbyte(0x0f); /*MOVZX EAX,W[EBP]*/ + addbyte(0xb7); + addbyte(0x45 | (REG_EAX << 3)); + addbyte((uint8_t) cpu_state_offset(regs[REG_BP].l)); + if (off) { + addbyte(0x66); /*ADD AX, off*/ + addbyte(0x05); + addword(off); + } + } +} + +static __inline void +SP_MODIFY(int off) +{ + if (stack32) { + if (off < 0x80) { + addbyte(0x83); /*ADD [ESP], off*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(regs[REG_ESP].l)); + addbyte(off); + } else { + addbyte(0x81); /*ADD [ESP], off*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(regs[REG_ESP].l)); + addlong(off); + } + } else { + if (off < 0x80) { + addbyte(0x66); /*ADD [SP], off*/ + addbyte(0x83); + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(regs[REG_ESP].w)); + addbyte(off); + } else { + addbyte(0x66); /*ADD [SP], off*/ + addbyte(0x81); + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(regs[REG_ESP].w)); + addword(off); + } + } +} + +static __inline void +TEST_ZERO_JUMP_W(int host_reg, uint32_t new_pc, int taken_cycles) +{ + addbyte(0x66); /*CMPW host_reg, 0*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x83); + addbyte(0xc0 | 0x38 | (host_reg & 7)); + addbyte(0); + addbyte(0x75); /*JNZ +*/ + addbyte(7 + 5 + (taken_cycles ? 4 : 0)); + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(new_pc); + if (taken_cycles) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(taken_cycles); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); +} +static __inline void +TEST_ZERO_JUMP_L(int host_reg, uint32_t new_pc, int taken_cycles) +{ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x83); /*CMPW host_reg, 0*/ + addbyte(0xc0 | 0x38 | (host_reg & 7)); + addbyte(0); + addbyte(0x75); /*JNZ +*/ + addbyte(7 + 5 + (taken_cycles ? 4 : 0)); + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(new_pc); + if (taken_cycles) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(taken_cycles); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); +} + +static __inline void +TEST_NONZERO_JUMP_W(int host_reg, uint32_t new_pc, int taken_cycles) +{ + addbyte(0x66); /*CMPW host_reg, 0*/ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x83); + addbyte(0xc0 | 0x38 | (host_reg & 7)); + addbyte(0); + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + (taken_cycles ? 4 : 0)); + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(new_pc); + if (taken_cycles) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(taken_cycles); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); +} +static __inline void +TEST_NONZERO_JUMP_L(int host_reg, uint32_t new_pc, int taken_cycles) +{ + if (host_reg & 8) + addbyte(0x41); + addbyte(0x83); /*CMPW host_reg, 0*/ + addbyte(0xc0 | 0x38 | (host_reg & 7)); + addbyte(0); + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + (taken_cycles ? 4 : 0)); + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(new_pc); + if (taken_cycles) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(taken_cycles); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); +} + +static __inline void +BRANCH_COND_BE(int pc_offset, uint32_t op_pc, uint32_t offset, int not ) +{ + uint8_t *jump1; + + if (codegen_flags_changed && cpu_state.flags_op != FLAGS_UNKNOWN) { + addbyte(0x83); /*CMP flags_res, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(flags_res)); + addbyte(0); + addbyte(0x74); /*JZ +*/ + } else { + CALL_FUNC((uintptr_t) ZF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + addbyte(0x75); /*JNZ +*/ + } + jump1 = &codeblock[block_current].data[block_pos]; + addbyte(0); + CALL_FUNC((uintptr_t) CF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + if (not ) + addbyte(0x75); /*JNZ +*/ + else + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + (timing_bt ? 4 : 0)); + + if (!not ) + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(op_pc + pc_offset + offset); + if (timing_bt) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(timing_bt); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + if (not ) + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; +} + +static __inline void +BRANCH_COND_L(int pc_offset, uint32_t op_pc, uint32_t offset, int not ) +{ + CALL_FUNC((uintptr_t) NF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + addbyte(0x0f); /*SETNE BL*/ + addbyte(0x95); + addbyte(0xc3); + CALL_FUNC((uintptr_t) VF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + addbyte(0x0f); /*SETNE AL*/ + addbyte(0x95); + addbyte(0xc0); + addbyte(0x38); /*CMP AL, BL*/ + addbyte(0xd8); + if (not ) + addbyte(0x75); /*JNZ +*/ + else + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + (timing_bt ? 4 : 0)); + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(op_pc + pc_offset + offset); + if (timing_bt) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(timing_bt); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); +} + +static __inline void +BRANCH_COND_LE(int pc_offset, uint32_t op_pc, uint32_t offset, int not ) +{ + uint8_t *jump1; + if (codegen_flags_changed && cpu_state.flags_op != FLAGS_UNKNOWN) { + addbyte(0x83); /*CMP flags_res, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(flags_res)); + addbyte(0); + addbyte(0x74); /*JZ +*/ + } else { + CALL_FUNC((uintptr_t) ZF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + addbyte(0x75); /*JNZ +*/ + } + jump1 = &codeblock[block_current].data[block_pos]; + addbyte(0); + CALL_FUNC((uintptr_t) NF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + addbyte(0x0f); /*SETNE BL*/ + addbyte(0x95); + addbyte(0xc3); + CALL_FUNC((uintptr_t) VF_SET); + addbyte(0x85); /*TEST EAX,EAX*/ + addbyte(0xc0); + addbyte(0x0f); /*SETNE AL*/ + addbyte(0x95); + addbyte(0xc0); + addbyte(0x38); /*CMP AL, BL*/ + addbyte(0xd8); + if (not ) + addbyte(0x75); /*JNZ +*/ + else + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + (timing_bt ? 4 : 0)); + if (!not ) + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; + addbyte(0xC7); /*MOVL [pc], new_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(pc)); + addlong(op_pc + pc_offset + offset); + if (timing_bt) { + addbyte(0x83); /*SUB $codegen_block_cycles, cyclcs*/ + addbyte(0x6d); + addbyte((uint8_t) cpu_state_offset(_cycles)); + addbyte(timing_bt); + } + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + if (not ) + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; +} + +static __inline int +LOAD_VAR_W(uintptr_t addr) +{ + int host_reg = REG_EBX; + + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + addbyte(0x0f); /*MOVZX host_reg, offset[cpu_state]*/ + addbyte(0xb7); + addbyte(0x45 | (host_reg << 3)); + addbyte(addr - (uintptr_t) &cpu_state - 128); + } else if (IS_32_ADDR(addr)) { + addbyte(0x0f); /*MOVZX host_reg,[reg]*/ + addbyte(0xb7); + addbyte(0x04 | (host_reg << 3)); + addbyte(0x25); + addlong((uint32_t) addr); + } else { + addbyte(0x48); /*MOV host_reg, &addr*/ + addbyte(0xb8 | host_reg); + addquad(addr); + addbyte(0x0f); /*MOVZX host_reg, [host_reg]*/ + addbyte(0xb7); + addbyte(host_reg | (host_reg << 3)); + } + + return host_reg; +} +static __inline int +LOAD_VAR_WL(uintptr_t addr) +{ + return LOAD_VAR_W(addr); +} +static __inline int +LOAD_VAR_L(uintptr_t addr) +{ + int host_reg = REG_EBX; + + if (addr >= (uintptr_t) &cpu_state && addr < ((uintptr_t) &cpu_state) + 0x100) { + addbyte(0x8b); /*MOVL host_reg, offset[cpu_state]*/ + addbyte(0x45 | (host_reg << 3)); + addbyte(addr - (uintptr_t) &cpu_state - 128); + } else if (IS_32_ADDR(addr)) { + addbyte(0x8b); /*MOVL host_reg,[reg]*/ + addbyte(0x04 | (host_reg << 3)); + addbyte(0x25); + addlong((uint32_t) addr); + } else { + addbyte(0x48); /*MOV host_reg, &addr*/ + addbyte(0xb8 | host_reg); + addquad(addr); + addbyte(0x8b); /*MOVL host_reg, [host_reg]*/ + addbyte(host_reg | (host_reg << 3)); + } + + return host_reg; +} + +static __inline int +COPY_REG(int src_reg) +{ + if (src_reg & 8) + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | REG_ECX | ((src_reg & 7) << 3)); + + return REG_ECX | (src_reg & 0x10); +} + +static __inline int +LOAD_HOST_REG(int host_reg) +{ + if (host_reg & 8) + addbyte(0x44); + addbyte(0x89); + addbyte(0xc0 | REG_EBX | ((host_reg & 7) << 3)); + + return REG_EBX | (host_reg & 0x10); +} + +static __inline int +ZERO_EXTEND_W_B(int reg) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | (reg << 3)); + addbyte(0x0f); /*MOVZX EAX, AH*/ + addbyte(0xb6); + addbyte(0xc4); + + return REG_EAX; + } + + if (reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVZX regl, regb*/ + addbyte(0xb6); + addbyte(0xc0 | (reg & 7)); + + return REG_EAX; +} +static __inline int +ZERO_EXTEND_L_B(int reg) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | (reg << 3)); + addbyte(0x0f); /*MOVZX EAX, AH*/ + addbyte(0xb6); + addbyte(0xc4); + + return REG_EAX; + } + + if (reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVZX regl, regb*/ + addbyte(0xb6); + addbyte(0xc0 | (reg & 7)); + + return REG_EAX; +} +static __inline int +ZERO_EXTEND_L_W(int reg) +{ + if (reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVZX regl, regw*/ + addbyte(0xb7); + addbyte(0xc0 | (reg & 7)); + + return REG_EAX; +} + +static __inline int +SIGN_EXTEND_W_B(int reg) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | (reg << 3)); + addbyte(0x0f); /*MOVSX EAX, AH*/ + addbyte(0xbe); + addbyte(0xc4); + + return REG_EAX; + } + + if (reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVSX regl, regb*/ + addbyte(0xbe); + addbyte(0xc0 | (reg & 7)); + + return REG_EAX; +} +static __inline int +SIGN_EXTEND_L_B(int reg) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | (reg << 3)); + addbyte(0x0f); /*MOVSX EAX, AH*/ + addbyte(0xbe); + addbyte(0xc4); + + return REG_EAX; + } + + if (reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVSX regl, regb*/ + addbyte(0xbe); + addbyte(0xc0 | (reg & 7)); + + return REG_EAX; +} +static __inline int +SIGN_EXTEND_L_W(int reg) +{ + if (reg & 8) + addbyte(0x41); + addbyte(0x0f); /*MOVSX regl, regw*/ + addbyte(0xbf); + addbyte(0xc0 | (reg & 7)); + + return REG_EAX; +} + +static __inline void +SHL_B_IMM(int reg, int count) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EAX | ((reg & 7) << 3)); + addbyte(0xc0); /*SHL AH, count*/ + addbyte(0xe0 | REG_AH); + addbyte(count); + addbyte(0x41); /*MOV reg, EAX*/ + addbyte(0x89); + addbyte(0xc0 | (REG_EAX << 3) | (reg & 7)); + } else { + if (reg & 8) + addbyte(0x41); + addbyte(0xc0); /*SHL reg, count*/ + addbyte(0xc0 | (reg & 7) | 0x20); + addbyte(count); + } +} +static __inline void +SHL_W_IMM(int reg, int count) +{ + addbyte(0x66); /*SHL reg, count*/ + if (reg & 8) + addbyte(0x41); + addbyte(0xc1); + addbyte(0xc0 | (reg & 7) | 0x20); + addbyte(count); +} +static __inline void +SHL_L_IMM(int reg, int count) +{ + if (reg & 8) + addbyte(0x41); + addbyte(0xc1); /*SHL reg, count*/ + addbyte(0xc0 | (reg & 7) | 0x20); + addbyte(count); +} +static __inline void +SHR_B_IMM(int reg, int count) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EAX | ((reg & 7) << 3)); + addbyte(0xc0); /*SHR AH, count*/ + addbyte(0xe8 | REG_AH); + addbyte(count); + addbyte(0x41); /*MOV reg, EAX*/ + addbyte(0x89); + addbyte(0xc0 | (REG_EAX << 3) | (reg & 7)); + } else { + if (reg & 8) + addbyte(0x41); + addbyte(0xc0); /*SHR reg, count*/ + addbyte(0xc0 | (reg & 7) | 0x28); + addbyte(count); + } +} +static __inline void +SHR_W_IMM(int reg, int count) +{ + addbyte(0x66); /*SHR reg, count*/ + if (reg & 8) + addbyte(0x41); + addbyte(0xc1); + addbyte(0xc0 | (reg & 7) | 0x28); + addbyte(count); +} +static __inline void +SHR_L_IMM(int reg, int count) +{ + if (reg & 8) + addbyte(0x41); + addbyte(0xc1); /*SHR reg, count*/ + addbyte(0xc0 | (reg & 7) | 0x28); + addbyte(count); +} +static __inline void +SAR_B_IMM(int reg, int count) +{ + if (reg & 0x10) { + addbyte(0x44); /*MOV EAX, reg*/ + addbyte(0x89); + addbyte(0xc0 | REG_EAX | ((reg & 7) << 3)); + addbyte(0xc0); /*SAR AH, count*/ + addbyte(0xf8 | REG_AH); + addbyte(count); + addbyte(0x41); /*MOV reg, EAX*/ + addbyte(0x89); + addbyte(0xc0 | (REG_EAX << 3) | (reg & 7)); + } else { + if (reg & 8) + addbyte(0x41); + addbyte(0xc0); /*SAR reg, count*/ + addbyte(0xc0 | (reg & 7) | 0x38); + addbyte(count); + } +} +static __inline void +SAR_W_IMM(int reg, int count) +{ + addbyte(0x66); /*SAR reg, count*/ + if (reg & 8) + addbyte(0x41); + addbyte(0xc1); + addbyte(0xc0 | (reg & 7) | 0x38); + addbyte(count); +} +static __inline void +SAR_L_IMM(int reg, int count) +{ + if (reg & 8) + addbyte(0x41); + addbyte(0xc1); /*SAR reg, count*/ + addbyte(0xc0 | (reg & 7) | 0x38); + addbyte(count); +} + +static __inline void +NEG_HOST_REG_B(int reg) +{ + if (reg & 0x10) { + if (reg & 8) + addbyte(0x44); + addbyte(0x89); /*MOV BX, reg*/ + addbyte(0xc3 | ((reg & 7) << 3)); + addbyte(0xf6); /*NEG BH*/ + addbyte(0xdf); + if (reg & 8) + addbyte(0x41); + addbyte(0x89); /*MOV reg, BX*/ + addbyte(0xd8 | (reg & 7)); + } else { + if (reg & 8) + addbyte(0x41); + addbyte(0xf6); + addbyte(0xd8 | (reg & 7)); + } +} +static __inline void +NEG_HOST_REG_W(int reg) +{ + addbyte(0x66); + if (reg & 8) + addbyte(0x41); + addbyte(0xf7); + addbyte(0xd8 | (reg & 7)); +} +static __inline void +NEG_HOST_REG_L(int reg) +{ + if (reg & 8) + addbyte(0x41); + addbyte(0xf7); + addbyte(0xd8 | (reg & 7)); +} + +static __inline void +FP_ENTER(void) +{ + if (codegen_fpu_entered) + return; + if (IS_32_ADDR(&cr0)) { + addbyte(0xf6); /*TEST cr0, 0xc*/ + addbyte(0x04); + addbyte(0x25); + addlong((uintptr_t) &cr0); + addbyte(0x0c); + } else { + addbyte(0x48); /*MOV RAX, &cr0*/ + addbyte(0xb8 | REG_EAX); + addquad((uint64_t) &cr0); + addbyte(0xf6); /*TEST [RAX], 0xc*/ + addbyte(0 | (REG_EAX << 3)); + addbyte(0x0c); + } + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + 12 + 5); + addbyte(0xC7); /*MOVL [oldpc],op_old_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(oldpc)); + addlong(op_old_pc); + load_param_1_32(&codeblock[block_current], 7); + CALL_FUNC((uintptr_t) x86_int); + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + + codegen_fpu_entered = 1; +} + +static __inline void +FP_FXCH(int reg) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(reg); + + addbyte(0x48); /*MOV RDX, ST[RBX*8]*/ + addbyte(0x8b); + addbyte(0x54); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(0x07); + addbyte(0x48); /*MOV RCX, ST[RAX*8]*/ + addbyte(0x8b); + addbyte(0x4c); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x48); /*MOV ST[RAX*8], RDX*/ + addbyte(0x89); + addbyte(0x54); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x48); /*MOV ST[RBX*8], RCX*/ + addbyte(0x89); + addbyte(0x4c); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + + addbyte(0x8a); /*MOV CL, tag[EAX]*/ + addbyte(0x4c); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(0x8a); /*MOV DL, tag[EBX]*/ + addbyte(0x54); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(0x88); /*MOV tag[EBX], CL*/ + addbyte(0x4c); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(0x88); /*MOV tag[EAX], DL*/ + addbyte(0x54); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + + addbyte(0x48); /*MOV RDX, MM[RBX*8]*/ + addbyte(0x8b); + addbyte(0x54); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(MM)); + addbyte(0x48); /*MOV RCX, MM[RAX*8]*/ + addbyte(0x8b); + addbyte(0x4c); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(MM)); + addbyte(0x48); /*MOV MM[RAX*8], RDX*/ + addbyte(0x89); + addbyte(0x54); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(MM)); + addbyte(0x48); /*MOV MM[RBX*8], RCX*/ + addbyte(0x89); + addbyte(0x4c); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(MM)); +} + +static __inline void +FP_FLD(int reg) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + if (reg) { + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(reg); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(0x07); + } else { + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + } + + addbyte(0x48); /*MOV RCX, ST[EAX*8]*/ + addbyte(0x8b); + addbyte(0x4c); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(0x07); + addbyte(0x48); /*MOV RDX, ST_i64[EAX*8]*/ + addbyte(0x8b); + addbyte(0x54); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(MM)); + addbyte(0x8a); /*MOV AL, [tag+EAX]*/ + addbyte(0x44); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(0x48); /*MOV ST[EBX*8], RCX*/ + addbyte(0x89); + addbyte(0x4c); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x48); /*MOV ST_i64[EBX*8], RDX*/ + addbyte(0x89); + addbyte(0x54); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(MM)); + addbyte(0x88); /*MOV [tag+EBX], AL*/ + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); + + addbyte(0x89); /*MOV [TOP], EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); +} + +static __inline void +FP_FST(int reg) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x48); /*MOV RCX, ST[EAX*8]*/ + addbyte(0x8b); + addbyte(0x4c); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x8a); /*MOV BL, [tag+EAX]*/ + addbyte(0x5c); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + + if (reg) { + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(reg); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(0x07); + } + + addbyte(0x48); /*MOV ST[EAX*8], RCX*/ + addbyte(0x89); + addbyte(0x4c); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x88); /*MOV [tag+EAX], BL*/ + addbyte(0x5c); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); +} + +static __inline void +FP_POP(void) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0xc6); /*MOVB tag[EAX], 3*/ + addbyte(0x44); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(3); + addbyte(0x83); /*ADD AL, 1*/ + addbyte(0xc0); + addbyte(1); + addbyte(0x83); /*AND AL, 7*/ + addbyte(0xe0); + addbyte(7); + addbyte(0x89); /*MOV [TOP], EAX*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); +} +static __inline void +FP_POP2(void) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0xc6); /*MOVB tag[EAX], 3*/ + addbyte(0x44); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(3); + addbyte(0x83); /*ADD AL, 2*/ + addbyte(0xc0); + addbyte(2); + addbyte(0x83); /*AND AL, 7*/ + addbyte(0xe0); + addbyte(7); + addbyte(0x89); /*MOV [TOP], EAX*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); +} + +static __inline void +FP_LOAD_S(void) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x66); /*MOVD XMM0, EAX*/ + addbyte(0x0f); + addbyte(0x6e); + addbyte(0xc0); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0xf3); /*CVTSS2SD XMM0, XMM0*/ + addbyte(0x0f); + addbyte(0x5a); + addbyte(0xc0); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(7); + addbyte(0x85); /*TEST EAX, EAX*/ + addbyte(0xc0); + addbyte(0x89); /*MOV TOP, EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x66); /*MOVQ [ST+EBX*8], XMM0*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x0f); /*SETE [tag+EBX]*/ + addbyte(0x94); + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); +} +static __inline void +FP_LOAD_D(void) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(7); + addbyte(0x48); /*TEST RAX, RAX*/ + addbyte(0x85); + addbyte(0xc0); + addbyte(0x89); /*MOV TOP, EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x48); /*MOVQ [ST+EBX*8], RAX*/ + addbyte(0x89); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x0f); /*SETE [tag+EBX]*/ + addbyte(0x94); + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); +} + +static __inline void +FP_LOAD_IW(void) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x0f); /*MOVSX EAX, AX*/ + addbyte(0xbf); + addbyte(0xc0); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0xf2); /*CVTSI2SD XMM0, EAX*/ + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc0); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(7); + addbyte(0x85); /*TEST EAX, EAX*/ + addbyte(0xc0); + addbyte(0x89); /*MOV TOP, EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x66); /*MOVQ [ST+EBX*8], XMM0*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x0f); /*SETE [tag+EBX]*/ + addbyte(0x94); + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); +} +static __inline void +FP_LOAD_IL(void) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0xf2); /*CVTSI2SD XMM0, EAX*/ + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc0); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(7); + addbyte(0x85); /*TEST EAX, EAX*/ + addbyte(0xc0); + addbyte(0x89); /*MOV TOP, EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x66); /*MOVQ [ST+EBX*8], XMM0*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x0f); /*SETE [tag+EBX]*/ + addbyte(0x94); + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); +} +static __inline void +FP_LOAD_IQ(void) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0xf2); /*CVTSI2SDQ XMM0, RAX*/ + addbyte(0x48); + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc0); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(7); + addbyte(0x48); /*TEST RAX, RAX*/ + addbyte(0x85); + addbyte(0xc0); + addbyte(0x48); /*MOV [ST_i64+EBX*8], RAX*/ + addbyte(0x89); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(MM)); + addbyte(0x89); /*MOV TOP, EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x0f); /*SETE AL*/ + addbyte(0x94); + addbyte(0xc0); + addbyte(0x66); /*MOVQ [ST+EBX*8], XMM0*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x0c); /*OR AL, TAG_UINT64*/ + addbyte(TAG_UINT64); + addbyte(0x88); /*MOV [tag+EBX], AL*/ + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); +} + +static __inline void +FP_LOAD_IMM_Q(uint64_t v) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x83); /*SUB EBX, 1*/ + addbyte(0xeb); + addbyte(0x01); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe3); + addbyte(7); + addbyte(0xc7); /*MOV ST[EBP+EBX*8], v*/ + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addlong(v & 0xffffffff); + addbyte(0xc7); /*MOV ST[EBP+EBX*8]+4, v*/ + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST) + 4); + addlong(v >> 32); + addbyte(0x89); /*MOV TOP, EBX*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0xc6); /*MOV [tag+EBX], (v ? 0 : 1)*/ + addbyte(0x44); + addbyte(0x1d); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(v ? 0 : 1); +} + +static __inline void +FP_FCHS(void) +{ + addbyte(0x8b); /*MOV EAX, TOP*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0xf2); /*SUBSD XMM0, XMM0*/ + addbyte(0x0f); + addbyte(0x5c); + addbyte(0xc0); + addbyte(0xf2); /*SUBSD XMM0, ST[EAX*8]*/ + addbyte(0x0f); + addbyte(0x5c); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x80); /*AND tag[EAX], ~TAG_UINT64*/ + addbyte(0x64); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag[0])); + addbyte(TAG_NOT_UINT64); + addbyte(0xf2); /*MOVSD ST[EAX*8], XMM0*/ + addbyte(0x0f); + addbyte(0x11); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); +} + +static __inline int +FP_LOAD_REG(int reg) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + if (reg) { + addbyte(0x83); /*ADD EBX, reg*/ + addbyte(0xc0 | REG_EBX); + addbyte(reg); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe0 | REG_EBX); + addbyte(0x07); + } + addbyte(0xf3); /*MOVQ XMM0, ST[EBX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0xf2); /*CVTSD2SS XMM0, XMM0*/ + addbyte(0x0f); + addbyte(0x5a); + addbyte(0xc0); + addbyte(0x66); /*MOVD EBX, XMM0*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0xc0 | REG_EBX); + + return REG_EBX; +} +static __inline void +FP_LOAD_REG_D(int reg, int *host_reg1, int *host_reg2) +{ + addbyte(0x8b); /*MOV EBX, TOP*/ + addbyte(0x5d); + addbyte((uint8_t) cpu_state_offset(TOP)); + if (reg) { + addbyte(0x83); /*ADD EBX, reg*/ + addbyte(0xc0 | REG_EBX); + addbyte(reg); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe0 | REG_EBX); + addbyte(0x07); + } + addbyte(0x48); /*MOV RBX, ST[EBX*8]*/ + addbyte(0x8b); + addbyte(0x5c); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + + *host_reg1 = REG_EBX; +} +static __inline int64_t +x87_fround16_64(double b) +{ + int16_t a, c; + + switch ((cpu_state.npxc >> 10) & 3) { + case 0: /*Nearest*/ + a = (int16_t) floor(b); + c = (int16_t) floor(b + 1.0); + if ((b - a) < (c - b)) + return (int64_t) a; + else if ((b - a) > (c - b)) + return (int64_t) c; + else + return (a & 1) ? c : a; + case 1: /*Down*/ + return (int64_t) ((int16_t) floor(b)); + case 2: /*Up*/ + return (int64_t) ((int16_t) ceil(b)); + case 3: /*Chop*/ + return (int64_t) ((int16_t) b); + } + + return 0; +} +static __inline int64_t +x87_fround32_64(double b) +{ + int32_t a, c; + + switch ((cpu_state.npxc >> 10) & 3) { + case 0: /*Nearest*/ + a = (int32_t) floor(b); + c = (int32_t) floor(b + 1.0); + if ((b - a) < (c - b)) + return (int64_t) a; + else if ((b - a) > (c - b)) + return (int64_t) c; + else + return (a & 1) ? c : a; + case 1: /*Down*/ + return (int64_t) ((int32_t) floor(b)); + case 2: /*Up*/ + return (int64_t) ((int32_t) ceil(b)); + case 3: /*Chop*/ + return (int64_t) ((int32_t) b); + } + + return 0; +} +static __inline int64_t +x87_fround(double b) +{ + int64_t a, c; + + switch ((cpu_state.npxc >> 10) & 3) { + case 0: /*Nearest*/ + a = (int64_t) floor(b); + c = (int64_t) floor(b + 1.0); + if ((b - a) < (c - b)) + return a; + else if ((b - a) > (c - b)) + return c; + else + return (a & 1) ? c : a; + case 1: /*Down*/ + return (int64_t) floor(b); + case 2: /*Up*/ + return (int64_t) ceil(b); + case 3: /*Chop*/ + return (int64_t) b; + } + + return 0; +} +static __inline int +FP_LOAD_REG_INT_W(int reg) +{ + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + if (reg) { + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(reg); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(7); + } + addbyte(0xf3); /*MOVQ XMM0, ST[EAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + + CALL_FUNC((uintptr_t) x87_fround16_64); + + addbyte(0x93); /*XCHG EBX, EAX*/ + + return REG_EBX; +} +static __inline int +FP_LOAD_REG_INT(int reg) +{ + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + if (reg) { + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(reg); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(7); + } + addbyte(0xf3); /*MOVQ XMM0, ST[EAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + + CALL_FUNC((uintptr_t) x87_fround32_64); + + addbyte(0x93); /*XCHG EBX, EAX*/ + + return REG_EBX; +} +static __inline void +FP_LOAD_REG_INT_Q(int reg, int *host_reg1, int *host_reg2) +{ + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + if (reg) { + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(reg); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(7); + } + + if (codegen_fpu_loaded_iq[cpu_state.TOP] && (cpu_state.tag[cpu_state.TOP] & TAG_UINT64)) { + /*If we know the register was loaded with FILDq in this block and + has not been modified, then we can skip most of the conversion + and just load the 64-bit integer representation directly */ + addbyte(0x48); /*MOV RAX, [ST_i64+EAX*8]*/ + addbyte(0x8b); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(MM)); + + addbyte(0x48); /*XCHG RBX, RAX*/ + addbyte(0x93); + + *host_reg1 = REG_EBX; + + return; + } + + addbyte(0xf6); /*TEST TAG[EAX], TAG_UINT64*/ + addbyte(0x44); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(TAG_UINT64); + + addbyte(0x74); /*JZ +*/ + addbyte(5 + 2); + + addbyte(0x48); /*MOV RAX, [ST_i64+EAX*8]*/ + addbyte(0x8b); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(MM)); + + addbyte(0xeb); /*JMP done*/ + addbyte(6 + 12); + + addbyte(0xf3); /*MOVQ XMM0, ST[EAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + + CALL_FUNC((uintptr_t) x87_fround); + + addbyte(0x48); /*XCHG RBX, RAX*/ + addbyte(0x93); + + *host_reg1 = REG_EBX; +} + +#define FPU_ADD 0 +#define FPU_DIV 4 +#define FPU_DIVR 5 +#define FPU_MUL 1 +#define FPU_SUB 2 +#define FPU_SUBR 3 + +static __inline void +FP_OP_REG(int op, int dst, int src) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + if (dst) { + addbyte(0x83); /*ADD EAX, reg*/ + addbyte(0xc0); + addbyte(dst); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(0x07); + } + if (src) { + addbyte(0x83); /*ADD EBX, reg*/ + addbyte(0xc0 | REG_EBX); + addbyte(src); + addbyte(0x83); /*AND EBX, 7*/ + addbyte(0xe0 | REG_EBX); + addbyte(0x07); + } + addbyte(0x80); /*AND tag[EAX], ~TAG_UINT64*/ + addbyte(0x64); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(TAG_NOT_UINT64); + if (op == FPU_DIVR || op == FPU_SUBR) { + addbyte(0xf3); /*MOVQ XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + } else { + addbyte(0xf3); /*MOVQ XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + } + switch (op) { + case FPU_ADD: + addbyte(0xf2); /*ADDSD XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x58); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + break; + case FPU_DIV: + addbyte(0xf2); /*DIVSD XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x5e); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + break; + case FPU_DIVR: + addbyte(0xf2); /*DIVSD XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x5e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + break; + case FPU_MUL: + addbyte(0xf2); /*MULSD XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x59); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + break; + case FPU_SUB: + addbyte(0xf2); /*SUBSD XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x5c); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + break; + case FPU_SUBR: + addbyte(0xf2); /*SUBSD XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x5c); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + break; + } + addbyte(0x66); /*MOVQ [RSI+RAX*8], XMM0*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); +} + +static __inline void +FP_OP_MEM(int op) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0xf3); /*MOVQ XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x80); /*AND tag[EAX], ~TAG_UINT64*/ + addbyte(0x64); + addbyte(0x05); + addbyte((uint8_t) cpu_state_offset(tag)); + addbyte(TAG_NOT_UINT64); + + switch (op) { + case FPU_ADD: + addbyte(0xf2); /*ADDSD XMM0, XMM1*/ + addbyte(0x0f); + addbyte(0x58); + addbyte(0xc1); + break; + case FPU_DIV: + addbyte(0xf2); /*DIVSD XMM0, XMM1*/ + addbyte(0x0f); + addbyte(0x5e); + addbyte(0xc1); + break; + case FPU_DIVR: + addbyte(0xf2); /*DIVSD XMM1, XMM0*/ + addbyte(0x0f); + addbyte(0x5e); + addbyte(0xc8); + break; + case FPU_MUL: + addbyte(0xf2); /*MULSD XMM0, XMM1*/ + addbyte(0x0f); + addbyte(0x59); + addbyte(0xc1); + break; + case FPU_SUB: + addbyte(0xf2); /*SUBSD XMM0, XMM1*/ + addbyte(0x0f); + addbyte(0x5c); + addbyte(0xc1); + break; + case FPU_SUBR: + addbyte(0xf2); /*SUBSD XMM1, XMM0*/ + addbyte(0x0f); + addbyte(0x5c); + addbyte(0xc8); + break; + } + if (op == FPU_DIVR || op == FPU_SUBR) { + addbyte(0x66); /*MOVQ ST[RAX*8], XMM1*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x4c); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + } else { + addbyte(0x66); /*MOVQ ST[RAX*8], XMM0*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + } +} + +static __inline void +FP_OP_S(int op) +{ + addbyte(0x66); /*MOVD XMM1, EAX*/ + addbyte(0x0f); + addbyte(0x6e); + addbyte(0xc8); + addbyte(0xf3); /*CVTSS2SD XMM1, XMM1*/ + addbyte(0x0f); + addbyte(0x5a); + addbyte(0xc9); + FP_OP_MEM(op); +} +static __inline void +FP_OP_D(int op) +{ + addbyte(0x66); /*MOVQ XMM1, RAX*/ + addbyte(0x48); + addbyte(0x0f); + addbyte(0x6e); + addbyte(0xc8); + if (((cpu_state.npxc >> 10) & 3) && op == FPU_ADD) { + addbyte(0x0f); /*STMXCSR [ESP+8]*/ + addbyte(0xae); + addbyte(0x5c); + addbyte(0x24); + addbyte(0x08); + addbyte(0x8b); /*MOV EAX, [ESP+8]*/ + addbyte(0x44); + addbyte(0x24); + addbyte(0x08); + addbyte(0x25); /*AND EAX, ~(3 << 13)*/ + addlong(~(3 << 10)); + addbyte(0x0d); /*OR EAX, (npxc & (3 << 10)) << 3*/ + addlong((cpu_state.npxc & (3 << 10)) << 3); + addbyte(0x89); /*MOV [RSP+12], EAX*/ + addbyte(0x44); + addbyte(0x24); + addbyte(0x0c); + addbyte(0x0f); /*LDMXCSR [RSP+12]*/ + addbyte(0xae); + addbyte(0x54); + addbyte(0x24); + addbyte(0x0c); + } + FP_OP_MEM(op); + if (((cpu_state.npxc >> 10) & 3) && op == FPU_ADD) { + addbyte(0x0f); /*LDMXCSR [RSP+8]*/ + addbyte(0xae); + addbyte(0x54); + addbyte(0x24); + addbyte(0x08); + } +} +static __inline void +FP_OP_IW(int op) +{ + addbyte(0x0f); /*MOVSX EAX, AX*/ + addbyte(0xbf); + addbyte(0xc0); + addbyte(0xf2); /*CVTSI2SD XMM1, EAX*/ + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc8); + FP_OP_MEM(op); +} +static __inline void +FP_OP_IL(int op) +{ + addbyte(0xf2); /*CVTSI2SD XMM1, EAX*/ + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc8); + FP_OP_MEM(op); +} + +static __inline void +FP_COMPARE_REG(int dst, int src) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x89); /*MOV EBX, EAX*/ + addbyte(0xc3); + if (src || dst) { + addbyte(0x83); /*ADD EAX, 1*/ + addbyte(0xc0); + addbyte(src ? src : dst); + addbyte(0x83); /*AND EAX, 7*/ + addbyte(0xe0); + addbyte(7); + } + + addbyte(0x8a); /*MOV CL, [npxs+1]*/ + addbyte(0x4d); + addbyte((uint8_t) cpu_state_offset(npxs) + 1); + addbyte(0x80); /*AND CL, ~(C0|C2|C3)*/ + addbyte(0xe1); + addbyte((~(C0 | C2 | C3)) >> 8); + + if (src) { + addbyte(0xf3); /*MOVQ XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x66); /*COMISD XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x2f); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + } else { + addbyte(0xf3); /*MOVQ XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x66); /*COMISD XMM0, ST[RBX*8]*/ + addbyte(0x0f); + addbyte(0x2f); + addbyte(0x44); + addbyte(0xdd); + addbyte((uint8_t) cpu_state_offset(ST)); + } + + addbyte(0x9f); /*LAHF*/ + addbyte(0x80); /*AND AH, (C0|C2|C3)*/ + addbyte(0xe4); + addbyte((C0 | C2 | C3) >> 8); + addbyte(0x08); /*OR CL, AH*/ + addbyte(0xe1); + addbyte(0x88); /*MOV [npxs+1], CL*/ + addbyte(0x4d); + addbyte((uint8_t) cpu_state_offset(npxs) + 1); +} + +static __inline void +FP_COMPARE_MEM(void) +{ + addbyte(0x8b); /*MOV EAX, [TOP]*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + + addbyte(0x8a); /*MOV CL, [npxs+1]*/ + addbyte(0x4d); + addbyte((uint8_t) cpu_state_offset(npxs) + 1); + addbyte(0xf3); /*MOVQ XMM0, ST[RAX*8]*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44); + addbyte(0xc5); + addbyte((uint8_t) cpu_state_offset(ST)); + addbyte(0x80); /*AND CL, ~(C0|C2|C3)*/ + addbyte(0xe1); + addbyte((~(C0 | C2 | C3)) >> 8); + addbyte(0x66); /*COMISD XMM0, XMM1*/ + addbyte(0x0f); + addbyte(0x2f); + addbyte(0xc1); + addbyte(0x9f); /*LAHF*/ + addbyte(0x80); /*AND AH, (C0|C2|C3)*/ + addbyte(0xe4); + addbyte((C0 | C2 | C3) >> 8); + addbyte(0x08); /*OR CL, AH*/ + addbyte(0xe1); + addbyte(0x88); /*MOV [npxs+1], CL*/ + addbyte(0x4d); + addbyte((uint8_t) cpu_state_offset(npxs) + 1); +} +static __inline void +FP_COMPARE_S(void) +{ + addbyte(0x66); /*MOVD XMM1, EAX*/ + addbyte(0x0f); + addbyte(0x6e); + addbyte(0xc8); + addbyte(0xf3); /*CVTSS2SD XMM1, XMM1*/ + addbyte(0x0f); + addbyte(0x5a); + addbyte(0xc9); + FP_COMPARE_MEM(); +} +static __inline void +FP_COMPARE_D(void) +{ + addbyte(0x66); /*MOVQ XMM1, RAX*/ + addbyte(0x48); + addbyte(0x0f); + addbyte(0x6e); + addbyte(0xc8); + FP_COMPARE_MEM(); +} +static __inline void +FP_COMPARE_IW(void) +{ + addbyte(0x0f); /*MOVSX EAX, AX*/ + addbyte(0xbf); + addbyte(0xc0); + addbyte(0xf2); /*CVTSI2SD XMM1, EAX*/ + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc8); + FP_COMPARE_MEM(); +} +static __inline void +FP_COMPARE_IL(void) +{ + addbyte(0xf2); /*CVTSI2SD XMM1, EAX*/ + addbyte(0x0f); + addbyte(0x2a); + addbyte(0xc8); + FP_COMPARE_MEM(); +} + +static __inline void +UPDATE_NPXC(int reg) +{ +} + +static __inline void +SET_BITS(uintptr_t addr, uint32_t val) +{ + if (IS_32_ADDR(addr)) { + if (val & ~0xff) { + addbyte(0x81); /*OR [addr], val*/ + addbyte(0x0c); + addbyte(0x25); + addlong(addr); + addlong(val); + } else { + addbyte(0x80); /*OR [addr], val*/ + addbyte(0x0c); + addbyte(0x25); + addlong(addr); + addbyte(val); + } + } else { + addbyte(0x48); /*MOV RAX, &addr*/ + addbyte(0xb8 | REG_EAX); + addquad(addr); + if (val & ~0xff) { + addbyte(0x81); /*OR [RAX], val*/ + addbyte(0x08); + addlong(val); + } else { + addbyte(0x80); /*OR [RAX], val*/ + addbyte(0x08); + addbyte(val); + } + } +} + +static __inline void +CLEAR_BITS(uintptr_t addr, uint32_t val) +{ + if (IS_32_ADDR(addr)) { + if (val & ~0xff) { + addbyte(0x81); /*AND [addr], val*/ + addbyte(0x24); + addbyte(0x25); + addlong(addr); + addlong(~val); + } else { + addbyte(0x80); /*AND [addr], val*/ + addbyte(0x24); + addbyte(0x25); + addlong(addr); + addbyte(~val); + } + } else { + addbyte(0x48); /*MOV RAX, &addr*/ + addbyte(0xb8 | REG_EAX); + addquad(addr); + if (val & ~0xff) { + addbyte(0x81); /*AND [RAX], val*/ + addbyte(0x20); + addlong(~val); + } else { + addbyte(0x80); /*AND [RAX], val*/ + addbyte(0x20); + addbyte(~val); + } + } +} + +#define LOAD_Q_REG_1 REG_EAX +#define LOAD_Q_REG_2 REG_EDX + +static __inline void +MMX_ENTER(void) +{ + if (codegen_mmx_entered) + return; + + if (IS_32_ADDR(&cr0)) { + addbyte(0xf6); /*TEST cr0, 0xc*/ + addbyte(0x04); + addbyte(0x25); + addlong((uintptr_t) &cr0); + addbyte(0x0c); + } else { + addbyte(0x48); /*MOV RAX, &cr0*/ + addbyte(0xb8 | REG_EAX); + addquad((uint64_t) &cr0); + addbyte(0xf6); /*TEST [RAX], 0xc*/ + addbyte(0 | (REG_EAX << 3)); + addbyte(0x0c); + } + addbyte(0x74); /*JZ +*/ + addbyte(7 + 5 + 12 + 5); + addbyte(0xC7); /*MOVL [oldpc],op_old_pc*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(oldpc)); + addlong(op_old_pc); + load_param_1_32(&codeblock[block_current], 7); + CALL_FUNC((uintptr_t) x86_int); + addbyte(0xe9); /*JMP end*/ + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); + + addbyte(0x31); /*XOR EAX, EAX*/ + addbyte(0xc0); + addbyte(0xc6); /*MOV ISMMX, 1*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(ismmx)); + addbyte(1); + addbyte(0x89); /*MOV TOP, EAX*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(TOP)); + addbyte(0x89); /*MOV tag, EAX*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(tag[0])); + addbyte(0x89); /*MOV tag+4, EAX*/ + addbyte(0x45); + addbyte((uint8_t) cpu_state_offset(tag[4])); + + codegen_mmx_entered = 1; +} + +extern int mmx_ebx_ecx_loaded; + +static __inline int +LOAD_MMX_D(int guest_reg) +{ + int host_reg = REG_EBX; + + addbyte(0x8b); /*MOV EBX, reg*/ + addbyte(0x44 | (host_reg << 3)); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].l[0])); + + return host_reg; +} +static __inline void +LOAD_MMX_Q(int guest_reg, int *host_reg1, int *host_reg2) +{ + int host_reg = REG_EBX; + + if (host_reg & 8) + addbyte(0x4c); + else + addbyte(0x48); + addbyte(0x8b); /*MOV RBX, reg*/ + addbyte(0x44 | ((host_reg & 7) << 3)); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].q)); + + *host_reg1 = host_reg; +} +static __inline int +LOAD_MMX_Q_MMX(int guest_reg) +{ + int dst_reg = find_host_xmm_reg(); + host_reg_xmm_mapping[dst_reg] = 100; + + addbyte(0xf3); /*MOV XMMx, reg*/ + addbyte(0x0f); + addbyte(0x7e); + addbyte(0x44 | ((dst_reg & 7) << 3)); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].q)); + + return dst_reg; +} + +static __inline int +LOAD_INT_TO_MMX(int src_reg1, int src_reg2) +{ + int dst_reg = find_host_xmm_reg(); + host_reg_xmm_mapping[dst_reg] = 100; + + addbyte(0x66); /*MOVQ host_reg, src_reg1*/ + if (src_reg1 & 8) + addbyte(0x49); + else + addbyte(0x48); + addbyte(0x0f); + addbyte(0x6e); + addbyte(0xc0 | (dst_reg << 3) | (src_reg1 & 7)); + + return dst_reg; +} + +static __inline void +STORE_MMX_LQ(int guest_reg, int host_reg1) +{ + addbyte(0xC7); /*MOVL [reg],0*/ + addbyte(0x44); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].l[1])); + addlong(0); + if (host_reg1 & 8) + addbyte(0x44); + addbyte(0x89); /*MOVL [reg],host_reg*/ + addbyte(0x44 | ((host_reg1 & 7) << 3)); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].l[0])); +} +static __inline void +STORE_MMX_Q(int guest_reg, int host_reg1, int host_reg2) +{ + if (host_reg1 & 8) + addbyte(0x4c); + else + addbyte(0x48); + addbyte(0x89); /*MOV [reg],host_reg*/ + addbyte(0x44 | ((host_reg1 & 7) << 3)); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].l[0])); +} +static __inline void +STORE_MMX_Q_MMX(int guest_reg, int host_reg) +{ + addbyte(0x66); /*MOVQ [guest_reg],host_reg*/ + addbyte(0x0f); + addbyte(0xd6); + addbyte(0x44 | (host_reg << 3)); + addbyte(0x25); + addbyte((uint8_t) cpu_state_offset(MM[guest_reg].q)); +} + +#define MMX_x86_OP(name, opcode) \ + static __inline void MMX_##name(int dst_reg, int src_reg) \ + { \ + addbyte(0x66); /*op dst_reg, src_reg*/ \ + addbyte(0x0f); \ + addbyte(opcode); \ + addbyte(0xc0 | (dst_reg << 3) | src_reg); \ + } + +MMX_x86_OP(AND, 0xdb) + MMX_x86_OP(ANDN, 0xdf) + MMX_x86_OP(OR, 0xeb) + MMX_x86_OP(XOR, 0xef) + + MMX_x86_OP(ADDB, 0xfc) + MMX_x86_OP(ADDW, 0xfd) + MMX_x86_OP(ADDD, 0xfe) + MMX_x86_OP(ADDSB, 0xec) + MMX_x86_OP(ADDSW, 0xed) + MMX_x86_OP(ADDUSB, 0xdc) + MMX_x86_OP(ADDUSW, 0xdd) + + MMX_x86_OP(SUBB, 0xf8) + MMX_x86_OP(SUBW, 0xf9) + MMX_x86_OP(SUBD, 0xfa) + MMX_x86_OP(SUBSB, 0xe8) + MMX_x86_OP(SUBSW, 0xe9) + MMX_x86_OP(SUBUSB, 0xd8) + MMX_x86_OP(SUBUSW, 0xd9) + + MMX_x86_OP(PUNPCKLBW, 0x60); +MMX_x86_OP(PUNPCKLWD, 0x61); +MMX_x86_OP(PUNPCKLDQ, 0x62); +MMX_x86_OP(PCMPGTB, 0x64); +MMX_x86_OP(PCMPGTW, 0x65); +MMX_x86_OP(PCMPGTD, 0x66); + +MMX_x86_OP(PCMPEQB, 0x74); +MMX_x86_OP(PCMPEQW, 0x75); +MMX_x86_OP(PCMPEQD, 0x76); + +MMX_x86_OP(PSRLW, 0xd1); +MMX_x86_OP(PSRLD, 0xd2); +MMX_x86_OP(PSRLQ, 0xd3); +MMX_x86_OP(PSRAW, 0xe1); +MMX_x86_OP(PSRAD, 0xe2); +MMX_x86_OP(PSLLW, 0xf1); +MMX_x86_OP(PSLLD, 0xf2); +MMX_x86_OP(PSLLQ, 0xf3); + +MMX_x86_OP(PMULLW, 0xd5); +MMX_x86_OP(PMULHW, 0xe5); +MMX_x86_OP(PMADDWD, 0xf5); + +static __inline void +MMX_PACKSSWB(int dst_reg, int src_reg) +{ + addbyte(0x66); /*PACKSSWB dst_reg, src_reg*/ + addbyte(0x0f); + addbyte(0x63); + addbyte(0xc0 | (dst_reg << 3) | src_reg); + addbyte(0x66); /*PSHUFD dst_reg, dst_reg*/ + addbyte(0x0f); + addbyte(0x70); + addbyte(0xc0 | (dst_reg << 3) | dst_reg); + addbyte(0x08); +} +static __inline void +MMX_PACKUSWB(int dst_reg, int src_reg) +{ + addbyte(0x66); /*PACKUSWB dst_reg, src_reg*/ + addbyte(0x0f); + addbyte(0x67); + addbyte(0xc0 | (dst_reg << 3) | src_reg); + addbyte(0x66); /*PSHUFD dst_reg, dst_reg*/ + addbyte(0x0f); + addbyte(0x70); + addbyte(0xc0 | (dst_reg << 3) | dst_reg); + addbyte(0x08); +} +static __inline void +MMX_PACKSSDW(int dst_reg, int src_reg) +{ + addbyte(0x66); /*PACKSSDW dst_reg, src_reg*/ + addbyte(0x0f); + addbyte(0x6b); + addbyte(0xc0 | (dst_reg << 3) | src_reg); + addbyte(0x66); /*PSHUFD dst_reg, dst_reg*/ + addbyte(0x0f); + addbyte(0x70); + addbyte(0xc0 | (dst_reg << 3) | dst_reg); + addbyte(0x08); +} +static __inline void +MMX_PUNPCKHBW(int dst_reg, int src_reg) +{ + addbyte(0x66); /*PUNPCKLBW dst_reg, src_reg*/ + addbyte(0x0f); + addbyte(0x60); + addbyte(0xc0 | (dst_reg << 3) | src_reg); + addbyte(0x66); /*PSHUFD dst_reg, dst_reg*/ + addbyte(0x0f); + addbyte(0x70); + addbyte(0xc0 | (dst_reg << 3) | dst_reg); + addbyte(0x0e); +} +static __inline void +MMX_PUNPCKHWD(int dst_reg, int src_reg) +{ + addbyte(0x66); /*PUNPCKLWD dst_reg, src_reg*/ + addbyte(0x0f); + addbyte(0x61); + addbyte(0xc0 | (dst_reg << 3) | src_reg); + addbyte(0x66); /*PSHUFD dst_reg, dst_reg*/ + addbyte(0x0f); + addbyte(0x70); + addbyte(0xc0 | (dst_reg << 3) | dst_reg); + addbyte(0x0e); +} +static __inline void +MMX_PUNPCKHDQ(int dst_reg, int src_reg) +{ + addbyte(0x66); /*PUNPCKLDQ dst_reg, src_reg*/ + addbyte(0x0f); + addbyte(0x62); + addbyte(0xc0 | (dst_reg << 3) | src_reg); + addbyte(0x66); /*PSHUFD dst_reg, dst_reg*/ + addbyte(0x0f); + addbyte(0x70); + addbyte(0xc0 | (dst_reg << 3) | dst_reg); + addbyte(0x0e); +} + +static __inline void +MMX_PSRLW_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSRLW dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x71); + addbyte(0xc0 | dst_reg | 0x10); + addbyte(amount); +} +static __inline void +MMX_PSRAW_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSRAW dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x71); + addbyte(0xc0 | dst_reg | 0x20); + addbyte(amount); +} +static __inline void +MMX_PSLLW_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSLLW dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x71); + addbyte(0xc0 | dst_reg | 0x30); + addbyte(amount); +} + +static __inline void +MMX_PSRLD_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSRLD dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x72); + addbyte(0xc0 | dst_reg | 0x10); + addbyte(amount); +} +static __inline void +MMX_PSRAD_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSRAD dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x72); + addbyte(0xc0 | dst_reg | 0x20); + addbyte(amount); +} +static __inline void +MMX_PSLLD_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSLLD dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x72); + addbyte(0xc0 | dst_reg | 0x30); + addbyte(amount); +} + +static __inline void +MMX_PSRLQ_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSRLQ dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x73); + addbyte(0xc0 | dst_reg | 0x10); + addbyte(amount); +} +static __inline void +MMX_PSRAQ_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSRAQ dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x73); + addbyte(0xc0 | dst_reg | 0x20); + addbyte(amount); +} +static __inline void +MMX_PSLLQ_imm(int dst_reg, int amount) +{ + addbyte(0x66); /*PSLLQ dst_reg, amount*/ + addbyte(0x0f); + addbyte(0x73); + addbyte(0xc0 | dst_reg | 0x30); + addbyte(amount); +} + +static __inline void +SAVE_EA(void) +{ + addbyte(0x89); /*MOV [ESP+0x24], EAX*/ + addbyte(0x44); + addbyte(0x24); + addbyte(0x24); +} +static __inline void +LOAD_EA(void) +{ + addbyte(0x8b); /*MOV EAX, [ESP+0x24]*/ + addbyte(0x44); + addbyte(0x24); + addbyte(0x24); +} + +#define MEM_CHECK_WRITE_B MEM_CHECK_WRITE + +static __inline void +MEM_CHECK_WRITE(x86seg *seg) +{ + uint8_t *jump1, *jump2, *jump3 = NULL; + + CHECK_SEG_WRITE(seg); + + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ESI, ESI*/ + addbyte(0xf6); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOV ESI, seg->base*/ + addbyte(0x34); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ESI, [RSI]*/ + addbyte(0x36); + } + + /*seg = ESI, addr = EAX*/ + + if (IS_32_ADDR(&cr0)) { + addbyte(0x83); /*CMP cr0, 0*/ + addbyte(0x3c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &cr0); + addbyte(0); + } else { + addbyte(0x48); /*MOV RDI, &cr0*/ + addbyte(0xbf); + addquad((uint64_t) &cr0); + addbyte(0x83); /*CMPL [RDI], 0*/ + addbyte(0x3f); + addbyte(0); + } + addbyte(0x67); /*LEA EDI, [EAX+ESI]*/ + addbyte(0x8d); + addbyte(0x3c); + addbyte(0x30); + addbyte(0x79); /*JNS +*/ + jump1 = &codeblock[block_current].data[block_pos]; + addbyte(0); + addbyte(0xc1); /*SHR EDI, 12*/ + addbyte(0xef); + addbyte(12); + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xfe); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + jump3 = &codeblock[block_current].data[block_pos]; + addbyte(0); + } + if (IS_32_ADDR(writelookup2)) { + addbyte(0x83); /*CMP writelookup2[RDI*8],-1*/ + addbyte(0x3c); + addbyte(0xfd); + addlong((uint32_t) (uintptr_t) writelookup2); + addbyte(-1); + } else { + addbyte(0x48); /*MOV RCX, writelookup2*/ + addbyte(0xb9); + addquad((uint64_t) writelookup2); + addbyte(0x83); /*CMP [RCX+RDI*8], -1*/ + addbyte(0x3c); + addbyte(0xf9); + addbyte(-1); + } + addbyte(0x75); /*JNE +*/ + jump2 = &codeblock[block_current].data[block_pos]; + addbyte(0); + + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) + *jump3 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump3 - 1; + /*slowpath:*/ + addbyte(0x67); /*LEA EDI, [EAX+ESI]*/ + addbyte(0x8d); + addbyte(0x3c); + addbyte(0x30); + + load_param_1_reg_32(REG_EDI); + load_param_2_32(&codeblock[block_current], 1); + + call(&codeblock[block_current], (uintptr_t) mmutranslatereal32); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE mem_abrt_rout*/ + addbyte(0x85); + addlong((uintptr_t) &codeblock[block_current].data[BLOCK_EXIT_OFFSET] - ((uintptr_t) (&codeblock[block_current].data[block_pos]) + 4)); + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; + *jump2 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump2 - 1; + + LOAD_EA(); +} + +static __inline void +MEM_CHECK_WRITE_W(x86seg *seg) +{ + uint8_t *jump1, *jump2, *jump3, *jump4 = NULL; + int jump_pos; + + CHECK_SEG_WRITE(seg); + + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ESI, ESI*/ + addbyte(0xf6); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOV ESI, seg->base*/ + addbyte(0x34); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ESI, [RSI]*/ + addbyte(0x36); + } + + /*seg = ESI, addr = EAX*/ + + if (IS_32_ADDR(&cr0)) { + addbyte(0x83); /*CMP cr0, 0*/ + addbyte(0x3c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &cr0); + addbyte(0); + } else { + addbyte(0x48); /*MOV RDI, &cr0*/ + addbyte(0xbf); + addquad((uint64_t) &cr0); + addbyte(0x83); /*CMPL [RDI], 0*/ + addbyte(0x3f); + addbyte(0); + } + addbyte(0x67); /*LEA EDI, [EAX+ESI]*/ + addbyte(0x8d); + addbyte(0x3c); + addbyte(0x30); + addbyte(0x79); /*JNS +*/ + jump1 = &codeblock[block_current].data[block_pos]; + addbyte(0); + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xfe); + addbyte(-1); + } + addbyte(0x8d); /*LEA ESI, 1[EDI]*/ + addbyte(0x77); + addbyte(0x01); + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x74); /*JE slowpath*/ + jump4 = &codeblock[block_current].data[block_pos]; + addbyte(0); + } + addbyte(0x89); /*MOV EBX, EDI*/ + addbyte(0xfb); + addbyte(0xc1); /*SHR EDI, 12*/ + addbyte(0xef); + addbyte(12); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xee); + addbyte(12); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x83); /*CMP writelookup2[RDI*8],-1*/ + addbyte(0x3c); + addbyte(0xfd); + addlong((uint32_t) (uintptr_t) writelookup2); + addbyte(-1); + } else { + addbyte(0x48); /*MOV RAX, writelookup2*/ + addbyte(0xb8); + addquad((uint64_t) writelookup2); + addbyte(0x83); /*CMP [RAX+RDI*8], -1*/ + addbyte(0x3c); + addbyte(0xf8); + addbyte(-1); + } + addbyte(0x74); /*JE +*/ + jump2 = &codeblock[block_current].data[block_pos]; + addbyte(0); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x83); /*CMP writelookup2[RSI*8],-1*/ + addbyte(0x3c); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + addbyte(-1); + } else { + addbyte(0x83); /*CMP [RAX+RSI*8], -1*/ + addbyte(0x3c); + addbyte(0xf0); + addbyte(-1); + } + addbyte(0x75); /*JNE +*/ + jump3 = &codeblock[block_current].data[block_pos]; + addbyte(0); + + /*slowpath:*/ + *jump2 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump2 - 1; + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) + *jump4 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump4 - 1; + jump_pos = block_pos; + load_param_1_reg_32(REG_EBX); + load_param_2_32(&codeblock[block_current], 1); + call(&codeblock[block_current], (uintptr_t) mmutranslatereal32); + addbyte(0x83); /*ADD EBX, 1*/ + addbyte(0xc3); + addbyte(1); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE mem_abrt_rout*/ + addbyte(0x85); + addlong((uintptr_t) &codeblock[block_current].data[BLOCK_EXIT_OFFSET] - ((uintptr_t) (&codeblock[block_current].data[block_pos]) + 4)); + /*If bits 0-11 of the address are now 0 then this crosses a page, so loop back*/ + addbyte(0xf7); /*TEST $fff, EBX*/ + addbyte(0xc3); + addlong(0xfff); + addbyte(0x74); /*JNE slowpath*/ + addbyte(jump_pos - block_pos - 1); + + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; + *jump3 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump3 - 1; + + LOAD_EA(); +} + +static __inline void +MEM_CHECK_WRITE_L(x86seg *seg) +{ + uint8_t *jump1, *jump2, *jump3, *jump4 = NULL; + int jump_pos; + + CHECK_SEG_WRITE(seg); + + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ESI, ESI*/ + addbyte(0xf6); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOV ESI, seg->base*/ + addbyte(0x34); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &addr*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ESI, [RSI]*/ + addbyte(0x36); + } + + /*seg = ESI, addr = EAX*/ + + if (IS_32_ADDR(&cr0)) { + addbyte(0x83); /*CMP cr0, 0*/ + addbyte(0x3c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &cr0); + addbyte(0); + } else { + addbyte(0x48); /*MOV RDI, &cr0*/ + addbyte(0xbf); + addquad((uint64_t) &cr0); + addbyte(0x83); /*CMPL [RDI], 0*/ + addbyte(0x3f); + addbyte(0); + } + addbyte(0x67); /*LEA EDI, [EAX+ESI]*/ + addbyte(0x8d); + addbyte(0x3c); + addbyte(0x30); + addbyte(0x79); /*JNS +*/ + jump1 = &codeblock[block_current].data[block_pos]; + addbyte(0); + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xfe); + addbyte(-1); + } + addbyte(0x8d); /*LEA ESI, 3[EDI]*/ + addbyte(0x77); + addbyte(0x03); + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x74); /*JE slowpath*/ + jump4 = &codeblock[block_current].data[block_pos]; + addbyte(0); + } + addbyte(0x89); /*MOV EBX, EDI*/ + addbyte(0xfb); + addbyte(0xc1); /*SHR EDI, 12*/ + addbyte(0xef); + addbyte(12); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xee); + addbyte(12); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x83); /*CMP writelookup2[RDI*8],-1*/ + addbyte(0x3c); + addbyte(0xfd); + addlong((uint32_t) (uintptr_t) writelookup2); + addbyte(-1); + } else { + addbyte(0x48); /*MOV RAX, writelookup2*/ + addbyte(0xb8); + addquad((uint64_t) writelookup2); + addbyte(0x83); /*CMP [RAX+RDI*8], -1*/ + addbyte(0x3c); + addbyte(0xf8); + addbyte(-1); + } + addbyte(0x74); /*JE slowpath*/ + jump2 = &codeblock[block_current].data[block_pos]; + addbyte(0); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x83); /*CMP writelookup2[RSI*8],-1*/ + addbyte(0x3c); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + addbyte(-1); + } else { + addbyte(0x83); /*CMP [RAX+RSI*8], -1*/ + addbyte(0x3c); + addbyte(0xf0); + addbyte(-1); + } + addbyte(0x75); /*JNE +*/ + jump3 = &codeblock[block_current].data[block_pos]; + addbyte(0); + + /*slowpath:*/ + *jump2 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump2 - 1; + if (!(seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) && !(seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) + *jump4 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump4 - 1; + jump_pos = block_pos; + load_param_1_reg_32(REG_EBX); + load_param_2_32(&codeblock[block_current], 1); + call(&codeblock[block_current], (uintptr_t) mmutranslatereal32); + addbyte(0x83); /*ADD EBX, 3*/ + addbyte(0xc3); + addbyte(3); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE mem_abrt_rout*/ + addbyte(0x85); + addlong((uintptr_t) &codeblock[block_current].data[BLOCK_EXIT_OFFSET] - ((uintptr_t) (&codeblock[block_current].data[block_pos]) + 4)); + /*If bits 0-11 of the address are now 0 then this crosses a page, so loop back*/ + addbyte(0xf7); /*TEST $ffc, EBX*/ + addbyte(0xc3); + addlong(0xffc); + addbyte(0x74); /*JE slowpath*/ + addbyte(jump_pos - block_pos - 1); + + *jump1 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump1 - 1; + *jump3 = (uintptr_t) &codeblock[block_current].data[block_pos] - (uintptr_t) jump3 - 1; + + LOAD_EA(); +} + +static __inline int +MEM_LOAD_ADDR_EA_B_NO_ABRT(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(3 + 2); + addbyte(0x8b); /*MOV AL,[RDI+RSI]*/ + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmembl); + addbyte(0x89); /*MOV ECX, EAX*/ + addbyte(0xc1); + /*done:*/ + + host_reg_mapping[REG_ECX] = 8; + + return REG_ECX; +} +static __inline int +MEM_LOAD_ADDR_EA_W_NO_ABRT(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 1*/ + addbyte(0xc7); + addlong(1); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + 4 + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(4 + 2); + addbyte(0x66); /*MOV AX,[RDI+RSI]*/ + addbyte(0x8b); + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmemwl); + addbyte(0x89); /*MOV ECX, EAX*/ + addbyte(0xc1); + /*done:*/ + + host_reg_mapping[REG_ECX] = 8; + + return REG_ECX; +} +static __inline int +MEM_LOAD_ADDR_EA_L_NO_ABRT(x86seg *seg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR ECX, ECX*/ + addbyte(0xc9); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL ECX, seg->base*/ + addbyte(0x0c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV ECX, [RSI]*/ + addbyte(0x0e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,ECX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x08); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 3*/ + addbyte(0xc7); + addlong(3); + if (IS_32_ADDR(readlookup2)) { + addbyte(0x67); /*MOV RSI, readlookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) readlookup2); + } else { + addbyte(0x48); /*MOV RDX, readlookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) readlookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + 3 + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(3 + 2); + addbyte(0x8b); /*MOV EAX,[RDI+RSI]*/ + addbyte(0x04); + addbyte(REG_EDI | (REG_ESI << 3)); + addbyte(0xeb); /*JMP done*/ + addbyte(2 + 2 + 12); + /*slowpath:*/ + addbyte(0x01); /*ADD ECX,EAX*/ + addbyte(0xc1); + load_param_1_reg_32(REG_ECX); + call_long((uintptr_t) readmemll); + addbyte(0x89); /*MOV ECX, EAX*/ + addbyte(0xc1); + /*done:*/ + + host_reg_mapping[REG_ECX] = 8; + + return REG_ECX; +} + +static __inline void +MEM_STORE_ADDR_EA_B_NO_ABRT(x86seg *seg, int host_reg) +{ + if (host_reg & 0x10) { + /*Handle high byte of register*/ + if (host_reg & 8) { + addbyte(0x45); /*MOVL R8, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3)); + } else { + addbyte(0x41); /*MOVL R8, host_reg*/ + addbyte(0x89); + addbyte(0xc0 | ((host_reg & 7) << 3)); + } + addbyte(0x66); /*SHR R8, 8*/ + addbyte(0x41); + addbyte(0xc1); + addbyte(0xe8); + addbyte(8); + host_reg = 8; + } + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR EBX, EBX*/ + addbyte(0xdb); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL EBX, seg->base*/ + addbyte(0x1c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV EBX, [RSI]*/ + addbyte(0x1e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,EBX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x18); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(((host_reg & 8) ? 4 : 3) + 2); + if (host_reg & 8) { + addbyte(0x44); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x88); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x88); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + if (host_reg & 8) { + addbyte(2 + 2 + 3 + 12); + } else { + addbyte(2 + 2 + 2 + 12); + } + /*slowpath:*/ + load_param_2_reg_32(host_reg); + addbyte(0x01); /*ADD EBX,EAX*/ + addbyte(0xc3); + load_param_1_reg_32(REG_EBX); + call_long((uintptr_t) writemembl); + /*done:*/ +} +static __inline void +MEM_STORE_ADDR_EA_W_NO_ABRT(x86seg *seg, int host_reg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR EBX, EBX*/ + addbyte(0xdb); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL EBX, seg->base*/ + addbyte(0x1c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV EBX, [RSI]*/ + addbyte(0x1e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,EBX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x18); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 1*/ + addbyte(0xc7); + addlong(1); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + ((host_reg & 8) ? 5 : 4) + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(((host_reg & 8) ? 5 : 4) + 2); + if (host_reg & 8) { + addbyte(0x66); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x44); + addbyte(0x89); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x66); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x89); + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + if (host_reg & 8) { + addbyte(2 + 2 + 3 + 12); + } else { + addbyte(2 + 2 + 2 + 12); + } + /*slowpath:*/ + load_param_2_reg_32(host_reg); + addbyte(0x01); /*ADD EBX,EAX*/ + addbyte(0xc3); + load_param_1_reg_32(REG_EBX); + call_long((uintptr_t) writememwl); + /*done:*/ +} +static __inline void +MEM_STORE_ADDR_EA_L_NO_ABRT(x86seg *seg, int host_reg) +{ + if ((seg == &cpu_state.seg_ds && codegen_flat_ds && !(cpu_cur_status & CPU_STATUS_NOTFLATDS)) || (seg == &cpu_state.seg_ss && codegen_flat_ss && !(cpu_cur_status & CPU_STATUS_NOTFLATSS))) { + addbyte(0x31); /*XOR EBX, EBX*/ + addbyte(0xdb); + } else if (IS_32_ADDR(&seg->base)) { + addbyte(0x8b); /*MOVL EBX, seg->base*/ + addbyte(0x1c); + addbyte(0x25); + addlong((uint32_t) (uintptr_t) &seg->base); + } else { + addbyte(0x48); /*MOV RSI, &seg->base*/ + addbyte(0xb8 | REG_ESI); + addquad((uint64_t) &seg->base); + addbyte(0x8b); /*MOV EBX, [RSI]*/ + addbyte(0x1e); + } + /* !--- ALERT: Crash-fixing patch begin. */ + addbyte(0x48); /*XOR RSI, RSI*/ + addbyte(0x31); + addbyte(0xf6); + addbyte(0x48); /*XOR RDI, RDI*/ + addbyte(0x31); + addbyte(0xff); + /* !--- ALERT: Crash-fixing patch end. */ + addbyte(0x67); /*LEA ESI, (EAX,EBX)*/ + addbyte(0x8d); + addbyte(0x34); + addbyte(0x18); + addbyte(0x89); /*MOV EDI, ESI*/ + addbyte(0xf7); + addbyte(0xc1); /*SHR ESI, 12*/ + addbyte(0xe8 | REG_ESI); + addbyte(12); + addbyte(0xf7); /*TEST EDI, 3*/ + addbyte(0xc7); + addlong(3); + if (IS_32_ADDR(writelookup2)) { + addbyte(0x67); /*MOV RSI, writelookup2[ESI*8]*/ + addbyte(0x48); + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf5); + addlong((uint32_t) (uintptr_t) writelookup2); + } else { + addbyte(0x48); /*MOV RDX, writelookup2*/ + addbyte(0xb8 | REG_EDX); + addquad((uint64_t) writelookup2); + addbyte(0x48); /*MOV RSI, [RDX+RSI*8]*/ + addbyte(0x8b); + addbyte(0x34); + addbyte(0xf2); + } + addbyte(0x75); /*JNE slowpath*/ + addbyte(3 + 2 + ((host_reg & 8) ? 4 : 3) + 2); + addbyte(0x83); /*CMP ESI, -1*/ + addbyte(0xf8 | REG_ESI); + addbyte(-1); + addbyte(0x74); /*JE slowpath*/ + addbyte(((host_reg & 8) ? 4 : 3) + 2); + if (host_reg & 8) { + addbyte(0x44); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x89); + addbyte(0x04 | ((host_reg & 7) << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } else { + addbyte(0x89); /*MOV [RDI+RSI],host_reg*/ + addbyte(0x04 | (host_reg << 3)); + addbyte(REG_EDI | (REG_ESI << 3)); + } + addbyte(0xeb); /*JMP done*/ + if (host_reg & 8) { + addbyte(2 + 2 + 3 + 12); + } else { + addbyte(2 + 2 + 2 + 12); + } + /*slowpath:*/ + load_param_2_reg_32(host_reg); + addbyte(0x01); /*ADD EBX,EAX*/ + addbyte(0xc3); + load_param_1_reg_32(REG_EBX); + call_long((uintptr_t) writememll); + /*done:*/ +} + +static __inline void +LOAD_SEG(int host_reg, void *seg) +{ + load_param_2_64(&codeblock[block_current], (uint64_t) seg); + load_param_1_reg_32(host_reg); + CALL_FUNC((uintptr_t) loadseg); + addbyte(0x80); /*CMP abrt, 0*/ + addbyte(0x7d); + addbyte((uint8_t) cpu_state_offset(abrt)); + addbyte(0); + addbyte(0x0f); /*JNE end*/ + addbyte(0x85); + addlong(BLOCK_EXIT_OFFSET - (block_pos + 4)); +} diff --git a/src/cpu/codegen_timing_p6 - Cópia.c b/src/cpu/codegen_timing_p6 - Cópia.c new file mode 100644 index 000000000..cce2ebe2c --- /dev/null +++ b/src/cpu/codegen_timing_p6 - Cópia.c @@ -0,0 +1,2162 @@ +/*Basic P6 timing model by plant/nerd73. Based on the K6 timing model*/ +/*Some cycle timings come from https://www.agner.org/optimize/instruction_tables.pdf*/ +#include +#include +#include +#include +#include <86box/86box.h> +#include "cpu.h" +#include <86box/mem.h> +#include <86box/machine.h> +#include <86box/plat_unused.h> + +#include "x86.h" +#include "x86_ops.h" +#include "x86seg_common.h" +#include "x87.h" +#include "386_common.h" +#include "codegen.h" +#include "codegen_ops.h" +#include "codegen_timing_common.h" + +typedef enum uop_type_t +{ + UOP_ALU0 = 0, /*Executes in port 0 ALU*/ + UOP_ALU1, /*Executes in port 1 ALU*/ + UOP_ALU01, /*Executes in either port 0 or 1 ALU*/ + UOP_BRANCH, /*Executes in port 1 branch*/ + UOP_LOAD, /*Executes in port 2 Load unit*/ + UOP_STOREADDR, /*Executes in port 3 Store Address unit*/ + UOP_STOREDATA, /*Executes in port 4 Store Data unit*/ + UOP_FLOAT, /*Executes in port 0 Floating Point unit*/ + UOP_ALU0_SEG /*Executes in port 0 ALU, loads segment, causing pipeline flush on PPro*/ +} uop_type_t; + +#define MAX_UOPS 300 + +typedef struct p6_uop_t +{ + uop_type_t type; + int throughput; + int latency; +} p6_uop_t; + +typedef struct p6_instruction_t +{ + int nr_uops; + p6_uop_t uop[MAX_UOPS]; +} p6_instruction_t; + +static const p6_instruction_t alu_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu0_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu1_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu01_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu4_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu6_op = +{ + .nr_uops = 6, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t aluc_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_alu_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_aluc_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu_store_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t alu0_store_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t aluc_store_op = +{ + .nr_uops = 6, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t branch_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_BRANCH, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t load_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2} +}; + +static const p6_instruction_t store_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; + + +static const p6_instruction_t bswap_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t leave_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t lods_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t loop_op = +{ + .nr_uops = 11, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU1, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, +}; +static const p6_instruction_t movs_op = +{ + .nr_uops = 6, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, +}; +static const p6_instruction_t pop_reg_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t pop_mem_op = +{ + .nr_uops = 8, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t push_imm_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t push_mem_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, +}; +static const p6_instruction_t push_seg_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t rcx_op = +{ + .nr_uops = 8, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, +}; +static const p6_instruction_t rcx_store_op = +{ + .nr_uops = 11, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t stos_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t xchg_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t mmx_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t mmx_mul_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 3} +}; +static const p6_instruction_t mmx_shift_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_mmx_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_mmx_mul_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_mmx_shift_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t faddsub_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 3} +}; +static const p6_instruction_t load_faddsub_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 3} +}; +static const p6_instruction_t fbstp_op = +{ + .nr_uops = 5, + .uop[0] = {.type = UOP_FLOAT, .throughput = 165, .latency = 165}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t fcom_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_fcom_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t fcompp_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t fild_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_fi_op = +{ + .nr_uops = 7, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t fmul_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 5} +}; +static const p6_instruction_t load_fmul_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 5} +}; + +static const p6_instruction_t fxch_op = +{ + .nr_uops = 0 +}; + +static const p6_instruction_t fist_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t fdiv_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 37, .latency = 38} +}; +static const p6_instruction_t fdiv_mem_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 37, .latency = 38} +}; +static const p6_instruction_t fsin_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 62, .latency = 62} +}; +static const p6_instruction_t fsqrt_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 69, .latency = 69} +}; + +static const p6_instruction_t float_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t fldcw_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_FLOAT, .throughput = 7, .latency = 7}, +}; +static const p6_instruction_t flde_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t frstor_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 72, .latency = 72} +}; +static const p6_instruction_t fsave_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_FLOAT, .throughput = 141, .latency = 141} +}; +static const p6_instruction_t fste_op = +{ + .nr_uops = 6, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t fstsw_ax_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t fstsw_mem_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_FLOAT, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; + +static const p6_instruction_t aad_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 4}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t aam_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 4}, + .uop[2] = {.type = UOP_ALU1, .throughput = 1, .latency = 9}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t arpl_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_ALU01, .throughput = 3, .latency = 3}, + .uop[1] = {.type = UOP_ALU01, .throughput = 3, .latency = 3} +}; +static const p6_instruction_t bound_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_ALU0, .throughput = 7, .latency = 7}, + .uop[3] = {.type = UOP_ALU01, .throughput = 6, .latency = 6} +}; +static const p6_instruction_t bsx_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t load_bsx_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t call_far_op = +{ + .nr_uops = 6, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0_SEG, .throughput = 28, .latency = 28} +}; +static const p6_instruction_t load_call_far_op = +{ + .nr_uops = 7, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU0_SEG, .throughput = 28, .latency = 28} +}; +static const p6_instruction_t cli_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU01, .throughput = 9, .latency = 9} +}; +static const p6_instruction_t sti_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU01, .throughput = 17, .latency = 17} +}; +static const p6_instruction_t cmps_op = +{ + .nr_uops = 6, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t cmpxchg_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t cpuid_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU0, .throughput = 48, .latency = 48} +}; +/*static const p6_instruction_t div8_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU0, .throughput = 12, .latency = 17}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +};*/ +/*static const p6_instruction_t div8_mem_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[0] = {.type = UOP_ALU0, .throughput = 12, .latency = 17}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +};*/ +static const p6_instruction_t div16_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU0, .throughput = 21, .latency = 21}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t div16_mem_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[0] = {.type = UOP_ALU0, .throughput = 21, .latency = 21}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t div32_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU0, .throughput = 35, .latency = 35}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t div32_mem_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[0] = {.type = UOP_ALU0, .throughput = 35, .latency = 35}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t emms_op = +{ + .nr_uops = 11, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t enter_op = +{ + .nr_uops = 14, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[11] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[12] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[13] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t io_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_LOAD, .throughput = 18, .latency = 18} +}; +static const p6_instruction_t ins_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_ALU0, .throughput = 18, .latency = 18}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t int_op = +{ + .nr_uops = 7, + .uop[0] = {.type = UOP_ALU0, .throughput = 20, .latency = 20}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, +}; +static const p6_instruction_t iret_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[3] = {.type = UOP_ALU01, .throughput = 20, .latency = 20}, +}; +static const p6_instruction_t invd_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU01, .throughput = 1000, .latency = 1000} +}; +static const p6_instruction_t jmp_far_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU0_SEG, .throughput = 21, .latency = 21} +}; +static const p6_instruction_t load_jmp_far_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_ALU0_SEG, .throughput = 21, .latency = 21} +}; +static const p6_instruction_t lss_op = +{ + .nr_uops = 11, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[3] = {.type = UOP_ALU0_SEG,.throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +/*static const p6_instruction_t mov_mem_seg_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, +};*/ +static const p6_instruction_t mov_seg_mem_op = +{ + .nr_uops = 9, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU0_SEG,.throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t mov_seg_reg_op = +{ + .nr_uops = 8, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0_SEG,.throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU0, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t mul_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU0, .throughput = 1, .latency = 4} +}; +static const p6_instruction_t mul_mem_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 4} +}; +static const p6_instruction_t outs_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 18, .latency = 18}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t pusha_op = +{ + .nr_uops = 18, + .uop[0] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[11] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[12] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[13] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[14] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[15] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[16] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[17] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t popa_op = +{ + .nr_uops = 10, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t popf_op = +{ + .nr_uops = 17, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[11] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[12] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[13] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[14] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[15] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[16] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, +}; +static const p6_instruction_t pushf_op = +{ + .nr_uops = 16, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[7] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[8] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[9] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[10] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[11] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[12] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[13] = {.type = UOP_ALU0, .throughput = 1, .latency = 1}, + .uop[14] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[15] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t ret_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t reti_op = +{ + .nr_uops = 5, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_ALU1, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t retf_op = +{ + .nr_uops = 4, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[3] = {.type = UOP_ALU0, .throughput = 23, .latency = 23}, +}; +static const p6_instruction_t scas_op = +{ + .nr_uops = 3, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t xchg_mem_op = +{ + .nr_uops = 7, + .uop[0] = {.type = UOP_LOAD, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[2] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[3] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[4] = {.type = UOP_STOREADDR, .throughput = 1, .latency = 1}, + .uop[5] = {.type = UOP_STOREDATA, .throughput = 1, .latency = 1}, + .uop[6] = {.type = UOP_ALU01, .throughput = 1, .latency = 1} +}; +static const p6_instruction_t xlat_op = +{ + .nr_uops = 2, + .uop[0] = {.type = UOP_ALU01, .throughput = 1, .latency = 1}, + .uop[1] = {.type = UOP_LOAD, .throughput = 1, .latency = 2} +}; +static const p6_instruction_t wbinvd_op = +{ + .nr_uops = 1, + .uop[0] = {.type = UOP_ALU0, .throughput = 10000, .latency = 10000} +}; + +#define INVALID NULL + +static const p6_instruction_t *opcode_timings[256] = +{ +/* ADD ADD ADD ADD*/ +/*00*/ &alu_store_op, &alu_store_op, &load_alu_op, &load_alu_op, +/* ADD ADD PUSH ES POP ES*/ + &alu_op, &alu_op, &push_seg_op, &mov_seg_mem_op, +/* OR OR OR OR*/ + &alu_store_op, &alu_store_op, &load_alu_op, &load_alu_op, +/* OR OR PUSH CS */ + &alu_op, &alu_op, &push_seg_op, INVALID, + +/* ADC ADC ADC ADC*/ +/*10*/ &aluc_store_op, &aluc_store_op, &load_aluc_op, &load_aluc_op, +/* ADC ADC PUSH SS POP SS*/ + &aluc_op, &aluc_op, &push_seg_op, &mov_seg_mem_op, +/* SBB SBB SBB SBB*/ +/*10*/ &aluc_store_op, &aluc_store_op, &load_aluc_op, &load_aluc_op, +/* SBB SBB PUSH DS POP DS*/ + &aluc_op, &aluc_op, &push_seg_op, &mov_seg_mem_op, + +/* AND AND AND AND*/ +/*20*/ &alu_store_op, &alu_store_op, &load_alu_op, &load_alu_op, +/* AND AND DAA*/ + &alu_op, &alu_op, INVALID, &alu1_op, +/* SUB SUB SUB SUB*/ + &alu_store_op, &alu_store_op, &load_alu_op, &load_alu_op, +/* SUB SUB DAS*/ + &alu_op, &alu_op, INVALID, &alu1_op, + +/* XOR XOR XOR XOR*/ +/*30*/ &alu_store_op, &alu_store_op, &load_alu_op, &load_alu_op, +/* XOR XOR AAA*/ + &alu_op, &alu_op, INVALID, &alu1_op, +/* CMP CMP CMP CMP*/ + &load_alu_op, &load_alu_op, &load_alu_op, &load_alu_op, +/* CMP CMP AAS*/ + &alu_op, &alu_op, INVALID, &alu1_op, + +/* INC EAX INC ECX INC EDX INC EBX*/ +/*40*/ &alu_op, &alu_op, &alu_op, &alu_op, +/* INC ESP INC EBP INC ESI INC EDI*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* DEC EAX DEC ECX DEC EDX DEC EBX*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* DEC ESP DEC EBP DEC ESI DEC EDI*/ + &alu_op, &alu_op, &alu_op, &alu_op, + +/* PUSH EAX PUSH ECX PUSH EDX PUSH EBX*/ +/*50*/ &store_op, &store_op, &store_op, &store_op, +/* PUSH ESP PUSH EBP PUSH ESI PUSH EDI*/ + &store_op, &store_op, &store_op, &store_op, +/* POP EAX POP ECX POP EDX POP EBX*/ + &pop_reg_op, &pop_reg_op, &pop_reg_op, &pop_reg_op, +/* POP ESP POP EBP POP ESI POP EDI*/ + &pop_reg_op, &pop_reg_op, &pop_reg_op, &pop_reg_op, + +/* PUSHA POPA BOUND ARPL*/ +/*60*/ &pusha_op, &popa_op, &bound_op, &arpl_op, + INVALID, INVALID, INVALID, INVALID, +/* PUSH imm IMUL PUSH imm IMUL*/ + &push_imm_op, &mul_op, &push_imm_op, &mul_op, +/* INSB INSW OUTSB OUTSW*/ + &ins_op, &ins_op, &outs_op, &outs_op, + +/* Jxx*/ +/*70*/ &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + +/*80*/ INVALID, INVALID, INVALID, INVALID, +/* TEST TEST XCHG XCHG*/ + &load_alu_op, &load_alu_op, &xchg_mem_op, &xchg_mem_op, +/* MOV MOV MOV MOV*/ + &store_op, &store_op, &load_op, &load_op, +/* MOV from seg LEA MOV to seg POP*/ + &store_op, &alu0_op, &mov_seg_mem_op, &pop_mem_op, + +/* NOP XCHG XCHG XCHG*/ +/*90*/ &alu_op, &xchg_op, &xchg_op, &xchg_op, +/* XCHG XCHG XCHG XCHG*/ + &xchg_op, &xchg_op, &xchg_op, &xchg_op, +/* CBW CWD CALL far WAIT*/ + &alu_op, &alu0_op, &call_far_op, &alu_op, +/* PUSHF POPF SAHF LAHF*/ + &pushf_op, &popf_op, &alu_op, &alu_op, + +/* MOV MOV MOV MOV*/ +/*a0*/ &load_op, &load_op, &store_op, &store_op, +/* MOVSB MOVSW CMPSB CMPSW*/ + &movs_op, &movs_op, &cmps_op, &cmps_op, +/* TEST TEST STOSB STOSW*/ + &load_alu_op, &load_alu_op, &stos_op, &stos_op, +/* LODSB LODSW SCASB SCASW*/ + &lods_op, &lods_op, &scas_op, &scas_op, + +/* MOV*/ +/*b0*/ &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + +/* RET imm RET*/ +/*c0*/ INVALID, INVALID, &reti_op, &ret_op, +/* LES LDS MOV MOV*/ + &lss_op, &lss_op, &store_op, &store_op, +/* ENTER LEAVE RETF RETF*/ + &enter_op, &leave_op, &retf_op, &retf_op, +/* INT3 INT INTO IRET*/ + &int_op, &int_op, &int_op, &iret_op, + + +/*d0*/ INVALID, INVALID, INVALID, INVALID, +/* AAM AAD SETALC XLAT*/ + &aam_op, &aad_op, &alu_op, &xlat_op, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, +/* LOOPNE LOOPE LOOP JCXZ*/ +/*e0*/ &loop_op, &loop_op, &loop_op, &loop_op, +/* IN AL IN AX OUT_AL OUT_AX*/ + &io_op, &io_op, &io_op, &io_op, +/* CALL JMP JMP JMP*/ + &store_op, &branch_op, &jmp_far_op, &branch_op, +/* IN AL IN AX OUT_AL OUT_AX*/ + &io_op, &io_op, &io_op, &io_op, + +/* REPNE REPE*/ +/*f0*/ INVALID, INVALID, INVALID, INVALID, +/* HLT CMC*/ + &alu4_op, &alu_op, INVALID, INVALID, +/* CLC STC CLI STI*/ + &alu_op, &alu_op, &cli_op, &sti_op, +/* CLD STD INCDEC*/ + &alu4_op, &alu4_op, &store_op, INVALID +}; + +static const p6_instruction_t *opcode_timings_mod3[256] = +{ +/* ADD ADD ADD ADD*/ +/*00*/ &alu_op, &alu_op, &alu_op, &alu_op, +/* ADD ADD PUSH ES POP ES*/ + &alu_op, &alu_op, &push_seg_op, &mov_seg_mem_op, +/* OR OR OR OR*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* OR OR PUSH CS */ + &alu_op, &alu_op, &push_seg_op, INVALID, + +/* ADC ADC ADC ADC*/ +/*10*/ &aluc_op, &aluc_op, &aluc_op, &aluc_op, +/* ADC ADC PUSH SS POP SS*/ + &aluc_op, &aluc_op, &push_seg_op, &mov_seg_mem_op, +/* SBB SBB SBB SBB*/ + &aluc_op, &aluc_op, &aluc_op, &aluc_op, +/* SBB SBB PUSH DS POP DS*/ + &aluc_op, &aluc_op, &push_seg_op, &mov_seg_mem_op, + +/* AND AND AND AND*/ +/*20*/ &alu_op, &alu_op, &alu_op, &alu_op, +/* AND AND DAA*/ + &alu_op, &alu_op, INVALID, &alu1_op, +/* SUB SUB SUB SUB*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* SUB SUB DAS*/ + &alu_op, &alu_op, INVALID, &alu1_op, + +/* XOR XOR XOR XOR*/ +/*30*/ &alu_op, &alu_op, &alu_op, &alu_op, +/* XOR XOR AAA*/ + &alu_op, &alu_op, INVALID, &alu1_op, +/* CMP CMP CMP CMP*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* CMP CMP AAS*/ + &alu_op, &alu_op, INVALID, &alu1_op, + +/* INC EAX INC ECX INC EDX INC EBX*/ +/*40*/ &alu_op, &alu_op, &alu_op, &alu_op, +/* INC ESP INC EBP INC ESI INC EDI*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* DEC EAX DEC ECX DEC EDX DEC EBX*/ + &alu_op, &alu_op, &alu_op, &alu_op, +/* DEC ESP DEC EBP DEC ESI DEC EDI*/ + &alu_op, &alu_op, &alu_op, &alu_op, + +/* PUSH EAX PUSH ECX PUSH EDX PUSH EBX*/ +/*50*/ &store_op, &store_op, &store_op, &store_op, +/* PUSH ESP PUSH EBP PUSH ESI PUSH EDI*/ + &store_op, &store_op, &store_op, &store_op, +/* POP EAX POP ECX POP EDX POP EBX*/ + &pop_reg_op, &pop_reg_op, &pop_reg_op, &pop_reg_op, +/* POP ESP POP EBP POP ESI POP EDI*/ + &pop_reg_op, &pop_reg_op, &pop_reg_op, &pop_reg_op, + +/* PUSHA POPA BOUND ARPL*/ +/*60*/ &pusha_op, &popa_op, &bound_op, &arpl_op, + INVALID, INVALID, INVALID, INVALID, +/* PUSH imm IMUL PUSH imm IMUL*/ + &push_imm_op, &mul_op, &push_imm_op, &mul_op, +/* INSB INSW OUTSB OUTSW*/ + &ins_op, &ins_op, &outs_op, &outs_op, + +/* Jxx*/ +/*70*/ &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + +/*80*/ INVALID, INVALID, INVALID, INVALID, +/* TEST TEST XCHG XCHG*/ + &alu_op, &alu_op, &xchg_op, &xchg_op, +/* MOV MOV MOV MOV*/ + &store_op, &store_op, &load_op, &load_op, +/* MOV from seg LEA MOV to seg POP*/ + &alu_op, &alu0_op, &mov_seg_reg_op, &pop_reg_op, + +/* NOP XCHG XCHG XCHG*/ +/*90*/ &alu_op, &xchg_op, &xchg_op, &xchg_op, +/* XCHG XCHG XCHG XCHG*/ + &xchg_op, &xchg_op, &xchg_op, &xchg_op, +/* CBW CWD CALL far WAIT*/ + &alu_op, &alu0_op, &call_far_op, &alu_op, +/* PUSHF POPF SAHF LAHF*/ + &pushf_op, &popf_op, &alu_op, &alu_op, + +/* MOV MOV MOV MOV*/ +/*a0*/ &load_op, &load_op, &store_op, &store_op, +/* MOVSB MOVSW CMPSB CMPSW*/ + &movs_op, &movs_op, &cmps_op, &cmps_op, +/* TEST TEST STOSB STOSW*/ + &alu_op, &alu_op, &stos_op, &stos_op, +/* LODSB LODSW SCASB SCASW*/ + &lods_op, &lods_op, &scas_op, &scas_op, + +/* MOV*/ +/*b0*/ &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + +/* RET imm RET*/ +/*c0*/ INVALID, INVALID, &reti_op, &ret_op, +/* LES LDS MOV MOV*/ + &lss_op, &lss_op, &store_op, &store_op, +/* ENTER LEAVE RETF RETF*/ + &enter_op, &leave_op, &retf_op, &retf_op, +/* INT3 INT INTO IRET*/ + &int_op, &int_op, &int_op, &iret_op, + + +/*d0*/ INVALID, INVALID, INVALID, INVALID, +/* AAM AAD SETALC XLAT*/ + &aam_op, &aad_op, &alu_op, &xlat_op, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, +/* LOOPNE LOOPE LOOP JCXZ*/ +/*e0*/ &loop_op, &loop_op, &loop_op, &loop_op, +/* IN AL IN AX OUT_AL OUT_AX*/ + &io_op, &io_op, &io_op, &io_op, +/* CALL JMP JMP JMP*/ + &store_op, &branch_op, &jmp_far_op, &branch_op, +/* IN AL IN AX OUT_AL OUT_AX*/ + &io_op, &io_op, &io_op, &io_op, + +/* REPNE REPE*/ +/*f0*/ INVALID, INVALID, INVALID, INVALID, +/* HLT CMC*/ + &alu4_op, &alu_op, INVALID, INVALID, +/* CLC STC CLI STI*/ + &alu_op, &alu_op, &cli_op, &sti_op, +/* CLD STD INCDEC*/ + &alu4_op, &alu4_op, &alu_op, INVALID +}; + +static const p6_instruction_t *opcode_timings_0f[256] = +{ +/*00*/ &alu6_op, &alu6_op, &alu6_op, &alu6_op, + INVALID, &alu6_op, &alu6_op, INVALID, + &invd_op, &wbinvd_op, INVALID, INVALID, + INVALID, &load_op, INVALID, INVALID, + +/*10*/ INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*20*/ &alu6_op, &alu6_op, &alu6_op, &alu6_op, + &alu6_op, &alu6_op, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*30*/ &alu6_op, &alu6_op, &alu6_op, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*40*/ INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*50*/ INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*60*/ &load_mmx_op, &load_mmx_op, &load_mmx_op, &load_mmx_op, + &load_mmx_op, &load_mmx_op, &load_mmx_op, &load_mmx_op, + &load_mmx_op, &load_mmx_op, &load_mmx_op, &load_mmx_op, + INVALID, INVALID, &load_op, &load_op, + +/*70*/ INVALID, &load_mmx_shift_op, &load_mmx_shift_op, &load_mmx_shift_op, + &load_mmx_op, &load_mmx_op, &load_mmx_op, &emms_op, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, &store_op, &store_op, + +/*80*/ &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + +/*90*/ &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + +/*a0*/ &push_seg_op, &mov_seg_mem_op, &cpuid_op, &load_alu_op, + &alu_store_op, &alu_store_op, INVALID, INVALID, + &push_seg_op, &mov_seg_mem_op, INVALID, &load_alu_op, + &alu_store_op, &alu_store_op, INVALID, &mul_op, + +/*b0*/ &cmpxchg_op, &cmpxchg_op, &lss_op, &load_alu_op, + &lss_op, &lss_op, &load_alu_op, &load_alu_op, + INVALID, INVALID, &load_alu_op, &load_alu_op, + &load_bsx_op, &load_bsx_op, &load_alu_op, &load_alu_op, + +/*c0*/ &alu_store_op, &alu_store_op, INVALID, INVALID, + INVALID, INVALID, INVALID, &cmpxchg_op, + &bswap_op, &bswap_op, &bswap_op, &bswap_op, + &bswap_op, &bswap_op, &bswap_op, &bswap_op, + +/*d0*/ INVALID, &load_mmx_shift_op, &load_mmx_shift_op, &load_mmx_shift_op, + INVALID, &load_mmx_mul_op, INVALID, INVALID, + &load_mmx_op, &load_mmx_op, INVALID, &load_mmx_op, + &load_mmx_op, &load_mmx_op, INVALID, &load_mmx_op, + +/*e0*/ &load_mmx_op, &load_mmx_shift_op, &load_mmx_shift_op, INVALID, + INVALID, &load_mmx_mul_op, INVALID, INVALID, + &load_mmx_op, &load_mmx_op, INVALID, &load_mmx_op, + &load_mmx_op, &load_mmx_op, INVALID, &load_mmx_op, + +/*f0*/ INVALID, &load_mmx_shift_op, &load_mmx_shift_op, &load_mmx_shift_op, + INVALID, &load_mmx_mul_op, INVALID, INVALID, + &load_mmx_op, &load_mmx_op, &load_mmx_op, INVALID, + &load_mmx_op, &load_mmx_op, &load_mmx_op, INVALID, +}; +static const p6_instruction_t *opcode_timings_0f_mod3[256] = +{ +/*00*/ &alu6_op, &alu6_op, &alu6_op, &alu6_op, + INVALID, &alu6_op, &alu6_op, INVALID, + &invd_op, &wbinvd_op, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*10*/ INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*20*/ &alu6_op, &alu6_op, &alu6_op, &alu6_op, + &alu6_op, &alu6_op, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*30*/ &alu6_op, &alu6_op, &alu6_op, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*40*/ INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*50*/ INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/*60*/ &mmx_op, &mmx_op, &mmx_op, &mmx_op, + &mmx_op, &mmx_op, &mmx_op, &mmx_op, + &mmx_op, &mmx_op, &mmx_op, &mmx_op, + INVALID, INVALID, &mmx_op, &mmx_op, + +/*70*/ INVALID, &mmx_shift_op, &mmx_shift_op, &mmx_shift_op, + &mmx_op, &mmx_op, &mmx_op, &emms_op, + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, &mmx_op, &mmx_op, + +/*80*/ &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + &branch_op, &branch_op, &branch_op, &branch_op, + +/*90*/ &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + &alu_op, &alu_op, &alu_op, &alu_op, + +/*a0*/ &push_seg_op, &mov_seg_mem_op, &cpuid_op, &alu_op, + &alu_op, &alu_op, INVALID, INVALID, + &push_seg_op, &mov_seg_mem_op, INVALID, &alu_op, + &alu_op, &alu_op, INVALID, &mul_op, + +/*b0*/ &cmpxchg_op, &cmpxchg_op, &lss_op, &alu_op, + &lss_op, &lss_op, &alu_op, &alu_op, + INVALID, INVALID, &alu_op, &alu_op, + &bsx_op, &bsx_op, &alu_op, &alu_op, + +/*c0*/ &alu_op, &alu_op, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + &bswap_op, &bswap_op, &bswap_op, &bswap_op, + &bswap_op, &bswap_op, &bswap_op, &bswap_op, + +/*d0*/ INVALID, &mmx_shift_op, &mmx_shift_op, &mmx_shift_op, + INVALID, &mmx_mul_op, INVALID, INVALID, + &mmx_op, &mmx_op, INVALID, &mmx_op, + &mmx_op, &mmx_op, INVALID, &mmx_op, + +/*e0*/ &mmx_op, &mmx_shift_op, &mmx_shift_op, INVALID, + INVALID, &mmx_mul_op, INVALID, INVALID, + &mmx_op, &mmx_op, INVALID, &mmx_op, + &mmx_op, &mmx_op, INVALID, &mmx_op, + +/*f0*/ INVALID, &mmx_shift_op, &mmx_shift_op, &mmx_shift_op, + INVALID, &mmx_mul_op, INVALID, INVALID, + &mmx_op, &mmx_op, &mmx_op, INVALID, + &mmx_op, &mmx_op, &mmx_op, INVALID, +}; + +static const p6_instruction_t *opcode_timings_shift[8] = +{ + &alu0_store_op, &alu0_store_op, &rcx_store_op, &rcx_store_op, + &alu0_store_op, &alu0_store_op, &alu0_store_op, &alu0_store_op +}; +static const p6_instruction_t *opcode_timings_shift_mod3[8] = +{ + &alu0_op, &alu0_op, &rcx_op, &rcx_op, + &alu0_op, &alu0_op, &alu0_op, &alu0_op +}; + +static const p6_instruction_t *opcode_timings_8x[8] = +{ + &alu_store_op, &alu_store_op, &aluc_store_op, &aluc_store_op, + &alu_store_op, &alu_store_op, &alu_store_op, &alu_store_op, +}; +static const p6_instruction_t *opcode_timings_8x_mod3[8] = +{ + &alu_op, &alu_op, &aluc_op, &aluc_op, + &alu_op, &alu_op, &alu_op, &alu_op, +}; + +static const p6_instruction_t *opcode_timings_f6[8] = +{ +/* TST NOT NEG*/ + &load_alu_op, INVALID, &alu_store_op, &alu_store_op, +/* MUL IMUL DIV IDIV*/ + &mul_mem_op, &mul_mem_op, &div16_mem_op, &div16_mem_op, +}; +static const p6_instruction_t *opcode_timings_f6_mod3[8] = +{ +/* TST NOT NEG*/ + &alu_op, INVALID, &alu_op, &alu_op, +/* MUL IMUL DIV IDIV*/ + &mul_op, &mul_op, &div16_op, &div16_op, +}; +static const p6_instruction_t *opcode_timings_f7[8] = +{ +/* TST NOT NEG*/ + &load_alu_op, INVALID, &alu_store_op, &alu_store_op, +/* MUL IMUL DIV IDIV*/ + &mul_mem_op, &mul_mem_op, &div32_mem_op, &div32_mem_op, +}; +static const p6_instruction_t *opcode_timings_f7_mod3[8] = +{ +/* TST NOT NEG*/ + &alu_op, INVALID, &alu_op, &alu_op, +/* MUL IMUL DIV IDIV*/ + &mul_op, &mul_op, &div32_op, &div32_op, +}; +static const p6_instruction_t *opcode_timings_ff[8] = +{ +/* INC DEC CALL CALL far*/ + &alu_store_op, &alu_store_op, &store_op, &load_call_far_op, +/* JMP JMP far PUSH*/ + &branch_op, &load_jmp_far_op, &push_mem_op, INVALID +}; +static const p6_instruction_t *opcode_timings_ff_mod3[8] = +{ +/* INC DEC CALL CALL far*/ + &alu_op, &alu_op, &store_op, &call_far_op, +/* JMP JMP far PUSH*/ + &branch_op, &load_jmp_far_op, &push_mem_op, INVALID +}; + +static const p6_instruction_t *opcode_timings_d8[8] = +{ +/* FADDs FMULs FCOMs FCOMPs*/ + &load_faddsub_op, &load_fmul_op, &fcom_op, &load_fcom_op, +/* FSUBs FSUBRs FDIVs FDIVRs*/ + &load_faddsub_op, &load_faddsub_op, &fdiv_mem_op, &fdiv_mem_op, +}; +static const p6_instruction_t *opcode_timings_d8_mod3[8] = +{ +/* FADD FMUL FCOM FCOMP*/ + &faddsub_op, &fmul_op, &fcom_op, &fcom_op, +/* FSUB FSUBR FDIV FDIVR*/ + &faddsub_op, &faddsub_op, &fdiv_op, &fdiv_op, +}; + +static const p6_instruction_t *opcode_timings_d9[8] = +{ +/* FLDs FSTs FSTPs*/ + &load_op, INVALID, &store_op, &store_op, +/* FLDENV FLDCW FSTENV FSTCW*/ + &flde_op, &fldcw_op, &fste_op, &fstsw_mem_op +}; +static const p6_instruction_t *opcode_timings_d9_mod3[64] = +{ + /*FLD*/ + &float_op, &float_op, &float_op, &float_op, + &float_op, &float_op, &float_op, &float_op, + /*FXCH*/ + &fxch_op, &fxch_op, &fxch_op, &fxch_op, + &fxch_op, &fxch_op, &fxch_op, &fxch_op, + /*FNOP*/ + &float_op, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + /*FSTP*/ + &float_op, &float_op, &float_op, &float_op, + &float_op, &float_op, &float_op, &float_op, +/* opFCHS opFABS*/ + &float_op, &float_op, INVALID, INVALID, +/* opFTST opFXAM*/ + &float_op, &float_op, INVALID, INVALID, +/* opFLD1 opFLDL2T opFLDL2E opFLDPI*/ + &float_op, &float_op, &float_op, &float_op, +/* opFLDEG2 opFLDLN2 opFLDZ*/ + &float_op, &float_op, &float_op, INVALID, +/* opF2XM1 opFYL2X opFPTAN opFPATAN*/ + &fsin_op, &fsin_op, &fsin_op, &fsin_op, +/* opFDECSTP opFINCSTP,*/ + INVALID, INVALID, &float_op, &float_op, +/* opFPREM opFSQRT opFSINCOS*/ + &fdiv_op, INVALID, &fsqrt_op, &fsin_op, +/* opFRNDINT opFSCALE opFSIN opFCOS*/ + &float_op, &fdiv_op, &fsin_op, &fsin_op +}; + +static const p6_instruction_t *opcode_timings_da[8] = +{ +/* FIADDl FIMULl FICOMl FICOMPl*/ + &load_fi_op, &load_fi_op, &load_fcom_op, &load_fcom_op, +/* FISUBl FISUBRl FIDIVl FIDIVRl*/ + &load_fi_op, &load_fi_op, &load_fi_op, &load_fi_op, +}; +static const p6_instruction_t *opcode_timings_da_mod3[8] = +{ + INVALID, INVALID, INVALID, INVALID, +/* FCOMPP*/ + INVALID, &fcompp_op, INVALID, INVALID +}; + +static const p6_instruction_t *opcode_timings_db[8] = +{ +/* FLDil FSTil FSTPil*/ + &fild_op, INVALID, &fist_op, &fist_op, +/* FLDe FSTPe*/ + INVALID, &flde_op, INVALID, &fste_op +}; +static const p6_instruction_t *opcode_timings_db_mod3[64] = +{ + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + +/* opFNOP opFCLEX opFINIT*/ + INVALID, &float_op, &float_op, &float_op, +/* opFNOP opFNOP*/ + &float_op, &float_op, INVALID, INVALID, + + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, + + INVALID, INVALID, INVALID, INVALID, + INVALID, INVALID, INVALID, INVALID, +}; + +static const p6_instruction_t *opcode_timings_dc[8] = +{ +/* FADDd FMULd FCOMd FCOMPd*/ + &load_faddsub_op, &load_fmul_op, &load_fcom_op, &load_fcom_op, +/* FSUBd FSUBRd FDIVd FDIVRd*/ + &load_faddsub_op, &load_faddsub_op, &fdiv_mem_op, &fdiv_mem_op, +}; +static const p6_instruction_t *opcode_timings_dc_mod3[8] = +{ +/* opFADDr opFMULr*/ + &faddsub_op, &fmul_op, INVALID, INVALID, +/* opFSUBRr opFSUBr opFDIVRr opFDIVr*/ + &faddsub_op, &faddsub_op, &fdiv_op, &fdiv_op +}; + +static const p6_instruction_t *opcode_timings_dd[8] = +{ +/* FLDd FSTd FSTPd*/ + &load_op, INVALID, &store_op, &store_op, +/* FRSTOR FSAVE FSTSW*/ + &frstor_op, INVALID, &fsave_op, &fstsw_mem_op +}; +static const p6_instruction_t *opcode_timings_dd_mod3[8] = +{ +/* FFFREE FST FSTP*/ + &float_op, INVALID, &float_op, &float_op, +/* FUCOM FUCOMP*/ + &float_op, &float_op, INVALID, INVALID +}; + +static const p6_instruction_t *opcode_timings_de[8] = +{ +/* FIADDw FIMULw FICOMw FICOMPw*/ + &load_fi_op, &load_fi_op, &load_fcom_op, &load_fcom_op, +/* FISUBw FISUBRw FIDIVw FIDIVRw*/ + &load_fi_op, &load_fi_op, &load_fi_op, &load_fi_op, +}; +static const p6_instruction_t *opcode_timings_de_mod3[8] = +{ +/* FADDP FMULP FCOMPP*/ + &faddsub_op, &fmul_op, INVALID, &fcompp_op, +/* FSUBP FSUBRP FDIVP FDIVRP*/ + &faddsub_op, &faddsub_op, &fdiv_op, &fdiv_op, +}; + +static const p6_instruction_t *opcode_timings_df[8] = +{ +/* FILDiw FISTiw FISTPiw*/ + &fild_op, INVALID, &fist_op, &fist_op, +/* FILDiq FBSTP FISTPiq*/ + INVALID, &fild_op, &fbstp_op, &fist_op, +}; +static const p6_instruction_t *opcode_timings_df_mod3[8] = +{ + INVALID, INVALID, INVALID, INVALID, +/* FSTSW AX*/ + &fstsw_ax_op, INVALID, INVALID, INVALID +}; + + +static uint8_t last_prefix; +static int prefixes; + +static int decode_timestamp; +static int last_complete_timestamp; + +typedef struct p6_unit_t +{ + const uint32_t uop_mask; + const int port; + int first_available_cycle; +} p6_unit_t; + +enum +{ + UNIT_INT0 = 0, + UNIT_INT1, + UNIT_FPU, + UNIT_MMX_ADD, + UNIT_MMX_MUL, + UNIT_JUMP, + UNIT_LOAD, + UNIT_STORE_ADDR, + UNIT_STORE_DATA +}; + +/*Each port can only be used once per clock*/ +typedef struct p6_port_t +{ + uint32_t unit_mask; +} p6_port_t; + +static int port_last_timestamps[5]; + +static const p6_port_t ports[] = +{ + {UNIT_INT0 | UNIT_FPU | UNIT_MMX_MUL}, + {UNIT_INT1 | UNIT_MMX_ADD | UNIT_JUMP}, + {UNIT_LOAD}, + {UNIT_STORE_ADDR}, + {UNIT_STORE_DATA} +}; +const int nr_ports = (sizeof(ports) / sizeof(p6_port_t)); + +static p6_unit_t units[] = +{ + [UNIT_INT0] = {.uop_mask = (1 << UOP_ALU0) | (1 << UOP_ALU0_SEG) | (1 << UOP_ALU01), .port = 0}, /*Integer 0*/ + [UNIT_INT1] = {.uop_mask = (1 << UOP_ALU1) | (1 << UOP_ALU01), .port = 1}, /*Integer 1*/ + [UNIT_FPU] = {.uop_mask = 1 << UOP_FLOAT, .port = 0}, + [UNIT_MMX_ADD] = {.uop_mask = 0, .port = 1}, + [UNIT_MMX_MUL] = {.uop_mask = 0, .port = 0}, + [UNIT_JUMP] = {.uop_mask = 1 << UOP_BRANCH, .port = 1}, + [UNIT_LOAD] = {.uop_mask = 1 << UOP_LOAD, .port = 2}, + [UNIT_STORE_ADDR] = {.uop_mask = 1 << UOP_STOREADDR, .port = 3}, + [UNIT_STORE_DATA] = {.uop_mask = 1 << UOP_STOREDATA, .port = 4} +}; +const int nr_units = (sizeof(units) / sizeof(p6_unit_t)); + +static int rat_timestamp = 0; +static int rat_uops = 0; + +static int uop_run(const p6_uop_t *uop, int decode_time) +{ + int c; + p6_unit_t *best_unit = NULL; + int best_start_cycle = 99999; + + /*Peak of 3 uOPs from decode to RAT per cycle*/ + if (decode_time < rat_timestamp) + decode_time = rat_timestamp; + else if (decode_time > rat_timestamp) + { + rat_timestamp = decode_time; + rat_uops = 0; + } + + rat_uops++; + if (rat_uops == 3) + { + rat_timestamp++; + rat_uops = 0; + } + + + /*Find execution unit for this uOP*/ + for (c = 0; c < nr_units; c++) + { + p6_unit_t *unit = &units[c]; + if (unit->uop_mask & (1 << uop->type)) + { + int start_cycle = MAX(unit->first_available_cycle, + port_last_timestamps[units[c].port]); + + if (start_cycle < best_start_cycle) + { + best_unit = unit; + best_start_cycle = start_cycle; + } + } + } + if (!best_unit) + fatal("uop_run: can not find execution unit %x\n", uop->type); + + if (cpu_s->cpu_type == CPU_PENTIUMPRO && uop->type == UOP_ALU0_SEG) + { + /*Pentium Pro will flush pipeline on a segment load. Find last + execution unit to complete, then set earliest start times on + _all_ execution units to after this point*/ + int last_start_cycle = 0; + + for (c = 0; c < nr_units; c++) + { + p6_unit_t *unit = &units[c]; + int start_cycle = unit->first_available_cycle; + + if (start_cycle > last_start_cycle) + last_start_cycle = start_cycle; + } + for (c = 0; c < nr_units; c++) + units[c].first_available_cycle = last_start_cycle+1; + } + if (best_start_cycle < decode_time) + best_start_cycle = decode_time; + best_unit->first_available_cycle = best_start_cycle + uop->throughput; + port_last_timestamps[best_unit->port] = best_start_cycle + 1; + + return best_start_cycle + uop->throughput; +// return decode_time+1; +} + +/*The P6 decoder can decode up to three instructions per clock + First can be up to 4 uOPs + Second and third must be 1 uOP each + Up to 16 bytes per cycle + 1 cycle per prefix beyond 1 prefix + 0x66 causes delays if instruction has immediate + 0x67 causes delays if modr/m present (and mod != 3) +*/ +static struct +{ + int nr_ins; + int nr_uops; + const p6_uop_t *uops[6]; + /*Earliest time a uop can start. If the timestamp is -1, then the uop is + part of a dependency chain and the start time is the completion time of + the previous uop*/ + int earliest_start[6]; +} decode_buffer; + +#define NR_REGS 8 +/*Timestamp of when last operation on an integer register completed*/ +static int reg_available_timestamp[NR_REGS]; +/*Timestamp of when last operation on an FPU register completed*/ +static int fpu_st_timestamp[8]; +/*Completion time of the last uop to be processed. Used to calculate timing of + dependent uop chains*/ +static int last_uop_timestamp = 0; + +static int ifetch_length = 0; +static int has_66_prefix, has_67_prefix; + +static void decode_flush(void) +{ + int c; + int uop_timestamp = 0; + + /*Ensure that uops can not be submitted before they have been decoded*/ + if (decode_timestamp > last_uop_timestamp) + last_uop_timestamp = decode_timestamp; + + /*Submit uops to execution units, and determine the latest completion time*/ + for (c = 0; c < decode_buffer.nr_uops; c++) + { + int start_timestamp; + +// pclog("uOP %i, %p\n", c, decode_buffer.uops[c]); + + if (decode_buffer.earliest_start[c] == -1) + start_timestamp = last_uop_timestamp; + else + start_timestamp = decode_buffer.earliest_start[c]; + + last_uop_timestamp = uop_run(decode_buffer.uops[c], start_timestamp); + if (last_uop_timestamp > uop_timestamp) + uop_timestamp = last_uop_timestamp; + } + + /*Calculate opquad completion time. Since opquads complete in order, it + must be after the last completion.*/ + if (uop_timestamp <= last_complete_timestamp) + last_complete_timestamp = last_complete_timestamp + 1; + else + last_complete_timestamp = uop_timestamp; + + decode_timestamp++; + decode_buffer.nr_uops = 0; + decode_buffer.nr_ins = 0; + ifetch_length = 0; +} + +/*The instruction is only of interest here if it's longer than 8 bytes, as that's the + limit on P6 short decoding*/ +static int codegen_timing_instr_length(uint64_t deps, uint32_t fetchdat, int op_32) +{ + int len = prefixes + 1; /*Opcode*/ + if (deps & MODRM) + { + len++; /*ModR/M*/ + if (deps & HAS_IMM8) + len++; + if (deps & HAS_IMM1632) + len += (op_32 & 0x100) ? 4 : 2; + + if (op_32 & 0x200) + { + if ((fetchdat & 7) == 4 && (fetchdat & 0xc0) != 0xc0) + { + /* Has SIB*/ + len++; + if ((fetchdat & 0xc0) == 0x40) + len++; + else if ((fetchdat & 0xc0) == 0x80) + len += 4; + else if ((fetchdat & 0x700) == 0x500) + len += 4; + } + else + { + if ((fetchdat & 0xc0) == 0x40) + len++; + else if ((fetchdat & 0xc0) == 0x80) + len += 4; + else if ((fetchdat & 0xc7) == 0x05) + len += 4; + } + } + else + { + if ((fetchdat & 0xc0) == 0x40) + len++; + else if ((fetchdat & 0xc0) == 0x80) + len += 2; + else if ((fetchdat & 0xc7) == 0x06) + len += 2; + } + } + + return len; +} + +static void decode_instruction(const p6_instruction_t *ins, uint64_t deps, uint32_t fetchdat, int op_32, uint32_t op_pc, int bit8) +{ + uint32_t regmask_required; + uint32_t regmask_modified; + int c, d; + int earliest_start; + int instr_length = codegen_timing_instr_length(deps, fetchdat, op_32); + + if (has_66_prefix && (deps & HAS_IMM1632)) + decode_timestamp += 2; + if (has_67_prefix && (deps & MODRM)) + decode_timestamp += 4; + + earliest_start = decode_timestamp; + + /*Generate input register mask, and determine the earliest time this + instruction can start. This is not accurate, as this is calculated per + x86 instruction when it should be handled per uop*/ + regmask_required = get_dstdep_mask(deps, fetchdat, bit8); + regmask_required |= get_addr_regmask(deps, fetchdat, op_32); + for (c = 0; c < 8; c++) + { + if (regmask_required & (1 << c)) + { + if (reg_available_timestamp[c] > decode_timestamp) + earliest_start = reg_available_timestamp[c]; + } + } + if ((deps & FPU_RW_ST0) && fpu_st_timestamp[0] > decode_timestamp) + earliest_start = fpu_st_timestamp[0]; + if ((deps & FPU_RW_ST1) && fpu_st_timestamp[1] > decode_timestamp) + earliest_start = fpu_st_timestamp[1]; + if ((deps & FPU_RW_STREG)) + { + int reg = fetchdat & 7; + + if (fpu_st_timestamp[reg] > decode_timestamp) + earliest_start = fpu_st_timestamp[reg]; + } + +// pclog("ins->nr_uops=%i decode_buffer.nr_uops=%i decode_buffer.nr_ins=%i instr_length=%i\n", ins->nr_uops, decode_buffer.nr_uops, decode_buffer.nr_ins, instr_length); + + /*Can only decode 16 bytes per cycle*/ + if ((ifetch_length + instr_length) > 16) + decode_flush(); + else + ifetch_length += instr_length; + + if (ins->nr_uops > 4) + { +// pclog("Long decode\n"); + /*Multi-cycle decode (> 4 uOPs) instruction*/ + if (decode_buffer.nr_ins) + decode_flush(); + + d = 0; + + for (c = 0; c < ins->nr_uops; c++) + { + decode_buffer.uops[d] = &ins->uop[c]; + if (c == 0) + decode_buffer.earliest_start[d] = earliest_start; + else + decode_buffer.earliest_start[d] = -1; + d++; + + if (d == 4) + { + d = 0; + decode_buffer.nr_uops = 4; + decode_flush(); + } + } + if (d) + { + decode_buffer.nr_uops = d; + decode_flush(); + } + } + else if (ins->nr_uops > 1 || instr_length > 8) + { +// pclog("Mid decode\n"); + /*Long (> 1 uOPs) instruction*/ + if (decode_buffer.nr_ins) + decode_flush(); + + decode_buffer.nr_uops = ins->nr_uops; + + for (c = 0; c < ins->nr_uops; c++) + { + decode_buffer.uops[c] = &ins->uop[c]; + if (c == 0) + decode_buffer.earliest_start[c] = earliest_start; + else + decode_buffer.earliest_start[c] = -1; + } + decode_buffer.nr_ins++; + } + else if (ins->nr_uops == 1) + { +// pclog("Short decode\n"); + /*Short (1 uOP) instruction*/ + decode_buffer.uops[decode_buffer.nr_uops] = &ins->uop[0]; + decode_buffer.earliest_start[decode_buffer.nr_uops] = earliest_start; + decode_buffer.nr_ins++; + decode_buffer.nr_uops++; + + if (decode_buffer.nr_ins == 3) + decode_flush(); + } + + /*Update write timestamps for any output registers*/ + regmask_modified = get_dstdep_mask(deps, fetchdat, bit8); + for (c = 0; c < 8; c++) + { + if (regmask_modified & (1 << c)) + reg_available_timestamp[c] = last_complete_timestamp; + } + if (deps & FPU_POP) + { + for (c = 0; c < 7; c++) + fpu_st_timestamp[c] = fpu_st_timestamp[c+1]; + fpu_st_timestamp[7] = 0; + } + if (deps & FPU_POP2) + { + for (c = 0; c < 6; c++) + fpu_st_timestamp[c] = fpu_st_timestamp[c+2]; + fpu_st_timestamp[6] = fpu_st_timestamp[7] = 0; + } + if (deps & FPU_PUSH) + { + for (c = 0; c < 7; c++) + fpu_st_timestamp[c+1] = fpu_st_timestamp[c]; + fpu_st_timestamp[0] = 0; + } + if (deps & FPU_WRITE_ST0) + fpu_st_timestamp[0] = last_complete_timestamp; + if (deps & FPU_WRITE_ST1) + fpu_st_timestamp[1] = last_complete_timestamp; + if (deps & FPU_WRITE_STREG) + { + int reg = fetchdat & 7; + if (deps & FPU_POP) + reg--; + if (reg >= 0 && + !(reg == 0 && (deps & FPU_WRITE_ST0)) && + !(reg == 1 && (deps & FPU_WRITE_ST1))) + fpu_st_timestamp[reg] = last_complete_timestamp; + } +} + +void codegen_timing_p6_block_start(void) +{ + int c; + + for (c = 0; c < nr_units; c++) + units[c].first_available_cycle = 0; + + decode_timestamp = 0; + last_complete_timestamp = 0; + + rat_timestamp = 0; + rat_uops = 0; + + for (c = 0; c < 5; c++) + port_last_timestamps[c] = 0; + + for (c = 0; c < NR_REGS; c++) + reg_available_timestamp[c] = 0; + for (c = 0; c < 8; c++) + fpu_st_timestamp[c] = 0; + + ifetch_length = 0; +} + +void codegen_timing_p6_start(void) +{ +// units = p6_units; +// nr_units = NR_P6_UNITS; + last_prefix = 0; + prefixes = 0; + has_66_prefix = 0; + has_67_prefix = 0; +} + +/*Prefixes : + - first is free + - operand size prefix has a penalty of 'a few clocks' if instruction has 16 or + 32 bit immediate + - address size prefix has penalty if instruction has explicit memory operand*/ +void codegen_timing_p6_prefix(uint8_t prefix, uint32_t fetchdat) +{ + if (last_prefix) /*First prefix is free*/ + decode_timestamp++; + if (prefix == 0x66) + has_66_prefix = 1; + if (prefix == 0x67) + has_67_prefix = 1; + + last_prefix = prefix; + prefixes++; +} + +void codegen_timing_p6_opcode(uint8_t opcode, uint32_t fetchdat, int op_32, uint32_t op_pc) +{ + const p6_instruction_t **ins_table; + uint64_t *deps; + int mod3 = ((fetchdat & 0xc0) == 0xc0); + int old_last_complete_timestamp = last_complete_timestamp; + int bit8 = !(opcode & 1); + +// pclog("timing_opcode %02x\n", opcode); + switch (last_prefix) + { + case 0x0f: + ins_table = mod3 ? opcode_timings_0f_mod3 : opcode_timings_0f; + deps = mod3 ? opcode_deps_0f_mod3 : opcode_deps_0f; +// pclog("timings 0f\n"); + break; + + case 0xd8: + ins_table = mod3 ? opcode_timings_d8_mod3 : opcode_timings_d8; + deps = mod3 ? opcode_deps_d8_mod3 : opcode_deps_d8; + opcode = (opcode >> 3) & 7; +// pclog("timings d8\n"); + break; + case 0xd9: + ins_table = mod3 ? opcode_timings_d9_mod3 : opcode_timings_d9; + deps = mod3 ? opcode_deps_d9_mod3 : opcode_deps_d9; + opcode = mod3 ? opcode & 0x3f : (opcode >> 3) & 7; +// pclog("timings d9\n"); + break; + case 0xda: + ins_table = mod3 ? opcode_timings_da_mod3 : opcode_timings_da; + deps = mod3 ? opcode_deps_da_mod3 : opcode_deps_da; + opcode = (opcode >> 3) & 7; +// pclog("timings da\n"); + break; + case 0xdb: + ins_table = mod3 ? opcode_timings_db_mod3 : opcode_timings_db; + deps = mod3 ? opcode_deps_db_mod3 : opcode_deps_db; + opcode = mod3 ? opcode & 0x3f : (opcode >> 3) & 7; +// pclog("timings db\n"); + break; + case 0xdc: + ins_table = mod3 ? opcode_timings_dc_mod3 : opcode_timings_dc; + deps = mod3 ? opcode_deps_dc_mod3 : opcode_deps_dc; + opcode = (opcode >> 3) & 7; +// pclog("timings dc\n"); + break; + case 0xdd: + ins_table = mod3 ? opcode_timings_dd_mod3 : opcode_timings_dd; + deps = mod3 ? opcode_deps_dd_mod3 : opcode_deps_dd; + opcode = (opcode >> 3) & 7; +// pclog("timings dd\n"); + break; + case 0xde: + ins_table = mod3 ? opcode_timings_de_mod3 : opcode_timings_de; + deps = mod3 ? opcode_deps_de_mod3 : opcode_deps_de; + opcode = (opcode >> 3) & 7; +// pclog("timings de\n"); + break; + case 0xdf: + ins_table = mod3 ? opcode_timings_df_mod3 : opcode_timings_df; + deps = mod3 ? opcode_deps_df_mod3 : opcode_deps_df; + opcode = (opcode >> 3) & 7; +// pclog("timings df\n"); + break; + + default: + switch (opcode) + { + case 0x80: case 0x81: case 0x82: case 0x83: + ins_table = mod3 ? opcode_timings_8x_mod3 : opcode_timings_8x; + deps = mod3 ? opcode_deps_8x_mod3 : opcode_deps_8x; + opcode = (fetchdat >> 3) & 7; +// pclog("timings 80 %p %p %p\n", (void *)timings, (void *)opcode_timings_mod3, (void *)opcode_timings_8x); + break; + + case 0xc0: case 0xd0: case 0xd2: + case 0xc1: case 0xd1: case 0xd3: + ins_table = mod3 ? opcode_timings_shift_mod3 : opcode_timings_shift; + deps = mod3 ? opcode_deps_shift_mod3 : opcode_deps_shift; + opcode = (fetchdat >> 3) & 7; +// pclog("timings c1\n"); + break; + + case 0xf6: + ins_table = mod3 ? opcode_timings_f6_mod3 : opcode_timings_f6; + deps = mod3 ? opcode_deps_f6_mod3 : opcode_deps_f6; + opcode = (fetchdat >> 3) & 7; +// pclog("timings f6\n"); + break; + case 0xf7: + ins_table = mod3 ? opcode_timings_f7_mod3 : opcode_timings_f7; + deps = mod3 ? opcode_deps_f7_mod3 : opcode_deps_f7; + opcode = (fetchdat >> 3) & 7; +// pclog("timings f7\n"); + break; + case 0xff: + ins_table = mod3 ? opcode_timings_ff_mod3 : opcode_timings_ff; + deps = mod3 ? opcode_deps_ff_mod3 : opcode_deps_ff; + opcode = (fetchdat >> 3) & 7; +// pclog("timings ff\n"); + break; + + default: + ins_table = mod3 ? opcode_timings_mod3 : opcode_timings; + deps = mod3 ? opcode_deps_mod3 : opcode_deps; +// pclog("timings normal\n"); + break; + } + } + + if (ins_table[opcode]) + decode_instruction(ins_table[opcode], deps[opcode], fetchdat, op_32, op_pc, bit8); + else + decode_instruction(&alu01_op, 0, fetchdat, op_32, op_pc, bit8); + codegen_block_cycles += (last_complete_timestamp - old_last_complete_timestamp); +} + +void codegen_timing_p6_block_end(void) +{ + if (decode_buffer.nr_ins) + { + int old_last_complete_timestamp = last_complete_timestamp; + decode_flush(); + codegen_block_cycles += (last_complete_timestamp - old_last_complete_timestamp); + } +// pclog("codegen_block_cycles=%i\n", codegen_block_cycles); +} + +int codegen_timing_p6_jump_cycles(void) +{ + if (decode_buffer.nr_uops) + return 1; + return 0; +} + +codegen_timing_t codegen_timing_p6 = +{ + codegen_timing_p6_start, + codegen_timing_p6_prefix, + codegen_timing_p6_opcode, + codegen_timing_p6_block_start, + codegen_timing_p6_block_end, + codegen_timing_p6_jump_cycles +}; diff --git a/src/cpu/error_log.txt b/src/cpu/error_log.txt new file mode 100644 index 000000000..015f1921d --- /dev/null +++ b/src/cpu/error_log.txt @@ -0,0 +1,29 @@ +808x.c: In function 'execx86': +808x.c:1912:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 1912 | case 0x40 ... 0x47: /* INC r16 */ + | ^~~~ +808x.c:1927:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 1927 | case 0x48 ... 0x4f: /* DEC r16 */ + | ^~~~ +808x.c:1942:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 1942 | case 0x50 ... 0x57: /* PUSH r16 */ + | ^~~~ +808x.c:1947:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 1947 | case 0x58 ... 0x5f: /* POP r16 */ + | ^~~~ +808x.c:1952:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 1952 | case 0x60 ... 0x7f: /* JMP rel8 */ + | ^~~~ +808x.c:2201:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 2201 | case 0x90 ... 0x97: /* XCHG AX, r */ + | ^~~~ +808x.c:2482:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 2482 | case 0xb0 ... 0xb7: /* MOV r8, imm8 */ + | ^~~~ +808x.c:2494:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 2494 | case 0xb8 ... 0xbf: /* MOV r16, imm16 */ + | ^~~~ +808x.c:2766:13: error: range expressions in switch statements are non-standard [-Werror=pedantic] + 2766 | case 0xd8 ... 0xdf: /* ESC - FPU instructions. */ + | ^~~~ +cc1.exe: all warnings being treated as errors diff --git a/src/cpu/gcc_check.sh b/src/cpu/gcc_check.sh new file mode 100644 index 000000000..904b1dca0 --- /dev/null +++ b/src/cpu/gcc_check.sh @@ -0,0 +1 @@ +gcc $1 -std=gnu17 -Wall -Wclobbered -Wbad-function-cast -Wempty-body -Wignored-qualifiers -Wmissing-field-initializers -Wmissing-parameter-type -Wold-style-declaration -Woverride-init -Wsign-compare -Wtype-limits -Wuninitialized -Wunknown-pragmas -pedantic -Werror -I../include -iquote . 2> error_log.txt diff --git a/src/device.c b/src/device.c index 088d8c3e6..c517f98e9 100644 --- a/src/device.c +++ b/src/device.c @@ -159,10 +159,8 @@ device_add_common(const device_t *dev, const device_t *cd, void *p, void *params /* Do this so that a chained device_add will not identify the same ID its master device is already trying to assign. */ devices[c] = (device_t *) dev; - if (!strcmp(dev->name, "None") || !strcmp(dev->name, "Internal")) { - uint32_t *p = NULL; - *p = 5; /* Crash deliberately. */ - } + if (!strcmp(dev->name, "None") || !strcmp(dev->name, "Internal")) + fatal("Attempting to add dummy device of type: %s\n", dev->name); if (p == NULL) { memcpy(&device_prev, &device_current, sizeof(device_context_t)); diff --git a/src/device/serial - Cópia.c b/src/device/serial - Cópia.c new file mode 100644 index 000000000..80fafefc6 --- /dev/null +++ b/src/device/serial - Cópia.c @@ -0,0 +1,1071 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * NS8250/16450/16550 UART emulation. + * + * Now passes all the AMIDIAG tests. + * + * + * + * Authors: Sarah Walker, + * Miran Grca, + * Fred N. van Kempen, + * + * Copyright 2008-2020 Sarah Walker. + * Copyright 2016-2020 Miran Grca. + * Copyright 2017-2020 Fred N. van Kempen. + */ +#include +#include +#include +#include +#include +#include +#define HAVE_STDARG_H +#include <86box/86box.h> +#include <86box/device.h> +#include <86box/timer.h> +#include <86box/machine.h> +#include <86box/io.h> +#include <86box/pic.h> +#include <86box/mem.h> +#include <86box/rom.h> +#include <86box/fifo.h> +#include <86box/serial.h> +#include <86box/mouse.h> + +serial_port_t com_ports[SERIAL_MAX]; + +enum { + SERIAL_INT_LSR = 1, + SERIAL_INT_TIMEOUT = 2, + SERIAL_INT_RECEIVE = 4, + SERIAL_INT_TRANSMIT = 8, + SERIAL_INT_MSR = 16, + SERIAL_INT_RX_DMA_TC = 32, + SERIAL_INT_TX_DMA_TC = 64 +}; + +void serial_update_ints(serial_t *dev); + +static int next_inst = 0; +static serial_device_t serial_devices[SERIAL_MAX]; + +// #define ENABLE_SERIAL_CONSOLE 1 + +#ifdef ENABLE_SERIAL_LOG +int serial_do_log = ENABLE_SERIAL_LOG; + +static void +serial_log(const char *fmt, ...) +{ + va_list ap; + + if (serial_do_log) { + va_start(ap, fmt); + pclog_ex(fmt, ap); + va_end(ap); + } +} +#else +# define serial_log(fmt, ...) +#endif + +void +serial_reset_port(serial_t *dev) +{ + dev->lsr = 0x60; /* Mark that both THR/FIFO and TXSR are empty. */ + dev->iir = dev->ier = dev->lcr = dev->fcr = 0; + dev->fifo_enabled = 0; + dev->xmit_fifo_pos = 0; + dev->xmit_fifo_end = 0; + dev->baud_cycles = 0; + dev->out_new = 0xffff; + memset(dev->xmit_fifo, 0, 16); + + serial_update_ints(dev); + dev->irq_state = 0; +} + +void +serial_transmit_period(serial_t *dev) +{ + double ddlab; + + if (dev->dlab != 0x0000) + ddlab = (double) dev->dlab; + else + ddlab = 65536.0; + + /* Bit period based on DLAB. */ + dev->transmit_period = (16000000.0 * ddlab) / dev->clock_src; + if (dev->sd && dev->sd->transmit_period_callback) + dev->sd->transmit_period_callback(dev, dev->sd->priv, dev->transmit_period); +} + +void +serial_do_irq(serial_t *dev, int set) +{ + if (dev->irq != 0xff) { + if (set || (dev->irq_state != !!set)) + picint_common(1 << dev->irq, !!(dev->type >= SERIAL_16450), set, &dev->irq_state); + if (dev->type < SERIAL_16450) + dev->irq_state = !!set; + } +} + +#if 0 +void +serial_update_ints(serial_t *dev) +{ + int stat = 0; + + dev->iir = 0x01; + + if ((dev->ier & 0x04) && (dev->int_status & SERIAL_INT_LSR)) { + /* Line status interrupt */ + stat = 1; + dev->iir = 0x06; + } else if ((dev->ier & 0x01) && (dev->int_status & SERIAL_INT_TIMEOUT)) { + /* Received data available */ + stat = 1; + dev->iir = 0x0c; + } else if ((dev->ier & 0x01) && (dev->int_status & SERIAL_INT_RECEIVE)) { + /* Received data available */ + stat = 1; + dev->iir = 0x04; + } else if ((dev->ier & 0x02) && (dev->int_status & SERIAL_INT_TRANSMIT)) { + /* Transmit data empty */ + stat = 1; + dev->iir = 0x02; + } else if ((dev->ier & 0x08) && (dev->int_status & SERIAL_INT_MSR)) { + /* Modem status interrupt */ + stat = 1; + dev->iir = 0x00; + } else if ((dev->ier & 0x40) && (dev->int_status & SERIAL_INT_RX_DMA_TC)) { + /* DMA Reception End of Transfer interrupt */ + stat = 1; + dev->iir = 0x0e; + } else if ((dev->ier & 0x80) && (dev->int_status & SERIAL_INT_TX_DMA_TC)) { + /* DMA Transmission End of Transfer interrupt */ + stat = 1; + dev->iir = 0x0a; + } + + serial_do_irq(dev, stat && ((dev->mctrl & 8) || (dev->type == SERIAL_8250_PCJR))); +} +#else +void +serial_update_ints(serial_t *dev) +{ + /* TODO: The IRQ priorities are 6 - we need to find a way to treat timeout and receive + as equal and still somehow distinguish them. */ + uint8_t ier_map[7] = { 0x04, 0x01, 0x01, 0x02, 0x08, 0x40, 0x80 }; + uint8_t iir_map[7] = { 0x06, 0x0c, 0x04, 0x02, 0x00, 0x0e, 0x0a }; + int i; + + dev->iir = (dev->iir & 0xf0) | 0x01; + + for (i = 0; i < 7; i++) { + if ((dev->ier & ier_map[i]) && (dev->int_status & (1 << i))) { + dev->iir = (dev->iir & 0xf0) | iir_map[i]; + break; + } + } + + serial_do_irq(dev, !(dev->iir & 0x01) && ((dev->mctrl & 8) || (dev->type == SERIAL_8250_PCJR))); +} +#endif + +static void +serial_clear_timeout(serial_t *dev) +{ + /* Disable timeout timer and clear timeout condition. */ + timer_disable(&dev->timeout_timer); + dev->int_status &= ~SERIAL_INT_TIMEOUT; + serial_update_ints(dev); +} + +static void +serial_receive_timer(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + // serial_log("serial_receive_timer()\n"); + + timer_on_auto(&dev->receive_timer, /* dev->bits * */ dev->transmit_period); + + if (dev->fifo_enabled) { + /* FIFO mode. */ + if (dev->out_new != 0xffff) { + /* We have received a byte into the RSR. */ + + /* Clear FIFO timeout. */ + serial_clear_timeout(dev); + + fifo_write_evt((uint8_t) (dev->out_new & 0xff), dev->rcvr_fifo); + dev->out_new = 0xffff; + + /* pclog("serial_receive_timer(): lsr = %02X, ier = %02X, iir = %02X, int_status = %02X\n", + dev->lsr, dev->ier, dev->iir, dev->int_status); */ + + timer_on_auto(&dev->timeout_timer, 4.0 * dev->bits * dev->transmit_period); + } + } else { + /* Non-FIFO mode. */ + if (dev->out_new != 0xffff) { + /* We have received a byte into the RSR. */ + // pclog("Byte received: %04X\n", dev->out_new); + + /* Indicate overrun. */ + if (dev->lsr & 0x01) + dev->lsr |= 0x02; + + dev->dat = (uint8_t) (dev->out_new & 0xff); + dev->out_new = 0xffff; + + /* Raise Data Ready interrupt. */ + dev->lsr |= 0x01; + dev->int_status |= SERIAL_INT_RECEIVE; + + serial_update_ints(dev); + } + } +} + +static void +write_fifo(serial_t *dev, uint8_t dat) +{ + serial_log("write_fifo(%08X, %02X, %i, %i)\n", dev, dat, + (dev->type >= SERIAL_16550) && dev->fifo_enabled, + ((dev->type >= SERIAL_16550) && dev->fifo_enabled) ? + fifo_get_count(dev->rcvr_fifo) : 0); + + /* Do this here, because in non-FIFO mode, this is read directly. */ + dev->out_new = (uint16_t) dat; +} + +void +serial_write_fifo(serial_t *dev, uint8_t dat) +{ + serial_log("serial_write_fifo(%08X, %02X, %i, %i)\n", dev, dat, + (dev->type >= SERIAL_16550) && dev->fifo_enabled, + ((dev->type >= SERIAL_16550) && dev->fifo_enabled) ? + fifo_get_count(dev->rcvr_fifo) : 0); + + if (!(dev->mctrl & 0x10)) + write_fifo(dev, dat); +} + +void +serial_transmit(serial_t *dev, uint8_t val) +{ + if (dev->mctrl & 0x10) { + // pclog("Write to loopback: %02X\n", val); + write_fifo(dev, val); + } else if (dev->sd->dev_write) { + // pclog("Write to device : %02X\n", val); + dev->sd->dev_write(dev, dev->sd->priv, val); + } // else + // pclog("Write to nowhere : %02X\n", val); +#ifdef ENABLE_SERIAL_CONSOLE + if ((val >= ' ' && val <= '~') || val == '\r' || val == '\n') { + fputc(val, stdout); + if (val == '\n') + fflush(stdout); + } else { + fprintf(stdout, "[%02X]", val); + } +#endif +} + +static void +serial_move_to_txsr(serial_t *dev) +{ + if (dev->fifo_enabled) { + dev->txsr = dev->xmit_fifo[0]; + if (dev->xmit_fifo_pos > 0) { + /* Move the entire fifo forward by one byte. */ + for (uint8_t i = 1; i < 16; i++) + dev->xmit_fifo[i - 1] = dev->xmit_fifo[i]; + /* Decrease FIFO position. */ + dev->xmit_fifo_pos--; + } + } else { + dev->txsr = dev->thr; + dev->thr = 0; + } + + dev->lsr &= ~0x40; + serial_log("serial_move_to_txsr(): FIFO %sabled, FIFO pos = %i\n", dev->fifo_enabled ? "en" : "dis", dev->xmit_fifo_pos & 0x0f); + + if (!dev->fifo_enabled || (dev->xmit_fifo_pos == 0x0)) { + /* Update interrupts to signal THRE and that TXSR is no longer empty. */ + dev->lsr |= 0x20; + dev->int_status |= SERIAL_INT_TRANSMIT; + serial_update_ints(dev); + } + if (dev->transmit_enabled & 2) + dev->baud_cycles++; + else + dev->baud_cycles = 0; /* If not moving while transmitting, reset BAUDOUT cycle count. */ + if (!dev->fifo_enabled || (dev->xmit_fifo_pos == 0x0)) + dev->transmit_enabled &= ~1; /* Stop moving. */ + dev->transmit_enabled |= 2; /* Start transmitting. */ +} + +static void +serial_process_txsr(serial_t *dev) +{ + serial_log("serial_process_txsr(): FIFO %sabled\n", dev->fifo_enabled ? "en" : "dis"); + serial_transmit(dev, dev->txsr); + dev->txsr = 0; + /* Reset BAUDOUT cycle count. */ + dev->baud_cycles = 0; + /* If FIFO is enabled and there are bytes left to transmit, + continue with the FIFO, otherwise stop. */ + if (dev->fifo_enabled && (dev->xmit_fifo_pos != 0x0)) + dev->transmit_enabled |= 1; + else { + /* Both FIFO/THR and TXSR are empty. */ + /* If bit 5 is set, also set bit 6 to mark both THR and shift register as empty. */ + if (dev->lsr & 0x20) + dev->lsr |= 0x40; + dev->transmit_enabled &= ~2; + } + dev->int_status &= ~SERIAL_INT_TRANSMIT; + serial_update_ints(dev); +} + +/* Transmit_enable flags: + Bit 0 = Do move if set; + Bit 1 = Do transmit if set. */ +static void +serial_transmit_timer(void *priv) +{ + serial_t *dev = (serial_t *) priv; + int delay = 8; /* STOP to THRE delay is 8 BAUDOUT cycles. */ + + if (dev->transmit_enabled & 3) { + if ((dev->transmit_enabled & 1) && (dev->transmit_enabled & 2)) + delay = dev->data_bits; /* Delay by less if already transmitting. */ + + dev->baud_cycles++; + + /* We have processed (total bits) BAUDOUT cycles, transmit the byte. */ + if ((dev->baud_cycles == dev->bits) && (dev->transmit_enabled & 2)) + serial_process_txsr(dev); + + /* We have processed (data bits) BAUDOUT cycles. */ + if ((dev->baud_cycles == delay) && (dev->transmit_enabled & 1)) + serial_move_to_txsr(dev); + + if (dev->transmit_enabled & 3) + timer_on_auto(&dev->transmit_timer, dev->transmit_period); + } else { + dev->baud_cycles = 0; + return; + } +} + +static void +serial_timeout_timer(void *priv) +{ + serial_t *dev = (serial_t *) priv; + +#ifdef ENABLE_SERIAL_LOG + serial_log("serial_timeout_timer()\n"); +#endif + + dev->lsr |= 0x01; + dev->int_status |= SERIAL_INT_TIMEOUT; + serial_update_ints(dev); +} + +void +serial_device_timeout(void *priv) +{ + serial_t *dev = (serial_t *) priv; + +#ifdef ENABLE_SERIAL_LOG + serial_log("serial_device_timeout()\n"); +#endif + + if (!dev->fifo_enabled) { + dev->lsr |= 0x10; + dev->int_status |= SERIAL_INT_LSR; + serial_update_ints(dev); + } +} + +static void +serial_update_speed(serial_t *dev) +{ + // pclog("serial_update_speed(%lf)\n", dev->transmit_period); + timer_on_auto(&dev->receive_timer, /* dev->bits * */ dev->transmit_period); + + if (dev->transmit_enabled & 3) + timer_on_auto(&dev->transmit_timer, dev->transmit_period); + + if (timer_is_enabled(&dev->timeout_timer)) + timer_on_auto(&dev->timeout_timer, 4.0 * dev->bits * dev->transmit_period); +} + +static void +serial_reset_fifo(serial_t *dev) +{ + dev->lsr = (dev->lsr & 0x9f) | 0x60; + dev->int_status = (dev->int_status & ~SERIAL_INT_TRANSMIT) | SERIAL_INT_TRANSMIT; + dev->xmit_fifo_pos = 0; + + fifo_reset_evt(dev->rcvr_fifo); + + serial_update_ints(dev); +} + +void +serial_set_dsr(serial_t *dev, uint8_t enabled) +{ + if (dev->mctrl & 0x10) + return; + + dev->msr &= ~0x2; + dev->msr |= ((dev->msr & 0x20) ^ ((!!enabled) << 5)) >> 4; + dev->msr &= ~0x20; + dev->msr |= (!!enabled) << 5; + dev->msr_set &= ~0x20; + dev->msr_set |= (!!enabled) << 5; + + if (dev->msr & 0x2) { + dev->int_status |= SERIAL_INT_MSR; + serial_update_ints(dev); + } +} + +void +serial_set_cts(serial_t *dev, uint8_t enabled) +{ + if (dev->mctrl & 0x10) + return; + + dev->msr &= ~0x1; + dev->msr |= ((dev->msr & 0x10) ^ ((!!enabled) << 4)) >> 4; + dev->msr &= ~0x10; + dev->msr |= (!!enabled) << 4; + dev->msr_set &= ~0x10; + dev->msr_set |= (!!enabled) << 4; + + if (dev->msr & 0x1) { + dev->int_status |= SERIAL_INT_MSR; + serial_update_ints(dev); + } +} + +void +serial_set_dcd(serial_t *dev, uint8_t enabled) +{ + if (dev->mctrl & 0x10) + return; + + dev->msr &= ~0x8; + dev->msr |= ((dev->msr & 0x80) ^ ((!!enabled) << 7)) >> 4; + dev->msr &= ~0x80; + dev->msr |= (!!enabled) << 7; + dev->msr_set &= ~0x80; + dev->msr_set |= (!!enabled) << 7; + + if (dev->msr & 0x8) { + dev->int_status |= SERIAL_INT_MSR; + serial_update_ints(dev); + } +} + +void +serial_set_clock_src(serial_t *dev, double clock_src) +{ + dev->clock_src = clock_src; + + serial_transmit_period(dev); + serial_update_speed(dev); +} + +void +serial_write(uint16_t addr, uint8_t val, void *p) +{ + serial_t *dev = (serial_t *) p; + uint8_t new_msr; + uint8_t old; + + // serial_log("UART: Write %02X to port %02X\n", val, addr); + serial_log("UART: [%04X:%08X] Write %02X to port %02X\n", CS, cpu_state.pc, val, addr); + + cycles -= ISA_CYCLES(8); + + switch (addr & 7) { + case 0: + if (dev->lcr & 0x80) { + dev->dlab = (dev->dlab & 0xff00) | val; + serial_transmit_period(dev); + serial_update_speed(dev); + return; + } + + // pclog("Serial write: %02X\n", val); + + /* Indicate FIFO/THR is no longer empty. */ + dev->lsr &= 0x9f; + dev->int_status &= ~SERIAL_INT_TRANSMIT; + serial_update_ints(dev); + + if (dev->fifo_enabled && (dev->xmit_fifo_pos < 16)) { + /* FIFO mode, begin transmitting. */ + timer_on_auto(&dev->transmit_timer, dev->transmit_period); + dev->transmit_enabled |= 1; /* Start moving. */ + dev->xmit_fifo[dev->xmit_fifo_pos++] = val; + } else if (!dev->fifo_enabled) { + /* Non-FIFO mode, begin transmitting. */ + timer_on_auto(&dev->transmit_timer, dev->transmit_period); + dev->transmit_enabled |= 1; /* Start moving. */ + dev->thr = val; + } + break; + case 1: + if (dev->lcr & 0x80) { + dev->dlab = (dev->dlab & 0x00ff) | (val << 8); + serial_transmit_period(dev); + serial_update_speed(dev); + return; + } + if ((val & 2) && (dev->lsr & 0x20)) + dev->int_status |= SERIAL_INT_TRANSMIT; + dev->ier = val & 0xf; + serial_update_ints(dev); + break; + case 2: + if (dev->type >= SERIAL_16550) { + if ((val ^ dev->fcr) & 0x01) + serial_reset_fifo(dev); + dev->fcr = val & 0xf9; + dev->fifo_enabled = val & 0x01; + /* TODO: When switching modes, shouldn't we reset the LSR + based on the new conditions? */ + if (!dev->fifo_enabled) { + memset(dev->xmit_fifo, 0, 16); + dev->xmit_fifo_pos = 0; + fifo_reset(dev->rcvr_fifo); + break; + } + if (val & 0x02) { + if (dev->fifo_enabled) + fifo_reset_evt(dev->rcvr_fifo); + else + fifo_reset(dev->rcvr_fifo); + } + if (val & 0x04) { + memset(dev->xmit_fifo, 0, 16); + dev->xmit_fifo_pos = 0; + } + switch ((val >> 6) & 0x03) { + case 0: + fifo_set_trigger_len(dev->rcvr_fifo, 1); + break; + case 1: + fifo_set_trigger_len(dev->rcvr_fifo, 4); + break; + case 2: + fifo_set_trigger_len(dev->rcvr_fifo, 8); + break; + case 3: + fifo_set_trigger_len(dev->rcvr_fifo, 14); + break; + } + dev->out_new = 0xffff; + serial_log("FIFO now %sabled, receive FIFO length = %i\n", dev->fifo_enabled ? "en" : "dis", dev->rcvr_fifo_len); + } + break; + case 3: + old = dev->lcr; + dev->lcr = val; + if ((old ^ val) & 0x3f) { + /* Data bits + start bit. */ + dev->bits = ((dev->lcr & 0x03) + 5) + 1; + /* Stop bits. */ + dev->bits++; /* First stop bit. */ + if (dev->lcr & 0x04) + dev->bits++; /* Second stop bit. */ + /* Parity bit. */ + if (dev->lcr & 0x08) + dev->bits++; + + serial_transmit_period(dev); + serial_update_speed(dev); + + if (dev->sd && dev->sd->lcr_callback) + dev->sd->lcr_callback(dev, dev->sd->priv, dev->lcr); + } + break; + case 4: + if ((val & 2) && !(dev->mctrl & 2)) { + if (dev->sd && dev->sd->rcr_callback) { + // pclog("RTS toggle callback\n"); + dev->sd->rcr_callback(dev, dev->sd->priv); + } + } + if (!(val & 8) && (dev->mctrl & 8)) + serial_do_irq(dev, 0); + if ((val ^ dev->mctrl) & 0x10) + serial_reset_fifo(dev); + dev->mctrl = val; + if (val & 0x10) { + new_msr = (val & 0x0c) << 4; + new_msr |= (val & 0x02) ? 0x10 : 0; + new_msr |= (val & 0x01) ? 0x20 : 0; + + if ((dev->msr ^ new_msr) & 0x10) + new_msr |= 0x01; + if ((dev->msr ^ new_msr) & 0x20) + new_msr |= 0x02; + if ((dev->msr ^ new_msr) & 0x80) + new_msr |= 0x08; + if ((dev->msr & 0x40) && !(new_msr & 0x40)) + new_msr |= 0x04; + + dev->msr = new_msr; + + dev->xmit_fifo_pos = 0; + /* TODO: Why reset the FIFO's here?! */ + fifo_reset(dev->rcvr_fifo); + } + break; + case 5: + dev->lsr = (dev->lsr & 0xe0) | (val & 0x1f); + if (dev->lsr & 0x01) + dev->int_status |= SERIAL_INT_RECEIVE; + if (dev->lsr & 0x1e) + dev->int_status |= SERIAL_INT_LSR; + if (dev->lsr & 0x20) + dev->int_status |= SERIAL_INT_TRANSMIT; + serial_update_ints(dev); + break; + case 6: +#if 0 + dev->msr = (val & 0xf0) | (dev->msr & 0x0f); + dev->msr = val; +#endif + /* The actual condition bits of the MSR are read-only, but the delta bits are + undocumentedly writable, and the PCjr BIOS uses them to raise MSR interrupts. */ + dev->msr = (dev->msr & 0xf0) | (val & 0x0f); + if (dev->msr & 0x0f) + dev->int_status |= SERIAL_INT_MSR; + serial_update_ints(dev); + break; + case 7: + if (dev->type >= SERIAL_16450) + dev->scratch = val; + break; + default: + break; + } +} + +uint8_t +serial_read(uint16_t addr, void *p) +{ + serial_t *dev = (serial_t *) p; + uint8_t ret = 0; + + cycles -= ISA_CYCLES(8); + + switch (addr & 7) { + case 0: + if (dev->lcr & 0x80) { + ret = dev->dlab & 0xff; + break; + } + + if (dev->fifo_enabled) { + /* FIFO mode. */ + serial_clear_timeout(dev); + ret = fifo_read_evt(dev->rcvr_fifo); + + if (dev->lsr & 0x01) + timer_on_auto(&dev->timeout_timer, 4.0 * dev->bits * dev->transmit_period); + } else { + /* Non-FIFO mode. */ + ret = dev->dat; + + // ret = (uint8_t) (dev->out_new & 0xffff); + dev->out_new = 0xffff; + + /* Always clear Data Ready interrupt. */ + dev->lsr &= 0xfe; + dev->int_status &= ~SERIAL_INT_RECEIVE; + serial_update_ints(dev); + } + + // pclog("Serial read : %02X\n", ret); + + // serial_log("Read data: %02X\n", ret); + break; + case 1: + if (dev->lcr & 0x80) + ret = (dev->dlab >> 8) & 0xff; + else + ret = dev->ier; + break; + case 2: + ret = dev->iir; + if ((ret & 0xe) == 2) { + dev->int_status &= ~SERIAL_INT_TRANSMIT; + serial_update_ints(dev); + } + if (dev->fcr & 1) + ret |= 0xc0; + break; + case 3: + ret = dev->lcr; + break; + case 4: + ret = dev->mctrl; + break; + case 5: + ret = dev->lsr; + if (dev->lsr & 0x1f) + dev->lsr &= ~0x1e; + dev->int_status &= ~SERIAL_INT_LSR; + serial_update_ints(dev); + break; + case 6: + ret = dev->msr | dev->msr_set; + dev->msr &= ~0x0f; + dev->int_status &= ~SERIAL_INT_MSR; + serial_update_ints(dev); + break; + case 7: + ret = dev->scratch; + break; + default: + break; + } + + // serial_log("UART: Read %02X from port %02X\n", ret, addr); + serial_log("UART: [%04X:%08X] Read %02X from port %02X\n", CS, cpu_state.pc, ret, addr); + return ret; +} + +void +serial_remove(serial_t *dev) +{ + if (dev == NULL) + return; + + if (!com_ports[dev->inst].enabled) + return; + + if (!dev->base_address) + return; + + serial_log("Removing serial port %i at %04X...\n", dev->inst, dev->base_address); + + io_removehandler(dev->base_address, 0x0008, + serial_read, NULL, NULL, serial_write, NULL, NULL, dev); + dev->base_address = 0x0000; +} + +void +serial_setup(serial_t *dev, uint16_t addr, uint8_t irq) +{ + serial_log("Adding serial port %i at %04X...\n", dev->inst, addr); + + if (dev == NULL) + return; + + if (!com_ports[dev->inst].enabled) + return; + if (dev->base_address != 0x0000) + serial_remove(dev); + dev->base_address = addr; + if (addr != 0x0000) + io_sethandler(addr, 0x0008, serial_read, NULL, NULL, serial_write, NULL, NULL, dev); + dev->irq = irq; +} + +static void +serial_rcvr_d_empty_evt(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + dev->lsr = (dev->lsr & 0xfe) | !fifo_get_empty(dev->rcvr_fifo); +} + +static void +serial_rcvr_d_overrun_evt(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + dev->lsr = (dev->lsr & 0xfd) | (fifo_get_overrun(dev->rcvr_fifo) << 1); +} + +static void +serial_rcvr_d_ready_evt(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + dev->int_status = (dev->int_status & ~SERIAL_INT_RECEIVE) | + (fifo_get_ready(dev->rcvr_fifo) ? SERIAL_INT_RECEIVE : 0); + serial_update_ints(dev); +} + +serial_t * +serial_attach_ex(int port, + void (*rcr_callback)(struct serial_s *serial, void *p), + void (*dev_write)(struct serial_s *serial, void *p, uint8_t data), + void (*transmit_period_callback)(struct serial_s *serial, void *p, double transmit_period), + void (*lcr_callback)(struct serial_s *serial, void *p, uint8_t data_bits), + void *priv) +{ + serial_device_t *sd = &serial_devices[port]; + + sd->rcr_callback = rcr_callback; + sd->dev_write = dev_write; + sd->transmit_period_callback = transmit_period_callback; + sd->lcr_callback = lcr_callback; + sd->priv = priv; + + return sd->serial; +} + +static void +serial_speed_changed(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + serial_update_speed(dev); +} + +static void +serial_close(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + next_inst--; + + if (com_ports[dev->inst].enabled) + fifo_close(dev->rcvr_fifo); + + free(dev); +} + +static void +serial_reset(void *priv) +{ + serial_t *dev = (serial_t *) priv; + + if (com_ports[dev->inst].enabled) { + timer_disable(&dev->transmit_timer); + timer_disable(&dev->timeout_timer); + timer_disable(&dev->receive_timer); + + dev->lsr = dev->thr = dev->mctrl = dev->rcr = 0x00; + dev->iir = dev->ier = dev->lcr = dev->msr = 0x00; + dev->dat = dev->int_status = dev->scratch = dev->fcr = 0x00; + dev->fifo_enabled = dev->rcvr_fifo_len = dev->bits = dev->data_bits = 0x00; + dev->baud_cycles = dev->rcvr_fifo_full = dev->txsr = dev->out = 0x00; + + dev->dlab = dev->out_new = 0x0000; + + dev->xmit_fifo_pos = dev->xmit_fifo_end = 0x00; + + if (dev->rcvr_fifo != NULL) + fifo_reset(dev->rcvr_fifo); + + serial_reset_port(dev); + + dev->dlab = 96; + dev->fcr = 0x06; + + serial_transmit_period(dev); + serial_update_speed(dev); + } +} + +static void * +serial_init(const device_t *info) +{ + serial_t *dev = (serial_t *) malloc(sizeof(serial_t)); + memset(dev, 0, sizeof(serial_t)); + + dev->inst = next_inst; + + if (com_ports[next_inst].enabled) { + serial_log("Adding serial port %i...\n", next_inst); + dev->type = info->local; + memset(&(serial_devices[next_inst]), 0, sizeof(serial_device_t)); + dev->sd = &(serial_devices[next_inst]); + dev->sd->serial = dev; + serial_reset_port(dev); + if (next_inst == 3) + serial_setup(dev, COM4_ADDR, COM4_IRQ); + else if (next_inst == 2) + serial_setup(dev, COM3_ADDR, COM3_IRQ); + else if ((next_inst == 1) || (info->flags & DEVICE_PCJR)) + serial_setup(dev, COM2_ADDR, COM2_IRQ); + else if (next_inst == 0) + serial_setup(dev, COM1_ADDR, COM1_IRQ); + + /* Default to 1200,N,7. */ + dev->dlab = 96; + dev->fcr = 0x06; + if (info->local == SERIAL_8250_PCJR) + dev->clock_src = 1789500.0; + else + dev->clock_src = 1843200.0; + timer_add(&dev->transmit_timer, serial_transmit_timer, dev, 0); + timer_add(&dev->timeout_timer, serial_timeout_timer, dev, 0); + timer_add(&dev->receive_timer, serial_receive_timer, dev, 0); + serial_transmit_period(dev); + serial_update_speed(dev); + + dev->rcvr_fifo = fifo64_init(); + fifo_set_priv(dev->rcvr_fifo, dev); + fifo_set_d_empty_evt(dev->rcvr_fifo, serial_rcvr_d_empty_evt); + fifo_set_d_overrun_evt(dev->rcvr_fifo, serial_rcvr_d_overrun_evt); + fifo_set_d_ready_evt(dev->rcvr_fifo, serial_rcvr_d_ready_evt); + fifo_reset_evt(dev->rcvr_fifo); + fifo_set_len(dev->rcvr_fifo, 16); + } + + next_inst++; + + return dev; +} + +void +serial_set_next_inst(int ni) +{ + next_inst = ni; +} + +void +serial_standalone_init(void) +{ + while (next_inst < SERIAL_MAX) + device_add_inst(&ns8250_device, next_inst + 1); +}; + +const device_t ns8250_device = { + .name = "National Semiconductor 8250(-compatible) UART", + .internal_name = "ns8250", + .flags = 0, + .local = SERIAL_8250, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns8250_pcjr_device = { + .name = "National Semiconductor 8250(-compatible) UART for PCjr", + .internal_name = "ns8250_pcjr", + .flags = DEVICE_PCJR, + .local = SERIAL_8250_PCJR, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns16450_device = { + .name = "National Semiconductor NS16450(-compatible) UART", + .internal_name = "ns16450", + .flags = 0, + .local = SERIAL_16450, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns16550_device = { + .name = "National Semiconductor NS16550(-compatible) UART", + .internal_name = "ns16550", + .flags = 0, + .local = SERIAL_16550, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns16650_device = { + .name = "Startech Semiconductor 16650(-compatible) UART", + .internal_name = "ns16650", + .flags = 0, + .local = SERIAL_16650, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns16750_device = { + .name = "Texas Instruments 16750(-compatible) UART", + .internal_name = "ns16750", + .flags = 0, + .local = SERIAL_16750, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns16850_device = { + .name = "Exar Corporation NS16850(-compatible) UART", + .internal_name = "ns16850", + .flags = 0, + .local = SERIAL_16850, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; + +const device_t ns16950_device = { + .name = "Oxford Semiconductor NS16950(-compatible) UART", + .internal_name = "ns16950", + .flags = 0, + .local = SERIAL_16950, + .init = serial_init, + .close = serial_close, + .reset = serial_reset, + { .available = NULL }, + .speed_changed = serial_speed_changed, + .force_redraw = NULL, + .config = NULL +}; diff --git a/src/include/86box/filters.h b/src/include/86box/filters.h index f93695433..dfe19c654 100644 --- a/src/include/86box/filters.h +++ b/src/include/86box/filters.h @@ -197,8 +197,8 @@ low_iir(int c, int i, double NewSample) 0.93726236021404663000 }; - static double y[2][2][NCoef + 1]; /* output samples */ - static double x[2][2][NCoef + 1]; /* input samples */ + static double y[3][2][NCoef + 1]; /* output samples */ + static double x[3][2][NCoef + 1]; /* input samples */ int n; /* shift the old samples */ @@ -232,8 +232,8 @@ low_cut_iir(int c, int i, double NewSample) 0.93726236021916731000 }; - static double y[2][2][NCoef + 1]; /* output samples */ - static double x[2][2][NCoef + 1]; /* input samples */ + static double y[3][2][NCoef + 1]; /* output samples */ + static double x[3][2][NCoef + 1]; /* input samples */ int n; /* shift the old samples */ @@ -266,8 +266,8 @@ high_iir(int c, int i, double NewSample) -1.36640781670578510000, 0.52352474706139873000 }; - static double y[2][2][NCoef + 1]; /* output samples */ - static double x[2][2][NCoef + 1]; /* input samples */ + static double y[3][2][NCoef + 1]; /* output samples */ + static double x[3][2][NCoef + 1]; /* input samples */ int n; /* shift the old samples */ @@ -300,8 +300,8 @@ high_cut_iir(int c, int i, double NewSample) -1.36640781666419950000, 0.52352474703279628000 }; - static double y[2][2][NCoef + 1]; /* output samples */ - static double x[2][2][NCoef + 1]; /* input samples */ + static double y[3][2][NCoef + 1]; /* output samples */ + static double x[3][2][NCoef + 1]; /* input samples */ int n; /* shift the old samples */ @@ -334,8 +334,8 @@ deemph_iir(int i, double NewSample) -1.05429146278569141337, 0.26412280202756849290 }; - static double y[2][NCoef + 1]; /* output samples */ - static double x[2][NCoef + 1]; /* input samples */ + static double y[3][NCoef + 1]; /* output samples */ + static double x[3][NCoef + 1]; /* input samples */ int n; /* shift the old samples */ @@ -372,8 +372,8 @@ sb_iir(int c, int i, double NewSample) 0.55326988968868285000 }; - static double y[2][2][NCoef + 1]; /* output samples */ - static double x[2][2][NCoef + 1]; /* input samples */ + static double y[3][2][NCoef + 1]; /* output samples */ + static double x[3][2][NCoef + 1]; /* input samples */ int n; /* shift the old samples */ @@ -395,13 +395,13 @@ sb_iir(int c, int i, double NewSample) #define NCoef 1 #define SB16_NCoef 51 -extern double low_fir_sb16_coef[2][SB16_NCoef]; +extern double low_fir_sb16_coef[3][SB16_NCoef]; static inline double low_fir_sb16(int c, int i, double NewSample) { - static double x[2][2][SB16_NCoef + 1]; // input samples - static int pos[2] = { 0, 0 }; + static double x[3][2][SB16_NCoef + 1]; // input samples + static int pos[3] = { 0, 0 }; double out = 0.0; int n; diff --git a/src/include/86box/serial - Cópia.h b/src/include/86box/serial - Cópia.h new file mode 100644 index 000000000..dca8c4481 --- /dev/null +++ b/src/include/86box/serial - Cópia.h @@ -0,0 +1,150 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * Definitions for the NS8250/16450/16550/16650/16750/16850/16950 + * UART emulation. + * + * + * + * Authors: Sarah Walker, + * Miran Grca, + * Fred N. van Kempen, + * + * Copyright 2008-2020 Sarah Walker. + * Copyright 2016-2020 Miran Grca. + * Copyright 2017-2020 Fred N. van Kempen. + */ + +#ifndef EMU_SERIAL_H +#define EMU_SERIAL_H + +#define SERIAL_8250 0 +#define SERIAL_8250_PCJR 1 +#define SERIAL_16450 2 +#define SERIAL_16550 3 +#define SERIAL_16650 4 +#define SERIAL_16750 5 +#define SERIAL_16850 6 +#define SERIAL_16950 7 + +#define SERIAL_FIFO_SIZE 16 + +/* Default settings for the standard ports. */ +#define COM1_ADDR 0x03f8 +#define COM1_IRQ 4 +#define COM2_ADDR 0x02f8 +#define COM2_IRQ 3 +#define COM3_ADDR 0x03e8 +#define COM3_IRQ 4 +#define COM4_ADDR 0x02e8 +#define COM4_IRQ 3 + +struct serial_device_s; +struct serial_s; + +typedef struct serial_s { + uint8_t lsr; + uint8_t thr; + uint8_t mctrl; + uint8_t rcr; + uint8_t iir; + uint8_t ier; + uint8_t lcr; + uint8_t msr; + uint8_t dat; + uint8_t int_status; + uint8_t scratch; + uint8_t fcr; + uint8_t irq; + uint8_t type; + uint8_t inst; + uint8_t transmit_enabled; + uint8_t fifo_enabled; + uint8_t rcvr_fifo_len; + uint8_t bits; + uint8_t data_bits; + uint8_t baud_cycles; + uint8_t rcvr_fifo_full; + uint8_t txsr; + uint8_t out; + uint8_t msr_set; + uint8_t pad; + uint8_t irq_state; + uint8_t pad0; + + uint16_t dlab; + uint16_t base_address; + uint16_t out_new; + uint16_t pad1; + + uint8_t xmit_fifo_pos; + uint8_t xmit_fifo_end; + + uint8_t xmit_fifo[SERIAL_FIFO_SIZE]; + + void *rcvr_fifo; + + pc_timer_t transmit_timer; + pc_timer_t timeout_timer; + pc_timer_t receive_timer; + double clock_src; + double transmit_period; + + struct serial_device_s *sd; +} serial_t; + +typedef struct serial_device_s { + void (*rcr_callback)(struct serial_s *serial, void *p); + void (*dev_write)(struct serial_s *serial, void *p, uint8_t data); + void (*lcr_callback)(struct serial_s *serial, void *p, uint8_t lcr); + void (*transmit_period_callback)(struct serial_s *serial, void *p, double transmit_period); + void *priv; + serial_t *serial; +} serial_device_t; + +typedef struct serial_port_s { + uint8_t enabled; +} serial_port_t; + +extern serial_port_t com_ports[SERIAL_MAX]; + +extern serial_t *serial_attach_ex(int port, + void (*rcr_callback)(struct serial_s *serial, void *p), + void (*dev_write)(struct serial_s *serial, void *p, uint8_t data), + void (*transmit_period_callback)(struct serial_s *serial, void *p, double transmit_period), + void (*lcr_callback)(struct serial_s *serial, void *p, uint8_t data_bits), + void *priv); + +#define serial_attach(port, rcr_callback, dev_write, priv) \ + serial_attach_ex(port, rcr_callback, dev_write, NULL, NULL, priv); + +extern void serial_remove(serial_t *dev); +extern void serial_set_type(serial_t *dev, int type); +extern void serial_setup(serial_t *dev, uint16_t addr, uint8_t irq); +extern void serial_clear_fifo(serial_t *dev); +extern void serial_write_fifo(serial_t *dev, uint8_t dat); +extern void serial_set_next_inst(int ni); +extern void serial_standalone_init(void); +extern void serial_set_clock_src(serial_t *dev, double clock_src); +extern void serial_reset_port(serial_t *dev); +extern void serial_device_timeout(void *priv); + +extern void serial_set_cts(serial_t *dev, uint8_t enabled); +extern void serial_set_dsr(serial_t *dev, uint8_t enabled); +extern void serial_set_dcd(serial_t *dev, uint8_t enabled); + +extern const device_t ns8250_device; +extern const device_t ns8250_pcjr_device; +extern const device_t ns16450_device; +extern const device_t ns16550_device; +extern const device_t ns16650_device; +extern const device_t ns16750_device; +extern const device_t ns16850_device; +extern const device_t ns16950_device; + +#endif /*EMU_SERIAL_H*/ diff --git a/src/include/86box/snd_sb.h b/src/include/86box/snd_sb.h index 6a702bbcd..f433dd107 100644 --- a/src/include/86box/snd_sb.h +++ b/src/include/86box/snd_sb.h @@ -144,6 +144,7 @@ typedef struct sb_t { void *gameport; int pos; + int pnp; uint8_t pos_regs[8]; uint8_t pnp_rom[512]; diff --git a/src/include/86box/sound.h b/src/include/86box/sound.h index 28dda0c02..60628ece8 100644 --- a/src/include/86box/sound.h +++ b/src/include/86box/sound.h @@ -52,9 +52,16 @@ extern int sound_card_current[SOUND_CARD_MAX]; extern void sound_add_handler(void (*get_buffer)(int32_t *buffer, int len, void *priv), void *priv); + extern void sound_set_cd_audio_filter(void (*filter)(int channel, double *buffer, void *priv), void *priv); +extern void sound_set_pc_speaker_filter(void (*filter)(int channel, + double *buffer, void *priv), + void *priv); + +extern void (*filter_pc_speaker)(int channel, double *buffer, void *priv); +extern void *filter_pc_speaker_p; extern int sound_card_available(int card); #ifdef EMU_DEVICE_H diff --git a/src/include/86box/timer - Cópia.h b/src/include/86box/timer - Cópia.h new file mode 100644 index 000000000..e33d6cbff --- /dev/null +++ b/src/include/86box/timer - Cópia.h @@ -0,0 +1,194 @@ +#ifndef _TIMER_H_ +#define _TIMER_H_ + +#include "cpu.h" + +/* Maximum period, currently 1 second. */ +#define MAX_USEC64 1000000ULL +#define MAX_USEC 1000000.0 + +#define TIMER_PROCESS 4 +#define TIMER_SPLIT 2 +#define TIMER_ENABLED 1 + +#pragma pack(push, 1) +typedef struct ts_struct_t +{ + uint32_t frac; + uint32_t integer; +} ts_struct_t; +#pragma pack(pop) + +typedef union ts_t { + uint64_t ts64; + ts_struct_t ts32; +} ts_t; + +/*Timers are based on the CPU Time Stamp Counter. Timer timestamps are in a + 32:32 fixed point format, with the integer part compared against the TSC. The + fractional part is used when advancing the timestamp to ensure a more accurate + period. + + As the timer only stores 32 bits of integer timestamp, and the TSC is 64 bits, + the timer period can only be at most 0x7fffffff CPU cycles. To allow room for + (optimistic) CPU frequency growth, timer period must be at most 1 second. + + When a timer callback is called, the timer has been disabled. If the timer is + to repeat, the callback must call timer_advance_u64(). This is a change from + the old timer API.*/ +typedef struct pc_timer_t { +#ifdef USE_PCEM_TIMER + uint32_t ts_integer; + uint32_t ts_frac; +#else + ts_t ts; +#endif + int flags; /* The flags are defined above. */ + int pad; + double period; /* This is used for large period timers to count + the microseconds and split the period. */ + + void (*callback)(void *priv); + void *priv; + + struct pc_timer_t *prev; + struct pc_timer_t *next; +} pc_timer_t; + +#ifdef __cplusplus +extern "C" { +#endif + +/*Timestamp of nearest enabled timer. CPU emulation must call timer_process() + when TSC matches or exceeds this.*/ +extern uint32_t timer_target; + +/*Enable timer, without updating timestamp*/ +extern void timer_enable(pc_timer_t *timer); +/*Disable timer*/ +extern void timer_disable(pc_timer_t *timer); + +/*Process any pending timers*/ +extern void timer_process(void); + +/*Reset timer system*/ +extern void timer_close(void); +extern void timer_init(void); + +/*Add new timer. If start_timer is set, timer will be enabled with a zero + timestamp - this is useful for permanently enabled timers*/ +extern void timer_add(pc_timer_t *timer, void (*callback)(void *priv), void *priv, int start_timer); + +/*1us in 32:32 format*/ +extern uint64_t TIMER_USEC; + +/*True if timer a expires before timer b*/ +#define TIMER_LESS_THAN(a, b) ((int64_t) ((a)->ts.ts64 - (b)->ts.ts64) <= 0) +/*True if timer a expires before 32 bit integer timestamp b*/ +#define TIMER_LESS_THAN_VAL(a, b) ((int32_t) ((a)->ts.ts32.integer - (b)) <= 0) +/*True if 32 bit integer timestamp a expires before 32 bit integer timestamp b*/ +#define TIMER_VAL_LESS_THAN_VAL(a, b) ((int32_t) ((a) - (b)) <= 0) + +/*Advance timer by delay, specified in 32:32 format. This should be used to + resume a recurring timer in a callback routine*/ +static __inline void +timer_advance_u64(pc_timer_t *timer, uint64_t delay) +{ + timer->ts.ts64 += delay; + + timer_enable(timer); +} + +/*Set a timer to the given delay, specified in 32:32 format. This should be used + when starting a timer*/ +static __inline void +timer_set_delay_u64(pc_timer_t *timer, uint64_t delay) +{ + timer->ts.ts64 = 0ULL; + timer->ts.ts32.integer = tsc; + timer->ts.ts64 += delay; + + timer_enable(timer); +} + +/*True if timer currently enabled*/ +static __inline int +timer_is_enabled(pc_timer_t *timer) +{ + return !!(timer->flags & TIMER_ENABLED); +} + +/*True if timer currently on*/ +static __inline int +timer_is_on(pc_timer_t *timer) +{ + // return ((timer->flags & TIMER_SPLIT) || (timer->flags & TIMER_ENABLED)); + return !!(timer->flags & TIMER_ENABLED); +} + +/*Return integer timestamp of timer*/ +static __inline uint32_t +timer_get_ts_int(pc_timer_t *timer) +{ + return timer->ts.ts32.integer; +} + +/*Return remaining time before timer expires, in us. If the timer has already + expired then return 0*/ +static __inline uint32_t +timer_get_remaining_us(pc_timer_t *timer) +{ + int64_t remaining; + + if (timer->flags & TIMER_ENABLED) { + remaining = (int64_t) (timer->ts.ts64 - (uint64_t) (tsc << 32)); + + if (remaining < 0) + return 0; + return remaining / TIMER_USEC; + } + + return 0; +} + +/*Return remaining time before timer expires, in 32:32 timestamp format. If the + timer has already expired then return 0*/ +static __inline uint64_t +timer_get_remaining_u64(pc_timer_t *timer) +{ + int64_t remaining; + + if (timer->flags & TIMER_ENABLED) { + remaining = (int64_t) (timer->ts.ts64 - (uint64_t) (tsc << 32)); + + if (remaining < 0) + return 0; + return remaining; + } + + return 0; +} + +/*Set timer callback function*/ +static __inline void +timer_set_callback(pc_timer_t *timer, void (*callback)(void *priv)) +{ + timer->callback = callback; +} + +/*Set timer private data*/ +static __inline void +timer_set_p(pc_timer_t *timer, void *priv) +{ + timer->priv = priv; +} + +/* The API for big timer periods starts here. */ +extern void timer_stop(pc_timer_t *timer); +extern void timer_on_auto(pc_timer_t *timer, double period); + +#ifdef __cplusplus +} +#endif + +#endif /*_TIMER_H_*/ diff --git a/src/include/86box/vid_mda - Cópia.h b/src/include/86box/vid_mda - Cópia.h new file mode 100644 index 000000000..5a381b3f0 --- /dev/null +++ b/src/include/86box/vid_mda - Cópia.h @@ -0,0 +1,67 @@ +/* Copyright holders: Sarah Walker + see COPYING for more details +*/ + +#ifndef VIDEO_MDA_H +#define VIDEO_MDA_H + +typedef struct mda_t { + mem_mapping_t mapping; + + uint8_t crtc[32]; + int crtcreg; + + uint8_t ctrl; + uint8_t stat; + + uint64_t dispontime; + uint64_t dispofftime; + pc_timer_t timer; + pc_timer_t dot_timer; + + int firstline; + int lastline; + + int linepos; + int displine; + int vc; + int sc; + uint16_t ma; + uint16_t maback; + int con; + int coff; + int cursoron; + int dispon; + int blink; + int vsynctime; + int vadj; + int monitor_index; + int prev_monitor_index; + + uint8_t *vram; +} mda_t; + +#define VIDEO_MONITOR_PROLOGUE() \ + { \ + mda->prev_monitor_index = monitor_index_global; \ + monitor_index_global = mda->monitor_index; \ + } +#define VIDEO_MONITOR_EPILOGUE() \ + { \ + monitor_index_global = mda->prev_monitor_index; \ + } + +void mda_init(mda_t *mda); +void mda_setcol(int chr, int blink, int fg, uint8_t cga_ink); +void mda_out(uint16_t addr, uint8_t val, void *priv); +uint8_t mda_in(uint16_t addr, void *priv); +void mda_write(uint32_t addr, uint8_t val, void *priv); +uint8_t mda_read(uint32_t addr, void *priv); +void mda_recalctimings(mda_t *mda); +void mda_poll(void *priv); + +#ifdef EMU_DEVICE_H +extern const device_t mda_device; +#endif + +#endif /*VIDEO_MDA_H*/ diff --git a/src/machine/m_ps1_hdc_varcem.c b/src/machine/m_ps1_hdc_varcem.c new file mode 100644 index 000000000..b2bd5222a --- /dev/null +++ b/src/machine/m_ps1_hdc_varcem.c @@ -0,0 +1,1483 @@ +/* + * VARCem Virtual ARchaeological Computer EMulator. + * An emulator of (mostly) x86-based PC systems and devices, + * using the ISA,EISA,VLB,MCA and PCI system buses, roughly + * spanning the era between 1981 and 1995. + * + * This file is part of the VARCem Project. + * + * Implementation of the PS/1 Model 2011 disk controller. + * + * XTA is the acronym for 'XT-Attached', which was basically + * the XT-counterpart to what we know now as IDE (which is + * also named ATA - AT Attachment.) The basic ideas was to + * put the actual drive controller electronics onto the drive + * itself, and have the host machine just talk to that using + * a simpe, standardized I/O path- hence the name IDE, for + * Integrated Drive Electronics. + * + * In the ATA version of IDE, the programming interface of + * the IBM PC/AT (which used the Western Digitial 1002/1003 + * controllers) was kept, and, so, ATA-IDE assumes a 16bit + * data path: it reads and writes 16bit words of data. The + * disk drives for this bus commonly have an 'A' suffix to + * identify them as 'ATBUS'. + * + * In XTA-IDE, which is slightly older, the programming + * interface of the IBM PC/XT (which used the MFM controller + * from Xebec) was kept, and, so, it uses an 8bit data path. + * Disk drives for this bus commonly have the 'X' suffix to + * mark them as being for this XTBUS variant. + * + * So, XTA and ATA try to do the same thing, but they use + * different ways to achive their goal. + * + * Also, XTA is **not** the same as XTIDE. XTIDE is a modern + * variant of ATA-IDE, but retro-fitted for use on 8bit XT + * systems: an extra register is used to deal with the extra + * data byte per transfer. XTIDE uses regular IDE drives, + * and uses the regular ATA/IDE programming interface, just + * with the extra register. + * + * NOTE: We should probably find a nicer way to integrate our Disk + * Type table with the main code, so the user can only select + * items from that list... + * + * Version: @(#)m_ps1_hdc.c 1.0.15 2021/03/18 + * + * Author: Fred N. van Kempen, + * + * Based on my earlier HD20 driver for the EuroPC. + * Thanks to Marco Bortolin for the help and feedback !! + * + * Copyright 2017-2021 Fred N. van Kempen. + * + * Redistribution and use in source and binary forms, with + * or without modification, are permitted provided that the + * following conditions are met: + * + * 1. Redistributions of source code must retain the entire + * above notice, this list of conditions and the following + * disclaimer. + * + * 2. Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the + * following disclaimer in the documentation and/or other + * materials provided with the distribution. + * + * 3. Neither the name of the copyright holder nor the names + * of its contributors may be used to endorse or promote + * products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +#define __USE_LARGEFILE64 +#define _LARGEFILE_SOURCE +#define _LARGEFILE64_SOURCE +#include +#include +#include +#include +#include +#define dbglog hdc_log +#include "../emu.h" +#include "../timer.h" +#include "../io.h" +#include "../device.h" +#include "../devices/system/dma.h" +#include "../devices/system/pic.h" +#include "../devices/disk/hdc.h" +#include "../devices/disk/hdd.h" +#include "../ui/ui.h" +#include "../plat.h" +#include "machine.h" +#include "m_ps1.h" + + +#define HDC_TIME (50*TIMER_USEC) +#define HDC_TYPE_USER 47 /* user drive type */ +#define PS1_HDD_NUM 1 /* we support 1 drive */ + + +enum { + STATE_IDLE = 0, + STATE_RECV, + STATE_RDATA, + STATE_RDONE, + STATE_SEND, + STATE_SDATA, + STATE_SDONE, + STATE_FINIT, + STATE_FDONE +}; + + +/* Command values. These deviate from the XTA ones. */ +#define CMD_READ_SECTORS 0x01 /* regular read-date */ +#define CMD_READ_VERIFY 0x02 /* read for verify, no data */ +#define CMD_READ_EXT 0x03 /* read extended (ecc) */ +#define CMD_READ_ID 0x05 /* read ID mark on cyl */ +#define CMD_RECALIBRATE 0x08 /* recalibrate to track0 */ +#define CMD_WRITE_SECTORS 0x09 /* regular write-data */ +#define CMD_WRITE_VERIFY 0x0a /* write-data with verify */ +#define CMD_WRITE_EXT 0x0b /* write extended (ecc) */ +#define CMD_FORMAT_DRIVE 0x0d /* format entire disk */ +#define CMD_SEEK 0x0e /* seek */ +#define CMD_FORMAT_TRACK 0x0f /* format one track */ + +/* Attachment Status register (reg 2R) values (IBM PS/1 2011.) */ +#define ASR_TX_EN 0x01 /* transfer enable */ +#define ASR_INT_REQ 0x02 /* interrupt request */ +#define ASR_BUSY 0x04 /* busy */ +#define ASR_DIR 0x08 /* direction */ +#define ASR_DATA_REQ 0x10 /* data request */ + +/* Attachment Control register (2W) values (IBM PS/1 2011.) */ +#define ACR_DMA_EN 0x01 /* DMA enable */ +#define ACR_INT_EN 0x02 /* interrupt enable */ +#define ACR_RESET 0x80 /* reset */ + +/* Interrupt Status register (4R) values (IBM PS/1 2011.) */ +#define ISR_EQUIP_CHECK 0x01 /* internal hardware error */ +#define ISR_ERP_INVOKED 0x02 /* error recovery invoked */ +#define ISR_CMD_REJECT 0x20 /* command reject */ +#define ISR_INVALID_CMD 0x40 /* invalid command */ +#define ISR_TERMINATION 0x80 /* termination error */ + +/* Attention register (4W) values (IBM PS/1 2011.) */ +#define ATT_DATA 0x10 /* data request */ +#define ATT_SSB 0x20 /* sense summary block */ +#define ATT_CSB 0x40 /* command specify block */ +#define ATT_CCB 0x80 /* command control block */ + + +/* + * Define the Sense Summary Block. + * + * The sense summary block contains the current status of the + * drive. The information in the summary block is updated after + * each command is completed, after an error, or before the + * block is transferred. + */ +#pragma pack(push,1) +typedef struct { + /* Status byte 0. */ + uint8_t track_0 :1, /* T0 */ + mbz1 :1, /* 0 */ + mbz2 :1, /* 0 */ + cylinder_err :1, /* CE */ + write_fault :1, /* WF */ + mbz3 :1, /* 0 */ + seek_end :1, /* SE */ + not_ready :1; /* NR */ + + /* Status byte 1. */ + uint8_t id_not_found :1, /* ID */ + mbz4 :1, /* 0 */ + mbz5 :1, /* 0 */ + wrong_cyl :1, /* WC */ + all_bit_set :1, /* BT */ + mark_not_found :1, /* AM */ + ecc_crc_err :1, /* ET */ + ecc_crc_field :1; /* EF */ + + /* Status byte 2. */ + uint8_t headsel_state :4, /* headsel state[4] */ + defective_sector:1, /* DS */ + retried_ok :1, /* RG */ + need_reset :1, /* RR */ +#if 1 + valid :1; /* 0 (abused as VALID) */ +#else + mbz6 :1; /* 0 */ +#endif + + /* Most recent ID field seen. */ + uint8_t last_cyl_low; /* Cyl_Low[8] */ + uint8_t last_head :4, /* HD[4] */ + mbz7 :1, /* 0 */ + last_cyl_high :2, /* Cyl_high[2] */ + last_def_sect :1; /* DS */ + uint8_t last_sect; /* Sect[8] */ + + uint8_t sect_size; /* Size[8] = 02 */ + + /* Current position. */ + uint8_t curr_cyl_high :2, /* Cyl_High_[2] */ + mbz8 :1, /* 0 */ + mbz9 :1, /* 0 */ + curr_head :4; /* HD_2[4] */ + uint8_t curr_cyl_low; /* Cyl_Low_2[8] */ + + uint8_t sect_corr; /* sectors corrected */ + + uint8_t retries; /* retries */ + + /* + * This byte shows the progress of the controller through the + * last command. It allows the system to monitor the controller + * and determine if a reset is needed. When the transfer of the + * control block is started, the value is set to hex 00. The + * progress indicated by this byte is: + * + * 1. Set to hex 01 after the control block is successfully + * transferred. + * + * 2. Set to hex 02 when the command is valid and the drive + * is ready. + * + * 3. Set to hex 03 when the head is in the correct track. + * The most-significant four bits (high nibble) are then + * used to indicate the successful stages of the data + * transfer: + * + * Bit 7 A sector was transferred between the system + * and the sector buffer. + * + * Bit 6 A sector was transferred between the controller + * and the sector buffer. + * + * Bit 5 An error was detected and error recovery + * procedures have been started. + * + * Bit 4 The controller has completed the operation + * and is now not busy. + * + * 4. When the transfer is complete, the low nibble equals hex 4 + * and the high nibble is unchanged. + */ + uint8_t cmd_syndrome; /* command syndrome */ + + uint8_t drive_type; /* drive type */ + + uint8_t rsvd; /* reserved byte */ +} ssb_t; +#pragma pack(pop) + +/* + * Define the Format Control Block. + * + * The format control block (FCB) specifies the ID data used + * in formatting the track. It is used by the Format Track + * and Format Disk commands and contains five bytes for each + * sector formatted on that track. + * + * When the Format Disk command is used, the control block + * contains the sector information of all sectors for head 0, + * cylinder 0. The drive will use the same block to format + * the rest of the disk and automatically increment the head + * number and cylinder number for the remaining tracks. The + * sector numbers, sector size, and the fill byte will be + * the same for each track. + * + * The drive formats the sector IDs on the disk in the same + * order as they are specified in the control block. + * Therefore, sector interleaving is accomplished by filling + * in the control block with the desired interleave. + * + * For example, when formatting 17 sectors per track with an + * interleave of 2, the control block has the first 5 bytes + * with a sector number of 1, the second with a sector number + * of 10, the third with a sector number of 2, and continuing + * until all 17 sectors for that track are defined. + * + * The format for the format control block is described in + * the following. The five bytes are repeated for each + * sector on the track. The control block must contain an + * even number of bytes. If an odd number of sectors are + * being formatted, an additional byte is sent with all + * bits 0. + */ +#pragma pack(push,1) +typedef struct { + uint8_t cyl_high :2, /* cylinder [9:8] bits */ + defective_sector:1, /* DS */ + mbz1 :1, /* 0 */ + head :4; /* head number */ + + uint8_t cyl_low; /* cylinder [7:0] bits */ + + uint8_t sector; /* sector number */ + + uint8_t mbz2 :1, /* 0 */ + mbo :1, /* 1 */ + mbz3 :6; /* 000000 */ + + uint8_t fill; /* filler byte */ +} fcb_t; +#pragma pack(pop) + +/* + * Define the Command Control Block. + * + * The system specifies the operation by sending the 6-byte + * command control block to the controller. It can be sent + * through a DMA or PIO operation. + */ +#pragma pack(push,1) +typedef struct { + uint8_t ec_p :1, /* EC/P (ecc/park) */ + mbz1 :1, /* 0 */ + auto_seek :1, /* AS (auto-seek) */ + no_data :1, /* ND (no data) */ + cmd :4; /* command code[4] */ + + uint8_t cyl_high :2, /* cylinder [9:8] bits */ + mbz2 :2, /* 00 */ + head :4; /* head number */ + + uint8_t cyl_low; /* cylinder [7:0] bits */ + + uint8_t sector; /* sector number */ + + uint8_t mbz3 :1, /* 0 */ + mbo1 :1, /* 1 */ + mbz4 :6; /* 000000 */ + + uint8_t count; /* blk count/interleave */ +} ccb_t; +#pragma pack(pop) + +/* Define the hard drive geometry table. */ +typedef struct { + uint16_t cyl; + uint8_t hpc; + uint8_t spt; + int16_t wpc; + int16_t lz; +} geom_t; + +/* Define an attached drive. */ +typedef struct { + int8_t id, /* drive ID on bus */ + present, /* drive is present */ + hdd_num, /* index to global disk table */ + type; /* drive type ID */ + + uint16_t cur_cyl; /* last known position of heads */ + + uint8_t spt, /* active drive parameters */ + hpc; + uint16_t tracks; + + uint8_t cfg_spt, /* configured drive parameters */ + cfg_hpc; + uint16_t cfg_tracks; +} drive_t; + + +typedef struct { + uint16_t base; /* controller base I/O address */ + int8_t irq; /* controller IRQ channel */ + int8_t dma; /* controller DMA channel */ + + /* Registers. */ + uint8_t attn, /* ATTENTION register */ + ctrl, /* Control register (ACR) */ + status, /* Status register (ASR) */ + intstat; /* Interrupt Status register (ISR) */ + + priv_t sys; /* handle to system board */ + + /* Controller state. */ + tmrval_t callback; + int8_t state, /* controller state */ + reset; /* reset state counter */ + + /* Data transfer. */ + int16_t buf_idx, /* buffer index and pointer */ + buf_len; + uint8_t *buf_ptr; + + /* Current operation parameters. */ + ssb_t ssb; /* sense block */ + ccb_t ccb; /* command control block */ + uint16_t track; /* requested track# */ + uint8_t head, /* requested head# */ + sector; /* requested sector# */ + int count; /* requested sector count */ + + drive_t drives[PS1_HDD_NUM]; /* the attached drive(s) */ + + uint8_t data[512]; /* data buffer */ + uint8_t sector_buf[512]; /* sector buffer */ +} hdc_t; + + +/* + * IBM hard drive types 1-44. + * + * We need these to translate the selected disk's + * geometry back to a valid type through the SSB. + * + * Cyl. Head Sect. Write Land + * p-comp Zone + */ +static const geom_t ibm_type_table[] = { + { 0, 0, 0, 0, 0 }, /* 0 (none) */ + { 306, 4, 17, 128, 305 }, /* 1 10 MB */ + { 615, 4, 17, 300, 615 }, /* 2 20 MB */ + { 615, 6, 17, 300, 615 }, /* 3 31 MB */ + { 940, 8, 17, 512, 940 }, /* 4 62 MB */ + { 940, 6, 17, 512, 940 }, /* 5 47 MB */ + { 615, 4, 17, -1, 615 }, /* 6 20 MB */ + { 462, 8, 17, 256, 511 }, /* 7 31 MB */ + { 733, 5, 17, -1, 733 }, /* 8 30 MB */ + { 900, 15, 17, -1, 901 }, /* 9 112 MB */ + { 820, 3, 17, -1, 820 }, /* 10 20 MB */ + { 855, 5, 17, -1, 855 }, /* 11 35 MB */ + { 855, 7, 17, -1, 855 }, /* 12 50 MB */ + { 306, 8, 17, 128, 319 }, /* 13 20 MB */ + { 733, 7, 17, -1, 733 }, /* 14 43 MB */ + { 0, 0, 0, 0, 0 }, /* 15 (rsvd) */ + { 612, 4, 17, 0, 663 }, /* 16 20 MB */ + { 977, 5, 17, 300, 977 }, /* 17 41 MB */ + { 977, 7, 17, -1, 977 }, /* 18 57 MB */ + { 1024, 7, 17, 512, 1023 }, /* 19 59 MB */ + { 733, 5, 17, 300, 732 }, /* 20 30 MB */ + { 733, 7, 17, 300, 732 }, /* 21 43 MB */ + { 733, 5, 17, 300, 733 }, /* 22 30 MB */ + { 306, 4, 17, 0, 336 }, /* 23 10 MB */ + { 612, 4, 17, 305, 663 }, /* 24 20 MB */ + { 306, 4, 17, -1, 340 }, /* 25 10 MB */ + { 612, 4, 17, -1, 670 }, /* 26 20 MB */ + { 698, 7, 17, 300, 732 }, /* 27 41 MB */ + { 976, 5, 17, 488, 977 }, /* 28 40 MB */ + { 306, 4, 17, 0, 340 }, /* 29 10 MB */ + { 611, 4, 17, 306, 663 }, /* 30 20 MB */ + { 732, 7, 17, 300, 732 }, /* 31 43 MB */ + { 1023, 5, 17, -1, 1023 }, /* 32 42 MB */ + { 614, 4, 25, -1, 663 }, /* 33 30 MB */ + { 775, 2, 27, -1, 900 }, /* 34 20 MB */ + { 921, 2, 33, -1, 1000 }, /* 35 30 MB * */ + { 402, 4, 26, -1, 460 }, /* 36 20 MB */ + { 580, 6, 26, -1, 640 }, /* 37 44 MB */ + { 845, 2, 36, -1, 1023 }, /* 38 30 MB * */ + { 769, 3, 36, -1, 1023 }, /* 39 41 MB * */ + { 531, 4, 39, -1, 532 }, /* 40 40 MB */ + { 577, 2, 36, -1, 1023 }, /* 41 20 MB */ + { 654, 2, 32, -1, 674 }, /* 42 20 MB */ + { 923, 5, 36, -1, 1023 }, /* 43 81 MB */ + { 531, 8, 39, -1, 532 } /* 44 81 MB */ +}; + + +/* FIXME: we should use the disk/hdd_table.c code with custom tables! */ +static int +ibm_drive_type(drive_t *drive) +{ + const geom_t *ptr; + int i; + + for (i = 0; i < (sizeof(ibm_type_table) / sizeof(geom_t)); i++) { + ptr = &ibm_type_table[i]; + if ((drive->tracks == ptr->cyl) && + (drive->hpc == ptr->hpc) && (drive->spt == ptr->spt)) return(i); + } + + return(HDC_TYPE_USER); +} + + +static void +set_intr(hdc_t *dev, int raise) +{ + if (raise) { + dev->status |= ASR_INT_REQ; + if (dev->ctrl & ACR_INT_EN) + picint(1 << dev->irq); + } else { + dev->status &= ~ASR_INT_REQ; + picintc(1 << dev->irq); + } +} + + +/* Get the logical (block) address of a CHS triplet. */ +static int +get_sector(hdc_t *dev, drive_t *drive, off64_t *addr) +{ + if (drive->cur_cyl != dev->track) { + DEBUG("HDC: get_sector: wrong cylinder %d/%d\n", + drive->cur_cyl, dev->track); + dev->ssb.wrong_cyl = 1; + return(1); + } + + if (dev->head >= drive->hpc) { + DEBUG("HDC: get_sector: past end of heads\n"); + dev->ssb.cylinder_err = 1; + return(1); + } + + if (dev->sector > drive->spt) { + DEBUG("HDC: get_sector: past end of sectors\n"); + dev->ssb.mark_not_found = 1; + return(1); + } + + /* Calculate logical address (block number) of desired sector. */ + *addr = ((((off64_t) dev->track*drive->hpc) + \ + dev->head)*drive->spt) + dev->sector - 1; + + return(0); +} + + +static void +next_sector(hdc_t *dev, drive_t *drive) +{ + if (++dev->sector > drive->spt) { + dev->sector = 1; + if (++dev->head >= drive->hpc) { + dev->head = 0; + dev->track++; + if (++drive->cur_cyl >= drive->tracks) { + drive->cur_cyl = drive->tracks-1; + dev->ssb.cylinder_err = 1; + } + } + } +} + + +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) +static void +dump_ssb(ssb_t *ssb) +{ + char temp[1024]; + char *sp = temp; + uint8_t *ptr = (uint8_t *)ssb; + int i; + + sprintf(temp, "Current SSB:\n ["); + sp += strlen(sp); + for (i = 0; i < sizeof(ssb_t); i++) { + sprintf(sp, " %02X", *ptr++); + sp += strlen(sp); + } + sprintf(sp, " ]\n"); sp += strlen(sp); + + sprintf(sp, " Status 0: T0=%d CE=%d WF=%d SE=%d NR=%d\n", + ssb->track_0, ssb->cylinder_err, ssb->write_fault, + ssb->seek_end, ssb->not_ready); + sp += strlen(sp); + + sprintf(sp, " Status 1: ID=%d WC=%d BT=%d AM=%d ET=%d EF=%d\n", + ssb->id_not_found, ssb->wrong_cyl, ssb->all_bit_set, + ssb->mark_not_found, ssb->ecc_crc_err, ssb->ecc_crc_field); + sp += strlen(sp); + + sprintf(sp, " Status 2: HEADSEL=%d DS=%d RG=%d RR=%d\n", + ssb->headsel_state, ssb->defective_sector, ssb->retried_ok, + ssb->need_reset); + sp += strlen(sp); + + sprintf(sp, " Last : CYL=%d HEAD=%d SECTOR=%d DS=%d SIZE=%d\n", + (ssb->last_cyl_high<<8)|ssb->last_cyl_low, ssb->last_head, + ssb->last_sect, ssb->last_def_sect, (128<sect_size)); + sp += strlen(sp); + + sprintf(sp, " Current : CYL=%d HEAD=%d CORR=%d RETR=%d\n", + (ssb->curr_cyl_high<<8)|ssb->curr_cyl_low, ssb->curr_head, + ssb->sect_corr, ssb->retries); + sp += strlen(sp); + + sprintf(sp, " Misc : Syndrome=%02X DRIVE_TYPE=%d\n", + ssb->cmd_syndrome, ssb->drive_type); + + DBGLOG(1, "HDC: %s\n", temp); +} + + +static void +dump_ccb(ccb_t *ccb) +{ + char temp[1024]; + char *sp = temp; + + sprintf(temp, "Incoming CCB:\n"); + sp += strlen(sp); + sprintf(sp, " CMD=%02X EC/P=%d DS=%d AS=%d ND=%d\n", + ccb->cmd, ccb->ec_p, ccb->mbz1, ccb->auto_seek, ccb->no_data); + sp += strlen(sp); + sprintf(sp, " CYL=%d HEAD=%d SECTOR=%d COUNT=%d\n", + ((ccb->cyl_high<<8)|ccb->cyl_low), ccb->head, ccb->sector, ccb->count); + + DBGLOG(1, "HDC: %s\n", temp); +}; + + +static void +dump_fcb(fcb_t *fcb, int count) +{ + char temp[1024]; + char *sp = temp; + + sprintf(temp, "Incoming FCB:\n"); + + while (count--) { + sp += strlen(sp); + sprintf(sp, " CYL=%4d HEAD=%2d DS=%d", + ((fcb->cyl_high << 8) | fcb->cyl_low), + fcb->head, fcb->defective_sector); + sp += strlen(sp); + sprintf(sp, " SECTOR=%2d FILL=%02X\n", fcb->sector, fcb->fill); + fcb++; + } + + DBGLOG(1, "HDC: %s\n", temp); +} +#endif + + +/* Finish up. Repeated all over, so a function it is now. */ +static void +do_finish(hdc_t *dev) +{ + dev->state = STATE_IDLE; + + dev->attn &= ~(ATT_CCB | ATT_DATA); + + dev->status = 0x00; + + set_intr(dev, 1); +} + + +/* Seek to a cylinder. */ +static int +do_seek(hdc_t *dev, drive_t *drive, uint16_t cyl) +{ + if (cyl >= drive->tracks) { + dev->ssb.cylinder_err = 1; + return(1); + } + + dev->track = cyl; + drive->cur_cyl = dev->track; + + return(0); +} + + +/* Format a track or an entire drive. */ +static void +do_format(hdc_t *dev, drive_t *drive, ccb_t *ccb) +{ + int start_cyl, end_cyl; + int intr = 0, val; + off64_t addr; +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + fcb_t *fcb; +#endif + + /* Get the parameters from the CCB. */ + if (ccb->cmd == CMD_FORMAT_DRIVE) { + start_cyl = 0; + end_cyl = drive->tracks; + } else { + start_cyl = (ccb->cyl_low | (ccb->cyl_high << 8)); + end_cyl = start_cyl + 1; + } + + switch (dev->state) { + case STATE_IDLE: + /* Ready to transfer the FCB data in. */ + dev->state = STATE_RDATA; + dev->buf_idx = 0; + dev->buf_ptr = dev->data; + dev->buf_len = ccb->count * sizeof(fcb_t); + if (dev->buf_len & 1) + dev->buf_len++; /* must be even */ + + /* Enable for PIO or DMA, as needed. */ +#if 0 /*NOT_USED*/ + if (dev->ctrl & ACR_DMA_EN) + dev->callback = HDC_TIME; + else +#endif + dev->status |= ASR_DATA_REQ; + break; + + case STATE_RDATA: + /* Perform DMA. */ + while (dev->buf_idx < dev->buf_len) { + val = dma_channel_read(dev->dma); + if (val == DMA_NODATA) { + ERRLOG("HDC: CMD_FORMAT out of data (idx=%d, len=%d)!\n", dev->buf_idx, dev->buf_len); + dev->intstat |= ISR_EQUIP_CHECK; + dev->ssb.need_reset = 1; + intr = 1; + break; + } + dev->buf_ptr[dev->buf_idx] = (val & 0xff); + dev->buf_idx++; + } + dev->state = STATE_RDONE; + dev->callback = HDC_TIME; + break; + + case STATE_RDONE: + if (! (dev->ctrl & ACR_DMA_EN)) + dev->status &= ~ASR_DATA_REQ; + +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + /* Point to the FCB we got. */ + fcb = (fcb_t *)dev->data; + dump_fcb(fcb, ccb->count); +#endif + dev->state = STATE_FINIT; + /*FALLTHROUGH*/ + + case STATE_FINIT: +do_fmt: +#ifdef ENABLE_HDC_LOG + DEBUG("HDC: format_%s(%d) %d,%d\n", + (ccb->cmd==CMD_FORMAT_DRIVE)?"drive":"track", + drive->id, dev->track, dev->head); +#endif + + /* Activate the status icon. */ + hdd_active(drive->hdd_num, 1); + + /* Seek to cylinder. */ + if (do_seek(dev, drive, start_cyl)) { + intr = 1; + break; + } + dev->head = ccb->head; + dev->sector = 1; + + /* Get address of sector to write. */ + if (get_sector(dev, drive, &addr)) { + intr = 1; + break; + } + + /* + * For now, we don't use the info from + * the FCB, although we should at least + * use it's "filler byte" value... + */ +#if 0 + hdd_image_zero_ex(drive->hdd_num, addr, fcb->fill, drive->spt); +#else + hdd_image_zero(drive->hdd_num, addr, drive->spt); +#endif + + /* Done with this track. */ + dev->state = STATE_FDONE; + /*FALLTHROUGH*/ + + case STATE_FDONE: + /* One more track done. */ + if (++start_cyl == end_cyl) { + intr = 1; + break; + } + + /* De-activate the status icon. */ + hdd_active(SB_DISK|drive->hdd_num, 0); + + /* This saves us a LOT of code. */ + dev->state = STATE_FINIT; + goto do_fmt; + } + + /* If we errored out, go back idle. */ + if (intr) { + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + + do_finish(dev); + } +} + + +/* Execute the CCB we just received. */ +static void +hdc_callback(void *priv) +{ + hdc_t *dev = (hdc_t *)priv; + ccb_t *ccb = &dev->ccb; + drive_t *drive; + off64_t addr; + int no_data = 0; + int val; + + /* Cancel timer. */ + dev->callback = 0; + + /* Clear the SSB error bits. */ + dev->ssb.track_0 = 0; + dev->ssb.cylinder_err = 0; + dev->ssb.write_fault = 0; + dev->ssb.seek_end = 0; + dev->ssb.not_ready = 0; + dev->ssb.id_not_found = 0; + dev->ssb.wrong_cyl = 0; + dev->ssb.all_bit_set = 0; + dev->ssb.mark_not_found = 0; + dev->ssb.ecc_crc_err = 0; + dev->ssb.ecc_crc_field = 0; + dev->ssb.valid = 1; + + /* We really only support one drive, but ohwell. */ + drive = &dev->drives[0]; + + switch (ccb->cmd) { + case CMD_READ_VERIFY: + no_data = 1; + /*FALLTHROUGH*/ + + case CMD_READ_SECTORS: +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + if (dev->state == STATE_IDLE) dump_ccb(ccb); +#endif + if (! drive->present) { + dev->ssb.not_ready = 1; + do_finish(dev); + return; + } + + switch (dev->state) { + case STATE_IDLE: + /* Seek to cylinder if requested. */ + if (ccb->auto_seek) { + if (do_seek(dev, drive, + (ccb->cyl_low|(ccb->cyl_high<<8)))) { + do_finish(dev); + return; + } + } + dev->head = ccb->head; + dev->sector = ccb->sector; + + /* Get sector count and size. */ + dev->count = (int)ccb->count; + dev->buf_len = (128 << dev->ssb.sect_size); + + dev->state = STATE_SEND; + /*FALLTHROUGH*/ + + case STATE_SEND: + /* Activate the status icon. */ + hdd_active(drive->hdd_num, 1); + +do_send: +#ifdef ENABLE_HDC_LOG + DEBUG("HDC: read_%s(%d: %d,%d,%d) cnt=%d\n", + (no_data)?"verify":"sector", drive->id, + dev->track, dev->head, dev->sector, + dev->count); +#endif + + /* Get address of sector to load. */ + if (get_sector(dev, drive, &addr)) { + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + do_finish(dev); + return; + } + + /* Read the block from the image. */ + hdd_image_read(drive->hdd_num, addr, 1, + (uint8_t *)dev->sector_buf); + + /* Ready to transfer the data out. */ + dev->state = STATE_SDATA; + dev->buf_idx = 0; + if (no_data) { + /* Delay a bit, no actual transfer. */ + dev->callback = HDC_TIME; + } else { + if (dev->ctrl & ACR_DMA_EN) { + /* DMA enabled. */ + dev->buf_ptr = dev->sector_buf; + dev->callback = HDC_TIME; + } else { + /* No DMA, do PIO. */ + dev->status |= (ASR_DATA_REQ|ASR_DIR); + + /* Copy from sector to data. */ + memcpy(dev->data, + dev->sector_buf, + dev->buf_len); + dev->buf_ptr = dev->data; + } + } + break; + + case STATE_SDATA: + if (! no_data) { + /* Perform DMA. */ + while (dev->buf_idx < dev->buf_len) { + val = dma_channel_write(dev->dma, + *dev->buf_ptr++); + if (val == DMA_NODATA) { + ERRLOG("HDC: CMD_READ_SECTORS out of data (idx=%d, len=%d)!\n", dev->buf_idx, dev->buf_len); + + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + + dev->intstat |= ISR_EQUIP_CHECK; + dev->ssb.need_reset = 1; + do_finish(dev); + return; + } + dev->buf_idx++; + } + } + dev->state = STATE_SDONE; + dev->callback = HDC_TIME; + break; + + case STATE_SDONE: + dev->buf_idx = 0; + if (--dev->count == 0) { +#ifdef ENABLE_HDC_LOG + DEBUG("HDC: read_%s(%d) DONE\n", + (no_data)?"verify":"sector", + drive->id); +#endif + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + + if (! (dev->ctrl & ACR_DMA_EN)) + dev->status &= ~(ASR_DATA_REQ|ASR_DIR); + dev->ssb.cmd_syndrome = 0xD4; + do_finish(dev); + return; + } + + /* Addvance to next sector. */ + next_sector(dev, drive); + + /* This saves us a LOT of code. */ + dev->state = STATE_SEND; + goto do_send; + } + break; + + case CMD_READ_EXT: /* READ_EXT */ + case CMD_READ_ID: /* READ_ID */ +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + if (dev->state == STATE_IDLE) dump_ccb(ccb); +#endif + if (! drive->present) { + dev->ssb.not_ready = 1; + do_finish(dev); + return; + } + + dev->intstat |= ISR_INVALID_CMD; + do_finish(dev); + break; + + case CMD_RECALIBRATE: /* RECALIBRATE */ +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + dump_ccb(ccb); +#endif +#ifdef ENABLE_HDC_LOG + DEBUG("HDC: recalibrate(%d) ready=%d\n", + drive->id, drive->present); +#endif + if (drive->present) { + dev->track = drive->cur_cyl = 0; + } else { + dev->ssb.not_ready = 1; + dev->intstat |= ISR_TERMINATION; + } + + do_finish(dev); + break; + + case CMD_WRITE_VERIFY: + no_data = 1; + /*FALLTHROUGH*/ + + case CMD_WRITE_SECTORS: +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + dump_ccb(ccb); +#endif + if (! drive->present) { + dev->ssb.not_ready = 1; + do_finish(dev); + return; + } + + switch (dev->state) { + case STATE_IDLE: + /* Seek to cylinder if requested. */ + if (ccb->auto_seek) { + if (do_seek(dev, drive, + (ccb->cyl_low|(ccb->cyl_high<<8)))) { + do_finish(dev); + return; + } + } + dev->head = ccb->head; + dev->sector = ccb->sector; + + /* Get sector count and size. */ + dev->count = (int)ccb->count; + dev->buf_len = (128 << dev->ssb.sect_size); + + dev->state = STATE_RECV; + /*FALLTHROUGH*/ + + case STATE_RECV: + /* Activate the status icon. */ + hdd_active(drive->hdd_num, 1); +do_recv: +#ifdef ENABLE_HDC_LOG + DEBUG("HDC write_%s(%d: %d,%d,%d) cnt=%d\n", + (no_data)?"verify":"sector", drive->id, + dev->track, dev->head, dev->sector, + dev->count); +#endif + /* Ready to transfer the data in. */ + dev->state = STATE_RDATA; + dev->buf_idx = 0; + if (no_data) { + /* Delay a bit, no actual transfer. */ + dev->callback = HDC_TIME; + } else { + if (dev->ctrl & ACR_DMA_EN) { + /* DMA enabled. */ + dev->buf_ptr = dev->sector_buf; + dev->callback = HDC_TIME; + } else { + /* No DMA, do PIO. */ + dev->buf_ptr = dev->data; + dev->status |= ASR_DATA_REQ; + } + } + break; + + case STATE_RDATA: + if (! no_data) { + /* Perform DMA. */ + while (dev->buf_idx < dev->buf_len) { + val = dma_channel_read(dev->dma); + if (val == DMA_NODATA) { + ERRLOG("HDC: CMD_WRITE_SECTORS out of data (idx=%d, len=%d)!\n", dev->buf_idx, dev->buf_len); + + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + + dev->intstat |= ISR_EQUIP_CHECK; + dev->ssb.need_reset = 1; + do_finish(dev); + return; + } + dev->buf_ptr[dev->buf_idx] = (val & 0xff); + dev->buf_idx++; + } + } + dev->state = STATE_RDONE; + dev->callback = HDC_TIME; + break; + + case STATE_RDONE: + /* Copy from data to sector if PIO. */ + if (! (dev->ctrl & ACR_DMA_EN)) + memcpy(dev->sector_buf, + dev->data, + dev->buf_len); + + /* Get address of sector to write. */ + if (get_sector(dev, drive, &addr)) { + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + + do_finish(dev); + return; + } + + /* Write the block to the image. */ + hdd_image_write(drive->hdd_num, addr, 1, + (uint8_t *)dev->sector_buf); + + dev->buf_idx = 0; + if (--dev->count == 0) { +#ifdef ENABLE_HDC_LOG + DEBUG("HDC: write_%s(%d) DONE\n", + (no_data)?"verify":"sector", + drive->id); +#endif + /* De-activate the status icon. */ + hdd_active(drive->hdd_num, 0); + + if (! (dev->ctrl & ACR_DMA_EN)) + dev->status &= ~ASR_DATA_REQ; + dev->ssb.cmd_syndrome = 0xD4; + do_finish(dev); + return; + } + + /* Advance to next sector. */ + next_sector(dev, drive); + + /* This saves us a LOT of code. */ + dev->state = STATE_RECV; + goto do_recv; + } + break; + + case CMD_FORMAT_DRIVE: + case CMD_FORMAT_TRACK: +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + if (dev->state == STATE_IDLE) dump_ccb(ccb); +#endif + do_format(dev, drive, ccb); + break; + + case CMD_SEEK: +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + dump_ccb(ccb); +#endif + if (! drive->present) { + dev->ssb.not_ready = 1; + do_finish(dev); + return; + } + + if (ccb->ec_p == 1) { + /* Park the heads. */ + val = do_seek(dev, drive, drive->tracks-1); + } else { + /* Seek to cylinder. */ + val = do_seek(dev, drive, + (ccb->cyl_low|(ccb->cyl_high<<8))); + } +#ifdef ENABLE_HDC_LOG + DEBUG("HDC: %s(%d) cyl=%d, err=%d\n", + (ccb->ec_p)?"park":"seek", + drive->id, drive->cur_cyl, val); +#endif + if (! val) + dev->ssb.seek_end = 1; + do_finish(dev); + break; + + default: + ERRLOG("HDC: unknown command - %02x\n", ccb->cmd); +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + dump_ccb(ccb); +#endif + dev->intstat |= ISR_INVALID_CMD; + do_finish(dev); + } +} + + +/* Prepare to send the SSB block. */ +static void +hdc_send_ssb(hdc_t *dev) +{ + drive_t *drive; + + /* We only support one drive, really, but ohwell. */ + drive = &dev->drives[0]; + + if (! dev->ssb.valid) { + /* Create a valid SSB. */ + memset(&dev->ssb, 0x00, sizeof(dev->ssb)); + dev->ssb.sect_size = 0x02; /* 512 bytes */ + dev->ssb.drive_type = drive->type; + } + + /* Update position fields. */ + dev->ssb.track_0 = !!(dev->track == 0); + dev->ssb.last_cyl_low = dev->ssb.curr_cyl_low; + dev->ssb.last_cyl_high = dev->ssb.curr_cyl_high; + dev->ssb.last_head = dev->ssb.curr_head; + dev->ssb.curr_cyl_high = ((dev->track >> 8) & 0x03); + dev->ssb.curr_cyl_low = (dev->track & 0xff); + dev->ssb.curr_head = (dev->head & 0x0f); + + dev->ssb.headsel_state = dev->ssb.curr_head; + dev->ssb.last_sect = dev->sector; + + /* We abuse an unused MBZ bit, so clear it. */ + dev->ssb.valid = 0; + + /* Set up the transfer buffer for the SSB. */ + dev->buf_idx = 0; + dev->buf_len = sizeof(dev->ssb); + dev->buf_ptr = (uint8_t *)&dev->ssb; + +#if defined(ENABLE_HDC_LOG) && defined(_DEBUG) + dump_ssb(&dev->ssb); +#endif + + /* Done with the SSB. */ + dev->attn &= ~ATT_SSB; +} + + +/* Read one of the controller registers. */ +static uint8_t +hdc_read(uint16_t port, priv_t priv) +{ + hdc_t *dev = (hdc_t *)priv; + uint8_t ret = 0xff; + + /* TRM: tell system board we are alive. */ + ps1_set_feedback(dev->sys); + + switch (port & 7) { + case 0: /* DATA register */ + if (dev->state == STATE_SDATA) { + if (dev->buf_idx > dev->buf_len) { + ERRLOG("HDC: read with empty buffer!\n"); + dev->state = STATE_IDLE; + dev->intstat |= ISR_INVALID_CMD; + dev->status &= (ASR_TX_EN|ASR_DATA_REQ|ASR_DIR); + set_intr(dev, 1); + break; + } + + ret = dev->buf_ptr[dev->buf_idx]; + if (++dev->buf_idx == dev->buf_len) { + /* Data block sent OK. */ + dev->status &= ~(ASR_TX_EN|ASR_DATA_REQ|ASR_DIR); + dev->state = STATE_IDLE; + } + } + break; + + case 2: /* ASR */ + ret = dev->status; + break; + + case 4: /* ISR */ + ret = dev->intstat; + dev->intstat = 0x00; + break; + } + + return(ret); +} + + +/* Write to one of the controller registers. */ +static void +hdc_write(uint16_t port, uint8_t val, priv_t priv) +{ + hdc_t *dev = (hdc_t *)priv; + + /* TRM: tell system board we are alive. */ + ps1_set_feedback(dev->sys); + + switch (port & 7) { + case 0: /* DATA register */ + if (dev->state == STATE_RDATA) { + if (dev->buf_idx >= dev->buf_len) { + ERRLOG("HDC: write with full buffer!\n"); + dev->intstat |= ISR_INVALID_CMD; + dev->status &= ~ASR_DATA_REQ; + set_intr(dev, 1); + break; + } + + /* Store the data into the buffer. */ + dev->buf_ptr[dev->buf_idx] = val; + if (++dev->buf_idx == dev->buf_len) { + /* We got all the data we need. */ + dev->status &= ~ASR_DATA_REQ; + dev->state = STATE_IDLE; + + /* If we were receiving a CCB, execute it. */ + if (dev->attn & ATT_CCB) { + /* + * If we were already busy with + * a CCB, then it must have had + * some new data using PIO. + */ + if (dev->status & ASR_BUSY) + dev->state = STATE_RDONE; + else + dev->status |= ASR_BUSY; + + /* Schedule command execution. */ + dev->callback = HDC_TIME; + } + } + } + break; + + case 2: /* ACR */ + dev->ctrl = val; + if (val & ACR_INT_EN) + set_intr(dev, 0); /* clear IRQ */ + + if (dev->reset != 0) { + if (++dev->reset == 3) { + dev->reset = 0; + + set_intr(dev, 1); + } + break; + } + + if (val & ACR_RESET) + dev->reset = 1; + break; + + case 4: /* ATTN */ + dev->status &= ~ASR_INT_REQ; + if (val & ATT_DATA) { + /* Dunno. Start PIO/DMA now? */ + } + + if (val & ATT_SSB) { + if (dev->attn & ATT_CCB) { + /* Hey now, we're still busy for you! */ + dev->intstat |= ISR_INVALID_CMD; + set_intr(dev, 1); + break; + } + + /* OK, prepare for sending an SSB. */ + dev->attn |= ATT_SSB; + + /* Grab or initialize an SSB to send. */ + hdc_send_ssb(dev); + + dev->state = STATE_SDATA; + dev->status |= (ASR_TX_EN|ASR_DATA_REQ|ASR_DIR); + set_intr(dev, 1); + } + + if (val & ATT_CCB) { + dev->attn |= ATT_CCB; + + /* Set up the transfer buffer for a CCB. */ + dev->buf_idx = 0; + dev->buf_len = sizeof(dev->ccb); + dev->buf_ptr = (uint8_t *)&dev->ccb; + + dev->state = STATE_RDATA; + dev->status |= ASR_DATA_REQ; + set_intr(dev, 1); + } + break; + } +} + + +static void +hdc_close(priv_t priv) +{ + hdc_t *dev = (hdc_t *)priv; + drive_t *drive; + int d; + + /* Remove the I/O handler. */ + io_removehandler(dev->base, 5, + hdc_read,NULL,NULL, hdc_write,NULL,NULL, dev); + + /* Close all disks and their images. */ + for (d = 0; d < PS1_HDD_NUM; d++) { + drive = &dev->drives[d]; + + if (drive->present) + hdd_image_close(drive->hdd_num); + } + + /* Release the device. */ + free(dev); +} + + +static priv_t +hdc_init_ps1(UNUSED(const device_t *info), void *parent) +{ + drive_t *drive; + hdc_t *dev; + int c, i; + + /* Allocate and initialize device block. */ + dev = (hdc_t *)mem_alloc(sizeof(hdc_t)); + memset(dev, 0x00, sizeof(hdc_t)); + dev->sys = (priv_t)parent; + + /* Set up controller parameters for PS/1 2011. */ + dev->base = 0x0320; + dev->irq = 14; + dev->dma = 3; + + DEBUG("HDC: initializing (I/O=%04X, IRQ=%d, DMA=%d)\n", + dev->base, dev->irq, dev->dma); + + /* Load any disks for this device class. */ + c = 0; + for (i = 0; i < HDD_NUM; i++) { + if ((hdd[i].bus == HDD_BUS_IDE) && (hdd[i].bus_id.ide_channel < PS1_HDD_NUM)) { + drive = &dev->drives[hdd[i].bus_id.ide_channel]; + + if (! hdd_image_load(i)) { + drive->present = 0; + continue; + } + drive->id = c; + + /* These are the "hardware" parameters (from the image.) */ + drive->cfg_spt = (uint8_t)(hdd[i].spt & 0xff); + drive->cfg_hpc = (uint8_t)(hdd[i].hpc & 0xff); + drive->cfg_tracks = (uint16_t)hdd[i].tracks; + + /* Use them as "active" parameters until overwritten. */ + drive->spt = drive->cfg_spt; + drive->hpc = drive->cfg_hpc; + drive->tracks = drive->cfg_tracks; + + drive->type = ibm_drive_type(drive); + drive->hdd_num = i; + drive->present = 1; + + INFO("HDC: drive%d (type %d: cyl=%d,hd=%d,spt=%d), disk %d\n", + hdd[i].bus_id.ide_channel, drive->type, + drive->tracks, drive->hpc, drive->spt, i); + + if (++c > PS1_HDD_NUM) break; + } + } + + /* Sectors are 1-based. */ + dev->sector = 1; + + /* Enable the I/O block. */ + io_sethandler(dev->base, 5, + hdc_read,NULL,NULL, hdc_write,NULL,NULL, dev); + + /* Create a timer for command delays. */ + timer_add(hdc_callback, dev, &dev->callback, &dev->callback); + + return((priv_t)dev); +} + + +const device_t ps1_hdc_device = { + "PS/1 2011 Fixed Disk Controller", + DEVICE_ISA | DEVICE_PS2, + 0, + NULL, + hdc_init_ps1, hdc_close, NULL, + NULL, NULL, NULL, NULL, + NULL +}; diff --git a/src/sound/snd_sb.c b/src/sound/snd_sb.c index 7160e5dce..2c735ce43 100644 --- a/src/sound/snd_sb.c +++ b/src/sound/snd_sb.c @@ -520,6 +520,48 @@ sb16_awe32_filter_cd_audio(int channel, double *buffer, void *priv) *buffer = c * output_gain; } +void +sb16_awe32_filter_pc_speaker(int channel, double *buffer, void *priv) +{ + const sb_t *sb = (sb_t *) priv; + const sb_ct1745_mixer_t *mixer = &sb->mixer_sb16; + double c; + double spk = mixer->speaker; + double master = channel ? mixer->master_r : mixer->master_l; + int32_t bass = channel ? mixer->bass_r : mixer->bass_l; + int32_t treble = channel ? mixer->treble_r : mixer->treble_l; + double bass_treble; + double output_gain = (channel ? mixer->output_gain_R : mixer->output_gain_L); + + if (mixer->output_filter) + c = (low_fir_sb16(2, channel, *buffer) * spk) / 3.0; + else + c = ((*buffer) * spk) / 3.0; + c *= master; + + /* This is not exactly how one does bass/treble controls, but the end result is like it. + A better implementation would reduce the CPU usage. */ + if (bass != 8) { + bass_treble = sb_bass_treble_4bits[bass]; + + if (bass > 8) + c += (low_iir(2, channel, c) * bass_treble); + else if (bass < 8) + c = (c * bass_treble + low_cut_iir(1, channel, c) * (1.0 - bass_treble)); + } + + if (treble != 8) { + bass_treble = sb_bass_treble_4bits[treble]; + + if (treble > 8) + c += (high_iir(2, channel, c) * bass_treble); + else if (treble < 8) + c = (c * bass_treble + high_cut_iir(1, channel, c) * (1.0 - bass_treble)); + } + + *buffer = c * output_gain; +} + void sb_ct1335_mixer_write(uint16_t addr, uint8_t val, void *priv) { @@ -743,6 +785,8 @@ sb_ct1745_mixer_write(uint16_t addr, uint8_t val, void *priv) SoundBlaster 16 sets bit 7 if previous mixer index invalid. Status bytes initially 080h on startup for all but level bytes (SB16). */ + sb_log("CT1745: [W] %02X = %02X\n", mixer->index, val); + if (mixer->index == 0) { /* Reset: Changed defaults from -14dB to 0dB */ @@ -764,8 +808,13 @@ sb_ct1745_mixer_write(uint16_t addr, uint8_t val, void *priv) mixer->regs[0x44] = mixer->regs[0x45] = 0x80; mixer->regs[0x46] = mixer->regs[0x47] = 0x80; + /* 0x43 = Mic AGC (Automatic Gain Control?) according to Linux's sb.h. + NSC LM4560 datasheet: Bit 0: 1 = Enable, 0 = Disable; + Another source says this: Bit 0: 0 = AGC on (default), 1 = Fixed gain of 20 dB. */ mixer->regs[0x43] = 0x00; + mixer->regs[0x49] = mixer->regs[0x4a] = 0x80; + mixer->regs[0x83] = 0xff; sb->dsp.sb_irqm8 = 0; sb->dsp.sb_irqm16 = 0; @@ -820,38 +869,35 @@ sb_ct1745_mixer_write(uint16_t addr, uint8_t val, void *priv) Note: Registers 80h and 81h are Read-only for PnP boards. */ case 0x80: - if (val & 0x01) - sb_dsp_setirq(&sb->dsp, 2); - if (val & 0x02) - sb_dsp_setirq(&sb->dsp, 5); - if (val & 0x04) - sb_dsp_setirq(&sb->dsp, 7); - if (val & 0x08) - sb_dsp_setirq(&sb->dsp, 10); + if (!sb->pnp) { + if (val & 0x01) + sb_dsp_setirq(&sb->dsp, 2); + if (val & 0x02) + sb_dsp_setirq(&sb->dsp, 5); + if (val & 0x04) + sb_dsp_setirq(&sb->dsp, 7); + if (val & 0x08) + sb_dsp_setirq(&sb->dsp, 10); + } break; case 0x81: /* The documentation is confusing. sounds as if multple dma8 channels could be set. */ - if (val & 0x01) - sb_dsp_setdma8(&sb->dsp, 0); - if (val & 0x02) - sb_dsp_setdma8(&sb->dsp, 1); - if (val & 0x08) - sb_dsp_setdma8(&sb->dsp, 3); - if (sb->dsp.dma16through8) { - if (val & 0x10) - sb_dsp_setdma16(&sb->dsp, 0); - if (val & 0x20) - sb_dsp_setdma16(&sb->dsp, 1); - if (val & 0x80) - sb_dsp_setdma16(&sb->dsp, 3); - } else { + if (!sb->pnp) { + if (val & 0x01) + sb_dsp_setdma8(&sb->dsp, 0); + else if (val & 0x02) + sb_dsp_setdma8(&sb->dsp, 1); + else if (val & 0x08) + sb_dsp_setdma8(&sb->dsp, 3); + + sb_dsp_setdma16(&sb->dsp, 4); if (val & 0x20) sb_dsp_setdma16(&sb->dsp, 5); - if (val & 0x40) + else if (val & 0x40) sb_dsp_setdma16(&sb->dsp, 6); - if (val & 0x80) + else if (val & 0x80) sb_dsp_setdma16(&sb->dsp, 7); } break; @@ -872,19 +918,21 @@ sb_ct1745_mixer_write(uint16_t addr, uint8_t val, void *priv) 0, 0 = 200-207h; 0, 1 = Disabled */ - if (sb->mpu != NULL) { - if ((val & 0x06) == 0x00) - mpu401_change_addr(sb->mpu, 0x330); - else if ((val & 0x06) == 0x04) - mpu401_change_addr(sb->mpu, 0x300); - else if ((val & 0x06) == 0x02) - mpu401_change_addr(sb->mpu, 0); - } - sb->gameport_addr = 0; - gameport_remap(sb->gameport, 0); - if (!(val & 0x01)) { - sb->gameport_addr = 0x200; - gameport_remap(sb->gameport, 0x200); + if (!sb->pnp) { + if (sb->mpu != NULL) { + if ((val & 0x06) == 0x00) + mpu401_change_addr(sb->mpu, 0x330); + else if ((val & 0x06) == 0x04) + mpu401_change_addr(sb->mpu, 0x300); + else if ((val & 0x06) == 0x02) + mpu401_change_addr(sb->mpu, 0); + } + sb->gameport_addr = 0; + gameport_remap(sb->gameport, 0); + if (!(val & 0x01)) { + sb->gameport_addr = 0x200; + gameport_remap(sb->gameport, 0x200); + } } break; @@ -940,7 +988,7 @@ sb_ct1745_mixer_read(uint16_t addr, void *priv) if ((mixer->index >= 0x30) && (mixer->index <= 0x47)) ret = mixer->regs[mixer->index]; - else + else { switch (mixer->index) { case 0x00: ret = mixer->regs[mixer->index]; @@ -1032,20 +1080,7 @@ sb_ct1745_mixer_read(uint16_t addr, void *priv) default: break; } - if (sb->dsp.dma16through8) switch (sb->dsp.sb_16_dmanum) { - case 0: - ret |= 0x10; - break; - case 1: - ret |= 0x20; - break; - case 3: - ret |= 0x80; - break; - - default: - break; - } else switch (sb->dsp.sb_16_dmanum) { + switch (sb->dsp.sb_16_dmanum) { case 5: ret |= 0x20; break; @@ -1055,9 +1090,6 @@ sb_ct1745_mixer_read(uint16_t addr, void *priv) case 7: ret |= 0x80; break; - - default: - break; } break; @@ -1069,8 +1101,13 @@ sb_ct1745_mixer_read(uint16_t addr, void *priv) /* 0x02000 DSP v4.04, 0x4000 DSP v4.05, 0x8000 DSP v4.12. I haven't seen this making any difference, but I'm keeping it for now. */ /* If QEMU is any indication, then the values are actually 0x20, 0x40, and 0x80. */ - temp = ((sb->dsp.sb_irq8) ? 1 : 0) | ((sb->dsp.sb_irq16) ? 2 : 0) | ((sb->dsp.sb_irq401) ? 4 : 0) | 0x40; - ret = temp; + /* http://the.earth.li/~tfm/oldpage/sb_mixer.html - 0x10, 0x20, 0x80. */ + temp = ((sb->dsp.sb_irq8) ? 1 : 0) | ((sb->dsp.sb_irq16) ? 2 : 0) | + ((sb->dsp.sb_irq401) ? 4 : 0); + if (sb->dsp.sb_type >= SBAWE32) + ret = temp | 0x80; + else + ret = temp | 0x40; break; case 0x83: @@ -1096,25 +1133,35 @@ sb_ct1745_mixer_read(uint16_t addr, void *priv) ret |= 0x01; break; - case 0x90: - /* 3D Enhancement switch. */ + case 0x49: /* Undocumented register used by some Creative drivers. */ + case 0x4a: /* Undocumented register used by some Creative drivers. */ + case 0x8c: /* Undocumented register used by some Creative drivers. */ + case 0x8e: /* Undocumented register used by some Creative drivers. */ + case 0x90: /* 3D Enhancement switch. */ + case 0xfd: /* Undocumented register used by some Creative drivers. */ + case 0xfe: /* Undocumented register used by some Creative drivers. */ ret = mixer->regs[mixer->index]; break; - /* TODO: creative drivers read and write on 0xFE and 0xFF. not sure what they are supposed to be. */ - case 0xfd: - ret = 16; - break; - - case 0xfe: - ret = 6; + case 0xff: /* Undocumented register used by some Creative drivers. + This and the upper bits of 0x82 seem to affect the + playback volume: + - Register FF = FF: Volume playback normal. + - Register FF = Not FF: Volume playback low unless + bit 6 of 82h is set. */ + if (sb->dsp.sb_type >= SBAWE32) + ret = mixer->regs[mixer->index]; break; default: + fatal("Unknown register: %02X\n", mixer->index); sb_log("sb_ct1745: Unknown register READ: %02X\t%02X\n", mixer->index, mixer->regs[mixer->index]); break; } + sb_log("CT1745: [R] %02X = %02X\n", mixer->index, ret); + } + sb_log("CT1745: read REG%02X: %02X\n", mixer->index, ret); return ret; @@ -1125,9 +1172,6 @@ sb_ct1745_mixer_reset(sb_t *sb) { sb_ct1745_mixer_write(4, 0, sb); sb_ct1745_mixer_write(5, 0, sb); - - sb->mixer_sb16.regs[0xfd] = 16; - sb->mixer_sb16.regs[0xfe] = 6; } uint8_t @@ -2128,6 +2172,8 @@ sb_16_init(UNUSED(const device_t *info)) sb_ct1745_mixer_write, NULL, NULL, sb); sound_add_handler(sb_get_buffer_sb16_awe32, sb); sound_set_cd_audio_filter(sb16_awe32_filter_cd_audio, sb); + if (device_get_config_int("control_pc_speaker")) + sound_set_pc_speaker_filter(sb16_awe32_filter_pc_speaker, sb); if (mpu_addr) { sb->mpu = (mpu_t *) malloc(sizeof(mpu_t)); @@ -2162,6 +2208,8 @@ sb_16_reply_mca_init(UNUSED(const device_t *info)) sb->mixer_sb16.output_filter = 1; sound_add_handler(sb_get_buffer_sb16_awe32, sb); sound_set_cd_audio_filter(sb16_awe32_filter_cd_audio, sb); + if (device_get_config_int("control_pc_speaker")) + sound_set_pc_speaker_filter(sb16_awe32_filter_pc_speaker, sb); sb->mpu = (mpu_t *) malloc(sizeof(mpu_t)); memset(sb->mpu, 0, sizeof(mpu_t)); @@ -2189,6 +2237,8 @@ sb_16_pnp_init(UNUSED(const device_t *info)) sb_t *sb = malloc(sizeof(sb_t)); memset(sb, 0x00, sizeof(sb_t)); + sb->pnp = 1; + sb->opl_enabled = 1; fm_driver_get(FM_YMF262, &sb->opl); @@ -2199,6 +2249,8 @@ sb_16_pnp_init(UNUSED(const device_t *info)) sb->mixer_sb16.output_filter = 1; sound_add_handler(sb_get_buffer_sb16_awe32, sb); sound_set_cd_audio_filter(sb16_awe32_filter_cd_audio, sb); + if (device_get_config_int("control_pc_speaker")) + sound_set_pc_speaker_filter(sb16_awe32_filter_pc_speaker, sb); sb->mpu = (mpu_t *) malloc(sizeof(mpu_t)); memset(sb->mpu, 0, sizeof(mpu_t)); @@ -2246,6 +2298,8 @@ sb_vibra16_pnp_init(UNUSED(const device_t *info)) sb_t *sb = malloc(sizeof(sb_t)); memset(sb, 0x00, sizeof(sb_t)); + sb->pnp = 1; + sb->opl_enabled = 1; fm_driver_get(FM_YMF262, &sb->opl); @@ -2259,6 +2313,8 @@ sb_vibra16_pnp_init(UNUSED(const device_t *info)) sb->mixer_sb16.output_filter = 1; sound_add_handler(sb_get_buffer_sb16_awe32, sb); sound_set_cd_audio_filter(sb16_awe32_filter_cd_audio, sb); + if (device_get_config_int("control_pc_speaker")) + sound_set_pc_speaker_filter(sb16_awe32_filter_pc_speaker, sb); sb->mpu = (mpu_t *) malloc(sizeof(mpu_t)); memset(sb->mpu, 0, sizeof(mpu_t)); @@ -2422,6 +2478,8 @@ sb_awe32_init(UNUSED(const device_t *info)) sb_ct1745_mixer_write, NULL, NULL, sb); sound_add_handler(sb_get_buffer_sb16_awe32, sb); sound_set_cd_audio_filter(sb16_awe32_filter_cd_audio, sb); + if (device_get_config_int("control_pc_speaker")) + sound_set_pc_speaker_filter(sb16_awe32_filter_pc_speaker, sb); if (mpu_addr) { sb->mpu = (mpu_t *) malloc(sizeof(mpu_t)); @@ -2450,6 +2508,8 @@ sb_awe32_pnp_init(const device_t *info) memset(sb, 0x00, sizeof(sb_t)); + sb->pnp = 1; + sb->opl_enabled = 1; fm_driver_get(FM_YMF262, &sb->opl); @@ -2461,6 +2521,8 @@ sb_awe32_pnp_init(const device_t *info) sb->mixer_sb16.output_filter = 1; sound_add_handler(sb_get_buffer_sb16_awe32, sb); sound_set_cd_audio_filter(sb16_awe32_filter_cd_audio, sb); + if (device_get_config_int("control_pc_speaker")) + sound_set_pc_speaker_filter(sb16_awe32_filter_pc_speaker, sb); sb->mpu = (mpu_t *) malloc(sizeof(mpu_t)); memset(sb->mpu, 0, sizeof(mpu_t)); @@ -3217,6 +3279,13 @@ static const device_config_t sb_16_config[] = { .default_string = "", .default_int = 1 }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3235,6 +3304,13 @@ static const device_config_t sb_16_config[] = { }; static const device_config_t sb_16_pnp_config[] = { + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3285,6 +3361,13 @@ static const device_config_t sb_32_pnp_config[] = { { .description = "" } } }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3498,6 +3581,13 @@ static const device_config_t sb_awe32_config[] = { .default_string = "", .default_int = 1 }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3548,6 +3638,13 @@ static const device_config_t sb_awe32_pnp_config[] = { { .description = "" } } }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3618,6 +3715,13 @@ static const device_config_t sb_awe64_value_config[] = { { .description = "" } } }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3684,6 +3788,13 @@ static const device_config_t sb_awe64_config[] = { { .description = "" } } }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", @@ -3742,6 +3853,13 @@ static const device_config_t sb_awe64_gold_config[] = { { .description = "" } } }, + { + .name = "control_pc_speaker", + .description = "Control PC speaker", + .type = CONFIG_BINARY, + .default_string = "", + .default_int = 0 + }, { .name = "receive_input", .description = "Receive input (SB MIDI)", diff --git a/src/sound/snd_sb_dsp.c b/src/sound/snd_sb_dsp.c index 9f0924c34..1c56c3654 100644 --- a/src/sound/snd_sb_dsp.c +++ b/src/sound/snd_sb_dsp.c @@ -115,7 +115,7 @@ uint8_t adjustMap2[24] = { 252, 0, 252, 0 }; -double low_fir_sb16_coef[2][SB16_NCoef]; +double low_fir_sb16_coef[3][SB16_NCoef]; #ifdef ENABLE_SB_DSP_LOG int sb_dsp_do_log = ENABLE_SB_DSP_LOG; @@ -428,13 +428,15 @@ sb_16_read_dma(void *priv) { const sb_dsp_t *dsp = (sb_dsp_t *) priv; int temp, ret = 0; - int dma_flags; + int dma_flags, dma_ch = dsp->sb_16_dmanum; - if (dsp->dma16through8) { - temp = dma_channel_read(dsp->sb_16_dmanum); + if (dsp->dma16through8 || (dsp->sb_16_dmanum == 4)) { + if (dma_ch == 4) + dma_ch = dsp->sb_8_dmanum; + temp = dma_channel_read(dma_ch); ret = temp; if ((temp != DMA_NODATA) && !(temp & DMA_OVER)) { - temp = dma_channel_read(dsp->sb_16_dmanum); + temp = dma_channel_read(dma_ch); if (temp == DMA_NODATA) ret = DMA_NODATA; else { @@ -454,12 +456,15 @@ sb_16_write_dma(void *priv, uint16_t val) { const sb_dsp_t *dsp = (sb_dsp_t *) priv; int temp, ret = 0; + int dma_ch = dsp->sb_16_dmanum; - if (dsp->dma16through8) { - temp = dma_channel_write(dsp->sb_16_dmanum, val & 0xff); + if (dsp->dma16through8 || (dsp->sb_16_dmanum == 4)) { + if (dma_ch == 4) + dma_ch = dsp->sb_8_dmanum; + temp = dma_channel_write(dma_ch, val & 0xff); ret = temp; if ((temp != DMA_NODATA) && (temp != DMA_OVER)) { - temp = dma_channel_write(dsp->sb_16_dmanum, val >> 8); + temp = dma_channel_write(dma_ch, val >> 8); ret = temp; } } else @@ -978,6 +983,10 @@ sb_write(uint16_t a, uint8_t v, void *priv) { sb_dsp_t *dsp = (sb_dsp_t *) priv; + /* Sound Blasters prior to Sound Blaster 16 alias the I/O ports. */ + if (dsp->sb_type < SB16) + a &= 0xfffe; + switch (a & 0xF) { case 6: /* Reset */ if (!dsp->uart_midi) { @@ -1042,6 +1051,10 @@ sb_read(uint16_t a, void *priv) sb_dsp_t *dsp = (sb_dsp_t *) priv; uint8_t ret = 0x00; + /* Sound Blasters prior to Sound Blaster 16 alias the I/O ports. */ + if (dsp->sb_type < SB16) + a &= 0xfffe; + switch (a & 0xf) { case 0xA: /* Read data */ if (dsp->mpu && dsp->uart_midi) { @@ -1192,6 +1205,7 @@ sb_dsp_init(sb_dsp_t *dsp, int type, int subtype, void *parent) a set frequency command is sent. */ recalc_sb16_filter(0, 3200 * 2); recalc_sb16_filter(1, FREQ_44100); + recalc_sb16_filter(2, 18939); /* Initialize SB16 8051 RAM and ASP internal RAM */ memset(dsp->sb_8051_ram, 0x00, sizeof(dsp->sb_8051_ram)); diff --git a/src/sound/snd_speaker.c b/src/sound/snd_speaker.c index 693c3afc3..0537cd09a 100644 --- a/src/sound/snd_speaker.c +++ b/src/sound/snd_speaker.c @@ -88,15 +88,20 @@ speaker_update(void) void speaker_get_buffer(int32_t *buffer, int len, UNUSED(void *priv)) { - int32_t val; + double val_l, val_r; speaker_update(); if (!speaker_mute) { for (int c = 0; c < len * 2; c += 2) { - val = speaker_buffer[c >> 1]; - buffer[c] += val; - buffer[c + 1] += val; + val_l = val_r = (double) speaker_buffer[c >> 1]; + /* Apply PC speaker volume and filters */ + if (filter_pc_speaker != NULL) { + filter_pc_speaker(0, &val_l, filter_pc_speaker_p); + filter_pc_speaker(1, &val_r, filter_pc_speaker_p); + } + buffer[c] += (int32_t) val_l; + buffer[c + 1] += (int32_t) val_r; } } diff --git a/src/sound/sound.c b/src/sound/sound.c index d122e9a52..ed7f821e0 100644 --- a/src/sound/sound.c +++ b/src/sound/sound.c @@ -77,7 +77,10 @@ static volatile int cdaudioon = 0; static int cd_thread_enable = 0; static void (*filter_cd_audio)(int channel, double *buffer, void *priv) = NULL; -static void *filter_cd_audio_p = NULL; +static void *filter_cd_audio_p = NULL; + +void (*filter_pc_speaker)(int channel, double *buffer, void *priv) = NULL; +void *filter_pc_speaker_p = NULL; static const device_t sound_none_device = { .name = "None", @@ -444,6 +447,15 @@ sound_set_cd_audio_filter(void (*filter)(int channel, double *buffer, void *priv } } +void +sound_set_pc_speaker_filter(void (*filter)(int channel, double *buffer, void *priv), void *priv) +{ + if ((filter_pc_speaker == NULL) || (filter == NULL)) { + filter_pc_speaker = filter; + filter_pc_speaker_p = priv; + } +} + void sound_poll(UNUSED(void *priv)) { @@ -514,6 +526,9 @@ sound_reset(void) filter_cd_audio = NULL; filter_cd_audio_p = NULL; + filter_pc_speaker = NULL; + filter_pc_speaker_p = NULL; + sound_set_cd_volume(65535, 65535); /* Reset the MPU-401 already loaded flag and the chain of input/output handlers. */ diff --git a/src/timer - Cópia.c b/src/timer - Cópia.c new file mode 100644 index 000000000..61dbbaa5e --- /dev/null +++ b/src/timer - Cópia.c @@ -0,0 +1,242 @@ +#include +#include +#include +#include +#include <86box/86box.h> +#include <86box/timer.h> + +uint64_t TIMER_USEC; +uint32_t timer_target; + +/*Enabled timers are stored in a linked list, with the first timer to expire at + the head.*/ +pc_timer_t *timer_head = NULL; + +/* Are we initialized? */ +int timer_inited = 0; + +static void timer_advance_ex(pc_timer_t *timer, int start); + +void +timer_enable(pc_timer_t *timer) +{ + pc_timer_t *timer_node = timer_head; + + if (!timer_inited || (timer == NULL)) + return; + + if (timer->flags & TIMER_ENABLED) + timer_disable(timer); + + if (timer->next || timer->prev) + fatal("timer_enable - timer->next\n"); + + timer->flags |= TIMER_ENABLED; + + /*List currently empty - add to head*/ + if (!timer_head) { + timer_head = timer; + timer->next = timer->prev = NULL; + timer_target = timer_head->ts.ts32.integer; + return; + } + + if (TIMER_LESS_THAN(timer, timer_head)) { + timer->next = timer_head; + timer->prev = NULL; + timer_head->prev = timer; + timer_head = timer; + timer_target = timer_head->ts.ts32.integer; + return; + } + + if (!timer_head->next) { + timer_head->next = timer; + timer->prev = timer_head; + return; + } + + pc_timer_t *prev = timer_head; + timer_node = timer_head->next; + + while (1) { + /*Timer expires before timer_node. Add to list in front of timer_node*/ + if (TIMER_LESS_THAN(timer, timer_node)) { + timer->next = timer_node; + timer->prev = prev; + timer_node->prev = timer; + prev->next = timer; + return; + } + + /*timer_node is last in the list. Add timer to end of list*/ + if (!timer_node->next) { + timer_node->next = timer; + timer->prev = timer_node; + return; + } + + prev = timer_node; + timer_node = timer_node->next; + } +} + +void +timer_disable(pc_timer_t *timer) +{ + if (!timer_inited || (timer == NULL) || !(timer->flags & TIMER_ENABLED)) + return; + + if (!timer->next && !timer->prev && timer != timer_head) + fatal("timer_disable - !timer->next\n"); + + timer->flags &= ~TIMER_ENABLED; + + if (timer->prev) + timer->prev->next = timer->next; + else + timer_head = timer->next; + if (timer->next) + timer->next->prev = timer->prev; + timer->prev = timer->next = NULL; +} + +void +timer_process(void) +{ + pc_timer_t *timer; + + if (!timer_head) + return; + + while (1) { + timer = timer_head; + + if (!TIMER_LESS_THAN_VAL(timer, (uint32_t) tsc)) + break; + + timer_head = timer->next; + if (timer_head) + timer_head->prev = NULL; + + timer->next = timer->prev = NULL; + timer->flags &= ~TIMER_ENABLED; + + if (timer->flags & TIMER_SPLIT) + timer_advance_ex(timer, 0); /* We're splitting a > 1 s period into multiple <= 1 s periods. */ + else if (timer->callback != NULL) /* Make sure it's no NULL, so that we can have a NULL callback when no operation is needed. */ + timer->callback(timer->priv); + } + + timer_target = timer_head->ts.ts32.integer; +} + +void +timer_close(void) +{ + pc_timer_t *t = timer_head; + pc_timer_t *r; + + /* Set all timers' prev and next to NULL so it is assured that + timers that are not in malloc'd structs don't keep pointing + to timers that may be in malloc'd structs. */ + while (t != NULL) { + r = t; + r->prev = r->next = NULL; + t = r->next; + } + + timer_head = NULL; + + timer_inited = 0; +} + +void +timer_init(void) +{ + timer_target = 0ULL; + tsc = 0; + + timer_inited = 1; +} + +void +timer_add(pc_timer_t *timer, void (*callback)(void *priv), void *priv, int start_timer) +{ + memset(timer, 0, sizeof(pc_timer_t)); + + timer->callback = callback; + timer->priv = priv; + timer->flags = 0; + timer->prev = timer->next = NULL; + if (start_timer) + timer_set_delay_u64(timer, 0); +} + +/* The API for big timer periods starts here. */ +void +timer_stop(pc_timer_t *timer) +{ + if (!timer_inited || (timer == NULL)) + return; + + timer->period = 0.0; + timer_disable(timer); + timer->flags &= ~TIMER_SPLIT; +} + +static void +timer_do_period(pc_timer_t *timer, uint64_t period, int start) +{ + if (!timer_inited || (timer == NULL)) + return; + + if (start) + timer_set_delay_u64(timer, period); + else + timer_advance_u64(timer, period); +} + +void +timer_advance_ex(pc_timer_t *timer, int start) +{ + if (!timer_inited || (timer == NULL)) + return; + + if (timer->period > MAX_USEC) { + timer_do_period(timer, MAX_USEC64 * TIMER_USEC, start); + timer->period -= MAX_USEC; + timer->flags |= TIMER_SPLIT; + } else { + if (timer->period > 0.0) + timer_do_period(timer, (uint64_t) (timer->period * ((double) TIMER_USEC)), start); + else + timer_disable(timer); + timer->period = 0.0; + timer->flags &= ~TIMER_SPLIT; + } +} + +static void +timer_on(pc_timer_t *timer, double period, int start) +{ + if (!timer_inited || (timer == NULL)) + return; + + timer->period = period; + timer_advance_ex(timer, start); +} + +void +timer_on_auto(pc_timer_t *timer, double period) +{ + if (!timer_inited || (timer == NULL)) + return; + + if (period > 0.0) { + // timer_on(timer, period, !(timer->flags & TIMER_PROCESS) && (timer->period <= 0.0)); + timer->period = period; + timer_advance_ex(timer, !(timer->flags & TIMER_PROCESS) && (timer->period <= 0.0)); + } else + timer_stop(timer); +} diff --git a/src/video/vid_cga - Cópia.c b/src/video/vid_cga - Cópia.c new file mode 100644 index 000000000..e6559722f --- /dev/null +++ b/src/video/vid_cga - Cópia.c @@ -0,0 +1,701 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * Emulation of the old and new IBM CGA graphics cards. + * + * + * + * Authors: Sarah Walker, + * Miran Grca, + * + * Copyright 2008-2019 Sarah Walker. + * Copyright 2016-2019 Miran Grca. + */ +#include +#include +#include +#include +#include +#include +#include <86box/86box.h> +#include "cpu.h" +#include <86box/io.h> +#include <86box/timer.h> +#include <86box/pit.h> +#include <86box/mem.h> +#include <86box/rom.h> +#include <86box/device.h> +#include <86box/video.h> +#include <86box/vid_cga.h> +#include <86box/vid_cga_comp.h> + +#define CGA_RGB 0 +#define CGA_COMPOSITE 1 + +#define COMPOSITE_OLD 0 +#define COMPOSITE_NEW 1 + +static uint8_t crtcmask[32] = { + 0xff, 0xff, 0xff, 0xff, 0x7f, 0x1f, 0x7f, 0x7f, 0xf3, 0x1f, 0x7f, 0x1f, 0x3f, 0xff, 0x3f, 0xff, + 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +}; + +static video_timings_t timing_cga = { .type = VIDEO_ISA, .write_b = 8, .write_w = 16, .write_l = 32, .read_b = 8, .read_w = 16, .read_l = 32 }; + +void cga_recalctimings(cga_t *cga); + +void +cga_out(uint16_t addr, uint8_t val, void *p) +{ + cga_t *cga = (cga_t *) p; + uint8_t old; + + if ((addr >= 0x3d0) && (addr <= 0x3d7)) + addr = (addr & 0xff9) | 0x004; + + switch (addr) { + case 0x3D4: + cga->crtcreg = val & 31; + return; + case 0x3D5: + old = cga->crtc[cga->crtcreg]; + cga->crtc[cga->crtcreg] = val & crtcmask[cga->crtcreg]; + if (old != val) { + if ((cga->crtcreg < 0xe) || (cga->crtcreg > 0x10)) { + cga->fullchange = changeframecount; + cga_recalctimings(cga); + } + } + return; + case 0x3D8: + old = cga->cgamode; + cga->cgamode = val; + + if (old ^ val) { + if ((old ^ val) & 0x07) + update_cga16_color(val); + + cga_recalctimings(cga); + } + return; + case 0x3D9: + old = cga->cgacol; + cga->cgacol = val; + if (old ^ val) + cga_recalctimings(cga); + return; + } +} + +uint8_t +cga_in(uint16_t addr, void *p) +{ + cga_t *cga = (cga_t *) p; + + uint8_t ret = 0xff; + + if ((addr >= 0x3d0) && (addr <= 0x3d7)) + addr = (addr & 0xff9) | 0x004; + + switch (addr) { + case 0x3D4: + ret = cga->crtcreg; + break; + case 0x3D5: + ret = cga->crtc[cga->crtcreg]; + break; + case 0x3DA: + ret = cga->cgastat; + break; + } + + return ret; +} + +void +cga_pravetz_out(uint16_t addr, uint8_t val, void *p) +{ + cga_t *cga = (cga_t *) p; + + cga->fontbase = (((unsigned int) val) << 8); +} + +uint8_t +cga_pravetz_in(uint16_t addr, void *p) +{ + cga_t *cga = (cga_t *) p; + + return (cga->fontbase >> 8); +} + +void +cga_waitstates(void *p) +{ + cga_t *cga = (cga_t *) p; + int ws_array[16] = { 3, 4, 5, 6, 7, 8, 4, 5, 6, 7, 8, 4, 5, 6, 7, 8 }; + int ws; + int q_array[16] = { 5, 5, 4, 4, 4, 3, 8, 8, 8, 7, 7, 7, 6, 6, 6, 5 }; + int q; + + if (is286) { + ws = ws_array[cycles & 0xf]; + cycles -= ws; + } else { + q = 15 - (((int) (timer_get_remaining_u64(&cga->q_timer) >> 32ULL)) & 0x0f); + cycles -= q_array[q]; + // pclog("Subtracting %i cycles at index %i\n", q_array[q], q); + } +} + +void +cga_write(uint32_t addr, uint8_t val, void *p) +{ + cga_t *cga = (cga_t *) p; + + cga->vram[addr & 0x3fff] = val; + if (cga->snow_enabled) { + int offset = ((timer_get_remaining_u64(&cga->timer) / CGACONST) * 2) & 0xfc; + cga->charbuffer[offset] = cga->vram[addr & 0x3fff]; + cga->charbuffer[offset | 1] = cga->vram[addr & 0x3fff]; + } + cga_waitstates(cga); +} + +uint8_t +cga_read(uint32_t addr, void *p) +{ + cga_t *cga = (cga_t *) p; + + cga_waitstates(cga); + if (cga->snow_enabled) { + int offset = ((timer_get_remaining_u64(&cga->timer) / CGACONST) * 2) & 0xfc; + cga->charbuffer[offset] = cga->vram[addr & 0x3fff]; + cga->charbuffer[offset | 1] = cga->vram[addr & 0x3fff]; + } + return cga->vram[addr & 0x3fff]; +} + +void +cga_recalctimings(cga_t *cga) +{ + double disptime; + double _dispontime; + double _dispofftime; + + if (cga->cgamode & 1) { + disptime = (double) (cga->crtc[0] + 1); + _dispontime = (double) cga->crtc[1]; + } else { + disptime = (double) ((cga->crtc[0] + 1) << 1); + _dispontime = (double) (cga->crtc[1] << 1); + } + _dispofftime = disptime - _dispontime; + _dispontime = _dispontime * CGACONST; + _dispofftime = _dispofftime * CGACONST; + cga->dispontime = (uint64_t) (_dispontime); + cga->dispofftime = (uint64_t) (_dispofftime); +} + +void +cga_q_tick(void *p) +{ + cga_t *cga = (cga_t *) p; + + timer_advance_u64(&cga->q_timer, CGACONST << 1); +} + +void +cga_poll(void *p) +{ + cga_t *cga = (cga_t *) p; + uint16_t ca = (cga->crtc[15] | (cga->crtc[14] << 8)) & 0x3fff; + int drawcursor; + int x; + int c; + int xs_temp; + int ys_temp; + int oldvc; + uint8_t chr; + uint8_t attr; + uint8_t border; + uint16_t dat; + int cols[4]; + int col; + int oldsc; + + if (!cga->linepos) { + timer_advance_u64(&cga->timer, cga->dispofftime); + cga->cgastat |= 1; + cga->linepos = 1; + oldsc = cga->sc; + if ((cga->crtc[8] & 3) == 3) + cga->sc = ((cga->sc << 1) + cga->oddeven) & 7; + if (cga->cgadispon) { + if (cga->displine < cga->firstline) { + cga->firstline = cga->displine; + video_wait_for_buffer(); + } + cga->lastline = cga->displine; + for (c = 0; c < 8; c++) { + if ((cga->cgamode & 0x12) == 0x12) { + buffer32->line[cga->displine << 1][c] = buffer32->line[(cga->displine << 1) + 1][c] = 0; + if (cga->cgamode & 1) { + buffer32->line[cga->displine << 1][c + (cga->crtc[1] << 3) + 8] = buffer32->line[(cga->displine << 1) + 1][c + (cga->crtc[1] << 3) + 8] = 0; + } else { + buffer32->line[cga->displine << 1][c + (cga->crtc[1] << 4) + 8] = buffer32->line[(cga->displine << 1) + 1][c + (cga->crtc[1] << 4) + 8] = 0; + } + } else { + buffer32->line[cga->displine << 1][c] = buffer32->line[(cga->displine << 1) + 1][c] = (cga->cgacol & 15) + 16; + if (cga->cgamode & 1) { + buffer32->line[cga->displine << 1][c + (cga->crtc[1] << 3) + 8] = buffer32->line[(cga->displine << 1) + 1][c + (cga->crtc[1] << 3) + 8] = (cga->cgacol & 15) + 16; + } else { + buffer32->line[cga->displine << 1][c + (cga->crtc[1] << 4) + 8] = buffer32->line[(cga->displine << 1) + 1][c + (cga->crtc[1] << 4) + 8] = (cga->cgacol & 15) + 16; + } + } + } + if (cga->cgamode & 1) { + for (x = 0; x < cga->crtc[1]; x++) { + if (cga->cgamode & 8) { + chr = cga->charbuffer[x << 1]; + attr = cga->charbuffer[(x << 1) + 1]; + } else + chr = attr = 0; + drawcursor = ((cga->ma == ca) && cga->con && cga->cursoron); + cols[1] = (attr & 15) + 16; + if (cga->cgamode & 0x20) { + cols[0] = ((attr >> 4) & 7) + 16; + if ((cga->cgablink & 8) && (attr & 0x80) && !cga->drawcursor) + cols[1] = cols[0]; + } else + cols[0] = (attr >> 4) + 16; + if (drawcursor) { + for (c = 0; c < 8; c++) { + buffer32->line[cga->displine << 1][(x << 3) + c + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 3) + c + 8] = cols[(fontdat[chr + cga->fontbase][cga->sc & 7] & (1 << (c ^ 7))) ? 1 : 0] ^ 15; + } + } else { + for (c = 0; c < 8; c++) { + buffer32->line[cga->displine << 1][(x << 3) + c + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 3) + c + 8] = cols[(fontdat[chr + cga->fontbase][cga->sc & 7] & (1 << (c ^ 7))) ? 1 : 0]; + } + } + cga->ma++; + } + } else if (!(cga->cgamode & 2)) { + for (x = 0; x < cga->crtc[1]; x++) { + if (cga->cgamode & 8) { + chr = cga->vram[(cga->ma << 1) & 0x3fff]; + attr = cga->vram[((cga->ma << 1) + 1) & 0x3fff]; + } else + chr = attr = 0; + drawcursor = ((cga->ma == ca) && cga->con && cga->cursoron); + cols[1] = (attr & 15) + 16; + if (cga->cgamode & 0x20) { + cols[0] = ((attr >> 4) & 7) + 16; + if ((cga->cgablink & 8) && (attr & 0x80)) + cols[1] = cols[0]; + } else + cols[0] = (attr >> 4) + 16; + cga->ma++; + if (drawcursor) { + for (c = 0; c < 8; c++) { + buffer32->line[cga->displine << 1][(x << 4) + (c << 1) + 8] = buffer32->line[cga->displine << 1][(x << 4) + (c << 1) + 1 + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + (c << 1) + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + (c << 1) + 1 + 8] = cols[(fontdat[chr + cga->fontbase][cga->sc & 7] & (1 << (c ^ 7))) ? 1 : 0] ^ 15; + } + } else { + for (c = 0; c < 8; c++) { + buffer32->line[cga->displine << 1][(x << 4) + (c << 1) + 8] = buffer32->line[cga->displine << 1][(x << 4) + (c << 1) + 1 + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + (c << 1) + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + (c << 1) + 1 + 8] = cols[(fontdat[chr + cga->fontbase][cga->sc & 7] & (1 << (c ^ 7))) ? 1 : 0]; + } + } + } + } else if (!(cga->cgamode & 16)) { + cols[0] = (cga->cgacol & 15) | 16; + col = (cga->cgacol & 16) ? 24 : 16; + if (cga->cgamode & 4) { + cols[1] = col | 3; /* Cyan */ + cols[2] = col | 4; /* Red */ + cols[3] = col | 7; /* White */ + } else if (cga->cgacol & 32) { + cols[1] = col | 3; /* Cyan */ + cols[2] = col | 5; /* Magenta */ + cols[3] = col | 7; /* White */ + } else { + cols[1] = col | 2; /* Green */ + cols[2] = col | 4; /* Red */ + cols[3] = col | 6; /* Yellow */ + } + for (x = 0; x < cga->crtc[1]; x++) { + if (cga->cgamode & 8) + dat = (cga->vram[((cga->ma << 1) & 0x1fff) + ((cga->sc & 1) * 0x2000)] << 8) | cga->vram[((cga->ma << 1) & 0x1fff) + ((cga->sc & 1) * 0x2000) + 1]; + else + dat = 0; + cga->ma++; + for (c = 0; c < 8; c++) { + buffer32->line[cga->displine << 1][(x << 4) + (c << 1) + 8] = buffer32->line[cga->displine << 1][(x << 4) + (c << 1) + 1 + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + (c << 1) + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + (c << 1) + 1 + 8] = cols[dat >> 14]; + dat <<= 2; + } + } + } else { + cols[0] = 0; + cols[1] = (cga->cgacol & 15) + 16; + for (x = 0; x < cga->crtc[1]; x++) { + if (cga->cgamode & 8) + dat = (cga->vram[((cga->ma << 1) & 0x1fff) + ((cga->sc & 1) * 0x2000)] << 8) | cga->vram[((cga->ma << 1) & 0x1fff) + ((cga->sc & 1) * 0x2000) + 1]; + else + dat = 0; + cga->ma++; + for (c = 0; c < 16; c++) { + buffer32->line[cga->displine << 1][(x << 4) + c + 8] = buffer32->line[(cga->displine << 1) + 1][(x << 4) + c + 8] = cols[dat >> 15]; + dat <<= 1; + } + } + } + } else { + cols[0] = ((cga->cgamode & 0x12) == 0x12) ? 0 : (cga->cgacol & 15) + 16; + if (cga->cgamode & 1) { + hline(buffer32, 0, (cga->displine << 1), ((cga->crtc[1] << 3) + 16) << 2, cols[0]); + hline(buffer32, 0, (cga->displine << 1) + 1, ((cga->crtc[1] << 3) + 16) << 2, cols[0]); + } else { + hline(buffer32, 0, (cga->displine << 1), ((cga->crtc[1] << 4) + 16) << 2, cols[0]); + hline(buffer32, 0, (cga->displine << 1) + 1, ((cga->crtc[1] << 4) + 16) << 2, cols[0]); + } + } + + if (cga->cgamode & 1) + x = (cga->crtc[1] << 3) + 16; + else + x = (cga->crtc[1] << 4) + 16; + + if (cga->composite) { + border = ((cga->cgamode & 0x12) == 0x12) ? 0 : (cga->cgacol & 15); + + Composite_Process(cga->cgamode, border, x >> 2, buffer32->line[cga->displine << 1]); + Composite_Process(cga->cgamode, border, x >> 2, buffer32->line[(cga->displine << 1) + 1]); + } else { + video_process_8(x, cga->displine << 1); + video_process_8(x, (cga->displine << 1) + 1); + } + + cga->sc = oldsc; + if (cga->vc == cga->crtc[7] && !cga->sc) + cga->cgastat |= 8; + cga->displine++; + if (cga->displine >= 360) + cga->displine = 0; + } else { + timer_advance_u64(&cga->timer, cga->dispontime); + cga->linepos = 0; + if (cga->vsynctime) { + cga->vsynctime--; + if (!cga->vsynctime) + cga->cgastat &= ~8; + } + if (cga->sc == (cga->crtc[11] & 31) || ((cga->crtc[8] & 3) == 3 && cga->sc == ((cga->crtc[11] & 31) >> 1))) { + cga->con = 0; + cga->coff = 1; + } + if ((cga->crtc[8] & 3) == 3 && cga->sc == (cga->crtc[9] >> 1)) + cga->maback = cga->ma; + if (cga->vadj) { + cga->sc++; + cga->sc &= 31; + cga->ma = cga->maback; + cga->vadj--; + if (!cga->vadj) { + cga->cgadispon = 1; + cga->ma = cga->maback = (cga->crtc[13] | (cga->crtc[12] << 8)) & 0x3fff; + cga->sc = 0; + } + } else if (cga->sc == cga->crtc[9]) { + cga->maback = cga->ma; + cga->sc = 0; + oldvc = cga->vc; + cga->vc++; + cga->vc &= 127; + + if (cga->vc == cga->crtc[6]) + cga->cgadispon = 0; + + if (oldvc == cga->crtc[4]) { + cga->vc = 0; + cga->vadj = cga->crtc[5]; + if (!cga->vadj) { + cga->cgadispon = 1; + cga->ma = cga->maback = (cga->crtc[13] | (cga->crtc[12] << 8)) & 0x3fff; + } + switch (cga->crtc[10] & 0x60) { + case 0x20: + cga->cursoron = 0; + break; + case 0x60: + cga->cursoron = cga->cgablink & 0x10; + break; + default: + cga->cursoron = cga->cgablink & 0x08; + break; + } + } + + if (cga->vc == cga->crtc[7]) { + cga->cgadispon = 0; + cga->displine = 0; + cga->vsynctime = 16; + if (cga->crtc[7]) { + if (cga->cgamode & 1) + x = (cga->crtc[1] << 3) + 16; + else + x = (cga->crtc[1] << 4) + 16; + cga->lastline++; + + xs_temp = x; + ys_temp = (cga->lastline - cga->firstline) << 1; + + if ((xs_temp > 0) && (ys_temp > 0)) { + if (xs_temp < 64) + xs_temp = 656; + if (ys_temp < 32) + ys_temp = 400; + if (!enable_overscan) + xs_temp -= 16; + + if ((cga->cgamode & 8) && ((xs_temp != xsize) || (ys_temp != ysize) || video_force_resize_get())) { + xsize = xs_temp; + ysize = ys_temp; + set_screen_size(xsize, ysize + (enable_overscan ? 16 : 0)); + + if (video_force_resize_get()) + video_force_resize_set(0); + } + + if (enable_overscan) { + video_blit_memtoscreen(0, (cga->firstline - 4) << 1, + xsize, ((cga->lastline - cga->firstline) + 8) << 1); + } else { + video_blit_memtoscreen(8, cga->firstline << 1, + xsize, (cga->lastline - cga->firstline) << 1); + } + } + + frames++; + + video_res_x = xsize; + video_res_y = ysize; + if (cga->cgamode & 1) { + video_res_x /= 8; + video_res_y /= cga->crtc[9] + 1; + video_bpp = 0; + } else if (!(cga->cgamode & 2)) { + video_res_x /= 16; + video_res_y /= cga->crtc[9] + 1; + video_bpp = 0; + } else if (!(cga->cgamode & 16)) { + video_res_x /= 2; + video_bpp = 2; + } else + video_bpp = 1; + } + cga->firstline = 1000; + cga->lastline = 0; + cga->cgablink++; + cga->oddeven ^= 1; + } + } else { + cga->sc++; + cga->sc &= 31; + cga->ma = cga->maback; + } + if (cga->cgadispon) + cga->cgastat &= ~1; + if (cga->sc == (cga->crtc[10] & 31) || ((cga->crtc[8] & 3) == 3 && cga->sc == ((cga->crtc[10] & 31) >> 1))) + cga->con = 1; + if (cga->cgadispon && (cga->cgamode & 1)) { + for (x = 0; x < (cga->crtc[1] << 1); x++) + cga->charbuffer[x] = cga->vram[((cga->ma << 1) + x) & 0x3fff]; + } + } +} + +void +cga_init(cga_t *cga) +{ + timer_add(&cga->timer, cga_poll, cga, 1); + cga->composite = 0; +} + +void * +cga_standalone_init(const device_t *info) +{ + int display_type; + cga_t *cga = malloc(sizeof(cga_t)); + + memset(cga, 0, sizeof(cga_t)); + video_inform(VIDEO_FLAG_TYPE_CGA, &timing_cga); + + display_type = device_get_config_int("display_type"); + cga->composite = (display_type != CGA_RGB); + cga->revision = device_get_config_int("composite_type"); + cga->snow_enabled = device_get_config_int("snow_enabled"); + + cga->vram = malloc(0x4000); + + cga_comp_init(cga->revision); + timer_add(&cga->timer, cga_poll, cga, 1); + if (!is286) + timer_add(&cga->q_timer, cga_q_tick, cga, 1); + mem_mapping_add(&cga->mapping, 0xb8000, 0x08000, cga_read, NULL, NULL, cga_write, NULL, NULL, NULL /*cga->vram*/, MEM_MAPPING_EXTERNAL, cga); + io_sethandler(0x03d0, 0x0010, cga_in, NULL, NULL, cga_out, NULL, NULL, cga); + + overscan_x = overscan_y = 16; + + cga->rgb_type = device_get_config_int("rgb_type"); + cga_palette = (cga->rgb_type << 1); + cgapal_rebuild(); + update_cga16_color(cga->cgamode); + + return cga; +} + +void * +cga_pravetz_init(const device_t *info) +{ + cga_t *cga = cga_standalone_init(info); + + loadfont("roms/video/cga/PRAVETZ-VDC2.BIN", 10); + + io_removehandler(0x03dd, 0x0001, cga_in, NULL, NULL, cga_out, NULL, NULL, cga); + io_sethandler(0x03dd, 0x0001, cga_pravetz_in, NULL, NULL, cga_pravetz_out, NULL, NULL, cga); + + cga->fontbase = 0x0300; + + return cga; +} + +void +cga_close(void *p) +{ + cga_t *cga = (cga_t *) p; + + free(cga->vram); + free(cga); +} + +void +cga_speed_changed(void *p) +{ + cga_t *cga = (cga_t *) p; + + cga_recalctimings(cga); +} + +// clang-format off +const device_config_t cga_config[] = { + { + .name = "display_type", + .description = "Display type", + .type = CONFIG_SELECTION, + .default_int = CGA_RGB, + .selection = { + { + .description = "RGB", + .value = CGA_RGB + }, + { + .description = "Composite", + .value = CGA_COMPOSITE + }, + { + .description = "" + } + } + }, + { + .name = "composite_type", + .description = "Composite type", + .type = CONFIG_SELECTION, + .default_int = COMPOSITE_OLD, + .selection = { + { + .description = "Old", + .value = COMPOSITE_OLD + }, + { + .description = "New", + .value = COMPOSITE_NEW + }, + { + .description = "" + } + } + }, + { + .name = "rgb_type", + .description = "RGB type", + .type = CONFIG_SELECTION, + .default_int = 0, + .selection = { + { + .description = "Color", + .value = 0 + }, + { + .description = "Green Monochrome", + .value = 1 + }, + { + .description = "Amber Monochrome", + .value = 2 + }, + { + .description = "Gray Monochrome", + .value = 3 + }, + { + .description = "Color (no brown)", + .value = 4 + }, + { + .description = "" + } + } + }, + { + .name = "snow_enabled", + .description = "Snow emulation", + .type = CONFIG_BINARY, + .default_int = 1 + }, + { + .type = CONFIG_END + } +}; +// clang-format on + +const device_t cga_device = { + .name = "CGA", + .internal_name = "cga", + .flags = DEVICE_ISA, + .local = 0, + .init = cga_standalone_init, + .close = cga_close, + .reset = NULL, + { .available = NULL }, + .speed_changed = cga_speed_changed, + .force_redraw = NULL, + .config = cga_config +}; + +const device_t cga_pravetz_device = { + .name = "Pravetz VDC-2", + .internal_name = "cga_pravetz", + .flags = DEVICE_ISA, + .local = 0, + .init = cga_pravetz_init, + .close = cga_close, + .reset = NULL, + { .available = NULL }, + .speed_changed = cga_speed_changed, + .force_redraw = NULL, + .config = cga_config +}; diff --git a/src/video/vid_mda - Cópia.c b/src/video/vid_mda - Cópia.c new file mode 100644 index 000000000..bee5907c9 --- /dev/null +++ b/src/video/vid_mda - Cópia.c @@ -0,0 +1,519 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * MDA emulation. + * + * + * + * Authors: Sarah Walker, + * Miran Grca, + * + * Copyright 2008-2019 Sarah Walker. + * Copyright 2016-2019 Miran Grca. + */ +#include +#include +#include +#include +#include +#include <86box/86box.h> +#include <86box/io.h> +#include <86box/timer.h> +#include <86box/lpt.h> +#include <86box/pit.h> +#include <86box/mem.h> +#include <86box/rom.h> +#include <86box/device.h> +#include <86box/video.h> +#include <86box/vid_mda.h> +#include <86box/plat_unused.h> + +static int mdacols[256][2][2]; + +static video_timings_t timing_mda = { .type = VIDEO_ISA, .write_b = 8, .write_w = 16, .write_l = 32, .read_b = 8, .read_w = 16, .read_l = 32 }; + +static double dot_clock = 0.0; + +void mda_recalctimings(mda_t *mda); + +void +mda_out(uint16_t addr, uint8_t val, void *priv) +{ + mda_t *mda = (mda_t *) priv; + + // pclog("[W] %04X = %02X\n", addr, val); + + switch (addr) { + case 0x3b0: + case 0x3b2: + case 0x3b4: + case 0x3b6: + mda->crtcreg = val & 31; + return; + case 0x3b1: + case 0x3b3: + case 0x3b5: + case 0x3b7: + mda->crtc[mda->crtcreg] = val; +#if 0 + if (mda->crtc[10] == 6 && mda->crtc[11] == 7) /*Fix for Generic Turbo XT BIOS, which sets up cursor registers wrong*/ + { + mda->crtc[10] = 0xb; + mda->crtc[11] = 0xc; + } +#endif + mda_recalctimings(mda); + return; + case 0x3b8: + mda->ctrl = val; + return; + + default: + break; + } +} + +uint8_t +mda_in(uint16_t addr, void *priv) +{ + const mda_t *mda = (mda_t *) priv; + uint8_t ret = 0xff; + + switch (addr) { + case 0x3b0: + case 0x3b2: + case 0x3b4: + case 0x3b6: + ret = mda->crtcreg; + break; + case 0x3b1: + case 0x3b3: + case 0x3b5: + case 0x3b7: + ret = mda->crtc[mda->crtcreg]; + break; + case 0x3ba: + ret = mda->stat; + // if (mda->ctrl & 0x08) + // ret |= (mda->stat & 0x80) ? 0x08 : 0x00; + // return mda->stat | 0xF0; + break; + + default: + break; + } + + // pclog("[R] %04X = %02X\n", addr, ret); + + return ret; +} + +void +mda_write(uint32_t addr, uint8_t val, void *priv) +{ + mda_t *mda = (mda_t *) priv; + mda->vram[addr & 0xfff] = val; +} + +uint8_t +mda_read(uint32_t addr, void *priv) +{ + const mda_t *mda = (mda_t *) priv; + + return mda->vram[addr & 0xfff]; +} + +void +mda_recalctimings(mda_t *mda) +{ + double _dispontime; + double _dispofftime; + double disptime; + disptime = mda->crtc[0] + 1; + _dispontime = mda->crtc[1] + 1; + _dispofftime = disptime - _dispontime; + _dispontime *= MDACONST; + _dispofftime *= MDACONST; + mda->dispontime = (uint64_t) (_dispontime); + mda->dispofftime = (uint64_t) (_dispofftime); + dot_clock = ((double) MDACONST) / 9.0; +} + +void +mda_dot_poll(void *priv) +{ + mda_t *mda = (mda_t *) priv; + + uint16_t ca = (mda->crtc[15] | (mda->crtc[14] << 8)) & 0x3fff; + int drawcursor; + int blink; + + timer_advance_u64(&mda->dot_timer, (uint64_t) dot_clock); + + static uint8_t chr; + static uint8_t attr; + static uint8_t color; + static uint16_t dot = 0x0008; + static uint16_t ch = 0x0000; + static uint16_t line = 0x0000; + static uint16_t sc = 0x0000; + static int sctotal; + static int vtotal; + static int hslast; + static int vslast; + static int ma = 0x000; + + sctotal = ((int) mda->crtc[0x09]) + 1; + vtotal = (((int) mda->crtc[0x04]) + ((int) mda->crtc[0x05])) * sctotal; + hslast = ((int) mda->crtc[0x02]) + ((int) mda->crtc[0x03]) - 1; + vslast = ((int) mda->crtc[0x07]) + 16 - 1; + + chr = mda->vram[ma & 0xfff]; + attr = mda->vram[(ma + 1) & 0xfff]; + drawcursor = (mda->ctrl & 0x08) ? ((ma == ca) && mda->con && mda->cursoron) : 0x00; + blink = (mda->ctrl & 0x08) ? ((mda->blink & 16) && (mda->ctrl & 0x20) && + (attr & 0x80) && !drawcursor) : 0x00; + + if ((mda->sc == 12) && ((attr & 7) == 1)) + color = mdacols[attr][blink][1]; + else { + if (dot == 0) { + if ((chr & ~0x1f) == 0xc0) + color = mdacols[attr][blink][fontdatm[chr][sc] & 1]; + else + color = mdacols[attr][blink][0]; + } else + color = mdacols[attr][blink][(fontdatm[chr][sc] & (1 << (dot - 1))) ? 1 : 0]; + } + + if (drawcursor) + color ^= mdacols[attr][0][1]; + + if (!(mda->ctrl & 0x08) || !(mda->stat & 0x81) || (ch > mda->crtc[1]) || (line > mda->crtc[6])) + mda->stat &= 0xe7; + else + mda->stat = (mda->stat & 0xe7) | ((color & 0x01) << 3) | ((color & 0x08) << 1); + + dot--; + if (dot == 0xffff) { + dot = 8; + + if (ch == mda->crtc[0x00]) { + ch = 0; + line++; + + if (line == vtotal) + line = 0; + + sc++; + + if (sc == sctotal) + sc = 0; + } else + ch++; + } + + if (ch >= mda->crtc[0x02]) + mda->stat &= 0xfe; + else if ((hslast >= mda->crtc[0x02]) && (ch >= mda->crtc[0x02]) && (ch <= hslast)) + mda->stat &= 0xfe; + else if ((hslast < mda->crtc[0x02]) && (ch <= hslast)) + mda->stat &= 0xfe; + else + mda->stat |= 0x01; + + if (line >= mda->crtc[0x07]) + mda->stat &= 0x7f; + else if ((vslast >= mda->crtc[0x07]) && (line >= mda->crtc[0x07]) && (line <= vslast)) + mda->stat &= 0x7f; + else if ((vslast < mda->crtc[0x07]) && (line <= vslast)) + mda->stat &= 0x7f; + else + mda->stat |= 0x80; + + ma += 2; + if (ma > 0xfff) + ma = 0; + + if (!(mda->stat & 0x81)) + ma = 0; +} + +void +mda_poll(void *priv) +{ + mda_t *mda = (mda_t *) priv; + uint16_t ca = (mda->crtc[15] | (mda->crtc[14] << 8)) & 0x3fff; + int drawcursor; + int x; + int c; + int oldvc; + uint8_t chr; + uint8_t attr; + int oldsc; + int blink; + + VIDEO_MONITOR_PROLOGUE() + if (!mda->linepos) { + timer_advance_u64(&mda->timer, mda->dispofftime); + // mda->stat |= 1; + mda->linepos = 1; + oldsc = mda->sc; + if ((mda->crtc[8] & 3) == 3) + mda->sc = (mda->sc << 1) & 7; + if (mda->dispon) { + if (mda->displine < mda->firstline) { + mda->firstline = mda->displine; + video_wait_for_buffer(); + } + mda->lastline = mda->displine; + for (x = 0; x < mda->crtc[1]; x++) { + chr = (mda->ctrl & 0x08) ? mda->vram[(mda->ma << 1) & 0xfff] : 0x00; + attr = (mda->ctrl & 0x08) ? mda->vram[((mda->ma << 1) + 1) & 0xfff] : 0x00; + drawcursor = (mda->ctrl & 0x08) ? ((mda->ma == ca) && mda->con && mda->cursoron) : 0x00; + blink = (mda->ctrl & 0x08) ? ((mda->blink & 16) && (mda->ctrl & 0x20) && + (attr & 0x80) && !drawcursor) : 0x00; + if (mda->sc == 12 && ((attr & 7) == 1)) { + for (c = 0; c < 9; c++) + buffer32->line[mda->displine][(x * 9) + c] = mdacols[attr][blink][1]; + } else { + for (c = 0; c < 8; c++) + buffer32->line[mda->displine][(x * 9) + c] = mdacols[attr][blink][(fontdatm[chr][mda->sc] & (1 << (c ^ 7))) ? 1 : 0]; + if ((chr & ~0x1f) == 0xc0) + buffer32->line[mda->displine][(x * 9) + 8] = mdacols[attr][blink][fontdatm[chr][mda->sc] & 1]; + else + buffer32->line[mda->displine][(x * 9) + 8] = mdacols[attr][blink][0]; + } + mda->ma++; + if (drawcursor) { + for (c = 0; c < 9; c++) + buffer32->line[mda->displine][(x * 9) + c] ^= mdacols[attr][0][1]; + } + } + + video_process_8(mda->crtc[1] * 9, mda->displine); + } + mda->sc = oldsc; + // if (mda->vc == mda->crtc[7] && !mda->sc) { + // mda->stat |= 0x80; + // } + mda->displine++; + if (mda->displine >= 500) + mda->displine = 0; + } else { + timer_advance_u64(&mda->timer, mda->dispontime); + // if (mda->dispon) + // mda->stat &= ~1; + mda->linepos = 0; + if (mda->vsynctime) { + mda->vsynctime--; + // if (!mda->vsynctime) { + // mda->stat &= ~0x80; + // } + } + if (mda->sc == (mda->crtc[11] & 31) || ((mda->crtc[8] & 3) == 3 && mda->sc == ((mda->crtc[11] & 31) >> 1))) { + mda->con = 0; + mda->coff = 1; + } + if (mda->vadj) { + mda->sc++; + mda->sc &= 31; + mda->ma = mda->maback; + mda->vadj--; + if (!mda->vadj) { + mda->dispon = 1; + mda->ma = mda->maback = (mda->crtc[13] | (mda->crtc[12] << 8)) & 0x3fff; + mda->sc = 0; + } + } else if (mda->sc == mda->crtc[9] || ((mda->crtc[8] & 3) == 3 && mda->sc == (mda->crtc[9] >> 1))) { + mda->maback = mda->ma; + mda->sc = 0; + oldvc = mda->vc; + mda->vc++; + mda->vc &= 127; + if (mda->vc == mda->crtc[6]) + mda->dispon = 0; + if (oldvc == mda->crtc[4]) { + mda->vc = 0; + mda->vadj = mda->crtc[5]; + if (!mda->vadj) + mda->dispon = 1; + if (!mda->vadj) + mda->ma = mda->maback = (mda->crtc[13] | (mda->crtc[12] << 8)) & 0x3fff; + if ((mda->crtc[10] & 0x60) == 0x20) + mda->cursoron = 0; + else + mda->cursoron = mda->blink & 16; + } + if (mda->vc == mda->crtc[7]) { + mda->dispon = 0; + mda->displine = 0; + mda->vsynctime = 16; + if (mda->crtc[7]) { + x = mda->crtc[1] * 9; + mda->lastline++; + if ((x != xsize) || ((mda->lastline - mda->firstline) != ysize) || video_force_resize_get()) { + xsize = x; + ysize = mda->lastline - mda->firstline; + if (xsize < 64) + xsize = 656; + if (ysize < 32) + ysize = 200; + set_screen_size(xsize, ysize); + + if (video_force_resize_get()) + video_force_resize_set(0); + } + video_blit_memtoscreen(0, mda->firstline, xsize, ysize); + frames++; + video_res_x = mda->crtc[1]; + video_res_y = mda->crtc[6]; + video_bpp = 0; + } + mda->firstline = 1000; + mda->lastline = 0; + mda->blink++; + } + } else { + mda->sc++; + mda->sc &= 31; + mda->ma = mda->maback; + } + if (mda->sc == (mda->crtc[10] & 31) || ((mda->crtc[8] & 3) == 3 && mda->sc == ((mda->crtc[10] & 31) >> 1))) { + mda->con = 1; + } + } + VIDEO_MONITOR_EPILOGUE(); +} + +void +mda_init(mda_t *mda) +{ + for (uint16_t c = 0; c < 256; c++) { + mdacols[c][0][0] = mdacols[c][1][0] = mdacols[c][1][1] = 16; + if (c & 8) + mdacols[c][0][1] = 15 + 16; + else + mdacols[c][0][1] = 7 + 16; + } + mdacols[0x70][0][1] = 16; + mdacols[0x70][0][0] = mdacols[0x70][1][0] = mdacols[0x70][1][1] = 16 + 15; + mdacols[0xF0][0][1] = 16; + mdacols[0xF0][0][0] = mdacols[0xF0][1][0] = mdacols[0xF0][1][1] = 16 + 15; + mdacols[0x78][0][1] = 16 + 7; + mdacols[0x78][0][0] = mdacols[0x78][1][0] = mdacols[0x78][1][1] = 16 + 15; + mdacols[0xF8][0][1] = 16 + 7; + mdacols[0xF8][0][0] = mdacols[0xF8][1][0] = mdacols[0xF8][1][1] = 16 + 15; + mdacols[0x00][0][1] = mdacols[0x00][1][1] = 16; + mdacols[0x08][0][1] = mdacols[0x08][1][1] = 16; + mdacols[0x80][0][1] = mdacols[0x80][1][1] = 16; + mdacols[0x88][0][1] = mdacols[0x88][1][1] = 16; + + overscan_x = overscan_y = 0; + mda->monitor_index = monitor_index_global; + + cga_palette = device_get_config_int("rgb_type") << 1; + if (cga_palette > 6) { + cga_palette = 0; + } + cgapal_rebuild(); + + timer_add(&mda->timer, mda_poll, mda, 1); + timer_add(&mda->dot_timer, mda_dot_poll, mda, 1); +} + +void * +mda_standalone_init(UNUSED(const device_t *info)) +{ + mda_t *mda = malloc(sizeof(mda_t)); + memset(mda, 0, sizeof(mda_t)); + video_inform(VIDEO_FLAG_TYPE_MDA, &timing_mda); + + mda->vram = malloc(0x1000); + + mem_mapping_add(&mda->mapping, 0xb0000, 0x08000, mda_read, NULL, NULL, mda_write, NULL, NULL, NULL, MEM_MAPPING_EXTERNAL, mda); + io_sethandler(0x03b0, 0x0010, mda_in, NULL, NULL, mda_out, NULL, NULL, mda); + + mda_init(mda); + + lpt3_init(0x3BC); + + return mda; +} + +void +mda_setcol(int chr, int blink, int fg, uint8_t cga_ink) +{ + mdacols[chr][blink][fg] = 16 + cga_ink; +} + +void +mda_close(void *priv) +{ + mda_t *mda = (mda_t *) priv; + + free(mda->vram); + free(mda); +} + +void +mda_speed_changed(void *priv) +{ + mda_t *mda = (mda_t *) priv; + + mda_recalctimings(mda); +} + +static const device_config_t mda_config[] = { + // clang-format off + { + .name = "rgb_type", + .description = "Display type", + .type = CONFIG_SELECTION, + .default_int = 0, + .selection = { + { + .description = "Default", + .value = 0 + }, + { + .description = "Green", + .value = 1 + }, + { + .description = "Amber", + .value = 2 + }, + { + .description = "Gray", + .value = 3 + }, + { + .description = "" + } + } + }, + { + .type = CONFIG_END + } + // clang-format on +}; + +const device_t mda_device = { + .name = "MDA", + .internal_name = "mda", + .flags = DEVICE_ISA, + .local = 0, + .init = mda_standalone_init, + .close = mda_close, + .reset = NULL, + { .available = NULL }, + .speed_changed = mda_speed_changed, + .force_redraw = NULL, + .config = mda_config +}; diff --git a/src/video/vid_oak_oti - Cópia.c b/src/video/vid_oak_oti - Cópia.c new file mode 100644 index 000000000..28bf0fc06 --- /dev/null +++ b/src/video/vid_oak_oti - Cópia.c @@ -0,0 +1,738 @@ +/* + * 86Box A hypervisor and IBM PC system emulator that specializes in + * running old operating systems and software designed for IBM + * PC systems and compatibles from 1981 through fairly recent + * system designs based on the PCI bus. + * + * This file is part of the 86Box distribution. + * + * Oak OTI037C/67/077 emulation. + * + * + * + * Authors: Sarah Walker, + * Miran Grca, + * + * Copyright 2008-2018 Sarah Walker. + * Copyright 2016-2018 Miran Grca. + */ +#include +#include +#include +#include +#include <86box/86box.h> +#include <86box/io.h> +#include <86box/timer.h> +#include <86box/mem.h> +#include <86box/rom.h> +#include <86box/device.h> +#include <86box/video.h> +#include <86box/vid_svga.h> +#include <86box/vid_svga_render.h> +#include <86box/plat_unused.h> + +#define BIOS_037C_PATH "roms/video/oti/bios.bin" +#define BIOS_067_AMA932J_PATH "roms/machines/ama932j/OTI067.BIN" +#define BIOS_067_M300_08_PATH "roms/machines/m30008/EVC_BIOS.ROM" +#define BIOS_067_M300_15_PATH "roms/machines/m30015/EVC_BIOS.ROM" +#define BIOS_077_PATH "roms/video/oti/oti077.vbi" + +enum { + OTI_037C = 0, + OTI_067 = 2, + OTI_067_AMA932J = 3, + OTI_067_M300 = 4, + OTI_077 = 5 +}; + +typedef struct { + svga_t svga; + + rom_t bios_rom; + + int index; + uint8_t regs[32]; + + uint8_t chip_id; + uint8_t pos; + uint8_t enable_register; + uint8_t dipswitch_val; + + uint32_t vram_size; + uint32_t vram_mask; +} oti_t; + +static video_timings_t timing_oti = { .type = VIDEO_ISA, .write_b = 6, .write_w = 8, .write_l = 16, .read_b = 6, .read_w = 8, .read_l = 16 }; + +static void +oti_out(uint16_t addr, uint8_t val, void *priv) +{ + oti_t *oti = (oti_t *) priv; + svga_t *svga = &oti->svga; + uint8_t old; + uint8_t idx; + uint8_t enable = 0; + uint16_t page = 0x0000; + + if (!oti->chip_id && !(oti->enable_register & 1) && (addr != 0x3C3)) + return; + + if ((((addr & 0xFFF0) == 0x3D0 || (addr & 0xFFF0) == 0x3B0) && addr < 0x3de) && !(svga->miscout & 1)) + addr ^= 0x60; + + switch (addr) { + case 0x3C3: + if (!oti->chip_id) { + oti->enable_register = val & 1; + return; + } + svga_out(addr, val, svga); + return; + + case 0x3c6: + case 0x3c7: + case 0x3c8: + case 0x3c9: + if (oti->chip_id == OTI_077) + sc1148x_ramdac_out(addr, 0, val, svga->ramdac, svga); + else + svga_out(addr, val, svga); + return; + + case 0x3D4: + if (oti->chip_id) + svga->crtcreg = val & 0x3f; + else + svga->crtcreg = val; /* FIXME: The BIOS wants to set the test bit? */ + return; + + case 0x3D5: + if (oti->chip_id && (svga->crtcreg & 0x20)) + return; + idx = svga->crtcreg; + if (!oti->chip_id) + idx &= 0x1f; + if ((idx < 7) && (svga->crtc[0x11] & 0x80)) + return; + if ((idx == 7) && (svga->crtc[0x11] & 0x80)) + val = (svga->crtc[7] & ~0x10) | (val & 0x10); + old = svga->crtc[idx]; + svga->crtc[idx] = val; + if (old != val) { + if ((idx < 0x0e) || (idx > 0x10)) { + if (idx == 0x0c || idx == 0x0d) { + svga->fullchange = 3; + svga->ma_latch = ((svga->crtc[0xc] << 8) | svga->crtc[0xd]) + ((svga->crtc[8] & 0x60) >> 5); + } else { + svga->fullchange = changeframecount; + svga_recalctimings(svga); + } + } + } + break; + + case 0x3DE: + if (oti->chip_id) + oti->index = val & 0x1f; + else + oti->index = val; + return; + + case 0x3DF: + idx = oti->index; + if (!oti->chip_id) + idx &= 0x1f; + oti->regs[idx] = val; + switch (idx) { + case 0xD: + if (oti->chip_id == OTI_067) { + svga->vram_display_mask = (val & 0x0c) ? oti->vram_mask : 0x3ffff; + + switch ((val & 0x80) >> 7) { + case 0x00: /* 256 kB of memory */ + default: + enable = (oti->vram_size >= 256); + if (val & 0x0c) + svga->vram_display_mask = MIN(oti->vram_mask, 0x3ffff); + break; + case 0x01: /* 512 kB of memory */ + enable = (oti->vram_size >= 512); + if (val & 0x0c) + svga->vram_display_mask = MIN(oti->vram_mask, 0x7ffff); + break; + } + + if (enable) + mem_mapping_enable(&svga->mapping); + else + mem_mapping_disable(&svga->mapping); + } else if (oti->chip_id == OTI_077) { + svga->vram_display_mask = (val & 0x0c) ? oti->vram_mask : 0x3ffff; + + switch ((val & 0xc0) >> 6) { + default: + case 0x00: /* 256 kB of memory */ + enable = (oti->vram_size >= 256); + if (val & 0x0c) + svga->vram_display_mask = MIN(oti->vram_mask, 0x3ffff); + break; + case 0x01: /* 1 MB of memory */ + case 0x03: + enable = (oti->vram_size >= 1024); + if (val & 0x0c) + svga->vram_display_mask = MIN(oti->vram_mask, 0xfffff); + break; + case 0x02: /* 512 kB of memory */ + enable = (oti->vram_size >= 512); + if (val & 0x0c) + svga->vram_display_mask = MIN(oti->vram_mask, 0x7ffff); + break; + } + } else { + if (val & 0x80) + mem_mapping_disable(&svga->mapping); + else + mem_mapping_enable(&svga->mapping); + } + break; + + case 0x11: + if (oti->chip_id >= OTI_067) { + page = (((uint16_t) oti->regs[0x14] & 0x40) >> 6); + if (oti->chip_id == OTI_077) + page |= (((uint16_t) oti->regs[0x16] & 0x40) >> 5); + page <<= 18; + } + svga->read_bank = ((uint16_t) oti->regs[0x11] & 0xf) << 14; + svga->write_bank = ((uint16_t) oti->regs[0x11] >> 4) << 14; + svga->read_bank |= page; + svga->write_bank |= page; + break; + + case 0x14: + if (oti->chip_id >= OTI_067) { + page = (((uint16_t) oti->regs[0x14] & 0x40) >> 6); + if (oti->chip_id == OTI_077) + page |= (((uint16_t) oti->regs[0x16] & 0x40) >> 5); + page <<= 18; + svga->read_bank = ((uint16_t) oti->regs[0x11] & 0xf) << 14; + svga->write_bank = ((uint16_t) oti->regs[0x11] >> 4) << 14; + svga->read_bank |= page; + svga->write_bank |= page; + } + break; + case 0x16: + if (oti->chip_id == OTI_077) { + page = (((uint16_t) oti->regs[0x14] & 0x40) >> 6); + page |= (((uint16_t) oti->regs[0x16] & 0x40) >> 5); + page <<= 18; + svga->read_bank = ((uint16_t) oti->regs[0x11] & 0xf) << 14; + svga->write_bank = ((uint16_t) oti->regs[0x11] >> 4) << 14; + svga->read_bank |= page; + svga->write_bank |= page; + } + break; + + default: + break; + } + return; + + default: + break; + } + + svga_out(addr, val, svga); +} + +static uint8_t +oti_in(uint16_t addr, void *priv) +{ + oti_t *oti = (oti_t *) priv; + svga_t *svga = &oti->svga; + uint8_t idx; + uint8_t temp; + + if (!oti->chip_id && !(oti->enable_register & 1) && (addr != 0x3C3)) + return 0xff; + + if ((((addr & 0xFFF0) == 0x3D0 || (addr & 0xFFF0) == 0x3B0) && addr < 0x3de) && !(svga->miscout & 1)) + addr ^= 0x60; + + switch (addr) { + case 0x3C2: + if ((svga->vgapal[0].r + svga->vgapal[0].g + svga->vgapal[0].b) >= 0x50) + temp = 0; + else + temp = 0x10; + break; + + case 0x3C3: + if (oti->chip_id) + temp = svga_in(addr, svga); + else + temp = oti->enable_register; + break; + + case 0x3c6: + case 0x3c7: + case 0x3c8: + case 0x3c9: + if (oti->chip_id == OTI_077) + return sc1148x_ramdac_in(addr, 0, svga->ramdac, svga); + return svga_in(addr, svga); + + case 0x3CF: + return svga->gdcreg[svga->gdcaddr & 0xf]; + + case 0x3D4: + temp = svga->crtcreg; + break; + + case 0x3D5: + if (oti->chip_id) { + if (svga->crtcreg & 0x20) + temp = 0xff; + else + temp = svga->crtc[svga->crtcreg]; + } else + temp = svga->crtc[svga->crtcreg & 0x1f]; + break; + + case 0x3DA: + if (oti->chip_id) { + temp = svga_in(addr, svga); + break; + } + + svga->attrff = 0; + /*The OTI-037C BIOS waits for bits 0 and 3 in 0x3da to go low, then reads 0x3da again + and expects the diagnostic bits to equal the current border colour. As I understand + it, the 0x3da active enable status does not include the border time, so this may be + an area where OTI-037C is not entirely VGA compatible.*/ + svga->cgastat &= ~0x30; + /* copy color diagnostic info from the overscan color register */ + switch (svga->attrregs[0x12] & 0x30) { + case 0x00: /* P0 and P2 */ + if (svga->attrregs[0x11] & 0x01) + svga->cgastat |= 0x10; + if (svga->attrregs[0x11] & 0x04) + svga->cgastat |= 0x20; + break; + case 0x10: /* P4 and P5 */ + if (svga->attrregs[0x11] & 0x10) + svga->cgastat |= 0x10; + if (svga->attrregs[0x11] & 0x20) + svga->cgastat |= 0x20; + break; + case 0x20: /* P1 and P3 */ + if (svga->attrregs[0x11] & 0x02) + svga->cgastat |= 0x10; + if (svga->attrregs[0x11] & 0x08) + svga->cgastat |= 0x20; + break; + case 0x30: /* P6 and P7 */ + if (svga->attrregs[0x11] & 0x40) + svga->cgastat |= 0x10; + if (svga->attrregs[0x11] & 0x80) + svga->cgastat |= 0x20; + break; + + default: + break; + } + temp = svga->cgastat; + break; + + case 0x3DE: + temp = oti->index; + if (oti->chip_id) + temp |= (oti->chip_id << 5); + break; + + case 0x3DF: + idx = oti->index; + if (!oti->chip_id) + idx &= 0x1f; + if (idx == 0x10) + temp = oti->dipswitch_val; + else + temp = oti->regs[idx]; + break; + + default: + temp = svga_in(addr, svga); + break; + } + + return temp; +} + +static void +oti_pos_out(UNUSED(uint16_t addr), uint8_t val, void *priv) +{ + oti_t *oti = (oti_t *) priv; + + if ((val ^ oti->pos) & 8) { + if (val & 8) + io_sethandler(0x03c0, 32, oti_in, NULL, NULL, + oti_out, NULL, NULL, oti); + else + io_removehandler(0x03c0, 32, oti_in, NULL, NULL, + oti_out, NULL, NULL, oti); + } + + oti->pos = val; +} + +static uint8_t +oti_pos_in(UNUSED(uint16_t addr), void *priv) +{ + const oti_t *oti = (oti_t *) priv; + + return (oti->pos); +} + +static float +oti_getclock(int clock) +{ + float ret = 0.0; + + switch (clock) { + default: + case 0: + ret = 25175000.0; + break; + case 1: + ret = 28322000.0; + break; + case 4: + ret = 14318000.0; + break; + case 5: + ret = 16257000.0; + break; + case 7: + ret = 35500000.0; + break; + } + + return ret; +} + +static void +oti_recalctimings(svga_t *svga) +{ + const oti_t *oti = (oti_t *) svga->priv; + int clk_sel = ((svga->miscout >> 2) & 3) | ((oti->regs[0x0d] & 0x20) >> 3); + + svga->clock = (cpuclock * (double) (1ULL << 32)) / oti_getclock(clk_sel); + + if (oti->chip_id > 0) { + if (oti->regs[0x14] & 0x08) + svga->ma_latch |= 0x10000; + if (oti->regs[0x16] & 0x08) + svga->ma_latch |= 0x20000; + + if (oti->regs[0x14] & 0x01) + svga->vtotal += 0x400; + if (oti->regs[0x14] & 0x02) + svga->dispend += 0x400; + if (oti->regs[0x14] & 0x04) + svga->vsyncstart += 0x400; + + svga->interlace = oti->regs[0x14] & 0x80; + } + + if ((oti->regs[0x0d] & 0x0c) && !(oti->regs[0x0d] & 0x10)) + svga->rowoffset <<= 1; + + if (svga->bpp == 16) { + svga->render = svga_render_16bpp_highres; + svga->hdisp >>= 1; + } else if (svga->bpp == 15) { + svga->render = svga_render_15bpp_highres; + svga->hdisp >>= 1; + } +} + +static void * +oti_init(const device_t *info) +{ + oti_t *oti = malloc(sizeof(oti_t)); + const char *romfn = NULL; + + memset(oti, 0x00, sizeof(oti_t)); + oti->chip_id = info->local; + + oti->dipswitch_val = 0x18; + + switch (oti->chip_id) { + case OTI_037C: + romfn = BIOS_037C_PATH; + oti->vram_size = 256; + oti->regs[0] = 0x08; /* FIXME: The BIOS wants to read this at index 0? This index is undocumented. */ +#if 0 + io_sethandler(0x03c0, 32, + oti_in, NULL, NULL, oti_out, NULL, NULL, oti); +#endif + break; + + case OTI_067_AMA932J: + romfn = BIOS_067_AMA932J_PATH; + oti->chip_id = 2; + oti->vram_size = device_get_config_int("memory"); + oti->dipswitch_val |= 0x20; + oti->pos = 0x08; /* Tell the BIOS the I/O ports are already enabled to avoid a double I/O handler mess. */ + io_sethandler(0x46e8, 1, oti_pos_in, NULL, NULL, oti_pos_out, NULL, NULL, oti); + break; + + case OTI_067_M300: + if (rom_present(BIOS_067_M300_15_PATH)) + romfn = BIOS_067_M300_15_PATH; + else + romfn = BIOS_067_M300_08_PATH; + oti->vram_size = device_get_config_int("memory"); + oti->pos = 0x08; /* Tell the BIOS the I/O ports are already enabled to avoid a double I/O handler mess. */ + io_sethandler(0x46e8, 1, oti_pos_in, NULL, NULL, oti_pos_out, NULL, NULL, oti); + break; + + case OTI_067: + case OTI_077: + romfn = BIOS_077_PATH; + oti->vram_size = device_get_config_int("memory"); + oti->pos = 0x08; /* Tell the BIOS the I/O ports are already enabled to avoid a double I/O handler mess. */ + io_sethandler(0x46e8, 1, oti_pos_in, NULL, NULL, oti_pos_out, NULL, NULL, oti); + break; + + default: + break; + } + + if (romfn != NULL) { + rom_init(&oti->bios_rom, romfn, + 0xc0000, 0x8000, 0x7fff, 0, MEM_MAPPING_EXTERNAL); + } + + video_inform(VIDEO_FLAG_TYPE_SPECIAL, &timing_oti); + + svga_init(info, &oti->svga, oti, oti->vram_size << 10, + oti_recalctimings, oti_in, oti_out, NULL, NULL); + + oti->vram_mask = (oti->vram_size << 10) - 1; + + if (oti->chip_id == OTI_077) + oti->svga.ramdac = device_add(&sc11487_ramdac_device); /*Actually a 82c487, probably a clone.*/ + + io_sethandler(0x03c0, 32, + oti_in, NULL, NULL, oti_out, NULL, NULL, oti); + + oti->svga.miscout = 1; + oti->svga.packed_chain4 = 1; + + return oti; +} + +static void +oti_close(void *priv) +{ + oti_t *oti = (oti_t *) priv; + + svga_close(&oti->svga); + + free(oti); +} + +static void +oti_speed_changed(void *priv) +{ + oti_t *oti = (oti_t *) priv; + + svga_recalctimings(&oti->svga); +} + +static void +oti_force_redraw(void *priv) +{ + oti_t *oti = (oti_t *) priv; + + oti->svga.fullchange = changeframecount; +} + +static int +oti037c_available(void) +{ + return (rom_present(BIOS_037C_PATH)); +} + +static int +oti067_ama932j_available(void) +{ + return (rom_present(BIOS_067_AMA932J_PATH)); +} + +static int +oti067_077_available(void) +{ + return (rom_present(BIOS_077_PATH)); +} + +static int +oti067_m300_available(void) +{ + if (rom_present(BIOS_067_M300_15_PATH)) + return (rom_present(BIOS_067_M300_15_PATH)); + else + return (rom_present(BIOS_067_M300_08_PATH)); +} + +// clang-format off +static const device_config_t oti067_config[] = { + { + .name = "memory", + .description = "Memory size", + .type = CONFIG_SELECTION, + .default_int = 512, + .selection = { + { + .description = "256 kB", + .value = 256 + }, + { + .description = "512 kB", + .value = 512 + }, + { + .description = "" + } + } + }, + { + .type = CONFIG_END + } +}; + +static const device_config_t oti067_ama932j_config[] = { + { + .name = "memory", + .description = "Memory size", + .type = CONFIG_SELECTION, + .default_int = 256, + .selection = { + { + .description = "256 kB", + .value = 256 + }, + { + .description = "512 kB", + .value = 512 + }, + { + .description = "" + } + } + }, + { + .type = CONFIG_END + } +}; + +static const device_config_t oti077_config[] = { + { + .name = "memory", + .description = "Memory size", + .type = CONFIG_SELECTION, + .default_int = 1024, + .selection = { + { + .description = "256 kB", + .value = 256 + }, + { + .description = "512 kB", + .value = 512 + }, + { + .description = "1 MB", + .value = 1024 + }, + { + .description = "" + } + } + }, + { + .type = CONFIG_END + } +}; +// clang-format on + +const device_t oti037c_device = { + .name = "Oak OTI-037C", + .internal_name = "oti037c", + .flags = DEVICE_ISA, + .local = 0, + .init = oti_init, + .close = oti_close, + .reset = NULL, + { .available = oti037c_available }, + .speed_changed = oti_speed_changed, + .force_redraw = oti_force_redraw, + .config = NULL +}; + +const device_t oti067_device = { + .name = "Oak OTI-067", + .internal_name = "oti067", + .flags = DEVICE_ISA, + .local = 2, + .init = oti_init, + .close = oti_close, + .reset = NULL, + { .available = oti067_077_available }, + .speed_changed = oti_speed_changed, + .force_redraw = oti_force_redraw, + .config = oti067_config +}; + +const device_t oti067_m300_device = { + .name = "Oak OTI-067 (Olivetti M300-08/15)", + .internal_name = "oti067_m300", + .flags = DEVICE_ISA, + .local = 4, + .init = oti_init, + .close = oti_close, + .reset = NULL, + { .available = oti067_m300_available }, + .speed_changed = oti_speed_changed, + .force_redraw = oti_force_redraw, + .config = oti067_config +}; + +const device_t oti067_ama932j_device = { + .name = "Oak OTI-067 (AMA-932J)", + .internal_name = "oti067_ama932j", + .flags = DEVICE_ISA, + .local = 3, + .init = oti_init, + .close = oti_close, + .reset = NULL, + { .available = oti067_ama932j_available }, + .speed_changed = oti_speed_changed, + .force_redraw = oti_force_redraw, + .config = oti067_ama932j_config +}; + +const device_t oti077_device = { + .name = "Oak OTI-077", + .internal_name = "oti077", + .flags = DEVICE_ISA, + .local = 5, + .init = oti_init, + .close = oti_close, + .reset = NULL, + { .available = oti067_077_available }, + .speed_changed = oti_speed_changed, + .force_redraw = oti_force_redraw, + .config = oti077_config +};